diff --git a/mobile/.gitignore b/mobile/.gitignore
index 5b914899..62c4f3d1 100644
--- a/mobile/.gitignore
+++ b/mobile/.gitignore
@@ -1,3 +1,2 @@
-/build
/debug
release/
diff --git a/mobile/build/generated/crashlytics/res/freedom/debug/values/com_google_firebase_crashlytics_mappingfileid.xml b/mobile/build/generated/crashlytics/res/freedom/debug/values/com_google_firebase_crashlytics_mappingfileid.xml
new file mode 100644
index 00000000..4c45ec1e
--- /dev/null
+++ b/mobile/build/generated/crashlytics/res/freedom/debug/values/com_google_firebase_crashlytics_mappingfileid.xml
@@ -0,0 +1,10 @@
+
+
+
+00000000000000000000000000000000
+
diff --git a/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ActivityMainBinding.java b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ActivityMainBinding.java
new file mode 100644
index 00000000..6eeb38b3
--- /dev/null
+++ b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ActivityMainBinding.java
@@ -0,0 +1,92 @@
+// Generated by view binder compiler. Do not edit!
+package hanson.xyz.vpnhotspotmod.databinding;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.LinearLayout;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.fragment.app.FragmentContainerView;
+import androidx.viewbinding.ViewBinding;
+import androidx.viewbinding.ViewBindings;
+import com.google.android.material.appbar.MaterialToolbar;
+import com.google.android.material.bottomnavigation.BottomNavigationView;
+import hanson.xyz.vpnhotspotmod.R;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+
+public final class ActivityMainBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final FragmentContainerView fragmentHolder;
+
+ @NonNull
+ public final BottomNavigationView navigation;
+
+ @NonNull
+ public final MaterialToolbar toolbar;
+
+ private ActivityMainBinding(@NonNull LinearLayout rootView,
+ @NonNull FragmentContainerView fragmentHolder, @NonNull BottomNavigationView navigation,
+ @NonNull MaterialToolbar toolbar) {
+ this.rootView = rootView;
+ this.fragmentHolder = fragmentHolder;
+ this.navigation = navigation;
+ this.toolbar = toolbar;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.activity_main, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static ActivityMainBinding bind(@NonNull View rootView) {
+ // The body of this method is generated in a way you would not otherwise write.
+ // This is done to optimize the compiled bytecode for size and performance.
+ int id;
+ missingId: {
+ id = R.id.fragmentHolder;
+ FragmentContainerView fragmentHolder = ViewBindings.findChildViewById(rootView, id);
+ if (fragmentHolder == null) {
+ break missingId;
+ }
+
+ id = R.id.navigation;
+ BottomNavigationView navigation = ViewBindings.findChildViewById(rootView, id);
+ if (navigation == null) {
+ break missingId;
+ }
+
+ id = R.id.toolbar;
+ MaterialToolbar toolbar = ViewBindings.findChildViewById(rootView, id);
+ if (toolbar == null) {
+ break missingId;
+ }
+
+ return new ActivityMainBinding((LinearLayout) rootView, fragmentHolder, navigation, toolbar);
+ }
+ String missingId = rootView.getResources().getResourceName(id);
+ throw new NullPointerException("Missing required view with ID: ".concat(missingId));
+ }
+}
diff --git a/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/DialogWifiApBinding.java b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/DialogWifiApBinding.java
new file mode 100644
index 00000000..c6ebac47
--- /dev/null
+++ b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/DialogWifiApBinding.java
@@ -0,0 +1,566 @@
+// Generated by view binder compiler. Do not edit!
+package hanson.xyz.vpnhotspotmod.databinding;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.LinearLayout;
+import android.widget.Spinner;
+import android.widget.TextView;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.viewbinding.ViewBinding;
+import androidx.viewbinding.ViewBindings;
+import com.google.android.material.appbar.MaterialToolbar;
+import com.google.android.material.materialswitch.MaterialSwitch;
+import com.google.android.material.textfield.TextInputEditText;
+import com.google.android.material.textfield.TextInputLayout;
+import hanson.xyz.vpnhotspotmod.R;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+
+public final class DialogWifiApBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final LinearLayout accessControlGroup;
+
+ @NonNull
+ public final TextInputEditText acs2g;
+
+ @NonNull
+ public final TextInputLayout acs2gWrapper;
+
+ @NonNull
+ public final TextInputEditText acs5g;
+
+ @NonNull
+ public final TextInputLayout acs5gWrapper;
+
+ @NonNull
+ public final TextInputEditText acs6g;
+
+ @NonNull
+ public final TextInputLayout acs6gWrapper;
+
+ @NonNull
+ public final LinearLayout advancedApGroup;
+
+ @NonNull
+ public final TextInputEditText allowedList;
+
+ @NonNull
+ public final TextInputLayout allowedListWrapper;
+
+ @NonNull
+ public final MaterialSwitch autoShutdown;
+
+ @NonNull
+ public final TextView bandError;
+
+ @NonNull
+ public final LinearLayout bandGroup;
+
+ @NonNull
+ public final Spinner bandPrimary;
+
+ @NonNull
+ public final Spinner bandSecondary;
+
+ @NonNull
+ public final TextInputEditText blockedList;
+
+ @NonNull
+ public final TextInputLayout blockedListWrapper;
+
+ @NonNull
+ public final MaterialSwitch bridgedModeOpportunisticShutdown;
+
+ @NonNull
+ public final TextInputEditText bridgedTimeout;
+
+ @NonNull
+ public final TextInputLayout bridgedTimeoutWrapper;
+
+ @NonNull
+ public final TextInputEditText bssid;
+
+ @NonNull
+ public final TextInputLayout bssidWrapper;
+
+ @NonNull
+ public final MaterialSwitch clientUserControl;
+
+ @NonNull
+ public final MaterialSwitch hiddenSsid;
+
+ @NonNull
+ public final MaterialSwitch ieee80211ax;
+
+ @NonNull
+ public final MaterialSwitch ieee80211be;
+
+ @NonNull
+ public final Spinner macRandomization;
+
+ @NonNull
+ public final LinearLayout macRandomizationWrapper;
+
+ @NonNull
+ public final Spinner maxChannelBandwidth;
+
+ @NonNull
+ public final TextView maxChannelBandwidthError;
+
+ @NonNull
+ public final LinearLayout maxChannelBandwidthWrapper;
+
+ @NonNull
+ public final TextInputEditText maxClient;
+
+ @NonNull
+ public final TextInputLayout maxClientWrapper;
+
+ @NonNull
+ public final TextInputEditText password;
+
+ @NonNull
+ public final TextInputLayout passwordWrapper;
+
+ @NonNull
+ public final TextInputEditText persistentRandomizedMac;
+
+ @NonNull
+ public final TextInputLayout persistentRandomizedMacWrapper;
+
+ @NonNull
+ public final Spinner security;
+
+ @NonNull
+ public final LinearLayout securityWrapper;
+
+ @NonNull
+ public final TextInputEditText ssid;
+
+ @NonNull
+ public final TextInputLayout ssidWrapper;
+
+ @NonNull
+ public final TextInputEditText timeout;
+
+ @NonNull
+ public final TextInputLayout timeoutWrapper;
+
+ @NonNull
+ public final MaterialToolbar toolbar;
+
+ @NonNull
+ public final MaterialSwitch userConfig;
+
+ @NonNull
+ public final TextInputEditText vendorElements;
+
+ @NonNull
+ public final TextInputLayout vendorElementsWrapper;
+
+ private DialogWifiApBinding(@NonNull LinearLayout rootView,
+ @NonNull LinearLayout accessControlGroup, @NonNull TextInputEditText acs2g,
+ @NonNull TextInputLayout acs2gWrapper, @NonNull TextInputEditText acs5g,
+ @NonNull TextInputLayout acs5gWrapper, @NonNull TextInputEditText acs6g,
+ @NonNull TextInputLayout acs6gWrapper, @NonNull LinearLayout advancedApGroup,
+ @NonNull TextInputEditText allowedList, @NonNull TextInputLayout allowedListWrapper,
+ @NonNull MaterialSwitch autoShutdown, @NonNull TextView bandError,
+ @NonNull LinearLayout bandGroup, @NonNull Spinner bandPrimary, @NonNull Spinner bandSecondary,
+ @NonNull TextInputEditText blockedList, @NonNull TextInputLayout blockedListWrapper,
+ @NonNull MaterialSwitch bridgedModeOpportunisticShutdown,
+ @NonNull TextInputEditText bridgedTimeout, @NonNull TextInputLayout bridgedTimeoutWrapper,
+ @NonNull TextInputEditText bssid, @NonNull TextInputLayout bssidWrapper,
+ @NonNull MaterialSwitch clientUserControl, @NonNull MaterialSwitch hiddenSsid,
+ @NonNull MaterialSwitch ieee80211ax, @NonNull MaterialSwitch ieee80211be,
+ @NonNull Spinner macRandomization, @NonNull LinearLayout macRandomizationWrapper,
+ @NonNull Spinner maxChannelBandwidth, @NonNull TextView maxChannelBandwidthError,
+ @NonNull LinearLayout maxChannelBandwidthWrapper, @NonNull TextInputEditText maxClient,
+ @NonNull TextInputLayout maxClientWrapper, @NonNull TextInputEditText password,
+ @NonNull TextInputLayout passwordWrapper, @NonNull TextInputEditText persistentRandomizedMac,
+ @NonNull TextInputLayout persistentRandomizedMacWrapper, @NonNull Spinner security,
+ @NonNull LinearLayout securityWrapper, @NonNull TextInputEditText ssid,
+ @NonNull TextInputLayout ssidWrapper, @NonNull TextInputEditText timeout,
+ @NonNull TextInputLayout timeoutWrapper, @NonNull MaterialToolbar toolbar,
+ @NonNull MaterialSwitch userConfig, @NonNull TextInputEditText vendorElements,
+ @NonNull TextInputLayout vendorElementsWrapper) {
+ this.rootView = rootView;
+ this.accessControlGroup = accessControlGroup;
+ this.acs2g = acs2g;
+ this.acs2gWrapper = acs2gWrapper;
+ this.acs5g = acs5g;
+ this.acs5gWrapper = acs5gWrapper;
+ this.acs6g = acs6g;
+ this.acs6gWrapper = acs6gWrapper;
+ this.advancedApGroup = advancedApGroup;
+ this.allowedList = allowedList;
+ this.allowedListWrapper = allowedListWrapper;
+ this.autoShutdown = autoShutdown;
+ this.bandError = bandError;
+ this.bandGroup = bandGroup;
+ this.bandPrimary = bandPrimary;
+ this.bandSecondary = bandSecondary;
+ this.blockedList = blockedList;
+ this.blockedListWrapper = blockedListWrapper;
+ this.bridgedModeOpportunisticShutdown = bridgedModeOpportunisticShutdown;
+ this.bridgedTimeout = bridgedTimeout;
+ this.bridgedTimeoutWrapper = bridgedTimeoutWrapper;
+ this.bssid = bssid;
+ this.bssidWrapper = bssidWrapper;
+ this.clientUserControl = clientUserControl;
+ this.hiddenSsid = hiddenSsid;
+ this.ieee80211ax = ieee80211ax;
+ this.ieee80211be = ieee80211be;
+ this.macRandomization = macRandomization;
+ this.macRandomizationWrapper = macRandomizationWrapper;
+ this.maxChannelBandwidth = maxChannelBandwidth;
+ this.maxChannelBandwidthError = maxChannelBandwidthError;
+ this.maxChannelBandwidthWrapper = maxChannelBandwidthWrapper;
+ this.maxClient = maxClient;
+ this.maxClientWrapper = maxClientWrapper;
+ this.password = password;
+ this.passwordWrapper = passwordWrapper;
+ this.persistentRandomizedMac = persistentRandomizedMac;
+ this.persistentRandomizedMacWrapper = persistentRandomizedMacWrapper;
+ this.security = security;
+ this.securityWrapper = securityWrapper;
+ this.ssid = ssid;
+ this.ssidWrapper = ssidWrapper;
+ this.timeout = timeout;
+ this.timeoutWrapper = timeoutWrapper;
+ this.toolbar = toolbar;
+ this.userConfig = userConfig;
+ this.vendorElements = vendorElements;
+ this.vendorElementsWrapper = vendorElementsWrapper;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static DialogWifiApBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static DialogWifiApBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.dialog_wifi_ap, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static DialogWifiApBinding bind(@NonNull View rootView) {
+ // The body of this method is generated in a way you would not otherwise write.
+ // This is done to optimize the compiled bytecode for size and performance.
+ int id;
+ missingId: {
+ id = R.id.access_control_group;
+ LinearLayout accessControlGroup = ViewBindings.findChildViewById(rootView, id);
+ if (accessControlGroup == null) {
+ break missingId;
+ }
+
+ id = R.id.acs_2g;
+ TextInputEditText acs2g = ViewBindings.findChildViewById(rootView, id);
+ if (acs2g == null) {
+ break missingId;
+ }
+
+ id = R.id.acs_2g_wrapper;
+ TextInputLayout acs2gWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (acs2gWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.acs_5g;
+ TextInputEditText acs5g = ViewBindings.findChildViewById(rootView, id);
+ if (acs5g == null) {
+ break missingId;
+ }
+
+ id = R.id.acs_5g_wrapper;
+ TextInputLayout acs5gWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (acs5gWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.acs_6g;
+ TextInputEditText acs6g = ViewBindings.findChildViewById(rootView, id);
+ if (acs6g == null) {
+ break missingId;
+ }
+
+ id = R.id.acs_6g_wrapper;
+ TextInputLayout acs6gWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (acs6gWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.advanced_ap_group;
+ LinearLayout advancedApGroup = ViewBindings.findChildViewById(rootView, id);
+ if (advancedApGroup == null) {
+ break missingId;
+ }
+
+ id = R.id.allowed_list;
+ TextInputEditText allowedList = ViewBindings.findChildViewById(rootView, id);
+ if (allowedList == null) {
+ break missingId;
+ }
+
+ id = R.id.allowed_list_wrapper;
+ TextInputLayout allowedListWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (allowedListWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.auto_shutdown;
+ MaterialSwitch autoShutdown = ViewBindings.findChildViewById(rootView, id);
+ if (autoShutdown == null) {
+ break missingId;
+ }
+
+ id = R.id.band_error;
+ TextView bandError = ViewBindings.findChildViewById(rootView, id);
+ if (bandError == null) {
+ break missingId;
+ }
+
+ id = R.id.band_group;
+ LinearLayout bandGroup = ViewBindings.findChildViewById(rootView, id);
+ if (bandGroup == null) {
+ break missingId;
+ }
+
+ id = R.id.band_primary;
+ Spinner bandPrimary = ViewBindings.findChildViewById(rootView, id);
+ if (bandPrimary == null) {
+ break missingId;
+ }
+
+ id = R.id.band_secondary;
+ Spinner bandSecondary = ViewBindings.findChildViewById(rootView, id);
+ if (bandSecondary == null) {
+ break missingId;
+ }
+
+ id = R.id.blocked_list;
+ TextInputEditText blockedList = ViewBindings.findChildViewById(rootView, id);
+ if (blockedList == null) {
+ break missingId;
+ }
+
+ id = R.id.blocked_list_wrapper;
+ TextInputLayout blockedListWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (blockedListWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.bridged_mode_opportunistic_shutdown;
+ MaterialSwitch bridgedModeOpportunisticShutdown = ViewBindings.findChildViewById(rootView, id);
+ if (bridgedModeOpportunisticShutdown == null) {
+ break missingId;
+ }
+
+ id = R.id.bridged_timeout;
+ TextInputEditText bridgedTimeout = ViewBindings.findChildViewById(rootView, id);
+ if (bridgedTimeout == null) {
+ break missingId;
+ }
+
+ id = R.id.bridged_timeout_wrapper;
+ TextInputLayout bridgedTimeoutWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (bridgedTimeoutWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.bssid;
+ TextInputEditText bssid = ViewBindings.findChildViewById(rootView, id);
+ if (bssid == null) {
+ break missingId;
+ }
+
+ id = R.id.bssid_wrapper;
+ TextInputLayout bssidWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (bssidWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.client_user_control;
+ MaterialSwitch clientUserControl = ViewBindings.findChildViewById(rootView, id);
+ if (clientUserControl == null) {
+ break missingId;
+ }
+
+ id = R.id.hidden_ssid;
+ MaterialSwitch hiddenSsid = ViewBindings.findChildViewById(rootView, id);
+ if (hiddenSsid == null) {
+ break missingId;
+ }
+
+ id = R.id.ieee_80211ax;
+ MaterialSwitch ieee80211ax = ViewBindings.findChildViewById(rootView, id);
+ if (ieee80211ax == null) {
+ break missingId;
+ }
+
+ id = R.id.ieee_80211be;
+ MaterialSwitch ieee80211be = ViewBindings.findChildViewById(rootView, id);
+ if (ieee80211be == null) {
+ break missingId;
+ }
+
+ id = R.id.mac_randomization;
+ Spinner macRandomization = ViewBindings.findChildViewById(rootView, id);
+ if (macRandomization == null) {
+ break missingId;
+ }
+
+ id = R.id.mac_randomization_wrapper;
+ LinearLayout macRandomizationWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (macRandomizationWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.max_channel_bandwidth;
+ Spinner maxChannelBandwidth = ViewBindings.findChildViewById(rootView, id);
+ if (maxChannelBandwidth == null) {
+ break missingId;
+ }
+
+ id = R.id.max_channel_bandwidth_error;
+ TextView maxChannelBandwidthError = ViewBindings.findChildViewById(rootView, id);
+ if (maxChannelBandwidthError == null) {
+ break missingId;
+ }
+
+ id = R.id.max_channel_bandwidth_wrapper;
+ LinearLayout maxChannelBandwidthWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (maxChannelBandwidthWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.max_client;
+ TextInputEditText maxClient = ViewBindings.findChildViewById(rootView, id);
+ if (maxClient == null) {
+ break missingId;
+ }
+
+ id = R.id.max_client_wrapper;
+ TextInputLayout maxClientWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (maxClientWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.password;
+ TextInputEditText password = ViewBindings.findChildViewById(rootView, id);
+ if (password == null) {
+ break missingId;
+ }
+
+ id = R.id.password_wrapper;
+ TextInputLayout passwordWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (passwordWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.persistent_randomized_mac;
+ TextInputEditText persistentRandomizedMac = ViewBindings.findChildViewById(rootView, id);
+ if (persistentRandomizedMac == null) {
+ break missingId;
+ }
+
+ id = R.id.persistent_randomized_mac_wrapper;
+ TextInputLayout persistentRandomizedMacWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (persistentRandomizedMacWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.security;
+ Spinner security = ViewBindings.findChildViewById(rootView, id);
+ if (security == null) {
+ break missingId;
+ }
+
+ id = R.id.security_wrapper;
+ LinearLayout securityWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (securityWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.ssid;
+ TextInputEditText ssid = ViewBindings.findChildViewById(rootView, id);
+ if (ssid == null) {
+ break missingId;
+ }
+
+ id = R.id.ssid_wrapper;
+ TextInputLayout ssidWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (ssidWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.timeout;
+ TextInputEditText timeout = ViewBindings.findChildViewById(rootView, id);
+ if (timeout == null) {
+ break missingId;
+ }
+
+ id = R.id.timeout_wrapper;
+ TextInputLayout timeoutWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (timeoutWrapper == null) {
+ break missingId;
+ }
+
+ id = R.id.toolbar;
+ MaterialToolbar toolbar = ViewBindings.findChildViewById(rootView, id);
+ if (toolbar == null) {
+ break missingId;
+ }
+
+ id = R.id.user_config;
+ MaterialSwitch userConfig = ViewBindings.findChildViewById(rootView, id);
+ if (userConfig == null) {
+ break missingId;
+ }
+
+ id = R.id.vendor_elements;
+ TextInputEditText vendorElements = ViewBindings.findChildViewById(rootView, id);
+ if (vendorElements == null) {
+ break missingId;
+ }
+
+ id = R.id.vendor_elements_wrapper;
+ TextInputLayout vendorElementsWrapper = ViewBindings.findChildViewById(rootView, id);
+ if (vendorElementsWrapper == null) {
+ break missingId;
+ }
+
+ return new DialogWifiApBinding((LinearLayout) rootView, accessControlGroup, acs2g,
+ acs2gWrapper, acs5g, acs5gWrapper, acs6g, acs6gWrapper, advancedApGroup, allowedList,
+ allowedListWrapper, autoShutdown, bandError, bandGroup, bandPrimary, bandSecondary,
+ blockedList, blockedListWrapper, bridgedModeOpportunisticShutdown, bridgedTimeout,
+ bridgedTimeoutWrapper, bssid, bssidWrapper, clientUserControl, hiddenSsid, ieee80211ax,
+ ieee80211be, macRandomization, macRandomizationWrapper, maxChannelBandwidth,
+ maxChannelBandwidthError, maxChannelBandwidthWrapper, maxClient, maxClientWrapper,
+ password, passwordWrapper, persistentRandomizedMac, persistentRandomizedMacWrapper,
+ security, securityWrapper, ssid, ssidWrapper, timeout, timeoutWrapper, toolbar,
+ userConfig, vendorElements, vendorElementsWrapper);
+ }
+ String missingId = rootView.getResources().getResourceName(id);
+ throw new NullPointerException("Missing required view with ID: ".concat(missingId));
+ }
+}
diff --git a/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentClientsBinding.java b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentClientsBinding.java
new file mode 100644
index 00000000..c4a60a96
--- /dev/null
+++ b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentClientsBinding.java
@@ -0,0 +1,75 @@
+// Generated by view binder compiler. Do not edit!
+package hanson.xyz.vpnhotspotmod.databinding;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.recyclerview.widget.RecyclerView;
+import androidx.swiperefreshlayout.widget.SwipeRefreshLayout;
+import androidx.viewbinding.ViewBinding;
+import androidx.viewbinding.ViewBindings;
+import hanson.xyz.vpnhotspotmod.R;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+
+public final class FragmentClientsBinding implements ViewBinding {
+ @NonNull
+ private final SwipeRefreshLayout rootView;
+
+ @NonNull
+ public final RecyclerView clients;
+
+ @NonNull
+ public final SwipeRefreshLayout swipeRefresher;
+
+ private FragmentClientsBinding(@NonNull SwipeRefreshLayout rootView,
+ @NonNull RecyclerView clients, @NonNull SwipeRefreshLayout swipeRefresher) {
+ this.rootView = rootView;
+ this.clients = clients;
+ this.swipeRefresher = swipeRefresher;
+ }
+
+ @Override
+ @NonNull
+ public SwipeRefreshLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static FragmentClientsBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static FragmentClientsBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.fragment_clients, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static FragmentClientsBinding bind(@NonNull View rootView) {
+ // The body of this method is generated in a way you would not otherwise write.
+ // This is done to optimize the compiled bytecode for size and performance.
+ int id;
+ missingId: {
+ id = R.id.clients;
+ RecyclerView clients = ViewBindings.findChildViewById(rootView, id);
+ if (clients == null) {
+ break missingId;
+ }
+
+ SwipeRefreshLayout swipeRefresher = (SwipeRefreshLayout) rootView;
+
+ return new FragmentClientsBinding((SwipeRefreshLayout) rootView, clients, swipeRefresher);
+ }
+ String missingId = rootView.getResources().getResourceName(id);
+ throw new NullPointerException("Missing required view with ID: ".concat(missingId));
+ }
+}
diff --git a/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentEbegBinding.java b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentEbegBinding.java
new file mode 100644
index 00000000..0228ddbc
--- /dev/null
+++ b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentEbegBinding.java
@@ -0,0 +1,105 @@
+// Generated by view binder compiler. Do not edit!
+package hanson.xyz.vpnhotspotmod.databinding;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.Button;
+import android.widget.LinearLayout;
+import android.widget.ScrollView;
+import android.widget.Spinner;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.viewbinding.ViewBinding;
+import androidx.viewbinding.ViewBindings;
+import hanson.xyz.vpnhotspotmod.R;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+
+public final class FragmentEbegBinding implements ViewBinding {
+ @NonNull
+ private final ScrollView rootView;
+
+ @NonNull
+ public final LinearLayout donationsGoogle;
+
+ @NonNull
+ public final Button donationsGoogleAndroidMarketDonateButton;
+
+ @NonNull
+ public final Spinner donationsGoogleAndroidMarketSpinner;
+
+ @NonNull
+ public final Button donationsMoreDonateButton;
+
+ private FragmentEbegBinding(@NonNull ScrollView rootView, @NonNull LinearLayout donationsGoogle,
+ @NonNull Button donationsGoogleAndroidMarketDonateButton,
+ @NonNull Spinner donationsGoogleAndroidMarketSpinner,
+ @NonNull Button donationsMoreDonateButton) {
+ this.rootView = rootView;
+ this.donationsGoogle = donationsGoogle;
+ this.donationsGoogleAndroidMarketDonateButton = donationsGoogleAndroidMarketDonateButton;
+ this.donationsGoogleAndroidMarketSpinner = donationsGoogleAndroidMarketSpinner;
+ this.donationsMoreDonateButton = donationsMoreDonateButton;
+ }
+
+ @Override
+ @NonNull
+ public ScrollView getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static FragmentEbegBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static FragmentEbegBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.fragment_ebeg, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static FragmentEbegBinding bind(@NonNull View rootView) {
+ // The body of this method is generated in a way you would not otherwise write.
+ // This is done to optimize the compiled bytecode for size and performance.
+ int id;
+ missingId: {
+ id = R.id.donations__google;
+ LinearLayout donationsGoogle = ViewBindings.findChildViewById(rootView, id);
+ if (donationsGoogle == null) {
+ break missingId;
+ }
+
+ id = R.id.donations__google_android_market_donate_button;
+ Button donationsGoogleAndroidMarketDonateButton = ViewBindings.findChildViewById(rootView, id);
+ if (donationsGoogleAndroidMarketDonateButton == null) {
+ break missingId;
+ }
+
+ id = R.id.donations__google_android_market_spinner;
+ Spinner donationsGoogleAndroidMarketSpinner = ViewBindings.findChildViewById(rootView, id);
+ if (donationsGoogleAndroidMarketSpinner == null) {
+ break missingId;
+ }
+
+ id = R.id.donations__more_donate_button;
+ Button donationsMoreDonateButton = ViewBindings.findChildViewById(rootView, id);
+ if (donationsMoreDonateButton == null) {
+ break missingId;
+ }
+
+ return new FragmentEbegBinding((ScrollView) rootView, donationsGoogle,
+ donationsGoogleAndroidMarketDonateButton, donationsGoogleAndroidMarketSpinner,
+ donationsMoreDonateButton);
+ }
+ String missingId = rootView.getResources().getResourceName(id);
+ throw new NullPointerException("Missing required view with ID: ".concat(missingId));
+ }
+}
diff --git a/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentTetheringBinding.java b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentTetheringBinding.java
new file mode 100644
index 00000000..166dfe0e
--- /dev/null
+++ b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentTetheringBinding.java
@@ -0,0 +1,59 @@
+// Generated by view binder compiler. Do not edit!
+package hanson.xyz.vpnhotspotmod.databinding;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.recyclerview.widget.RecyclerView;
+import androidx.viewbinding.ViewBinding;
+import hanson.xyz.vpnhotspotmod.R;
+import java.lang.NullPointerException;
+import java.lang.Override;
+
+public final class FragmentTetheringBinding implements ViewBinding {
+ @NonNull
+ private final RecyclerView rootView;
+
+ @NonNull
+ public final RecyclerView interfaces;
+
+ private FragmentTetheringBinding(@NonNull RecyclerView rootView,
+ @NonNull RecyclerView interfaces) {
+ this.rootView = rootView;
+ this.interfaces = interfaces;
+ }
+
+ @Override
+ @NonNull
+ public RecyclerView getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static FragmentTetheringBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static FragmentTetheringBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.fragment_tethering, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static FragmentTetheringBinding bind(@NonNull View rootView) {
+ if (rootView == null) {
+ throw new NullPointerException("rootView");
+ }
+
+ RecyclerView interfaces = (RecyclerView) rootView;
+
+ return new FragmentTetheringBinding((RecyclerView) rootView, interfaces);
+ }
+}
diff --git a/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBinding.java b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBinding.java
new file mode 100644
index 00000000..22bf5b8d
--- /dev/null
+++ b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBinding.java
@@ -0,0 +1,103 @@
+// Generated by data binding compiler. Do not edit!
+package hanson.xyz.vpnhotspotmod.databinding;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.databinding.Bindable;
+import androidx.databinding.DataBindingUtil;
+import androidx.databinding.ViewDataBinding;
+import hanson.xyz.vpnhotspotmod.R;
+import hanson.xyz.vpnhotspotmod.client.Client;
+import hanson.xyz.vpnhotspotmod.client.ClientsFragment;
+import hanson.xyz.vpnhotspotmod.widget.AutoCollapseTextView;
+import java.lang.Deprecated;
+import java.lang.Object;
+
+public abstract class ListitemClientBinding extends ViewDataBinding {
+ @NonNull
+ public final AutoCollapseTextView description;
+
+ @Bindable
+ protected Client mClient;
+
+ @Bindable
+ protected ClientsFragment.TrafficRate mRate;
+
+ protected ListitemClientBinding(Object _bindingComponent, View _root, int _localFieldCount,
+ AutoCollapseTextView description) {
+ super(_bindingComponent, _root, _localFieldCount);
+ this.description = description;
+ }
+
+ public abstract void setClient(@Nullable Client client);
+
+ @Nullable
+ public Client getClient() {
+ return mClient;
+ }
+
+ public abstract void setRate(@Nullable ClientsFragment.TrafficRate rate);
+
+ @Nullable
+ public ClientsFragment.TrafficRate getRate() {
+ return mRate;
+ }
+
+ @NonNull
+ public static ListitemClientBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup root, boolean attachToRoot) {
+ return inflate(inflater, root, attachToRoot, DataBindingUtil.getDefaultComponent());
+ }
+
+ /**
+ * This method receives DataBindingComponent instance as type Object instead of
+ * type DataBindingComponent to avoid causing too many compilation errors if
+ * compilation fails for another reason.
+ * https://issuetracker.google.com/issues/116541301
+ * @Deprecated Use DataBindingUtil.inflate(inflater, R.layout.listitem_client, root, attachToRoot, component)
+ */
+ @NonNull
+ @Deprecated
+ public static ListitemClientBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup root, boolean attachToRoot, @Nullable Object component) {
+ return ViewDataBinding.inflateInternal(inflater, R.layout.listitem_client, root, attachToRoot, component);
+ }
+
+ @NonNull
+ public static ListitemClientBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, DataBindingUtil.getDefaultComponent());
+ }
+
+ /**
+ * This method receives DataBindingComponent instance as type Object instead of
+ * type DataBindingComponent to avoid causing too many compilation errors if
+ * compilation fails for another reason.
+ * https://issuetracker.google.com/issues/116541301
+ * @Deprecated Use DataBindingUtil.inflate(inflater, R.layout.listitem_client, null, false, component)
+ */
+ @NonNull
+ @Deprecated
+ public static ListitemClientBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable Object component) {
+ return ViewDataBinding.inflateInternal(inflater, R.layout.listitem_client, null, false, component);
+ }
+
+ public static ListitemClientBinding bind(@NonNull View view) {
+ return bind(view, DataBindingUtil.getDefaultComponent());
+ }
+
+ /**
+ * This method receives DataBindingComponent instance as type Object instead of
+ * type DataBindingComponent to avoid causing too many compilation errors if
+ * compilation fails for another reason.
+ * https://issuetracker.google.com/issues/116541301
+ * @Deprecated Use DataBindingUtil.bind(view, component)
+ */
+ @Deprecated
+ public static ListitemClientBinding bind(@NonNull View view, @Nullable Object component) {
+ return (ListitemClientBinding)bind(component, view, R.layout.listitem_client);
+ }
+}
diff --git a/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBinding.java b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBinding.java
new file mode 100644
index 00000000..87f2f923
--- /dev/null
+++ b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBinding.java
@@ -0,0 +1,92 @@
+// Generated by data binding compiler. Do not edit!
+package hanson.xyz.vpnhotspotmod.databinding;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.databinding.Bindable;
+import androidx.databinding.DataBindingUtil;
+import androidx.databinding.ViewDataBinding;
+import hanson.xyz.vpnhotspotmod.R;
+import hanson.xyz.vpnhotspotmod.manage.Data;
+import hanson.xyz.vpnhotspotmod.widget.AutoCollapseTextView;
+import java.lang.Deprecated;
+import java.lang.Object;
+
+public abstract class ListitemInterfaceBinding extends ViewDataBinding {
+ @NonNull
+ public final AutoCollapseTextView text;
+
+ @Bindable
+ protected Data mData;
+
+ protected ListitemInterfaceBinding(Object _bindingComponent, View _root, int _localFieldCount,
+ AutoCollapseTextView text) {
+ super(_bindingComponent, _root, _localFieldCount);
+ this.text = text;
+ }
+
+ public abstract void setData(@Nullable Data data);
+
+ @Nullable
+ public Data getData() {
+ return mData;
+ }
+
+ @NonNull
+ public static ListitemInterfaceBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup root, boolean attachToRoot) {
+ return inflate(inflater, root, attachToRoot, DataBindingUtil.getDefaultComponent());
+ }
+
+ /**
+ * This method receives DataBindingComponent instance as type Object instead of
+ * type DataBindingComponent to avoid causing too many compilation errors if
+ * compilation fails for another reason.
+ * https://issuetracker.google.com/issues/116541301
+ * @Deprecated Use DataBindingUtil.inflate(inflater, R.layout.listitem_interface, root, attachToRoot, component)
+ */
+ @NonNull
+ @Deprecated
+ public static ListitemInterfaceBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup root, boolean attachToRoot, @Nullable Object component) {
+ return ViewDataBinding.inflateInternal(inflater, R.layout.listitem_interface, root, attachToRoot, component);
+ }
+
+ @NonNull
+ public static ListitemInterfaceBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, DataBindingUtil.getDefaultComponent());
+ }
+
+ /**
+ * This method receives DataBindingComponent instance as type Object instead of
+ * type DataBindingComponent to avoid causing too many compilation errors if
+ * compilation fails for another reason.
+ * https://issuetracker.google.com/issues/116541301
+ * @Deprecated Use DataBindingUtil.inflate(inflater, R.layout.listitem_interface, null, false, component)
+ */
+ @NonNull
+ @Deprecated
+ public static ListitemInterfaceBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable Object component) {
+ return ViewDataBinding.inflateInternal(inflater, R.layout.listitem_interface, null, false, component);
+ }
+
+ public static ListitemInterfaceBinding bind(@NonNull View view) {
+ return bind(view, DataBindingUtil.getDefaultComponent());
+ }
+
+ /**
+ * This method receives DataBindingComponent instance as type Object instead of
+ * type DataBindingComponent to avoid causing too many compilation errors if
+ * compilation fails for another reason.
+ * https://issuetracker.google.com/issues/116541301
+ * @Deprecated Use DataBindingUtil.bind(view, component)
+ */
+ @Deprecated
+ public static ListitemInterfaceBinding bind(@NonNull View view, @Nullable Object component) {
+ return (ListitemInterfaceBinding)bind(component, view, R.layout.listitem_interface);
+ }
+}
diff --git a/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBinding.java b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBinding.java
new file mode 100644
index 00000000..d7077e4f
--- /dev/null
+++ b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBinding.java
@@ -0,0 +1,92 @@
+// Generated by data binding compiler. Do not edit!
+package hanson.xyz.vpnhotspotmod.databinding;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.TextView;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.databinding.Bindable;
+import androidx.databinding.DataBindingUtil;
+import androidx.databinding.ViewDataBinding;
+import hanson.xyz.vpnhotspotmod.R;
+import hanson.xyz.vpnhotspotmod.manage.ManageBar;
+import java.lang.Deprecated;
+import java.lang.Object;
+
+public abstract class ListitemManageBinding extends ViewDataBinding {
+ @NonNull
+ public final TextView offloadEnabled;
+
+ @Bindable
+ protected ManageBar.Data mData;
+
+ protected ListitemManageBinding(Object _bindingComponent, View _root, int _localFieldCount,
+ TextView offloadEnabled) {
+ super(_bindingComponent, _root, _localFieldCount);
+ this.offloadEnabled = offloadEnabled;
+ }
+
+ public abstract void setData(@Nullable ManageBar.Data data);
+
+ @Nullable
+ public ManageBar.Data getData() {
+ return mData;
+ }
+
+ @NonNull
+ public static ListitemManageBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup root, boolean attachToRoot) {
+ return inflate(inflater, root, attachToRoot, DataBindingUtil.getDefaultComponent());
+ }
+
+ /**
+ * This method receives DataBindingComponent instance as type Object instead of
+ * type DataBindingComponent to avoid causing too many compilation errors if
+ * compilation fails for another reason.
+ * https://issuetracker.google.com/issues/116541301
+ * @Deprecated Use DataBindingUtil.inflate(inflater, R.layout.listitem_manage, root, attachToRoot, component)
+ */
+ @NonNull
+ @Deprecated
+ public static ListitemManageBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup root, boolean attachToRoot, @Nullable Object component) {
+ return ViewDataBinding.inflateInternal(inflater, R.layout.listitem_manage, root, attachToRoot, component);
+ }
+
+ @NonNull
+ public static ListitemManageBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, DataBindingUtil.getDefaultComponent());
+ }
+
+ /**
+ * This method receives DataBindingComponent instance as type Object instead of
+ * type DataBindingComponent to avoid causing too many compilation errors if
+ * compilation fails for another reason.
+ * https://issuetracker.google.com/issues/116541301
+ * @Deprecated Use DataBindingUtil.inflate(inflater, R.layout.listitem_manage, null, false, component)
+ */
+ @NonNull
+ @Deprecated
+ public static ListitemManageBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable Object component) {
+ return ViewDataBinding.inflateInternal(inflater, R.layout.listitem_manage, null, false, component);
+ }
+
+ public static ListitemManageBinding bind(@NonNull View view) {
+ return bind(view, DataBindingUtil.getDefaultComponent());
+ }
+
+ /**
+ * This method receives DataBindingComponent instance as type Object instead of
+ * type DataBindingComponent to avoid causing too many compilation errors if
+ * compilation fails for another reason.
+ * https://issuetracker.google.com/issues/116541301
+ * @Deprecated Use DataBindingUtil.bind(view, component)
+ */
+ @Deprecated
+ public static ListitemManageBinding bind(@NonNull View view, @Nullable Object component) {
+ return (ListitemManageBinding)bind(component, view, R.layout.listitem_manage);
+ }
+}
diff --git a/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBinding.java b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBinding.java
new file mode 100644
index 00000000..eca337af
--- /dev/null
+++ b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBinding.java
@@ -0,0 +1,92 @@
+// Generated by data binding compiler. Do not edit!
+package hanson.xyz.vpnhotspotmod.databinding;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.databinding.Bindable;
+import androidx.databinding.DataBindingUtil;
+import androidx.databinding.ViewDataBinding;
+import hanson.xyz.vpnhotspotmod.R;
+import hanson.xyz.vpnhotspotmod.manage.RepeaterManager;
+import hanson.xyz.vpnhotspotmod.widget.AutoCollapseTextView;
+import java.lang.Deprecated;
+import java.lang.Object;
+
+public abstract class ListitemRepeaterBinding extends ViewDataBinding {
+ @NonNull
+ public final AutoCollapseTextView addresses;
+
+ @Bindable
+ protected RepeaterManager.Data mData;
+
+ protected ListitemRepeaterBinding(Object _bindingComponent, View _root, int _localFieldCount,
+ AutoCollapseTextView addresses) {
+ super(_bindingComponent, _root, _localFieldCount);
+ this.addresses = addresses;
+ }
+
+ public abstract void setData(@Nullable RepeaterManager.Data data);
+
+ @Nullable
+ public RepeaterManager.Data getData() {
+ return mData;
+ }
+
+ @NonNull
+ public static ListitemRepeaterBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup root, boolean attachToRoot) {
+ return inflate(inflater, root, attachToRoot, DataBindingUtil.getDefaultComponent());
+ }
+
+ /**
+ * This method receives DataBindingComponent instance as type Object instead of
+ * type DataBindingComponent to avoid causing too many compilation errors if
+ * compilation fails for another reason.
+ * https://issuetracker.google.com/issues/116541301
+ * @Deprecated Use DataBindingUtil.inflate(inflater, R.layout.listitem_repeater, root, attachToRoot, component)
+ */
+ @NonNull
+ @Deprecated
+ public static ListitemRepeaterBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup root, boolean attachToRoot, @Nullable Object component) {
+ return ViewDataBinding.inflateInternal(inflater, R.layout.listitem_repeater, root, attachToRoot, component);
+ }
+
+ @NonNull
+ public static ListitemRepeaterBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, DataBindingUtil.getDefaultComponent());
+ }
+
+ /**
+ * This method receives DataBindingComponent instance as type Object instead of
+ * type DataBindingComponent to avoid causing too many compilation errors if
+ * compilation fails for another reason.
+ * https://issuetracker.google.com/issues/116541301
+ * @Deprecated Use DataBindingUtil.inflate(inflater, R.layout.listitem_repeater, null, false, component)
+ */
+ @NonNull
+ @Deprecated
+ public static ListitemRepeaterBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable Object component) {
+ return ViewDataBinding.inflateInternal(inflater, R.layout.listitem_repeater, null, false, component);
+ }
+
+ public static ListitemRepeaterBinding bind(@NonNull View view) {
+ return bind(view, DataBindingUtil.getDefaultComponent());
+ }
+
+ /**
+ * This method receives DataBindingComponent instance as type Object instead of
+ * type DataBindingComponent to avoid causing too many compilation errors if
+ * compilation fails for another reason.
+ * https://issuetracker.google.com/issues/116541301
+ * @Deprecated Use DataBindingUtil.bind(view, component)
+ */
+ @Deprecated
+ public static ListitemRepeaterBinding bind(@NonNull View view, @Nullable Object component) {
+ return (ListitemRepeaterBinding)bind(component, view, R.layout.listitem_repeater);
+ }
+}
diff --git a/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceMaterialBinding.java b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceMaterialBinding.java
new file mode 100644
index 00000000..1e5a000f
--- /dev/null
+++ b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceMaterialBinding.java
@@ -0,0 +1,89 @@
+// Generated by view binder compiler. Do not edit!
+package hanson.xyz.vpnhotspotmod.databinding;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.LinearLayout;
+import android.widget.TextView;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.viewbinding.ViewBinding;
+import androidx.viewbinding.ViewBindings;
+import hanson.xyz.vpnhotspotmod.R;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+
+public final class PreferenceMaterialBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final TextView summary;
+
+ @NonNull
+ public final TextView title;
+
+ @NonNull
+ public final LinearLayout widgetFrame;
+
+ private PreferenceMaterialBinding(@NonNull LinearLayout rootView, @NonNull TextView summary,
+ @NonNull TextView title, @NonNull LinearLayout widgetFrame) {
+ this.rootView = rootView;
+ this.summary = summary;
+ this.title = title;
+ this.widgetFrame = widgetFrame;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static PreferenceMaterialBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static PreferenceMaterialBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.preference_material, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static PreferenceMaterialBinding bind(@NonNull View rootView) {
+ // The body of this method is generated in a way you would not otherwise write.
+ // This is done to optimize the compiled bytecode for size and performance.
+ int id;
+ missingId: {
+ id = android.R.id.summary;
+ TextView summary = ViewBindings.findChildViewById(rootView, id);
+ if (summary == null) {
+ break missingId;
+ }
+
+ id = android.R.id.title;
+ TextView title = ViewBindings.findChildViewById(rootView, id);
+ if (title == null) {
+ break missingId;
+ }
+
+ id = android.R.id.widget_frame;
+ LinearLayout widgetFrame = ViewBindings.findChildViewById(rootView, id);
+ if (widgetFrame == null) {
+ break missingId;
+ }
+
+ return new PreferenceMaterialBinding((LinearLayout) rootView, summary, title, widgetFrame);
+ }
+ String missingId = rootView.getResources().getResourceName(id);
+ throw new NullPointerException("Missing required view with ID: ".concat(missingId));
+ }
+}
diff --git a/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetEdittextAutocompleteBinding.java b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetEdittextAutocompleteBinding.java
new file mode 100644
index 00000000..84b33670
--- /dev/null
+++ b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetEdittextAutocompleteBinding.java
@@ -0,0 +1,70 @@
+// Generated by view binder compiler. Do not edit!
+package hanson.xyz.vpnhotspotmod.databinding;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.viewbinding.ViewBinding;
+import androidx.viewbinding.ViewBindings;
+import com.google.android.material.textfield.TextInputLayout;
+import hanson.xyz.vpnhotspotmod.R;
+import hanson.xyz.vpnhotspotmod.widget.AlwaysAutoCompleteEditText;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+
+public final class PreferenceWidgetEdittextAutocompleteBinding implements ViewBinding {
+ @NonNull
+ private final TextInputLayout rootView;
+
+ @NonNull
+ public final AlwaysAutoCompleteEditText edit;
+
+ private PreferenceWidgetEdittextAutocompleteBinding(@NonNull TextInputLayout rootView,
+ @NonNull AlwaysAutoCompleteEditText edit) {
+ this.rootView = rootView;
+ this.edit = edit;
+ }
+
+ @Override
+ @NonNull
+ public TextInputLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static PreferenceWidgetEdittextAutocompleteBinding inflate(
+ @NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static PreferenceWidgetEdittextAutocompleteBinding inflate(
+ @NonNull LayoutInflater inflater, @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.preference_widget_edittext_autocomplete, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static PreferenceWidgetEdittextAutocompleteBinding bind(@NonNull View rootView) {
+ // The body of this method is generated in a way you would not otherwise write.
+ // This is done to optimize the compiled bytecode for size and performance.
+ int id;
+ missingId: {
+ id = android.R.id.edit;
+ AlwaysAutoCompleteEditText edit = ViewBindings.findChildViewById(rootView, id);
+ if (edit == null) {
+ break missingId;
+ }
+
+ return new PreferenceWidgetEdittextAutocompleteBinding((TextInputLayout) rootView, edit);
+ }
+ String missingId = rootView.getResources().getResourceName(id);
+ throw new NullPointerException("Missing required view with ID: ".concat(missingId));
+ }
+}
diff --git a/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetMaterialSwitchBinding.java b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetMaterialSwitchBinding.java
new file mode 100644
index 00000000..00f4c084
--- /dev/null
+++ b/mobile/build/generated/data_binding_base_class_source_out/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetMaterialSwitchBinding.java
@@ -0,0 +1,59 @@
+// Generated by view binder compiler. Do not edit!
+package hanson.xyz.vpnhotspotmod.databinding;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.viewbinding.ViewBinding;
+import com.google.android.material.materialswitch.MaterialSwitch;
+import hanson.xyz.vpnhotspotmod.R;
+import java.lang.NullPointerException;
+import java.lang.Override;
+
+public final class PreferenceWidgetMaterialSwitchBinding implements ViewBinding {
+ @NonNull
+ private final MaterialSwitch rootView;
+
+ @NonNull
+ public final MaterialSwitch switchWidget;
+
+ private PreferenceWidgetMaterialSwitchBinding(@NonNull MaterialSwitch rootView,
+ @NonNull MaterialSwitch switchWidget) {
+ this.rootView = rootView;
+ this.switchWidget = switchWidget;
+ }
+
+ @Override
+ @NonNull
+ public MaterialSwitch getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static PreferenceWidgetMaterialSwitchBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static PreferenceWidgetMaterialSwitchBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.preference_widget_material_switch, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static PreferenceWidgetMaterialSwitchBinding bind(@NonNull View rootView) {
+ if (rootView == null) {
+ throw new NullPointerException("rootView");
+ }
+
+ MaterialSwitch switchWidget = (MaterialSwitch) rootView;
+
+ return new PreferenceWidgetMaterialSwitchBinding((MaterialSwitch) rootView, switchWidget);
+ }
+}
diff --git a/mobile/build/generated/data_binding_trigger/freedomDebug/hanson/xyz/vpnhotspotmod/DataBindingTriggerClass.java b/mobile/build/generated/data_binding_trigger/freedomDebug/hanson/xyz/vpnhotspotmod/DataBindingTriggerClass.java
new file mode 100644
index 00000000..d25c297a
--- /dev/null
+++ b/mobile/build/generated/data_binding_trigger/freedomDebug/hanson/xyz/vpnhotspotmod/DataBindingTriggerClass.java
@@ -0,0 +1,4 @@
+package hanson.xyz.vpnhotspotmod;
+
+@androidx.databinding.BindingBuildInfo
+public class DataBindingTriggerClass {}
\ No newline at end of file
diff --git a/mobile/build/generated/res/processFreedomDebugGoogleServices/values/values.xml b/mobile/build/generated/res/processFreedomDebugGoogleServices/values/values.xml
new file mode 100644
index 00000000..6e67cc1c
--- /dev/null
+++ b/mobile/build/generated/res/processFreedomDebugGoogleServices/values/values.xml
@@ -0,0 +1,11 @@
+
+
+ 13108846109-5iemp5pbapg7n5epbk0mv96007m9bhmg.apps.googleusercontent.com
+ https://mygod-vpnhotspot.firebaseio.com
+ 13108846109
+ AIzaSyADp0gTf25H6H3KxDRKwvp0EaWq_XvYUmg
+ 1:13108846109:android:63120dcb2e900ed0
+ AIzaSyADp0gTf25H6H3KxDRKwvp0EaWq_XvYUmg
+ mygod-vpnhotspot.appspot.com
+ mygod-vpnhotspot
+
diff --git a/mobile/build/generated/source/buildConfig/freedom/debug/hanson/xyz/vpnhotspotmod/BuildConfig.java b/mobile/build/generated/source/buildConfig/freedom/debug/hanson/xyz/vpnhotspotmod/BuildConfig.java
new file mode 100644
index 00000000..37b530a2
--- /dev/null
+++ b/mobile/build/generated/source/buildConfig/freedom/debug/hanson/xyz/vpnhotspotmod/BuildConfig.java
@@ -0,0 +1,13 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package hanson.xyz.vpnhotspotmod;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String APPLICATION_ID = "hanson.xyz.vpnhotspotmod";
+ public static final String BUILD_TYPE = "debug";
+ public static final String FLAVOR = "freedom";
+ public static final int VERSION_CODE = 1005;
+ public static final String VERSION_NAME = "2.16.5";
+}
diff --git a/mobile/build/generated/source/kapt/freedomDebug/androidx/databinding/DataBinderMapperImpl.java b/mobile/build/generated/source/kapt/freedomDebug/androidx/databinding/DataBinderMapperImpl.java
new file mode 100644
index 00000000..928735b4
--- /dev/null
+++ b/mobile/build/generated/source/kapt/freedomDebug/androidx/databinding/DataBinderMapperImpl.java
@@ -0,0 +1,7 @@
+package androidx.databinding;
+
+public class DataBinderMapperImpl extends MergedDataBinderMapper {
+ DataBinderMapperImpl() {
+ addMapper(new hanson.xyz.vpnhotspotmod.DataBinderMapperImpl());
+ }
+}
diff --git a/mobile/build/generated/source/kapt/freedomDebug/androidx/databinding/DataBindingComponent.java b/mobile/build/generated/source/kapt/freedomDebug/androidx/databinding/DataBindingComponent.java
new file mode 100644
index 00000000..4ca39f98
--- /dev/null
+++ b/mobile/build/generated/source/kapt/freedomDebug/androidx/databinding/DataBindingComponent.java
@@ -0,0 +1,4 @@
+package androidx.databinding;
+
+public interface DataBindingComponent {
+}
diff --git a/mobile/build/generated/source/kapt/freedomDebug/androidx/databinding/library/baseAdapters/BR.java b/mobile/build/generated/source/kapt/freedomDebug/androidx/databinding/library/baseAdapters/BR.java
new file mode 100644
index 00000000..ad9fdae8
--- /dev/null
+++ b/mobile/build/generated/source/kapt/freedomDebug/androidx/databinding/library/baseAdapters/BR.java
@@ -0,0 +1,19 @@
+package androidx.databinding.library.baseAdapters;
+
+public class BR {
+ public static final int _all = 0;
+
+ public static final int addresses = 1;
+
+ public static final int client = 2;
+
+ public static final int data = 3;
+
+ public static final int rate = 4;
+
+ public static final int serviceStarted = 5;
+
+ public static final int switchEnabled = 6;
+
+ public static final int title = 7;
+}
diff --git a/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/BR.java b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/BR.java
new file mode 100644
index 00000000..9fc919ed
--- /dev/null
+++ b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/BR.java
@@ -0,0 +1,19 @@
+package hanson.xyz.vpnhotspotmod;
+
+public class BR {
+ public static final int _all = 0;
+
+ public static final int addresses = 1;
+
+ public static final int client = 2;
+
+ public static final int data = 3;
+
+ public static final int rate = 4;
+
+ public static final int serviceStarted = 5;
+
+ public static final int switchEnabled = 6;
+
+ public static final int title = 7;
+}
diff --git a/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl.java b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl.java
new file mode 100644
index 00000000..79ce5578
--- /dev/null
+++ b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl.java
@@ -0,0 +1,143 @@
+package hanson.xyz.vpnhotspotmod;
+
+import android.util.SparseArray;
+import android.util.SparseIntArray;
+import android.view.View;
+import androidx.databinding.DataBinderMapper;
+import androidx.databinding.DataBindingComponent;
+import androidx.databinding.ViewDataBinding;
+import hanson.xyz.vpnhotspotmod.databinding.ListitemClientBindingImpl;
+import hanson.xyz.vpnhotspotmod.databinding.ListitemInterfaceBindingImpl;
+import hanson.xyz.vpnhotspotmod.databinding.ListitemManageBindingImpl;
+import hanson.xyz.vpnhotspotmod.databinding.ListitemRepeaterBindingImpl;
+import java.lang.IllegalArgumentException;
+import java.lang.Integer;
+import java.lang.Object;
+import java.lang.Override;
+import java.lang.RuntimeException;
+import java.lang.String;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+
+public class DataBinderMapperImpl extends DataBinderMapper {
+ private static final int LAYOUT_LISTITEMCLIENT = 1;
+
+ private static final int LAYOUT_LISTITEMINTERFACE = 2;
+
+ private static final int LAYOUT_LISTITEMMANAGE = 3;
+
+ private static final int LAYOUT_LISTITEMREPEATER = 4;
+
+ private static final SparseIntArray INTERNAL_LAYOUT_ID_LOOKUP = new SparseIntArray(4);
+
+ static {
+ INTERNAL_LAYOUT_ID_LOOKUP.put(hanson.xyz.vpnhotspotmod.R.layout.listitem_client, LAYOUT_LISTITEMCLIENT);
+ INTERNAL_LAYOUT_ID_LOOKUP.put(hanson.xyz.vpnhotspotmod.R.layout.listitem_interface, LAYOUT_LISTITEMINTERFACE);
+ INTERNAL_LAYOUT_ID_LOOKUP.put(hanson.xyz.vpnhotspotmod.R.layout.listitem_manage, LAYOUT_LISTITEMMANAGE);
+ INTERNAL_LAYOUT_ID_LOOKUP.put(hanson.xyz.vpnhotspotmod.R.layout.listitem_repeater, LAYOUT_LISTITEMREPEATER);
+ }
+
+ @Override
+ public ViewDataBinding getDataBinder(DataBindingComponent component, View view, int layoutId) {
+ int localizedLayoutId = INTERNAL_LAYOUT_ID_LOOKUP.get(layoutId);
+ if(localizedLayoutId > 0) {
+ final Object tag = view.getTag();
+ if(tag == null) {
+ throw new RuntimeException("view must have a tag");
+ }
+ switch(localizedLayoutId) {
+ case LAYOUT_LISTITEMCLIENT: {
+ if ("layout/listitem_client_0".equals(tag)) {
+ return new ListitemClientBindingImpl(component, view);
+ }
+ throw new IllegalArgumentException("The tag for listitem_client is invalid. Received: " + tag);
+ }
+ case LAYOUT_LISTITEMINTERFACE: {
+ if ("layout/listitem_interface_0".equals(tag)) {
+ return new ListitemInterfaceBindingImpl(component, view);
+ }
+ throw new IllegalArgumentException("The tag for listitem_interface is invalid. Received: " + tag);
+ }
+ case LAYOUT_LISTITEMMANAGE: {
+ if ("layout/listitem_manage_0".equals(tag)) {
+ return new ListitemManageBindingImpl(component, view);
+ }
+ throw new IllegalArgumentException("The tag for listitem_manage is invalid. Received: " + tag);
+ }
+ case LAYOUT_LISTITEMREPEATER: {
+ if ("layout/listitem_repeater_0".equals(tag)) {
+ return new ListitemRepeaterBindingImpl(component, view);
+ }
+ throw new IllegalArgumentException("The tag for listitem_repeater is invalid. Received: " + tag);
+ }
+ }
+ }
+ return null;
+ }
+
+ @Override
+ public ViewDataBinding getDataBinder(DataBindingComponent component, View[] views, int layoutId) {
+ if(views == null || views.length == 0) {
+ return null;
+ }
+ int localizedLayoutId = INTERNAL_LAYOUT_ID_LOOKUP.get(layoutId);
+ if(localizedLayoutId > 0) {
+ final Object tag = views[0].getTag();
+ if(tag == null) {
+ throw new RuntimeException("view must have a tag");
+ }
+ switch(localizedLayoutId) {
+ }
+ }
+ return null;
+ }
+
+ @Override
+ public int getLayoutId(String tag) {
+ if (tag == null) {
+ return 0;
+ }
+ Integer tmpVal = InnerLayoutIdLookup.sKeys.get(tag);
+ return tmpVal == null ? 0 : tmpVal;
+ }
+
+ @Override
+ public String convertBrIdToString(int localId) {
+ String tmpVal = InnerBrLookup.sKeys.get(localId);
+ return tmpVal;
+ }
+
+ @Override
+ public List collectDependencies() {
+ ArrayList result = new ArrayList(1);
+ result.add(new androidx.databinding.library.baseAdapters.DataBinderMapperImpl());
+ return result;
+ }
+
+ private static class InnerBrLookup {
+ static final SparseArray sKeys = new SparseArray(8);
+
+ static {
+ sKeys.put(0, "_all");
+ sKeys.put(1, "addresses");
+ sKeys.put(2, "client");
+ sKeys.put(3, "data");
+ sKeys.put(4, "rate");
+ sKeys.put(5, "serviceStarted");
+ sKeys.put(6, "switchEnabled");
+ sKeys.put(7, "title");
+ }
+ }
+
+ private static class InnerLayoutIdLookup {
+ static final HashMap sKeys = new HashMap(4);
+
+ static {
+ sKeys.put("layout/listitem_client_0", hanson.xyz.vpnhotspotmod.R.layout.listitem_client);
+ sKeys.put("layout/listitem_interface_0", hanson.xyz.vpnhotspotmod.R.layout.listitem_interface);
+ sKeys.put("layout/listitem_manage_0", hanson.xyz.vpnhotspotmod.R.layout.listitem_manage);
+ sKeys.put("layout/listitem_repeater_0", hanson.xyz.vpnhotspotmod.R.layout.listitem_repeater);
+ }
+ }
+}
diff --git a/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBindingImpl.java b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBindingImpl.java
new file mode 100644
index 00000000..f089e545
--- /dev/null
+++ b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBindingImpl.java
@@ -0,0 +1,282 @@
+package hanson.xyz.vpnhotspotmod.databinding;
+import hanson.xyz.vpnhotspotmod.R;
+import hanson.xyz.vpnhotspotmod.BR;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import android.view.View;
+@SuppressWarnings("unchecked")
+public class ListitemClientBindingImpl extends ListitemClientBinding {
+
+ @Nullable
+ private static final androidx.databinding.ViewDataBinding.IncludedLayouts sIncludes;
+ @Nullable
+ private static final android.util.SparseIntArray sViewsWithIds;
+ static {
+ sIncludes = null;
+ sViewsWithIds = null;
+ }
+ // views
+ @NonNull
+ private final android.widget.LinearLayout mboundView0;
+ @NonNull
+ private final android.widget.ImageView mboundView1;
+ @NonNull
+ private final hanson.xyz.vpnhotspotmod.widget.LinkTextView mboundView2;
+ @NonNull
+ private final hanson.xyz.vpnhotspotmod.widget.AutoCollapseTextView mboundView4;
+ // variables
+ // values
+ // listeners
+ // Inverse Binding Event Handlers
+
+ public ListitemClientBindingImpl(@Nullable androidx.databinding.DataBindingComponent bindingComponent, @NonNull View root) {
+ this(bindingComponent, root, mapBindings(bindingComponent, root, 5, sIncludes, sViewsWithIds));
+ }
+ private ListitemClientBindingImpl(androidx.databinding.DataBindingComponent bindingComponent, View root, Object[] bindings) {
+ super(bindingComponent, root, 4
+ , (hanson.xyz.vpnhotspotmod.widget.AutoCollapseTextView) bindings[3]
+ );
+ this.description.setTag(null);
+ this.mboundView0 = (android.widget.LinearLayout) bindings[0];
+ this.mboundView0.setTag(null);
+ this.mboundView1 = (android.widget.ImageView) bindings[1];
+ this.mboundView1.setTag(null);
+ this.mboundView2 = (hanson.xyz.vpnhotspotmod.widget.LinkTextView) bindings[2];
+ this.mboundView2.setTag(null);
+ this.mboundView4 = (hanson.xyz.vpnhotspotmod.widget.AutoCollapseTextView) bindings[4];
+ this.mboundView4.setTag(null);
+ setRootTag(root);
+ // listeners
+ invalidateAll();
+ }
+
+ @Override
+ public void invalidateAll() {
+ synchronized(this) {
+ mDirtyFlags = 0x20L;
+ }
+ requestRebind();
+ }
+
+ @Override
+ public boolean hasPendingBindings() {
+ synchronized(this) {
+ if (mDirtyFlags != 0) {
+ return true;
+ }
+ }
+ return false;
+ }
+
+ @Override
+ public boolean setVariable(int variableId, @Nullable Object variable) {
+ boolean variableSet = true;
+ if (BR.rate == variableId) {
+ setRate((hanson.xyz.vpnhotspotmod.client.ClientsFragment.TrafficRate) variable);
+ }
+ else if (BR.client == variableId) {
+ setClient((hanson.xyz.vpnhotspotmod.client.Client) variable);
+ }
+ else {
+ variableSet = false;
+ }
+ return variableSet;
+ }
+
+ public void setRate(@Nullable hanson.xyz.vpnhotspotmod.client.ClientsFragment.TrafficRate Rate) {
+ updateRegistration(0, Rate);
+ this.mRate = Rate;
+ synchronized(this) {
+ mDirtyFlags |= 0x1L;
+ }
+ notifyPropertyChanged(BR.rate);
+ super.requestRebind();
+ }
+ public void setClient(@Nullable hanson.xyz.vpnhotspotmod.client.Client Client) {
+ this.mClient = Client;
+ synchronized(this) {
+ mDirtyFlags |= 0x10L;
+ }
+ notifyPropertyChanged(BR.client);
+ super.requestRebind();
+ }
+
+ @Override
+ protected boolean onFieldChange(int localFieldId, Object object, int fieldId) {
+ switch (localFieldId) {
+ case 0 :
+ return onChangeRate((hanson.xyz.vpnhotspotmod.client.ClientsFragment.TrafficRate) object, fieldId);
+ case 1 :
+ return onChangeClientTitleSelectable((androidx.lifecycle.LiveData) object, fieldId);
+ case 2 :
+ return onChangeClientDescription((androidx.lifecycle.LiveData) object, fieldId);
+ case 3 :
+ return onChangeClientTitle((androidx.lifecycle.LiveData) object, fieldId);
+ }
+ return false;
+ }
+ private boolean onChangeRate(hanson.xyz.vpnhotspotmod.client.ClientsFragment.TrafficRate Rate, int fieldId) {
+ if (fieldId == BR._all) {
+ synchronized(this) {
+ mDirtyFlags |= 0x1L;
+ }
+ return true;
+ }
+ return false;
+ }
+ private boolean onChangeClientTitleSelectable(androidx.lifecycle.LiveData ClientTitleSelectable, int fieldId) {
+ if (fieldId == BR._all) {
+ synchronized(this) {
+ mDirtyFlags |= 0x2L;
+ }
+ return true;
+ }
+ return false;
+ }
+ private boolean onChangeClientDescription(androidx.lifecycle.LiveData ClientDescription, int fieldId) {
+ if (fieldId == BR._all) {
+ synchronized(this) {
+ mDirtyFlags |= 0x4L;
+ }
+ return true;
+ }
+ return false;
+ }
+ private boolean onChangeClientTitle(androidx.lifecycle.LiveData ClientTitle, int fieldId) {
+ if (fieldId == BR._all) {
+ synchronized(this) {
+ mDirtyFlags |= 0x8L;
+ }
+ return true;
+ }
+ return false;
+ }
+
+ @Override
+ protected void executeBindings() {
+ long dirtyFlags = 0;
+ synchronized(this) {
+ dirtyFlags = mDirtyFlags;
+ mDirtyFlags = 0;
+ }
+ java.lang.Boolean clientTitleSelectableGetValue = null;
+ hanson.xyz.vpnhotspotmod.client.ClientsFragment.TrafficRate rate = mRate;
+ int clientIcon = 0;
+ androidx.lifecycle.LiveData clientTitleSelectable = null;
+ androidx.lifecycle.LiveData clientDescription = null;
+ hanson.xyz.vpnhotspotmod.client.Client client = mClient;
+ java.lang.CharSequence clientDescriptionGetValue = null;
+ androidx.lifecycle.LiveData clientTitle = null;
+ java.lang.String rateToString = null;
+ boolean androidxDatabindingViewDataBindingSafeUnboxClientTitleSelectableGetValue = false;
+ android.text.SpannableStringBuilder clientTitleGetValue = null;
+
+ if ((dirtyFlags & 0x21L) != 0) {
+
+
+
+ if (rate != null) {
+ // read rate.toString()
+ rateToString = rate.toString();
+ }
+ }
+ if ((dirtyFlags & 0x3eL) != 0) {
+
+
+ if ((dirtyFlags & 0x30L) != 0) {
+
+ if (client != null) {
+ // read client.icon
+ clientIcon = client.getIcon();
+ }
+ }
+ if ((dirtyFlags & 0x32L) != 0) {
+
+ if (client != null) {
+ // read client.titleSelectable
+ clientTitleSelectable = client.getTitleSelectable();
+ }
+ updateLiveDataRegistration(1, clientTitleSelectable);
+
+
+ if (clientTitleSelectable != null) {
+ // read client.titleSelectable.getValue()
+ clientTitleSelectableGetValue = clientTitleSelectable.getValue();
+ }
+
+
+ // read androidx.databinding.ViewDataBinding.safeUnbox(client.titleSelectable.getValue())
+ androidxDatabindingViewDataBindingSafeUnboxClientTitleSelectableGetValue = androidx.databinding.ViewDataBinding.safeUnbox(clientTitleSelectableGetValue);
+ }
+ if ((dirtyFlags & 0x34L) != 0) {
+
+ if (client != null) {
+ // read client.description
+ clientDescription = client.getDescription();
+ }
+ updateLiveDataRegistration(2, clientDescription);
+
+
+ if (clientDescription != null) {
+ // read client.description.getValue()
+ clientDescriptionGetValue = clientDescription.getValue();
+ }
+ }
+ if ((dirtyFlags & 0x38L) != 0) {
+
+ if (client != null) {
+ // read client.title
+ clientTitle = client.getTitle();
+ }
+ updateLiveDataRegistration(3, clientTitle);
+
+
+ if (clientTitle != null) {
+ // read client.title.getValue()
+ clientTitleGetValue = clientTitle.getValue();
+ }
+ }
+ }
+ // batch finished
+ if ((dirtyFlags & 0x34L) != 0) {
+ // api target 1
+
+ androidx.databinding.adapters.TextViewBindingAdapter.setText(this.description, clientDescriptionGetValue);
+ }
+ if ((dirtyFlags & 0x30L) != 0) {
+ // api target 1
+
+ hanson.xyz.vpnhotspotmod.util.UtilsKt.setImageResource(this.mboundView1, clientIcon);
+ }
+ if ((dirtyFlags & 0x38L) != 0) {
+ // api target 1
+
+ androidx.databinding.adapters.TextViewBindingAdapter.setText(this.mboundView2, clientTitleGetValue);
+ }
+ if ((dirtyFlags & 0x32L) != 0) {
+ // api target 11
+ if(getBuildSdkInt() >= 11) {
+
+ this.mboundView2.setTextIsSelectable(androidxDatabindingViewDataBindingSafeUnboxClientTitleSelectableGetValue);
+ }
+ }
+ if ((dirtyFlags & 0x21L) != 0) {
+ // api target 1
+
+ androidx.databinding.adapters.TextViewBindingAdapter.setText(this.mboundView4, rateToString);
+ }
+ }
+ // Listener Stub Implementations
+ // callback impls
+ // dirty flag
+ private long mDirtyFlags = 0xffffffffffffffffL;
+ /* flag mapping
+ flag 0 (0x1L): rate
+ flag 1 (0x2L): client.titleSelectable
+ flag 2 (0x3L): client.description
+ flag 3 (0x4L): client.title
+ flag 4 (0x5L): client
+ flag 5 (0x6L): null
+ flag mapping end*/
+ //end
+}
\ No newline at end of file
diff --git a/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBindingImpl.java b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBindingImpl.java
new file mode 100644
index 00000000..e1e815f0
--- /dev/null
+++ b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBindingImpl.java
@@ -0,0 +1,166 @@
+package hanson.xyz.vpnhotspotmod.databinding;
+import hanson.xyz.vpnhotspotmod.R;
+import hanson.xyz.vpnhotspotmod.BR;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import android.view.View;
+@SuppressWarnings("unchecked")
+public class ListitemInterfaceBindingImpl extends ListitemInterfaceBinding {
+
+ @Nullable
+ private static final androidx.databinding.ViewDataBinding.IncludedLayouts sIncludes;
+ @Nullable
+ private static final android.util.SparseIntArray sViewsWithIds;
+ static {
+ sIncludes = null;
+ sViewsWithIds = null;
+ }
+ // views
+ @NonNull
+ private final android.widget.LinearLayout mboundView0;
+ @NonNull
+ private final android.widget.ImageView mboundView1;
+ @NonNull
+ private final android.widget.TextView mboundView2;
+ @NonNull
+ private final com.google.android.material.materialswitch.MaterialSwitch mboundView4;
+ // variables
+ // values
+ // listeners
+ // Inverse Binding Event Handlers
+
+ public ListitemInterfaceBindingImpl(@Nullable androidx.databinding.DataBindingComponent bindingComponent, @NonNull View root) {
+ this(bindingComponent, root, mapBindings(bindingComponent, root, 5, sIncludes, sViewsWithIds));
+ }
+ private ListitemInterfaceBindingImpl(androidx.databinding.DataBindingComponent bindingComponent, View root, Object[] bindings) {
+ super(bindingComponent, root, 1
+ , (hanson.xyz.vpnhotspotmod.widget.AutoCollapseTextView) bindings[3]
+ );
+ this.mboundView0 = (android.widget.LinearLayout) bindings[0];
+ this.mboundView0.setTag(null);
+ this.mboundView1 = (android.widget.ImageView) bindings[1];
+ this.mboundView1.setTag(null);
+ this.mboundView2 = (android.widget.TextView) bindings[2];
+ this.mboundView2.setTag(null);
+ this.mboundView4 = (com.google.android.material.materialswitch.MaterialSwitch) bindings[4];
+ this.mboundView4.setTag(null);
+ this.text.setTag(null);
+ setRootTag(root);
+ // listeners
+ invalidateAll();
+ }
+
+ @Override
+ public void invalidateAll() {
+ synchronized(this) {
+ mDirtyFlags = 0x2L;
+ }
+ requestRebind();
+ }
+
+ @Override
+ public boolean hasPendingBindings() {
+ synchronized(this) {
+ if (mDirtyFlags != 0) {
+ return true;
+ }
+ }
+ return false;
+ }
+
+ @Override
+ public boolean setVariable(int variableId, @Nullable Object variable) {
+ boolean variableSet = true;
+ if (BR.data == variableId) {
+ setData((hanson.xyz.vpnhotspotmod.manage.Data) variable);
+ }
+ else {
+ variableSet = false;
+ }
+ return variableSet;
+ }
+
+ public void setData(@Nullable hanson.xyz.vpnhotspotmod.manage.Data Data) {
+ updateRegistration(0, Data);
+ this.mData = Data;
+ synchronized(this) {
+ mDirtyFlags |= 0x1L;
+ }
+ notifyPropertyChanged(BR.data);
+ super.requestRebind();
+ }
+
+ @Override
+ protected boolean onFieldChange(int localFieldId, Object object, int fieldId) {
+ switch (localFieldId) {
+ case 0 :
+ return onChangeData((hanson.xyz.vpnhotspotmod.manage.Data) object, fieldId);
+ }
+ return false;
+ }
+ private boolean onChangeData(hanson.xyz.vpnhotspotmod.manage.Data Data, int fieldId) {
+ if (fieldId == BR._all) {
+ synchronized(this) {
+ mDirtyFlags |= 0x1L;
+ }
+ return true;
+ }
+ return false;
+ }
+
+ @Override
+ protected void executeBindings() {
+ long dirtyFlags = 0;
+ synchronized(this) {
+ dirtyFlags = mDirtyFlags;
+ mDirtyFlags = 0;
+ }
+ java.lang.CharSequence dataText = null;
+ java.lang.CharSequence dataTitle = null;
+ boolean dataActive = false;
+ boolean dataSelectable = false;
+ hanson.xyz.vpnhotspotmod.manage.Data data = mData;
+ int dataIcon = 0;
+
+ if ((dirtyFlags & 0x3L) != 0) {
+
+
+
+ if (data != null) {
+ // read data.text
+ dataText = data.getText();
+ // read data.title
+ dataTitle = data.getTitle();
+ // read data.active
+ dataActive = data.getActive();
+ // read data.selectable
+ dataSelectable = data.getSelectable();
+ // read data.icon
+ dataIcon = data.getIcon();
+ }
+ }
+ // batch finished
+ if ((dirtyFlags & 0x3L) != 0) {
+ // api target 1
+
+ hanson.xyz.vpnhotspotmod.util.UtilsKt.setImageResource(this.mboundView1, dataIcon);
+ androidx.databinding.adapters.TextViewBindingAdapter.setText(this.mboundView2, dataTitle);
+ androidx.databinding.adapters.CompoundButtonBindingAdapter.setChecked(this.mboundView4, dataActive);
+ androidx.databinding.adapters.TextViewBindingAdapter.setText(this.text, dataText);
+ // api target 11
+ if(getBuildSdkInt() >= 11) {
+
+ this.text.setTextIsSelectable(dataSelectable);
+ }
+ }
+ }
+ // Listener Stub Implementations
+ // callback impls
+ // dirty flag
+ private long mDirtyFlags = 0xffffffffffffffffL;
+ /* flag mapping
+ flag 0 (0x1L): data
+ flag 1 (0x2L): null
+ flag mapping end*/
+ //end
+}
\ No newline at end of file
diff --git a/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBindingImpl.java b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBindingImpl.java
new file mode 100644
index 00000000..0f54f636
--- /dev/null
+++ b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBindingImpl.java
@@ -0,0 +1,134 @@
+package hanson.xyz.vpnhotspotmod.databinding;
+import hanson.xyz.vpnhotspotmod.R;
+import hanson.xyz.vpnhotspotmod.BR;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import android.view.View;
+@SuppressWarnings("unchecked")
+public class ListitemManageBindingImpl extends ListitemManageBinding {
+
+ @Nullable
+ private static final androidx.databinding.ViewDataBinding.IncludedLayouts sIncludes;
+ @Nullable
+ private static final android.util.SparseIntArray sViewsWithIds;
+ static {
+ sIncludes = null;
+ sViewsWithIds = null;
+ }
+ // views
+ @NonNull
+ private final android.widget.LinearLayout mboundView0;
+ // variables
+ // values
+ // listeners
+ // Inverse Binding Event Handlers
+
+ public ListitemManageBindingImpl(@Nullable androidx.databinding.DataBindingComponent bindingComponent, @NonNull View root) {
+ this(bindingComponent, root, mapBindings(bindingComponent, root, 2, sIncludes, sViewsWithIds));
+ }
+ private ListitemManageBindingImpl(androidx.databinding.DataBindingComponent bindingComponent, View root, Object[] bindings) {
+ super(bindingComponent, root, 1
+ , (android.widget.TextView) bindings[1]
+ );
+ this.mboundView0 = (android.widget.LinearLayout) bindings[0];
+ this.mboundView0.setTag(null);
+ this.offloadEnabled.setTag(null);
+ setRootTag(root);
+ // listeners
+ invalidateAll();
+ }
+
+ @Override
+ public void invalidateAll() {
+ synchronized(this) {
+ mDirtyFlags = 0x2L;
+ }
+ requestRebind();
+ }
+
+ @Override
+ public boolean hasPendingBindings() {
+ synchronized(this) {
+ if (mDirtyFlags != 0) {
+ return true;
+ }
+ }
+ return false;
+ }
+
+ @Override
+ public boolean setVariable(int variableId, @Nullable Object variable) {
+ boolean variableSet = true;
+ if (BR.data == variableId) {
+ setData((hanson.xyz.vpnhotspotmod.manage.ManageBar.Data) variable);
+ }
+ else {
+ variableSet = false;
+ }
+ return variableSet;
+ }
+
+ public void setData(@Nullable hanson.xyz.vpnhotspotmod.manage.ManageBar.Data Data) {
+ updateRegistration(0, Data);
+ this.mData = Data;
+ synchronized(this) {
+ mDirtyFlags |= 0x1L;
+ }
+ notifyPropertyChanged(BR.data);
+ super.requestRebind();
+ }
+
+ @Override
+ protected boolean onFieldChange(int localFieldId, Object object, int fieldId) {
+ switch (localFieldId) {
+ case 0 :
+ return onChangeData((hanson.xyz.vpnhotspotmod.manage.ManageBar.Data) object, fieldId);
+ }
+ return false;
+ }
+ private boolean onChangeData(hanson.xyz.vpnhotspotmod.manage.ManageBar.Data Data, int fieldId) {
+ if (fieldId == BR._all) {
+ synchronized(this) {
+ mDirtyFlags |= 0x1L;
+ }
+ return true;
+ }
+ return false;
+ }
+
+ @Override
+ protected void executeBindings() {
+ long dirtyFlags = 0;
+ synchronized(this) {
+ dirtyFlags = mDirtyFlags;
+ mDirtyFlags = 0;
+ }
+ boolean dataOffloadEnabled = false;
+ hanson.xyz.vpnhotspotmod.manage.ManageBar.Data data = mData;
+
+ if ((dirtyFlags & 0x3L) != 0) {
+
+
+
+ if (data != null) {
+ // read data.offloadEnabled
+ dataOffloadEnabled = data.getOffloadEnabled();
+ }
+ }
+ // batch finished
+ if ((dirtyFlags & 0x3L) != 0) {
+ // api target 1
+
+ hanson.xyz.vpnhotspotmod.util.UtilsKt.setVisibility(this.offloadEnabled, dataOffloadEnabled);
+ }
+ }
+ // Listener Stub Implementations
+ // callback impls
+ // dirty flag
+ private long mDirtyFlags = 0xffffffffffffffffL;
+ /* flag mapping
+ flag 0 (0x1L): data
+ flag 1 (0x2L): null
+ flag mapping end*/
+ //end
+}
\ No newline at end of file
diff --git a/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBindingImpl.java b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBindingImpl.java
new file mode 100644
index 00000000..34098e1c
--- /dev/null
+++ b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBindingImpl.java
@@ -0,0 +1,285 @@
+package hanson.xyz.vpnhotspotmod.databinding;
+import hanson.xyz.vpnhotspotmod.R;
+import hanson.xyz.vpnhotspotmod.BR;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import android.view.View;
+@SuppressWarnings("unchecked")
+public class ListitemRepeaterBindingImpl extends ListitemRepeaterBinding implements hanson.xyz.vpnhotspotmod.generated.callback.OnClickListener.Listener {
+
+ @Nullable
+ private static final androidx.databinding.ViewDataBinding.IncludedLayouts sIncludes;
+ @Nullable
+ private static final android.util.SparseIntArray sViewsWithIds;
+ static {
+ sIncludes = null;
+ sViewsWithIds = null;
+ }
+ // views
+ @NonNull
+ private final android.widget.LinearLayout mboundView0;
+ @NonNull
+ private final android.widget.LinearLayout mboundView1;
+ @NonNull
+ private final android.widget.TextView mboundView2;
+ @NonNull
+ private final com.google.android.material.materialswitch.MaterialSwitch mboundView4;
+ @NonNull
+ private final android.widget.LinearLayout mboundView5;
+ // variables
+ @Nullable
+ private final android.view.View.OnClickListener mCallback1;
+ @Nullable
+ private final android.view.View.OnClickListener mCallback2;
+ // values
+ // listeners
+ // Inverse Binding Event Handlers
+
+ public ListitemRepeaterBindingImpl(@Nullable androidx.databinding.DataBindingComponent bindingComponent, @NonNull View root) {
+ this(bindingComponent, root, mapBindings(bindingComponent, root, 6, sIncludes, sViewsWithIds));
+ }
+ private ListitemRepeaterBindingImpl(androidx.databinding.DataBindingComponent bindingComponent, View root, Object[] bindings) {
+ super(bindingComponent, root, 1
+ , (hanson.xyz.vpnhotspotmod.widget.AutoCollapseTextView) bindings[3]
+ );
+ this.addresses.setTag(null);
+ this.mboundView0 = (android.widget.LinearLayout) bindings[0];
+ this.mboundView0.setTag(null);
+ this.mboundView1 = (android.widget.LinearLayout) bindings[1];
+ this.mboundView1.setTag(null);
+ this.mboundView2 = (android.widget.TextView) bindings[2];
+ this.mboundView2.setTag(null);
+ this.mboundView4 = (com.google.android.material.materialswitch.MaterialSwitch) bindings[4];
+ this.mboundView4.setTag(null);
+ this.mboundView5 = (android.widget.LinearLayout) bindings[5];
+ this.mboundView5.setTag(null);
+ setRootTag(root);
+ // listeners
+ mCallback1 = new hanson.xyz.vpnhotspotmod.generated.callback.OnClickListener(this, 1);
+ mCallback2 = new hanson.xyz.vpnhotspotmod.generated.callback.OnClickListener(this, 2);
+ invalidateAll();
+ }
+
+ @Override
+ public void invalidateAll() {
+ synchronized(this) {
+ mDirtyFlags = 0x20L;
+ }
+ requestRebind();
+ }
+
+ @Override
+ public boolean hasPendingBindings() {
+ synchronized(this) {
+ if (mDirtyFlags != 0) {
+ return true;
+ }
+ }
+ return false;
+ }
+
+ @Override
+ public boolean setVariable(int variableId, @Nullable Object variable) {
+ boolean variableSet = true;
+ if (BR.data == variableId) {
+ setData((hanson.xyz.vpnhotspotmod.manage.RepeaterManager.Data) variable);
+ }
+ else {
+ variableSet = false;
+ }
+ return variableSet;
+ }
+
+ public void setData(@Nullable hanson.xyz.vpnhotspotmod.manage.RepeaterManager.Data Data) {
+ updateRegistration(0, Data);
+ this.mData = Data;
+ synchronized(this) {
+ mDirtyFlags |= 0x1L;
+ }
+ notifyPropertyChanged(BR.data);
+ super.requestRebind();
+ }
+
+ @Override
+ protected boolean onFieldChange(int localFieldId, Object object, int fieldId) {
+ switch (localFieldId) {
+ case 0 :
+ return onChangeData((hanson.xyz.vpnhotspotmod.manage.RepeaterManager.Data) object, fieldId);
+ }
+ return false;
+ }
+ private boolean onChangeData(hanson.xyz.vpnhotspotmod.manage.RepeaterManager.Data Data, int fieldId) {
+ if (fieldId == BR._all) {
+ synchronized(this) {
+ mDirtyFlags |= 0x1L;
+ }
+ return true;
+ }
+ else if (fieldId == BR.title) {
+ synchronized(this) {
+ mDirtyFlags |= 0x2L;
+ }
+ return true;
+ }
+ else if (fieldId == BR.addresses) {
+ synchronized(this) {
+ mDirtyFlags |= 0x4L;
+ }
+ return true;
+ }
+ else if (fieldId == BR.serviceStarted) {
+ synchronized(this) {
+ mDirtyFlags |= 0x8L;
+ }
+ return true;
+ }
+ else if (fieldId == BR.switchEnabled) {
+ synchronized(this) {
+ mDirtyFlags |= 0x10L;
+ }
+ return true;
+ }
+ return false;
+ }
+
+ @Override
+ protected void executeBindings() {
+ long dirtyFlags = 0;
+ synchronized(this) {
+ dirtyFlags = mDirtyFlags;
+ mDirtyFlags = 0;
+ }
+ java.lang.CharSequence dataTitle = null;
+ boolean dataSwitchEnabled = false;
+ boolean dataServiceStartedWifiP2pManagerHelperGetStartWpsJavaLangObjectNullBooleanFalse = false;
+ boolean dataServiceStarted = false;
+ hanson.xyz.vpnhotspotmod.manage.RepeaterManager.Data data = mData;
+ java.lang.CharSequence dataAddresses = null;
+
+ if ((dirtyFlags & 0x3fL) != 0) {
+
+
+ if ((dirtyFlags & 0x23L) != 0) {
+
+ if (data != null) {
+ // read data.title
+ dataTitle = data.getTitle();
+ }
+ }
+ if ((dirtyFlags & 0x31L) != 0) {
+
+ if (data != null) {
+ // read data.switchEnabled
+ dataSwitchEnabled = data.getSwitchEnabled();
+ }
+ }
+ if ((dirtyFlags & 0x29L) != 0) {
+
+ if (data != null) {
+ // read data.serviceStarted
+ dataServiceStarted = data.getServiceStarted();
+ }
+ if((dirtyFlags & 0x29L) != 0) {
+ if(dataServiceStarted) {
+ dirtyFlags |= 0x80L;
+ }
+ else {
+ dirtyFlags |= 0x40L;
+ }
+ }
+
+
+ // read data.serviceStarted ? WifiP2pManagerHelper.getStartWps() != null : false
+ dataServiceStartedWifiP2pManagerHelperGetStartWpsJavaLangObjectNullBooleanFalse = ((dataServiceStarted) ? ((hanson.xyz.vpnhotspotmod.net.wifi.WifiP2pManagerHelper.getStartWps()) != (null)) : (false));
+ }
+ if ((dirtyFlags & 0x25L) != 0) {
+
+ if (data != null) {
+ // read data.addresses
+ dataAddresses = data.getAddresses();
+ }
+ }
+ }
+ // batch finished
+ if ((dirtyFlags & 0x25L) != 0) {
+ // api target 1
+
+ androidx.databinding.adapters.TextViewBindingAdapter.setText(this.addresses, dataAddresses);
+ }
+ if ((dirtyFlags & 0x20L) != 0) {
+ // api target 1
+
+ this.mboundView1.setOnClickListener(mCallback1);
+ this.mboundView5.setOnClickListener(mCallback2);
+ }
+ if ((dirtyFlags & 0x23L) != 0) {
+ // api target 1
+
+ androidx.databinding.adapters.TextViewBindingAdapter.setText(this.mboundView2, dataTitle);
+ }
+ if ((dirtyFlags & 0x29L) != 0) {
+ // api target 1
+
+ androidx.databinding.adapters.CompoundButtonBindingAdapter.setChecked(this.mboundView4, dataServiceStarted);
+ hanson.xyz.vpnhotspotmod.util.UtilsKt.setVisibility(this.mboundView5, dataServiceStartedWifiP2pManagerHelperGetStartWpsJavaLangObjectNullBooleanFalse);
+ }
+ if ((dirtyFlags & 0x31L) != 0) {
+ // api target 1
+
+ this.mboundView4.setEnabled(dataSwitchEnabled);
+ }
+ }
+ // Listener Stub Implementations
+ // callback impls
+ public final void _internalCallbackOnClick(int sourceId , android.view.View callbackArg_0) {
+ switch(sourceId) {
+ case 1: {
+ // localize variables for thread safety
+ // data != null
+ boolean dataJavaLangObjectNull = false;
+ // data
+ hanson.xyz.vpnhotspotmod.manage.RepeaterManager.Data data = mData;
+
+
+
+ dataJavaLangObjectNull = (data) != (null);
+ if (dataJavaLangObjectNull) {
+
+
+ data.toggle();
+ }
+ break;
+ }
+ case 2: {
+ // localize variables for thread safety
+ // data != null
+ boolean dataJavaLangObjectNull = false;
+ // data
+ hanson.xyz.vpnhotspotmod.manage.RepeaterManager.Data data = mData;
+
+
+
+ dataJavaLangObjectNull = (data) != (null);
+ if (dataJavaLangObjectNull) {
+
+
+ data.wps();
+ }
+ break;
+ }
+ }
+ }
+ // dirty flag
+ private long mDirtyFlags = 0xffffffffffffffffL;
+ /* flag mapping
+ flag 0 (0x1L): data
+ flag 1 (0x2L): data.title
+ flag 2 (0x3L): data.addresses
+ flag 3 (0x4L): data.serviceStarted
+ flag 4 (0x5L): data.switchEnabled
+ flag 5 (0x6L): null
+ flag 6 (0x7L): data.serviceStarted ? WifiP2pManagerHelper.getStartWps() != null : false
+ flag 7 (0x8L): data.serviceStarted ? WifiP2pManagerHelper.getStartWps() != null : false
+ flag mapping end*/
+ //end
+}
\ No newline at end of file
diff --git a/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener.java b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener.java
new file mode 100644
index 00000000..d328a6ed
--- /dev/null
+++ b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener.java
@@ -0,0 +1,16 @@
+package hanson.xyz.vpnhotspotmod.generated.callback;
+public final class OnClickListener implements android.view.View.OnClickListener {
+ final Listener mListener;
+ final int mSourceId;
+ public OnClickListener(Listener listener, int sourceId) {
+ mListener = listener;
+ mSourceId = sourceId;
+ }
+ @Override
+ public void onClick(android.view.View callbackArg_0) {
+ mListener._internalCallbackOnClick(mSourceId , callbackArg_0);
+ }
+ public interface Listener {
+ void _internalCallbackOnClick(int sourceId , android.view.View callbackArg_0);
+ }
+}
\ No newline at end of file
diff --git a/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl.java b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl.java
new file mode 100644
index 00000000..f63cb103
--- /dev/null
+++ b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl.java
@@ -0,0 +1,227 @@
+package hanson.xyz.vpnhotspotmod.room;
+
+import androidx.annotation.NonNull;
+import androidx.room.DatabaseConfiguration;
+import androidx.room.InvalidationTracker;
+import androidx.room.RoomDatabase;
+import androidx.room.RoomOpenHelper;
+import androidx.room.migration.AutoMigrationSpec;
+import androidx.room.migration.Migration;
+import androidx.room.util.DBUtil;
+import androidx.room.util.TableInfo;
+import androidx.sqlite.db.SupportSQLiteDatabase;
+import androidx.sqlite.db.SupportSQLiteOpenHelper;
+import java.lang.Class;
+import java.lang.Override;
+import java.lang.String;
+import java.lang.SuppressWarnings;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import javax.annotation.processing.Generated;
+
+@Generated("androidx.room.RoomProcessor")
+@SuppressWarnings({"unchecked", "deprecation"})
+public final class AppDatabase_Impl extends AppDatabase {
+ private volatile ClientRecord.Dao _clientRecord;
+
+ private volatile TrafficRecord.Dao _trafficRecord;
+
+ @Override
+ @NonNull
+ protected SupportSQLiteOpenHelper createOpenHelper(@NonNull final DatabaseConfiguration config) {
+ final SupportSQLiteOpenHelper.Callback _openCallback = new RoomOpenHelper(config, new RoomOpenHelper.Delegate(2) {
+ @Override
+ public void createAllTables(@NonNull final SupportSQLiteDatabase db) {
+ db.execSQL("CREATE TABLE IF NOT EXISTS `ClientRecord` (`mac` INTEGER NOT NULL, `nickname` BLOB NOT NULL, `blocked` INTEGER NOT NULL, `macLookupPending` INTEGER NOT NULL, PRIMARY KEY(`mac`))");
+ db.execSQL("CREATE TABLE IF NOT EXISTS `TrafficRecord` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `timestamp` INTEGER NOT NULL, `mac` INTEGER NOT NULL, `ip` BLOB NOT NULL, `upstream` TEXT, `downstream` TEXT NOT NULL, `sentPackets` INTEGER NOT NULL, `sentBytes` INTEGER NOT NULL, `receivedPackets` INTEGER NOT NULL, `receivedBytes` INTEGER NOT NULL, `previousId` INTEGER, FOREIGN KEY(`previousId`) REFERENCES `TrafficRecord`(`id`) ON UPDATE RESTRICT ON DELETE CASCADE )");
+ db.execSQL("CREATE UNIQUE INDEX IF NOT EXISTS `index_TrafficRecord_previousId` ON `TrafficRecord` (`previousId`)");
+ db.execSQL("CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)");
+ db.execSQL("INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '92a6c0406ed7265dbd98eb3c24095651')");
+ }
+
+ @Override
+ public void dropAllTables(@NonNull final SupportSQLiteDatabase db) {
+ db.execSQL("DROP TABLE IF EXISTS `ClientRecord`");
+ db.execSQL("DROP TABLE IF EXISTS `TrafficRecord`");
+ final List extends RoomDatabase.Callback> _callbacks = mCallbacks;
+ if (_callbacks != null) {
+ for (RoomDatabase.Callback _callback : _callbacks) {
+ _callback.onDestructiveMigration(db);
+ }
+ }
+ }
+
+ @Override
+ public void onCreate(@NonNull final SupportSQLiteDatabase db) {
+ final List extends RoomDatabase.Callback> _callbacks = mCallbacks;
+ if (_callbacks != null) {
+ for (RoomDatabase.Callback _callback : _callbacks) {
+ _callback.onCreate(db);
+ }
+ }
+ }
+
+ @Override
+ public void onOpen(@NonNull final SupportSQLiteDatabase db) {
+ mDatabase = db;
+ db.execSQL("PRAGMA foreign_keys = ON");
+ internalInitInvalidationTracker(db);
+ final List extends RoomDatabase.Callback> _callbacks = mCallbacks;
+ if (_callbacks != null) {
+ for (RoomDatabase.Callback _callback : _callbacks) {
+ _callback.onOpen(db);
+ }
+ }
+ }
+
+ @Override
+ public void onPreMigrate(@NonNull final SupportSQLiteDatabase db) {
+ DBUtil.dropFtsSyncTriggers(db);
+ }
+
+ @Override
+ public void onPostMigrate(@NonNull final SupportSQLiteDatabase db) {
+ }
+
+ @Override
+ @NonNull
+ public RoomOpenHelper.ValidationResult onValidateSchema(
+ @NonNull final SupportSQLiteDatabase db) {
+ final HashMap _columnsClientRecord = new HashMap(4);
+ _columnsClientRecord.put("mac", new TableInfo.Column("mac", "INTEGER", true, 1, null, TableInfo.CREATED_FROM_ENTITY));
+ _columnsClientRecord.put("nickname", new TableInfo.Column("nickname", "BLOB", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
+ _columnsClientRecord.put("blocked", new TableInfo.Column("blocked", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
+ _columnsClientRecord.put("macLookupPending", new TableInfo.Column("macLookupPending", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
+ final HashSet _foreignKeysClientRecord = new HashSet(0);
+ final HashSet _indicesClientRecord = new HashSet(0);
+ final TableInfo _infoClientRecord = new TableInfo("ClientRecord", _columnsClientRecord, _foreignKeysClientRecord, _indicesClientRecord);
+ final TableInfo _existingClientRecord = TableInfo.read(db, "ClientRecord");
+ if (!_infoClientRecord.equals(_existingClientRecord)) {
+ return new RoomOpenHelper.ValidationResult(false, "ClientRecord(hanson.xyz.vpnhotspotmod.room.ClientRecord).\n"
+ + " Expected:\n" + _infoClientRecord + "\n"
+ + " Found:\n" + _existingClientRecord);
+ }
+ final HashMap _columnsTrafficRecord = new HashMap(11);
+ _columnsTrafficRecord.put("id", new TableInfo.Column("id", "INTEGER", false, 1, null, TableInfo.CREATED_FROM_ENTITY));
+ _columnsTrafficRecord.put("timestamp", new TableInfo.Column("timestamp", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
+ _columnsTrafficRecord.put("mac", new TableInfo.Column("mac", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
+ _columnsTrafficRecord.put("ip", new TableInfo.Column("ip", "BLOB", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
+ _columnsTrafficRecord.put("upstream", new TableInfo.Column("upstream", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
+ _columnsTrafficRecord.put("downstream", new TableInfo.Column("downstream", "TEXT", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
+ _columnsTrafficRecord.put("sentPackets", new TableInfo.Column("sentPackets", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
+ _columnsTrafficRecord.put("sentBytes", new TableInfo.Column("sentBytes", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
+ _columnsTrafficRecord.put("receivedPackets", new TableInfo.Column("receivedPackets", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
+ _columnsTrafficRecord.put("receivedBytes", new TableInfo.Column("receivedBytes", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
+ _columnsTrafficRecord.put("previousId", new TableInfo.Column("previousId", "INTEGER", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
+ final HashSet _foreignKeysTrafficRecord = new HashSet(1);
+ _foreignKeysTrafficRecord.add(new TableInfo.ForeignKey("TrafficRecord", "CASCADE", "RESTRICT", Arrays.asList("previousId"), Arrays.asList("id")));
+ final HashSet _indicesTrafficRecord = new HashSet(1);
+ _indicesTrafficRecord.add(new TableInfo.Index("index_TrafficRecord_previousId", true, Arrays.asList("previousId"), Arrays.asList("ASC")));
+ final TableInfo _infoTrafficRecord = new TableInfo("TrafficRecord", _columnsTrafficRecord, _foreignKeysTrafficRecord, _indicesTrafficRecord);
+ final TableInfo _existingTrafficRecord = TableInfo.read(db, "TrafficRecord");
+ if (!_infoTrafficRecord.equals(_existingTrafficRecord)) {
+ return new RoomOpenHelper.ValidationResult(false, "TrafficRecord(hanson.xyz.vpnhotspotmod.room.TrafficRecord).\n"
+ + " Expected:\n" + _infoTrafficRecord + "\n"
+ + " Found:\n" + _existingTrafficRecord);
+ }
+ return new RoomOpenHelper.ValidationResult(true, null);
+ }
+ }, "92a6c0406ed7265dbd98eb3c24095651", "1f08a76d9f7ed5013d3879caeddd243c");
+ final SupportSQLiteOpenHelper.Configuration _sqliteConfig = SupportSQLiteOpenHelper.Configuration.builder(config.context).name(config.name).callback(_openCallback).build();
+ final SupportSQLiteOpenHelper _helper = config.sqliteOpenHelperFactory.create(_sqliteConfig);
+ return _helper;
+ }
+
+ @Override
+ @NonNull
+ protected InvalidationTracker createInvalidationTracker() {
+ final HashMap _shadowTablesMap = new HashMap(0);
+ final HashMap> _viewTables = new HashMap>(0);
+ return new InvalidationTracker(this, _shadowTablesMap, _viewTables, "ClientRecord","TrafficRecord");
+ }
+
+ @Override
+ public void clearAllTables() {
+ super.assertNotMainThread();
+ final SupportSQLiteDatabase _db = super.getOpenHelper().getWritableDatabase();
+ final boolean _supportsDeferForeignKeys = android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP;
+ try {
+ if (!_supportsDeferForeignKeys) {
+ _db.execSQL("PRAGMA foreign_keys = FALSE");
+ }
+ super.beginTransaction();
+ if (_supportsDeferForeignKeys) {
+ _db.execSQL("PRAGMA defer_foreign_keys = TRUE");
+ }
+ _db.execSQL("DELETE FROM `ClientRecord`");
+ _db.execSQL("DELETE FROM `TrafficRecord`");
+ super.setTransactionSuccessful();
+ } finally {
+ super.endTransaction();
+ if (!_supportsDeferForeignKeys) {
+ _db.execSQL("PRAGMA foreign_keys = TRUE");
+ }
+ _db.query("PRAGMA wal_checkpoint(FULL)").close();
+ if (!_db.inTransaction()) {
+ _db.execSQL("VACUUM");
+ }
+ }
+ }
+
+ @Override
+ @NonNull
+ protected Map, List>> getRequiredTypeConverters() {
+ final HashMap, List>> _typeConvertersMap = new HashMap, List>>();
+ _typeConvertersMap.put(ClientRecord.Dao.class, ClientRecord_Dao_Impl.getRequiredConverters());
+ _typeConvertersMap.put(TrafficRecord.Dao.class, TrafficRecord_Dao_Impl.getRequiredConverters());
+ return _typeConvertersMap;
+ }
+
+ @Override
+ @NonNull
+ public Set> getRequiredAutoMigrationSpecs() {
+ final HashSet> _autoMigrationSpecsSet = new HashSet>();
+ return _autoMigrationSpecsSet;
+ }
+
+ @Override
+ @NonNull
+ public List getAutoMigrations(
+ @NonNull final Map, AutoMigrationSpec> autoMigrationSpecs) {
+ final List _autoMigrations = new ArrayList();
+ return _autoMigrations;
+ }
+
+ @Override
+ public ClientRecord.Dao getClientRecordDao() {
+ if (_clientRecord != null) {
+ return _clientRecord;
+ } else {
+ synchronized(this) {
+ if(_clientRecord == null) {
+ _clientRecord = new ClientRecord_Dao_Impl(this);
+ }
+ return _clientRecord;
+ }
+ }
+ }
+
+ @Override
+ public TrafficRecord.Dao getTrafficRecordDao() {
+ if (_trafficRecord != null) {
+ return _trafficRecord;
+ } else {
+ synchronized(this) {
+ if(_trafficRecord == null) {
+ _trafficRecord = new TrafficRecord_Dao_Impl(this);
+ }
+ return _trafficRecord;
+ }
+ }
+ }
+}
diff --git a/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl.java b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl.java
new file mode 100644
index 00000000..6fc4a28c
--- /dev/null
+++ b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl.java
@@ -0,0 +1,255 @@
+package hanson.xyz.vpnhotspotmod.room;
+
+import android.database.Cursor;
+import android.net.MacAddress;
+import android.os.CancellationSignal;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.lifecycle.LiveData;
+import androidx.room.CoroutinesRoom;
+import androidx.room.EntityInsertionAdapter;
+import androidx.room.RoomDatabase;
+import androidx.room.RoomDatabaseKt;
+import androidx.room.RoomSQLiteQuery;
+import androidx.room.util.CursorUtil;
+import androidx.room.util.DBUtil;
+import androidx.sqlite.db.SupportSQLiteStatement;
+import java.lang.CharSequence;
+import java.lang.Class;
+import java.lang.Exception;
+import java.lang.Long;
+import java.lang.Object;
+import java.lang.Override;
+import java.lang.String;
+import java.lang.SuppressWarnings;
+import java.util.Collections;
+import java.util.List;
+import java.util.concurrent.Callable;
+import javax.annotation.processing.Generated;
+import kotlin.Unit;
+import kotlin.coroutines.Continuation;
+import kotlin.jvm.functions.Function2;
+
+@Generated("androidx.room.RoomProcessor")
+@SuppressWarnings({"unchecked", "deprecation"})
+public final class ClientRecord_Dao_Impl extends ClientRecord.Dao {
+ private final RoomDatabase __db;
+
+ private final EntityInsertionAdapter __insertionAdapterOfClientRecord;
+
+ public ClientRecord_Dao_Impl(@NonNull final RoomDatabase __db) {
+ this.__db = __db;
+ this.__insertionAdapterOfClientRecord = new EntityInsertionAdapter(__db) {
+ @Override
+ @NonNull
+ protected String createQuery() {
+ return "INSERT OR REPLACE INTO `ClientRecord` (`mac`,`nickname`,`blocked`,`macLookupPending`) VALUES (?,?,?,?)";
+ }
+
+ @Override
+ protected void bind(@NonNull final SupportSQLiteStatement statement,
+ @NonNull final ClientRecord entity) {
+ final long _tmp = Converters.INSTANCE.persistMacAddress(entity.getMac());
+ statement.bindLong(1, _tmp);
+ final byte[] _tmp_1 = Converters.INSTANCE.persistCharSequence(entity.getNickname());
+ if (_tmp_1 == null) {
+ statement.bindNull(2);
+ } else {
+ statement.bindBlob(2, _tmp_1);
+ }
+ final int _tmp_2 = entity.getBlocked() ? 1 : 0;
+ statement.bindLong(3, _tmp_2);
+ final int _tmp_3 = entity.getMacLookupPending() ? 1 : 0;
+ statement.bindLong(4, _tmp_3);
+ }
+ };
+ }
+
+ @Override
+ protected Object updateInternal(final ClientRecord value,
+ final Continuation super Long> $completion) {
+ return CoroutinesRoom.execute(__db, true, new Callable() {
+ @Override
+ @NonNull
+ public Long call() throws Exception {
+ __db.beginTransaction();
+ try {
+ final Long _result = __insertionAdapterOfClientRecord.insertAndReturnId(value);
+ __db.setTransactionSuccessful();
+ return _result;
+ } finally {
+ __db.endTransaction();
+ }
+ }
+ }, $completion);
+ }
+
+ @Override
+ public Object upsert(final MacAddress mac,
+ final Function2 super ClientRecord, ? super Continuation super Unit>, ?> operation,
+ final Continuation super ClientRecord> $completion) {
+ return RoomDatabaseKt.withTransaction(__db, (__cont) -> ClientRecord_Dao_Impl.super.upsert(mac, operation, __cont), $completion);
+ }
+
+ @Override
+ protected ClientRecord lookupBlocking(final MacAddress mac) {
+ final String _sql = "SELECT * FROM `ClientRecord` WHERE `mac` = ?";
+ final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 1);
+ int _argIndex = 1;
+ final long _tmp = Converters.INSTANCE.persistMacAddress(mac);
+ _statement.bindLong(_argIndex, _tmp);
+ __db.assertNotSuspendingTransaction();
+ final Cursor _cursor = DBUtil.query(__db, _statement, false, null);
+ try {
+ final int _cursorIndexOfMac = CursorUtil.getColumnIndexOrThrow(_cursor, "mac");
+ final int _cursorIndexOfNickname = CursorUtil.getColumnIndexOrThrow(_cursor, "nickname");
+ final int _cursorIndexOfBlocked = CursorUtil.getColumnIndexOrThrow(_cursor, "blocked");
+ final int _cursorIndexOfMacLookupPending = CursorUtil.getColumnIndexOrThrow(_cursor, "macLookupPending");
+ final ClientRecord _result;
+ if (_cursor.moveToFirst()) {
+ final MacAddress _tmpMac;
+ final long _tmp_1;
+ _tmp_1 = _cursor.getLong(_cursorIndexOfMac);
+ _tmpMac = Converters.INSTANCE.unpersistMacAddress(_tmp_1);
+ final CharSequence _tmpNickname;
+ final byte[] _tmp_2;
+ if (_cursor.isNull(_cursorIndexOfNickname)) {
+ _tmp_2 = null;
+ } else {
+ _tmp_2 = _cursor.getBlob(_cursorIndexOfNickname);
+ }
+ _tmpNickname = Converters.INSTANCE.unpersistCharSequence(_tmp_2);
+ final boolean _tmpBlocked;
+ final int _tmp_3;
+ _tmp_3 = _cursor.getInt(_cursorIndexOfBlocked);
+ _tmpBlocked = _tmp_3 != 0;
+ final boolean _tmpMacLookupPending;
+ final int _tmp_4;
+ _tmp_4 = _cursor.getInt(_cursorIndexOfMacLookupPending);
+ _tmpMacLookupPending = _tmp_4 != 0;
+ _result = new ClientRecord(_tmpMac,_tmpNickname,_tmpBlocked,_tmpMacLookupPending);
+ } else {
+ _result = null;
+ }
+ return _result;
+ } finally {
+ _cursor.close();
+ _statement.release();
+ }
+ }
+
+ @Override
+ protected Object lookup(final MacAddress mac,
+ final Continuation super ClientRecord> $completion) {
+ final String _sql = "SELECT * FROM `ClientRecord` WHERE `mac` = ?";
+ final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 1);
+ int _argIndex = 1;
+ final long _tmp = Converters.INSTANCE.persistMacAddress(mac);
+ _statement.bindLong(_argIndex, _tmp);
+ final CancellationSignal _cancellationSignal = DBUtil.createCancellationSignal();
+ return CoroutinesRoom.execute(__db, false, _cancellationSignal, new Callable() {
+ @Override
+ @Nullable
+ public ClientRecord call() throws Exception {
+ final Cursor _cursor = DBUtil.query(__db, _statement, false, null);
+ try {
+ final int _cursorIndexOfMac = CursorUtil.getColumnIndexOrThrow(_cursor, "mac");
+ final int _cursorIndexOfNickname = CursorUtil.getColumnIndexOrThrow(_cursor, "nickname");
+ final int _cursorIndexOfBlocked = CursorUtil.getColumnIndexOrThrow(_cursor, "blocked");
+ final int _cursorIndexOfMacLookupPending = CursorUtil.getColumnIndexOrThrow(_cursor, "macLookupPending");
+ final ClientRecord _result;
+ if (_cursor.moveToFirst()) {
+ final MacAddress _tmpMac;
+ final long _tmp_1;
+ _tmp_1 = _cursor.getLong(_cursorIndexOfMac);
+ _tmpMac = Converters.INSTANCE.unpersistMacAddress(_tmp_1);
+ final CharSequence _tmpNickname;
+ final byte[] _tmp_2;
+ if (_cursor.isNull(_cursorIndexOfNickname)) {
+ _tmp_2 = null;
+ } else {
+ _tmp_2 = _cursor.getBlob(_cursorIndexOfNickname);
+ }
+ _tmpNickname = Converters.INSTANCE.unpersistCharSequence(_tmp_2);
+ final boolean _tmpBlocked;
+ final int _tmp_3;
+ _tmp_3 = _cursor.getInt(_cursorIndexOfBlocked);
+ _tmpBlocked = _tmp_3 != 0;
+ final boolean _tmpMacLookupPending;
+ final int _tmp_4;
+ _tmp_4 = _cursor.getInt(_cursorIndexOfMacLookupPending);
+ _tmpMacLookupPending = _tmp_4 != 0;
+ _result = new ClientRecord(_tmpMac,_tmpNickname,_tmpBlocked,_tmpMacLookupPending);
+ } else {
+ _result = null;
+ }
+ return _result;
+ } finally {
+ _cursor.close();
+ _statement.release();
+ }
+ }
+ }, $completion);
+ }
+
+ @Override
+ protected LiveData lookupSync(final MacAddress mac) {
+ final String _sql = "SELECT * FROM `ClientRecord` WHERE `mac` = ?";
+ final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 1);
+ int _argIndex = 1;
+ final long _tmp = Converters.INSTANCE.persistMacAddress(mac);
+ _statement.bindLong(_argIndex, _tmp);
+ return __db.getInvalidationTracker().createLiveData(new String[] {"ClientRecord"}, false, new Callable() {
+ @Override
+ @Nullable
+ public ClientRecord call() throws Exception {
+ final Cursor _cursor = DBUtil.query(__db, _statement, false, null);
+ try {
+ final int _cursorIndexOfMac = CursorUtil.getColumnIndexOrThrow(_cursor, "mac");
+ final int _cursorIndexOfNickname = CursorUtil.getColumnIndexOrThrow(_cursor, "nickname");
+ final int _cursorIndexOfBlocked = CursorUtil.getColumnIndexOrThrow(_cursor, "blocked");
+ final int _cursorIndexOfMacLookupPending = CursorUtil.getColumnIndexOrThrow(_cursor, "macLookupPending");
+ final ClientRecord _result;
+ if (_cursor.moveToFirst()) {
+ final MacAddress _tmpMac;
+ final long _tmp_1;
+ _tmp_1 = _cursor.getLong(_cursorIndexOfMac);
+ _tmpMac = Converters.INSTANCE.unpersistMacAddress(_tmp_1);
+ final CharSequence _tmpNickname;
+ final byte[] _tmp_2;
+ if (_cursor.isNull(_cursorIndexOfNickname)) {
+ _tmp_2 = null;
+ } else {
+ _tmp_2 = _cursor.getBlob(_cursorIndexOfNickname);
+ }
+ _tmpNickname = Converters.INSTANCE.unpersistCharSequence(_tmp_2);
+ final boolean _tmpBlocked;
+ final int _tmp_3;
+ _tmp_3 = _cursor.getInt(_cursorIndexOfBlocked);
+ _tmpBlocked = _tmp_3 != 0;
+ final boolean _tmpMacLookupPending;
+ final int _tmp_4;
+ _tmp_4 = _cursor.getInt(_cursorIndexOfMacLookupPending);
+ _tmpMacLookupPending = _tmp_4 != 0;
+ _result = new ClientRecord(_tmpMac,_tmpNickname,_tmpBlocked,_tmpMacLookupPending);
+ } else {
+ _result = null;
+ }
+ return _result;
+ } finally {
+ _cursor.close();
+ }
+ }
+
+ @Override
+ protected void finalize() {
+ _statement.release();
+ }
+ });
+ }
+
+ @NonNull
+ public static List> getRequiredConverters() {
+ return Collections.emptyList();
+ }
+}
diff --git a/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl.java b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl.java
new file mode 100644
index 00000000..cd8ac66b
--- /dev/null
+++ b/mobile/build/generated/source/kapt/freedomDebug/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl.java
@@ -0,0 +1,156 @@
+package hanson.xyz.vpnhotspotmod.room;
+
+import android.database.Cursor;
+import android.net.MacAddress;
+import android.os.CancellationSignal;
+import androidx.annotation.NonNull;
+import androidx.room.CoroutinesRoom;
+import androidx.room.EntityInsertionAdapter;
+import androidx.room.RoomDatabase;
+import androidx.room.RoomSQLiteQuery;
+import androidx.room.util.DBUtil;
+import androidx.sqlite.db.SupportSQLiteStatement;
+import java.lang.Class;
+import java.lang.Exception;
+import java.lang.Object;
+import java.lang.Override;
+import java.lang.String;
+import java.lang.SuppressWarnings;
+import java.util.Collections;
+import java.util.List;
+import java.util.concurrent.Callable;
+import javax.annotation.processing.Generated;
+import kotlin.coroutines.Continuation;
+
+@Generated("androidx.room.RoomProcessor")
+@SuppressWarnings({"unchecked", "deprecation"})
+public final class TrafficRecord_Dao_Impl extends TrafficRecord.Dao {
+ private final RoomDatabase __db;
+
+ private final EntityInsertionAdapter __insertionAdapterOfTrafficRecord;
+
+ public TrafficRecord_Dao_Impl(@NonNull final RoomDatabase __db) {
+ this.__db = __db;
+ this.__insertionAdapterOfTrafficRecord = new EntityInsertionAdapter(__db) {
+ @Override
+ @NonNull
+ protected String createQuery() {
+ return "INSERT OR ABORT INTO `TrafficRecord` (`id`,`timestamp`,`mac`,`ip`,`upstream`,`downstream`,`sentPackets`,`sentBytes`,`receivedPackets`,`receivedBytes`,`previousId`) VALUES (?,?,?,?,?,?,?,?,?,?,?)";
+ }
+
+ @Override
+ protected void bind(@NonNull final SupportSQLiteStatement statement,
+ @NonNull final TrafficRecord entity) {
+ if (entity.getId() == null) {
+ statement.bindNull(1);
+ } else {
+ statement.bindLong(1, entity.getId());
+ }
+ statement.bindLong(2, entity.getTimestamp());
+ final long _tmp = Converters.INSTANCE.persistMacAddress(entity.getMac());
+ statement.bindLong(3, _tmp);
+ final byte[] _tmp_1 = Converters.INSTANCE.persistInetAddress(entity.getIp());
+ if (_tmp_1 == null) {
+ statement.bindNull(4);
+ } else {
+ statement.bindBlob(4, _tmp_1);
+ }
+ if (entity.getUpstream() == null) {
+ statement.bindNull(5);
+ } else {
+ statement.bindString(5, entity.getUpstream());
+ }
+ if (entity.getDownstream() == null) {
+ statement.bindNull(6);
+ } else {
+ statement.bindString(6, entity.getDownstream());
+ }
+ statement.bindLong(7, entity.getSentPackets());
+ statement.bindLong(8, entity.getSentBytes());
+ statement.bindLong(9, entity.getReceivedPackets());
+ statement.bindLong(10, entity.getReceivedBytes());
+ if (entity.getPreviousId() == null) {
+ statement.bindNull(11);
+ } else {
+ statement.bindLong(11, entity.getPreviousId());
+ }
+ }
+ };
+ }
+
+ @Override
+ protected long insertInternal(final TrafficRecord value) {
+ __db.assertNotSuspendingTransaction();
+ __db.beginTransaction();
+ try {
+ final long _result = __insertionAdapterOfTrafficRecord.insertAndReturnId(value);
+ __db.setTransactionSuccessful();
+ return _result;
+ } finally {
+ __db.endTransaction();
+ }
+ }
+
+ @Override
+ public Object queryStats(final MacAddress mac,
+ final Continuation super ClientStats> $completion) {
+ final String _sql = "\n"
+ + " SELECT MIN(TrafficRecord.timestamp) AS timestamp,\n"
+ + " COUNT(TrafficRecord.id) AS count,\n"
+ + " SUM(TrafficRecord.sentPackets) AS sentPackets,\n"
+ + " SUM(TrafficRecord.sentBytes) AS sentBytes,\n"
+ + " SUM(TrafficRecord.receivedPackets) AS receivedPackets,\n"
+ + " SUM(TrafficRecord.receivedBytes) AS receivedBytes\n"
+ + " FROM TrafficRecord LEFT JOIN TrafficRecord AS Next ON TrafficRecord.id = Next.previousId\n"
+ + " /* We only want to find the last record for each chain so that we don't double count */\n"
+ + " WHERE TrafficRecord.mac = ? AND Next.id IS NULL\n"
+ + " ";
+ final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 1);
+ int _argIndex = 1;
+ final long _tmp = Converters.INSTANCE.persistMacAddress(mac);
+ _statement.bindLong(_argIndex, _tmp);
+ final CancellationSignal _cancellationSignal = DBUtil.createCancellationSignal();
+ return CoroutinesRoom.execute(__db, false, _cancellationSignal, new Callable() {
+ @Override
+ @NonNull
+ public ClientStats call() throws Exception {
+ final Cursor _cursor = DBUtil.query(__db, _statement, false, null);
+ try {
+ final int _cursorIndexOfTimestamp = 0;
+ final int _cursorIndexOfCount = 1;
+ final int _cursorIndexOfSentPackets = 2;
+ final int _cursorIndexOfSentBytes = 3;
+ final int _cursorIndexOfReceivedPackets = 4;
+ final int _cursorIndexOfReceivedBytes = 5;
+ final ClientStats _result;
+ if (_cursor.moveToFirst()) {
+ final long _tmpTimestamp;
+ _tmpTimestamp = _cursor.getLong(_cursorIndexOfTimestamp);
+ final long _tmpCount;
+ _tmpCount = _cursor.getLong(_cursorIndexOfCount);
+ final long _tmpSentPackets;
+ _tmpSentPackets = _cursor.getLong(_cursorIndexOfSentPackets);
+ final long _tmpSentBytes;
+ _tmpSentBytes = _cursor.getLong(_cursorIndexOfSentBytes);
+ final long _tmpReceivedPackets;
+ _tmpReceivedPackets = _cursor.getLong(_cursorIndexOfReceivedPackets);
+ final long _tmpReceivedBytes;
+ _tmpReceivedBytes = _cursor.getLong(_cursorIndexOfReceivedBytes);
+ _result = new ClientStats(_tmpTimestamp,_tmpCount,_tmpSentPackets,_tmpSentBytes,_tmpReceivedPackets,_tmpReceivedBytes);
+ } else {
+ _result = null;
+ }
+ return _result;
+ } finally {
+ _cursor.close();
+ _statement.release();
+ }
+ }
+ }, $completion);
+ }
+
+ @NonNull
+ public static List> getRequiredConverters() {
+ return Collections.emptyList();
+ }
+}
diff --git a/mobile/build/generated/third_party_licenses/freedomDebug/dependencies.json b/mobile/build/generated/third_party_licenses/freedomDebug/dependencies.json
new file mode 100644
index 00000000..5dca2ddb
--- /dev/null
+++ b/mobile/build/generated/third_party_licenses/freedomDebug/dependencies.json
@@ -0,0 +1,7 @@
+[
+ {
+ "group": "absent",
+ "version": "absent",
+ "name": "absent"
+ }
+]
\ No newline at end of file
diff --git a/mobile/build/generated/third_party_licenses/freedomDebug/res/raw/third_party_license_metadata b/mobile/build/generated/third_party_licenses/freedomDebug/res/raw/third_party_license_metadata
new file mode 100644
index 00000000..dc74e448
--- /dev/null
+++ b/mobile/build/generated/third_party_licenses/freedomDebug/res/raw/third_party_license_metadata
@@ -0,0 +1 @@
+0:125 Debug License Info
diff --git a/mobile/build/generated/third_party_licenses/freedomDebug/res/raw/third_party_licenses b/mobile/build/generated/third_party_licenses/freedomDebug/res/raw/third_party_licenses
new file mode 100644
index 00000000..420bbfe7
--- /dev/null
+++ b/mobile/build/generated/third_party_licenses/freedomDebug/res/raw/third_party_licenses
@@ -0,0 +1 @@
+Licenses are only provided in build variants (e.g. release) where the Android Gradle Plugin generates an app dependency list.
diff --git a/mobile/build/gmpAppId.txt b/mobile/build/gmpAppId.txt
new file mode 100644
index 00000000..d477cc40
--- /dev/null
+++ b/mobile/build/gmpAppId.txt
@@ -0,0 +1 @@
+1:13108846109:android:63120dcb2e900ed0
\ No newline at end of file
diff --git a/mobile/build/intermediates/annotation_processor_list/freedomDebug/annotationProcessors.json b/mobile/build/intermediates/annotation_processor_list/freedomDebug/annotationProcessors.json
new file mode 100644
index 00000000..79963e91
--- /dev/null
+++ b/mobile/build/intermediates/annotation_processor_list/freedomDebug/annotationProcessors.json
@@ -0,0 +1 @@
+{"room-compiler-2.6.1.jar (androidx.room:room-compiler:2.6.1)":"KSP_PROCESSOR","databinding-compiler-8.2.0.jar (androidx.databinding:databinding-compiler:8.2.0)":"INCREMENTAL_AP"}
\ No newline at end of file
diff --git a/mobile/build/intermediates/apk/freedom/debug/mobile-freedom-debug.apk b/mobile/build/intermediates/apk/freedom/debug/mobile-freedom-debug.apk
new file mode 100644
index 00000000..0d407cba
Binary files /dev/null and b/mobile/build/intermediates/apk/freedom/debug/mobile-freedom-debug.apk differ
diff --git a/mobile/build/intermediates/apk/freedom/debug/output-metadata.json b/mobile/build/intermediates/apk/freedom/debug/output-metadata.json
new file mode 100644
index 00000000..b93c4996
--- /dev/null
+++ b/mobile/build/intermediates/apk/freedom/debug/output-metadata.json
@@ -0,0 +1,20 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "APK",
+ "kind": "Directory"
+ },
+ "applicationId": "hanson.xyz.vpnhotspotmod",
+ "variantName": "freedomDebug",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "versionCode": 1005,
+ "versionName": "2.16.5",
+ "outputFile": "mobile-freedom-debug.apk"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/apk_ide_redirect_file/freedomDebug/redirect.txt b/mobile/build/intermediates/apk_ide_redirect_file/freedomDebug/redirect.txt
new file mode 100644
index 00000000..28540668
--- /dev/null
+++ b/mobile/build/intermediates/apk_ide_redirect_file/freedomDebug/redirect.txt
@@ -0,0 +1,2 @@
+#- File Locator -
+listingFile=../../../outputs/apk/freedom/debug/output-metadata.json
diff --git a/mobile/build/intermediates/app_metadata/freedomDebug/app-metadata.properties b/mobile/build/intermediates/app_metadata/freedomDebug/app-metadata.properties
new file mode 100644
index 00000000..d8c27a4c
--- /dev/null
+++ b/mobile/build/intermediates/app_metadata/freedomDebug/app-metadata.properties
@@ -0,0 +1,2 @@
+appMetadataVersion=1.1
+androidGradlePluginVersion=8.2.0
diff --git a/mobile/build/intermediates/compatible_screen_manifest/freedomDebug/output-metadata.json b/mobile/build/intermediates/compatible_screen_manifest/freedomDebug/output-metadata.json
new file mode 100644
index 00000000..da602021
--- /dev/null
+++ b/mobile/build/intermediates/compatible_screen_manifest/freedomDebug/output-metadata.json
@@ -0,0 +1,10 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "COMPATIBLE_SCREEN_MANIFEST",
+ "kind": "Directory"
+ },
+ "applicationId": "hanson.xyz.vpnhotspotmod",
+ "variantName": "freedomDebug",
+ "elements": []
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/freedomDebug/R.jar b/mobile/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/freedomDebug/R.jar
new file mode 100644
index 00000000..f67f9bd1
Binary files /dev/null and b/mobile/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/freedomDebug/R.jar differ
diff --git a/mobile/build/intermediates/data_binding_artifact/freedomDebug/kaptFreedomDebugKotlin/hanson.xyz.vpnhotspotmod-br.bin b/mobile/build/intermediates/data_binding_artifact/freedomDebug/kaptFreedomDebugKotlin/hanson.xyz.vpnhotspotmod-br.bin
new file mode 100644
index 00000000..c788f6e3
Binary files /dev/null and b/mobile/build/intermediates/data_binding_artifact/freedomDebug/kaptFreedomDebugKotlin/hanson.xyz.vpnhotspotmod-br.bin differ
diff --git a/mobile/build/intermediates/data_binding_artifact/freedomDebug/kaptFreedomDebugKotlin/hanson.xyz.vpnhotspotmod-setter_store.json b/mobile/build/intermediates/data_binding_artifact/freedomDebug/kaptFreedomDebugKotlin/hanson.xyz.vpnhotspotmod-setter_store.json
new file mode 100644
index 00000000..6c90a055
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_artifact/freedomDebug/kaptFreedomDebugKotlin/hanson.xyz.vpnhotspotmod-setter_store.json
@@ -0,0 +1 @@
+{"version":5,"adapterMethods":{"android:src":[[{"viewType":"android.widget.ImageView","valueType":"int"},{"type":"hanson.xyz.vpnhotspotmod.util.UtilsKt","method":"setImageResource","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:visibility":[[{"viewType":"android.view.View","valueType":"boolean"},{"type":"hanson.xyz.vpnhotspotmod.util.UtilsKt","method":"setVisibility","requiresOldValue":false,"isStatic":true,"componentClass":null}]]},"renamedMethods":{},"conversionMethods":{},"untaggableTypes":{},"multiValueAdapters":{},"inverseAdapters":{},"inverseMethods":{},"twoWayMethods":{},"useAndroidX":true}
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_base_class_log_artifact/freedomDebug/out/hanson.xyz.vpnhotspotmod-binding_classes.json b/mobile/build/intermediates/data_binding_base_class_log_artifact/freedomDebug/out/hanson.xyz.vpnhotspotmod-binding_classes.json
new file mode 100644
index 00000000..92f9dc82
Binary files /dev/null and b/mobile/build/intermediates/data_binding_base_class_log_artifact/freedomDebug/out/hanson.xyz.vpnhotspotmod-binding_classes.json differ
diff --git a/mobile/build/intermediates/data_binding_dependency_artifacts/freedomDebug/androidx.databinding.library.baseAdapters-br.bin b/mobile/build/intermediates/data_binding_dependency_artifacts/freedomDebug/androidx.databinding.library.baseAdapters-br.bin
new file mode 100644
index 00000000..56dbcb66
Binary files /dev/null and b/mobile/build/intermediates/data_binding_dependency_artifacts/freedomDebug/androidx.databinding.library.baseAdapters-br.bin differ
diff --git a/mobile/build/intermediates/data_binding_dependency_artifacts/freedomDebug/androidx.databinding.library.baseAdapters-setter_store.json b/mobile/build/intermediates/data_binding_dependency_artifacts/freedomDebug/androidx.databinding.library.baseAdapters-setter_store.json
new file mode 100644
index 00000000..73a96aeb
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_dependency_artifacts/freedomDebug/androidx.databinding.library.baseAdapters-setter_store.json
@@ -0,0 +1 @@
+{"version":5,"adapterMethods":{"android:animateLayoutChanges":[[{"viewType":"android.view.ViewGroup","valueType":"boolean"},{"type":"androidx.databinding.adapters.ViewGroupBindingAdapter","method":"setAnimateLayoutChanges","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:autoText":[[{"viewType":"android.widget.TextView","valueType":"boolean"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setAutoText","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:background":[[{"viewType":"android.view.View","valueType":"android.graphics.drawable.Drawable"},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setBackground","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:bufferType":[[{"viewType":"android.widget.TextView","valueType":"android.widget.TextView.BufferType"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setBufferType","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:capitalize":[[{"viewType":"android.widget.TextView","valueType":"android.text.method.TextKeyListener.Capitalize"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setCapitalize","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:checked":[[{"viewType":"android.widget.CompoundButton","valueType":"boolean"},{"type":"androidx.databinding.adapters.CompoundButtonBindingAdapter","method":"setChecked","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:checkedButton":[[{"viewType":"android.widget.RadioGroup","valueType":"int"},{"type":"androidx.databinding.adapters.RadioGroupBindingAdapter","method":"setCheckedButton","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:collapseColumns":[[{"viewType":"android.widget.TableLayout","valueType":"java.lang.CharSequence"},{"type":"androidx.databinding.adapters.TableLayoutBindingAdapter","method":"setCollapseColumns","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:currentTab":[[{"viewType":"android.widget.TabHost","valueType":"int"},{"type":"androidx.databinding.adapters.TabHostBindingAdapter","method":"setCurrentTab","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.TabHost","valueType":"java.lang.String"},{"type":"androidx.databinding.adapters.TabHostBindingAdapter","method":"setCurrentTabTag","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:date":[[{"viewType":"android.widget.CalendarView","valueType":"long"},{"type":"androidx.databinding.adapters.CalendarViewBindingAdapter","method":"setDate","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:digits":[[{"viewType":"android.widget.TextView","valueType":"java.lang.CharSequence"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setDigits","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:drawableBottom":[[{"viewType":"android.widget.TextView","valueType":"android.graphics.drawable.Drawable"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setDrawableBottom","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:drawableEnd":[[{"viewType":"android.widget.TextView","valueType":"android.graphics.drawable.Drawable"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setDrawableEnd","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:drawableLeft":[[{"viewType":"android.widget.TextView","valueType":"android.graphics.drawable.Drawable"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setDrawableLeft","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:drawableRight":[[{"viewType":"android.widget.TextView","valueType":"android.graphics.drawable.Drawable"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setDrawableRight","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:drawableStart":[[{"viewType":"android.widget.TextView","valueType":"android.graphics.drawable.Drawable"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setDrawableStart","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:drawableTop":[[{"viewType":"android.widget.TextView","valueType":"android.graphics.drawable.Drawable"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setDrawableTop","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:entries":[[{"viewType":"android.widget.AbsSpinner","valueType":"java.lang.CharSequence[]"},{"type":"androidx.databinding.adapters.AbsSpinnerBindingAdapter","method":"setEntries","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.AbsSpinner","valueType":"java.util.List"},{"type":"androidx.databinding.adapters.AbsSpinnerBindingAdapter","method":"setEntries","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:hour":[[{"viewType":"android.widget.TimePicker","valueType":"int"},{"type":"androidx.databinding.adapters.TimePickerBindingAdapter","method":"setHour","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:imeActionId":[[{"viewType":"android.widget.TextView","valueType":"int"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setImeActionLabel","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:imeActionLabel":[[{"viewType":"android.widget.TextView","valueType":"java.lang.CharSequence"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setImeActionLabel","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:inputMethod":[[{"viewType":"android.widget.TextView","valueType":"java.lang.CharSequence"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setInputMethod","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:lineSpacingExtra":[[{"viewType":"android.widget.TextView","valueType":"float"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setLineSpacingExtra","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:lineSpacingMultiplier":[[{"viewType":"android.widget.TextView","valueType":"float"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setLineSpacingMultiplier","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:maxLength":[[{"viewType":"android.widget.TextView","valueType":"int"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setMaxLength","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:minute":[[{"viewType":"android.widget.TimePicker","valueType":"int"},{"type":"androidx.databinding.adapters.TimePickerBindingAdapter","method":"setMinute","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:numeric":[[{"viewType":"android.widget.TextView","valueType":"int"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setNumeric","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:onInflate":[[{"viewType":"androidx.databinding.ViewStubProxy","valueType":"android.view.ViewStub.OnInflateListener"},{"type":"androidx.databinding.adapters.ViewStubBindingAdapter","method":"setOnInflateListener","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:onLayoutChange":[[{"viewType":"android.view.View","valueType":"android.view.View.OnLayoutChangeListener"},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnLayoutChangeListener","requiresOldValue":true,"isStatic":true,"componentClass":null}]],"android:padding":[[{"viewType":"android.view.View","valueType":"float"},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setPadding","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:paddingBottom":[[{"viewType":"android.view.View","valueType":"float"},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setPaddingBottom","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:paddingEnd":[[{"viewType":"android.view.View","valueType":"float"},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setPaddingEnd","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:paddingLeft":[[{"viewType":"android.view.View","valueType":"float"},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setPaddingLeft","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:paddingRight":[[{"viewType":"android.view.View","valueType":"float"},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setPaddingRight","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:paddingStart":[[{"viewType":"android.view.View","valueType":"float"},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setPaddingStart","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:paddingTop":[[{"viewType":"android.view.View","valueType":"float"},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setPaddingTop","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:password":[[{"viewType":"android.widget.TextView","valueType":"boolean"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setPassword","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:phoneNumber":[[{"viewType":"android.widget.TextView","valueType":"boolean"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setPhoneNumber","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:progress":[[{"viewType":"android.widget.SeekBar","valueType":"int"},{"type":"androidx.databinding.adapters.SeekBarBindingAdapter","method":"setProgress","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:rating":[[{"viewType":"android.widget.RatingBar","valueType":"float"},{"type":"androidx.databinding.adapters.RatingBarBindingAdapter","method":"setRating","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:requiresFadingEdge":[[{"viewType":"android.view.View","valueType":"int"},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setRequiresFadingEdge","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:selectedItemPosition":[[{"viewType":"android.widget.AdapterView","valueType":"int"},{"type":"androidx.databinding.adapters.AdapterViewBindingAdapter","method":"setSelectedItemPosition","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:selection":[[{"viewType":"android.widget.AdapterView","valueType":"int"},{"type":"androidx.databinding.adapters.AdapterViewBindingAdapter","method":"setSelection","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:shadowColor":[[{"viewType":"android.widget.TextView","valueType":"int"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setShadowColor","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:shadowDx":[[{"viewType":"android.widget.TextView","valueType":"float"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setShadowDx","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:shadowDy":[[{"viewType":"android.widget.TextView","valueType":"float"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setShadowDy","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:shadowRadius":[[{"viewType":"android.widget.TextView","valueType":"float"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setShadowRadius","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:shrinkColumns":[[{"viewType":"android.widget.TableLayout","valueType":"java.lang.CharSequence"},{"type":"androidx.databinding.adapters.TableLayoutBindingAdapter","method":"setShrinkColumns","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:src":[[{"viewType":"android.widget.ImageView","valueType":"android.graphics.drawable.Drawable"},{"type":"androidx.databinding.adapters.ImageViewBindingAdapter","method":"setImageDrawable","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.ImageView","valueType":"android.net.Uri"},{"type":"androidx.databinding.adapters.ImageViewBindingAdapter","method":"setImageUri","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.ImageView","valueType":"java.lang.String"},{"type":"androidx.databinding.adapters.ImageViewBindingAdapter","method":"setImageUri","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:stretchColumns":[[{"viewType":"android.widget.TableLayout","valueType":"java.lang.CharSequence"},{"type":"androidx.databinding.adapters.TableLayoutBindingAdapter","method":"setStretchColumns","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:switchTextAppearance":[[{"viewType":"android.widget.Switch","valueType":"int"},{"type":"androidx.databinding.adapters.SwitchBindingAdapter","method":"setSwitchTextAppearance","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"androidx.appcompat.widget.SwitchCompat","valueType":"int"},{"type":"androidx.databinding.adapters.SwitchCompatBindingAdapter","method":"setSwitchTextAppearance","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:text":[[{"viewType":"android.widget.TextView","valueType":"java.lang.CharSequence"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setText","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:textSize":[[{"viewType":"android.widget.TextView","valueType":"float"},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setTextSize","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:value":[[{"viewType":"android.widget.NumberPicker","valueType":"int"},{"type":"androidx.databinding.adapters.NumberPickerBindingAdapter","method":"setValue","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"contentPadding":[[{"viewType":"androidx.cardview.widget.CardView","valueType":"int"},{"type":"androidx.databinding.adapters.CardViewBindingAdapter","method":"setContentPadding","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"contentPaddingBottom":[[{"viewType":"androidx.cardview.widget.CardView","valueType":"int"},{"type":"androidx.databinding.adapters.CardViewBindingAdapter","method":"setContentPaddingBottom","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"contentPaddingLeft":[[{"viewType":"androidx.cardview.widget.CardView","valueType":"int"},{"type":"androidx.databinding.adapters.CardViewBindingAdapter","method":"setContentPaddingLeft","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"contentPaddingRight":[[{"viewType":"androidx.cardview.widget.CardView","valueType":"int"},{"type":"androidx.databinding.adapters.CardViewBindingAdapter","method":"setContentPaddingRight","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"contentPaddingTop":[[{"viewType":"androidx.cardview.widget.CardView","valueType":"int"},{"type":"androidx.databinding.adapters.CardViewBindingAdapter","method":"setContentPaddingTop","requiresOldValue":false,"isStatic":true,"componentClass":null}]]},"renamedMethods":{"android:alwaysDrawnWithCache":{"android.view.ViewGroup":{"type":"androidx.databinding.adapters.ViewGroupBindingAdapter","method":"setAlwaysDrawnWithCacheEnabled","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:animationCache":{"android.view.ViewGroup":{"type":"androidx.databinding.adapters.ViewGroupBindingAdapter","method":"setAnimationCacheEnabled","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:autoLink":{"android.widget.TextView":{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setAutoLinkMask","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:backgroundTint":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setBackgroundTintList","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:buttonTint":{"android.widget.CompoundButton":{"type":"androidx.databinding.adapters.CompoundButtonBindingAdapter","method":"setButtonTintList","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:checkMark":{"android.widget.CheckedTextView":{"type":"androidx.databinding.adapters.CheckedTextViewBindingAdapter","method":"setCheckMarkDrawable","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:checkMarkTint":{"android.widget.CheckedTextView":{"type":"androidx.databinding.adapters.CheckedTextViewBindingAdapter","method":"setCheckMarkTintList","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:completionThreshold":{"android.widget.AutoCompleteTextView":{"type":"androidx.databinding.adapters.AutoCompleteTextViewBindingAdapter","method":"setThreshold","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:divider":{"android.widget.LinearLayout":{"type":"androidx.databinding.adapters.LinearLayoutBindingAdapter","method":"setDividerDrawable","requiresOldValue":false,"isStatic":true,"componentClass":null},"android.widget.TabWidget":{"type":"androidx.databinding.adapters.TabWidgetBindingAdapter","method":"setDividerDrawable","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:drawablePadding":{"android.widget.TextView":{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setCompoundDrawablePadding","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:editorExtras":{"android.widget.TextView":{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setInputExtras","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:fadeScrollbars":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setScrollbarFadingEnabled","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:foregroundTint":{"android.widget.FrameLayout":{"type":"androidx.databinding.adapters.FrameLayoutBindingAdapter","method":"setForegroundTintList","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:format":{"android.widget.NumberPicker":{"type":"androidx.databinding.adapters.NumberPickerBindingAdapter","method":"setFormatter","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:getOutline":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOutlineProvider","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:indeterminateTint":{"android.widget.ProgressBar":{"type":"androidx.databinding.adapters.ProgressBarBindingAdapter","method":"setIndeterminateTintList","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:inputType":{"android.widget.TextView":{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setRawInputType","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:layout":{"android.view.ViewStub":{"type":"androidx.databinding.adapters.ViewStubBindingAdapter","method":"setLayoutResource","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:listSelector":{"android.widget.AbsListView":{"type":"androidx.databinding.adapters.AbsListViewBindingAdapter","method":"setSelector","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:measureWithLargestChild":{"android.widget.LinearLayout":{"type":"androidx.databinding.adapters.LinearLayoutBindingAdapter","method":"setMeasureWithLargestChildEnabled","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:nextFocusDown":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setNextFocusDownId","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:nextFocusForward":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setNextFocusForwardId","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:nextFocusLeft":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setNextFocusLeftId","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:nextFocusRight":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setNextFocusRightId","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:nextFocusUp":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setNextFocusUpId","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onApplyWindowInsets":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnApplyWindowInsetsListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onCheckedChanged":{"android.widget.CompoundButton":{"type":"androidx.databinding.adapters.CompoundButtonBindingAdapter","method":"setOnCheckedChangeListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onChildClick":{"android.widget.ExpandableListView":{"type":"androidx.databinding.adapters.ExpandableListViewBindingAdapter","method":"setOnChildClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onChronometerTick":{"android.widget.Chronometer":{"type":"androidx.databinding.adapters.ChronometerBindingAdapter","method":"setOnChronometerTickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onClick":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onClose":{"android.widget.SearchView":{"type":"androidx.databinding.adapters.SearchViewBindingAdapter","method":"setOnCloseListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onCompletion":{"android.widget.VideoView":{"type":"androidx.databinding.adapters.VideoViewBindingAdapter","method":"setOnCompletionListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onCreateContextMenu":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnCreateContextMenuListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onDismiss":{"android.widget.AutoCompleteTextView":{"type":"androidx.databinding.adapters.AutoCompleteTextViewBindingAdapter","method":"setOnDismissListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onDrag":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnDragListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onEditorAction":{"android.widget.TextView":{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setOnEditorActionListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onError":{"android.widget.VideoView":{"type":"androidx.databinding.adapters.VideoViewBindingAdapter","method":"setOnErrorListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onFocusChange":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnFocusChangeListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onGenericMotion":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnGenericMotionListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onGroupClick":{"android.widget.ExpandableListView":{"type":"androidx.databinding.adapters.ExpandableListViewBindingAdapter","method":"setOnGroupClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onGroupCollapse":{"android.widget.ExpandableListView":{"type":"androidx.databinding.adapters.ExpandableListViewBindingAdapter","method":"setOnGroupCollapseListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onGroupExpand":{"android.widget.ExpandableListView":{"type":"androidx.databinding.adapters.ExpandableListViewBindingAdapter","method":"setOnGroupExpandListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onHover":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnHoverListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onInfo":{"android.widget.VideoView":{"type":"androidx.databinding.adapters.VideoViewBindingAdapter","method":"setOnInfoListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onItemClick":{"android.widget.AdapterView":{"type":"androidx.databinding.adapters.AdapterViewBindingAdapter","method":"setOnItemClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null},"android.widget.AutoCompleteTextView":{"type":"androidx.databinding.adapters.AutoCompleteTextViewBindingAdapter","method":"setOnItemClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onItemLongClick":{"android.widget.AdapterView":{"type":"androidx.databinding.adapters.AdapterViewBindingAdapter","method":"setOnItemLongClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onKey":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnKeyListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onLongClick":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnLongClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onMenuItemClick":{"android.widget.ActionMenuView":{"type":"androidx.databinding.adapters.ActionMenuViewBindingAdapter","method":"setOnMenuItemClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null},"android.widget.Toolbar":{"type":"androidx.databinding.adapters.ToolbarBindingAdapter","method":"setOnMenuItemClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onMovedToScrapHeap":{"android.widget.AbsListView":{"type":"androidx.databinding.adapters.AbsListViewBindingAdapter","method":"setRecyclerListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onNavigationClick":{"android.widget.Toolbar":{"type":"androidx.databinding.adapters.ToolbarBindingAdapter","method":"setNavigationOnClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onPrepared":{"android.widget.VideoView":{"type":"androidx.databinding.adapters.VideoViewBindingAdapter","method":"setOnPreparedListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onQueryTextFocusChange":{"android.widget.SearchView":{"type":"androidx.databinding.adapters.SearchViewBindingAdapter","method":"setOnQueryTextFocusChangeListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onScrollStateChange":{"android.widget.NumberPicker":{"type":"androidx.databinding.adapters.NumberPickerBindingAdapter","method":"setOnScrollListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onSearchClick":{"android.widget.SearchView":{"type":"androidx.databinding.adapters.SearchViewBindingAdapter","method":"setOnSearchClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onSystemUiVisibilityChange":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnSystemUiVisibilityChangeListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onTouch":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnTouchListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onZoomIn":{"android.widget.ZoomControls":{"type":"androidx.databinding.adapters.ZoomControlsBindingAdapter","method":"setOnZoomInClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:onZoomOut":{"android.widget.ZoomControls":{"type":"androidx.databinding.adapters.ZoomControlsBindingAdapter","method":"setOnZoomOutClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:popupBackground":{"android.widget.AutoCompleteTextView":{"type":"androidx.databinding.adapters.AutoCompleteTextViewBindingAdapter","method":"setDropDownBackgroundDrawable","requiresOldValue":false,"isStatic":true,"componentClass":null},"android.widget.Spinner":{"type":"androidx.databinding.adapters.SpinnerBindingAdapter","method":"setPopupBackgroundDrawable","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:progressTint":{"android.widget.ProgressBar":{"type":"androidx.databinding.adapters.ProgressBarBindingAdapter","method":"setProgressTintList","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:requiresFadingEdge":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setVerticalFadingEdgeEnabled","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:scrollHorizontally":{"android.widget.TextView":{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setHorizontallyScrolling","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:scrollbarDefaultDelayBeforeFade":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setScrollBarDefaultDelayBeforeFade","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:scrollbarFadeDuration":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setScrollBarFadeDuration","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:scrollbarSize":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setScrollBarSize","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:scrollbarStyle":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setScrollBarStyle","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:scrollingCache":{"android.widget.AbsListView":{"type":"androidx.databinding.adapters.AbsListViewBindingAdapter","method":"setScrollingCacheEnabled","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:secondaryProgressTint":{"android.widget.ProgressBar":{"type":"androidx.databinding.adapters.ProgressBarBindingAdapter","method":"setSecondaryProgressTintList","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:smoothScrollbar":{"android.widget.AbsListView":{"type":"androidx.databinding.adapters.AbsListViewBindingAdapter","method":"setSmoothScrollbarEnabled","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:splitMotionEvents":{"android.view.ViewGroup":{"type":"androidx.databinding.adapters.ViewGroupBindingAdapter","method":"setMotionEventSplittingEnabled","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:tabStripEnabled":{"android.widget.TabWidget":{"type":"androidx.databinding.adapters.TabWidgetBindingAdapter","method":"setStripEnabled","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:tabStripLeft":{"android.widget.TabWidget":{"type":"androidx.databinding.adapters.TabWidgetBindingAdapter","method":"setLeftStripDrawable","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:tabStripRight":{"android.widget.TabWidget":{"type":"androidx.databinding.adapters.TabWidgetBindingAdapter","method":"setRightStripDrawable","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:textAllCaps":{"android.widget.TextView":{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setAllCaps","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:textColorHighlight":{"android.widget.TextView":{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setHighlightColor","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:textColorHint":{"android.widget.TextView":{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setHintTextColor","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:textColorLink":{"android.widget.TextView":{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setLinkTextColor","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:thumb":{"android.widget.Switch":{"type":"androidx.databinding.adapters.SwitchBindingAdapter","method":"setThumbDrawable","requiresOldValue":false,"isStatic":true,"componentClass":null},"androidx.appcompat.widget.SwitchCompat":{"type":"androidx.databinding.adapters.SwitchCompatBindingAdapter","method":"setThumbDrawable","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:thumbTint":{"android.widget.AbsSeekBar":{"type":"androidx.databinding.adapters.AbsSeekBarBindingAdapter","method":"setThumbTintList","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:tint":{"android.widget.ImageView":{"type":"androidx.databinding.adapters.ImageViewBindingAdapter","method":"setImageTintList","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:tintMode":{"android.widget.ImageView":{"type":"androidx.databinding.adapters.ImageViewBindingAdapter","method":"setImageTintMode","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:track":{"android.widget.Switch":{"type":"androidx.databinding.adapters.SwitchBindingAdapter","method":"setTrackDrawable","requiresOldValue":false,"isStatic":true,"componentClass":null},"androidx.appcompat.widget.SwitchCompat":{"type":"androidx.databinding.adapters.SwitchCompatBindingAdapter","method":"setTrackDrawable","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:transformPivotX":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setPivotX","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:transformPivotY":{"android.view.View":{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setPivotY","requiresOldValue":false,"isStatic":true,"componentClass":null}},"cardCornerRadius":{"androidx.cardview.widget.CardView":{"type":"androidx.databinding.adapters.CardViewBindingAdapter","method":"setRadius","requiresOldValue":false,"isStatic":true,"componentClass":null}},"cardMaxElevation":{"androidx.cardview.widget.CardView":{"type":"androidx.databinding.adapters.CardViewBindingAdapter","method":"setMaxCardElevation","requiresOldValue":false,"isStatic":true,"componentClass":null}},"cardPreventCornerOverlap":{"androidx.cardview.widget.CardView":{"type":"androidx.databinding.adapters.CardViewBindingAdapter","method":"setPreventCornerOverlap","requiresOldValue":false,"isStatic":true,"componentClass":null}},"cardUseCompatPadding":{"androidx.cardview.widget.CardView":{"type":"androidx.databinding.adapters.CardViewBindingAdapter","method":"setUseCompatPadding","requiresOldValue":false,"isStatic":true,"componentClass":null}}},"conversionMethods":{"int":{"android.content.res.ColorStateList":{"type":"androidx.databinding.adapters.Converters","method":"convertColorToColorStateList","requiresOldValue":false,"isStatic":true,"componentClass":null},"android.graphics.drawable.ColorDrawable":{"type":"androidx.databinding.adapters.Converters","method":"convertColorToDrawable","requiresOldValue":false,"isStatic":true,"componentClass":null}}},"untaggableTypes":{"android.view.ViewStub":"androidx.databinding.adapters.ViewStubBindingAdapter"},"multiValueAdapters":[[{"viewType":"android.view.View","attributes":["android:onClick","android:clickable"],"parameterTypes":["android.view.View.OnClickListener","boolean"],"requireAll":true,"attributeIndices":{"android:clickable":1,"android:onClick":0}},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnClick","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.view.View","attributes":["android:onClickListener","android:clickable"],"parameterTypes":["android.view.View.OnClickListener","boolean"],"requireAll":true,"attributeIndices":{"android:clickable":1,"android:onClickListener":0}},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.view.View","attributes":["android:onLongClick","android:longClickable"],"parameterTypes":["android.view.View.OnLongClickListener","boolean"],"requireAll":true,"attributeIndices":{"android:longClickable":1,"android:onLongClick":0}},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnLongClick","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.view.View","attributes":["android:onLongClickListener","android:longClickable"],"parameterTypes":["android.view.View.OnLongClickListener","boolean"],"requireAll":true,"attributeIndices":{"android:longClickable":1,"android:onLongClickListener":0}},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnLongClickListener","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.view.View","attributes":["android:onViewDetachedFromWindow","android:onViewAttachedToWindow"],"parameterTypes":["androidx.databinding.adapters.ViewBindingAdapter.OnViewDetachedFromWindow","androidx.databinding.adapters.ViewBindingAdapter.OnViewAttachedToWindow"],"requireAll":false,"attributeIndices":{"android:onViewAttachedToWindow":1,"android:onViewDetachedFromWindow":0}},{"type":"androidx.databinding.adapters.ViewBindingAdapter","method":"setOnAttachStateChangeListener","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.view.ViewGroup","attributes":["android:onChildViewAdded","android:onChildViewRemoved"],"parameterTypes":["androidx.databinding.adapters.ViewGroupBindingAdapter.OnChildViewAdded","androidx.databinding.adapters.ViewGroupBindingAdapter.OnChildViewRemoved"],"requireAll":false,"attributeIndices":{"android:onChildViewAdded":0,"android:onChildViewRemoved":1}},{"type":"androidx.databinding.adapters.ViewGroupBindingAdapter","method":"setListener","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.view.ViewGroup","attributes":["android:onAnimationStart","android:onAnimationEnd","android:onAnimationRepeat"],"parameterTypes":["androidx.databinding.adapters.ViewGroupBindingAdapter.OnAnimationStart","androidx.databinding.adapters.ViewGroupBindingAdapter.OnAnimationEnd","androidx.databinding.adapters.ViewGroupBindingAdapter.OnAnimationRepeat"],"requireAll":false,"attributeIndices":{"android:onAnimationEnd":1,"android:onAnimationRepeat":2,"android:onAnimationStart":0}},{"type":"androidx.databinding.adapters.ViewGroupBindingAdapter","method":"setListener","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.AbsListView","attributes":["android:onScroll","android:onScrollStateChanged"],"parameterTypes":["androidx.databinding.adapters.AbsListViewBindingAdapter.OnScroll","androidx.databinding.adapters.AbsListViewBindingAdapter.OnScrollStateChanged"],"requireAll":false,"attributeIndices":{"android:onScroll":0,"android:onScrollStateChanged":1}},{"type":"androidx.databinding.adapters.AbsListViewBindingAdapter","method":"setOnScroll","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.AdapterView","attributes":["android:selectedItemPosition","android:adapter"],"parameterTypes":["int","android.widget.Adapter"],"requireAll":true,"attributeIndices":{"android:adapter":1,"android:selectedItemPosition":0}},{"type":"androidx.databinding.adapters.AdapterViewBindingAdapter","method":"setSelectedItemPosition","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.AdapterView","attributes":["android:selection","android:adapter"],"parameterTypes":["int","android.widget.Adapter"],"requireAll":true,"attributeIndices":{"android:adapter":1,"android:selection":0}},{"type":"androidx.databinding.adapters.AdapterViewBindingAdapter","method":"setSelection","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.AdapterView","attributes":["android:onItemSelected","android:onNothingSelected","android:selectedItemPositionAttrChanged"],"parameterTypes":["androidx.databinding.adapters.AdapterViewBindingAdapter.OnItemSelected","androidx.databinding.adapters.AdapterViewBindingAdapter.OnNothingSelected","androidx.databinding.InverseBindingListener"],"requireAll":false,"attributeIndices":{"android:onItemSelected":0,"android:onNothingSelected":1,"android:selectedItemPositionAttrChanged":2}},{"type":"androidx.databinding.adapters.AdapterViewBindingAdapter","method":"setOnItemSelectedListener","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.AutoCompleteTextView","attributes":["android:fixText","android:isValid"],"parameterTypes":["androidx.databinding.adapters.AutoCompleteTextViewBindingAdapter.FixText","androidx.databinding.adapters.AutoCompleteTextViewBindingAdapter.IsValid"],"requireAll":false,"attributeIndices":{"android:fixText":0,"android:isValid":1}},{"type":"androidx.databinding.adapters.AutoCompleteTextViewBindingAdapter","method":"setValidator","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.AutoCompleteTextView","attributes":["android:onItemSelected","android:onNothingSelected"],"parameterTypes":["androidx.databinding.adapters.AdapterViewBindingAdapter.OnItemSelected","androidx.databinding.adapters.AdapterViewBindingAdapter.OnNothingSelected"],"requireAll":false,"attributeIndices":{"android:onItemSelected":0,"android:onNothingSelected":1}},{"type":"androidx.databinding.adapters.AutoCompleteTextViewBindingAdapter","method":"setOnItemSelectedListener","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.CalendarView","attributes":["android:onSelectedDayChange","android:dateAttrChanged"],"parameterTypes":["android.widget.CalendarView.OnDateChangeListener","androidx.databinding.InverseBindingListener"],"requireAll":false,"attributeIndices":{"android:dateAttrChanged":1,"android:onSelectedDayChange":0}},{"type":"androidx.databinding.adapters.CalendarViewBindingAdapter","method":"setListeners","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.CompoundButton","attributes":["android:onCheckedChanged","android:checkedAttrChanged"],"parameterTypes":["android.widget.CompoundButton.OnCheckedChangeListener","androidx.databinding.InverseBindingListener"],"requireAll":false,"attributeIndices":{"android:checkedAttrChanged":1,"android:onCheckedChanged":0}},{"type":"androidx.databinding.adapters.CompoundButtonBindingAdapter","method":"setListeners","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.DatePicker","attributes":["android:year","android:month","android:day","android:onDateChanged","android:yearAttrChanged","android:monthAttrChanged","android:dayAttrChanged"],"parameterTypes":["int","int","int","android.widget.DatePicker.OnDateChangedListener","androidx.databinding.InverseBindingListener","androidx.databinding.InverseBindingListener","androidx.databinding.InverseBindingListener"],"requireAll":false,"attributeIndices":{"android:day":2,"android:dayAttrChanged":6,"android:month":1,"android:monthAttrChanged":5,"android:onDateChanged":3,"android:year":0,"android:yearAttrChanged":4}},{"type":"androidx.databinding.adapters.DatePickerBindingAdapter","method":"setListeners","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.NumberPicker","attributes":["android:onValueChange","android:valueAttrChanged"],"parameterTypes":["android.widget.NumberPicker.OnValueChangeListener","androidx.databinding.InverseBindingListener"],"requireAll":false,"attributeIndices":{"android:onValueChange":0,"android:valueAttrChanged":1}},{"type":"androidx.databinding.adapters.NumberPickerBindingAdapter","method":"setListeners","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.RadioGroup","attributes":["android:onCheckedChanged","android:checkedButtonAttrChanged"],"parameterTypes":["android.widget.RadioGroup.OnCheckedChangeListener","androidx.databinding.InverseBindingListener"],"requireAll":false,"attributeIndices":{"android:checkedButtonAttrChanged":1,"android:onCheckedChanged":0}},{"type":"androidx.databinding.adapters.RadioGroupBindingAdapter","method":"setListeners","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.RatingBar","attributes":["android:onRatingChanged","android:ratingAttrChanged"],"parameterTypes":["android.widget.RatingBar.OnRatingBarChangeListener","androidx.databinding.InverseBindingListener"],"requireAll":false,"attributeIndices":{"android:onRatingChanged":0,"android:ratingAttrChanged":1}},{"type":"androidx.databinding.adapters.RatingBarBindingAdapter","method":"setListeners","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.SearchView","attributes":["android:onQueryTextSubmit","android:onQueryTextChange"],"parameterTypes":["androidx.databinding.adapters.SearchViewBindingAdapter.OnQueryTextSubmit","androidx.databinding.adapters.SearchViewBindingAdapter.OnQueryTextChange"],"requireAll":false,"attributeIndices":{"android:onQueryTextChange":1,"android:onQueryTextSubmit":0}},{"type":"androidx.databinding.adapters.SearchViewBindingAdapter","method":"setOnQueryTextListener","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.SearchView","attributes":["android:onSuggestionSelect","android:onSuggestionClick"],"parameterTypes":["androidx.databinding.adapters.SearchViewBindingAdapter.OnSuggestionSelect","androidx.databinding.adapters.SearchViewBindingAdapter.OnSuggestionClick"],"requireAll":false,"attributeIndices":{"android:onSuggestionClick":1,"android:onSuggestionSelect":0}},{"type":"androidx.databinding.adapters.SearchViewBindingAdapter","method":"setOnSuggestListener","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.SeekBar","attributes":["android:onStartTrackingTouch","android:onStopTrackingTouch","android:onProgressChanged","android:progressAttrChanged"],"parameterTypes":["androidx.databinding.adapters.SeekBarBindingAdapter.OnStartTrackingTouch","androidx.databinding.adapters.SeekBarBindingAdapter.OnStopTrackingTouch","androidx.databinding.adapters.SeekBarBindingAdapter.OnProgressChanged","androidx.databinding.InverseBindingListener"],"requireAll":false,"attributeIndices":{"android:onProgressChanged":2,"android:onStartTrackingTouch":0,"android:onStopTrackingTouch":1,"android:progressAttrChanged":3}},{"type":"androidx.databinding.adapters.SeekBarBindingAdapter","method":"setOnSeekBarChangeListener","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.TabHost","attributes":["android:onTabChanged","android:currentTabAttrChanged"],"parameterTypes":["android.widget.TabHost.OnTabChangeListener","androidx.databinding.InverseBindingListener"],"requireAll":false,"attributeIndices":{"android:currentTabAttrChanged":1,"android:onTabChanged":0}},{"type":"androidx.databinding.adapters.TabHostBindingAdapter","method":"setListeners","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.TextView","attributes":["android:beforeTextChanged","android:onTextChanged","android:afterTextChanged","android:textAttrChanged"],"parameterTypes":["androidx.databinding.adapters.TextViewBindingAdapter.BeforeTextChanged","androidx.databinding.adapters.TextViewBindingAdapter.OnTextChanged","androidx.databinding.adapters.TextViewBindingAdapter.AfterTextChanged","androidx.databinding.InverseBindingListener"],"requireAll":false,"attributeIndices":{"android:afterTextChanged":2,"android:beforeTextChanged":0,"android:onTextChanged":1,"android:textAttrChanged":3}},{"type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"setTextWatcher","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.TimePicker","attributes":["android:onTimeChanged","android:hourAttrChanged","android:minuteAttrChanged"],"parameterTypes":["android.widget.TimePicker.OnTimeChangedListener","androidx.databinding.InverseBindingListener","androidx.databinding.InverseBindingListener"],"requireAll":false,"attributeIndices":{"android:hourAttrChanged":1,"android:minuteAttrChanged":2,"android:onTimeChanged":0}},{"type":"androidx.databinding.adapters.TimePickerBindingAdapter","method":"setListeners","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"inverseAdapters":{"android:currentTab":[[{"viewType":"android.widget.TabHost","valueType":"int"},{"event":"android:currentTabAttrChanged","type":"androidx.databinding.adapters.TabHostBindingAdapter","method":"getCurrentTab","requiresOldValue":false,"isStatic":true,"componentClass":null}],[{"viewType":"android.widget.TabHost","valueType":"java.lang.String"},{"event":"android:currentTabAttrChanged","type":"androidx.databinding.adapters.TabHostBindingAdapter","method":"getCurrentTabTag","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:hour":[[{"viewType":"android.widget.TimePicker","valueType":"int"},{"event":"android:hourAttrChanged","type":"androidx.databinding.adapters.TimePickerBindingAdapter","method":"getHour","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:minute":[[{"viewType":"android.widget.TimePicker","valueType":"int"},{"event":"android:minuteAttrChanged","type":"androidx.databinding.adapters.TimePickerBindingAdapter","method":"getMinute","requiresOldValue":false,"isStatic":true,"componentClass":null}]],"android:text":[[{"viewType":"android.widget.TextView","valueType":"java.lang.String"},{"event":"android:textAttrChanged","type":"androidx.databinding.adapters.TextViewBindingAdapter","method":"getTextString","requiresOldValue":false,"isStatic":true,"componentClass":null}]]},"inverseMethods":{"android:checked":{"android.widget.CompoundButton":{"event":"android:checkedAttrChanged","type":"androidx.databinding.adapters.CompoundButtonBindingAdapter","method":"","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:checkedButton":{"android.widget.RadioGroup":{"event":"android:checkedButtonAttrChanged","type":"androidx.databinding.adapters.RadioGroupBindingAdapter","method":"getCheckedRadioButtonId","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:date":{"android.widget.CalendarView":{"event":"android:dateAttrChanged","type":"androidx.databinding.adapters.CalendarViewBindingAdapter","method":"","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:day":{"android.widget.DatePicker":{"event":"android:dayAttrChanged","type":"androidx.databinding.adapters.DatePickerBindingAdapter","method":"getDayOfMonth","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:month":{"android.widget.DatePicker":{"event":"android:monthAttrChanged","type":"androidx.databinding.adapters.DatePickerBindingAdapter","method":"","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:progress":{"android.widget.SeekBar":{"event":"android:progressAttrChanged","type":"androidx.databinding.adapters.SeekBarBindingAdapter","method":"","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:rating":{"android.widget.RatingBar":{"event":"android:ratingAttrChanged","type":"androidx.databinding.adapters.RatingBarBindingAdapter","method":"","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:selectedItemPosition":{"android.widget.AdapterView":{"event":"android:selectedItemPositionAttrChanged","type":"androidx.databinding.adapters.AdapterViewBindingAdapter","method":"","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:selection":{"android.widget.AdapterView":{"event":"android:selectedItemPositionAttrChanged","type":"androidx.databinding.adapters.AdapterViewBindingAdapter","method":"getSelectedItemPosition","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:value":{"android.widget.NumberPicker":{"event":"android:valueAttrChanged","type":"androidx.databinding.adapters.NumberPickerBindingAdapter","method":"","requiresOldValue":false,"isStatic":true,"componentClass":null}},"android:year":{"android.widget.DatePicker":{"event":"android:yearAttrChanged","type":"androidx.databinding.adapters.DatePickerBindingAdapter","method":"","requiresOldValue":false,"isStatic":true,"componentClass":null}}},"twoWayMethods":{},"useAndroidX":true}
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/activity_main-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/activity_main-layout.xml
new file mode 100644
index 00000000..91213892
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/activity_main-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/dialog_wifi_ap-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/dialog_wifi_ap-layout.xml
new file mode 100644
index 00000000..3974b797
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/dialog_wifi_ap-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/fragment_clients-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/fragment_clients-layout.xml
new file mode 100644
index 00000000..279dd743
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/fragment_clients-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/fragment_ebeg-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/fragment_ebeg-layout.xml
new file mode 100644
index 00000000..3162cf86
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/fragment_ebeg-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/fragment_tethering-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/fragment_tethering-layout.xml
new file mode 100644
index 00000000..af852dd9
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/fragment_tethering-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/listitem_client-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/listitem_client-layout.xml
new file mode 100644
index 00000000..cbff7753
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/listitem_client-layout.xml
@@ -0,0 +1 @@
+falsefalsefalsefalsefalse
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/listitem_interface-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/listitem_interface-layout.xml
new file mode 100644
index 00000000..052657a6
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/listitem_interface-layout.xml
@@ -0,0 +1 @@
+falsefalsefalsefalsefalse
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/listitem_manage-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/listitem_manage-layout.xml
new file mode 100644
index 00000000..56538a51
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/listitem_manage-layout.xml
@@ -0,0 +1 @@
+false
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/listitem_repeater-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/listitem_repeater-layout.xml
new file mode 100644
index 00000000..2353a8ca
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/listitem_repeater-layout.xml
@@ -0,0 +1 @@
+falsefalsefalsefalsefalsefalsefalse
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/preference_material-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/preference_material-layout.xml
new file mode 100644
index 00000000..382232ad
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/preference_material-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/preference_widget_edittext_autocomplete-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/preference_widget_edittext_autocomplete-layout.xml
new file mode 100644
index 00000000..43d71f6f
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/preference_widget_edittext_autocomplete-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/preference_widget_material_switch-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/preference_widget_material_switch-layout.xml
new file mode 100644
index 00000000..f34d0a7e
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_merge/freedomDebug/out/preference_widget_material_switch-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/activity_main-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/activity_main-layout.xml
new file mode 100644
index 00000000..91213892
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/activity_main-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/dialog_wifi_ap-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/dialog_wifi_ap-layout.xml
new file mode 100644
index 00000000..3974b797
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/dialog_wifi_ap-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/fragment_clients-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/fragment_clients-layout.xml
new file mode 100644
index 00000000..279dd743
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/fragment_clients-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/fragment_ebeg-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/fragment_ebeg-layout.xml
new file mode 100644
index 00000000..3162cf86
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/fragment_ebeg-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/fragment_tethering-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/fragment_tethering-layout.xml
new file mode 100644
index 00000000..af852dd9
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/fragment_tethering-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/listitem_client-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/listitem_client-layout.xml
new file mode 100644
index 00000000..cbff7753
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/listitem_client-layout.xml
@@ -0,0 +1 @@
+falsefalsefalsefalsefalse
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/listitem_interface-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/listitem_interface-layout.xml
new file mode 100644
index 00000000..052657a6
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/listitem_interface-layout.xml
@@ -0,0 +1 @@
+falsefalsefalsefalsefalse
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/listitem_manage-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/listitem_manage-layout.xml
new file mode 100644
index 00000000..56538a51
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/listitem_manage-layout.xml
@@ -0,0 +1 @@
+false
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/listitem_repeater-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/listitem_repeater-layout.xml
new file mode 100644
index 00000000..2353a8ca
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/listitem_repeater-layout.xml
@@ -0,0 +1 @@
+falsefalsefalsefalsefalsefalsefalse
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/preference_material-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/preference_material-layout.xml
new file mode 100644
index 00000000..382232ad
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/preference_material-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/preference_widget_edittext_autocomplete-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/preference_widget_edittext_autocomplete-layout.xml
new file mode 100644
index 00000000..43d71f6f
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/preference_widget_edittext_autocomplete-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/preference_widget_material_switch-layout.xml b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/preference_widget_material_switch-layout.xml
new file mode 100644
index 00000000..f34d0a7e
--- /dev/null
+++ b/mobile/build/intermediates/data_binding_layout_info_type_package/freedomDebug/out/preference_widget_material_switch-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/desugar_graph/freedomDebug/out/currentProject/dirs_bucket_0/graph.bin b/mobile/build/intermediates/desugar_graph/freedomDebug/out/currentProject/dirs_bucket_0/graph.bin
new file mode 100644
index 00000000..05e9c842
Binary files /dev/null and b/mobile/build/intermediates/desugar_graph/freedomDebug/out/currentProject/dirs_bucket_0/graph.bin differ
diff --git a/mobile/build/intermediates/desugar_graph/freedomDebug/out/currentProject/jar_c3d6f806d0a3fc3ed6a9f5c779fa44f82162ee15808a906c35c0f823c9681579_bucket_0/graph.bin b/mobile/build/intermediates/desugar_graph/freedomDebug/out/currentProject/jar_c3d6f806d0a3fc3ed6a9f5c779fa44f82162ee15808a906c35c0f823c9681579_bucket_0/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/mobile/build/intermediates/desugar_graph/freedomDebug/out/currentProject/jar_c3d6f806d0a3fc3ed6a9f5c779fa44f82162ee15808a906c35c0f823c9681579_bucket_0/graph.bin differ
diff --git a/mobile/build/intermediates/desugar_lib_dex/freedomDebug/classes1000.dex b/mobile/build/intermediates/desugar_lib_dex/freedomDebug/classes1000.dex
new file mode 100644
index 00000000..9f6f826a
Binary files /dev/null and b/mobile/build/intermediates/desugar_lib_dex/freedomDebug/classes1000.dex differ
diff --git a/mobile/build/intermediates/dex/freedomDebug/mergeExtDexFreedomDebug/classes.dex b/mobile/build/intermediates/dex/freedomDebug/mergeExtDexFreedomDebug/classes.dex
new file mode 100644
index 00000000..d61b6427
Binary files /dev/null and b/mobile/build/intermediates/dex/freedomDebug/mergeExtDexFreedomDebug/classes.dex differ
diff --git a/mobile/build/intermediates/dex/freedomDebug/mergeExtDexFreedomDebug/classes2.dex b/mobile/build/intermediates/dex/freedomDebug/mergeExtDexFreedomDebug/classes2.dex
new file mode 100644
index 00000000..222fc42e
Binary files /dev/null and b/mobile/build/intermediates/dex/freedomDebug/mergeExtDexFreedomDebug/classes2.dex differ
diff --git a/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/0/classes.dex b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/0/classes.dex
new file mode 100644
index 00000000..3a0b097b
Binary files /dev/null and b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/0/classes.dex differ
diff --git a/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/1/classes.dex b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/1/classes.dex
new file mode 100644
index 00000000..9db53b78
Binary files /dev/null and b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/1/classes.dex differ
diff --git a/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/11/classes.dex b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/11/classes.dex
new file mode 100644
index 00000000..bcb22f5f
Binary files /dev/null and b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/11/classes.dex differ
diff --git a/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/12/classes.dex b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/12/classes.dex
new file mode 100644
index 00000000..f7940093
Binary files /dev/null and b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/12/classes.dex differ
diff --git a/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/15/classes.dex b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/15/classes.dex
new file mode 100644
index 00000000..43b6cf7a
Binary files /dev/null and b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/15/classes.dex differ
diff --git a/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/2/classes.dex b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/2/classes.dex
new file mode 100644
index 00000000..e9ba9f8f
Binary files /dev/null and b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/2/classes.dex differ
diff --git a/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/5/classes.dex b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/5/classes.dex
new file mode 100644
index 00000000..d4e66c13
Binary files /dev/null and b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/5/classes.dex differ
diff --git a/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/6/classes.dex b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/6/classes.dex
new file mode 100644
index 00000000..c2b871bd
Binary files /dev/null and b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/6/classes.dex differ
diff --git a/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/9/classes.dex b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/9/classes.dex
new file mode 100644
index 00000000..4bcf627c
Binary files /dev/null and b/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/9/classes.dex differ
diff --git a/mobile/build/intermediates/dex_archive_input_jar_hashes/freedomDebug/out b/mobile/build/intermediates/dex_archive_input_jar_hashes/freedomDebug/out
new file mode 100644
index 00000000..e4b8350c
Binary files /dev/null and b/mobile/build/intermediates/dex_archive_input_jar_hashes/freedomDebug/out differ
diff --git a/mobile/build/intermediates/dex_number_of_buckets_file/freedomDebug/out b/mobile/build/intermediates/dex_number_of_buckets_file/freedomDebug/out
new file mode 100644
index 00000000..56a6051c
--- /dev/null
+++ b/mobile/build/intermediates/dex_number_of_buckets_file/freedomDebug/out
@@ -0,0 +1 @@
+1
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/dataBindingGenBaseClassesFreedomDebug/base_builder_log.json b/mobile/build/intermediates/incremental/dataBindingGenBaseClassesFreedomDebug/base_builder_log.json
new file mode 100644
index 00000000..a893577b
Binary files /dev/null and b/mobile/build/intermediates/incremental/dataBindingGenBaseClassesFreedomDebug/base_builder_log.json differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/merge-state b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/merge-state
new file mode 100644
index 00000000..51634ae2
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/merge-state differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/+23JDKpYFabQ4YrXGdNBtmQsvWY= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/+23JDKpYFabQ4YrXGdNBtmQsvWY=
new file mode 100644
index 00000000..beb64b4d
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/+23JDKpYFabQ4YrXGdNBtmQsvWY= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/+3GlWWZKCwsvGRZKEWnqv7GLN4s= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/+3GlWWZKCwsvGRZKEWnqv7GLN4s=
new file mode 100644
index 00000000..4f1af9bc
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/+3GlWWZKCwsvGRZKEWnqv7GLN4s= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/+NGQGJCAaCGOtjmWb14zUwKiLPE= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/+NGQGJCAaCGOtjmWb14zUwKiLPE=
new file mode 100644
index 00000000..5a028163
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/+NGQGJCAaCGOtjmWb14zUwKiLPE= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/0Na7PD+Cz4WyVdLEzgtl+A85P0I= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/0Na7PD+Cz4WyVdLEzgtl+A85P0I=
new file mode 100644
index 00000000..ca15142f
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/0Na7PD+Cz4WyVdLEzgtl+A85P0I= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/0ie8wqniMsmq2lhN4xLq3Uf_vAY= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/0ie8wqniMsmq2lhN4xLq3Uf_vAY=
new file mode 100644
index 00000000..03fde860
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/0ie8wqniMsmq2lhN4xLq3Uf_vAY= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/0zq3aX_cFJcNmK0w_EFC+7pEVN4= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/0zq3aX_cFJcNmK0w_EFC+7pEVN4=
new file mode 100644
index 00000000..dd51769e
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/0zq3aX_cFJcNmK0w_EFC+7pEVN4= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/1NBaL3ZXktyjrCqzAsNzMmkGD8k= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/1NBaL3ZXktyjrCqzAsNzMmkGD8k=
new file mode 100644
index 00000000..fd3a7e7b
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/1NBaL3ZXktyjrCqzAsNzMmkGD8k= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/1ggPPY2aQR7TczRrYC5vOq5_ing= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/1ggPPY2aQR7TczRrYC5vOq5_ing=
new file mode 100644
index 00000000..2cf45d61
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/1ggPPY2aQR7TczRrYC5vOq5_ing= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/1lYNbpuHZnVKWBRNpvX+bdQvdBE= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/1lYNbpuHZnVKWBRNpvX+bdQvdBE=
new file mode 100644
index 00000000..32c96a3f
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/1lYNbpuHZnVKWBRNpvX+bdQvdBE= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/1phEglzyccRSMm40hCVb5_Sd7h0= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/1phEglzyccRSMm40hCVb5_Sd7h0=
new file mode 100644
index 00000000..69f58e3a
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/1phEglzyccRSMm40hCVb5_Sd7h0= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/21oJCN_+5mVNMXFK0FbEva78QEo= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/21oJCN_+5mVNMXFK0FbEva78QEo=
new file mode 100644
index 00000000..97a1c8b1
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/21oJCN_+5mVNMXFK0FbEva78QEo= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/2D8PJKFbI0HCkJjXDbNSiTBECmY= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/2D8PJKFbI0HCkJjXDbNSiTBECmY=
new file mode 100644
index 00000000..b2efafcb
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/2D8PJKFbI0HCkJjXDbNSiTBECmY= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/2geSKL4FCmCRSGKJpEA44+8kTbw= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/2geSKL4FCmCRSGKJpEA44+8kTbw=
new file mode 100644
index 00000000..a3b69aa3
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/2geSKL4FCmCRSGKJpEA44+8kTbw= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/2wnn_cPWc6uNKYCxZypbRlbvms0= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/2wnn_cPWc6uNKYCxZypbRlbvms0=
new file mode 100644
index 00000000..fec0e320
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/2wnn_cPWc6uNKYCxZypbRlbvms0= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/3ClfdRJ11MoyxN1eiiBy5+6El+M= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/3ClfdRJ11MoyxN1eiiBy5+6El+M=
new file mode 100644
index 00000000..5119f5e7
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/3ClfdRJ11MoyxN1eiiBy5+6El+M= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/3emjGZcwgfYKV2cwSUTWc6QDvMk= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/3emjGZcwgfYKV2cwSUTWc6QDvMk=
new file mode 100644
index 00000000..e2973a25
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/3emjGZcwgfYKV2cwSUTWc6QDvMk= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/3zX0e8jPVkv4PSU+Chi2tpY5MWY= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/3zX0e8jPVkv4PSU+Chi2tpY5MWY=
new file mode 100644
index 00000000..c129a362
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/3zX0e8jPVkv4PSU+Chi2tpY5MWY= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/5ZI3KbYH5c4vLLvZIi+t9EuA69o= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/5ZI3KbYH5c4vLLvZIi+t9EuA69o=
new file mode 100644
index 00000000..e9a16ddc
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/5ZI3KbYH5c4vLLvZIi+t9EuA69o= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/93dXqKDntiraeUZKAt3lnKljibw= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/93dXqKDntiraeUZKAt3lnKljibw=
new file mode 100644
index 00000000..833b0958
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/93dXqKDntiraeUZKAt3lnKljibw= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/9Y2G6tS58JtX3a1f17OZ5sqCoqw= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/9Y2G6tS58JtX3a1f17OZ5sqCoqw=
new file mode 100644
index 00000000..aa24233d
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/9Y2G6tS58JtX3a1f17OZ5sqCoqw= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/A+lrwe_GJYOCKMIxpgBnGv90_Xk= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/A+lrwe_GJYOCKMIxpgBnGv90_Xk=
new file mode 100644
index 00000000..f727c19f
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/A+lrwe_GJYOCKMIxpgBnGv90_Xk= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/AM+MQqWuxbVYla0YvF55tRiuyj8= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/AM+MQqWuxbVYla0YvF55tRiuyj8=
new file mode 100644
index 00000000..f3e485b3
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/AM+MQqWuxbVYla0YvF55tRiuyj8= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/A_nmCDFAs2AavqE9AN3W5LK_tjY= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/A_nmCDFAs2AavqE9AN3W5LK_tjY=
new file mode 100644
index 00000000..6faadbd0
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/A_nmCDFAs2AavqE9AN3W5LK_tjY= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/BDXEJA8ISHrmH1PO7tQvF1qJZHI= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/BDXEJA8ISHrmH1PO7tQvF1qJZHI=
new file mode 100644
index 00000000..b09c0993
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/BDXEJA8ISHrmH1PO7tQvF1qJZHI= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Ba+lVHN1hSD+6uwC2DjIKkrPPN0= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Ba+lVHN1hSD+6uwC2DjIKkrPPN0=
new file mode 100644
index 00000000..54e7587d
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Ba+lVHN1hSD+6uwC2DjIKkrPPN0= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/CeqiZ_uMyV+oCGltGwkmGAPNCVs= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/CeqiZ_uMyV+oCGltGwkmGAPNCVs=
new file mode 100644
index 00000000..a556e71f
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/CeqiZ_uMyV+oCGltGwkmGAPNCVs= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Cg9Lk9r+X25duvYmEX4iR4EdZkU= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Cg9Lk9r+X25duvYmEX4iR4EdZkU=
new file mode 100644
index 00000000..dfea5b0e
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Cg9Lk9r+X25duvYmEX4iR4EdZkU= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/D5gC61d2mOIIlObJ6EOyf+HJdP8= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/D5gC61d2mOIIlObJ6EOyf+HJdP8=
new file mode 100644
index 00000000..07b77381
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/D5gC61d2mOIIlObJ6EOyf+HJdP8= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/DOYYnG0BIyKeJ5+KA_+lEjp37mE= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/DOYYnG0BIyKeJ5+KA_+lEjp37mE=
new file mode 100644
index 00000000..03c80a94
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/DOYYnG0BIyKeJ5+KA_+lEjp37mE= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/EjkkIzazEVwbzti4sOjaoj71iCU= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/EjkkIzazEVwbzti4sOjaoj71iCU=
new file mode 100644
index 00000000..607113bd
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/EjkkIzazEVwbzti4sOjaoj71iCU= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/F8Sp4ZgWDgI7Lh7aguwStfMPiVc= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/F8Sp4ZgWDgI7Lh7aguwStfMPiVc=
new file mode 100644
index 00000000..6ccda32b
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/F8Sp4ZgWDgI7Lh7aguwStfMPiVc= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/FPFW_EfZ4aMp4alAu_QSZJjm2Fk= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/FPFW_EfZ4aMp4alAu_QSZJjm2Fk=
new file mode 100644
index 00000000..59222d9c
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/FPFW_EfZ4aMp4alAu_QSZJjm2Fk= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/GpHhikmYslfI0btyAon4QV+MfGk= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/GpHhikmYslfI0btyAon4QV+MfGk=
new file mode 100644
index 00000000..73444bac
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/GpHhikmYslfI0btyAon4QV+MfGk= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/GzglOxUXRHZ976vnh9X1BeLZyiM= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/GzglOxUXRHZ976vnh9X1BeLZyiM=
new file mode 100644
index 00000000..564e9b11
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/GzglOxUXRHZ976vnh9X1BeLZyiM= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/H+lf04vCP3BFd4U93lacdewR6G0= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/H+lf04vCP3BFd4U93lacdewR6G0=
new file mode 100644
index 00000000..651d0200
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/H+lf04vCP3BFd4U93lacdewR6G0= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/I5UJqjEULZyI7Jm2gPeFgr7hWBc= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/I5UJqjEULZyI7Jm2gPeFgr7hWBc=
new file mode 100644
index 00000000..21e17557
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/I5UJqjEULZyI7Jm2gPeFgr7hWBc= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/IXt2Xdr5u5EYEQs_EK70fZO26WQ= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/IXt2Xdr5u5EYEQs_EK70fZO26WQ=
new file mode 100644
index 00000000..b2a9d0bf
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/IXt2Xdr5u5EYEQs_EK70fZO26WQ= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/J6Ol2aAP7NHZpWA28NBLc4GhQpM= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/J6Ol2aAP7NHZpWA28NBLc4GhQpM=
new file mode 100644
index 00000000..8fd6cd4c
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/J6Ol2aAP7NHZpWA28NBLc4GhQpM= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/JssE6aWLcacPlt5GEZKLveArZog= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/JssE6aWLcacPlt5GEZKLveArZog=
new file mode 100644
index 00000000..533091c6
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/JssE6aWLcacPlt5GEZKLveArZog= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/KB4v4Vw9WGynub6Bsk7JgkA__aM= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/KB4v4Vw9WGynub6Bsk7JgkA__aM=
new file mode 100644
index 00000000..2a6441a7
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/KB4v4Vw9WGynub6Bsk7JgkA__aM= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/KzfKItz2JBHJ6KDe1GxvXt0SGUg= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/KzfKItz2JBHJ6KDe1GxvXt0SGUg=
new file mode 100644
index 00000000..c703ef41
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/KzfKItz2JBHJ6KDe1GxvXt0SGUg= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/LJnm8Qsb039m5q81PoB5hXuX50o= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/LJnm8Qsb039m5q81PoB5hXuX50o=
new file mode 100644
index 00000000..8568b5b7
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/LJnm8Qsb039m5q81PoB5hXuX50o= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Lx8vuzPBc8ewvveGlQ1kfdvqp3I= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Lx8vuzPBc8ewvveGlQ1kfdvqp3I=
new file mode 100644
index 00000000..5fa6ce90
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Lx8vuzPBc8ewvveGlQ1kfdvqp3I= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/M54cZyCGtqrmsomUUTAsmIbL5mo= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/M54cZyCGtqrmsomUUTAsmIbL5mo=
new file mode 100644
index 00000000..dccab6f8
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/M54cZyCGtqrmsomUUTAsmIbL5mo= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/MnaG3fEcxxklf74OGtUhevdimPY= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/MnaG3fEcxxklf74OGtUhevdimPY=
new file mode 100644
index 00000000..c3eef538
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/MnaG3fEcxxklf74OGtUhevdimPY= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/N1p4meTJgGfXYYTyBitlwD_J55g= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/N1p4meTJgGfXYYTyBitlwD_J55g=
new file mode 100644
index 00000000..eb4a58c0
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/N1p4meTJgGfXYYTyBitlwD_J55g= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/N3arqXCc4FOLPIgYpiCRQLRViRs= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/N3arqXCc4FOLPIgYpiCRQLRViRs=
new file mode 100644
index 00000000..c71e18bf
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/N3arqXCc4FOLPIgYpiCRQLRViRs= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/N6zXVnZi9yEuEBBAOds7LW7hmsU= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/N6zXVnZi9yEuEBBAOds7LW7hmsU=
new file mode 100644
index 00000000..1ffce777
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/N6zXVnZi9yEuEBBAOds7LW7hmsU= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/NSXKWas23UT27rK6X75r8_9Ki0Y= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/NSXKWas23UT27rK6X75r8_9Ki0Y=
new file mode 100644
index 00000000..d9d9bd84
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/NSXKWas23UT27rK6X75r8_9Ki0Y= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/OAMjR6MFFG0qNlMdMtFBmct2MNo= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/OAMjR6MFFG0qNlMdMtFBmct2MNo=
new file mode 100644
index 00000000..640cfe71
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/OAMjR6MFFG0qNlMdMtFBmct2MNo= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/OPnAYszgL184fo2UZYmZ0VeVBAs= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/OPnAYszgL184fo2UZYmZ0VeVBAs=
new file mode 100644
index 00000000..10a2fd45
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/OPnAYszgL184fo2UZYmZ0VeVBAs= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/OX8Dw3mF7x5+QJe0aHLR3Igodpo= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/OX8Dw3mF7x5+QJe0aHLR3Igodpo=
new file mode 100644
index 00000000..68458530
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/OX8Dw3mF7x5+QJe0aHLR3Igodpo= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/O_EAaZO2YP3ulMrYxH9SOvr4Xhc= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/O_EAaZO2YP3ulMrYxH9SOvr4Xhc=
new file mode 100644
index 00000000..785c632e
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/O_EAaZO2YP3ulMrYxH9SOvr4Xhc= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/OtQW59IuoLfPxn5hKm_mGj1pAKA= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/OtQW59IuoLfPxn5hKm_mGj1pAKA=
new file mode 100644
index 00000000..f90af369
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/OtQW59IuoLfPxn5hKm_mGj1pAKA= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/PAuCFPQJBfey6UqtqodonEyKg38= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/PAuCFPQJBfey6UqtqodonEyKg38=
new file mode 100644
index 00000000..b60c2c35
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/PAuCFPQJBfey6UqtqodonEyKg38= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/PQ92xQR4K1xrV4pzrieDRSk3YZA= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/PQ92xQR4K1xrV4pzrieDRSk3YZA=
new file mode 100644
index 00000000..845ec87b
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/PQ92xQR4K1xrV4pzrieDRSk3YZA= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/PnX9b3dpeaqA8A0qpJxt+Ljjgns= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/PnX9b3dpeaqA8A0qpJxt+Ljjgns=
new file mode 100644
index 00000000..2510a5ae
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/PnX9b3dpeaqA8A0qpJxt+Ljjgns= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/PwypKI0GVV5ZY7GS3ayEHn29zrA= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/PwypKI0GVV5ZY7GS3ayEHn29zrA=
new file mode 100644
index 00000000..5ac6f223
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/PwypKI0GVV5ZY7GS3ayEHn29zrA= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/QCXGzbw9nmCtIO4T4uZJe78_dZQ= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/QCXGzbw9nmCtIO4T4uZJe78_dZQ=
new file mode 100644
index 00000000..0b6aa77c
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/QCXGzbw9nmCtIO4T4uZJe78_dZQ= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/QaIKjYknQUJ_9Mhln1wJNZhcOAg= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/QaIKjYknQUJ_9Mhln1wJNZhcOAg=
new file mode 100644
index 00000000..ff3b59a0
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/QaIKjYknQUJ_9Mhln1wJNZhcOAg= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/QtQmeUeq_Ohn5uLAgBEN954CZ00= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/QtQmeUeq_Ohn5uLAgBEN954CZ00=
new file mode 100644
index 00000000..21eb3072
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/QtQmeUeq_Ohn5uLAgBEN954CZ00= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/R4dMPPEFfl+IrOCoz0NXkf2To8k= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/R4dMPPEFfl+IrOCoz0NXkf2To8k=
new file mode 100644
index 00000000..2eccdae7
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/R4dMPPEFfl+IrOCoz0NXkf2To8k= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Rv2Jbn6PUf9Q1TsrhOQHn8McxlM= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Rv2Jbn6PUf9Q1TsrhOQHn8McxlM=
new file mode 100644
index 00000000..fd6b42cf
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Rv2Jbn6PUf9Q1TsrhOQHn8McxlM= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/SFfyejpVa3X2ujDbiA4f3lYR0tQ= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/SFfyejpVa3X2ujDbiA4f3lYR0tQ=
new file mode 100644
index 00000000..5b377d27
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/SFfyejpVa3X2ujDbiA4f3lYR0tQ= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/T7A4jrYk6+VqcCzmUznIh6K_GjI= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/T7A4jrYk6+VqcCzmUznIh6K_GjI=
new file mode 100644
index 00000000..d5e7582e
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/T7A4jrYk6+VqcCzmUznIh6K_GjI= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/UHgCFQ4CectYdDU6ClL7q6ftfuc= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/UHgCFQ4CectYdDU6ClL7q6ftfuc=
new file mode 100644
index 00000000..65b0c4c8
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/UHgCFQ4CectYdDU6ClL7q6ftfuc= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/V2iztXQzJpVCZWb_UosKln4LZ3Q= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/V2iztXQzJpVCZWb_UosKln4LZ3Q=
new file mode 100644
index 00000000..7c917b90
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/V2iztXQzJpVCZWb_UosKln4LZ3Q= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/VAXNrWdeIB8Nfs+GTCkGo8TSw28= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/VAXNrWdeIB8Nfs+GTCkGo8TSw28=
new file mode 100644
index 00000000..9e21c963
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/VAXNrWdeIB8Nfs+GTCkGo8TSw28= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/VlUdbcBh00zxM+JlW_USV4l+BQ0= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/VlUdbcBh00zxM+JlW_USV4l+BQ0=
new file mode 100644
index 00000000..2e079822
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/VlUdbcBh00zxM+JlW_USV4l+BQ0= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/VxHGgkwb8DeB2z9kxJgsOG9Grb8= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/VxHGgkwb8DeB2z9kxJgsOG9Grb8=
new file mode 100644
index 00000000..e5d16bd0
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/VxHGgkwb8DeB2z9kxJgsOG9Grb8= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/WKTiJXc79lB+txCBhWj6dLwyM1A= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/WKTiJXc79lB+txCBhWj6dLwyM1A=
new file mode 100644
index 00000000..90d5279e
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/WKTiJXc79lB+txCBhWj6dLwyM1A= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/WPvkS74wqqMUmoTATypKJNpaX9Q= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/WPvkS74wqqMUmoTATypKJNpaX9Q=
new file mode 100644
index 00000000..2cec677c
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/WPvkS74wqqMUmoTATypKJNpaX9Q= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/WmkOSYSx5PwwiSDEm4bUNov4JUs= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/WmkOSYSx5PwwiSDEm4bUNov4JUs=
new file mode 100644
index 00000000..f34c7d4e
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/WmkOSYSx5PwwiSDEm4bUNov4JUs= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/XNGmkl_7WOYjyBwCZX9+pqc8dCw= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/XNGmkl_7WOYjyBwCZX9+pqc8dCw=
new file mode 100644
index 00000000..b5f40820
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/XNGmkl_7WOYjyBwCZX9+pqc8dCw= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/XaEMAEOVTPRZEifiNQ+zUlWqzxs= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/XaEMAEOVTPRZEifiNQ+zUlWqzxs=
new file mode 100644
index 00000000..36596499
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/XaEMAEOVTPRZEifiNQ+zUlWqzxs= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Z4+t_9dunlhz7tYaY3xAb3mC+QA= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Z4+t_9dunlhz7tYaY3xAb3mC+QA=
new file mode 100644
index 00000000..1ddcf6c9
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/Z4+t_9dunlhz7tYaY3xAb3mC+QA= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/_+_x_WPrGkPgAU4r1l0YuNaE+S8= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/_+_x_WPrGkPgAU4r1l0YuNaE+S8=
new file mode 100644
index 00000000..ba190148
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/_+_x_WPrGkPgAU4r1l0YuNaE+S8= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/_VQ2PrsXg8M+AIJpW_UqZHVVW4I= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/_VQ2PrsXg8M+AIJpW_UqZHVVW4I=
new file mode 100644
index 00000000..13a896d5
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/_VQ2PrsXg8M+AIJpW_UqZHVVW4I= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/aHjMbx9sAV95_nOJ+KX0WanYjIk= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/aHjMbx9sAV95_nOJ+KX0WanYjIk=
new file mode 100644
index 00000000..ab8e8a40
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/aHjMbx9sAV95_nOJ+KX0WanYjIk= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/aKN_xK2a+NYUx1mxi_63kfWNyZw= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/aKN_xK2a+NYUx1mxi_63kfWNyZw=
new file mode 100644
index 00000000..846dea11
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/aKN_xK2a+NYUx1mxi_63kfWNyZw= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/auktJAB0GnE4_EtubgbqtqoE0as= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/auktJAB0GnE4_EtubgbqtqoE0as=
new file mode 100644
index 00000000..a2259b84
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/auktJAB0GnE4_EtubgbqtqoE0as= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bCVi2kv5kq1esclhuXqpe3vSyLc= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bCVi2kv5kq1esclhuXqpe3vSyLc=
new file mode 100644
index 00000000..bf5ddf4b
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bCVi2kv5kq1esclhuXqpe3vSyLc= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bK+RieyUP8oCXc6uJItjCCRdKmg= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bK+RieyUP8oCXc6uJItjCCRdKmg=
new file mode 100644
index 00000000..0b1e1edc
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bK+RieyUP8oCXc6uJItjCCRdKmg= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bKwm7qcz_qML__faq3bkhpcmQvM= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bKwm7qcz_qML__faq3bkhpcmQvM=
new file mode 100644
index 00000000..66419b91
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bKwm7qcz_qML__faq3bkhpcmQvM= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bL+VSiV944bnZ59fg9fl_uSxPvE= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bL+VSiV944bnZ59fg9fl_uSxPvE=
new file mode 100644
index 00000000..88f5191e
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bL+VSiV944bnZ59fg9fl_uSxPvE= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bXkI86jZha5rYIPrr7OSQHmhnF4= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bXkI86jZha5rYIPrr7OSQHmhnF4=
new file mode 100644
index 00000000..4c9f52f7
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/bXkI86jZha5rYIPrr7OSQHmhnF4= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/boXnGWKC2GJu4nlZHaAGD9qIiOE= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/boXnGWKC2GJu4nlZHaAGD9qIiOE=
new file mode 100644
index 00000000..332ae9a2
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/boXnGWKC2GJu4nlZHaAGD9qIiOE= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/cCEwYVcs4Y+iHnfb4inUvFdj9Dk= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/cCEwYVcs4Y+iHnfb4inUvFdj9Dk=
new file mode 100644
index 00000000..ff0bce59
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/cCEwYVcs4Y+iHnfb4inUvFdj9Dk= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/cJboMer_0qCmEid1ZpF6E0b1DWA= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/cJboMer_0qCmEid1ZpF6E0b1DWA=
new file mode 100644
index 00000000..5a757132
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/cJboMer_0qCmEid1ZpF6E0b1DWA= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/cYerK9PZsu7Lew0DkzdJf_nHqhE= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/cYerK9PZsu7Lew0DkzdJf_nHqhE=
new file mode 100644
index 00000000..0f39ddeb
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/cYerK9PZsu7Lew0DkzdJf_nHqhE= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/dUaK1WmyNGAr5jU0iy0CuCaGDiM= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/dUaK1WmyNGAr5jU0iy0CuCaGDiM=
new file mode 100644
index 00000000..bff7b3b7
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/dUaK1WmyNGAr5jU0iy0CuCaGDiM= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/eAOK3C0SL57ZkbF0_V1UVJmzGOU= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/eAOK3C0SL57ZkbF0_V1UVJmzGOU=
new file mode 100644
index 00000000..5b521a16
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/eAOK3C0SL57ZkbF0_V1UVJmzGOU= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/eygDnPAnr6KQ5_G898ltUIqhRvE= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/eygDnPAnr6KQ5_G898ltUIqhRvE=
new file mode 100644
index 00000000..45832c05
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/eygDnPAnr6KQ5_G898ltUIqhRvE= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/f7HsHtjlc4xGAogXetLa_ygRaQU= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/f7HsHtjlc4xGAogXetLa_ygRaQU=
new file mode 100644
index 00000000..756e313b
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/f7HsHtjlc4xGAogXetLa_ygRaQU= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/fWZZRrpBnJ7qR5_gWd76Iuh4WDw= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/fWZZRrpBnJ7qR5_gWd76Iuh4WDw=
new file mode 100644
index 00000000..6d8f903d
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/fWZZRrpBnJ7qR5_gWd76Iuh4WDw= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/fhBVvkzsG8NhcvCILOuzSmJswX8= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/fhBVvkzsG8NhcvCILOuzSmJswX8=
new file mode 100644
index 00000000..4ba63114
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/fhBVvkzsG8NhcvCILOuzSmJswX8= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/fyoPRYPJQkLtqLrsvHZse3AQ+Ks= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/fyoPRYPJQkLtqLrsvHZse3AQ+Ks=
new file mode 100644
index 00000000..eff4fafc
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/fyoPRYPJQkLtqLrsvHZse3AQ+Ks= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/fz0pdCpJIvVdrngvTV6xsdkr7KI= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/fz0pdCpJIvVdrngvTV6xsdkr7KI=
new file mode 100644
index 00000000..497fe4d8
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/fz0pdCpJIvVdrngvTV6xsdkr7KI= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/g9rcsY0ZcrfFeyL+uqzduzyhrLY= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/g9rcsY0ZcrfFeyL+uqzduzyhrLY=
new file mode 100644
index 00000000..0324e1ca
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/g9rcsY0ZcrfFeyL+uqzduzyhrLY= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/gUwMu3mT1dsaiEN2qX7nW+jsbDo= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/gUwMu3mT1dsaiEN2qX7nW+jsbDo=
new file mode 100644
index 00000000..cca19242
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/gUwMu3mT1dsaiEN2qX7nW+jsbDo= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/geNPjAX7c4OzWXIRG73XPUKrlIY= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/geNPjAX7c4OzWXIRG73XPUKrlIY=
new file mode 100644
index 00000000..5b591b76
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/geNPjAX7c4OzWXIRG73XPUKrlIY= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/gftlN8k1WM4obC8T201HP+UJf0w= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/gftlN8k1WM4obC8T201HP+UJf0w=
new file mode 100644
index 00000000..8bf936d3
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/gftlN8k1WM4obC8T201HP+UJf0w= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/iZk3JZmffBa6T0V82t9b+8mPNeU= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/iZk3JZmffBa6T0V82t9b+8mPNeU=
new file mode 100644
index 00000000..d83b9ade
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/iZk3JZmffBa6T0V82t9b+8mPNeU= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/j_dOFF3NeqXfwRm2g6BspdR302g= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/j_dOFF3NeqXfwRm2g6BspdR302g=
new file mode 100644
index 00000000..e50314e8
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/j_dOFF3NeqXfwRm2g6BspdR302g= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/j_ewZdZ+nrr_fSiiGLGTWgNynxg= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/j_ewZdZ+nrr_fSiiGLGTWgNynxg=
new file mode 100644
index 00000000..7a7e32cb
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/j_ewZdZ+nrr_fSiiGLGTWgNynxg= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/jbuKJ7osrgFlXqepjMacLvHjKd4= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/jbuKJ7osrgFlXqepjMacLvHjKd4=
new file mode 100644
index 00000000..1ff599e7
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/jbuKJ7osrgFlXqepjMacLvHjKd4= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/kD2GO6zDuNYPFXqO3_THBIWxMzg= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/kD2GO6zDuNYPFXqO3_THBIWxMzg=
new file mode 100644
index 00000000..9426e404
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/kD2GO6zDuNYPFXqO3_THBIWxMzg= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/kMjrKmePoV6sS7NYf08Z72e+p_8= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/kMjrKmePoV6sS7NYf08Z72e+p_8=
new file mode 100644
index 00000000..5c88b2b7
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/kMjrKmePoV6sS7NYf08Z72e+p_8= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/kRn0nPZUbU94Wln4nkPdbmUETTk= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/kRn0nPZUbU94Wln4nkPdbmUETTk=
new file mode 100644
index 00000000..1bd4e175
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/kRn0nPZUbU94Wln4nkPdbmUETTk= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/lDJcro3Jydy0KfmSWh6D6upGLTs= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/lDJcro3Jydy0KfmSWh6D6upGLTs=
new file mode 100644
index 00000000..d717cfb5
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/lDJcro3Jydy0KfmSWh6D6upGLTs= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/lSBvgTNyTE255Hn0c2w6Bi+CThc= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/lSBvgTNyTE255Hn0c2w6Bi+CThc=
new file mode 100644
index 00000000..e9eed802
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/lSBvgTNyTE255Hn0c2w6Bi+CThc= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/lWm1ZLrL4ILvSDfP+3kwvi10w+U= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/lWm1ZLrL4ILvSDfP+3kwvi10w+U=
new file mode 100644
index 00000000..8353e969
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/lWm1ZLrL4ILvSDfP+3kwvi10w+U= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/mjNy_5yRzQL7a5w5DRSu3yHQVM8= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/mjNy_5yRzQL7a5w5DRSu3yHQVM8=
new file mode 100644
index 00000000..714bda43
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/mjNy_5yRzQL7a5w5DRSu3yHQVM8= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/mkzIW92UtWHDpljBcSjHKLc2xQY= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/mkzIW92UtWHDpljBcSjHKLc2xQY=
new file mode 100644
index 00000000..9b56dc75
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/mkzIW92UtWHDpljBcSjHKLc2xQY= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/n1xS+t_0Rk9zPEzVGXaEdy9FCj0= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/n1xS+t_0Rk9zPEzVGXaEdy9FCj0=
new file mode 100644
index 00000000..86890e61
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/n1xS+t_0Rk9zPEzVGXaEdy9FCj0= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/n7QX1NQdqqrjOcBqPeEy9K8qLuI= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/n7QX1NQdqqrjOcBqPeEy9K8qLuI=
new file mode 100644
index 00000000..e939d05b
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/n7QX1NQdqqrjOcBqPeEy9K8qLuI= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/nmKoFhI+tD_Pm_Ixa4M_r6vjLdE= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/nmKoFhI+tD_Pm_Ixa4M_r6vjLdE=
new file mode 100644
index 00000000..3a197bda
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/nmKoFhI+tD_Pm_Ixa4M_r6vjLdE= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/oEUfkfjA4ASGkY8lD7i9YJ75AHI= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/oEUfkfjA4ASGkY8lD7i9YJ75AHI=
new file mode 100644
index 00000000..f17dae78
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/oEUfkfjA4ASGkY8lD7i9YJ75AHI= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/oG2oRqklPmwy+L5G_hj6cjXBORs= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/oG2oRqklPmwy+L5G_hj6cjXBORs=
new file mode 100644
index 00000000..a429c721
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/oG2oRqklPmwy+L5G_hj6cjXBORs= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/omhmZmjqxyhErZxU3fD_4GG6GE0= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/omhmZmjqxyhErZxU3fD_4GG6GE0=
new file mode 100644
index 00000000..0f4481e2
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/omhmZmjqxyhErZxU3fD_4GG6GE0= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/ouwDyyPrUcw17KhUx3DaJXOqZsA= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/ouwDyyPrUcw17KhUx3DaJXOqZsA=
new file mode 100644
index 00000000..b73828b5
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/ouwDyyPrUcw17KhUx3DaJXOqZsA= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/p9jglvAxpxEjC7KkmU8+Ir+q9PE= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/p9jglvAxpxEjC7KkmU8+Ir+q9PE=
new file mode 100644
index 00000000..1849ad8e
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/p9jglvAxpxEjC7KkmU8+Ir+q9PE= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/pzQxu4GpEYqAi+MU9kKKIxdgDQQ= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/pzQxu4GpEYqAi+MU9kKKIxdgDQQ=
new file mode 100644
index 00000000..83c41efc
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/pzQxu4GpEYqAi+MU9kKKIxdgDQQ= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/qAol1chUl8K2J6udpeMPtbiuha0= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/qAol1chUl8K2J6udpeMPtbiuha0=
new file mode 100644
index 00000000..ae9d872d
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/qAol1chUl8K2J6udpeMPtbiuha0= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/qnWrlUm5knXecU3IK8sCPY4pBcM= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/qnWrlUm5knXecU3IK8sCPY4pBcM=
new file mode 100644
index 00000000..a89a9925
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/qnWrlUm5knXecU3IK8sCPY4pBcM= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/rIhWM03QXWVx_6euR8es6uTFk5A= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/rIhWM03QXWVx_6euR8es6uTFk5A=
new file mode 100644
index 00000000..90139b11
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/rIhWM03QXWVx_6euR8es6uTFk5A= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/s+mp_uw1pzz2B2aY_daptoHZ2zA= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/s+mp_uw1pzz2B2aY_daptoHZ2zA=
new file mode 100644
index 00000000..c7b326b1
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/s+mp_uw1pzz2B2aY_daptoHZ2zA= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/tA6HU7jYQtSOC7kAVaVBAte7RWc= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/tA6HU7jYQtSOC7kAVaVBAte7RWc=
new file mode 100644
index 00000000..2105ed72
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/tA6HU7jYQtSOC7kAVaVBAte7RWc= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/tNSoAsTGtndFL1RzJV6GxYn3MEU= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/tNSoAsTGtndFL1RzJV6GxYn3MEU=
new file mode 100644
index 00000000..1ab44503
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/tNSoAsTGtndFL1RzJV6GxYn3MEU= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/taz1PJEEp9P69IHzWbpjG1xkpWY= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/taz1PJEEp9P69IHzWbpjG1xkpWY=
new file mode 100644
index 00000000..de755d1a
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/taz1PJEEp9P69IHzWbpjG1xkpWY= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/v0PHX9flksSFzHMbVsVEjQc9+6g= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/v0PHX9flksSFzHMbVsVEjQc9+6g=
new file mode 100644
index 00000000..dc7b90ea
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/v0PHX9flksSFzHMbVsVEjQc9+6g= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/wnj1Re2Wch9YVaQ2fzcmcQagsWI= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/wnj1Re2Wch9YVaQ2fzcmcQagsWI=
new file mode 100644
index 00000000..8ff77a80
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/wnj1Re2Wch9YVaQ2fzcmcQagsWI= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xDhjXVO4lo1ydp3M7WHdLzdwuAU= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xDhjXVO4lo1ydp3M7WHdLzdwuAU=
new file mode 100644
index 00000000..f5d55d0a
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xDhjXVO4lo1ydp3M7WHdLzdwuAU= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xo7dxNQes8fYvt5KKFUqOwo24KM= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xo7dxNQes8fYvt5KKFUqOwo24KM=
new file mode 100644
index 00000000..4bec9f38
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xo7dxNQes8fYvt5KKFUqOwo24KM= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xtF7W1tTBsQ8kh0+zFjl5pYAGfo= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xtF7W1tTBsQ8kh0+zFjl5pYAGfo=
new file mode 100644
index 00000000..8812bd55
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xtF7W1tTBsQ8kh0+zFjl5pYAGfo= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xtioa7CLBNNMmP3n3Beay1XWvnc= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xtioa7CLBNNMmP3n3Beay1XWvnc=
new file mode 100644
index 00000000..c5f48441
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xtioa7CLBNNMmP3n3Beay1XWvnc= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xwg21O0+BSjaTwK1azK_hffme0g= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xwg21O0+BSjaTwK1azK_hffme0g=
new file mode 100644
index 00000000..c68ea7ab
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/xwg21O0+BSjaTwK1azK_hffme0g= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/zQQVgvuZrGYG5JSmjF0rvIzSf9s= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/zQQVgvuZrGYG5JSmjF0rvIzSf9s=
new file mode 100644
index 00000000..af31cbe2
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/zQQVgvuZrGYG5JSmjF0rvIzSf9s= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/zuqtIBw7QgZk1ajMcPnX4WJ_Jak= b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/zuqtIBw7QgZk1ajMcPnX4WJ_Jak=
new file mode 100644
index 00000000..1c472d04
Binary files /dev/null and b/mobile/build/intermediates/incremental/freedomDebug-mergeJavaRes/zip-cache/zuqtIBw7QgZk1ajMcPnX4WJ_Jak= differ
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/compile-file-map.properties b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/compile-file-map.properties
new file mode 100644
index 00000000..9a9ca76d
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/compile-file-map.properties
@@ -0,0 +1,66 @@
+#Sun Mar 03 22:41:30 CST 2024
+hanson.xyz.vpnhotspotmod.mobile-freedomDebug-61\:/raw/third_party_license_metadata=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/raw_third_party_license_metadata.flat
+hanson.xyz.vpnhotspotmod.mobile-freedomDebug-61\:/raw/third_party_licenses=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/raw_third_party_licenses.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_action_autorenew.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_autorenew.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_action_bug_report.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_bug_report.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_action_build.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_build.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_action_card_giftcard.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_card_giftcard.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_action_code.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_code.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_action_perm_scan_wifi.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_perm_scan_wifi.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_action_settings.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_action_settings_backup_restore.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_backup_restore.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_action_settings_ethernet.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_ethernet.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_action_settings_input_antenna.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_input_antenna.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_action_settings_input_component.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_input_component.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_action_update.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_update.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_action_wifi_protected_setup.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_wifi_protected_setup.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_alert_warning.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_alert_warning.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_av_closed_caption.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_av_closed_caption.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_av_closed_caption_off.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_av_closed_caption_off.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_content_add.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_content_add.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_content_file_copy.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_content_file_copy.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_content_inbox.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_content_inbox.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_device_battery_charging_full.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_battery_charging_full.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_device_bluetooth.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_bluetooth.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_device_devices.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_devices.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_device_network_wifi.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_network_wifi.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_device_usb.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_usb.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_device_wifi_lock.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_wifi_lock.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_device_wifi_tethering.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_wifi_tethering.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_file_downloading.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_file_downloading.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_hardware_device_hub.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_hardware_device_hub.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_image_flash_on.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_image_flash_on.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_image_looks_6.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_image_looks_6.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_image_remove_red_eye.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_image_remove_red_eye.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_launcher_background.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_launcher_background.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_launcher_foreground.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_launcher_foreground.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_launcher_monochrome.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_launcher_monochrome.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_quick_settings_tile_on.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_quick_settings_tile_on.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_settings_qrcode.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_settings_qrcode.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_social_people.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_social_people.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/ic_toggle_star.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_toggle_star.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/drawable/toggle_hex.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/drawable_toggle_hex.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/layout/dialog_nickname.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_dialog_nickname.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/layout/dialog_wps.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_dialog_wps.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/menu/navigation.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/menu_navigation.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/menu/popup_client.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/menu_popup_client.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/menu/toolbar_configuration.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/menu_toolbar_configuration.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/menu/toolbar_tethering.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/menu_toolbar_tethering.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/mipmap/banner.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/mipmap_banner.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/mipmap/ic_launcher.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/mipmap_ic_launcher.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/xml/locales_config.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/xml_locales_config.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/xml/log_paths.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/xml_log_paths.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/xml/no_backup.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/xml_no_backup.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-main-68\:/xml/pref_settings.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/xml_pref_settings.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63\:/layout/activity_main.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_activity_main.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63\:/layout/dialog_wifi_ap.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_dialog_wifi_ap.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63\:/layout/fragment_clients.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_fragment_clients.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63\:/layout/fragment_ebeg.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_fragment_ebeg.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63\:/layout/fragment_tethering.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_fragment_tethering.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63\:/layout/listitem_client.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_client.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63\:/layout/listitem_interface.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_interface.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63\:/layout/listitem_manage.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_manage.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63\:/layout/listitem_repeater.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_repeater.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63\:/layout/preference_material.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_preference_material.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63\:/layout/preference_widget_edittext_autocomplete.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_preference_widget_edittext_autocomplete.xml.flat
+hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63\:/layout/preference_widget_material_switch.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug/layout_preference_widget_material_switch.xml.flat
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-af/values-af.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-af/values-af.xml
new file mode 100644
index 00000000..c693999a
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-af/values-af.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d nuwe kennisgewing
+ - %d nuwe kennisgewings
+
+ "Gaan na tuisskerm"
+ "Gaan op"
+ "Nog opsies"
+ "Klaar"
+ "Sien alles"
+ "Kies \'n program"
+ "AF"
+ "AAN"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Funksie+"
+ "Meta+"
+ "Shift+"
+ "spasiebalk"
+ "Simbool+"
+ "Kieslys+"
+ "Soek …"
+ "Vee navraag uit"
+ "Soektognavraag"
+ "Soek"
+ "Dien navraag in"
+ "Stemsoektog"
+ "Deel met"
+ "Deel met %s"
+ "Vou in"
+ Vou die onderste blad in
+ Vou die onderste blad uit
+ Vou halfpad uit
+ Het op sleephandvatsel gedubbeltik
+ Sleephandvatsel
+ "Antwoord"
+ "Video"
+ "Wys af"
+ "Lui af"
+ "Inkomende oproep"
+ "Oproep aan die gang"
+ "Keur tans \'n inkomende oproep"
+ Karakters ingevoer: %1$d van %2$d
+ Karakterlimiet oorskry %1$d van %2$d
+ Vee teks uit
+ Aktiveer
+ %1$s sal nie werk nie tensy jy Google Play Dienste aktiveer.
+ Aktiveer Google Play Dienste
+ Installeer
+ %1$s sal nie sonder Google Play Dienste werk nie, wat nie op jou toestel is nie.
+ Kry Google Play Dienste
+ Beskikbaarheid van Google Play Dienste
+ Google Play Services-fout
+ %1$s ondervind probleme met Google Play Dienste. Probeer asseblief weer.
+ %1$s sal nie werk sonder Google Play Dienste nie, wat nie deur jou toestel gesteun word nie.
+ Dateer op
+ %1$s sal nie werk nie tensy jy Google Play Dienste opdateer.
+ Dateer Google Play Dienste op
+ %1$s sal nie sonder Google Play Dienste werk nie, wat tans opdateer.
+ Nuwe weergawe van Google Play Dienste is nodig. Dit sal binnekort self opdateer.
+ Maak oop op foon
+ Meld aan
+ Meld aan met Google
+ "Kopieer"
+ "Skakel is na knipbord gekopieer"
+ Fout
+ "Gevorderd"
+ Wys aftrekkieslys
+ "Kopieer skakel"
+ "Maak in blaaier oop"
+ "Deel skakel"
+ Dialoogikoon
+ Oortjie
+ Kies vm. of nm.
+ %1$s uur
+ Kies uur
+ %1$s-uur
+ Kies minute
+ %1$s minute
+ VM.
+ Skakel oor na horlosiemodus vir die tydinvoer.
+ Uur
+ Minuut
+ NM.
+ Kies tyd
+ Skakel oor na teksmodus vir die tydinvoer.
+ Nuwe kennisgewing
+ Verwyder %1$s
+ Meer as %1$d nuwe kennisgewings
+ Verander na volgende maand
+ Verander na vorige maand
+ Keuse van begindatum: %1$s – Keuse van einddatum: %2$s
+ Huidige keuse: %1$s
+ geen
+ Kanselleer
+ OK
+ %1$s
+ Kies datum
+ Gekose datum
+ Kolom van dae: %1$s
+ Einddatum %1$s
+ Ongeldige formaat.
+ Voorbeeld: %1$s
+ Gebruik: %1$s
+ Ongeldige reeks.
+ Gaan na huidige jaar %1$d
+ Gaan na jaar %1$d
+ Buite reeks: %1$s
+ Begindatum – %1$s
+ %1$s – Einddatum
+ %1$s-%2$s
+ Kies datumreeks
+ Begindatum – Einddatum
+ Stoor
+ Begindatum %1$s
+ Datum
+ Einddatum
+ Begindatum
+ d
+ m
+ j
+ Vandag %1$s
+ Skakel oor na kalenderinvoermodus
+ Tik om na kalenderaansig oor te skakel
+ Skakel oor na teksinvoermodus
+ Tik om na jaaraansig oor te skakel
+ Kanselleer
+ OK
+ "Nie gestel nie"
+ Wys wagwoord
+ "\"%1$s\" is na knipbord gekopieer."
+ "Soek"
+ "999+"
+ "%1$s, %2$s"
+ "AF"
+ "AAN"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-am/values-am.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-am/values-am.xml
new file mode 100644
index 00000000..32d665fd
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-am/values-am.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d አዲስ ማሳወቂያዎች
+ - %d አዲስ ማሳወቂያዎች
+
+ "መáŠáˆ» ዳስስ"
+ "ወደ ላዠያስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናá‹áŠ—áˆ"
+ "áˆáˆ‰áŠ•áˆ á‹áˆ˜áˆáŠ¨á‰±"
+ "አንድ መተáŒá‰ ሪያ á‹áˆáˆ¨áŒ¡"
+ "አጥá‹"
+ "አብራ"
+ "Alt+"
+ "Ctrl+"
+ "ሰáˆá‹"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "áŠáተት"
+ "Sym+"
+ "Menu+"
+ "á‹áˆáˆáŒ‰â€¦"
+ "መጠá‹á‰… አጽዳ"
+ "የáለጋ መጠá‹á‰…"
+ "áለጋ"
+ "መጠá‹á‰… አስገባ"
+ "የድáˆáŒ½ áለጋ"
+ "አጋራ በ"
+ "ለ%s አጋራ"
+ "ሰብስብ"
+ የáŒáˆáŒŒ ሉáˆáŠ• á‹áˆ°á‰¥áˆµá‰¡
+ የáŒáˆáŒŒ ሉáˆáŠ• á‹á‹˜áˆáŒ‰
+ áŒáˆ›áˆ½ መንገድ ዘáˆáŒ‹
+ መያዣ á‹áŒŽá‰µá‰± áˆáˆˆá‰´ መታ ተደáˆáŒ“áˆ
+ መያዣ á‹áŒŽá‰µá‰±
+ "መáˆáˆµ"
+ "ቪዲዮ"
+ "አትቀበáˆ"
+ "ስáˆáŠ©áŠ• á‹áŒ‹"
+ "ገቢ ጥሪ"
+ "እየተካሄደ ያለ ጥሪ"
+ "ገቢ ጥሪ ማጣራት"
+ á‰áˆáŠá‹Žá‰½ %1$d ከ%2$d ገብተዋáˆ
+ የá‰áˆáŠ áŒˆá‹°á‰¥ %1$d ከ%2$d አáˆááˆ
+ ጽሑáን አጽዳ
+ አንቃ
+ Google Play አገáˆáŒáˆŽá‰¶á‰½áŠ• ካላáŠá‰ በስተቀሠ%1$s አá‹áˆ°áˆ«áˆá¢
+ Google Play አገáˆáŒáˆŽá‰¶á‰½áŠ• ያንá‰
+ ጫን
+ %1$s ያለ Google Play አገáˆáŒáˆŽá‰¶á‰½ አá‹áˆ°áˆ«áˆá£ እáŠáˆ± á‹°áŒáˆž በመሣሪያዎ ላዠየሉáˆá¢
+ Google Play አገáˆáŒáˆŽá‰¶á‰½áŠ• á‹«áŒáŠ™
+ Google Play አገáˆáŒáˆŽá‰¶á‰½ ተገáŠáŠá‰µ
+ የGoogle Play አገáˆáŒáˆŽá‰¶á‰½ ስህተት
+ %1$s በGoogle Play አገáˆáŒáˆŽá‰¶á‰½ ላዠችáŒáˆ®á‰½ እያጋጠሙት áŠá‹á¢ እባáŠá‹Ž እንደገና á‹áˆžáŠáˆ©á¢
+ %1$s ያለGoogle Play አገáˆáŒáˆŽá‰¶á‰½ አá‹áˆ„ድáˆá£ እáŠá‹šáˆ…ሠበመሣሪያዎ አá‹á‹°áŒˆá‰áˆá¢
+ ያዘáˆáŠ‘
+ Google Play አገáˆáŒáˆŽá‰¶á‰½áŠ• ካላዘመኑ በስተቀሠድረስ %1$s አá‹áˆ°áˆ«áˆá¢
+ Google Play አገáˆáŒáˆŽá‰¶á‰½áŠ• ያዘáˆáŠ‘
+ %1$s ያለ Google Play አገáˆáŒáˆŽá‰¶á‰½ አá‹áˆ°áˆ«áˆá£ እáŠáˆ± á‹°áŒáˆž በአáˆáŠ‘ ጊዜ በመዘመን ላዠናቸá‹á¢
+ አዲስ የGoogle Play አገáˆáŒáˆŽá‰¶á‰½ ስሪት ያስáˆáˆáŒ‹áˆá¢ በቅáˆá‰¡ እራሱን ያዘáˆáŠ“áˆá¢
+ ስáˆáŠ áˆ‹á‹ áŠáˆá‰µ
+ áŒá‰£
+ በGoogle á‹áŒá‰¡
+ "ቅዳ"
+ "አገናአወደ ቅንጥብ ሰሌዳ ተቀድቷáˆ"
+ ስህተት
+ "የላቀ"
+ ተቆáˆá‰‹á‹ áˆáŠ“áˆŒáŠ• አሳá‹
+ "አገናአቅዳ"
+ "በአሳሽ á‹áˆµáŒ¥ áŠáˆá‰µ"
+ "አገናአአጋራ"
+ የንáŒáŒáˆ አዶ
+ ትáˆ
+ AM ወá‹áˆ PM á‹áˆáˆ¨áŒ¡
+ %1$s ሰዓታት
+ ሰዓትን á‹áˆáˆ¨áŒ¡
+ %1$s ሰዓት
+ ደቂቃዎችን á‹áˆáˆ¨áŒ¡
+ %1$s ደቂቃዎች
+ ጥዋት
+ ለጊዜ áŒá‰¤á‰± ወደ የሰዓት áˆáŠá‰³ ቀá‹áˆá¢
+ ሰዓት
+ ደቂቃ
+ ከሰዓት
+ ጊዜ áˆáˆ¨áŒ¥
+ ለጊዜ áŒá‰¤á‰± ወደ የጽሑá áŒá‰¤á‰µ áˆáŠá‰³ ቀá‹áˆá¢
+ አዲስ ማሳወቂያ
+ %1$sን አስወáŒá‹µ
+ ከ%1$d በላዠአዲስ ማሳወቂያዎች
+ ወደ የሚቀጥለዠወሠቀá‹áˆ
+ ወደ ቀዳሚዠወሠቀá‹áˆ
+ የመጀመሪያ ቀን áˆáˆáŒ«á¦ %1$s – የማብቂያ ቀን áˆáˆáŒ«á¦ %2$s
+ የአáˆáŠ‘ áˆáˆáŒ«á¦ %1$s
+ áˆáŠ•áˆ
+ á‹á‰…áˆ
+ እሺ
+ %1$s
+ ቀን á‹áˆáˆ¨áŒ¡
+ የተመረጠዠቀን
+ የቀኖች á‹“áˆá‹µá¦ %1$s
+ የማብቂያ ቀን %1$s
+ áˆáŠ á‹«áˆáˆ†áŠ á‰…áˆáŒ¸á‰µ
+ áˆáˆ³áˆŒá¦ %1$s
+ %1$s ን á‹áŒ ቀሙ
+ áˆáŠ á‹«áˆáŠ¾áŠ áŠáˆáˆá¢
+ ወደ የአáˆáŠ‘ ዓመት %1$d አስስ
+ ወደ ዓመት %1$d አሰስ
+ ከáŠáˆáˆ á‹áŒá¦ %1$s
+ መጀመሪያ ቀን – %1$s
+ %1$s – መጨረሻ ቀን
+ %1$s – %2$s
+ áŠáˆáˆ á‹áˆáˆ¨áŒ¡
+ የመጀመሪያ ቀን – የመጨረሻ ቀን
+ አስቀáˆáŒ¥
+ የመጀመሪያ ቀን %1$s
+ ቀን
+ የማብቂያ ቀን
+ መጀመሪያ ቀን
+ ቀ
+ á‹°
+ á‹“
+ ዛሬ %1$s
+ ወደ የቀን መá‰áŒ ሪያ áŒá‰¤á‰µ áˆáŠá‰³ ቀá‹áˆ
+ ወደ የቀን መá‰áŒ ሪያ እá‹á‰³ ለመቀየሠመታ ያድáˆáŒ‰
+ ወደ ጽáˆá áŒá‰¤á‰µ áˆáŠá‰³ ቀá‹áˆ
+ ወደ የዓመት እá‹á‰³ ለመቀየሠመታ ያድáˆáŒ‰
+ á‹á‰…áˆ
+ እሺ
+ "አáˆá‰°á‹˜áŒ‹áŒ€áˆ"
+ የá‹áˆˆá ቃሠአሳá‹
+ "«%1$s» ወደ የቅንጥብ ሰሌዳ ተቀድቷáˆá¢"
+ "áለጋ"
+ "999+"
+ "%1$sᣠ%2$s"
+ "ጠáቷáˆ"
+ "በáˆá‰·áˆ"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ar/values-ar.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ar/values-ar.xml
new file mode 100644
index 00000000..647acbfc
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ar/values-ar.xml
@@ -0,0 +1,144 @@
+
+
+
+ - %d إشعار جديد
+ - إشعار جديد ÙˆØ§ØØ¯ (%d)
+ - إشعاران جديدان (%d)
+ - %d إشعارات جديدة
+ - %d إشعارًا جديدًا
+ - %d إشعار جديد
+
+ "التوجه إلى المنزل"
+ "التنقل إلى أعلى"
+ "خيارات أكثر"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "إيقاÙ"
+ "Ù…ÙØ¹Ù‘لة"
+ "Alt+"
+ "Ctrl+"
+ "ØØ°Ù"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "ÙØ¶Ø§Ø¡"
+ "Sym+"
+ "القائمة+"
+ "Ø¨ØØ«â€¦"
+ "Ù…ØÙˆ طلب Ø§Ù„Ø¨ØØ«"
+ "طلب Ø¨ØØ«"
+ "Ø§Ù„Ø¨ØØ«"
+ "إرسال طلب Ø§Ù„Ø¨ØØ«"
+ "Ø¨ØØ« صوتي"
+ "مشاركة مع"
+ "مشاركة مع %s"
+ "تصغير"
+ تصغير البطاقة السÙلية
+ توسيع البطاقة السÙلية
+ توسيع البطاقة السÙلية
+ تم النقر مرّتين على مقبض Ø§Ù„Ø³ØØ¨.
+ مقبض Ø§Ù„Ø³ØØ¨
+ "ردّ"
+ "Ùيديو"
+ "Ø±ÙØ¶"
+ "قطع الاتصال"
+ "مكالمة واردة"
+ "مكالمة جارية"
+ "يتم ÙØØµ المكالمة الواردة"
+ تمّ إدخال %1$d ØØ±Ù من إجمالي %2$d.
+ تجاوز عدد Ø§Ù„Ø£ØØ±Ù Ø§Ù„Ù…Ø³Ù…ÙˆØ Ø¨Ù‡ %1$d من %2$d.
+ Ù…ØÙˆ النص
+ ØªÙØ¹ÙŠÙ„
+ â€Ù„Ù† يعمل %1$s ما لم يتم ØªÙØ¹ÙŠÙ„ خدمات Google Play.
+ â€ØªÙعيل خدمات Google Play
+ تثبيت
+ â€Ù„Ù† يتم تشغيل %1$s بدون خدمات Google PlayØŒ والتي لا ØªØªÙˆÙØ± على جهازك.
+ â€Ø§Ù„ØØµÙˆÙ„ على خدمات Google Play
+ â€Ù…دى توÙّر خدمات Google Play
+ â€Ø®Ø·Ø£ ÙÙŠ خدمات Google Play
+ â€Ù„دى %1$s مشكلة ÙÙŠ خدمات Google Play. ÙŠÙØ±Ø¬Ù‰ إعادة Ø§Ù„Ù…ØØ§ÙˆÙ„Ø©.
+ â€Ù„Ù† يتم تشغيل %1$s بدون خدمات Google Play التي لا ÙŠÙˆÙØ±Ù‡Ø§ جهازك.
+ ØªØØ¯ÙŠØ«
+ â€Ù„Ù† يتم تشغيل %1$s ما لم يتم ØªØØ¯ÙŠØ« خدمات Google Play.
+ â€ØªØØ¯ÙŠØ« خدمات Google Play
+ â€Ù„Ù† يتم تشغيل %1$s بدون خدمات Google PlayØŒ والتي يتم ØªØØ¯ÙŠØ«Ù‡Ø§ ØØ§Ù„يًا.
+ â€ÙŠØ¬Ø¨ ØªÙˆÙØ± إصدار جديد من خدمات Google Play. سيتم ØªØØ¯ÙŠØ«Ù‡Ø§ تلقائيًا قريبًا.
+ ÙØªØ على الهاتÙ
+ تسجل الدخول
+ â€ØªØ³Ø¬ÙŠÙ„ الدخول عبر Google
+ "نسخ"
+ "تم نسخ الرابط إلى Ø§Ù„ØØ§Ùظة."
+ خطأ
+ "إعدادات متقدمة"
+ عرض القائمة المنسدلة
+ "نسخ الرابط"
+ "ÙØªØ ÙÙŠ Ø§Ù„Ù…ØªØµÙØ"
+ "مشاركة الرابط"
+ رمز مربع الØÙˆØ§Ø±
+ علامة تبويب
+ ÙŠÙØ±Ø¬Ù‰ اختيار صباØÙ‹Ø§ أو مساءً.
+ %1$s ساعة
+ ØªØØ¯ÙŠØ¯ الساعة
+ الساعة %1$s
+ ØªØØ¯ÙŠØ¯ الدقائق
+ %1$s دقيقة
+ صباØÙ‹Ø§
+ ÙŠÙØ±Ø¬Ù‰ التبديل إلى وضع الساعة لإدخال الوقت.
+ الساعة
+ دقيقة
+ مساءً
+ اختيار الوقت
+ ÙŠÙØ±Ø¬Ù‰ التبديل إلى وضع إدخال النص لإدخال الوقت.
+ إشعار جديد
+ إزالة %1$s
+ يبلغ عدد الإشعارات الجديدة أكثر من %1$d.
+ التغيير إلى الشهر التالي
+ التغيير إلى الشهر السابق
+ اختيار تاريخ البدء: %1$s – اختيار تاريخ الانتهاء: %2$s
+ الاختيار Ø§Ù„ØØ§Ù„ÙŠ: %1$s
+ بلا
+ إلغاء
+ ØØ³Ù†Ù‹Ø§
+ %1$s
+ ÙŠÙØ±Ø¬Ù‰ اختيار تاريخ.
+ التاريخ Ø§Ù„Ù…ØØ¯Ù‘َد
+ عمود الأيام: %1$s
+ تاريخ الانتهاء: %1$s
+ التنسيق غير صالØ
+ مثال: %1$s
+ استخدام: %1$s
+ النطاق غير صالØ
+ الانتقال إلى السنة Ø§Ù„ØØ§Ù„ية %1$d
+ التنقل إلى العام %1$d
+ خارج النطاق: %1$s
+ تاريخ البدء – %1$s
+ %1$s – تاريخ الانتهاء
+ %1$s – %2$s
+ ÙŠÙØ±Ø¬Ù‰ اختيار نطاق زمني.
+ تاريخ البدء - تاريخ الانتهاء
+ ØÙظ
+ تاريخ البدء: %1$s
+ التاريخ
+ تاريخ الانتهاء
+ تاريخ البدء
+ ÙŠ
+ Ø´
+ س
+ اليوم %1$s
+ التبديل إلى وضع \"الإدخال ÙÙŠ التقويم\"
+ يمكنك النقر للتبديل إلى عرض \"تقويم Google\".
+ التبديل إلى وضع \"إدخال النص\"
+ يمكنك النقر للتبديل إلى عرض السنة.
+ إلغاء
+ ØØ³Ù†Ù‹Ø§
+ "لم يتمّ ØªØØ¯ÙŠØ¯ قيمة."
+ عرض كلمة المرور
+ "تم نسخ \"%1$s\" إلى Ø§Ù„ØØ§Ùظة."
+ "Ø§Ù„Ø¨ØØ«"
+ "999+"
+ "%1$s، %2$s"
+ "إيقاÙ"
+ "Ù…ÙØ¹Ù‘لة"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-as/values-as.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-as/values-as.xml
new file mode 100644
index 00000000..53ffe2a3
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-as/values-as.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d new notification
+ - %d new notifications
+
+ "গৃহ পৃষà§à¦ ালৈ যাওক"
+ "ওপৰলৈ যাওক"
+ "অধিক বিকলà§à¦ª"
+ "সমà§à¦ªà¦¨à§à¦¨ হ’ল"
+ "আটাইবোৰ চাওক"
+ "কোনো à¦à¦ªà§ বাছনি কৰক"
+ "অফ"
+ "অন"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "সনà§à¦§à¦¾à¦¨ কৰক…"
+ "সনà§à¦§à¦¾à¦¨ কৰা পà§à§°à¦¶à§à¦¨ মচক"
+ "সনà§à¦§à¦¾à¦¨ কৰা পà§à§°à¦¶à§à¦¨"
+ "সনà§à¦§à¦¾à¦¨ কৰক"
+ "পà§à§°à¦¶à§à¦¨ দাখিল কৰক"
+ "কণà§à¦ ধà§à¦¬à¦¨à¦¿à§° দà§à¦¬à¦¾à§°à¦¾ সনà§à¦§à¦¾à¦¨"
+ "ইয়াৰ জৰিয়তে শà§à¦¬à§‡à¦¯à¦¼à¦¾à§° কৰক"
+ "%sà§° জৰিয়তে শà§à¦¬à§‡à¦¯à¦¼à¦¾à§° কৰক"
+ "সংকোচন কৰক"
+ Collapse the bottom sheet
+ Expand the bottom sheet
+ Expand halfway
+ Drag handle double-tapped
+ Drag handle
+ "উতà§à¦¤à§° দিয়ক"
+ "à¦à¦¿à¦¡à¦¿à¦…’"
+ "পà§à§°à¦¤à§à¦¯à¦¾à¦–à§à¦¯à¦¾à¦¨ কৰক"
+ "কল কাটি দিয়ক"
+ "অনà§à¦¤à§°à§à¦—ামী কল"
+ "চলি থকা কল"
+ "à¦à¦Ÿà¦¾ অনà§à¦¤à§°à§à¦—ামী কলৰ পৰীকà§à¦·à¦¾ কৰি থকা হৈছে"
+ %2$dটাৰ à¦à¦¿à¦¤à§°à¦¤ %1$dটা বৰà§à¦£ লিখা হৈছে
+ %2$dটাৰ à¦à¦¿à¦¤à§°à¦¤ %1$dটা বৰà§à¦£à§° সীমা অতিকà§à§°à¦® কৰিছে
+ Clear text
+ সকà§à¦·à¦® কৰক
+ আপà§à¦¨à¦¿ Google Play সেৱাবোৰ সকà§à¦·à¦® নকৰালৈকে %1$sঠকাম নকৰিব।
+ Google পà§à¦²à§‡ সেৱাসকà§à¦·à¦® কৰক
+ ইনষà§à¦Ÿà¦² কৰক
+ %1$s Google পà§à¦²à§‡ সেৱাৰ অবিহনে নচলে, যিটো আপোনাৰ ডিà¦à¦¾à¦‡à¦šà¦¤ নাই।
+ Google পà§à¦²à§‡ সেৱালাঠকৰক
+ Google পà§à¦²à§‡ সেৱাসমূহৰ উপলবà§à¦§à¦¤à¦¾
+ Google Playà§° সেৱা সমà§à¦ªà§°à§à¦•ীয় আসোà¦à§±à¦¾à¦¹
+ Google পà§à¦²à§‡ সেৱাত %1$s ত সমসà§à¦¯à¦¾ হৈ আছে। আকৌ চেষà§à¦Ÿà¦¾ কৰক।
+ %1$s Google পà§à¦²à§‡ সেৱাৰ অবিহনে নচলে, যিবোৰ আপোনাৰ ডিà¦à¦¾à¦‡à¦šà¦¤ চলিব নোৱাৰে।
+ আপডে’ট কৰক
+ আপà§à¦¨à¦¿ Google Play সেৱাবোৰ আপডে’ট নকৰালৈকে %1$s নচলিব।
+ Google Play সেৱা আপডে’ট কৰক
+ বৰà§à¦¤à¦®à¦¾à¦¨ আপডে’ট হৈ থকা Google Play সেৱাসমূহৰ অবিহনে %1$s নচলিব৷
+ Google Play সেৱাসমূহৰ নতà§à¦¨ সংসà§à¦•ৰণৰ পà§à§°à§Ÿà§‹à¦œà¦¨à§· à¦à¦‡à¦Ÿà§‹ শীঘà§à§°à§‡à¦‡ নিজে-নিজে আপডে’ট হ’ব৷
+ ফ\'নত খোলক
+ ছাইন ইন কৰক
+ Googleৰ জৰিয়তে ছাইন ইন কৰক
+ "পà§à§°à¦¤à¦¿à¦²à¦¿à¦ªà¦¿ কৰক"
+ "লিংক কà§à¦²à¦¿à¦ªà¦¬â€™à§°à§à¦¡à¦¤ পà§à§°à¦¤à¦¿à¦²à¦¿à¦ªà¦¿ কৰা হ’ল"
+ Error
+ "উনà§à¦¨à¦¤"
+ Show dropdown menu
+ "লিংক পà§à§°à¦¤à¦¿à¦²à¦¿à¦ªà¦¿ কৰক"
+ "বà§à§°à¦¾à¦‰à¦œà¦¾à§°à¦¤ খোলক"
+ "লিংক শà§à¦¬à§‡à¦¯à¦¼à¦¾à§° কৰক"
+ Dialog Icon
+ Tab
+ Select AM or PM
+ %1$s hours
+ Select hour
+ %1$s o\'clock
+ মিনিট বাছনি কৰক
+ %1$s minutes
+ AM
+ সময়ৰ ইনপà§à¦Ÿà§° বাবে ঘড়ী ম\'ডলৈ যাওক।
+ Hour
+ Minute
+ PM
+ Select time
+ সময়ৰ ইনপà§à¦Ÿà§° বাবে পাঠৰ ইনপà§à¦Ÿ ম\'ডলৈ যাওক।
+ New notification
+ %1$sক আà¦à¦¤à§°à¦¾à¦“ক
+ More than %1$d new notifications
+ Change to next month
+ Change to previous month
+ Start date selection: %1$s – End date selection: %2$s
+ Current selection: %1$s
+ none
+ Cancel
+ OK
+ %1$s
+ Select Date
+ Selected date
+ Column of days: %1$s
+ End date %1$s
+ Invalid format.
+ Example: %1$s
+ Use: %1$s
+ Invalid range.
+ Navigate to current year %1$d
+ Navigate to year %1$d
+ Out of range: %1$s
+ Start date – %1$s
+ %1$s – End date
+ %1$s – %2$s
+ Select Range
+ Start date – End date
+ Save
+ Start date %1$s
+ Date
+ End date
+ Start date
+ d
+ m
+ y
+ Today %1$s
+ Switch to calendar input mode
+ Tap to switch to Calendar view
+ Switch to text input mode
+ Tap to switch to year view
+ Cancel
+ OK
+ "ছেট কৰা হোৱা নাই"
+ পাছৱৰà§à¦¡ দেখà§à§±à¦¾à¦“ক
+ "\"%1$s\" কà§à¦²à¦¿à¦ªà¦¬â€™à§°à§à¦¡à¦¤ পà§à§°à¦¤à¦¿à¦²à¦¿à¦ªà¦¿ কৰা হ’ল"
+ "সনà§à¦§à¦¾à¦¨"
+ "৯৯৯+"
+ "%1$s, %2$s"
+ "অফ অৱসà§à¦¥à¦¾à¦¤ আছে"
+ "অন কৰক"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-az/values-az.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-az/values-az.xml
new file mode 100644
index 00000000..3744fdf3
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-az/values-az.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d yeni bildiriÅŸ
+ - %d yeni bildiriÅŸ
+
+ "Æsas sÉ™hifÉ™yÉ™ keçin"
+ "Yuxarı keçin"
+ "Digər seçimlər"
+ "Hazırdır"
+ "Hamısına baxın"
+ "Tətbiq seçin"
+ "DEAKTİV"
+ "AKTİV"
+ "Alt+"
+ "Ctrl+"
+ "silin"
+ "daxil olun"
+ "Funksiya+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menyu+"
+ "Axtarış..."
+ "SorÄŸunu silin"
+ "Axtarış sorğusu"
+ "Axtarın"
+ "Sorğunu göndərin"
+ "Səsli axtarış"
+ "Paylaşın"
+ "%s ilə paylaşın"
+ "Yığcamlaşdırın"
+ Aşağıdakı vərəqi yığcamlaşdırın
+ Aşağıdakı vərəqi genişləndirin
+ Tam genişləndirin
+ Dəstəyə iki dəfə toxunun
+ Dəstək
+ "Cavab verin"
+ "Video"
+ "İmtina edin"
+ "Dəstəyi asın"
+ "Gələn zəng"
+ "Davam edən zəng"
+ "Gələn zəng göstərilir"
+ %1$d/%2$d simvol daxil edilib
+ Simvol limiti %1$d/%2$d dəyərini keçdi
+ Mətni silin
+ Aktiv edin
+ %1$s Google Play xidmətlərini aktiv edənə kimi işləməyəcək.
+ Google Play xidmətlərini aktiv edin
+ Quraşdırın
+ %1$s cihazınızda mövcud olmayan Google Play xidmətləri olmadan çalışmayacaq.
+ Google Play xidmətlərini əldə edin
+ Google Play xidmətlərinin əlçatanlığı
+ Google Play xidmətləri xətası
+ %1$s tətbiqi ilə Google Play xidmətləri arasında problem var. Daha sonra yenidən cəhd edin.
+ Cihazınız tərəfindən dəstəklənməyən Google Play xidmətləri olmadan %1$s tətbiqi işləməyəcək.
+ Güncəlləyin
+ %1$s Google Play xidmətləri yeniləmə halda çalışmaz.
+ Google Play xidmətlərini güncəlləşdirin
+ %1$s hal-hazırda güncəllənən Google Play xidmətləri olmadan çalışmayacaq.
+ Google Play xidmətlərinin yeni versiyası lazımdır. Qısa müddətə özünü yeniləyəcək.
+ Telefonda açın
+ Daxil olun
+ Google ilÉ™ daxil olun
+ "Kopyalayın"
+ "Link buferə kopyalandı"
+ Xəta
+ "ÆlavÉ™"
+ Açılan menyunu göstərin
+ "Linki kopyalayın"
+ "Brauzerdə açın"
+ "Linki paylaşın"
+ Dialoq ikonası
+ Tab
+ Gündüz və ya axşam seçin
+ %1$s saat
+ Saatı seçin
+ Saat %1$s
+ Dəqiqə seçin
+ %1$s dəqiqə
+ AM
+ Zamanı daxil etmək üçün saat rejiminə keçin
+ Saat
+ Dəqiqə
+ GÆ
+ Vaxt seçin
+ Zamanı daxil etmək üçün mətnlə daxiletmə rejiminə keçin
+ Yeni bildiriÅŸ
+ %1$s silin
+ Minimum %1$d yeni bildiriÅŸ
+ Növbəti aya dəyişin
+ ÆvvÉ™lki aya dÉ™yiÅŸin
+ Başlama tarixi seçimi: %1$s – Bitmə tarixi seçimi: %2$s
+ Cari seçim: %1$s
+ yoxdur
+ Ləğv edin
+ OK
+ %1$s
+ Tarix seçin
+ Seçilmiş tarix
+ Gün sütunu: %1$s
+ BitmÉ™ tarixi: %1$s
+ Yanlış format.
+ Nümunə: %1$s
+ %1$s istifadÉ™ edin
+ Yanlış diapazon.
+ Cari ilə keçin: %1$d
+ %1$d ilinə keçin
+ ÆhatÉ™ dairÉ™sindÉ™n kÉ™nar: %1$s
+ Başlama tarixi – %1$s
+ %1$s – Bitmə tarixi
+ %1$s: %2$s
+ Aralıq seçin
+ BaÅŸlama tarixi - BitmÉ™ tarixi
+ Saxlayın
+ BaÅŸlama tarixi: %1$s
+ Tarix
+ BitmÉ™ tarixi
+ BaÅŸlama tarixi
+ gün
+ ay
+ il
+ Bugün: %1$s
+ Təqvim daxiletmə rejiminə keçin
+ Təqvim görünüşünə keçirmək üçün toxunun
+ Mətn daxiletmə rejiminə keçin
+ İl görünüşünə keçirmək üçün toxunun
+ Ləğv edin
+ OK
+ "Ayarlanmayıb"
+ Parolu göstərin
+ "\"%1$s\" buferə kopyalandı."
+ "Axtarın"
+ "999+"
+ "%1$s, %2$s"
+ "DEAKTİV"
+ "AKTİV"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-b+es+419/values-b+es+419.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-b+es+419/values-b+es+419.xml
new file mode 100644
index 00000000..f45db638
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-b+es+419/values-b+es+419.xml
@@ -0,0 +1,75 @@
+
+
+
+ - %d notificación nueva
+ - %d notificaciones nuevas
+
+ Contraer la hoja inferior
+ Expandir la hoja inferior
+ Expandir hasta la mitad
+ El control de arrastre se presionó dos veces
+ Controlador de arrastre
+ Caracteres ingresados: %1$d de %2$d
+ Se excedió en %1$d el lÃmite de caracteres de %2$d
+ Borrar texto
+ Error
+ Mostrar menú desplegable
+ Ãcono de diálogo
+ Pestaña
+ Selecciona a.m. o p.m.
+ %1$s horas
+ Seleccione la hora.
+ %1$s en punto
+ Seleccionar minutos
+ %1$s minutos
+ a.m.
+ Cambia al modo de reloj para ingresar la hora.
+ Hora
+ Minuto
+ p.m.
+ Seleccionar la hora
+ Cambia al modo de entrada de texto para ingresar la hora.
+ Notificación nueva
+ Quitar %1$s
+ Más de %1$d notificaciones nuevas
+ Cambiar al mes siguiente
+ Cambiar al mes anterior
+ Selección de fecha de inicio: %1$s – Selección de fecha de finalización: %2$s
+ Selección actual: %1$s
+ nada
+ Cancelar
+ Aceptar
+ %1$s
+ Seleccionar fecha
+ Fecha seleccionada
+ Columna de dÃas: %1$s
+ Fecha de finalización: %1$s
+ Formato no válido
+ Ejemplo: %1$s
+ Usar: %1$s
+ El rango no es válido.
+ Navegar al año actual (%1$d)
+ Navegar al año %1$d
+ Fuera de rango: %1$s
+ Fecha de inicio - %1$s
+ %1$s - fecha de finalización
+ %1$s-%2$s
+ Selecciona un perÃodo
+ Fecha de inicio - fecha de finalización
+ Guardar
+ Fecha de inicio: %1$s
+ Fecha
+ Fecha de finalización
+ Fecha de inicio
+ d
+ m
+ a
+ Hoy, %1$s
+ Cambiar al modo de entrada de calendario
+ Presiona para cambiar a la vista de Calendario
+ Cambiar al modo de entrada de texto
+ Presiona para cambiar a la vista de año
+ Cancelar
+ Aceptar
+ Mostrar contraseña
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml
new file mode 100644
index 00000000..75f36160
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml
@@ -0,0 +1,141 @@
+
+
+
+ - %d novo obaveštenje
+ - %d nova obaveštenja
+ - %d novih obaveštenja
+
+ "Idite na poÄetnu"
+ "Idite nagore"
+ "Još opcija"
+ "Gotovo"
+ "Prikaži sve"
+ "Izaberite aplikaciju"
+ "ISKLJUÄŒENO"
+ "UKLJUÄŒENO"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "taster za razmak"
+ "Sym+"
+ "Menu+"
+ "Pretražite…"
+ "Obrišite upit"
+ "Pretražite upit"
+ "Pretražite"
+ "Pošaljite upit"
+ "Glasovna pretraga"
+ "Delite pomoću"
+ "Delite pomoću aplikacije %s"
+ "Skupi"
+ Skupite donju tabelu
+ Proširite donju tabelu
+ Proširite do pola
+ Identifikator za prevlaÄenje je dvaput dodirnut
+ RuÄica za prevlaÄenje
+ "Odgovori"
+ "Video"
+ "Odbij"
+ "Prekini vezu"
+ "Dolazni poziv"
+ "Poziv je u toku"
+ "Proverava se dolazni poziv"
+ Uneti znakovi: %1$d od %2$d
+ PrekoraÄeno je ograniÄenje broja znakova: %1$d od %2$d
+ Obriši tekst
+ OmogucÌi
+ %1$s necÌe funkcionisati ako ne omogucÌite Google Play usluge.
+ OmogucÌite Google Play usluge
+ Instaliraj
+ %1$s ne može da se pokrene bez Google Play usluga, koje nisu instalirane na uređaju.
+ Preuzmite Google Play usluge
+ Dostupnost Google Play usluga
+ Greška Google Play usluga
+ %1$s ima problema sa Google Play uslugama. Probajte ponovo.
+ %1$s ne može da se pokrene bez Google Play usluga, koje uređaj ne podržava.
+ Ažuriraj
+ %1$s ne može da se pokrene ako ne ažurirate Google Play usluge.
+ Ažurirajte Google Play usluge
+ %1$s ne može da se pokrene bez Google Play usluga, koje se trenutno ažuriraju.
+ Potrebna je nova verzija Google Play usluga. Uskoro cÌe se ažurirati.
+ Otvori na telefonu
+ Prijavi me
+ Prijavi me na Google
+ "Kopiraj"
+ "Link je kopiran u privremenu memoriju"
+ Greška
+ "Napredno"
+ Prikaži padajucÌi meni
+ "Kopiraj link"
+ "Otvori u pregledaÄu"
+ "Deli link"
+ Ikona dijaloga
+ Kartica
+ Izaberite pre podne ili po podne
+ %1$s s
+ Izaberite sat
+ %1$s s
+ Izaberite minute
+ %1$s min
+ AM
+ Pređite u režim sata radi unosa vremena.
+ Sat
+ Minut
+ PM
+ Izaberite vreme
+ Pređite u režim unosa teksta radi unosa vremena.
+ Novo obaveštenje
+ Uklonite %1$s
+ Novih obaveštenja: više od %1$d
+ PreÄ‘ite na sledecÌi mesec
+ Pređite na prethodni mesec
+ Izbor datuma poÄetka: %1$s – Izbor datuma zavrÅ¡etka: %2$s
+ Aktuelni izbor: %1$s
+ ništa
+ Otkaži
+ Potvrdi
+ %1$s
+ Izaberite datum
+ Izabrani datum
+ Kolona sa danima: %1$s
+ Datum završetka %1$s
+ Format je nevažecÌi.
+ Primer: %1$s
+ Koristite: %1$s
+ NevažecÌi period.
+ Idite na aktuelnu godinu %1$d
+ Idite na godinu %1$d
+ Izvan perioda: %1$s
+ Datum poÄetka – %1$s
+ %1$s – Datum završetka
+ %1$s–%2$s
+ Izaberite period
+ Datum poÄetka – Datum zavrÅ¡etka
+ SaÄuvaj
+ Datum poÄetka %1$s
+ Datum
+ Datum završetka
+ Datum poÄetka
+ d
+ m
+ g
+ Danas %1$s
+ Pređite na režim unosa u Kalendaru
+ Dodirnite da biste prešli na prikaz kalendara
+ Pređite na režim unosa teksta
+ Dodirnite da biste prešli na prikaz godine
+ Otkaži
+ Potvrdi
+ "Nije podešeno"
+ Prikaži lozinku
+ "Rezime „%1$s“ je kopiran u privremenu memoriju."
+ "Pretražite"
+ "999+"
+ "%1$s, %2$s"
+ "ISKLJUÄŒENO"
+ "UKLJUÄŒENO"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-be/values-be.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-be/values-be.xml
new file mode 100644
index 00000000..43d392b7
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-be/values-be.xml
@@ -0,0 +1,142 @@
+
+
+
+ - %d новае апавÑшчÑнне
+ - %dÂ Ð½Ð¾Ð²Ñ‹Ñ Ð°Ð¿Ð°Ð²ÑшчÑнні
+ - %d новых апавÑшчÑннÑÑž
+ - %d новага апавÑшчÑннÑ
+
+ "ПерайÑці на галоўную Ñтаронку"
+ "ПерайÑці ўверх"
+ "Ð”Ð°Ð´Ð°Ñ‚ÐºÐ¾Ð²Ñ‹Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ‹"
+ "Гатова"
+ "Паказаць уÑе"
+ "Выберыце праграму"
+ "ВЫКЛ."
+ "УКЛ."
+ "Alt +"
+ "Ctrl +"
+ "Delete"
+ "Enter"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "Прабел"
+ "Sym +"
+ "Меню +"
+ "Пошук…"
+ "Выдаліць запыт"
+ "Пошукавы запыт"
+ "Пошук"
+ "Ðдправіць запыт"
+ "ГалаÑавы пошук"
+ "Ðбагуліць праз"
+ "Ðбагуліць праз праграму \"%s\""
+ "Згарнуць"
+ Згарнуць ніжні аркуш
+ Разгарнуць ніжні аркуш
+ Разгарнуць напалову
+ Маркер перацÑÐ³Ð²Ð°Ð½Ð½Ñ Ð½Ð°Ñ†Ñ–Ñнуты двойчы
+ Маркер перацÑгваннÑ
+ "Ðдказаць"
+ "ВідÑа"
+ "Ðдхіліць"
+ "ЗавÑршыць"
+ "Уваходны выклік"
+ "БÑгучы выклік"
+ "Фільтраванне ўваходнага выкліку"
+ Уведзена Ñімвалаў: %1$d з %2$d
+ Ðбмежаванне колькаÑці Ñімвалаў перавышана: %1$d з %2$d
+ ÐчыÑціць Ñ‚ÑкÑÑ‚
+ Уключыць
+ %1$s не будзе працаваць, пакуль вы не ўключыце Ñлужбы Google Play.
+ Уключыць Ñлужбы Google Play
+ УÑталÑваць
+ %1$s не будзе працаваць без Ñлужбаў Google Play, ÑÐºÑ–Ñ Ð°Ð´Ñутнічаюць на вашай прыладзе.
+ Ðтрымаць Ñлужбы Google Play
+ ДаÑтупнаÑць ÑÑрвіÑаў Google Play
+ Памылка Ñлужбаў Google Play
+ У праграмы %1$s узніклі праблемы Ñа Ñлужбамі Google Play. Паўтарыце Ñпробу.
+ %1$s не будзе працаваць без Ñлужбаў Google Play, ÑÐºÑ–Ñ Ð½Ðµ падтрымліваюцца вашай прыладай.
+ Ðбнавіць
+ %1$s не будзе працаваць, пакуль вы не абновіце Ñлужбы Google Play.
+ Ðбнаўленне Ñлужбаў Google Play
+ %1$s не будзе працаваць без Ñлужбаў Google Play, ÑÐºÑ–Ñ Ñž цÑперашні Ñ‡Ð°Ñ Ð°Ð±Ð½Ð°ÑžÐ»Ñюцца.
+ Патрабуецца Ð½Ð¾Ð²Ð°Ñ Ð²ÐµÑ€ÑÑ–Ñ Ñлужб Google Play. Яна абновіцца аўтаматычна Ñž бліжÑйшы чаÑ.
+ Ðдкрыць на Ñ‚Ñлефоне
+ УвайÑцi
+ УвайÑці праз Google
+ "Капіраваць"
+ "СпаÑылка Ñкапіравана Ñž буфер абмену"
+ Памылка
+ "ÐŸÐ°ÑˆÑ‹Ñ€Ð°Ð½Ñ‹Ñ Ð½Ð°Ð»Ð°Ð´Ñ‹"
+ Паказаць выпадное меню
+ "Скапіраваць ÑпаÑылку"
+ "Ðдкрыць у браўзеры"
+ "Ðбагуліць ÑпаÑылку"
+ Значок дыÑлогавага акна
+ Укладка
+ Выберыце AM (да паўднÑ) або PM (паÑÐ»Ñ Ð¿Ð°ÑžÐ´Ð½Ñ)
+ %1$s гадз
+ Выберыце гадзіну
+ %1$s гадз
+ Выберыце хвіліны
+ %1$s хв
+ AM
+ Пераключыцца на Ñ€Ñжым гадзінніка пры ўводзе чаÑу.
+ Гадзіна
+ Хвіліна
+ PM
+ Выберыце чаÑ
+ Пераключыцца на Ñ€Ñжым Ñ‚ÑкÑту пры ўводзе чаÑу.
+ Ðовае апавÑшчÑнне
+ Выдаліць %1$s
+ КолькаÑць новых апавÑшчÑннÑÑž перавыÑіла %1$d
+ ПерайÑці да наÑтупнага меÑÑца
+ ПерайÑці да папÑÑ€ÑднÑга меÑÑца
+ Ð’Ñ‹Ð±Ñ€Ð°Ð½Ð°Ñ Ð´Ð°Ñ‚Ð° пачатку: %1$s, Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð°Ñ Ð´Ð°Ñ‚Ð° заканчÑннÑ: %2$s
+ БÑгучае вылучÑнне: %1$s
+ не выбрана
+ СкаÑаваць
+ ОК
+ %1$s
+ Выберыце дату
+ Ð’Ñ‹Ð±Ñ€Ð°Ð½Ð°Ñ Ð´Ð°Ñ‚Ð°
+ Слупок дзён: %1$s
+ Дата заканчÑннÑ: %1$s
+ ÐÑправільны фармат.
+ Прыклад: %1$s
+ Ðеабходны фармат: %1$s
+ ÐÑправільны дыÑпазон.
+ ПерайÑці да бÑгучага года %1$d
+ ПерайÑці Ñž %1$d год
+ Па-за межамі дыÑпазону: %1$s
+ Дата пачатку – %1$s
+ %1$s – дата заканчÑннÑ
+ %1$s – %2$s
+ Выберыце дыÑпазон дат
+ Дата пачатку – дата заканчÑннÑ
+ Захаваць
+ Дата пачатку: %1$s
+ Дата
+ Дата заканчÑннÑ
+ Дата пачатку
+ д
+ м
+ г
+ Ð¡Ñ‘Ð½Ð½Ñ %1$s
+ Пераключыцца Ñž Ñ€Ñжым уводу \"КалÑндар\"
+ ÐаціÑніце, каб пераключыцца на праглÑд календара
+ Пераключыцца Ñž Ñ€Ñжым уводу \"ТÑкÑÑ‚\"
+ ÐаціÑніце, каб пераключыцца на аглÑд года
+ СкаÑаваць
+ ОК
+ "Ðе зададзена"
+ Паказаць пароль
+ "\"%1$s\": Ñкапіравана Ñž буфер абмену."
+ "Пошук"
+ "999+"
+ "%1$s, %2$s"
+ "ВЫКЛ."
+ "УКЛ."
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-bg/values-bg.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-bg/values-bg.xml
new file mode 100644
index 00000000..74462365
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-bg/values-bg.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d ново извеÑтие
+ - %d нови извеÑтиÑ
+
+ "Ðавигиране към Ð½Ð°Ñ‡Ð°Ð»Ð½Ð¸Ñ ÐµÐºÑ€Ð°Ð½"
+ "Ðавигиране нагоре"
+ "Още опции"
+ "Готово"
+ "Преглед на вÑички"
+ "Изберете приложение"
+ "ИЗКЛ."
+ "ВКЛ."
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "клавиша за интервал"
+ "Sym+"
+ "Menu+"
+ "ТърÑете…"
+ "ИзчиÑтване на заÑвката"
+ "ЗаÑвка за търÑене"
+ "ТърÑене"
+ "Изпращане на заÑвката"
+ "ГлаÑово търÑене"
+ "СподелÑне ÑÑŠÑ:"
+ "СподелÑне ÑÑŠÑ: %s"
+ "Свиване"
+ Свиване на Ð´Ð¾Ð»Ð½Ð¸Ñ Ð»Ð¸ÑÑ‚
+ Разгъване на Ð´Ð¾Ð»Ð½Ð¸Ñ Ð»Ð¸ÑÑ‚
+ Разгъване наполовина
+ Двукратно докоÑване на манипулатора за премеÑтване Ñ Ð¿Ð»ÑŠÐ·Ð³Ð°Ð½Ðµ
+ Манипулатор за премеÑтване Ñ Ð¿Ð»ÑŠÐ·Ð³Ð°Ð½Ðµ
+ "Отговор"
+ "Видеообаждане"
+ "ОтхвърлÑне"
+ "ЗатварÑне"
+ "ВходÑщо обаждане"
+ "Текущо обаждане"
+ "Преглежда Ñе входÑщо обаждане"
+ Въведени знаци: %1$d от %2$d
+ МакÑималниÑÑ‚ брой знаци е надхвърлен Ñ(ÑŠÑ) %1$d от %2$d
+ ИзчиÑтване на текÑта
+ Ðктивиране
+ %1$s нÑма да работи, оÑвен ако не активирате уÑлугите за Google Play.
+ Ðктивиране на уÑлугите за Google Play
+ ИнÑталиране
+ %1$s нÑма да Ñе изпълнÑва, тъй като уÑлугите за Google Play не Ñа инÑталирани на уÑтройÑтвото ви.
+ ИзтеглÑне на уÑлугите за Google Play
+ ÐаличноÑÑ‚ на уÑлугите за Google Play
+ Грешка в уÑлугите за Google Play
+ %1$s има проблеми Ñ ÑƒÑлугите за Google Play. МолÑ, опитайте отново.
+ %1$s нÑма да Ñе изпълнÑва, тъй като уÑлугите за Google Play не Ñе поддържат от уÑтройÑтвото ви.
+ Ðктуализиране
+ %1$s нÑма да Ñе изпълнÑва, оÑвен ако не актуализирате уÑлугите за Google Play.
+ Ðктуализиране на уÑлугите за Google Play
+ %1$s нÑма да Ñе изпълнÑва без уÑлугите за Google Play. ПонаÑтоÑщем те Ñе актуализират.
+ Ðеобходима е нова верÑÐ¸Ñ Ð½Ð° уÑлугите за Google Play. Скоро Ñ‚Ñ Ñ‰Ðµ Ñе актуализира автоматично.
+ ОтварÑне на телефона
+ Вход
+ Вход Ñ Google
+ "Копиране"
+ "Връзката е копирана в буферната памет"
+ Грешка
+ "Разширени"
+ Показване на падащото меню
+ "Копиране на връзката"
+ "ОтварÑне в браузър"
+ "СподелÑне на връзката"
+ Икона за диалогов прозорец
+ Раздел
+ Изберете AM или PM
+ %1$s чаÑа
+ Изберете чаÑ
+ %1$s чаÑа
+ Избиране на минути
+ %1$s минути
+ AM
+ Превключете към режима за чаÑовник, за да въведете чаÑа.
+ ЧаÑ
+ Минута
+ PM
+ Избор на чаÑ
+ Превключете към режима за въвеждане на текÑÑ‚, за да въведете чаÑа.
+ Ðово извеÑтие
+ Премахване на %1$s
+ Повече от %1$d нови извеÑтиÑ
+ Преминаване към ÑÐ»ÐµÐ´Ð²Ð°Ñ‰Ð¸Ñ Ð¼ÐµÑец
+ Преминаване към Ð¿Ñ€ÐµÐ´Ð¸ÑˆÐ½Ð¸Ñ Ð¼ÐµÑец
+ Избиране на начална дата: %1$s – Избиране на крайна дата: %2$s
+ Текущ избор: %1$s
+ нÑма
+ Отказ
+ OK
+ %1$s
+ Избиране на дата
+ Избрана дата
+ Колона за дни: %1$s
+ Крайна дата: %1$s
+ Форматът е невалиден.
+ Пример: %1$s
+ Използвайте: %1$s
+ Ðевалиден диапазон.
+ Ðавигиране до текущата година %1$d
+ Ðавигиране до %1$d г.
+ Извън диапазона: %1$s
+ Ðачална дата – %1$s
+ %1$s – крайна дата
+ %1$s – %2$s
+ Избиране на период от време
+ Ðачална дата – крайна дата
+ Запазване
+ Ðачална дата: %1$s
+ Дата
+ Крайна дата
+ Ðачална дата
+ д
+ м
+ г
+ ДнеÑ – %1$s
+ Превключване към режим на въвеждане в календар
+ ДокоÑнете за превключване към календарен изглед
+ Превключване към режим за въвеждане на текÑÑ‚
+ ДокоÑнете за превключване към годишен изглед
+ Отказ
+ OK
+ "Ðе е зададено"
+ Показване на паролата
+ "Копирахте „%1$s“ в буферната памет."
+ "ТърÑене"
+ "999+"
+ "%1$s, %2$s"
+ "ИЗКЛ."
+ "ВКЛ."
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-bn/values-bn.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-bn/values-bn.xml
new file mode 100644
index 00000000..a5d555ce
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-bn/values-bn.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %dটি নতà§à¦¨ বিজà§à¦žà¦ªà§à¦¤à¦¿
+ - %dটি নতà§à¦¨ বিজà§à¦žà¦ªà§à¦¤à¦¿
+
+ "হোমে নেà¦à¦¿à¦—েট করà§à¦¨"
+ "উপরে নেà¦à¦¿à¦—েট করà§à¦¨"
+ "আরও বিকলà§à¦ª"
+ "হয়ে গেছে"
+ "সবগà§à¦²à¦¿ দেখà§à¦¨"
+ "à¦à¦•টি অà§à¦¯à¦¾à¦ª বেছে নিন"
+ "বনà§à¦§ আছে"
+ "চালৠকরà§à¦¨"
+ "Alt+"
+ "Ctrl+"
+ "মà§à¦›à§à¦¨"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "সারà§à¦š করà§à¦¨â€¦"
+ "কোয়েরি মà§à¦›à§‡ ফেলà§à¦¨"
+ "সারà§à¦š কোয়েরি"
+ "সারà§à¦š করà§à¦¨"
+ "কোয়েরি জমা দিন"
+ "à¦à¦¯à¦¼à§‡à¦¸ সারà§à¦š করà§à¦¨"
+ "শেয়ার করà§à¦¨"
+ "%s-à¦à¦° সাথে শেয়ার করà§à¦¨"
+ "সঙà§à¦•à§à¦šà¦¿à¦¤ করà§à¦¨"
+ সà§à¦•à§à¦°à¦¿à¦¨à§‡à¦° নিচে অà§à¦¯à¦¾à¦Ÿà¦¾à¦š করা শিট আড়াল করà§à¦¨
+ সà§à¦•à§à¦°à¦¿à¦¨à§‡à¦° নিচে অà§à¦¯à¦¾à¦Ÿà¦¾à¦š করা শিট বড় করà§à¦¨
+ অরà§à¦§à§‡à¦• পà§à¦°à¦¸à¦¾à¦°à¦¿à¦¤ করà§à¦¨
+ টেনে আনার হà§à¦¯à¦¾à¦¨à§à¦¡à§‡à¦²à§‡ ডবল টà§à¦¯à¦¾à¦ª করা হয়েছে
+ টেনে আনার হà§à¦¯à¦¾à¦¨à§à¦¡à§‡à¦²
+ "উতà§à¦¤à¦° দিন"
+ "à¦à¦¿à¦¡à¦¿à¦“"
+ "বাতিল করà§à¦¨"
+ "কল কেটে দিন"
+ "ইনকামিং কল"
+ "চালৠথাকা কল"
+ "ইনকামিং কল সà§à¦•à§à¦°à¦¿à¦¨à¦¿à¦‚ করা হচà§à¦›à§‡"
+ %2$dটির মধà§à¦¯à§‡ %1$dটি অকà§à¦·à¦° লেখা হয়েছে
+ অকà§à¦·à¦°à§‡à¦° সীমা %1$d à¦à¦° %2$d অতিকà§à¦°à¦® করেছে
+ টেকà§à¦¸à¦Ÿ মà§à¦›à§à¦¨
+ সকà§à¦·à¦® করà§à¦¨
+ আপনি Google Play পরিষেবা সকà§à¦·à¦® না করা পরà§à¦¯à¦¨à§à¦¤ %1$s কাজ করবে না।
+ Google Play পরিষেবা সকà§à¦·à¦® করà§à¦¨
+ ইনসà§à¦Ÿà¦² করà§à¦¨
+ Google Play পরিষেবা ছাড়া %1$s চলবে না, যা আপনার ডিà¦à¦¾à¦‡à¦¸à§‡ অনà§à¦ªà¦¸à§à¦¥à¦¿à¦¤à¥¤
+ Google Play পরিষেবা পান
+ Google Play পরিষেবার উপলà¦à§à¦¯à¦¤à¦¾
+ Google Play পরিষেবার তà§à¦°à§à¦Ÿà¦¿
+ Google Play পরিষেবাগà§à¦²à¦¿à¦° সাথে %1$s à¦à¦° সমসà§à¦¯à¦¾ হচà§à¦›à§‡à§· অনà§à¦—à§à¦°à¦¹ করে আবার চেষà§à¦Ÿà¦¾ করà§à¦¨à§·
+ Google Play পরিষেবা ছাড়া %1$s চলবে না, যেটি আপনার ডিà¦à¦¾à¦‡à¦¸à§‡ সমরà§à¦¥à¦¿à¦¤ নয়৷
+ আপডেট করà§à¦¨
+ আপনি Google Play পরিষেবা আপডেট না করা পরà§à¦¯à¦¨à§à¦¤ %1$s চলবে না।
+ Google Play পরিষেবা আপডেট করà§à¦¨
+ Google Play পরিষেবা ছাড়া %1$s চলবে না যা বরà§à¦¤à¦®à¦¾à¦¨à§‡ আপডেট হচà§à¦›à§‡à¥¤
+ Google Play পরিষেবার নতà§à¦¨ à¦à¦¾à¦°à§à¦¸à¦¨ পà§à¦°à¦¯à¦¼à§‹à¦œà¦¨à§· খà§à¦¬ শীঘà§à¦°à¦‡ à¦à¦Ÿà¦¾ নিজেই আপডেট হবে৷
+ ফোনে খà§à¦²à§à¦¨
+ সাইন-ইন করà§à¦¨
+ Google à¦à¦° মাধà§à¦¯à¦®à§‡ সাইন-ইন করà§à¦¨
+ "কপি করà§à¦¨"
+ "লিঙà§à¦• কà§à¦²à¦¿à¦ªà¦¬à§‹à¦°à§à¦¡à§‡ কপি করা হয়েছে"
+ সমসà§à¦¯à¦¾
+ "উনà§à¦¨à¦¤"
+ ডà§à¦°à¦ª-ডাউন মেনৠদেখà§à¦¨
+ "লিঙà§à¦• কপি করà§à¦¨"
+ "বà§à¦°à¦¾à¦‰à¦œà¦¾à¦°à§‡ খà§à¦²à§à¦¨"
+ "লিঙà§à¦• শেয়ার করà§à¦¨"
+ ডায়ালগ আইকন
+ টà§à¦¯à¦¾à¦¬
+ AM অথবা PM বেছে নিন
+ %1$s ঘণà§à¦Ÿà¦¾
+ ঘণà§à¦Ÿà¦¾ বেছে নিন
+ %1$sটা বাজে
+ মিনিট বেছে নিন
+ %1$s মিনিট
+ AM
+ সময় ইনপà§à¦Ÿ দেওয়ার জনà§à¦¯ ঘড়ি মোডে যান।
+ ঘণà§à¦Ÿà¦¾
+ মিনিট
+ PM
+ সময় বেছে নিন
+ সময় ইনপà§à¦Ÿ দেওয়ার জনà§à¦¯ পাঠà§à¦¯ ইনপà§à¦Ÿ মোডে যান।
+ নতà§à¦¨ বিজà§à¦žà¦ªà§à¦¤à¦¿
+ %1$s সরিয়ে দিন
+ %1$dটির বেশি নতà§à¦¨ বিজà§à¦žà¦ªà§à¦¤à¦¿
+ আগামী মাসে যান
+ আগের মাসে যান
+ চালৠহওয়ার তারিখ বাছà§à¦¨: %1$s – শেষ হওয়ার তারিখ বাছà§à¦¨: %2$s
+ বরà§à¦¤à¦®à¦¾à¦¨ বাছাই: %1$s
+ কোনওটিই নয়
+ বাতিল করà§à¦¨
+ ঠিক আছে
+ %1$s
+ তারিখ বেছে নিন
+ বেছে নেওয়া তারিখ
+ সপà§à¦¤à¦¾à¦¹à§‡à¦° দিনগà§à¦²à¦¿à¦° কলাম: %1$s
+ শেষ হওয়ার তারিখ %1$s
+ à¦à§à¦² ফরà§à¦®à§à¦¯à¦¾à¦Ÿà¥¤
+ উদাহরণ: %1$s
+ %1$s ফরà§à¦®à§à¦¯à¦¾à¦Ÿà§‡ লিখà§à¦¨
+ তারিখ সঠিক নয়।
+ বরà§à¦¤à¦®à¦¾à¦¨ বছর %1$d-ঠনেà¦à¦¿à¦—েট করà§à¦¨
+ নেà¦à¦¿à¦—েট করে %1$d সালে যান
+ নিরà§à¦¦à¦¿à¦·à§à¦Ÿ তারিখের বাইরে: %1$s
+ শà§à¦°à§à¦° তারিখ – %1$s
+ %1$s – সমাপà§à¦¤à¦¿à¦° তারিখ
+ %1$s – %2$s
+ রেঞà§à¦œ বেছে নিন
+ শà§à¦°à§à¦° তারিখ - সমাপà§à¦¤à¦¿à¦° তারিখ
+ সেঠকরà§à¦¨
+ শà§à¦°à§ হওয়ার তারিখ %1$s
+ তারিখ
+ সমাপà§à¦¤à¦¿à¦° তারিখ
+ শà§à¦°à§à¦° তারিখ
+ d
+ m
+ y
+ আজ %1$s
+ কà§à¦¯à¦¾à¦²à§‡à¦¨à§à¦¡à¦¾à¦° ইনপà§à¦Ÿ মোডে বদল করà§à¦¨
+ Calendar à¦à¦¿à¦‰à¦¤à§‡ পালà§à¦Ÿà¦¾à¦¤à§‡ টà§à¦¯à¦¾à¦ª করà§à¦¨
+ টেকà§à¦¸à¦Ÿ ইনপà§à¦Ÿ মোডে বদল করà§à¦¨
+ বারà§à¦·à¦¿à¦• à¦à¦¿à¦‰à¦¤à§‡ পালà§à¦Ÿà¦¾à¦¤à§‡ টà§à¦¯à¦¾à¦ª করà§à¦¨
+ বাতিল করà§à¦¨
+ ঠিক আছে
+ "সেট করা হয়নি"
+ পাসওয়ারà§à¦¡ দেখান
+ "\"%1$s\" কà§à¦²à¦¿à¦ªà¦¬à§‹à¦°à§à¦¡à§‡ লিঙà§à¦•টি কপি করা হয়েছে।"
+ "সারà§à¦š করà§à¦¨"
+ "৯৯৯+"
+ "%1$s, %2$s"
+ "বনà§à¦§"
+ "চালà§"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-bs/values-bs.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-bs/values-bs.xml
new file mode 100644
index 00000000..0a82b5f6
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-bs/values-bs.xml
@@ -0,0 +1,141 @@
+
+
+
+ - %d novo obavještenje
+ - %d nova obavještenja
+ - %d novih obavještenja
+
+ "Vratite se na poÄetnu stranicu"
+ "Idi gore"
+ "Više opcija"
+ "Gotovo"
+ "Prikaži sve"
+ "Odaberite aplikaciju"
+ "ISKLJUÄŒENO"
+ "UKLJUÄŒENO"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "razmak"
+ "Sym+"
+ "Menu+"
+ "Pretražite..."
+ "Obriši upit"
+ "Pretraži upit"
+ "Pretraži"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeli sa"
+ "Dijeli putem aplikacije %s"
+ "Suzi"
+ Sužavanje donje tabele
+ Proširivanje donje tabele
+ Proširivanje dopola
+ RuÄica za prevlaÄenje je dvaput dodirnuta
+ RuÄica za prevlaÄenje
+ "Odgovori"
+ "Video"
+ "Odbaci"
+ "Prekini vezu"
+ "Dolazni poziv"
+ "Poziv u toku"
+ "Filtriranje dolaznog poziva"
+ Uneseno znakova: %1$d od %2$d
+ OgraniÄenje broja znakova premaÅ¡uje %1$d od %2$d
+ Obriši tekst
+ Omogući
+ Aplikacija %1$s neće raditi ako ne omogućite Google Play usluge.
+ Omogućite Google Play usluge
+ Instaliraj
+ Aplikacija %1$s neće raditi bez Google Play usluga, kojih na vašem uređaju nema.
+ Nabavite Google Play usluge
+ Dostupnost Google Play usluga
+ Greška Google Play usluge
+ Aplikacija %1$s ima problema s Google Play uslugama. Pokušajte ponovo.
+ Aplikacija %1$s neće raditi bez Google Play usluga, koje vaš uređaj ne podržava.
+ Ažuriraj
+ Aplikacija %1$s neće raditi ako ne ažurirate Google Play usluge.
+ Ažuriranje Google Play usluga
+ Aplikacija %1$s neće raditi bez Google Play usluga, koje se trenutno ažuriraju.
+ Potrebna je nova verzija Google Play usluga. Ubrzo će se samo ažurirati.
+ Otvori na telefonu
+ Prijava
+ Prijavi se pomoću Googlea
+ "Kopiraj"
+ "Link je kopiran u međumemoriju"
+ Greška
+ "Napredno"
+ Prikaži padajući meni
+ "Kopiraj link"
+ "Otvori u pregledniku"
+ "Dijeli link"
+ ikona dijaloškog okvira
+ Kartica
+ Odaberite prijepodne ili poslijepodne
+ %1$s h
+ Odaberite sat
+ %1$s h
+ Odaberite minute
+ %1$s min
+ AM
+ Prebacite u naÄin rada kao sat za unos vremena.
+ Sat
+ Minuta
+ PM
+ Odabir vremena
+ Prebacite u naÄin unosa teksta za unos vremena.
+ Novo obavještenje
+ Uklonite %1$s
+ Broj novih obavještenja: više od %1$d
+ Promijeni na sljedeći mjesec
+ Promijeni na prethodni mjesec
+ Odabir datuma poÄetka: %1$s – Odabir datuma zavrÅ¡etka: %2$s
+ Trenutni izbor: %1$s
+ ništa
+ Otkaži
+ Uredu
+ %1$s
+ Odaberite datum
+ Odabrani datum
+ Kolona za dane: %1$s
+ Datum završetka %1$s
+ Nevažeći format.
+ Primjer: %1$s
+ Koristi: %1$s
+ Nevažeći opseg.
+ Odlazak na trenutnu godinu %1$d
+ Odlazak na %1$d. godinu
+ Izvan opsega: %1$s
+ Datum poÄetka – %1$s
+ %1$s – Datum završetka
+ %1$s – %2$s
+ Odaberite raspon
+ Datum poÄetka – Datum zavrÅ¡etka
+ SaÄuvaj
+ Datum poÄetka %1$s
+ Datum
+ Datum završetka
+ Datum poÄetka
+ d
+ m
+ g
+ Danas %1$s
+ Prebacivanje na naÄin unosa kalendara
+ Prebacivanje dodirom na prikaz Kalendara
+ Prebacivanje na naÄin unosa teksta
+ Prebacivanje dodirom na prikaz godine
+ Otkaži
+ Uredu
+ "Nije postavljeno"
+ Prikaži lozinku
+ "\"%1$s\" kopirano u međumemoriju."
+ "Pretražite"
+ "999+"
+ "%1$s, %2$s"
+ "ISKLJUÄŒENO"
+ "UKLJUÄŒENO"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ca/values-ca.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ca/values-ca.xml
new file mode 100644
index 00000000..8590578a
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ca/values-ca.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d notificació nova
+ - %d notificacions noves
+
+ "Navega fins a la pà gina d\'inici"
+ "Navega cap amunt"
+ "Més opcions"
+ "Fet"
+ "Mostra-ho tot"
+ "Selecciona una aplicació"
+ "DESACTIVA"
+ "ACTIVA"
+ "Alt+"
+ "Ctrl+"
+ "Supr"
+ "Retorn"
+ "Funció+"
+ "Meta+"
+ "Maj+"
+ "Espai"
+ "Sym+"
+ "Menú+"
+ "Cerca…"
+ "Esborra la consulta"
+ "Consulta de cerca"
+ "Cerca"
+ "Envia la consulta"
+ "Cerca per veu"
+ "Comparteix amb"
+ "Comparteix amb %s"
+ "Replega"
+ Replega el full inferior
+ Desplega el full inferior
+ Desplega fins a la meitat
+ Has fet doble toc a l\'ansa per arrossegar
+ Ansa per arrossegar
+ "Respon"
+ "VÃdeo"
+ "Rebutja"
+ "Penja"
+ "Trucada entrant"
+ "Trucada en curs"
+ "S\'està filtrant una trucada entrant"
+ Carà cters introduïts: %1$d de %2$d
+ S\'ha superat el lÃmit de carà cters (%1$d de %2$d)
+ Esborra el text
+ Activa
+ %1$s no funcionarà si no actives Serveis de Google Play.
+ Activa Serveis de Google Play
+ Instal·la
+ %1$s no s\'executarà si Serveis de Google Play no està instal·lat al dispositiu.
+ Obtén Serveis de Google Play
+ Disponibilitat de serveis de Google Play
+ Error de Serveis de Google Play
+ %1$s té problemes amb Serveis de Google Play. Torna-ho a provar.
+ %1$s no es pot executar sense Serveis de Google Play, que no és compatible amb el teu dispositiu.
+ Actualitza
+ %1$s no s\'executarà si no actualitzes Serveis de Google Play.
+ Actualitza Serveis de Google Play
+ %1$s no s\'executarà sense Serveis de Google Play, que s\'està actualitzant en aquest moment.
+ Cal una nova versió de Serveis de Google Play. S\'actualitzarà automà ticament aviat.
+ Obre al telèfon
+ Inicia sessió
+ Inicia la sessió amb Google
+ "Copia"
+ "S\'ha copiat l\'enllaç al porta-retalls"
+ Error
+ "Opcions avançades"
+ Mostra el menú desplegable
+ "Copia l\'enllaç"
+ "Obre al navegador"
+ "Comparteix l\'enllaç"
+ Icona del quadre de dià leg
+ Tabulador
+ Selecciona a. m. o p. m.
+ %1$s hores
+ Seleccioneu l\'hora
+ %1$s en punt
+ Selecciona els minuts
+ %1$s minuts
+ a. m.
+ Canvia al mode de rellotge per introduir l\'hora.
+ Hora
+ Minut
+ p. m.
+ Selecció de l\'hora
+ Canvia al mode d\'introducció de text per introduir l\'hora.
+ Notificació nova
+ Suprimeix %1$s
+ Més de %1$d notificacions noves
+ Canvia al mes següent
+ Canvia al mes anterior
+ Selecció de la data d\'inici: %1$s – Selecció de la data de finalització: %2$s
+ Selecció actual: %1$s
+ cap
+ Cancel·la
+ D’acord
+ %1$s
+ Selecciona una data
+ Data seleccionada
+ Columna de dies: %1$s
+ Data de finalització: %1$s
+ El format no és và lid.
+ Exemple: %1$s
+ Utilitza: %1$s
+ L\'interval no és và lid.
+ Navega fins a l\'any actual %1$d
+ Canvia a l\'any %1$d
+ La data està fora de l\'interval: %1$s
+ Data d\'inici - %1$s
+ %1$s - data de finalització
+ %1$s - %2$s
+ Selecciona un interval
+ Data d\'inici - data de finalització
+ Desa
+ Data d\'inici: %1$s
+ Data
+ Data de finalització
+ Data d\'inici
+ d
+ m
+ a
+ Avui, dia %1$s
+ Canvia al mode d\'introducció de dades del calendari
+ Toca per canviar a la visualització de calendari
+ Canvia al mode d\'introducció de text
+ Toca per canviar a la visualització d\'any
+ Cancel·la
+ D’acord
+ "No definit"
+ Mostra la contrasenya
+ "\"%1$s\" s\'ha copiat al porta-retalls"
+ "Cerca"
+ "999+"
+ "%1$s, %2$s"
+ "DESACTIVAT"
+ "ACTIVAT"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-cs/values-cs.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-cs/values-cs.xml
new file mode 100644
index 00000000..587cd44b
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-cs/values-cs.xml
@@ -0,0 +1,142 @@
+
+
+
+ - %d nové oznámenÃ
+ - %d nová oznámenÃ
+ - %d nového oznámenÃ
+ - %d nových oznámenÃ
+
+ "PÅ™ejÃt na plochu"
+ "PÅ™ejÃt nahoru"
+ "Dalšà možnosti"
+ "Hotovo"
+ "Zobrazit vše"
+ "Vybrat aplikaci"
+ "VYP"
+ "ZAP"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Fn+"
+ "Meta+"
+ "Shift+"
+ "mezernÃk"
+ "Sym+"
+ "Menu+"
+ "Vyhledat…"
+ "Smazat dotaz"
+ "Dotaz pro vyhledávánÃ"
+ "Hledat"
+ "Odeslat dotaz"
+ "Hlasové vyhledávánÃ"
+ "SdÃlet s"
+ "SdÃlet s aplikacà %s"
+ "Sbalit"
+ Sbalit spodnà tabulku
+ Rozbalit spodnà tabulku
+ Rozbalit napůl
+ Dvakrát jste klepli na úchyt pro pÅ™etaženÃ
+ Úchyt pro pÅ™etaženÃ
+ "Přijmout"
+ "Video"
+ "OdmÃtnout"
+ "Zavěsit"
+ "PÅ™Ãchozà hovor"
+ "ProbÃhajÃcà hovor"
+ "Prověřovánà pÅ™ÃchozÃho hovoru"
+ Zadané znaky: %1$d z %2$d
+ Byl pÅ™ekroÄen povolený poÄet znaků (%1$d z %2$d)
+ Vymazat text
+ Povolit
+ Ke spuštěnà aplikace %1$s je třeba aktivovat služby Google Play.
+ Aktivace služeb Google Play
+ Instalovat
+ Ke spuÅ¡tÄ›nà aplikace %1$s jsou potÅ™eba služby Google Play, které v zaÅ™Ãzenà nemáte.
+ Instalace služeb Google Play
+ Dostupnost služeb Google Play
+ Chyba služeb Google Play
+ Aplikace %1$s má potÞe se službami Google Play. Zkuste to prosÃm znovu.
+ Ke spuÅ¡tÄ›nà aplikace %1$s jsou potÅ™eba služby Google Play, které v tomto zaÅ™Ãzenà nejsou podporovány.
+ Aktualizovat
+ Ke spuštěnà aplikace %1$s je třeba aktualizovat služby Google Play.
+ Aktualizace služeb Google Play
+ Ke spuštěnà aplikace %1$s jsou potřeba služby Google Play, které jsou právě aktualizovány.
+ Je vyžadována nová verze služeb Google Play. Nová verze se brzy sama nainstaluje.
+ OtevÅ™Ãt v telefonu
+ Přihlásit se
+ PÅ™ihlásit se k úÄtu Google
+ "KopÃrovat"
+ "Odkaz zkopÃrován do schránky"
+ Chyba
+ "RozÅ¡ÃÅ™ená nastavenÃ"
+ Zobrazit rozbalovacà nabÃdku
+ "KopÃrovat odkaz"
+ "OtevÅ™Ãt v prohlÞeÄi"
+ "SdÃlet odkaz"
+ Ikona dialogového okna
+ Karta
+ Vyberte AM nebo PM
+ %1$s hodin
+ Vyberte hodinu
+ %1$s
+ Zvolte minuty
+ %1$s min
+ AM
+ Chcete-li zadat Äas, pÅ™epnÄ›te na režim hodin.
+ Hodina
+ Minuta
+ PM
+ Vyberte Äas
+ Chcete-li zadat Äas, pÅ™epnÄ›te na režim textu.
+ Nové oznámenÃ
+ Odstranit položku %1$s
+ VÃce než %1$d nových oznámenÃ
+ PÅ™ejÃt na dalšà mÄ›sÃc
+ PÅ™ejÃt na pÅ™edchozà mÄ›sÃc
+ VýbÄ›r data zahájenÃ: %1$s – VýbÄ›r data ukonÄenÃ: %2$s
+ Aktuálnà výběr: %1$s
+ prázdné
+ Zrušit
+ OK
+ %1$s
+ Vyberte datum
+ Vybrané datum
+ Sloupec dnů: %1$s
+ Datum ukonÄenà %1$s
+ Neplatný formát.
+ PÅ™Ãklad: %1$s
+ Použijte: %1$s
+ Neplatný rozsah.
+ PÅ™ejÃt na aktuálnà rok %1$d
+ PÅ™ejÃt na rok %1$d
+ Mimo rozsah: %1$s
+ Datum zahájenà – %1$s
+ %1$s – datum ukonÄenÃ
+ %1$s – %2$s
+ Vyberte rozsah
+ Datum zahájenà – datum ukonÄenÃ
+ Uložit
+ Datum zahájenà %1$s
+ Datum
+ Datum ukonÄenÃ
+ Datum zahájenÃ
+ d
+ m
+ r
+ Dnes %1$s
+ Přepnout na režim zadávánà do kalendáře
+ KlepnutÃm pÅ™epnete na zobrazenà kalendáře
+ Přepnout na režim zadávánà textu
+ KlepnutÃm pÅ™epnete na zobrazenà jednotlivých let
+ Zrušit
+ OK
+ "Nenastaveno"
+ Zobrazit heslo
+ "Položka %1$s byla zkopÃrována do schránky."
+ "Hledat"
+ "999+"
+ "%1$s, %2$s"
+ "Vypnuto"
+ "Zapnuto"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-da/values-da.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-da/values-da.xml
new file mode 100644
index 00000000..25913b54
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-da/values-da.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d ny notifikation
+ - %d nye notifikationer
+
+ "Find hjem"
+ "GÃ¥ op"
+ "Flere valgmuligheder"
+ "Udfør"
+ "Se alle"
+ "Vælg en app"
+ "FRA"
+ "TIL"
+ "Alt+"
+ "Ctrl+"
+ "slet"
+ "enter"
+ "Fn+"
+ "Meta+"
+ "Shift+"
+ "mellemrum"
+ "Sym+"
+ "Menu+"
+ "Søg…"
+ "Ryd forespørgsel"
+ "Søgeforespørgsel"
+ "Søg"
+ "Indsend forespørgsel"
+ "Talesøgning"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Skjul feltet i bunden
+ Udvid feltet i bunden
+ Udvid halvdelen
+ Du har trykket to gange på håndtaget
+ HÃ¥ndtag
+ "Besvar"
+ "Video"
+ "Afvis"
+ "Læg på"
+ "Indgående opkald"
+ "Igangværende opkald"
+ "Et indgående opkald screenes"
+ Du har brugt %1$d ud af %2$d tegn
+ Du har brugt %1$d tegn og dermed overskredet tegnbegrænsningen på %2$d.
+ Ryd tekst
+ Aktivér
+ Du skal aktivere Google Play-tjenester, for at %1$s kan fungere.
+ Aktivér Google Play-tjenester
+ Installer
+ Du skal installere Google Play-tjenester, før %1$s kan køre på din enhed.
+ Hent Google Play-tjenester
+ Google Play-tjenesters tilgængelighed
+ Fejl i Google Play-tjenester
+ %1$s har problemer med Google Play-tjenester. Prøv igen.
+ %1$s fungerer ikke uden Google Play-tjenester, som ikke understøttes på din enhed.
+ Opdater
+ %1$s kan ikke køre, medmindre du opdaterer Google Play-tjenester.
+ Opdater Google Play-tjenester
+ %1$s kan ikke køre uden Google Play-tjenester, som i øjeblikket opdateres.
+ Du skal bruge en ny version af Google Play-tjenester. Opdateringen gennemføres automatisk om et øjeblik.
+ Åbn på telefonen
+ Log ind
+ Log ind med Google
+ "Kopiér"
+ "Linket er kopieret til udklipsholderen"
+ Fejl
+ "Avanceret"
+ Vis rullemenuen
+ "Kopiér link"
+ "Ã…bn i browser"
+ "Del link"
+ Ikon for dialogboks
+ Fane
+ Vælg AM eller PM
+ %1$s timer
+ Vælg time
+ klokken %1$s
+ Vælg minutter
+ %1$s minutter
+ f.m.
+ Skift til urtilstand for at angive klokkeslæt.
+ Time
+ Minut
+ e.m.
+ Vælg tidspunkt
+ Skift til teksttilstand for at angive klokkeslæt.
+ Ny notifikation
+ Fjern %1$s
+ Flere end %1$d nye notifikationer
+ Skift til næste måned
+ Skift til forrige måned
+ Valg af startdato: %1$s – Valg af slutdato: %2$s
+ Aktuelt valg: %1$s
+ ingen
+ Annuller
+ OK
+ %1$s
+ Vælg dato
+ Valgt dato
+ Kolonne med dage: %1$s
+ Slutdato %1$s
+ Ugyldigt format.
+ Eksempel: %1$s
+ Brug: %1$s
+ Ugyldigt interval.
+ Gå til indeværende år %1$d
+ Gå til år %1$d
+ Uden for interval: %1$s
+ Startdato – %1$s
+ %1$s – slutdato
+ %1$s – %2$s
+ Vælg interval
+ Startdato – slutdato
+ Gem
+ Startdato %1$s
+ Dato
+ Slutdato
+ Startdato
+ d
+ m
+ å
+ I dag %1$s
+ Skift til input-tilstand for kalender
+ Tryk for at skifte til kalendervisning
+ Skift til input-tilstand for tekst
+ Tryk for at skifte til årsvisning
+ Annuller
+ OK
+ "Ikke angivet"
+ Vis adgangskode
+ "\"%1$s\" blev kopieret til udklipsholderen."
+ "Søg"
+ "999+"
+ "%1$s, %2$s"
+ "FRA"
+ "TIL"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-de/values-de.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-de/values-de.xml
new file mode 100644
index 00000000..b1d21113
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-de/values-de.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d neue Benachrichtigung
+ - %d neue Benachrichtigungen
+
+ "Zur Startseite"
+ "Nach oben"
+ "Weitere Optionen"
+ "Fertig"
+ "Alle anzeigen"
+ "App auswählen"
+ "AUS"
+ "AN"
+ "Alt +"
+ "Strg +"
+ "Löschen"
+ "Eingabetaste"
+ "Funktionstaste +"
+ "Meta-Taste +"
+ "Umschalttaste +"
+ "Leertaste"
+ "Sym-Taste +"
+ "Menütaste +"
+ "Suchen…"
+ "Suchanfrage löschen"
+ "Suchanfrage"
+ "Suche"
+ "Anfrage senden"
+ "Sprachsuche"
+ "Teilen mit"
+ "Mit %s teilen"
+ "Minimieren"
+ Ansicht am unteren Rand minimieren
+ Ansicht am unteren Rand maximieren
+ Zur Hälfte maximieren
+ Auf Ziehpunkt doppelt getippt
+ Ziehpunkt
+ "Annehmen"
+ "Video"
+ "Ablehnen"
+ "Auflegen"
+ "Eingehender Anruf"
+ "Aktueller Anruf"
+ "Filter für eingehenden Anruf"
+ Eingegebene Zeichen: %1$d von %2$d
+ Zeichenbeschränkung überschritten: %1$d/%2$d
+ Text löschen
+ Aktivieren
+ %1$s funktioniert erst nach der Aktivierung der Google Play-Dienste.
+ Google Play-Dienste aktivieren
+ Installieren
+ Zur Nutzung von %1$s sind die Google Play-Dienste erforderlich, die auf deinem Gerät nicht installiert sind.
+ Google Play-Dienste installieren
+ Verfügbarkeit von Google Play-Diensten
+ Fehler bei Zugriff auf Google Play-Dienste
+ %1$s hat Probleme mit Google Play-Diensten. Bitte versuche es noch einmal.
+ Zur Nutzung von %1$s sind Google Play-Dienste erforderlich, die auf deinem Gerät nicht unterstützt werden.
+ Aktualisieren
+ %1$s wird nur ausgeführt, wenn du die Google Play-Dienste aktualisierst.
+ Google Play-Dienste aktualisieren
+ Zur Nutzung von %1$s sind Google Play-Dienste erforderlich, die gerade aktualisiert werden.
+ Eine neue Version der Google Play-Dienste wird benötigt. Diese wird in Kürze automatisch aktualisiert.
+ Auf Smartphone öffnen
+ Anmelden
+ Über Google anmelden
+ "Kopieren"
+ "Link in Zwischenablage kopiert"
+ Fehler
+ "Erweitert"
+ Drop-down-Menü anzeigen
+ "Link kopieren"
+ "Im Browser öffnen"
+ "Link teilen"
+ Dialogfeldsymbol
+ Tab
+ Vormittags oder Nachmittags auswählen
+ %1$s Stunden
+ Stunde auswählen
+ %1$s Uhr
+ Minuten auswählen
+ %1$s Minuten
+ AM
+ In den Uhrzeitmodus wechseln, um die Uhrzeit einzugeben.
+ Stunde
+ Minute
+ PM
+ Uhrzeit auswählen
+ In den Texteingabemodus wechseln, um die Uhrzeit einzugeben.
+ Neue Benachrichtigung
+ %1$s entfernen
+ Mehr als %1$d neue Benachrichtigungen
+ Zum nächsten Monat wechseln
+ Zum vorherigen Monat wechseln
+ Ausgewähltes Startdatum: %1$s – Ausgewähltes Enddatum: %2$s
+ Aktuelle Auswahl: %1$s
+ Keines
+ Abbrechen
+ OK
+ %1$s
+ Datum auswählen
+ Ausgewähltes Datum
+ Spalte \"Wochentag\": %1$s
+ Enddatum %1$s
+ Ungültiges Format.
+ Beispiel: %1$s
+ Format: %1$s
+ Ungültiger Bereich.
+ Zum aktuellen Jahr %1$d wechseln
+ Zum Jahr %1$d wechseln
+ Außerhalb des Bereichs: %1$s
+ Startdatum – %1$s
+ %1$s – Enddatum
+ %1$s – %2$s
+ Zeitraum auswählen
+ Startdatum – Enddatum
+ Speichern
+ Startdatum %1$s
+ Datum
+ Enddatum
+ Startdatum
+ T
+ M
+ J
+ Heute %1$s
+ In den Kalendereingabemodus wechseln
+ Tippen, um zur Kalenderansicht zu wechseln
+ In den Texteingabemodus wechseln
+ Tippen, um zur Jahresansicht zu wechseln
+ Abbrechen
+ OK
+ "Nicht festgelegt"
+ Passwort anzeigen
+ "\"%1$s\" in Zwischenablage kopiert."
+ "Suche"
+ "999+"
+ "%1$s, %2$s"
+ "AUS"
+ "AN"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-el/values-el.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-el/values-el.xml
new file mode 100644
index 00000000..edf81cd7
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-el/values-el.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d νÎα ειδοποίηση
+ - %d νÎες ειδοποιήσεις
+
+ "Πλοήγηση στην αÏχική σελίδα"
+ "Πλοήγηση Ï€Ïος τα επάνω"
+ "ΠεÏισσότεÏες επιλογÎÏ‚"
+ "ΤÎλος"
+ "Εμφάνιση όλων"
+ "ΕπιλÎξτε μια εφαÏμογή"
+ "ΑΠΕÎΕΡΓΟΠΟΙΗΣΗ"
+ "ΕÎΕΡΓΟΠΟΙΗΣΗ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "διάστημα"
+ "Sym+"
+ "Menu+"
+ "Αναζήτηση…"
+ "ΔιαγÏαφή εÏωτήματος"
+ "ΕÏώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή εÏωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινοποίηση σε"
+ "Κοινοποίηση στην εφαÏμογή %s"
+ "ΣÏμπτυξη"
+ ΣÏμπτυξη του φÏλλου κάτω μÎÏους
+ Ανάπτυξη του φÏλλου κάτω μÎÏους
+ Ανάπτυξη μÎχÏι τη μÎση
+ Η λαβή μεταφοÏάς πατήθηκε δÏο φοÏÎÏ‚
+ Λαβή μεταφοÏάς
+ "Απάντηση"
+ "Βίντεο"
+ "ΑπόÏÏιψη"
+ "ΤεÏματισμός"
+ "ΕισεÏχόμενη κλήση"
+ "Κλήση σε εξÎλιξη"
+ "Διαλογή εισεÏχόμενης κλήσης"
+ Εισήχθησαν %1$d από %2$d χαÏακτήÏες
+ ΥπÎÏβαση οÏίου χαÏακτήÏων %1$d από %2$d
+ ΔιαγÏαφή κειμÎνου
+ ΕνεÏγοποίηση
+ Η εφαÏμογή %1$s δεν θα λειτουÏγήσει εάν δεν Îχετε ενεÏγοποιήσει τις υπηÏεσίες Google Play.
+ ΕνεÏγοποίηση υπηÏεσιών Google Play
+ Εγκατάσταση
+ Η εφαÏμογή %1$s δεν μποÏεί να εκτελεστεί χωÏίς τις υπηÏεσίες Google Play, οι οποίες λείπουν από τη συσκευή σας.
+ Λήψη υπηÏεσιών Google Play
+ Διαθεσιμότητα υπηÏεσιών Google Play
+ Σφάλμα ΥπηÏεσιών Google Play
+ Η εφαÏμογή %1$s αντιμετωπίζει κάποιο Ï€Ïόβλημα με τις υπηÏεσίες Google Play. Î Ïοσπαθήστε ξανά.
+ Η εφαÏμογή %1$s δεν θα εκτελεστεί χωÏίς τις υπηÏεσίες Google Play, οι οποίες δεν υποστηÏίζονται από τη συσκευή σας.
+ ΕνημÎÏωση
+ Η εφαÏμογή %1$s θα εκτελεστεί Î±Ï†Î¿Ï ÎµÎ½Î·Î¼ÎµÏώσετε τις ΥπηÏεσίες Google Play.
+ ΕνημÎÏωση υπηÏεσιών Google Play
+ Η εφαÏμογή %1$s δεν θα εκτελεστεί χωÏίς τις υπηÏεσίες Google Play, οι οποίες ενημεÏώνονται αυτήν τη στιγμή.
+ Απαιτείται νÎα Îκδοση των υπηÏεσιών Google Play. Θα ενημεÏωθεί σÏντομα.
+ Άνοιγμα σε τηλÎφωνο
+ ΣÏνδεση
+ Συνδεθείτε με το Google
+ "ΑντιγÏαφή"
+ "Ο σÏνδεσμος αντιγÏάφηκε στο Ï€ÏόχειÏο"
+ Σφάλμα
+ "ΣÏνθετες"
+ Εμφάνιση αναπτυσσόμενου μενοÏ
+ "ΑντιγÏαφή συνδÎσμου"
+ "Άνοιγμα σε Ï€ÏόγÏαμμα πεÏιήγησης"
+ "Κοινοποίηση συνδÎσμου"
+ Εικονίδιο παÏαθÏÏου διαλόγου
+ ΚαÏÏ„Îλα
+ ΕπιλÎξτε Ï€.μ. ή μ.μ.
+ %1$s ÏŽÏες
+ Επιλογή ÏŽÏας
+ %1$s ακÏιβώς
+ Επιλογή λεπτών
+ %1$s λεπτά
+ ΠΜ
+ Κάντε εναλλαγή στη λειτουÏγία ÏολογιοÏ, για την εισαγωγή της ÏŽÏας.
+ ÎÏα
+ Λεπτό
+ ΜΜ
+ ΕπιλÎξτε ÏŽÏα
+ Κάντε εναλλαγή στη λειτουÏγία εισαγωγής κειμÎνου, για την εισαγωγή της ÏŽÏας.
+ ÎÎα ειδοποίηση
+ ΚατάÏγηση %1$s
+ Πάνω από %1$d νÎες ειδοποιήσεις
+ Αλλαγή στον επόμενο μήνα
+ Αλλαγή στον Ï€ÏοηγοÏμενο μήνα
+ Επιλογή ημεÏομηνίας ÎναÏξης: %1$s – Επιλογή ημεÏομηνίας λήξης: %2$s
+ ΤÏÎχουσα επιλογή: %1$s
+ χωÏίς επιλογή
+ ΑκÏÏωση
+ ΟΚ
+ %1$s
+ Επιλογή ημεÏομηνίας
+ ΕπιλεγμÎνη ημεÏομηνία
+ Στήλη ημεÏών: %1$s
+ ΗμεÏομηνία λήξης %1$s
+ Μη ÎγκυÏη μοÏφή.
+ ΠαÏάδειγμα: %1$s
+ ΧÏησιμοποιήστε: %1$s
+ Μη ÎγκυÏο εÏÏος.
+ Πλοήγηση στο Ï„ÏÎχον Îτος %1$d
+ Πλοήγηση στο Îτος %1$d
+ Εκτός εÏÏους: %1$s
+ ΗμεÏομηνία ÎναÏξης – %1$s
+ %1$s – ΗμεÏομηνία λήξης
+ %1$s – %2$s
+ Επιλογή εÏÏους
+ ΗμεÏομηνία ÎναÏξης – ΗμεÏομηνία λήξης
+ Αποθήκευση
+ ΗμεÏομηνία ÎναÏξης %1$s
+ ΗμεÏομηνία
+ ΗμεÏομηνία λήξης
+ ΗμεÏομηνία ÎναÏξης
+ η
+ μ
+ ε
+ ΣήμεÏα %1$s
+ Εναλλαγή στη λειτουÏγία εισαγωγής ημεÏολογίου
+ Πατήστε για εναλλαγή στην Ï€Ïοβολή ΗμεÏολόγιο
+ Εναλλαγή στη λειτουÏγία εισαγωγής κειμÎνου
+ Πατήστε για εναλλαγή στην Ï€Ïοβολή Îτους
+ ΑκÏÏωση
+ ΟΚ
+ "Δεν Îχει οÏιστεί"
+ Εμφάνιση ÎºÏ‰Î´Î¹ÎºÎ¿Ï Ï€Ïόσβασης
+ "Το \"%1$s\" αντιγÏάφηκε στο Ï€ÏόχειÏο."
+ "Αναζήτηση"
+ "999+"
+ "%1$s, %2$s"
+ "ΑÎΕÎΕΡΓΗ"
+ "ΕÎΕΡΓΗ"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml
new file mode 100644
index 00000000..5fa4defa
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml
@@ -0,0 +1,50 @@
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "Answer"
+ "Video"
+ "Decline"
+ "Hang up"
+ "Incoming call"
+ "On-going call"
+ "Screening an incoming call"
+ "Copy"
+ "Link copied to clipboard"
+ "Advanced"
+ "Copy link"
+ "Open in browser"
+ "Share link"
+ "Not set"
+ "\'%1$s\' copied to clipboard."
+ "Search"
+ "999+"
+ "%1$s, %2$s"
+ "OFF"
+ "ON"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml
new file mode 100644
index 00000000..2f35c3d1
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml
@@ -0,0 +1,50 @@
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "Answer"
+ "Video"
+ "Decline"
+ "Hang Up"
+ "Incoming call"
+ "Ongoing call"
+ "Screening an incoming call"
+ "Copy"
+ "Link copied to clipboard"
+ "Advanced"
+ "Copy link"
+ "Open in browser"
+ "Share link"
+ "Not set"
+ "\'%1$s\' copied to clipboard."
+ "Search"
+ "999+"
+ "%1$s, %2$s"
+ "OFF"
+ "ON"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 00000000..527560de
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d new notification
+ - %d new notifications
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ Collapse the bottom sheet
+ Expand the bottom sheet
+ Expand halfway
+ Drag handle double-tapped
+ Drag handle
+ "Answer"
+ "Video"
+ "Decline"
+ "Hang up"
+ "Incoming call"
+ "On-going call"
+ "Screening an incoming call"
+ Characters entered %1$d of %2$d
+ Character limit exceeded %1$d of %2$d
+ Clear text
+ Enable
+ %1$s won\'t work unless you enable Google Play services.
+ Enable Google Play services
+ Install
+ %1$s won\'t run without Google Play services, which are missing from your device.
+ Get Google Play services
+ Google Play services availability
+ Google Play services error
+ %1$s is having trouble with Google Play services. Please try again.
+ %1$s won\'t run without Google Play services, which are not supported by your device.
+ Update
+ %1$s won\'t run unless you update Google Play services.
+ Update Google Play services
+ %1$s won\'t run without Google Play services, which are currently updating.
+ New version of Google Play services needed. It will update itself shortly.
+ Open on phone
+ Sign In
+ Sign in with Google
+ "Copy"
+ "Link copied to clipboard"
+ Error
+ "Advanced"
+ Show drop-down menu
+ "Copy link"
+ "Open in browser"
+ "Share link"
+ Dialogue Icon
+ Tab
+ Select a.m. or p.m.
+ %1$s hours
+ Select hour
+ %1$s o\'clock
+ Select minutes
+ %1$s minutes
+ AM
+ Switch to clock mode for the time input.
+ Hour
+ Minute
+ PM
+ Select time
+ Switch to text input mode for the time input.
+ New notification
+ Remove %1$s
+ More than %1$d new notifications
+ Change to next month
+ Change to previous month
+ Start date selection: %1$s – end date selection: %2$s
+ Current selection: %1$s
+ none
+ Cancel
+ OK
+ %1$s
+ Select date
+ Selected date
+ Column of days: %1$s
+ End date %1$s
+ Invalid format.
+ Example: %1$s
+ Use: %1$s
+ Invalid range.
+ Navigate to current year %1$d
+ Navigate to year %1$d
+ Out of range: %1$s
+ Start date – %1$s
+ %1$s – End date
+ %1$s – %2$s
+ Select range
+ Start date – End date
+ Save
+ Start date %1$s
+ Date
+ End date
+ Start date
+ d
+ m
+ y
+ Today %1$s
+ Switch to calendar input mode
+ Tap to switch to calendar view
+ Switch to text input mode
+ Tap to switch to year view
+ Cancel
+ OK
+ "Not set"
+ Show password
+ "\'%1$s\' copied to clipboard."
+ "Search"
+ "999+"
+ "%1$s, %2$s"
+ "OFF"
+ "ON"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml
new file mode 100644
index 00000000..5fa4defa
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,50 @@
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Done"
+ "See all"
+ "Choose an app"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Search…"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+ "Collapse"
+ "Answer"
+ "Video"
+ "Decline"
+ "Hang up"
+ "Incoming call"
+ "On-going call"
+ "Screening an incoming call"
+ "Copy"
+ "Link copied to clipboard"
+ "Advanced"
+ "Copy link"
+ "Open in browser"
+ "Share link"
+ "Not set"
+ "\'%1$s\' copied to clipboard."
+ "Search"
+ "999+"
+ "%1$s, %2$s"
+ "OFF"
+ "ON"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml
new file mode 100644
index 00000000..59d8898e
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml
@@ -0,0 +1,50 @@
+
+
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€â€â€â€Žâ€ŽNavigate home‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€ŽNavigate up‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€â€â€Žâ€â€Žâ€Žâ€â€ŽMore options‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€ŽDone‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€ŽSee all‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€ŽChoose an app‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€Žâ€â€â€ŽOFF‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€Žâ€ŽON‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€â€Žâ€â€Žâ€ŽAlt+‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€Žâ€ŽCtrl+‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Ždelete‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€â€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Ženter‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€ŽFunction+‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€â€â€Žâ€ŽMeta+‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€ŽShift+‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€â€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žspace‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€â€â€â€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€ŽSym+‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€â€â€â€â€â€Žâ€ŽMenu+‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€ŽSearch…‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€â€â€ŽClear query‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€â€ŽSearch query‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€ŽSearch‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€â€â€â€ŽSubmit query‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€ŽVoice search‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€â€â€ŽShare with‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€ŽShare with ‎â€â€Žâ€Žâ€â€â€Ž%s‎â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€â€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€ŽCollapse‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€ŽAnswer‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€ŽVideo‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€ŽDecline‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€ŽHang Up‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€â€â€â€ŽIncoming call‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€â€â€Žâ€ŽOngoing call‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€ŽScreening an incoming call‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€ŽCopy‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€â€Žâ€Žâ€â€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€ŽLink copied to clipboard‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€â€â€Žâ€ŽAdvanced‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€â€ŽCopy link‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€ŽOpen in browser‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€ŽShare link‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€ŽNot set‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€â€â€Žâ€â€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€â€â€â€â€â€Ž\"‎â€â€Žâ€Žâ€â€â€Ž%1$s‎â€â€Žâ€Žâ€â€â€â€Ž\" copied to clipboard.‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€Žâ€â€â€â€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€ŽSearch‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Ž999+‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€â€â€â€Žâ€Žâ€â€â€â€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Ž%1$s‎â€â€Žâ€Žâ€â€â€â€Ž, ‎â€â€Žâ€Žâ€â€â€Ž%2$s‎â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€â€â€ŽOFF‎â€â€Žâ€Žâ€â€Ž"
+ "‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€â€â€â€Žâ€â€â€ŽON‎â€â€Žâ€Žâ€â€Ž"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml
new file mode 100644
index 00000000..db08b2d5
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d notificación nueva
+ - %d notificaciones nuevas
+
+ "Navegar a la página principal"
+ "Navegar hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todas"
+ "Elegir una app"
+ "DESACTIVAR"
+ "ACTIVAR"
+ "Alt+"
+ "Ctrl+"
+ "borrar"
+ "intro"
+ "Función+"
+ "Meta+"
+ "Mayúscula+"
+ "espacio"
+ "Sym+"
+ "Menú+"
+ "Buscar…"
+ "Borrar consulta"
+ "Búsqueda"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Contraer"
+ Contraer la hoja inferior
+ Expandir la hoja inferior
+ Expandir hasta la mitad
+ El control de arrastre se presionó dos veces
+ Controlador de arrastre
+ "Responder"
+ "Video"
+ "Rechazar"
+ "Colgar"
+ "Llamada entrante"
+ "Llamada en curso"
+ "Filtrando una llamada entrante"
+ Caracteres ingresados: %1$d de %2$d
+ Se excedió en %1$d el lÃmite de caracteres de %2$d
+ Borrar texto
+ Habilitar
+ %1$s no funcionará a menos que habilites los servicios de Google Play.
+ Habilitar servicios de Google Play
+ Instalar
+ %1$s no se ejecutará si los Servicios de Google Play no están instalados en tu dispositivo.
+ Obtener servicios de Google Play
+ Disp. de los Servicios de Google‌‌‌ Play
+ Error de Google Play Services
+ %1$s tiene problemas con los servicios de Google Play. Vuelve a intentarlo.
+ %1$s no se ejecutará sin los servicios de Google Play, que no son compatibles con tu dispositivo.
+ Actualizar
+ %1$s no se ejecutará a menos que actualices los servicios de Google Play.
+ Actualizar servicios de Google Play
+ %1$s no se ejecutará sin los servicios de Google Play. La plataforma se está actualizando en este momento.
+ Se necesita una nueva versión de los servicios de Google Play. Se actualizarán automáticamente en breve.
+ Abrir en el teléfono
+ Acceder
+ Acceder con Google
+ "Copiar"
+ "Se copió el vÃnculo al portapapeles"
+ Error
+ "Opciones avanzadas"
+ Mostrar menú desplegable
+ "Copiar vÃnculo"
+ "Abrir en el navegador"
+ "Compartir vÃnculo"
+ Ãcono de diálogo
+ Pestaña
+ Selecciona a.m. o p.m.
+ %1$s horas
+ Seleccione la hora.
+ %1$s en punto
+ Seleccionar minutos
+ %1$s minutos
+ a.m.
+ Cambia al modo de reloj para ingresar la hora.
+ Hora
+ Minuto
+ p.m.
+ Seleccionar la hora
+ Cambia al modo de entrada de texto para ingresar la hora.
+ Notificación nueva
+ Quitar %1$s
+ Más de %1$d notificaciones nuevas
+ Cambiar al mes siguiente
+ Cambiar al mes anterior
+ Selección de fecha de inicio: %1$s – Selección de fecha de finalización: %2$s
+ Selección actual: %1$s
+ nada
+ Cancelar
+ Aceptar
+ %1$s
+ Seleccionar fecha
+ Fecha seleccionada
+ Columna de dÃas: %1$s
+ Fecha de finalización: %1$s
+ Formato no válido
+ Ejemplo: %1$s
+ Usar: %1$s
+ El rango no es válido.
+ Navegar al año actual (%1$d)
+ Navegar al año %1$d
+ Fuera de rango: %1$s
+ Fecha de inicio - %1$s
+ %1$s - fecha de finalización
+ %1$s-%2$s
+ Selecciona un perÃodo
+ Fecha de inicio - fecha de finalización
+ Guardar
+ Fecha de inicio: %1$s
+ Fecha
+ Fecha de finalización
+ Fecha de inicio
+ d
+ m
+ a
+ Hoy, %1$s
+ Cambiar al modo de entrada de calendario
+ Presiona para cambiar a la vista de Calendario
+ Cambiar al modo de entrada de texto
+ Presiona para cambiar a la vista de año
+ Cancelar
+ Aceptar
+ "Sin definir"
+ Mostrar contraseña
+ "Se copió \"%1$s\" en el portapapeles."
+ "Buscar"
+ "999+"
+ "%1$s, %2$s"
+ "DESACTIVADO"
+ "ACTIVADO"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-es/values-es.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-es/values-es.xml
new file mode 100644
index 00000000..7d9b63a5
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-es/values-es.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d notificación nueva
+ - %d notificaciones nuevas
+
+ "Ir a inicio"
+ "Desplazarse hacia arriba"
+ "Más opciones"
+ "Hecho"
+ "Ver todo"
+ "Seleccionar una aplicación"
+ "DESACTIVADO"
+ "ACTIVADO"
+ "Alt +"
+ "Ctrl +"
+ "Suprimir"
+ "Intro"
+ "Función +"
+ "Meta +"
+ "Mayús +"
+ "Espacio"
+ "Sym +"
+ "Menú +"
+ "Buscar…"
+ "Borrar consulta"
+ "Consulta de búsqueda"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+ "Ocultar"
+ Ocultar la hoja inferior
+ Mostrar la hoja inferior
+ Desplegar hasta la mitad
+ Controlador de arrastre tocado dos veces
+ Controlador de arrastre
+ "Responder"
+ "VÃdeo"
+ "Rechazar"
+ "Colgar"
+ "Llamada entrante"
+ "Llamada en curso"
+ "Filtrando una llamada entrante"
+ Caracteres introducidos: %1$d de %2$d
+ LÃmite de caracteres superado (%1$d de %2$d)
+ Borrar texto
+ Habilitar
+ %1$s no funcionará hasta que no habilites Servicios de Google Play.
+ Habilita Servicios de Google Play
+ Instalar
+ %1$s no se ejecutará si los Servicios de Google Play no están instalados en tu dispositivo.
+ Descargar Servicios de Google Play
+ Disponibilidad Servicios de Google Play
+ Error de Servicios de Google Play
+ La aplicación %1$s tiene problemas con los Servicios de Google Play. Vuelve a intentarlo.
+ No es posible ejecutar la aplicación %1$s sin los Servicios de Google Play, que no son compatibles con tu dispositivo.
+ Actualizar
+ %1$s no funcionará hasta que no actualices Servicios de Google Play.
+ Actualiza Servicios de Google Play
+ %1$s no se ejecutará hasta que finalice la actualización en curso de Servicios de Google Play.
+ Se necesita una nueva versión de Servicios de Google Play. Se actualizará en breve.
+ Abrir en teléfono
+ Iniciar sesión
+ Iniciar sesión con Google
+ "Copiar"
+ "Enlace copiado en el portapapeles"
+ Error
+ "Ajustes avanzados"
+ Mostrar menú desplegable
+ "Copiar enlace"
+ "Abrir en el navegador"
+ "Compartir enlace"
+ Icono del cuadro de diálogo
+ Pestaña
+ Selecciona AM o PM
+ %1$s horas
+ Seleccionar hora
+ %1$s en punto
+ Seleccionar minutos
+ %1$s minutos
+ A.M.
+ Cambia al modo de reloj para escribir la hora.
+ Hora
+ Minuto
+ P.M.
+ Seleccionar la hora
+ Cambia al modo de introducción de texto para escribir la hora.
+ Notificación nueva
+ Retirar %1$s
+ Más de %1$d notificaciones nuevas
+ Cambiar al mes siguiente
+ Cambiar al mes anterior
+ Selección de fecha de inicio: %1$s – Selección de fecha de finalización: %2$s
+ Selección actual: %1$s
+ ninguna
+ Cancelar
+ Aceptar
+ %1$s
+ Selecciona una fecha
+ Fecha seleccionada
+ Columna de dÃas: %1$s
+ Fecha de finalización: %1$s
+ Formato no válido.
+ Ejemplo: %1$s
+ Usar: %1$s
+ El periodo no es válido.
+ Ir al año actual, %1$d
+ Ir al año %1$d
+ Fuera del periodo válido: %1$s
+ Fecha de inicio–%1$s
+ %1$s–Fecha de finalización
+ %1$s – %2$s
+ Selecciona un periodo
+ Fecha de inicio–Fecha de finalización
+ Guardar
+ Fecha de inicio: %1$s
+ Fecha
+ Fecha de finalización
+ Fecha de inicio
+ d
+ m
+ a
+ Hoy, %1$s
+ Cambiar al modo de introducción Calendario
+ Toca para cambiar a la vista de calendario
+ Cambiar al modo de introducción Texto
+ Toca para cambiar a la vista de año
+ Cancelar
+ Aceptar
+ "Sin establecer"
+ Mostrar contraseña
+ "\"%1$s\" se ha copiado en el portapapeles."
+ "Buscar"
+ "999+"
+ "%1$s, %2$s"
+ "DESACTIVADA"
+ "ACTIVADO"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-et/values-et.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-et/values-et.xml
new file mode 100644
index 00000000..fb808b25
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-et/values-et.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d uus märguanne
+ - %d uut märguannet
+
+ "Liigu avalehele"
+ "Liigu üles"
+ "Rohkem valikuid"
+ "Valmis"
+ "Kuva kõik"
+ "Valige rakendus"
+ "VÄLJAS"
+ "SEES"
+ "Alt +"
+ "Ctrl +"
+ "kustuta"
+ "sisestusklahv"
+ "Funktsiooniklahv +"
+ "Meta +"
+ "Tõstuklahv +"
+ "tühik"
+ "Sym +"
+ "Menüü +"
+ "Otsige …"
+ "Päringu tühistamine"
+ "Otsingupäring"
+ "Otsing"
+ "Päringu esitamine"
+ "Häälotsing"
+ "Jaga:"
+ "Jagamine rakendusega %s"
+ "Ahendamine"
+ Alumise lehe ahendamine
+ Alumise lehe laiendamine
+ Laiendamine poolenisti
+ Lohistamispidet topeltpuudutati
+ Lohistamispide
+ "Vasta"
+ "Video"
+ "Keeldu"
+ "Lõpeta kõne"
+ "Sissetulev kõne"
+ "Käimasolev kõne"
+ "Sissetuleva kõne filtreerimine"
+ Sisestatud tähemärgid: %1$d/%2$d
+ Tähemärgipiirang on ületatud: %1$d/%2$d
+ Kustuta tekst
+ Luba
+ Rakendus %1$s töötab ainult siis, kui lubate Google Play teenused.
+ Google Play teenuste lubamine
+ Installi
+ Rakendus %1$s töötab ainult koos Google Play teenustega, mida teie seadmes pole.
+ Google Play teenuste hankimine
+ Google Play teenuste saadavalolek
+ Viga Google Play teenustes
+ Rakendusel %1$s on probleeme Google Play teenustega. Proovige uuesti.
+ Rakendus %1$s töötab ainult koos Google Play teenustega, mida teie seadmes ei toetata.
+ Värskenda
+ Rakenduse %1$s töötamiseks peate värskendama Google Play teenuseid.
+ Google Play teenuste värskendamine
+ Rakendus %1$s töötab ainult koos Google Play teenustega, mida praegu värskendatakse.
+ Vajalik on Google Play teenuste uus versioon. See värskendab end peagi.
+ Ava telefonis
+ Logi sisse
+ Logi sisse Google\'i kontoga
+ "Kopeerimine"
+ "Link kopeeriti lõikelauale"
+ Viga
+ "Täpsemad"
+ Kuva rippmenüü
+ "Kopeeri link"
+ "Ava brauseris"
+ "Jaga linki"
+ Dialoogi ikoon
+ Vaheleht
+ Valige AM või PM
+ %1$s tundi
+ Valige tund
+ Kell %1$s
+ Minutite valimine
+ %1$s minutit
+ AM
+ Aktiveerige kellaaja sisestamiseks kellarežiim.
+ Tunnid
+ Minut
+ PM
+ Aja valimine
+ Aktiveerige kellaaja sisestamiseks tekstisisestusrežiim.
+ Uus märguanne
+ Üksuse %1$s eemaldamine
+ Rohkem kui %1$d uut märguannet
+ Vaheta järgmisele kuule
+ Vaheta eelmisele kuule
+ Alguskuupäeva valik: %1$s. Lõppkuupäeva valik: %2$s.
+ Praegune valik: %1$s
+ puudub
+ Tühista
+ OK
+ %1$s
+ Valige kuupäev
+ Valitud kuupäev
+ Päevade veerg: %1$s
+ Lõppkuupäev: %1$s
+ Sobimatu vorming.
+ Näide: %1$s
+ Kasutage: %1$s
+ Sobimatu vahemik.
+ Navigeerige praegusele aastale %1$d
+ Mine aastasse %1$d
+ Vahemikust väljas: %1$s
+ Alguskuupäev – %1$s
+ %1$s – lõppkuupäev
+ %1$s–%2$s
+ Valige vahemik
+ Alguskuupäev – lõppkuupäev
+ Salvesta
+ Alguskuupäev: %1$s
+ Kuupäev
+ Lõppkuupäev
+ Alguskuupäev
+ p
+ k
+ a
+ Täna %1$s
+ Lülitu kalendrisisestusrežiimile
+ Puudutage kalendrivaatele lülitumiseks
+ Lülitu tekstisisestusrežiimile
+ Puudutage aastavaatele lülitumiseks
+ Tühista
+ OK
+ "Määramata"
+ Parooli kuvamine
+ "„%1$s†on lõikelauale kopeeritud."
+ "Otsing"
+ "999+"
+ "%1$s, %2$s"
+ "VÄLJAS"
+ "SEES"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-eu/values-eu.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-eu/values-eu.xml
new file mode 100644
index 00000000..32650a6d
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-eu/values-eu.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d jakinarazpen berri
+ - %d jakinarazpen berri
+
+ "Joan orri nagusira"
+ "Joan gora"
+ "Aukera gehiago"
+ "Eginda"
+ "Ikusi guztiak"
+ "Aukeratu aplikazio bat"
+ "DESAKTIBATU"
+ "AKTIBATU"
+ "Alt +"
+ "Ktrl +"
+ "ezabatu"
+ "sartu"
+ "Funtzioa +"
+ "Meta +"
+ "Maius +"
+ "zuriunea"
+ "Sym +"
+ "Menua +"
+ "Bilatu…"
+ "Garbitu kontsulta"
+ "Bilaketa-kontsulta"
+ "Bilatu"
+ "Bidali kontsulta"
+ "Ahozko bilaketa"
+ "Partekatu honekin"
+ "Partekatu %s aplikazioarekin"
+ "Tolestu"
+ Tolestu pantailaren behealdean ainguratutako orria
+ Zabaldu pantailaren behealdean ainguratutako orria
+ Zabaldu erdiraino
+ Birritan sakatu da arrastatzeko kontrol-puntua
+ Arrastatzeko kontrol-puntua
+ "Erantzun"
+ "Bideoa"
+ "Baztertu"
+ "Amaitu deia"
+ "Sarrerako deia"
+ "Deia abian da"
+ "Sarrerako dei bat bistaratzen"
+ %1$d/%2$d karaktere idatzi dira
+ Karaktere-muga gainditu da: %1$d/%2$d
+ Garbitu testua
+ Gaitu
+ %1$s aplikazioak ez du funtzionatuko Google Play Services gaitzen ez baduzu.
+ Gaitu Google Play Services
+ Instalatu
+ %1$s ez da exekutatuko Google Play Services gabe, baina ez dago halakorik gailuan.
+ Lortu Google Play Services
+ Google Play Services-en erabilgarritasuna
+ Google Play Services-en errorea
+ %1$s aplikazioak arazoak ditu Google Play Services-ekin. Saiatu berriro.
+ %1$s aplikazioa ezin da erabili Google Play Services gabe, baina zure gailua ez da harekin bateragarria.
+ Eguneratu
+ %1$s ez da exekutatuko Google Play Services eguneratzen ez baduzu.
+ Eguneratu Google Play Services
+ %1$s ez da exekutatuko Google Play Services gabe; zerbitzu hori eguneratzen ari da.
+ Google Play Services-en bertsio berria behar da. Berehala eguneratuko da automatikoki.
+ Ireki telefonoan
+ Hasi saioa
+ Hasi saioa Google-ko kontuarekin
+ "Kopiatu"
+ "Arbelean kopiatu da esteka"
+ Errorea
+ "Hobespen aurreratuak"
+ Erakutsi goitibeherako menua
+ "Kopiatu esteka"
+ "Ireki arakatzailean"
+ "Partekatu esteka"
+ Leihoko ikonoa
+ Fitxa
+ Hautatu AM edo PM
+ %1$s ordu
+ Hautatu ordua
+ %1$s(r)ak dira
+ Hautatu minutuak
+ %1$s minutu
+ AM
+ Aldatu erloju modura ordua zehazteko.
+ Ordua
+ Minutua
+ PM
+ Hautatu ordua
+ Ordua idazteko, aldatu testua idazteko metodora.
+ Jakinarazpen berria
+ Kendu %1$s
+ %1$d jakinarazpen berri baino gehiago
+ Aldatu hurrengo hilabetera
+ Aldatu aurreko hilabetera
+ Hasiera-dataren hautapena: %1$s, amaiera-dataren hautapena: %2$s
+ Oraingo hautapena: %1$s
+ bat ere ez
+ Utzi
+ Ados
+ %1$s
+ Hautatu data
+ Hautatutako data
+ Egunen zutabea:%1$s
+ Amaiera-data: %1$s
+ Formatuak ez du balio.
+ Adibidea: %1$s
+ Erabili: %1$s
+ Tarteak ez du balio.
+ Joan aurtengo ikuspegira %1$d
+ Joan %1$d. urtera
+ Onartutako barrutitik kanpo: %1$s
+ Hasiera-data – %1$s
+ %1$s – Amaiera-data
+ %1$s-%2$s
+ Hautatu barrutia
+ Hasiera-data - Amaiera-data
+ Gorde
+ Hasiera-data: %1$s
+ Data
+ Amaiera-data
+ Hasiera-data
+ e
+ h
+ u
+ Gaur %1$s
+ Aldatu egutegiaren idazketa-metodora
+ Calendar-en ikuspegira aldatzeko, sakatu hau
+ Aldatu testua idazteko modura
+ Urteko ikuspegira aldatzeko, sakatu hau
+ Utzi
+ Ados
+ "Ez da ezarri"
+ Erakutsi pasahitza
+ "Arbelean kopiatu da \"%1$s\"."
+ "Bilatu"
+ "999+"
+ "%1$s, %2$s"
+ "DESAKTIBATUTA"
+ "AKTIBATUTA"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-fa/values-fa.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-fa/values-fa.xml
new file mode 100644
index 00000000..a17a998d
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-fa/values-fa.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d اعلان جدید
+ - %d اعلان جدید
+
+ "پیمایش به ØµÙØÙ‡ اصلی"
+ "Ø±ÙØªÙ† به بالا"
+ "گزینه‌های بیشتر"
+ "تمام"
+ "دیدن همه"
+ "انتخاب برنامه"
+ "خاموش"
+ "روشن"
+ "‎Alt+‎"
+ "‎Ctrl+‎"
+ "ØØ°Ù"
+ "enter"
+ "‎Function+‎"
+ "‎Meta+‎"
+ "‎Shift+‎"
+ "ÙØ§ØµÙ„Ù‡"
+ "‎Sym+‎"
+ "منو+"
+ "جستجو…â€"
+ "پاک کردن Ù¾ÙØ±Ø³Ù…ان"
+ "درخواست جستجو"
+ "جستجو"
+ "ارسال Ù¾ÙØ±Ø³Ù…ان"
+ "جستجوی Ú¯ÙØªØ§Ø±ÛŒ"
+ "هم‌رسانی با"
+ "هم‌رسانی با %s"
+ "کوچک کردن"
+ جمع کردن برگ زیرین
+ ازهم بازکردن برگ زیرین
+ گسترده کردن تا نیمه
+ روی دستگیره کشاندن دوضربه زده شد
+ دستگیره کشاندن
+ "پاسخ دادن"
+ "ویدیو"
+ "رد کردن"
+ "قطع تماس"
+ "تماس ورودی"
+ "تماس Ø¯Ø±ØØ§Ù„ انجام"
+ "Ø¯Ø±ØØ§Ù„ غربال کردن تماس ورودی"
+ نویسه‌های واردشده %1$d از %2$d
+ Ù…ØØ¯ÙˆØ¯ÛŒØª نویسه از ØØ¯ مجاز %1$d از %2$d بیشتر شده است
+ پاک کردن نوشتار
+ ÙØ¹Ø§Ù„ کردن
+ â€ØªØ§ وقتی «خدمات Google Play» را ÙØ¹Ø§Ù„ نکنید، %1$s کار نمی‌کند.
+ â€â€«Ùعال کردن «خدمات Google Play»
+ نصب
+ â€%1$s بدون خدمات Google Play Ú©Ù‡ در دستگاه شما وجود ندارد اجرا نمی‌شود.
+ â€Ø¯Ø±ÛŒØ§Ùت «خدمات Google Play»
+ â€Ø¯Ø±Ø¯Ø³ØªØ±Ø³ بودن خدمات Google Play
+ â€Ø®Ø·Ø§ در خدمات Google Play
+ â€%1$s برای Ø§Ø³ØªÙØ§Ø¯Ù‡ از خدمات Google Play با مشکل روبرو است. Ù„Ø·ÙØ§Ù‹ دوباره Ø§Ù…ØªØØ§Ù† کنید.
+ â€%1$s بدون خدمات Google Play Ú©Ù‡ در دستگاه شما پشتیبانی نمی‌شود، اجرا نخواهد شد.
+ به‌روزرسانی
+ â€ØªØ§Ø² مانی Ú©Ù‡ «خدمات Google Play» را به‌روزرسانی نکنید، %1$s اجرا نمی‌شود.
+ â€â€«Ø¨Ù‡â€ŒØ±ÙˆØ²Ø±Ø³Ø§Ù†ÛŒ «خدمات Google Play»
+ â€%1$s بدون «خدمات Google Play» Ú©Ù‡ Ø¯Ø±ØØ§Ù„ ØØ§Ø¶Ø± Ø¯Ø±ØØ§Ù„ به‌روزرسانی هستند، کار نمی‌کند.
+ â€Ù†Ø³Ø®Ù‡ جدید «خدمات Google Play» نیاز است. به‌زودی به‌طور خودکار به‌روزرسانی می‌شود.
+ باز کردن در تلÙÙ†
+ ورود به سیستم
+ â€ÙˆØ±ÙˆØ¯ به سیستم با Google‎
+ "کپی"
+ "پیوند در بریده‌دان کپی شد"
+ خطا
+ "Ù¾ÛŒØ´Ø±ÙØªÙ‡"
+ نمایش منوی کرکره‌ای
+ "کپی پیوند"
+ "بازکردن در مرورگر"
+ "هم‌رسانی پیوند"
+ نماد کادر Ú¯ÙØªÚ¯Ùˆ
+ برگه
+ انتخاب .ق.ظ. یا ب.ظ.
+ %1$s ساعت
+ انتخاب ساعت
+ ساعت %1$s
+ انتخاب دقیقه
+ %1$s دقیقه
+ ق.ظ
+ برای وارد کردن زمان، به ØØ§Ù„ت ساعت تغییر وضعیت دهید.
+ ساعت
+ دقیقه
+ ب.ظ
+ انتخاب زمان
+ برای وارد کردن زمان، به ØØ§Ù„ت ورودی نوشتاری تغییر وضعیت دهید.
+ اعلان جدید
+ برداشتن %1$s
+ بیش از %1$d اعلان جدید
+ تغییر به ماه بعدی
+ تغییر به ماه قبلی
+ تاریخ شروع انتخاب‌شده: %1$s – تاریخ پایان انتخاب‌شده: %2$s
+ انتخاب کنونی: %1$s
+ خالی
+ لغو
+ تأیید
+ %1$s
+ انتخاب تاریخ
+ تاریخ انتخابی
+ ستون روز: %1$s
+ تاریخ پایان: %1$s
+ قالب نامعتبر است.
+ مثال: %1$s
+ قالب: %1$s
+ Ù…ØØ¯ÙˆØ¯Ù‡ نامعتبر است.
+ پیمایش به سال ÙØ¹Ù„ÛŒ %1$d
+ Ø±ÙØªÙ† به سال %1$d
+ خارج از Ù…ØØ¯ÙˆØ¯Ù‡: %1$s
+ تاریخ شروع – %1$s
+ %1$s – تاریخ پایان
+ %1$s – %2$s
+ انتخاب Ù…ØØ¯ÙˆØ¯Ù‡
+ تاریخ شروع – تاریخ پایان
+ ذخیره
+ تاریخ شروع: %1$s
+ تاریخ
+ تاریخ پایان
+ تاریخ شروع
+ d
+ m
+ y
+ امروز %1$s
+ Ø±ÙØªÙ† به روش ورودی تقویم
+ برای Ø±ÙØªÙ† به نمای «تقویم» ضربه بزنید
+ Ø±ÙØªÙ† به ØØ§Ù„ت ورودی نوشتاری
+ برای Ø±ÙØªÙ† به نمای سال ضربه بزنید
+ لغو
+ تأیید
+ "تنظیم نشده"
+ نمایش گذرواژه
+ "«%1$s» در بریده‌دان کپی شد."
+ "جستجو"
+ "999+"
+ "%1$s، %2$s"
+ "خاموش"
+ "روشن"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-fi/values-fi.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-fi/values-fi.xml
new file mode 100644
index 00000000..37f25a30
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-fi/values-fi.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d uusi ilmoitus
+ - %d uutta ilmoitusta
+
+ "Siirry etusivulle"
+ "Siirry ylös"
+ "Lisäasetukset"
+ "Valmis"
+ "Näytä kaikki"
+ "Valitse sovellus"
+ "POIS PÄÄLTÄ"
+ "PÄÄLLÄ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Fn+"
+ "Meta+"
+ "Vaihto+"
+ "välilyönti"
+ "Sym+"
+ "Valikko+"
+ "Haku…"
+ "Tyhjennä kysely"
+ "Hakukysely"
+ "Haku"
+ "Lähetä kysely"
+ "Puhehaku"
+ "Jaa…"
+ "Jaa: %s"
+ "Tiivistä"
+ Tiivistä alapaneeli
+ Laajenna alapaneeli
+ Laajenna puoliväliin
+ Vetokahvaa kaksoisnapautettu
+ Vetokahva
+ "Vastaa"
+ "Video"
+ "Hylkää"
+ "Lopeta puhelu"
+ "Saapuva puhelu"
+ "Käynnissä oleva puhelu"
+ "Seulotaan saapuvaa puhelua"
+ %1$d/%2$d merkkiä kirjoitettu
+ Merkkiraja ylitetty: %1$d/%2$d
+ Tyhjennä teksti
+ Ota käyttöön
+ %1$s ei toimi, ellet ota Google Play Palveluita käyttöön.
+ Ota Google Play Palvelut käyttöön
+ Asenna
+ %1$s ei toimi ilman Google Play Palveluita, jotka puuttuvat laitteeltasi.
+ Asenna Google Play Palvelut
+ Google Play Palveluiden saatavuus
+ Virhe Google Play -palveluissa
+ Sovelluksella %1$s on ongelmia Google Play Palveluiden kanssa. Yritä uudelleen.
+ %1$s ei toimi ilman Google Play Palveluita, joita laitteesi ei tue.
+ Päivitä
+ %1$s ei toimi, ellet päivitä Google Play Palveluita.
+ Päivitä Google Play Palvelut
+ %1$s ei toimi ilman Google Play Palveluita, joita päivitetään tällä hetkellä.
+ Uusi Google Play Palveluiden versio tarvitaan. Se päivittyy pian.
+ Avaa puhelimessa
+ Kirjaudu sisään
+ Kirjaudu Google-tilille
+ "Kopioi"
+ "Linkki kopioitu leikepöydälle"
+ Virhe
+ "Lisäasetukset"
+ Näytä avattava valikko
+ "Kopioi linkki"
+ "Avaa selaimessa"
+ "Jaa linkki"
+ Valintaikkunan kuvake
+ Välilehti
+ Valitse AP tai IP
+ %1$s tuntia
+ Valitse tunti
+ klo %1$s
+ Valitse minuutit
+ %1$s minuuttia
+ ap
+ Vaihda ajan syöttämiseen kellotilassa.
+ Tunnit
+ Minuutti
+ ip
+ Valitse aika
+ Vaihda ajan syöttämiseen tekstitilassa.
+ Uusi ilmoitus
+ Poista %1$s
+ Yli %1$d uutta ilmoitusta
+ Vaihda seuraavaan kuukauteen
+ Vaihda edelliseen kuukauteen
+ Alkamispäivän valinta: %1$s – päättymispäivän valinta: %2$s
+ Nykyinen valinta: %1$s
+ –
+ Peru
+ OK
+ %1$s
+ Valitse päivämäärä
+ Valittu päivämäärä
+ Päiväsarake: %1$s
+ Päättyy %1$s
+ Virheellinen muoto
+ Esimerkki: %1$s
+ Käytä muotoa %1$s
+ Virheellinen alue
+ Siirry kuluvaan vuoteen: %1$d
+ Siirry vuoteen %1$d
+ Aikavälin ulkop.: %1$s
+ Alkamispäivä – %1$s
+ %1$s – päättymispäivä
+ %1$s – %2$s
+ Valitse jakso
+ Alkamispäivä – päättymispäivä
+ Tallenna
+ Alkaa %1$s
+ Päivämäärä
+ Päättymispäivä
+ Alkamispäivä
+ p
+ k
+ v
+ Tänään: %1$s
+ Vaihda syöttötavaksi kalenteri
+ Siirry kalenterinäkymään napauttamalla
+ Valitse syöttötavaksi teksti
+ Siirry vuosinäkymään napauttamalla
+ Peru
+ OK
+ "Ei asetettu"
+ Näytä salasana
+ "%1$s kopioitiin leikepöydälle."
+ "Haku"
+ "999+"
+ "%1$s, %2$s"
+ "POIS KÄYTÖSTÄ"
+ "KÄYTÖSSÄ"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
new file mode 100644
index 00000000..58a51c62
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d nouvelle notification
+ - %d nouvelles notifications
+
+ "Revenir à l\'accueil"
+ "Revenir en arrière"
+ "Autres options"
+ "Terminé"
+ "Tout afficher"
+ "Sélectionner une application"
+ "DÉSACTIVER"
+ "ACTIVER"
+ "Alt+"
+ "Ctrl+"
+ "supprimer"
+ "entrée"
+ "Fonction+"
+ "Méta+"
+ "Maj+"
+ "espace"
+ "Sym+"
+ "Menu+"
+ "Rechercher…"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+ "Réduire"
+ Réduire la zone de contenu dans le bas de l\'écran
+ Développer la zone de contenu dans le bas de l\'écran
+ Développer à moitié
+ Poignée de déplacement touchée deux fois
+ Faire glisser la poignée
+ "Répondre"
+ "Vidéo"
+ "Refuser"
+ "Raccrocher"
+ "Appel entrant"
+ "Appel en cours"
+ "Filtrer un appel entrant"
+ Caractères entrés : %1$d sur %2$d
+ Limite de caractère dépassée : %1$d sur %2$d
+ Effacer le texte
+ Activer
+ %1$s ne fonctionnera pas tant que vous n\'aurez pas activé les services Google Play.
+ Activer les services Google Play
+ Installer
+ %1$s ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre appareil.
+ Installer les services Google Play
+ Disponibilité des services Google Play
+ Erreur liée aux services Google Play
+ L\'application %1$s éprouve un problème avec les services Google Play. Veuillez réessayer.
+ L\'application %1$s ne fonctionnera pas sans les services Google Play, qui ne sont pas pris en charge par votre appareil.
+ Mettre à jour
+ %1$s ne fonctionnera pas tant que vous n\'aurez pas mis à jour les services Google Play.
+ Mettre à jour les services Google Play
+ %1$s ne fonctionnera pas sans les services Google Play, qui sont actuellement mis à jour.
+ La nouvelle version des services Google Play est nécessaire. Elle sera bientôt installée automatiquement.
+ Ouvrir sur le téléphone
+ Connexion
+ Se connecter avec Google
+ "Copier"
+ "Lien copié dans le presse-papiers"
+ Erreur
+ "Paramètres avancés"
+ Afficher le menu déroulant
+ "Copier le lien"
+ "Ouvrir dans le navigateur"
+ "Partager le lien"
+ Icône de boîte de dialogue
+ Onglet
+ Sélectionner AM ou PM
+ %1$s heure(s)
+ Sélectionner l\'heure
+ %1$s heures
+ Sélectionnez les minutes
+ %1$s minutes
+ AM
+ Passer au mode Horloge pour entrer l\'heure.
+ Heure
+ Minute
+ PM
+ Sélectionner l\'heure
+ Passer au mode Entrée de texte pour entrer l\'heure.
+ Nouvelle notification
+ Supprimer %1$s
+ Plus de %1$d nouvelles notifications
+ Passer au mois suivant
+ Passer au mois précédent
+ Sélection de la date de début : %1$s – Sélection de la date de fin : %2$s
+ Sélection actuelle : %1$s
+ aucune
+ Annuler
+ OK
+ %1$s
+ Sélectionnez la date
+ Date sélectionnée
+ Colonne des jours : %1$s
+ Date de fin : %1$s
+ Format incorrect
+ Exemple : %1$s
+ Utiliser : %1$s
+ Plage incorrecte.
+ Naviguer à l\'année en cours %1$d
+ Naviguer vers l\'année %1$d
+ Hors de la plage : %1$s
+ Du (date de début) au %1$s
+ Du %1$s au (date de fin)
+ Du %1$s au %2$s
+ Sélectionnez la plage
+ Du (date de début) au (date de fin)
+ Enregistrer
+ Date de début : %1$s
+ Date
+ Date de fin
+ Date de début
+ j
+ m
+ a
+ %1$s Aujourd\'hui
+ Passer au mode d\'entrée Agenda
+ Toucher pour passer à la vue du calendrier
+ Passer au mode d\'entrée Texte
+ Toucher pour passer à la vue de l\'année
+ Annuler
+ OK
+ "Non défini"
+ Afficher le mot de passe
+ "« %1$s » copié dans le presse-papiers."
+ "Rechercher"
+ "999+"
+ "%1$s, %2$s"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-fr/values-fr.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-fr/values-fr.xml
new file mode 100644
index 00000000..4a41a397
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-fr/values-fr.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d nouvelle notification
+ - %d nouvelles notifications
+
+ "Revenir à l\'accueil"
+ "Revenir en haut de la page"
+ "Autres options"
+ "OK"
+ "Tout afficher"
+ "Sélectionner une application"
+ "NON"
+ "OUI"
+ "Alt+"
+ "Ctrl+"
+ "supprimer"
+ "entrée"
+ "Fonction+"
+ "Méta+"
+ "Maj+"
+ "espace"
+ "Sym+"
+ "Menu+"
+ "Rechercher…"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+ "Réduire"
+ Réduire la bottom sheet
+ Développer la bottom sheet
+ Développer en entier
+ A appuyé deux fois sur la poignée de déplacement
+ Poignée de déplacement
+ "Répondre"
+ "Vidéo"
+ "Refuser"
+ "Raccrocher"
+ "Appel entrant"
+ "Appel en cours"
+ "Filtrage d\'un appel entrant"
+ Caractères saisis %1$d sur %2$d
+ Nombre maximal de caractères dépassé : %1$d sur %2$d
+ Effacer le texte
+ Activer
+ %1$s ne fonctionnera pas tant que vous n\'aurez pas activé les services Google Play.
+ Activer les services Google Play
+ Installer
+ %1$s ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre appareil.
+ Installer les services Google Play
+ Disponibilité des services Google Play
+ Erreur liée aux services Google Play
+ L\'application %1$s rencontre des problèmes avec les services Google Play. Veuillez réessayer.
+ %1$s ne fonctionnera pas sans les services Google Play, qui ne sont pas compatibles avec votre appareil.
+ Mettre à jour
+ %1$s ne fonctionnera pas tant que vous n\'aurez pas mis à jour les services Google Play.
+ Mettre à jour les services Google Play
+ %1$s ne fonctionnera pas sans les services Google Play, qui sont en cours de mise à jour.
+ La nouvelle version des services Google Play est nécessaire. Elle sera bientôt installée automatiquement.
+ Ouvrir sur le téléphone
+ Se connecter
+ Se connecter avec Google
+ "Copier"
+ "Lien copié dans le presse-papiers"
+ Erreur
+ "Paramètres avancés"
+ Afficher le menu déroulant
+ "Copier le lien"
+ "Ouvrir dans un navigateur"
+ "Partager le lien"
+ Icône de la boîte de dialogue
+ Tabulation
+ Sélectionner le format AM ou PM
+ %1$s heures
+ Sélectionnez une heure
+ %1$s h
+ Sélectionner des minutes
+ %1$s min
+ AM
+ Passer en mode horloge pour la saisie de l\'heure.
+ Heure
+ Minute
+ PM
+ Sélectionner l\'heure
+ Passer en mode saisie de texte pour la saisie de l\'heure.
+ Nouvelle notification
+ Supprimer %1$s
+ Plus de %1$d nouvelles notifications
+ Passer au mois suivant
+ Passer au mois précédent
+ Date de début sélectionnée : %1$s – Date de fin sélectionnée : %2$s
+ Sélection actuelle : %1$s
+ aucune
+ Annuler
+ OK
+ %1$s
+ Sélectionnez une date
+ Date sélectionnée
+ Colonne du jour de la semaine : %1$s
+ Date de fin : %1$s
+ Format incorrect.
+ Exemple : %1$s
+ Utiliser %1$s
+ Plage non valide.
+ Accéder à l\'année en cours : %1$d
+ Accéder à l\'année %1$d
+ Hors limite : %1$s
+ Date de début – %1$s
+ %1$s – Date de fin
+ %1$s - %2$s
+ Sélectionnez une période
+ Date de début – Date de fin
+ Enregistrer
+ Date de début : %1$s
+ Date
+ Date de fin
+ Date de début
+ j
+ m
+ a
+ Aujourd\'hui : %1$s
+ Passer au mode de saisie Agenda
+ Appuyer pour passer à la vue \"Agenda\"
+ Passer au mode de saisie Texte
+ Appuyer pour passer à la vue \"Année\"
+ Annuler
+ OK
+ "Non définie"
+ Afficher le mot de passe
+ "\"%1$s\" copié dans le presse-papier."
+ "Rechercher"
+ "999+"
+ "%1$s, %2$s"
+ "DÉSACTIVÉ"
+ "ACTIVÉ"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-gl/values-gl.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-gl/values-gl.xml
new file mode 100644
index 00000000..43c30c0f
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-gl/values-gl.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d notificación nova
+ - %d notificacións novas
+
+ "Vai ao inicio"
+ "Vai cara arriba"
+ "Máis opcións"
+ "Feito"
+ "Ver todo"
+ "Selecciona unha aplicación"
+ "DESACTIVADO"
+ "ACTIVADO"
+ "Alt +"
+ "Ctrl +"
+ "eliminar"
+ "intro"
+ "Función +"
+ "Meta +"
+ "Maiús +"
+ "espazo"
+ "Sym +"
+ "Menú +"
+ "Busca…"
+ "Borra a consulta"
+ "Busca a consulta"
+ "Realiza buscas"
+ "EnvÃa a consulta"
+ "Busca por voz"
+ "Comparte contido con"
+ "Comparte contido coa aplicación %s"
+ "Contrae"
+ Contrae o panel inferior
+ Desprega o panel inferior
+ Despregar ata a metade
+ Controlador de arrastre tocado dúas veces
+ Controlador de arrastre
+ "Contestar"
+ "VÃdeo"
+ "Rexeitar"
+ "Colgar"
+ "Chamada entrante"
+ "Chamada en curso"
+ "Filtrando chamada entrante"
+ IntroducÃronse %1$d caracteres de %2$d
+ IntroducÃronse %1$d caracteres, pero o lÃmite é de %2$d
+ Borra texto
+ Activar
+ %1$s non funcionará a menos que actives os servizos de Google Play.
+ Activar servizos de Google Play
+ Instalar
+ %1$s non se executará se o teu dispositivo non ten instalados os servizos de Google Play.
+ Descargar servizos de Google Play
+ Dispoñibilidade dos servizos de Play
+ Erro nos servizos de Google Play
+ %1$s ten problemas cos servizos de Google Play. Téntao de novo.
+ %1$s non se executará sen os servizos de Google Play, que non son compatibles co teu dispositivo.
+ Actualizar
+ %1$s non se executará a menos que actualices os servizos de Google Play.
+ Actualizar os servizos de Google Play
+ %1$s non se executará sen os servizos de Google Play, que se están actualizando neste momento.
+ NecesÃtase a nova versión dos servizos de Google Play. Actualizarase en breve.
+ Abrir no teléfono
+ Iniciar sesión
+ Iniciar sesión con Google
+ "Copiar"
+ "Copiouse a ligazón no portapapeis"
+ Produciuse un erro
+ "Configuración avanzada"
+ Mostra o menú despregable
+ "Copiar ligazón"
+ "Abrir no navegador"
+ "Compartir ligazón"
+ Icona de cadro de diálogo
+ Pestana
+ Seleccionar a.m. ou p.m.
+ %1$s horas
+ Seleccionar hora
+ %1$s en punto
+ Seleccionar minutos
+ %1$s minutos
+ a.m.
+ Cambiar ao modo de reloxo para introducir a hora.
+ Hora
+ Minuto
+ p.m.
+ Seleccionar hora
+ Cambia ao modo de introdución de texto para introducir a hora.
+ Notificación nova
+ Quita %1$s
+ Máis de %1$d notificacións novas
+ Cambiar ao mes seguinte
+ Cambiar ao mes anterior
+ Selección de data de inicio: %1$s - Selección de data de finalización: %2$s
+ Selección actual: %1$s
+ ningunha
+ Cancelar
+ Aceptar
+ %1$s
+ Selecciona unha data
+ Data seleccionada
+ Columna de dÃas: %1$s
+ Data de finalización: %1$s
+ O formato non é válido.
+ Exemplo: %1$s
+ Usa este formato: %1$s
+ O intervalo de datas non é válido.
+ Ir ao ano actual (%1$d)
+ Ir ao ano %1$d
+ Só se admiten datas do intervalo: %1$s
+ Data de inicio - %1$s
+ %1$s - data de finalización
+ %1$s - %2$s
+ Selecciona un intervalo de datas
+ Data de inicio - data de finalización
+ Gardar
+ Data de inicio: %1$s
+ Data
+ Data de finalización
+ Data de inicio
+ d
+ m
+ a
+ Hoxe (%1$s)
+ Cambiar ao modo de entrada de calendario
+ Tocar para cambiar á vista de calendario
+ Cambiar ao modo de introdución de texto
+ Tocar para cambiar á vista de ano
+ Cancelar
+ Aceptar
+ "Sen configurar"
+ Mostra o contrasinal
+ "Copiouse \"%1$s\" no portapapeis."
+ "Buscar"
+ ">999"
+ "%1$s, %2$s"
+ "DESACTIVADO"
+ "ACTIVADO"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-gu/values-gu.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-gu/values-gu.xml
new file mode 100644
index 00000000..98ad4bbd
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-gu/values-gu.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d નવà«àª‚ નોટિફિકેશન
+ - %d નવા નોટિફિકેશન
+
+ "ઘરનો રસà«àª¤à«‹ બતાવો"
+ "ઉપર નૅવિગેટ કરો"
+ "વધૠવિકલà«àªªà«‹"
+ "થઈ ગયà«àª‚"
+ "બધી જà«àª“"
+ "àªàªªà«àª²àª¿àª•ેશન પસંદ કરો"
+ "બંધ"
+ "ચાલà«"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "શોધો…"
+ "કà«àªµà«‡àª°à«€ સાફ કરો"
+ "શોધ કà«àªµà«‡àª°à«€"
+ "શોધો"
+ "કà«àªµà«‡àª°à«€ સબમિટ કરો"
+ "વૉઇસ શોધ"
+ "આની સાથે શેર કરો"
+ "%sની સાથે શેર કરો"
+ "સંકà«àªšàª¿àª¤ કરો"
+ બોટમ શીટ નાની કરો
+ બોટમ શીટ મોટી કરો
+ અડધે સà«àª§à«€ મોટà«àª‚ કરો
+ ઑબà«àªœà«‡àª•à«àªŸ ખેંચવાના હૅનà«àª¡àª² પર બે વાર ટૅપ કરà«àª¯à«àª‚
+ ઑબà«àªœà«‡àª•à«àªŸ ખેંચવાનà«àª‚ હૅનà«àª¡àª²
+ "જવાબ"
+ "વીડિયો"
+ "નકારો"
+ "સમાપà«àª¤ કરો"
+ "ઇનકમિંગ કૉલ"
+ "ચાલૠકૉલ"
+ "ઇનકમિંગ કૉલનà«àª‚ સà«àª•à«àª°à«€àª¨àª¿àª‚ગ થાય છે"
+ %2$dમાંથી %1$d અકà«àª·àª°à«‹ દાખલ કરà«àª¯àª¾
+ %2$dમાંથી %1$dની વરà«àª£ મરà«àª¯àª¾àª¦àª¾ ઓળંગાઈ ગઈ છે
+ ટેકà«àª¸à«àªŸ સાફ કરો
+ સકà«àª·àª® કરો
+ તમે Google Play સેવાઓ સકà«àª·àª® કરશો નહીં તà«àª¯àª¾àª‚ સà«àª§à«€ %1$s કારà«àª¯ કરશે નહીં.
+ Google Play સેવાઓ સકà«àª·àª® કરો
+ ઇનà«àª¸à«àªŸà«‰àª² કરો
+ %1$s, Google Play સેવાઓ વગર ચાલશે નહીં, જે તમારા ઉપકરણમાંથી ખૂટે છે.
+ Google Play સેવાઓ મેળવો
+ Google Play સેવાઓની ઉપલબà«àª§àª¤àª¾
+ Google Play સેવાઓની àªà«‚લ
+ %1$s ને Google Play સેવાઓમાં મà«àª¶à«àª•ેલી આવી રહી છે. કૃપા કરીને ફરી પà«àª°àª¯àª¾àª¸ કરો.
+ %1$s, Google Play સેવાઓ વગર ચાલશે નહીં, જે તમારા ઉપકરણ દà«àªµàª¾àª°àª¾ સમરà«àª¥àª¿àª¤ નથી.
+ અપડેટ કરો
+ તમે Google Play સેવાઓ અપડેટ કરશો નહીં તà«àª¯àª¾àª‚ સà«àª§à«€ %1$s શરૂ થશે નહીં.
+ Google Play સેવાઓ અપડેટ કરો
+ %1$s, Google Play સેવાઓ વગર શરૂ થશે નહીં, જે વરà«àª¤àª®àª¾àª¨àª®àª¾àª‚ અપડેટ થઈ રહી છે.
+ Google Play સેવાઓના નવા સંસà«àª•રણની જરૂર છે. તે ટૂંક સમયમાં પોતાને અપડેટ કરશે.
+ ફોનમાં ખોલો
+ સાઇન ઇન કરો
+ Google માં સાઇન ઇન કરો
+ "કૉપિ કરો"
+ "કà«àª²àª¿àªªàª¬à«‹àª°à«àª¡ પર લિંક કૉપિ કરી"
+ àªà«‚લ
+ "વિગતવાર"
+ ડà«àª°à«‰àªªàª¡àª¾àª‰àª¨ મેનૂ બતાવો
+ "લિંક કૉપિ કરો"
+ "બà«àª°àª¾àª‰àªàª°àª®àª¾àª‚ ખોલો"
+ "લિંક શેર કરો"
+ સંવાદનà«àª‚ આઇકન
+ ટૅબ
+ AM અથવા PM પસંદ કરો
+ %1$s કલાક
+ સમય પસંદ કરો
+ %1$s વાગà«àª¯àª¾ છે
+ મિનિટ પસંદ કરો
+ %1$s મિનિટ
+ AM
+ સમય દાખલ કરવા માટે ઘડિયાળ મોડમાં સà«àªµàª¿àªš કરો.
+ કલાક
+ મિનિટ
+ PM
+ સમય પસંદ કરો
+ સમય દાખલ કરવા માટે ટેકà«àª¸à«àªŸ ઇનપà«àªŸ મોડમાં સà«àªµàª¿àªš કરો.
+ નવà«àª‚ નોટિફિકેશન
+ %1$s કાઢી નાખો
+ %1$dથી વધૠનવા નોટિફિકેશન
+ આગલા મહિના પર બદલો
+ પાછલા મહિના પર બદલો
+ પà«àª°àª¾àª°àª‚ઠતારીખની પસંદગી: %1$s – સમાપà«àª¤àª¿ તારીખની પસંદગી: %2$s
+ હાલની પસંદગી: %1$s
+ કોઈ નહીં
+ રદ કરો
+ ઓકે
+ %1$s
+ તારીખ પસંદ કરો
+ પસંદ કરેલી તારીખ
+ દિવસોની કૉલમ: %1$s
+ સમાપà«àª¤àª¿ તારીખ %1$s
+ અમાનà«àª¯ ફોરà«àª®à«‡àªŸ.
+ ઉદાહરણ: %1$s
+ આનો ઉપયોગ કરો: %1$s
+ અમાનà«àª¯ શà«àª°à«‡àª£à«€.
+ ચાલૠવરà«àª· %1$d પર નૅવિગેટ કરો
+ %1$dના વરà«àª· પર નૅવિગેટ કરો
+ આ શà«àª°à«‡àª£à«€àª¨à«€ બહાર છે: %1$s
+ શરૂ કરવાની તારીખ – %1$s
+ %1$s – સમાપà«àª¤àª¿àª¨à«€ તારીખ
+ %1$s – %2$s
+ શà«àª°à«‡àª£à«€ પસંદ કરો
+ શરૂ કરવાની તારીખ – સમાપà«àª¤àª¿àª¨à«€ તારીખ
+ સાચવો
+ પà«àª°àª¾àª°àª‚ઠતારીખ %1$s
+ તારીખ
+ સમાપà«àª¤àª¿àª¨à«€ તારીખ
+ શરૂ કરવાની તારીખ
+ d
+ m
+ y
+ આજે %1$s
+ કૅલેનà«àª¡àª° ઇનપà«àªŸ મોડ પર સà«àªµàª¿àªš કરો
+ Calendar વà«àª¯à«‚ પર સà«àªµàª¿àªš કરવા માટે ટૅપ કરો
+ ટેકà«àª¸à«àªŸ ઇનપà«àªŸ મોડ પર સà«àªµàª¿àªš કરો
+ વરà«àª· વà«àª¯à«‚ પર સà«àªµàª¿àªš કરવા માટે ટૅપ કરો
+ રદ કરો
+ ઓકે
+ "સેટ કરà«àª¯à«àª‚ નથી"
+ પાસવરà«àª¡ બતાવો
+ "\"%1$s\"ને કà«àª²àª¿àªª બોરà«àª¡ પર કૉપિ કરà«àª¯à«‹."
+ "શોધો"
+ "999+"
+ "%1$s, %2$s"
+ "બંધ કરો"
+ "ચાલૠકરો"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h320dp-port-v13/values-h320dp-port-v13.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h320dp-port-v13/values-h320dp-port-v13.xml
new file mode 100644
index 00000000..41f97eea
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h320dp-port-v13/values-h320dp-port-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 8dp
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h360dp-land-v13/values-h360dp-land-v13.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h360dp-land-v13/values-h360dp-land-v13.xml
new file mode 100644
index 00000000..4badce11
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h360dp-land-v13/values-h360dp-land-v13.xml
@@ -0,0 +1,12 @@
+
+
+ 4dp
+ 18dp
+ 40dp
+ 2dp
+ 2dp
+ 40dp
+ 20dp
+ 128dp
+ 4dp
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h480dp-land-v13/values-h480dp-land-v13.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h480dp-land-v13/values-h480dp-land-v13.xml
new file mode 100644
index 00000000..86eb4225
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h480dp-land-v13/values-h480dp-land-v13.xml
@@ -0,0 +1,12 @@
+
+
+ 0dp
+ 22dp
+ 48dp
+ 2dp
+ 2dp
+ 48dp
+ 20dp
+ 168dp
+ 0dp
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h550dp-port-v13/values-h550dp-port-v13.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h550dp-port-v13/values-h550dp-port-v13.xml
new file mode 100644
index 00000000..dce1136d
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h550dp-port-v13/values-h550dp-port-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 24dp
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
new file mode 100644
index 00000000..e38bb90b
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 54dip
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
new file mode 100644
index 00000000..d5a138ef
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
@@ -0,0 +1,8 @@
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hi/values-hi.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hi/values-hi.xml
new file mode 100644
index 00000000..6d1a4bbc
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hi/values-hi.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d नई सूचनाà¤à¤‚
+ - %d नई सूचनाà¤à¤‚
+
+ "होम पेज पर जाà¤à¤‚"
+ "वापस जाà¤à¤‚"
+ "ज़à¥à¤¯à¤¾à¤¦à¤¾ विकलà¥à¤ª"
+ "हो गया"
+ "सà¤à¥€ देखें"
+ "कोई à¤à¤ªà¥à¤²à¤¿à¤•ेशन चà¥à¤¨à¥‡à¤‚"
+ "बंद"
+ "चालू"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "खोजें…"
+ "कà¥â€à¤µà¥‡à¤°à¥€ हटाà¤à¤‚"
+ "सरà¥à¤š कà¥à¤µà¥‡à¤°à¥€"
+ "खोजें"
+ "कà¥à¤µà¥‡à¤°à¥€ सबमिट करें"
+ "बोलकर खोजें"
+ "इससे शेयर करें:"
+ "%s से शेयर करें"
+ "छोटा करें"
+ बॉटम शीट को छोटा करें
+ बॉटम शीट को बड़ा करें
+ पूरी तरह बड़ा करें
+ खींचकर छोड़ने वाले हैंडल पर दो बार टैप किया गया
+ खींचकर छोड़ने वाला हैंडल
+ "जवाब दें"
+ "वीडियो"
+ "असà¥à¤µà¥€à¤•ार करें"
+ "कॉल काटें"
+ "आने वाला (इनकमिंग) कॉल"
+ "पहले से जारी कॉल"
+ "इनकमिंग कॉल को सà¥à¤•à¥à¤°à¥€à¤¨ किया जा रहा है"
+ %2$d वरà¥à¤£à¥‹à¤‚ में से %1$d वरà¥à¤£ दरà¥à¤œ किठगà¤
+ अà¤à¥€ %1$d वरà¥à¤£ हैं जबकि %2$d से ज़à¥à¤¯à¤¾à¤¦à¤¾ नहीं होने चाहिà¤
+ टेकà¥à¤¸à¥à¤Ÿ मिटाà¤à¤‚
+ चालू करें
+ जब तक आप Google Play सेवाà¤à¤‚ चालू नहीं करते, %1$s काम नहीं करेगा.
+ Google Play सेवाà¤à¤‚ चालू करें
+ इंसà¥à¤Ÿà¥‰à¤² करें
+ %1$s उन Google Play सेवाओं के बिना नहीं चलेगा जो आपके डिवाइस में उपलबà¥à¤§ नहीं हैं.
+ Google Play सेवाà¤à¤‚ इंसà¥à¤Ÿà¥‰à¤² करें
+ Google Play सेवाà¤à¤‚ उपलबà¥à¤§ हैं
+ Google Play सेवाओं से जà¥à¤¡à¤¼à¥€ गड़बड़ी
+ %1$s को Google Play सेवाओं के साथ समसà¥à¤¯à¤¾ आ रही है. कृपया फिर से कोशिश करें.
+ %1$s उन Google Play सेवाओं के बिना नहीं चलेगा, जो आपके डिवाइस पर काम नहीं करती हैं.
+ अपडेट करें
+ %1$s तब तक नहीं चलेगा जब तक आप Google Play सेवाओं को अपडेट नहीं करते.
+ Google Play सेवाओं को अपडेट करें
+ %1$s उन Google Play सेवाओं के बिना नहीं चलेगा जो अà¤à¥€ अपडेट हो रही हैं.
+ Google Play सेवाओं के नठवरà¥à¤¶à¤¨ की ज़रूरत है. यह जलà¥à¤¦ ही अपने आप अपडेट हो जाà¤à¤—ा.
+ फ़ोन पर खोलें
+ साइन इन करें
+ Google के ज़रिठसाइन इन करें
+ "कॉपी करें"
+ "लिंक कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡ पर कॉपी किया गया"
+ गड़बड़ी
+ "बेहतर सेटिंग"
+ डà¥à¤°à¥‰à¤ªà¤¡à¤¾à¤‰à¤¨ मेनà¥à¤¯à¥‚ दिखाà¤à¤‚
+ "लिंक कॉपी करें"
+ "बà¥à¤°à¤¾à¤‰à¤œà¤¼à¤° में खोलें"
+ "लिंक शेयर करें"
+ डायलॉग का आइकॉन
+ टैब
+ AM या PM चà¥à¤¨à¥‡à¤‚
+ %1$s घंटे
+ घंटा चà¥à¤¨à¥‡à¤‚
+ %1$s बजे
+ मिनट चà¥à¤¨à¥‡à¤‚
+ %1$s मिनट
+ पूरà¥à¤µà¤¾à¤¹à¥à¤¨
+ समय इनपà¥à¤Ÿ के लिठघड़ी मोड पर जाà¤à¤‚.
+ घंटा
+ मिनट
+ अपराहà¥à¤¨
+ समय चà¥à¤¨à¥‡à¤‚
+ समय इनपà¥à¤Ÿ के लिठलेख इनपà¥à¤Ÿ मोड पर जाà¤à¤‚.
+ नई सूचना
+ %1$s हटाà¤à¤‚
+ %1$d से ज़à¥à¤¯à¤¾à¤¦à¤¾ नई सूचनाà¤à¤‚
+ अगले महीने पर जाà¤à¤‚
+ पिछले महीने पर जाà¤à¤‚
+ शà¥à¤°à¥‚ होने की तारीख चà¥à¤¨à¥‡à¤‚: %1$s – खतà¥à¤® होने की तारीख चà¥à¤¨à¥‡à¤‚: %2$s
+ फ़िलहाल, यह चà¥à¤¨à¤¾ गया है: %1$s
+ कोई à¤à¥€ तारीख नहीं चà¥à¤¨à¥€ गई
+ रदà¥à¤¦ करें
+ ठीक है
+ %1$s
+ तारीख चà¥à¤¨à¥‡à¤‚
+ चà¥à¤¨à¥€ गई तारीख
+ दिनों का कॉलम: %1$s
+ खतà¥à¤® होने की तारीख %1$s
+ गलत फ़ॉरà¥à¤®à¥ˆà¤Ÿ.
+ उदाहरण: %1$s
+ %1$s का इसà¥à¤¤à¥‡à¤®à¤¾à¤² करें
+ तारीखों की अमानà¥à¤¯ सीमा.
+ मौजूदा साल %1$d पर जाà¤à¤‚
+ साल %1$d पर जाà¤à¤‚
+ चà¥à¤¨à¥€ गई तारीख मानà¥à¤¯ नहीं है: %1$s
+ शà¥à¤°à¥‚ होने की तारीख – %1$s
+ %1$s – खतà¥à¤® होने की तारीख
+ %1$s – %2$s
+ रेंज चà¥à¤¨à¥‡à¤‚
+ शà¥à¤°à¥‚ होने की तारीख – खतà¥à¤® होने की तारीख
+ सेव करें
+ शà¥à¤°à¥‚ होने की तारीख %1$s
+ तारीख
+ खतà¥à¤® होने की तारीख
+ शà¥à¤°à¥‚ होने की तारीख
+ d
+ m
+ y
+ आज %1$s
+ कैलेंडर के इनपà¥à¤Ÿ मोड पर सà¥à¤µà¤¿à¤š करें
+ कैलेंडर के वà¥à¤¯à¥‚ पर सà¥à¤µà¤¿à¤š करने के लिठटैप करें
+ टेकà¥à¤¸à¥à¤Ÿ के इनपà¥à¤Ÿ मोड पर सà¥à¤µà¤¿à¤š करें
+ साल के वà¥à¤¯à¥‚ पर सà¥à¤µà¤¿à¤š करने के लिठटैप करें
+ रदà¥à¤¦ करें
+ ठीक है
+ "सेट नहीं है"
+ पासवरà¥à¤¡ दिखाà¤à¤‚
+ "\"%1$s\" कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡ पर कॉपी किया गया."
+ "खोजें"
+ "999+"
+ "%1$s, %2$s"
+ "बंद"
+ "चालू"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hr/values-hr.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hr/values-hr.xml
new file mode 100644
index 00000000..e97194be
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hr/values-hr.xml
@@ -0,0 +1,141 @@
+
+
+
+ - %d nova obavijest
+ - %d nove obavijesti
+ - %d novih obavijesti
+
+ "Idi na poÄetnu"
+ "Natrag"
+ "Više opcija"
+ "Gotovo"
+ "Prikaži sve"
+ "Odabir aplikacije"
+ "ISKLJUÄŒENO"
+ "UKLJUÄŒENO"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "svemir"
+ "Sym+"
+ "Menu+"
+ "Pretražite…"
+ "Izbriši upit"
+ "Upit za pretraživanje"
+ "Pretraži"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeli s"
+ "Dijeli putem aplikacije %s"
+ "Sažmi"
+ Sažmite donju tablicu
+ Proširite donju tablicu
+ Proširi donju polovicu
+ Dvaput dodirnut marker za povlaÄenje
+ Marker za povlaÄenje
+ "Odgovori"
+ "Videozapis"
+ "Odbij"
+ "Prekini"
+ "Dolazni poziv"
+ "Poziv u tijeku"
+ "Filtriranje dolaznog poziva"
+ Uneseno znakova: %1$d od %2$d
+ PremaÅ¡eno je ograniÄenje broja znakova: %1$d od %2$d
+ Brisanje teksta
+ Omogući
+ %1$s neće funkcionirati ako ne omogućite usluge Google Playa.
+ Omogućivanje usluga Google Playa
+ Instaliraj
+ %1$s neće funkcionirati bez usluga Google Playa koje nisu instalirane na vašem uređaju.
+ Preuzimanje usluga Google Playa
+ Dostupnost usluga za Google Play
+ Pogreška Usluga za Google Play
+ %1$s ima poteškoća s uslugama Google Playa. Pokušajte ponovo.
+ %1$s neće funkcionirati bez usluga Google Playa koje vaš uređaj ne podržava.
+ Ažuriraj
+ %1$s neće funkcionirati ako ne ažurirate Google Play usluge.
+ Ažuriranje usluga Google Playa
+ %1$s neće se pokrenuti bez usluga Google Playa koje se trenutaÄno ažuriraju.
+ Potrebna je nova verzija usluga Google Playa. Uskoro će se ažurirati.
+ Otvori na telefonu
+ Prijava
+ Prijava putem Googlea
+ "Kopiraj"
+ "Veza je kopirana u međuspremnik"
+ Pogreška
+ "Napredno"
+ Prikaži padajući izbornik
+ "Kopiraj vezu"
+ "Otvori u pregledniku"
+ "Podijeli vezu"
+ Ikona dijaloga
+ Kartica
+ Odaberite prijepodne ili poslijepodne
+ %1$s h
+ Odaberite sat
+ %1$s h
+ Odaberite minute
+ %1$s min
+ AM
+ PrijeÄ‘ite na naÄin rada sata da biste unijeli vrijeme.
+ Sat
+ Minuta
+ PM
+ Odabir vremena
+ PrijeÄ‘ite na naÄin unosa teksta da biste unijeli vrijeme.
+ Nova obavijest
+ Ukloni %1$s
+ Više od %1$d novih obavijesti
+ Prijelaz na sljedeći mjesec
+ Pomicanje na prethodni mjesec
+ Odabir datuma poÄetka: %1$s – odabir datuma zavrÅ¡etka: %2$s
+ TrenutaÄan odabir: %1$s
+ ništa
+ Odustani
+ U redu
+ %1$s
+ Odaberite datum
+ Odabrani datum
+ Stupac s danima: %1$s
+ Datum završetka %1$s
+ Nevažeći format.
+ Primjer: %1$s
+ Koristi format: %1$s
+ Raspon nije važeći.
+ Idi na trenutaÄnu godinu %1$d
+ Prijelaz na godinu %1$d
+ Izvan raspona: %1$s
+ Datum poÄetka – %1$s
+ %1$s – datum završetka
+ %1$s – %2$s
+ Odaberite raspon
+ Datum poÄetka – datum zavrÅ¡etka
+ Spremi
+ Datum poÄetka %1$s
+ Datum
+ Datum završetka
+ Datum poÄetka
+ d
+ m
+ g
+ Danas: %1$s
+ Prijelaz na naÄin unosa u Kalendaru
+ Dodirnite da biste se prebacili na prikaz kalendara
+ Prijelaz na naÄin unosa teksta
+ Dodirnite da biste se prebacili na prikaz godine
+ Odustani
+ U redu
+ "Nije postavljeno"
+ Prikaži zaporku
+ "Sažetak \"%1$s\" kopiran je u međuspremnik."
+ "Pretraži"
+ "999+"
+ "%1$s, %2$s"
+ "ISKLJUÄŒENO"
+ "UKLJUÄŒENO"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hu/values-hu.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hu/values-hu.xml
new file mode 100644
index 00000000..c36cc0e3
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hu/values-hu.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d új értesÃtés
+ - %d új értesÃtés
+
+ "Ugrás a főoldalra"
+ "Fel"
+ "További lehetőségek"
+ "Kész"
+ "Az összes megtekintése"
+ "Válasszon alkalmazást"
+ "KI"
+ "BE"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "Szóköz"
+ "Sym+"
+ "Menu+"
+ "Keresés…"
+ "Lekérdezés törlése"
+ "Keresési lekérdezés"
+ "Keresés"
+ "Lekérdezés küldése"
+ "Hangalapú keresés"
+ "Megosztás a következővel:"
+ "Megosztás a következő alkalmazással: %s"
+ "Összecsukás"
+ Az alsó lap összecsukása
+ Az alsó lap kibontása
+ Kibontás félig
+ Duplán koppintott a csúszkára
+ Csúszka
+ "Fogadás"
+ "Videó"
+ "ElutasÃtás"
+ "Befejezés"
+ "BejövÅ‘ hÃvás"
+ "HÃvás folyamatban"
+ "BejövÅ‘ hÃvás szűrése"
+ Begépelt karakterszám: %2$d/%1$d
+ Maximális karakterszám túllépve: %2$d/%1$d
+ Szöveg törlése
+ Engedélyezés
+ A(z) %1$s alkalmazás csak akkor működik, ha engedélyezi a Google Play-szolgáltatásokat.
+ Google Play-szolgáltatások engedélyezése
+ TelepÃtés
+ A(z) %1$s alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyek hiányoznak az eszközről.
+ A Google Play-szolgáltatások beszerzése
+ Google Play-szolgáltatások elérhetősége
+ Google Play-szolgáltatások – hiba
+ A(z) %1$s alkalmazás problémába ütközött a Google Play-szolgáltatások használata során. Próbálkozzon újra.
+ A(z) %1$s alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyeket eszköze nem támogat.
+ FrissÃtés
+ A(z) %1$s alkalmazás csak akkor fog működni, ha frissÃti a Google Play-szolgáltatásokat.
+ A Google Play-szolgáltatások frissÃtése
+ A(z) %1$s alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyek frissÃtése folyamatban van.
+ A Google Play-szolgáltatások új verziójára van szükség. A szolgáltatás hamarosan frissÃti önmagát.
+ Megnyitás a telefonon
+ Bejelentkezés
+ Bejelentkezés Google-fiókkal
+ "Másolás"
+ "Link vágólapra másolva"
+ Hiba
+ "Speciális"
+ LegördülÅ‘ menü megjelenÃtése
+ "Link másolása"
+ "Megnyitás böngészőben"
+ "Link megosztása"
+ Párbeszédpanel ikonja
+ Lap
+ Válassza ki, hogy délelőtt vagy délután
+ %1$s óra
+ Óra kiválasztása
+ %1$s óra
+ Perc kiválasztása
+ %1$s perc
+ de.
+ Időbevitelhez váltson óramódba.
+ Óra
+ Perc
+ du.
+ Időpont kiválasztása
+ Időbevitelhez váltson szövegbeviteli módba.
+ Új értesÃtés
+ EltávolÃtás (%1$s)
+ Több mint %1$d új értesÃtés
+ Váltás a következő hónapra
+ Váltás az előző hónapra
+ Kiválasztott kezdő dátum: %1$s – Kiválasztott befejező dátum: %2$s
+ Jelenleg kiválasztva: %1$s
+ egyik sem
+ Mégse
+ OK
+ %1$s
+ Válasszon dátumot
+ Kiválasztott dátum
+ Napok oszlopa: %1$s
+ Befejezés dátuma: %1$s
+ Érvénytelen formátum.
+ Példa: %1$s
+ Használja ezt: %1$s
+ Érvénytelen tartomány.
+ Ugrás az aktuális évre %1$d
+ Ugrás ehhez az évhez: %1$d
+ Tartományon kÃvül: %1$s
+ Kezdés dátuma – %1$s
+ %1$s – Befejezés dátuma
+ %1$s – %2$s
+ Válasszon dátumtartományt
+ Kezdés dátuma – Befejezés dátuma
+ Mentés
+ Kezdés dátuma: %1$s
+ Dátum
+ Befejezés dátuma
+ Kezdés dátuma
+ N
+ H
+ É
+ Ma %1$s
+ Váltás naptárbeviteli módra
+ Koppintson a naptárnézetre való váltáshoz
+ Váltás szövegbeviteli módra
+ Koppintson az éves nézetre való váltáshoz
+ Mégse
+ OK
+ "Nincs beállÃtva"
+ Jelszó megjelenÃtése
+ "„%1$s†a vágólapra lett másolva."
+ "Keresés"
+ "999+"
+ "%1$s, %2$s"
+ "KI"
+ "BE"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hy/values-hy.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hy/values-hy.xml
new file mode 100644
index 00000000..caab55cd
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-hy/values-hy.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d Õ¶Õ¸Ö€ Õ®Õ¡Õ¶Õ¸Ö‚ÖÕ¸Ö‚Õ´
+ - %d Õ¶Õ¸Ö€ Õ®Õ¡Õ¶Õ¸Ö‚ÖÕ¸Ö‚Õ´
+
+ "Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ£Õ¬ÕÕ¡Õ¾Õ¸Ö€ Õ§Õ»"
+ "Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ¾Õ¥Ö€Ö‡"
+ "Ô±ÕµÕ¬ Õ¨Õ¶Õ¿Ö€Õ¡Õ¶Ö„Õ¶Õ¥Ö€"
+ "ÕŠÕ¡Õ¿Ö€Õ¡Õ½Õ¿ Õ§"
+ "ÕÕ¥Õ½Õ¶Õ¥Õ¬ Õ¢Õ¸Õ¬Õ¸Ö€Õ¨"
+ "Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®"
+ "Ô±Õ†Õ‹Ô±ÕÔµÔ¼"
+ "Õ„Ô»Ô±Õ‘Õ†ÔµÔ¼"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "Õ¢Õ¡ÖÕ¡Õ¿"
+ "Sym+"
+ "Menu+"
+ "Որոնում…"
+ "Õ‹Õ¶Õ»Õ¥Õ¬ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´Õ¨"
+ "ÕˆÖ€Õ¸Õ¶Õ´Õ¡Õ¶ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´"
+ "ÕˆÖ€Õ¸Õ¶Õ¥Õ¬"
+ "ÕˆÖ‚Õ²Õ¡Ö€Õ¯Õ¥Õ¬ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´Õ¨"
+ "ÕÕ¡ÕµÕ¶Õ¡ÕµÕ«Õ¶ Õ¸Ö€Õ¸Õ¶Õ¸Ö‚Õ´"
+ "Կիսվել…"
+ "Ô¿Õ«Õ½Õ¾Õ¥Õ¬ %s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ« Õ´Õ«Õ»Õ¸ÖÕ¸Õ¾"
+ "Ô¾Õ¡Õ¬Õ¥Õ¬"
+ Ô¾Õ¡Õ¬Õ¥Õ¬ Õ¶Õ¥Ö€Ö„Ö‡Õ« Õ§Õ¯Ö€Õ¡Õ¶Õ¨
+ Ô¾Õ¡Õ¾Õ¡Õ¬Õ¥Õ¬ Õ¶Õ¥Ö€Ö„Ö‡Õ« Õ§Õ¯Ö€Õ¡Õ¶Õ¨
+ Ô¾Õ¡Õ¾Õ¡Õ¬Õ¥Õ¬ Õ¯Õ«Õ½Õ¸Õ¾ Õ¹Õ¡Öƒ
+ Ô¿Ö€Õ¯Õ¶Õ¡Õ¯Õ« Õ°ÕºÕ¸Ö‚Õ´ Õ¿Õ¥Õ²Õ¡ÖƒÕ¸ÕÕ´Õ¡Õ¶ Õ¶Õ·Õ«Õ¹Õ«Õ¶
+ ÕÕ¥Õ²Õ¡ÖƒÕ¸ÕÕ´Õ¡Õ¶ Õ¶Õ·Õ«Õ¹
+ "ÕŠÕ¡Õ¿Õ¡Õ½ÕÕ¡Õ¶Õ¥Õ¬"
+ "ÕÕ¥Õ½Õ¡Õ¦Õ¡Õ¶Õ£"
+ "Õ„Õ¥Ö€ÕªÕ¥Õ¬"
+ "Ô±Õ¾Õ¡Ö€Õ¿Õ¥Õ¬"
+ "Õ„Õ¸Ö‚Õ¿Ö„Õ¡ÕµÕ«Õ¶ Õ¦Õ¡Õ¶Õ£"
+ "Ô¸Õ¶Õ©Õ¡ÖÕ«Õ¯ Õ¦Õ¡Õ¶Õ£"
+ "Õ„Õ¸Ö‚Õ¿Ö„Õ¡ÕµÕ«Õ¶ Õ¦Õ¡Õ¶Õ£Õ« Õ¦Õ¿Õ¸Ö‚Õ´"
+ Õ„Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ¾Õ¡Õ® Õ¶Õ«Õ·Õ¥Ö€Õ %1$d/%2$d
+ Õ†Õ«Õ·Õ¥Ö€Õ« Õ¡Õ¼Õ¡Õ¾Õ¥Õ¬Õ¡Õ£Õ¸Ö‚ÕµÕ¶ Ö„Õ¡Õ¶Õ¡Õ¯Õ¨ Õ£Õ¥Ö€Õ¡Õ¦Õ¡Õ¶ÖÕ¾Õ¥Õ¬ Õ§ (%1$d/%2$d)
+ Õ‹Õ¶Õ»Õ¥Õ¬ Õ¿Õ¥Ö„Õ½Õ¿Õ¨
+ Õ„Õ«Õ¡ÖÕ¶Õ¥Õ¬
+ %1$s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ¨ Õ¹Õ« Õ¡Õ·ÕÕ¡Õ¿Õ« Õ´Õ«Õ¶Õ¹Ö‡ Õ¹Õ´Õ«Õ¡ÖÕ¶Õ¥Ö„ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ¨:
+ Õ„Õ«Õ¡ÖÕ¶Õ¥Õ¬ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ¨
+ ÕÕ¥Õ²Õ¡Õ¤Ö€Õ¥Õ¬
+ %1$s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ¨ Õ¹Õ« Õ¡Õ·ÕÕ¡Õ¿Õ« Õ¡Õ¼Õ¡Õ¶Ö Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ«, Õ¸Ö€Õ¸Õ¶Ö„ Õ¹Õ¯Õ¡Õ¶ Õ±Õ¥Ö€ Õ½Õ¡Ö€Ö„Õ¸Ö‚Õ´:
+ ÕÕ¥Õ²Õ¡Õ¤Ö€Õ¥Õ¬ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ¨
+ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ°Õ¡Õ½Õ¡Õ¶Õ¥Õ¬Õ«Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶
+ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ½ÕÕ¡Õ¬ Õ¯Õ¡
+ %1$s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ¨ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ°Õ¥Õ¿ Õ¯Õ¡ÕºÕ¾Õ¡Õ® ÕÕ¶Õ¤Õ«Ö€ Õ¸Ö‚Õ¶Õ«: Õ“Õ¸Ö€Õ±Õ¥Ö„ Õ¶Õ¸Ö€Õ«Ö:
+ %1$s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ¨ Õ¹Õ« Õ¡Õ·ÕÕ¡Õ¿Õ« Õ¡Õ¼Õ¡Õ¶Ö Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ«, Õ¸Ö€Õ¸Õ¶Ö„ Õ±Õ¥Ö€ Õ½Õ¡Ö€Ö„Õ¸Ö‚Õ´ Õ¹Õ¥Õ¶ Õ¡Õ»Õ¡Õ¯ÖÕ¾Õ¸Ö‚Õ´:
+ Ô¹Õ¡Ö€Õ´Õ¡ÖÕ¶Õ¥Õ¬
+ %1$s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ¨ Õ¹Õ« Õ¡Õ·ÕÕ¡Õ¿Õ« Õ´Õ«Õ¶Õ¹Ö‡ Õ¹Õ©Õ¡Ö€Õ´Õ¡ÖÕ¶Õ¥Ö„ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ¨:
+ Ô¹Õ¡Ö€Õ´Õ¡ÖÕ¶Õ¥Õ¬ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ¨
+ %1$s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ¨ Õ¹Õ« Õ¡Õ·ÕÕ¡Õ¿Õ« Õ¡Õ¼Õ¡Õ¶Ö Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ«, Õ¸Ö€Õ¸Õ¶Ö„ Õ¡ÕµÕ½ ÕºÕ¡Õ°Õ«Õ¶ Õ©Õ¡Ö€Õ´Õ¡ÖÕ¾Õ¸Ö‚Õ´ Õ¥Õ¶:
+ Ô±Õ¶Õ°Ö€Õ¡ÕªÕ¥Õ·Õ¿ Õ§ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ¶Õ¸Ö€ Õ¿Õ¡Ö€Õ¢Õ¥Ö€Õ¡Õ¯Õ¨: Ô±ÕµÕ¶ Õ·Õ¸Ö‚Õ¿Õ¸Õ¾ Õ¯Õ©Õ¡Ö€Õ´Õ¡ÖÕ¾Õ« Õ¡Õ¾Õ¿Õ¸Õ´Õ¡Õ¿ Õ¯Õ¥Ö€ÕºÕ¸Õ¾:
+ Ô²Õ¡ÖÕ¥Õ¬ Õ°Õ¥Õ¼Õ¡ÕÕ¸Õ½Õ¸Õ¾
+ Õ„Õ¸Ö‚Õ¿Ö„ Õ£Õ¸Ö€Õ®Õ¥Õ¬
+ Õ„Õ¸Ö‚Õ¿Ö„ Õ£Õ¸Ö€Õ®Õ¥Õ¬ Google-Õ¸Õ¾
+ "ÕŠÕ¡Õ¿Õ³Õ¥Õ¶Õ¥Õ¬"
+ "Õ€Õ²Õ¸Ö‚Õ´Õ¨ ÕºÕ¡Õ¿Õ³Õ¥Õ¶Õ¾Õ¥Ö Õ½Õ¥Õ²Õ´Õ¡Õ¿Õ¡ÕÕ¿Õ¡Õ¯Õ«Õ¶"
+ ÕÕÕ¡Õ¬
+ "Ô¼Ö€Õ¡ÖÕ¸Ö‚ÖÕ«Õ¹"
+ Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ«Õ»Õ¶Õ¸Õ² Õ¨Õ¶Õ¿Ö€Õ¡ÖÕ¡Õ¶Õ¯Õ¨
+ "ÕŠÕ¡Õ¿Õ³Õ¥Õ¶Õ¥Õ¬ Õ°Õ²Õ¸Ö‚Õ´Õ¨"
+ "Ô²Õ¡ÖÕ¥Õ¬ Õ¤Õ«Õ¿Õ¡Ö€Õ¯Õ«Õ¹Õ¸Ö‚Õ´"
+ "Ô¿Õ«Õ½Õ¾Õ¥Õ¬ Õ°Õ²Õ¸Ö‚Õ´Õ¸Õ¾"
+ ÔµÖ€Õ¯ÕÕ¸Õ½Õ¸Ö‚Õ©ÕµÕ¡Õ¶ ÕºÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶Õ« ÕºÕ¡Õ¿Õ¯Õ¥Ö€Õ¡Õ¯
+ Õ†Õ¥Ö€Õ¤Õ«Ö€
+ Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ AM Õ¯Õ¡Õ´ PM
+ %1$s ÕªÕ¡Õ´
+ Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ ÕªÕ¡Õ´Õ¨
+ ÔºÕ¡Õ´Õ¨ %1$s Õ§
+ Ô¸Õ¶Õ¿Ö€Õ¥Ö„ Ö€Õ¸ÕºÕ¥Õ¶
+ %1$s Ö€Õ¸ÕºÕ¥
+ AM
+ ÔºÕ¡Õ´Õ¨ Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€ Õ´Õ«Õ¡ÖÖ€Õ¥Ö„ ÕªÕ¡Õ´Õ¡ÖÕ¸Ö‚ÕµÖÕ« Õ¼Õ¥ÕªÕ«Õ´Õ¨:
+ ÔºÕ¡Õ´
+ ÕÕ¸ÕºÕ¥
+ PM
+ ÔºÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ« Õ¨Õ¶Õ¿Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶
+ ÔºÕ¡Õ´Õ¨ Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€ Õ´Õ«Õ¡ÖÖ€Õ¥Ö„ Õ¿Õ¥Ö„Õ½Õ¿Õ« Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ´Õ¡Õ¶ Õ¼Õ¥ÕªÕ«Õ´Õ¨:
+ Õ†Õ¸Ö€ Õ®Õ¡Õ¶Õ¸Ö‚ÖÕ¸Ö‚Õ´
+ Õ€Õ¥Õ¼Õ¡ÖÕ¶Õ¥Õ¬ (%1$s)
+ Ô±Õ¾Õ¥Õ¬Õ« Ö„Õ¡Õ¶ %1$d Õ¶Õ¸Ö€ Õ®Õ¡Õ¶Õ¸Ö‚ÖÕ¸Ö‚Õ´
+ Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ°Õ¡Õ»Õ¸Ö€Õ¤ Õ¡Õ´Õ«Õ½
+ Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ¶Õ¡ÕÕ¸Ö€Õ¤ Õ¡Õ´Õ«Õ½
+ Õ„Õ¥Õ¯Õ¶Õ¡Ö€Õ¯Õ« Õ¡Õ´Õ½Õ¡Õ©Õ¾Õ« Õ¨Õ¶Õ¿Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ %1$s – Ô±Õ¾Õ¡Ö€Õ¿Õ« Õ¡Õ´Õ½Õ¡Õ©Õ¾Õ« Õ¨Õ¶Õ¿Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ %2$s
+ Õ†Õ¥Ö€Õ¯Õ¡ÕµÕ«Õ½ Õ¨Õ¶Õ¿Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨Õ %1$s
+ Õ¸Õ¹ Õ´Õ¥Õ¯Õ¨
+ Õ‰Õ¥Õ²Õ¡Ö€Õ¯Õ¥Õ¬
+ ÔµÕ²Õ¡Õ¾
+ %1$s
+ Ô¸Õ¶Õ¿Ö€Õ¥Ö„ Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨
+ Ô¸Õ¶Õ¿Ö€Õ¾Õ¡Õ® Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾
+ Õ•Ö€Õ¥Ö€Õ« Õ½ÕµÕ¸Ö‚Õ¶Õ¡Õ¯Õ %1$s
+ Ô±Õ¾Õ¡Ö€Õ¿Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨Õ %1$s
+ ÕÖ‡Õ¡Õ¹Õ¡ÖƒÕ¨ Õ½ÕÕ¡Õ¬ Õ§Ö‰
+ Õ•Ö€Õ«Õ¶Õ¡Õ¯Õ %1$s
+ Õ•Õ£Õ¿Õ¡Õ£Õ¸Ö€Õ®Õ¥Ö„Õ %1$s
+ Ô¸Õ¶Õ¤Õ£Ö€Õ¯Õ¸Ö‚ÕµÕ©Õ¶ Õ¡Õ¶Õ¾Õ¡Õ¾Õ¥Ö€ Õ§:
+ Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ¨Õ¶Õ©Õ¡ÖÕ«Õ¯ Õ¿Õ¡Ö€Õ¾Õ¡Õ¶ (%1$d)
+ Ô±Õ¶ÖÕ¶Õ¥Õ¬ %1$d Õ©Õ¾Õ¡Õ¯Õ¡Õ¶
+ Ô¸Õ¶Õ¤Õ£Ö€Õ¯Õ¸Ö‚ÕµÕ©Õ«Ö Õ¤Õ¸Ö‚Ö€Õ½ Õ§Õ %1$s
+ Մեկնարկի ամսաթիվը – %1$s
+ %1$s – Ավարտի ամսաթիվը
+ %1$s – %2$s
+ Ô¸Õ¶Õ¿Ö€Õ¥Ö„ Õ¨Õ¶Õ¤Õ£Ö€Õ¯Õ¸Ö‚ÕµÕ©Õ¨
+ Մեկնարկի ամսաթիվը – Ավարտի ամսաթիվը
+ ÕŠÕ¡Õ°Õ¥Õ¬
+ ÕÕ¯Õ¦Õ¢Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨Õ %1$s
+ Ô±Õ´Õ½Õ¡Õ©Õ«Õ¾
+ Ô±Õ¾Õ¡Ö€Õ¿Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨
+ Õ„Õ¥Õ¯Õ¶Õ¡Ö€Õ¯Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨
+ Ö…
+ Õ¡
+ Õ¿
+ Ô±ÕµÕ½Ö…Ö€ (%1$s)
+ Ô±Õ¶ÖÕ¶Õ¥Õ¬ Ö…Ö€Õ¡ÖÕ¸Ö‚ÕµÖÕ« Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ´Õ¡Õ¶ Õ¼Õ¥ÕªÕ«Õ´
+ Õ€ÕºÕ¥Ö„Õ Õ•Ö€Õ¡ÖÕ¸Ö‚ÕµÖÕ« Õ¤Õ«Õ¿Õ¡Õ¯Õ¥Ö€ÕºÕ«Õ¶ Õ¡Õ¶ÖÕ¶Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€
+ Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ¿Õ¥Ö„Õ½Õ¿Õ« Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ´Õ¡Õ¶ Õ¼Õ¥ÕªÕ«Õ´Õ«Õ¶
+ Õ€ÕºÕ¥Ö„Õ Õ¿Õ¡Ö€Õ¾Õ¡ Õ¤Õ«Õ¿Õ¡Õ¯Õ¥Ö€ÕºÕ«Õ¶ Õ¡Õ¶ÖÕ¶Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€
+ Õ‰Õ¥Õ²Õ¡Ö€Õ¯Õ¥Õ¬
+ ÔµÕ²Õ¡Õ¾
+ "Ô¿Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ¾Õ¡Õ® Õ¹Õ§"
+ Õ‘Õ¸Ö‚ÖÕ¡Õ¤Ö€Õ¥Õ¬ Õ£Õ¡Õ²Õ¿Õ¶Õ¡Õ¢Õ¡Õ¼Õ¨
+ "«%1$s». ÕºÕ¡Õ¿Õ³Õ¥Õ¶Õ¾Õ¥Ö Õ½Õ¥Õ²Õ´Õ¡Õ¿Õ¡ÕÕ¿Õ¡Õ¯Õ«Õ¶:"
+ "ÕˆÖ€Õ¸Õ¶Õ¥Õ¬"
+ "999+"
+ "%1$s, %2$s"
+ "Ô±Õ†Õ‹Ô±ÕÔ±Ô¾"
+ "Õ„Ô»Ô±Õ‘ÕŽÔ±Ô¾"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-in/values-in.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-in/values-in.xml
new file mode 100644
index 00000000..b000e347
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-in/values-in.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d notifikasi baru
+ - %d notifikasi baru
+
+ "Tunjukkan jalan ke rumah"
+ "Kembali ke atas"
+ "Opsi lain"
+ "Selesai"
+ "Lihat semua"
+ "Pilih aplikasi"
+ "NONAKTIF"
+ "AKTIF"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "spasi"
+ "Sym+"
+ "Menu+"
+ "Telusuri..."
+ "Hapus kueri"
+ "Telusuri kueri"
+ "Telusuri"
+ "Kirim kueri"
+ "Penelusuran suara"
+ "Bagikan dengan"
+ "Bagikan dengan %s"
+ "Ciutkan"
+ Menciutkan sheet bawah
+ Meluaskan sheet bawah
+ Luaskan setengah
+ Handel geser diketuk dua kali
+ Handel geser
+ "Jawab"
+ "Video"
+ "Tolak"
+ "Tutup"
+ "Panggilan masuk"
+ "Panggilan sedang berlangsung"
+ "Menyaring panggilan masuk"
+ Karakter yang dimasukkan %1$d dari %2$d
+ Melebihi batas karakter %1$d dari %2$d
+ Menghapus teks
+ Aktifkan
+ %1$s tidak akan berfungsi jika layanan Google Play tidak diaktifkan.
+ Aktifkan layanan Google Play
+ Instal
+ %1$s tidak akan berjalan tanpa layanan Google Play, yang tidak ada di perangkat Anda.
+ Dapatkan layanan Google Play
+ Ketersediaan layanan Google Play
+ Kesalahan layanan Google Play
+ %1$s mengalami masalah dengan layanan Google Play. Coba lagi.
+ %1$s tidak akan berjalan tanpa layanan Google Play, yang tidak didukung oleh perangkat Anda.
+ Update
+ %1$s tidak akan berjalan jika layanan Google Play tidak diperbarui.
+ Perbarui layanan Google Play
+ %1$s tidak akan berjalan tanpa layanan Google Play, yang saat ini sedang diperbarui.
+ Perlu versi baru layanan Google Play. Akan segera memperbarui sendiri.
+ Buka di ponsel
+ Login
+ Login dengan Google
+ "Salin"
+ "Link disalin ke papan klip"
+ Error
+ "Lanjutan"
+ Tampilkan menu dropdown
+ "Salin link"
+ "Buka di browser"
+ "Bagikan link"
+ Ikon Dialog
+ Tab
+ Pilih AM atau PM
+ %1$s jam
+ Pilih jam
+ Pukul %1$s
+ Pilih menit
+ %1$s menit
+ AM
+ Beralih ke mode jam untuk masukan waktu.
+ Jam
+ Menit
+ PM
+ Pilih waktu
+ Beralih ke mode masukan teks untuk masukan waktu.
+ Notifikasi baru
+ Menghapus %1$s
+ Lebih dari %1$d notifikasi baru
+ Ubah ke bulan berikutnya
+ Ubah ke bulan sebelumnya
+ Pemilihan tanggal mulai: %1$s – Pemilihan tanggal akhir: %2$s
+ Pilihan saat ini: %1$s
+ tidak ada
+ Batal
+ Oke
+ %1$s
+ Pilih Tanggal
+ Tanggal yang dipilih
+ Kolom hari: %1$s
+ Tanggal akhir %1$s
+ Format tidak valid.
+ Contoh: %1$s
+ Gunakan: %1$s
+ Rentang tidak valid.
+ Pilih tahun ini %1$d
+ Buka tahun %1$d
+ Di luar rentang: %1$s
+ Tanggal mulai – %1$s
+ %1$s – Tanggal akhir
+ %1$s – %2$s
+ Pilih Rentang
+ Tanggal mulai – Tanggal akhir
+ Simpan
+ Tanggal mulai %1$s
+ Tanggal
+ Tanggal akhir
+ Tanggal mulai
+ h
+ b
+ t
+ Hari ini %1$s
+ Beralih ke mode masukan kalender
+ Ketuk untuk beralih ke tampilan Kalender
+ Beralih ke mode masukan teks
+ Ketuk untuk beralih ke tampilan tahun
+ Batal
+ Oke
+ "Belum disetel"
+ Tampilkan sandi
+ "\"%1$s\" disalin ke papan klip."
+ "Telusuri"
+ "999+"
+ "%1$s, %2$s"
+ "NONAKTIF"
+ "AKTIF"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-is/values-is.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-is/values-is.xml
new file mode 100644
index 00000000..b3536bff
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-is/values-is.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d ný tilkynning
+ - %d nýjar tilkynningar
+
+ "Fara heim"
+ "Fara upp"
+ "Fleiri valkostir"
+ "Lokið"
+ "Sjá allt"
+ "Veldu forrit"
+ "SLÖKKT"
+ "KVEIKT"
+ "Alt+"
+ "Ctrl+"
+ "eyða"
+ "enter"
+ "Aðgerðarlykill+"
+ "Meta+"
+ "Shift+"
+ "bilslá"
+ "Sym+"
+ "Valmynd+"
+ "Leita…"
+ "Hreinsa fyrirspurn"
+ "Leitarfyrirspurn"
+ "Leit"
+ "Senda fyrirspurn"
+ "Raddleit"
+ "Deila með"
+ "Deila með %s"
+ "Minnka"
+ Minnka blað neðst
+ Stækka blað neðst
+ Stækka til hálfs
+ Ãtt tvisvar á dragkló
+ Dragkló
+ "Svara"
+ "MyndsÃmtal"
+ "Hafna"
+ "Leggja á"
+ "SÃmtal berst"
+ "SÃmtal à gangi"
+ "SÃar sÃmtal sem berst"
+ Innslegnir stafir %1$d af %2$d
+ Yfir hámarksstafafjölda, %1$d af %2$d
+ Hreinsa texta
+ Kveikja
+ %1$s virkar ekki nema þú gerir þjónustu Google Play virka.
+ Virkja þjónustu Google Play
+ Setja upp
+ %1$s getur ekki keyrt án þjónustu Google Play, sem vantar à tækið þitt.
+ Sækja þjónustu Google Play
+ Staða þjónustu Google Play
+ Villa à þjónustu Google Play
+ %1$s á à vandræðum með þjónustu Google Play. Reyndu aftur.
+ %1$s getur ekki keyrt án þjónustu Google Play, sem er ekki studd af tækinu þÃnu.
+ Uppfæra
+ %1$s getur ekki keyrt nema þú uppfærir þjónustu Google Play.
+ Uppfæra þjónustu Google Play
+ %1$s getur ekki keyrt án þjónustu Google Play, sem verið er að uppfæra.
+ Nýja útgáfu af þjónustu Google Play vantar. Hún uppfærir sig sjálf innan skamms.
+ Opna à sÃmanum
+ Skrá inn
+ Skrá inn með Google
+ "Afrita"
+ "Tengill afritaður á klippiborð"
+ Villa
+ "Ãtarlegt"
+ Sýna fellivalmynd
+ "Afrita tengil"
+ "Opna à vafra"
+ "Deila tengli"
+ Gluggatákn
+ Flipi
+ Velja f.h. eða e.h.
+ %1$s klst.
+ Velja tÃma
+ klukkan %1$s
+ Veldu mÃnútur
+ %1$s mÃnútur
+ f.h.
+ Skipta yfir à klukkustillingu til að færa inn tÃma.
+ Klukkustund
+ MÃnúta
+ e.h.
+ Veldu tÃma
+ Skipta yfir à textastillingu til að færa inn tÃma.
+ Ný tilkynning
+ Fjarlægja %1$s
+ Yfir %1$d nýjar tilkynningar
+ Breyta à næsta mánuð
+ Breyta à fyrri mánuð
+ Val upphafsdags: %1$s – Val lokadags: %2$s
+ Núverandi val: %1$s
+ ekkert
+ Hætta við
+ Ã lagi
+ %1$s
+ Veldu dagsetningu
+ Valin dagsetning
+ Dálkur með dögum: %1$s
+ Lokadagur %1$s
+ Ógilt snið.
+ Dæmi: %1$s
+ Nota: %1$s
+ Ógilt svið.
+ Fara á núverandi ár %1$d
+ Fara à árið %1$d
+ Utan sviðs: %1$s
+ Upphafsdagur – %1$s
+ %1$s – lokadagur
+ %1$s – %2$s
+ Veldu tÃmabil
+ Upphafsdagur – lokadagur
+ Vista
+ Upphafsdagur %1$s
+ Dagsetning
+ Lokadagur
+ Upphafsdagur
+ d
+ m
+ á
+ Ã dag %1$s
+ Skipta yfir à innfærsluaðferð fyrir dagatal
+ Ãttu til að skipta yfir à dagatalsyfirlit
+ Skipta yfir à innfærsluaðferð fyrir texta
+ Ãttu til að skipta yfir à ársyfirlit
+ Hætta við
+ Ã lagi
+ "Ekki stillt"
+ Sýna aðgangsorð
+ "„%1$s“ afritað á klippiborðið."
+ "Leit"
+ "999+"
+ "%1$s, %2$s"
+ "SLÖKKT"
+ "KVEIKT"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-it/values-it.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-it/values-it.xml
new file mode 100644
index 00000000..9220e45f
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-it/values-it.xml
@@ -0,0 +1,285 @@
+
+
+
+ - Connesso 1 volta dal %2$s
+ - Connesso %1$s volte dal %2$s
+
+
+ - Inviato 1 pacchetto, %2$s
+ - Inviati %1$s pacchetti, %2$s
+
+
+ - Ricevuto 1 pacchetto, %2$s
+ - Ricevuti %1$s pacchetti, %2$s
+
+
+ - %d nuova notifica
+ - %d nuove notifiche
+
+
+ - %d dispositivo connesso a %s
+ - %d dispositivi connessi a %s
+
+
+ - %d interfaccia
+ - %d interfacce
+
+
+ - %d dispositivi
+ - %d dispositivo
+
+ "Portami a casa"
+ "Torna indietro"
+ "Altre opzioni"
+ "Fine"
+ "Mostra tutto"
+ "Scelta di un\'app"
+ "OFF"
+ "ON"
+ "ALT +"
+ "CTRL +"
+ "CANC"
+ "INVIO"
+ "FUNZIONE +"
+ "META +"
+ "MAIUSC +"
+ "SPAZIO"
+ "SYM +"
+ "MENU +"
+ "Cerca…"
+ "Cancella query"
+ "Query di ricerca"
+ "Cerca"
+ "Invia query"
+ "Ricerca vocale"
+ "Condividi con"
+ "Condividi tramite %s"
+ "Comprimi"
+ VPN Hotspot
+ Comprimi riquadro inferiore
+ Espandi riquadro inferiore
+ Espandi a metÃ
+ Doppio tocco su punto di trascinamento
+ Punto di trascinamento
+ "Rispondi"
+ "Video"
+ "Rifiuta"
+ "Riaggancia"
+ "Chiamata in arrivo"
+ "Chiamata in corso"
+ "Applicazione filtro a chiamata in arrivo"
+ %1$d caratteri inserirti su %2$d
+ Sono presenti %2$d caratteri in più rispetto al limite di %1$d
+ Cancella testo
+ Il server ha restituito questo errore per %1$s: %2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ Venditore
+ Nickname per %s
+ Blocca
+ Abilita il servizio per questa interfaccia per bloccare il client.
+ Nickname…
+ Statistiche…
+ Sblocca
+ Statistiche per %s
+ Attiva
+ %1$s non funzionerà se non attivi Google Play Services.
+ Attiva Google Play Services
+ Installa
+ L\'app %1$s non funzionerà senza Google Play Services, non presente sul tuo dispositivo.
+ Installa Google Play Services
+ Disponibilità di Google Play Services
+ Errore Google Play Services
+ %1$s sta riscontrando problemi con Google Play Services. Riprova.
+ %1$s non funzionerà senza Google Play Services, non supportati dal tuo dispositivo.
+ Aggiorna
+ %1$s non funzionerà se non aggiorni Google Play Services.
+ Aggiorna Google Play Services
+ %1$s non funzionerà senza Google Play Services, attualmente in fase di aggiornamento.
+ È richiesta una nuova versione di Google Play Services. L\'aggiornamento automatico verrà eseguito a breve.
+ Apri sul telefono
+ Accedi
+ Accedi con Google
+ Il sistema Android rifiuta questa configurazione. (vedi logcat)
+ Condividi con Codice QR
+ Configurazione Wi\u2011Fi
+ " (perso)"
+ " (in connessione)"
+ " (raggiungibile)"
+ "Copia"
+ "Link copiato negli appunti"
+ Chiudi
+ Trovi che questa applicazione sia utile?\nSupportane lo sviluppo inviando una donazione al suo sviluppatore!
+ Google Play Store
+ Google addebita una commissione del 30%
+ Dona!
+ Donazioni In-App non supportate. Google Play Store è installato correttamente?
+ Quanto?
+ Grazie per la tua donazione!\nLo apprezzo molto!
+ Errore
+ Fatale: Interfaccia Downstream non trovata
+ "Avanzate"
+ Mostra il menu a discesa
+ sconosciuta #%d
+ "Copia link"
+ "Apri nel browser"
+ "Condividi link"
+ Icona della finestra di dialogo
+ Scheda
+ Seleziona AM o PM
+ %1$s ore
+ Seleziona l\'ora
+ %1$s in punto
+ Seleziona i minuti
+ %1$s minuti
+ am
+ Passa alla modalità orologio per inserire l\'ora.
+ Ora
+ Minuto
+ pm
+ Seleziona l\'ora
+ Passa alla modalità di immissione testo per inserire l\'ora.
+ Nuova notifica
+ Rimuovi %1$s
+ Più di %1$d nuove notifiche
+ Passa al mese successivo
+ Passa al mese precedente
+ Selezione della data di inizio: %1$s. Selezione della data di fine: %2$s
+ Selezione attuale: %1$s
+ Nessuna selezione
+ Annulla
+ OK
+ %1$s
+ Seleziona data
+ Data selezionata
+ Colonna dei giorni: %1$s
+ Data di fine: %1$s
+ Formato non valido.
+ Esempio: %1$s
+ Usa: %1$s
+ Intervallo non valido.
+ Vai all\'anno corrente %1$d
+ Vai all\'anno %1$d
+ Non compresa nell\'intervallo: %1$s
+ Data di inizio - %1$s
+ %1$s - Data di fine
+ %1$s - %2$s
+ Seleziona intervallo
+ Data di inizio - Data di fine
+ Salva
+ Data di inizio: %1$s
+ Data
+ Data di fine
+ Data di inizio
+ g
+ m
+ a
+ Oggi %1$s
+ Passa alla modalità di immissione Calendario
+ Tocca per passare alla visualizzazione Calendario
+ Passa alla modalità di immissione Testo
+ Tocca per passare alla visualizzazione Anno
+ Annulla
+ OK
+ Qualcosa è andato storto, per favore controlla le informazioni di debug.
+ "Non impostato"
+ Servizio Tethering VPN
+ Inattivi: %s
+ Tethering VPN attivo
+ Mostra password
+ "\"%1$s\"copiato negli appunti."
+ Ripetitore (%1$d MHz, channel %2$d)
+ Rimozione del gruppo P2P ridondante fallita (causa: %s)
+ File di configurazione valido non trovato. Per favore accendi il ripetitore prima.
+ Creazione del gruppo P2P fallita (causa: %s)
+ Servizio non disponibile. Riprova dopo
+ errore interno
+ nessuna richiesta di servizio aggiunta
+ Wi\u2011Fi direct non supportato
+ operazione non supportata
+ Wi\u2011Fi direct non disponibile, per favore abilita il Wi\u2011Fi
+ Abilita
+ Rimozione del gruppo P2P fallita (causa: %s)
+ Rimozione del vecchio gruppo P2P fallita (causa: %s)
+ Impostazione del canale operativo fallita (causa: %s)
+ WPS (non sicuro)
+ Premi il bottone
+ Inserisci PIN
+ Avvio WPS fallito (causa: %s)
+ PIN registrato.
+ Utilizza il pulsante WPS entro i prossimi 2 minuti per collegare il
+ dispositivo.
+ "Cerca"
+ Downstream
+ Esci
+ Aiuto
+ Miscellanea
+ Dona
+ GitHub sponsors, PayPal, altro…
+ Amo i soldi
+ Esporta informazioni di debug
+ Così utile molto wow
+ Homepage progetto su GitHub
+ Leggi il manuale, metti tra i preferiti, segnala problemi e contribuisci
+ Riavvia l\'applicazione per applicare questa impostazione.
+ Pulisci/riapplica regole di routing
+ Aggiorna le impostazioni modificate ai servizi attivi. Può anche sistemare rare
+ condizioni.
+ Abilita DHCP alternativo
+ Usalo se i client non riescono ad ottenere gli indirizzi IP.
+ Disabilita tethering IPv6
+ Abilitando questa funzione si preveniranno perdite della VPN via IPv6.
+ Modalità di monitoraggio dello stato della rete
+ Monitoraggio Netlink
+ Monitoraggio Netlink con root
+ Poll
+ Poll con root
+ Modalità IP Masquerade
+ Servizio Android Netd
+ Nessuno
+ Semplice
+ Interfaccia di rete upstream
+ Individua automaticamente VPN del sistema
+ Tieni il Wi\u2011Fi attivo
+ Attivo
+ Modalità prestazioni elevate
+ Disabilita il risparmio batteria
+ Modalità latenza bassa
+ Default di sistema
+ Accelerazione hardware Tethering
+ Scorciatoia alle opzioni sviluppatore del sistema
+ Upstream
+ Interfaccia fallback upstream
+ Individua automaticamente la rete default del sistema
+ "999+"
+ "%1$s, %2$s"
+ L\'hotspot temporaneo richiede che la localizzazione sia attiva.
+ Gestisci il tethering del sistema…
+ Tethering Bluetooth
+ "Tethering Ethernet"
+ Per favore disabilita l\'accelerazione hardware tethering nelle opzioni sviluppatore
+ se il tethering VPN non funziona.
+ Tethering USB
+ Hotspot Wi\u2011Fi
+ Monitora…
+ %s (monitorato)
+ Hotspot Wi\u2011Fi temporaneo
+ Avvio dell\'hotspot fallito (causa: %s)
+ errore generico
+ modalità incompatibile
+ nessun canale
+ tethering non permesso
+ Client
+ Ripetitore
+ Impostazioni
+ Tethering
+ "OFF"
+ "ON"
+ "Indirizzo MAC"
+ "Banda a %s GHz"
+ "Rete nascosta"
+ Banda AP
+ "L\'hotspot Wi‑Fi viene disattivato se non ci sono dispositivi collegati"
+ Password
+ Salva
+ Sicurezza
+ "Nome rete"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-iw/values-iw.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-iw/values-iw.xml
new file mode 100644
index 00000000..895c5df1
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-iw/values-iw.xml
@@ -0,0 +1,141 @@
+
+
+
+ - %d התר×ות חדשות
+ - %d התר×ות חדשות
+ - %d התר×ות חדשות
+
+ "× ×™×•×•×˜ לדף הבית"
+ "× ×™×•×•×˜ למעלה"
+ "עוד ×פשרויות"
+ "סיו×"
+ "הצגת הכול"
+ "בחירת ×פליקציה"
+ "כבוי"
+ "מופעל"
+ "Alt+"
+ "Ctrl+‎"
+ "מחיקה"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "רווח"
+ "Sym+"
+ "תפריט+"
+ "חיפוש…"
+ "מחיקת הש×ילתה"
+ "ש×ילתת חיפוש"
+ "חיפוש"
+ "שליחת ש×ילתה"
+ "חיפוש קולי"
+ "שיתוף ×¢×"
+ "שיתוף ×¢× %s"
+ "כיווץ"
+ כיווץ הגיליון התחתון
+ הרחבת הגיליון התחתון
+ הרחבה עד ×”×מצע
+ בוצעה הקשה כפולה על × ×§×•×“×ª ×”××—×™×–×” לגרירה
+ × ×§×•×“×ª ××—×™×–×” לגרירה
+ "×ž×¢× ×”"
+ "ויד×ו"
+ "דחייה"
+ "× ×™×ª×•×§"
+ "שיחה × ×›× ×¡×ª"
+ "שיחה פעילה"
+ "×¡×™× ×•×Ÿ שיחה × ×›× ×¡×ª"
+ ×”×•×–× ×• %1$d ×ª×•×•×™× ×ž×ª×•×š %2$d
+ מגבלת ×”×ª×•×•×™× ×—×•×¨×’×ª ב-%1$d מתוך %2$d
+ מחיקת הטקסט
+ הפעל
+ â€×”×פליקציה %1$s ×œ× ×ª×¤×¢×œ ×× ×œ× ×ª×¤×¢×™×œ ×ת שירותי Google Play.
+ â€×”פעל ×ת שירותי Google Play
+ התקן
+ â€×”×פליקציה %1$s ×œ× ×ª×¤×¢×œ ×œ×œ× ×©×™×¨×•×ª×™ Google Play, ש××™× × ×ž×•×ª×§× ×™× ×‘×ž×›×©×™×¨.
+ â€×§×‘ל ×ת שירותי Google Play
+ â€×–×ž×™× ×•×ª של שירותי Google Play
+ â€×©×’×™××” בשירותי Google Play
+ â€%1$s × ×ª×§×œ×” בבעיה בשירותי Google Play. × ×¡×” שוב.
+ â€%1$s ×œ× ×ª×¤×¢×œ ×œ×œ× ×©×™×¨×•×ª×™ Google Play, ש××™× × × ×ª×ž×›×™× ×‘×ž×›×©×™×¨ שלך.
+ עדכון
+ â€%1$s ×œ× ×™×¤×¢×œ ×× ×œ× ×ª×¢×“×›×Ÿ ×ת שירותי Google Play.
+ â€×¢×“כון שירותי Google Play
+ â€×”×פליקציה %1$s ×œ× ×ª×¤×¢×œ ×œ×œ× ×©×™×¨×•×ª×™ Google Play, ×©×ž×ª×¢×“×›× ×™× ×›×¨×’×¢.
+ â€×“רושה גרסה חדשה של שירותי Google Play. הגרסה תתעדכן בעצמה תוך זמן קצר.
+ פתח בטלפון
+ ×›× ×™×¡×”
+ â€×”×™×›× ×¡ ב×מצעות Google
+ "העתקה"
+ "הקישור הועתק ללוח"
+ שגי××”
+ "מתקד×"
+ הצגת התפריט ×”× ×¤×ª×—
+ "העתקת הקישור"
+ "פתיחה בדפדפן"
+ "לשיתוף הקישור"
+ סמל לתיבת דו-שיח
+ מקש Tab
+ יש לבחור ב-AM ×ו ב-PM
+ %1$s שעות
+ בחר שעה
+ השעה %1$s
+ בחר דקות
+ %1$s דקות
+ AM
+ העבר למצב שעון לצורך ×”×–× ×ª השעה
+ שעה
+ דקה
+ PM
+ בחר שעה
+ העבר למצב קלט טקסט לצורך ×”×–× ×ª השעה
+ התר××” חדשה
+ הסרה של %1$s
+ יותר מ-%1$d התר×ות חדשות
+ מעבר לחודש הב×
+ מעבר לחודש הקוד×
+ בחירת ת×ריך ההתחלה: %1$s – בחירת ת×ריך הסיו×: %2$s
+ הבחירה ×”× ×•×›×—×™×ª: %1$s
+ לל×
+ ביטול
+ ×ישור
+ %1$s
+ יש לבחור ת×ריך
+ הת×ריך ×”× ×‘×—×¨
+ עמודה של ימי×: %1$s
+ ת×ריך ×”×¡×™×•× %1$s
+ פורמט ×œ× ×—×•×§×™.
+ דוגמה: %1$s
+ יש להשתמש בפורמט: %1$s
+ טווח ×œ× ×—×•×§×™.
+ × ×™×•×•×˜ ×œ×©× ×” ×”× ×•×›×—×™×ª %1$d
+ × ×™×•×•×˜ ×œ×©× ×ª %1$d
+ מחוץ לטווח: %1$s
+ ת×ריך התחלה – %1$s
+ %1$s – ת×ריך סיו×
+ %1$s – %2$s
+ יש לבחור טווח
+ ת×ריך התחלה - ת×ריך סיו×
+ שמירה
+ ת×ריך ההתחלה %1$s
+ ת×ריך
+ ת×ריך סיו×
+ ת×ריך התחלה
+ ×™
+ ×—
+ ש
+ ×”×™×•× %1$s
+ החלפה לשיטת קלט של יומן
+ יש להקיש כדי לעבור לתצוגת יומן
+ החלפה לשיטת קלט של טקסט
+ יש להקיש כדי לעבור לתצוגת ×©× ×ª×™×ª
+ ביטול
+ ×ישור
+ "×œ× ×ž×•×’×“×¨×ª"
+ הצגת סיסמה
+ "\"%1$s\" הועתק ללוח."
+ "חיפוש"
+ "999+"
+ "%1$s, %2$s"
+ "כבוי"
+ "מופעל"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ja/values-ja.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ja/values-ja.xml
new file mode 100644
index 00000000..7c183159
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ja/values-ja.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d ä»¶ã®æ–°ã—ã„通知
+ - %d ä»¶ã®æ–°ã—ã„通知
+
+ "ãƒ›ãƒ¼ãƒ ã«æˆ»ã‚‹"
+ "å‰ã«æˆ»ã‚‹"
+ "ãã®ä»–ã®ã‚ªãƒ—ション"
+ "完了"
+ "ã™ã¹ã¦è¡¨ç¤º"
+ "アプリã®é¸æŠž"
+ "OFF"
+ "ON"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "Space"
+ "Sym+"
+ "Menu+"
+ "検索…"
+ "検索ã‚ーワードを削除"
+ "検索ã‚ーワード"
+ "検索"
+ "検索ã‚ーワードをé€ä¿¡"
+ "音声検索"
+ "共有"
+ "%sã¨å…±æœ‰"
+ "折りãŸãŸã‚€"
+ ボトムシートを閉ã˜ã‚‹
+ ボトムシートを開ã
+ 下åŠåˆ†ã‚’展開
+ ドラッグ ãƒãƒ³ãƒ‰ãƒ«ã‚’ダブルタップã—ã¾ã—ãŸ
+ ドラッグ ãƒãƒ³ãƒ‰ãƒ«
+ "応ç”"
+ "ビデオ"
+ "æ‹’å¦"
+ "通話終了"
+ "ç€ä¿¡"
+ "通話ä¸"
+ "ç€ä¿¡ã‚’スクリーニングä¸"
+ å…¥åŠ›æ¸ˆã¿æ–‡å—æ•°: %1$d/%2$d
+ æ–‡å—æ•°åˆ¶é™ã‚’è¶…ãˆã¦ã„ã¾ã™ï¼ˆ%1$d/%2$d æ–‡å—)
+ テã‚ストを消去
+ 有効ã«ã™ã‚‹
+ %1$sã®å®Ÿè¡Œã«ã¯ã€Google Playé–‹ç™ºè€…ã‚µãƒ¼ãƒ“ã‚¹ã®æœ‰åŠ¹åŒ–ãŒå¿…è¦ã§ã™ã€‚
+ Google Playé–‹ç™ºè€…ã‚µãƒ¼ãƒ“ã‚¹ã®æœ‰åŠ¹åŒ–
+ インストール
+ 「%1$sã€ã®å®Ÿè¡Œã«ã¯ Google Play 開発者サービスãŒå¿…è¦ã§ã™ãŒã€ãŠä½¿ã„ã®ãƒ‡ãƒã‚¤ã‚¹ã«ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ã¾ã›ã‚“。
+ Google Play開発者サービスã®å…¥æ‰‹
+ Google Play 開発者サービスã®åˆ©ç”¨
+ Google Play開発者サービスã®ã‚¨ãƒ©ãƒ¼
+ 「%1$sã€ã§ Google Play 開発者サービスã«å•題ãŒç™ºç”Ÿã—ã¦ã„ã¾ã™ã€‚ã‚‚ã†ä¸€åº¦ãŠè©¦ã—ãã ã•ã„。
+ 「%1$sã€ã®å®Ÿè¡Œã«ã¯ Google Play 開発者サービスãŒå¿…è¦ã§ã™ãŒã€ãŠä½¿ã„ã®ãƒ‡ãƒã‚¤ã‚¹ã§ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“。
+ æ›´æ–°
+ %1$sã®å®Ÿè¡Œã«ã¯Google Playé–‹ç™ºè€…ã‚µãƒ¼ãƒ“ã‚¹ã®æ›´æ–°ãŒå¿…è¦ã§ã™ã€‚
+ Google Playé–‹ç™ºè€…ã‚µãƒ¼ãƒ“ã‚¹ã®æ›´æ–°
+ %1$sã®å®Ÿè¡Œã«ã¯Google Play開発者サービスãŒå¿…è¦ã§ã™ãŒã€ã“ã®ã‚µãƒ¼ãƒ“スã¯ç¾åœ¨æ›´æ–°ä¸ã§ã™ã€‚
+ Google Playé–‹ç™ºè€…ã‚µãƒ¼ãƒ“ã‚¹ã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå¿…è¦ã§ã™ã€‚ã¾ã‚‚ãªã自動更新ã•れã¾ã™ã€‚
+ スマートフォンã§é–‹ã
+ ãƒã‚°ã‚¤ãƒ³
+ Googleã«ãƒã‚°ã‚¤ãƒ³
+ "コピー"
+ "リンクをクリップボードã«ã‚³ãƒ”ーã—ã¾ã—ãŸ"
+ エラー
+ "詳細è¨å®š"
+ プルダウン メニューを表示
+ "リンクをコピー"
+ "ブラウザã§é–‹ã"
+ "リンクã®å…±æœ‰"
+ ダイアãƒã‚° アイコン
+ タブ
+ åˆå‰ã¾ãŸã¯åˆå¾Œã‚’é¸æŠž
+ %1$s 時間
+ æ™‚åˆ»ã‚’é¸æŠžã—ã¦ãã ã•ã„
+ %1$s時
+ åˆ†ã‚’é¸æŠž
+ %1$s分
+ AM
+ 時刻を時計ã§å…¥åŠ›ã™ã‚‹ãƒ¢ãƒ¼ãƒ‰ã«åˆ‡ã‚Šæ›¿ãˆã¾ã™ã€‚
+ 時間
+ 分
+ PM
+ æ™‚é–“ã‚’é¸æŠž
+ 時刻をテã‚ストã§å…¥åŠ›ã™ã‚‹ãƒ¢ãƒ¼ãƒ‰ã«åˆ‡ã‚Šæ›¿ãˆã¾ã™ã€‚
+ æ–°ã—ã„通知
+ %1$s を削除ã—ã¾ã™
+ %1$d ä»¶ä»¥ä¸Šã®æ–°ã—ã„通知
+ 翌月ã«å¤‰æ›´
+ 剿œˆã«å¤‰æ›´
+ é–‹å§‹æ—¥ã®é¸æŠž: %1$s – 終了日ã®é¸æŠž: %2$s
+ ç¾åœ¨ã®é¸æŠž: %1$s
+ ãªã—
+ ã‚ャンセル
+ OK
+ %1$s
+ æ—¥ä»˜ã‚’é¸æŠžã—ã¦ãã ã•ã„
+ é¸æŠžã—ãŸæ—¥ä»˜
+ 曜日ã®åˆ—: %1$s
+ 終了日 %1$s
+ å½¢å¼ãŒç„¡åйã§ã™ã€‚
+ 例: %1$s
+ 使用: %1$s
+ 範囲ãŒç„¡åйã§ã™ã€‚
+ ç¾åœ¨ã®å¹´ï¼ˆ%1$d)ã«ç§»å‹•
+ %1$d å¹´ã«ç§»å‹•
+ 範囲外: %1$s
+ 開始日~%1$s
+ %1$s~終了日
+ %1$s~%2$s
+ æœŸé–“ã‚’é¸æŠžã—ã¦ãã ã•ã„
+ 開始日~終了日
+ ä¿å˜
+ é–‹å§‹æ—¥ %1$s
+ 日付
+ 終了日
+ é–‹å§‹æ—¥
+ d
+ m
+ y
+ 今日(%1$s)
+ カレンダー入力モードã«åˆ‡ã‚Šæ›¿ãˆ
+ タップã™ã‚‹ã¨ã‚«ãƒ¬ãƒ³ãƒ€ãƒ¼è¡¨ç¤ºã«åˆ‡ã‚Šæ›¿ã‚りã¾ã™
+ テã‚スト入力モードã«åˆ‡ã‚Šæ›¿ãˆ
+ タップã™ã‚‹ã¨å¹´è¡¨ç¤ºã«åˆ‡ã‚Šæ›¿ã‚りã¾ã™
+ ã‚ャンセル
+ OK
+ "未è¨å®š"
+ パスワードを表示
+ "「%1$sã€ã‚’クリップボードã«ã‚³ãƒ”ーã—ã¾ã—ãŸã€‚"
+ "検索"
+ "999+"
+ "%1$sã€%2$s"
+ "OFF"
+ "ON"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ka/values-ka.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ka/values-ka.xml
new file mode 100644
index 00000000..25c72032
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ka/values-ka.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d áƒáƒ®áƒáƒšáƒ˜ შეტყáƒáƒ‘ინებáƒ
+ - %d áƒáƒ®áƒáƒšáƒ˜ შეტყáƒáƒ‘ინებáƒ
+
+ "მთáƒáƒ•áƒáƒ ზე გáƒáƒ“áƒáƒ¡áƒ•ლáƒ"
+ "ზემáƒáƒ— გáƒáƒ“áƒáƒ¡áƒ•ლáƒ"
+ "სხვრვáƒáƒ იáƒáƒœáƒ¢áƒ”ბი"
+ "მზáƒáƒ“áƒáƒ"
+ "ყველáƒáƒ¡ ნáƒáƒ®áƒ•áƒ"
+ "áƒáƒ˜áƒ ჩიეთ áƒáƒžáƒ˜"
+ "გáƒáƒ›áƒáƒ თვáƒ"
+ "ჩáƒáƒ თვáƒ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "შáƒáƒ ისი"
+ "Sym+"
+ "Menu+"
+ "ძიებáƒâ€¦"
+ "მáƒáƒ—ხáƒáƒ•ნის გáƒáƒ¡áƒ£áƒ¤áƒ—áƒáƒ•ებáƒ"
+ "მáƒáƒ—ხáƒáƒ•ნის ძიებáƒ"
+ "ძიებáƒ"
+ "მáƒáƒ—ხáƒáƒ•ნის გáƒáƒ“áƒáƒ’ზáƒáƒ•ნáƒ"
+ "ხმáƒáƒ•áƒáƒœáƒ˜ ძიებáƒ"
+ "გáƒáƒ–იáƒáƒ ებáƒ:"
+ "%s-ით გáƒáƒ–იáƒáƒ ებáƒ"
+ "ჩáƒáƒ™áƒ”ცვáƒ"
+ ქვედრფურცლის ჩáƒáƒ™áƒ”ცვáƒ
+ ქვედრფურცლის გáƒáƒ¨áƒšáƒ
+ ნáƒáƒ®áƒ”ვრáƒáƒ›áƒ“ე გáƒáƒ¤áƒáƒ თáƒáƒ”ბáƒ
+ áƒáƒ მáƒáƒ’ი შეხებრჩáƒáƒ•ლების სáƒáƒ®áƒ”ლურზე
+ სáƒáƒ®áƒ”ლური ჩáƒáƒ•ლებისთვის
+ "პáƒáƒ¡áƒ£áƒ®áƒ˜"
+ "ვიდეáƒ"
+ "უáƒáƒ ყáƒáƒ¤áƒ"
+ "გáƒáƒ—იშვáƒ"
+ "შემáƒáƒ›áƒáƒ•áƒáƒšáƒ˜ ზáƒáƒ ი"
+ "მიმდინáƒáƒ ე ზáƒáƒ ი"
+ "შემáƒáƒ›áƒáƒ•áƒáƒšáƒ˜ ზáƒáƒ ების გáƒáƒªáƒ®áƒ ილვáƒ"
+ შეყვáƒáƒœáƒ˜áƒšáƒ˜áƒ %2$d-დáƒáƒœ %1$d სიმბáƒáƒšáƒ
+ გáƒáƒ“áƒáƒáƒáƒ ბებულირსიმბáƒáƒšáƒáƒ—რლიმიტი (%2$d-დáƒáƒœ %1$d)
+ ტექსტის გáƒáƒ¡áƒ£áƒ¤áƒ—áƒáƒ•ებáƒ
+ ჩáƒáƒ თვáƒ
+ %1$s ვერიმუშáƒáƒ•ებს Google Play Services-ის ჩáƒáƒ თვáƒáƒ›áƒ“ე.
+ Google Play Services-ის ჩáƒáƒ თვáƒ
+ ინსტáƒáƒšáƒáƒªáƒ˜áƒ
+ %1$s ვერგáƒáƒ”შვებრGoogle Play Services-ის გáƒáƒ ეშე, რáƒáƒ›áƒ”ლიც áƒáƒ™áƒšáƒ˜áƒ თქვენს მáƒáƒ¬áƒ§áƒáƒ‘ილáƒáƒ‘áƒáƒ¡.
+ Google Play Services-ის ჩáƒáƒ›áƒáƒ¢áƒ•ირთვáƒ
+ Google Play services-ის ხელმისáƒáƒ¬áƒ•დáƒáƒ›áƒáƒ‘áƒ
+ Google Play Services-ის შეცდáƒáƒ›áƒ
+ %1$s-ს Google Play Services-თáƒáƒœ პრáƒáƒ‘ლემრშეექმნáƒ. გთხáƒáƒ•თ, ცáƒáƒ“áƒáƒ— ხელáƒáƒ®áƒšáƒ.
+ %1$s ვერგáƒáƒ”შვებრGoogle Play Services-ის გáƒáƒ ეშე, რáƒáƒ›áƒšáƒ”ბიც მხáƒáƒ დáƒáƒ£áƒáƒ”რელირთქვენი მáƒáƒ¬áƒ§áƒáƒ‘ილáƒáƒ‘ის მიერ.
+ გáƒáƒœáƒáƒ®áƒšáƒ”ბáƒ
+ %1$s ვერგáƒáƒ”შვებáƒ, თუ Google Play სერვისებს áƒáƒ გáƒáƒœáƒáƒáƒ®áƒšáƒ”ბთ.
+ გáƒáƒœáƒáƒáƒ®áƒšáƒ”თ Google Play Services
+ %1$s ვერგáƒáƒ”შვებრGoogle Play Services-ის გáƒáƒ ეშე, რáƒáƒ›áƒ”ლთრგáƒáƒœáƒáƒ®áƒšáƒ”ბáƒáƒª áƒáƒ›áƒŸáƒáƒ›áƒáƒ“ მიმდინáƒáƒ ეáƒáƒ‘ს.
+ სáƒáƒáƒ˜áƒ áƒáƒ Google Play Services-ის áƒáƒ®áƒáƒšáƒ˜ ვერსიáƒ. ის მáƒáƒšáƒ” გáƒáƒœáƒáƒ®áƒšáƒ“ებáƒ.
+ ტელეფáƒáƒœáƒ¨áƒ˜ გáƒáƒ®áƒ¡áƒœáƒ
+ შესვლáƒ
+ Google-ით შესვლáƒ
+ "კáƒáƒžáƒ˜áƒ ებáƒ"
+ "გáƒáƒªáƒ•ლის ბუფერში კáƒáƒžáƒ˜áƒ ებული ბმული"
+ შეცდáƒáƒ›áƒ
+ "დáƒáƒ›áƒáƒ¢áƒ”ბით"
+ ჩáƒáƒ›áƒáƒ¡áƒáƒ¨áƒšáƒ”ლი მენიუს ჩვენებáƒ
+ "ბმულის კáƒáƒžáƒ˜áƒ ებáƒ"
+ "ბრáƒáƒ£áƒ–ერში გáƒáƒ®áƒ¡áƒœáƒ"
+ "ბმულის გáƒáƒ–იáƒáƒ ებáƒ"
+ დიáƒáƒšáƒáƒ’ის ხáƒáƒ¢áƒ£áƒšáƒ
+ ჩáƒáƒœáƒáƒ თი
+ áƒáƒ˜áƒ ჩიეთ AM áƒáƒœ PM
+ %1$s სáƒáƒáƒ—ი
+ áƒáƒ˜áƒ ჩიეთ სáƒáƒáƒ—ი
+ %1$s სáƒáƒáƒ—ი
+ áƒáƒ˜áƒ ჩიეთ წუთები
+ %1$s წუთი
+ AM
+ დრáƒáƒ˜áƒ¡ შეყვáƒáƒœáƒ˜áƒ¡áƒ—ვის სáƒáƒáƒ—ის რეჟიმზე გáƒáƒ“áƒáƒ თვáƒ.
+ სáƒáƒáƒ—ი
+ წუთი
+ PM
+ áƒáƒ˜áƒ ჩიეთ დრáƒ
+ დრáƒáƒ˜áƒ¡ შეყვáƒáƒœáƒ˜áƒ¡áƒ—ვის ტექსტის შეყვáƒáƒœáƒ˜áƒ¡ რეჟიმზე გáƒáƒ“áƒáƒ თვáƒ.
+ áƒáƒ®áƒáƒšáƒ˜ შეტყáƒáƒ‘ინებáƒ
+ %1$s-ის áƒáƒ›áƒáƒ¨áƒšáƒ
+ %1$d-ზე მეტი áƒáƒ®áƒáƒšáƒ˜ შეტყáƒáƒ‘ინებáƒ
+ შემდეგ თვეზე გáƒáƒ“áƒáƒ¡áƒ•ლáƒ
+ წინრთვეზე გáƒáƒ“áƒáƒ¡áƒ•ლáƒ
+ დáƒáƒ¬áƒ§áƒ”ბის თáƒáƒ იღის შერჩევáƒ: %1$s – დáƒáƒ¡áƒ ულების თáƒáƒ იღის შერჩევáƒ: %2$s
+ áƒáƒ›áƒŸáƒáƒ›áƒ˜áƒœáƒ“ელი áƒáƒ ჩევáƒáƒœáƒ˜: %1$s
+ áƒáƒ ცერთი
+ გáƒáƒ£áƒ¥áƒ›áƒ”ბáƒ
+ კáƒáƒ გი
+ %1$s
+ áƒáƒ˜áƒ ჩიეთ თáƒáƒ იღი
+ áƒáƒ ჩეული თáƒáƒ იღი
+ დღეების სვეტი: %1$s
+ დáƒáƒ¡áƒ ულების თáƒáƒ იღი %1$s
+ áƒáƒ áƒáƒ¡áƒ¬áƒáƒ ი ფáƒáƒ მáƒáƒ¢áƒ˜.
+ მáƒáƒ’áƒáƒšáƒ˜áƒ—ი: %1$s
+ %1$s-ის გáƒáƒ›áƒáƒ§áƒ”ნებáƒ
+ დიáƒáƒžáƒáƒ–áƒáƒœáƒ˜ áƒáƒ áƒáƒ¡áƒ¬áƒáƒ იáƒ.
+ ნáƒáƒ•იგáƒáƒªáƒ˜áƒ მიმდინáƒáƒ ე წელზე (%1$d)
+ %1$d წელზე ნáƒáƒ•იგáƒáƒªáƒ˜áƒ
+ დიáƒáƒžáƒáƒ–áƒáƒœáƒ¡ მიღმáƒ: %1$s
+ დáƒáƒ¬áƒ§áƒ”ბის თáƒáƒ იღი - %1$s
+ %1$s - დáƒáƒ¡áƒ ულების თáƒáƒ იღი
+ %1$s - %2$s
+ áƒáƒ˜áƒ ჩიეთ დიáƒáƒžáƒáƒ–áƒáƒœáƒ˜
+ დáƒáƒ¬áƒ§áƒ”ბის თáƒáƒ იღი - დáƒáƒ¡áƒ ულების თáƒáƒ იღი
+ შენáƒáƒ®áƒ•áƒ
+ დáƒáƒ¬áƒ§áƒ”ბის თáƒáƒ იღი %1$s
+ თáƒáƒ იღი
+ დáƒáƒ¡áƒ ულების თáƒáƒ იღი
+ დáƒáƒ¬áƒ§áƒ”ბის თáƒáƒ იღი
+ დ
+ წთ
+ წ
+ დღეს (%1$s)
+ კáƒáƒšáƒ”ნდáƒáƒ ში შეყვáƒáƒœáƒ˜áƒ¡ რეჟიმზე გáƒáƒ“áƒáƒ თვáƒ
+ შეეხეთ კáƒáƒšáƒ”ნდრის ხედზე გáƒáƒ“áƒáƒ¡áƒáƒ თáƒáƒ•áƒáƒ“
+ ტექსტის შეყვáƒáƒœáƒ˜áƒ¡ რეჟიმზე გáƒáƒ“áƒáƒ თვáƒ
+ შეეხეთ წლის ხედზე გáƒáƒ“áƒáƒ¡áƒáƒ თáƒáƒ•áƒáƒ“
+ გáƒáƒ£áƒ¥áƒ›áƒ”ბáƒ
+ კáƒáƒ გი
+ "áƒáƒ áƒáƒ ის დáƒáƒ§áƒ”ნებული"
+ პáƒáƒ áƒáƒšáƒ˜áƒ¡ ჩვენებáƒ
+ "„%1$s“ კáƒáƒžáƒ˜áƒ ებულირგáƒáƒªáƒ•ლის ბუფერში."
+ "ძიებáƒ"
+ "999+"
+ "%1$s, %2$s"
+ "გáƒáƒ›áƒáƒ თული"
+ "ჩáƒáƒ თული"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-kk/values-kk.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-kk/values-kk.xml
new file mode 100644
index 00000000..0abbed40
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-kk/values-kk.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d жаңа хабарландыру
+ - %d жаңа хабарландыру
+
+ "Ðегізгі бетке өту"
+ "Жоғары қарай өту"
+ "БаÑқа опциÑлар"
+ "Дайын"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "ӨШІРУ"
+ "ҚОСУ"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "Ð±Ð¾Ñ Ð¾Ñ€Ñ‹Ð½"
+ "Sym+"
+ "Menu+"
+ "Іздеу…"
+ "Сұрауды өшіру"
+ "Іздеу Ñұрауы"
+ "Іздеу"
+ "Сұрауды жіберу"
+ "ДауыÑпен іздеу"
+ "БөліÑу"
+ "%s қолданбаÑымен бөліÑу"
+ "Жию"
+ Төменгі парақшаны жию
+ Төменгі парақшаны жаю
+ Жартылай кеңейту
+ Сүйрейтін тетік екі рет түртілді.
+ Сүйрейтін тетік
+ "Жауап"
+ "Бейне"
+ "Қабылдамау"
+ "Тұтқаны қою"
+ "ÐšÑ–Ñ€Ñ–Ñ Ò›Ð¾Ò£Ñ‹Ñ€Ð°Ñƒ"
+ "Қоңырау"
+ "Келген қоңырауды Ñүзу"
+ %1$d/%2$d таңба енгізілді
+ Таңба Ñаны шегінен аÑты: %1$d/%2$d
+ Мәтінді өшіру
+ ҚоÑу
+ Google Play қызметтерін қоÑпаÑаңыз, %1$s Ð¶Ò±Ð¼Ñ‹Ñ Ñ–Ñтемейді.
+ Google Play қызметтерін қоÑу
+ Орнату
+ Google Play қызметтері құрылғыда болмағандықтан, %1$s Ñ–Ñке қоÑылмайды.
+ Google Play қызметтерін алу
+ Google Play қызметтерінің қолжетімділігі
+ Google Play қызметтерінің қатеÑÑ–
+ %1$s қолданбаÑында Google Play қызметіне байланыÑты белгіÑіз қате шықты. Әрекетті қайталаңыз.
+ %1$s қолданбаÑÑ‹ құрылғыңызда қолдау көрÑетілмейтін Google Play қызметінÑіз Ð¶Ò±Ð¼Ñ‹Ñ Ñ–Ñтемейді.
+ Жаңарту
+ Google Play қызметтерін жаңартпаÑаңыз, %1$s Ñ–Ñке қоÑылмайды.
+ Google Play қызметтерін жаңарту
+ Қазіргі уақытта жаңартылып жатқан Google Play қызметтерінÑіз %1$s Ñ–Ñке қоÑылмайды.
+ Google Play қызметтерінің жаңа нұÑқаÑÑ‹ қажет. Ол қыÑқа уақыттан кейін өзі жаңарады.
+ Телефонда ашу
+ Кіру
+ Google арқылы кіру
+ "Көшіру"
+ "Сілтеме буферге көшірілді."
+ Қате
+ "ҚоÑымша"
+ Ðшылмалы мәзірді көрÑету
+ "Сілтемені көшіру"
+ "Браузерден ашу"
+ "Сілтемені бөліÑу"
+ Диалог белгішеÑÑ–
+ Қойынды
+ \"AM\" немеÑе \"PM\" форматын таңдау
+ Сағат: %1$s
+ Сағатты таңдау
+ Сағат: %1$s
+ Минут таңдау
+ %1$s минут
+ AM
+ Уақытты енгізу үшін Ñағат режиміне өтіңіз.
+ Сағат
+ Mинут
+ PM
+ Уақытты таңдау
+ Уақытты енгізу үшін мәтін енгізу режиміне өтіңіз.
+ Жаңа хабарландыру
+ %1$s контентін өшіру
+ %1$d Ñанынан көп жаңа хабарландыру
+ КелеÑÑ– айға өту
+ Ðлдыңғы айға өту
+ Таңдалған баÑталу уақыты: %1$s – Таңдалған аÑқталу уақыты: %2$s
+ Ðғымдағы таңдау: %1$s
+ ешқандай
+ Ð‘Ð°Ñ Ñ‚Ð°Ñ€Ñ‚Ñƒ
+ Жарайды
+ %1$s
+ Күнді таңдау
+ Таңдалған күн
+ Күндер бағаны: %1$s
+ ÐÑқталу күні: %1$s
+ Формат жарамÑыз.
+ МыÑал: %1$s.
+ Жарамды формат: %1$s.
+ Ðуқым жарамÑыз.
+ Қазіргі жылға өту %1$d
+ %1$d жылына жылжу
+ Ðуқымнан тыc: %1$s
+ БаÑталу күні – %1$s
+ %1$s – аÑқталу күні
+ %1$s – %2$s
+ Ðралықты таңдау
+ БаÑталу күні – аÑқталу күні
+ Сақтау
+ БаÑталу күні: %1$s
+ Күні
+ ÐÑқталу күні
+ БаÑталу күні
+ к
+ а
+ ж
+ Бүгін %1$s
+ Күнтізбенің енгізу режиміне ауыÑу
+ Күнтізбе бойынша көрÑету үшін түртіңіз.
+ Мәтін енгізу режиміне ауыÑу
+ Жыл бойынша көрÑету үшін түртіңіз.
+ Ð‘Ð°Ñ Ñ‚Ð°Ñ€Ñ‚Ñƒ
+ Жарайды
+ "Орнатылмаған"
+ ÒšÒ±Ð¿Ð¸Ñ Ñөзді көрÑету
+ "\"%1$s\" қорытындыÑÑ‹ буферге көшірілді"
+ "Іздеу"
+ "999+"
+ "%1$s, %2$s"
+ "ӨШІРУЛІ"
+ "ҚОСУЛЫ"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-km/values-km.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-km/values-km.xml
new file mode 100644
index 00000000..ea776a34
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-km/values-km.xml
@@ -0,0 +1,140 @@
+
+
+
+ - ការជូនដំណឹងážáŸ’មី %d
+ - ការជូនដំណឹងážáŸ’មី %d
+
+ "​ទៅទំពáŸážšážŠáž¾áž˜"
+ "រំកិលឡើងលើ"
+ "ជម្រើសច្រើនទៀáž"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសរើស​កម្មវិធី​​"
+ "បិទ"
+ "បើក"
+ "Alt+"
+ "Ctrl+"
+ "លុប"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ស្វែងរក…"
+ "សម្អាážâ€‹ážŸáŸ†ážŽáž½ážš"
+ "ស្វែងរកសំណួរ​"
+ "ស្វែងរក"
+ "ដាក់បញ្ជូន​សំណួរ"
+ "ស្វែងរក​ážáž¶áž˜â€‹ážŸáŸ†áž¡áŸáž„"
+ "ចែករំលែក​ជា​មួយ"
+ "ចែក​រំលែក​ជា​មួយ %s"
+ "បង្រួម"
+ បង្រួមសន្លឹក​ážáž¶áž„ក្រោម
+ ពង្រីកសន្លឹក​ážáž¶áž„ក្រោម
+ ពង្រីក​ពាក់កណ្ដាល
+ បានប៉ះដង​អូស​ពីរដង
+ ដង​អូស
+ "ឆ្លើយ"
+ "វីដáŸáž¢áž¼"
+ "បដិសáŸáž’"
+ "ដាក់​ចុះ"
+ "ការ​ហៅ​ចូល"
+ "ការ​ហៅដែលកំពុងដំណើរការ"
+ "កំពុងពិនិážáŸ’យការ​ហៅ​ចូល"
+ ážáž½â€‹áž¢áž€áŸ’សរ​បាន​បញ្ចូល​ %1$d នៃ %2$d
+ ដែនកំណážáŸ‹ážáž½áž¢áž€áŸ’សរបានលើស %1$d នៃ %2$d
+ សម្អាážáž¢áž€áŸ’សរ
+ បើក
+ %1$s នឹងមិនដំណើរការទ០លុះážáŸ’ážšáž¶ážáŸ‚អ្នកបើកសáŸážœáž¶áž€áž˜áŸ’ម Google Play។
+ បើកសáŸážœáž¶áž€áž˜áŸ’ម Google Play
+ ដំឡើង
+ %1$s នឹងមិនដំណើរការទ០ប្រសិនបើមិនមានសáŸážœáž¶áž€áž˜áŸ’មនានារបស់ Google Play ដែលបានបាážáŸ‹áž–ីឧបករណáŸážšáž”ស់អ្នក។
+ ទាញយកសáŸážœáž¶áž€áž˜áŸ’ម Google Play
+ លទ្ធភាព​ប្រើប្រាស់សáŸážœáž¶áž€áž˜áŸ’ម Google Play
+ កំហុស​​សáŸážœáž¶áž€áž˜áŸ’ម​ Google កម្សាន្áž
+ %1$s កំពុងមានបញ្ហាជាមួយសáŸážœáž¶áž€áž˜áŸ’មរបស់ Google Play ។ សូមព្យាយាមម្ážáž„ទៀážáž“ៅពáŸáž›áž€áŸ’រោយ។
+ %1$s នឹងមិនដំណើរការដោយគ្មានសáŸážœáž¶áž€áž˜áŸ’មរបស់ Google Play ដែលឧបករណáŸážšáž”ស់អ្នកមិនគាំទ្រនោះទáŸáŸ”
+ ធ្វើបច្ចុប្បន្នភាព
+ %1$s នឹងមិនដំណើរការទ០លុះážáŸ’ážšáž¶ážáŸ‚អ្នកធ្វើបច្ចុប្បន្នភាពសáŸážœáž¶áž€áž˜áŸ’ម Google Play។
+ អាប់ដáŸážážŸáŸážœáž¶áž€áž˜áŸ’ម Google Play
+ %1$s នឹងមិនដំណើរការទ០បើមិនមានសáŸážœáž¶áž€áž˜áŸ’ម Google Play ដោយសារážáŸ‚វាកំពុងអាប់ដáŸážáŸ”
+ ážáž˜áŸ’រូវឲ្យមានកំណែážáŸ’មីនៃសáŸážœáž¶áž€áž˜áŸ’ម Google Play។ វានឹងអាប់ដáŸážážŠáŸ„áž™ážáŸ’លួនវានៅពáŸáž›áž”ន្ážáž·áž…ទៀážáž“áŸáŸ‡áŸ”
+ បើកážáž¶áž˜áž‘ូរសáŸáž–្ទ
+ ចូល
+ ចូលដោយប្រើ Google
+ "ចម្លង"
+ "បាន​ចម្លង​ážáŸ†ážŽâ€‹áž‘ៅឃ្លីបបáž"
+ បញ្ហា
+ "កម្រិážážáŸ’ពស់"
+ បង្ហាញ​ម៉ឺនុយ​ធ្លាក់ចុះ
+ "ចម្លង​ážáŸ†ážŽ"
+ "បើក​នៅក្នុង​កម្មវិធី​រុករកážáž¶áž˜â€‹áž¢áŸŠáž¸áž“ធឺណិáž"
+ "ážáŸ†ážŽáž…ែករំលែក"
+ រូប​ប្រអប់បញ្ចូល
+ ផ្ទាំង
+ ជ្រើសរើស AM ឬ PM
+ %1$s ម៉ោង
+ ជ្រើសរើសម៉ោង
+ ម៉ោង %1$s
+ ជ្រើស​នាទី
+ %1$s នាទី
+ ព្រឹក
+ ប្ážáž¼ážšâ€‹áž‘ៅ​មុážáž„ារ​នាឡិកា​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។
+ ម៉ោង
+ នាទី​
+ ល្ងាច
+ ជ្រើស​ម៉ោង
+ ប្ážáž¼ážšâ€‹áž‘ៅ​មុážáž„ារ​បញ្ចូល​អក្សរ​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។
+ ការជូនដំណឹងážáŸ’មី
+ លុប %1$s
+ ការជូនដំណឹង​ážáŸ’មីៗ​លើស %1$d ហើយ
+ ប្ដូរ​ទៅ​ážáŸ‚បន្ទាប់
+ ប្ដូរ​ទៅ​ážáŸ‚មុន
+ ការជ្រើសរើស​កាលបរិច្ឆáŸáž‘ចាប់ផ្ដើម៖ %1$s – ការជ្រើសរើស​កាលបរិច្ឆáŸáž‘បញ្ចប់៖ %2$s
+ ការជ្រើសរើស​បច្ចុប្បន្ន៖ %1$s
+ គ្មាន
+ បោះ​បង់
+ យល់ព្រម
+ %1$s
+ ជ្រើសរើស​កាល​បរិច្ឆáŸáž‘
+ កាលបរិច្ឆáŸáž‘ដែលបាន​ជ្រើសរើស
+ ជួរឈរ​នៃ​ážáŸ’ងៃ៖ %1$s
+ កាលបរិច្ឆáŸáž‘​បញ្ចប់ %1$s
+ ទម្រង់មិន​ážáŸ’រឹមážáŸ’រូវទáŸáŸ”
+ ឧទាហរណáŸáŸ– %1$s
+ ប្រើ៖ %1$s
+ ជួរ​មិនážáŸ’រឹមážáŸ’រូវទáŸáŸ”
+ រុករក​ទៅកាន់​ឆ្នាំបច្ចុប្បន្ន %1$d
+ ប្ដូរទៅ​ឆ្នាំ %1$d
+ នៅក្រៅ​ចន្លោះ៖ %1$s
+ កាលបរិច្ឆáŸáž‘​ចាប់ផ្ដើម – %1$s
+ %1$s – កាលបរិច្ឆáŸáž‘​បញ្ចប់
+ %1$s – %2$s
+ ជ្រើស​រើស​ចន្លោះ
+ កាលបរិច្ឆáŸáž‘​ចាប់ផ្ដើម – កាលបរិច្ឆáŸáž‘​បញ្ចប់
+ រក្សាទុក
+ កាលបរិច្ឆáŸáž‘​ចាប់ផ្ដើម %1$s
+ កាលបរិច្ឆáŸáž‘
+ កាល​បរិច្ឆáŸáž‘​បញ្ចប់
+ កាល​បរិច្ឆáŸáž‘​ចាប់ផ្ដើម
+ áž
+ áž
+ ឆ
+ ážáŸ’ងៃនáŸáŸ‡ %1$s
+ ប្ដូរទៅ​របៀប​បញ្ចូល​ប្រážáž·áž‘áž·áž“
+ ចុច ដើម្បីប្ដូរទៅទិដ្ឋភាពប្រážáž·áž‘áž·áž“
+ ប្ដូរទៅ​របៀប​បញ្ចូល​អក្សរ
+ ចុច ដើម្បីប្ដូរទៅទិដ្ឋភាពឆ្នាំ
+ បោះបង់
+ យល់ព្រម
+ "មិនបានកំណážáŸ‹"
+ បង្ហាញពាក្យសម្ងាážáŸ‹
+ "\"%1$s\" បានចម្លងទៅ​ឃ្លីបបážáŸ”"
+ "ស្វែងរក"
+ "999+"
+ "%1$s, %2$s"
+ "បិទ"
+ "បើក"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-kn/values-kn.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-kn/values-kn.xml
new file mode 100644
index 00000000..2d5951af
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-kn/values-kn.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d ಹೊಸ ಅಧಿಸೂಚನೆಗಳà³
+ - %d ಹೊಸ ಅಧಿಸೂಚನೆಗಳà³
+
+ "ಹೋಮà³â€Œà²—ೆ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ"
+ "ಮೇಲಕà³à²•ೆ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ"
+ "ಇನà³à²¨à²·à³à²Ÿà³ ಆಯà³à²•ೆಗಳà³"
+ "ಮà³à²—ಿದಿದೆ"
+ "ಎಲà³à²²à²µà²¨à³à²¨à³‚ ನೋಡಿ"
+ "ಆà³à²¯à²ªà³â€Œà²µà³Šà²‚ದನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ"
+ "ಆಫà³"
+ "ಆನà³"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ಹà³à²¡à³à²•ಿ…"
+ "ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ತೆರವà³à²—ೊಳಿಸಿ"
+ "ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ಹà³à²¡à³à²•ಿ"
+ "ಹà³à²¡à³à²•ಿ"
+ "ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ಸಲà³à²²à²¿à²¸à²¿"
+ "ಧà³à²µà²¨à²¿ ಹà³à²¡à³à²•ಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳà³à²³à²¿"
+ "%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳà³à²³à²¿"
+ "ಕà³à²—à³à²—ಿಸಿ"
+ ಕೆಳà²à²¾à²—ದ ಶೀಟೠಅನà³à²¨à³ ಕà³à²—à³à²—ಿಸಿ
+ ಕೆಳà²à²¾à²—ದ ಶೀಟೠಅನà³à²¨à³ ವಿಸà³à²¤à²°à²¿à²¸à²¿
+ ಅರà³à²§à²¦à²·à³à²Ÿà³ ವಿಸà³à²¤à²°à²¿à²¸à²¿
+ ಹà³à²¯à²¾à²‚ಡಲೠಡà³à²°à³à²¯à²¾à²—ೠಮಾಡಿ ಎಂಬà³à²¦à²¨à³à²¨à³ ಡಬಲà³-ಟà³à²¯à²¾à²ªà³ ಮಾಡಲಾಗಿದೆ
+ ಹà³à²¯à²¾à²‚ಡಲೠಡà³à²°à³à²¯à²¾à²—ೠಮಾಡಿ
+ "ಉತà³à²¤à²°à²¿à²¸à²¿"
+ "ವೀಡಿಯೊ"
+ "ನಿರಾಕರಿಸಿ"
+ "ಕರೆ ಕೊನೆಗೊಳಿಸಿ"
+ "ಒಳಬರà³à²µ ಕರೆ"
+ "ಚಾಲà³à²¤à²¿à²¯à²²à³à²²à²¿à²°à³à²µ ಕರೆ"
+ "ಒಳಬರà³à²µ ಕರೆಯನà³à²¨à³ ಸà³à²•à³à²°à³€à²¨à³ ಮಾಡಲಾಗà³à²¤à³à²¤à²¿à²¦à³†"
+ %2$d ರಲà³à²²à²¿ %1$d ಅಕà³à²·à²°à²—ಳನà³à²¨à³ ನಮೂದಿಸಲಾಗಿದೆ
+ ಅಕà³à²·à²° ಮಿತಿಯೠ%2$d ರಲà³à²²à²¿ %1$d ಮೀರಿದೆ
+ ಪಠà³à²¯ ತೆರವà³à²—ೊಳಿಸಿ
+ ಸಕà³à²°à²¿à²¯à²—ೊಳಿಸà³
+ Google Play ಸೇವೆಗಳನà³à²¨à³ ನೀವೠಸಕà³à²°à²¿à²¯à²—ೊಳಿಸದ ಹೊರತೠ%1$s ಕಾರà³à²¯à²¨à²¿à²°à³à²µà²¹à²¿à²¸à³à²µà³à²¦à²¿à²²à³à²².
+ Google Play ಸೇವೆಗಳನà³à²¨à³ ಸಕà³à²°à²¿à²¯à²—ೊಳಿಸಿ
+ ಇನà³â€Œà²¸à³à²Ÿà²¾à²²à³ ಮಾಡಿ
+ ನಿಮà³à²® ಸಾಧನದಿಂದ ಕಾಣೆಯಾಗಿರà³à²µ %1$s, Google Play ಸೇವೆಗಳಿಲà³à²²à²¦à³† ರನೠಆಗà³à²µà³à²¦à²¿à²²à³à²².
+ Google Play ಸೇವೆಗಳನà³à²¨à³ ಪಡೆಯಿರಿ
+ Google Play ಸೇವೆಗಳ ಲà²à³à²¯à²¤à³†
+ Google Play ಸೇವೆಗಳ ದೋಷ
+ Google Play ಸೇವೆಗಳಲà³à²²à²¿ %1$s ಸಮಸà³à²¯à³†à²¯à²¨à³à²¨à³ ಹೊಂದಿದೆ. ದಯವಿಟà³à²Ÿà³ ಮತà³à²¤à³† ಪà³à²°à²¯à²¤à³à²¨à²¿à²¸à²¿.
+ ನಿಮà³à²® ಸಾಧನದ ಮೂಲಕ ಬೆಂಬಲಿಸದಿರà³à²µ Google Play ಸೇವೆಗಳಿಲà³à²²à²¦à³† %1$s ರನà³â€Œ ಆಗà³à²µà³à²¦à²¿à²²à³à²².
+ ಅಪà³â€Œà²¡à³‡à²Ÿà³â€Œ ಮಾಡಿ
+ ನೀವೠGoogle Play ಸೇವೆಗಳನà³à²¨à³ ಅಪà³â€à²¡à³‡à²Ÿà³ ಮಾಡದ ಹೊರತೠ%1$s ರನೠಆಗà³à²µà³à²¦à²¿à²²à³à²².
+ Google ಪà³à²²à³‡ ಸೇವೆಗಳನà³à²¨à³ ಅಪà³â€Œà²¡à³‡à²Ÿà³â€Œ ಮಾಡಿ
+ Google Play ಸೇವೆಗಳಿಲà³à²²à²¦à³† ಪà³à²°à²¸à³à²¤à³à²¤ ಅಪà³â€Œà²¡à³‡à²Ÿà³ ಆಗà³à²¤à³à²¤à²¿à²°à³à²µ %1$s ರನೠಆಗà³à²µà³à²¦à²¿à²²à³à²².
+ Google Play ಸೇವೆಗಳ ಹೊಸ ಆವೃತà³à²¤à²¿ ಅಗತà³à²¯à²µà²¿à²¦à³†. ಸದà³à²¯à²¦à²²à³à²²à³‡ ಅದೠತಾನಾಗಿಯೇ ಅಪà³â€Œà²¡à³‡à²Ÿà³ ಆಗà³à²¤à³à²¤à²¦à³†.
+ ಫೋನà³â€Œà²¨à²²à³à²²à²¿ ತೆರೆಯಿರಿ
+ ಸೈನೠಇನà³
+ Google ಮೂಲಕ ಸೈನೠಇನೠಮಾಡಿ
+ "ನಕಲಿಸಿ"
+ "ಕà³à²²à²¿à²ªà³â€Œà²¬à³‹à²°à³à²¡à³â€Œà²—ೆ ಲಿಂಕೠಅನà³à²¨à³ ನಕಲಿಸಲಾಗಿದೆ"
+ ದೋಷ
+ "ಸà³à²§à²¾à²°à²¿à²¤"
+ ಡà³à²°à²¾à²ªà³â€Œà²¡à³Œà²¨à³ ಮೆನೠತೋರಿಸಿ
+ "ಲಿಂಕೠನಕಲಿಸಿ"
+ "ಬà³à²°à³Œà²¸à²°à³â€Œà²¨à²²à³à²²à²¿ ತೆರೆಯಿರಿ"
+ "ಲಿಂಕೠಹಂಚಿರಿ"
+ ಡೈಲಾಗೠà²à²•ಾನà³
+ ಟà³à²¯à²¾à²¬à³
+ ಬೆಳಿಗà³à²—ೆ ಅಥವಾ ಮಧà³à²¯à²¾à²¹à³à²¨ ಆಯà³à²•ೆಮಾಡಿ
+ %1$s ಗಂಟೆಗಳà³
+ ಸಮಯವನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ
+ %1$s ಗಂಟೆ
+ ನಿಮಿಷಗಳನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ
+ %1$s ನಿಮಿಷಗಳà³
+ AM
+ ಸಮಯವನà³à²¨à³ ನಮೂದಿಸಲೠಗಡಿಯಾರದ ನಮೂನೆಗೆ ಬದಲಿಸಿ.
+ ಗಂಟೆ
+ ನಿಮಿಷ
+ PM
+ ಸಮಯವನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ
+ ಸಮಯವನà³à²¨à³ ನಮೂದಿಸಲೠಪಠà³à²¯à²¦ ನಮೂನೆಗೆ ಬದಲಿಸಿ.
+ ಹೊಸ ಅಧಿಸೂಚನೆ
+ %1$s ಅನà³à²¨à³ ತೆಗೆದà³à²¹à²¾à²•ಿ
+ %1$d ಕà³à²•ಿಂತ ಹೆಚà³à²šà³ ಹೊಸ ಅಧಿಸೂಚನೆಗಳà³
+ ಮà³à²‚ದಿನ ತಿಂಗಳಿಗೆ ಬದಲಿಸಿ
+ ಹಿಂದಿನ ತಿಂಗಳಿಗೆ ಬದಲಿಸಿ
+ ಪà³à²°à²¾à²°à²‚ಠದಿನಾಂಕದ ಆಯà³à²•ೆ: %1$s – ಅಂತಿಮ ದಿನಾಂಕದ ಆಯà³à²•ೆ: %2$s
+ ಪà³à²°à²¸à³à²¤à³à²¤ ಆಯà³à²•ೆ: %1$s
+ ಯಾವà³à²¦à³‚ ಇಲà³à²²
+ ರದà³à²¦à³à²®à²¾à²¡à²¿
+ ಸರಿ
+ %1$s
+ ದಿನಾಂಕವನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ
+ ದಿನಾಂಕವನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಲಾಗಿದೆ
+ ದಿನಗಳ ಕಾಲಮà³: %1$s
+ ಕೊನೆಯ ದಿನಾಂಕ %1$s
+ ಅಮಾನà³à²¯à²µà²¾à²¦ ಫಾರà³à²®à³à²¯à²¾à²Ÿà³.
+ ಉದಾಹರಣೆ: %1$s
+ ಇದನà³à²¨à³ ಬಳಸಿ: %1$s
+ ಅಮಾನà³à²¯ ಶà³à²°à³‡à²£à²¿.
+ ಪà³à²°à²¸à³à²¤à³à²¤ ವರà³à²· %1$d ಕà³à²•ೆ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ
+ %1$d ವರà³à²·à²•à³à²•ೆ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ
+ ವà³à²¯à²¾à²ªà³à²¤à²¿à²¯ ಹೊರಗಿದೆ: %1$s
+ ಪà³à²°à²¾à²°à²‚ಠದಿನಾಂಕ – %1$s
+ %1$s – ಮà³à²•à³à²¤à²¾à²¯ ದಿನಾಂಕ
+ %1$s – %2$s
+ ಶà³à²°à³‡à²£à²¿à²¯à²¨à³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ
+ ಪà³à²°à²¾à²°à²‚ಠದಿನಾಂಕ – ಮà³à²•à³à²¤à²¾à²¯ ದಿನಾಂಕ
+ ಉಳಿಸಿ
+ ಪà³à²°à²¾à²°à²‚à²à²¦ ದಿನಾಂಕ %1$s
+ ದಿನಾಂಕ
+ ಮà³à²•à³à²¤à²¾à²¯ ದಿನಾಂಕ
+ ಪà³à²°à²¾à²°à²‚ಠದಿನಾಂಕ
+ ದಿ
+ ತಿ
+ ವ
+ ಇಂದೠ%1$s
+ ಕà³à²¯à²¾à²²à³†à²‚ಡರೠಇನà³â€Œà²ªà³à²Ÿà³ ಮೋಡà³â€Œà²—ೆ ಬದಲಿಸಿ
+ Calendar ವೀಕà³à²·à²£à³†à²—ೆ ಬದಲಾಯಿಸಲೠಟà³à²¯à²¾à²ªà³ ಮಾಡಿ
+ ಪಠà³à²¯ ಇನà³â€Œà²ªà³à²Ÿà³ ಮೋಡà³â€Œà²—ೆ ಬದಲಿಸಿ
+ ವರà³à²·à²¦ ವೀಕà³à²·à²£à³†à²—ೆ ಬದಲಾಯಿಸಲೠಟà³à²¯à²¾à²ªà³ ಮಾಡಿ
+ ರದà³à²¦à³à²®à²¾à²¡à²¿
+ ಸರಿ
+ "ಹೊಂದಿಸಿಲà³à²²"
+ ಪಾಸà³â€Œà²µà²°à³à²¡à³ ತೋರಿಸಿ
+ "\"%1$s\" ಅನà³à²¨à³ ಕà³à²²à²¿à²ªà³â€Œà²¬à³‹à²°à³à²¡à³â€Œà²—ೆ ನಕಲಿಸಲಾಗಿದೆ."
+ "ಹà³à²¡à³à²•ಿ"
+ "999+"
+ "%1$s, %2$s"
+ "ಆಫà³"
+ "ಆನà³"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ko/values-ko.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ko/values-ko.xml
new file mode 100644
index 00000000..1c98a36b
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ko/values-ko.xml
@@ -0,0 +1,140 @@
+
+
+
+ - 새 알림 %d개
+ - 새 알림 %d개
+
+ "홈으로 ì´ë™"
+ "위로 ì´ë™"
+ "추가 옵션"
+ "완료"
+ "ì „ì²´ 보기"
+ "앱 ì„ íƒ"
+ "사용 중지"
+ "사용"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "스페ì´ìŠ¤ë°”"
+ "Sym+"
+ "Menu+"
+ "검색..."
+ "검색어 ì‚ì œ"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "ìŒì„± 검색"
+ "ê³µìœ ëŒ€ìƒ:"
+ "%sê³¼(와) ê³µìœ "
+ "ì ‘ê¸°"
+ 하단 시트 ì ‘ê¸°
+ 하단 시트 펼치기
+ 반만 펼치기
+ ë‘ ë²ˆ íƒí•œ 드래그 핸들
+ 드래그 핸들
+ "통화"
+ "ë™ì˜ìƒ"
+ "ê±°ì ˆ"
+ "ì „í™” ëŠê¸°"
+ "ìˆ˜ì‹ ì „í™”"
+ "ì§„í–‰ ì¤‘ì¸ í†µí™”"
+ "ìˆ˜ì‹ ì „í™” 검사 중"
+ ìž…ë ¥ëœ ê¸€ìž %1$d/%2$d
+ ê¸€ìž ìˆ˜ ì œí•œì´ ì´ˆê³¼ë˜ì—ˆìŠµë‹ˆë‹¤(%1$d/%2$d).
+ í…스트 ì‚ì œ
+ 사용 ì„¤ì •
+ Google Play 서비스를 사용하ë„ë¡ ì„¤ì •í•´ì•¼ %1$sì´(ê°€) ìž‘ë™í•©ë‹ˆë‹¤.
+ Google Play 서비스 사용
+ 설치
+ ê¸°ê¸°ì— Google Play 서비스가 설치ë˜ì–´ 있어야 %1$sì´(ê°€) 실행ë©ë‹ˆë‹¤.
+ Google Play 서비스 설치
+ Google Play 서비스 사용 가능 여부
+ Google Play 서비스 오류
+ %1$sì—서 Google Play 서비스를 사용하는 ë° ë¬¸ì œê°€ 있습니다. 다시 시ë„하세요.
+ %1$sì€(는) Google Play 서비스 ì—†ì´ëŠ” 실행ë˜ì§€ 않으나, 기기ì—서 Google Play 서비스를 ì§€ì›í•˜ì§€ 않습니다.
+ ì—…ë°ì´íЏ
+ Google Play 서비스를 ì—…ë°ì´íŠ¸í•´ì•¼ %1$sì´(ê°€) 실행ë©ë‹ˆë‹¤.
+ Google Play 서비스 ì—…ë°ì´íЏ
+ 현재 ì—…ë°ì´íЏ ì¤‘ì¸ Google Play 서비스가 있어야 %1$sì´(ê°€) 실행ë©ë‹ˆë‹¤.
+ 새 ë²„ì „ì˜ Google Play 서비스가 필요합니다. ê³§ ìžë™ìœ¼ë¡œ ì—…ë°ì´íЏë©ë‹ˆë‹¤.
+ 스마트í°ì—서 열기
+ 로그ì¸
+ Google ê³„ì •ìœ¼ë¡œ 로그ì¸
+ "복사"
+ "í´ë¦½ë³´ë“œì— ë§í¬ 복사ë¨"
+ 오류
+ "ê³ ê¸‰"
+ 드ë¡ë‹¤ìš´ 메뉴 표시
+ "ë§í¬ 복사"
+ "브ë¼ìš°ì €ì—서 열기"
+ "ë§í¬ ê³µìœ "
+ 대화ìƒìž ì•„ì´ì½˜
+ íƒ
+ ì˜¤ì „ ë˜ëŠ” 오후를 ì„ íƒí•˜ì„¸ìš”.
+ %1$s시간
+ 시간 ì„ íƒ
+ %1$s시 ì •ê°
+ ë¶„ ì„ íƒ
+ %1$së¶„
+ ì˜¤ì „
+ 시간 ìž…ë ¥ì„ ìœ„í•´ 시계 모드로 ì „í™˜í•©ë‹ˆë‹¤.
+ 시간
+ ë¶„
+ 오후
+ 시간 ì„ íƒ
+ 시간 ìž…ë ¥ì„ ìœ„í•´ í…스트 ìž…ë ¥ 모드로 ì „í™˜í•©ë‹ˆë‹¤.
+ 새 알림
+ %1$s ì‚ì œ
+ 새 알림 %1$d개 초과
+ ë‹¤ìŒ ë‹¬ë¡œ 변경
+ ì´ì „ 달로 변경
+ ì‹œìž‘ì¼ ì„ íƒ: %1$s, ì¢…ë£Œì¼ ì„ íƒ: %2$s
+ 현재 %1$s ì„ íƒë¨
+ ì—†ìŒ
+ 취소
+ 확ì¸
+ %1$s
+ ë‚ ì§œ ì„ íƒ
+ ì„ íƒí•œ ë‚ ì§œ
+ ìš”ì¼ ì—´: %1$s
+ 종료ì¼: %1$s
+ 형ì‹ì´ 잘못ë˜ì—ˆìŠµë‹ˆë‹¤.
+ 예: %1$s
+ %1$s 사용
+ ë‚ ì§œ 범위가 잘못ë˜ì—ˆìŠµë‹ˆë‹¤.
+ 현재 ì—°ë„(%1$d)로 ì´ë™
+ %1$d년으로 ì´ë™
+ %1$sì€ ë²”ìœ„ë¥¼ 벗어난 ë‚ ì§œìž…ë‹ˆë‹¤.
+ 시작ì¼~%1$s
+ %1$s~종료ì¼
+ %1$s~%2$s
+ 기간 ì„ íƒ
+ 시작ì¼~종료ì¼
+ ì €ìž¥
+ 시작ì¼: %1$s
+ ë‚ ì§œ
+ 종료ì¼
+ 시작ì¼
+ ì¼
+ ì›”
+ ë…„
+ 오늘(%1$s)
+ ìº˜ë¦°ë” ìž…ë ¥ 모드로 ì „í™˜
+ íƒí•˜ì—¬ ìº˜ë¦°ë” ë·°ë¡œ ì „í™˜
+ í…스트 ìž…ë ¥ 모드로 ì „í™˜
+ íƒí•˜ì—¬ ì—°ë„ ë·°ë¡œ ì „í™˜
+ 취소
+ 확ì¸
+ "ì„¤ì •ë˜ì§€ 않ìŒ"
+ 비밀번호 표시
+ "\'%1$s\'ì´(ê°€) í´ë¦½ë³´ë“œì— 복사ë˜ì—ˆìŠµë‹ˆë‹¤."
+ "검색"
+ "999+"
+ "%1$s, %2$s"
+ "사용 안함"
+ "사용"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ky/values-ky.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ky/values-ky.xml
new file mode 100644
index 00000000..ac0db5da
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ky/values-ky.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d жаңы билдирме
+ - %d жаңы билдирме
+
+ "Башкы бетке чабыттоо"
+ "Мурунку Ñкранга өтүү"
+ "Дагы параметрлер"
+ "Бүттү"
+ "Баарын көрүү"
+ "Колдонмо тандоо"
+ "ӨЧҮК"
+ "КҮЙҮК"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "боштук"
+ "Sym+"
+ "Menu+"
+ "Издөө…"
+ "Сурамды өчүрүү"
+ "Изделген Ñурам"
+ "Издөө"
+ "Сурам тапшыруу"
+ "Ðйтып издөө"
+ "Төмөнкү менен бөлүшүү"
+ "%s аркылуу бөлүшүү"
+ "Жыйыштыруу"
+ Ылдыйкы Ñкранды жыйыштыруу
+ Ылдыйкы Ñкранды жайып көрÑөтүү
+ Жарымын жайып көрÑөтүү
+ Ðки жолу таптап, тизменин керектүү жерине Ñүйрөп баруу
+ Тизменин керектүү жерине Ñүйрөп баруу
+ "Жооп берүү"
+ "Видео"
+ "Четке кагуу"
+ "Чалууну бүтүрүү"
+ "Кирүүчү чалуу"
+ "Учурдагы чалуу"
+ "Кирүүчү чалууну иргөө"
+ %2$d ичинен %1$d Ñимвол киргизилди
+ Символдордун Ñаны коюлган %2$d чегинен %1$d Ñимволго ашып кетти
+ ТекÑтти тазалоо
+ Иштетүү
+ Google Play кызматтарын иштетмейиңизче %1$s иштебейт.
+ Google Play кызматтарын иштетүү
+ Орнотуу
+ Google Play кызматтарыÑыз %1$s иштебейт. Ðлар түзмөгүңүздө жок болуп жатат.
+ Google Play кызматтарын алуу
+ Google Play кызматтарынын иштеши
+ Google Play кызматтарынын катаÑÑ‹
+ %1$s колдонмоÑунун Google Play кызматтары менен иштөөдө көйгөй чыкты. Кайталап көрүңүз.
+ %1$s колдонмоÑу Ñиздин түзмөгүңүздө колдоого алынбаган Google Play кызматтары болбоÑо иштебейт.
+ Жаңыртуу
+ Google Play кызматтары жаңыртылмайынча %1$s иштебейт.
+ Google Play кызматтарын жаңыртуу
+ Google Play кызматтарыÑыз %1$s иштебейт, алар учурда жаңыртылууда.
+ Google Play кызматтарынын жаңы верÑиÑÑÑ‹ талап кылынат. Бир аздан кийин ал өзү Ñле жаңырат.
+ Телефондо ачык
+ Кирүү
+ Google менен кирүү
+ "Көчүрүү"
+ "Шилтеме буферге көчүрүлдү"
+ Ката
+ "Өркүндөтүлгөн"
+ Түрүлмө менюну көрÑөтүү
+ "Шилтемени көчүрүү"
+ "Серепчиден ачуу"
+ "Шилтемени бөлүшүү"
+ Диалог ÑүрөтчөÑÒ¯
+ Өтмөк
+ Тандоо: AM же PM
+ %1$s Ñаат
+ Саат тандоо
+ Саат %1$s
+ Мүнөттөрдү тандаңыз
+ %1$s мүнөт
+ AM
+ Убакытты дубал Ñаатынын режиминде киргизиңиз.
+ Саат
+ Мүнөт
+ PM
+ Убакыт тандоо
+ Убакытты текÑÑ‚ киргизүү режиминде киргизиңиз.
+ Жаңы билдирме
+ Мазмунду алып Ñалуу (%1$s)
+ %1$d ашуун жаңы билдирме
+ Кийинки айга өзгөртүү
+ Мурунку айга өзгөртүү
+ Башталуу күнүн тандоо: %1$s – ÐÑктоо күнүн тандоо: %2$s
+ Учурдагы тандоо: %1$s
+ Ñч бири
+ Жокко чыгаруу
+ Жарайт
+ %1$s
+ Күн тандоо
+ Тандалган күн
+ Күндөр тилкеÑи: %1$s
+ Качан аÑктайт: %1$s
+ Туура ÑÐ¼ÐµÑ Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚.
+ МиÑалы: %1$s
+ %1$s деген форматты колдонуңуз
+ ЖаракÑыз диапазон.
+ Учурдагы жылга өтүү %1$d
+ %1$d-жылга өтүү
+ Диапазондон тышкары: %1$s
+ Баштоо күнү – %1$s
+ %1$s – ÐÑктоо күнү
+ %1$s – %2$s
+ Даталар диапазонун тандоо
+ Баштоо күнү – ÐÑктоо күнү
+ Сактоо
+ Качан башталат: %1$s
+ Күн
+ Качан аÑктайт
+ Баштоо күнү
+ к
+ а
+ ж
+ Бүгүн %1$s
+ Жылнаамага иш-чара киргизүү режимине которулуу
+ Жылнаама көрүнүшүнө өтүү үчүн таптап коюңуз
+ ТекÑÑ‚ киргизүү режимине которулуу
+ Жыл көрүнүшүнө өтүү үчүн таптап коюңуз
+ Жокко чыгаруу
+ Жарайт
+ "Коюлган ÑмеÑ"
+ СырÑөздү көрÑөтүү
+ "\"%1$s\" алмашуу буферине көчүрүлдү."
+ "Издөө"
+ "999+"
+ "%1$s, %2$s"
+ "ӨЧҮК"
+ "КҮЙҮК"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-land/values-land.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-land/values-land.xml
new file mode 100644
index 00000000..dc001522
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-land/values-land.xml
@@ -0,0 +1,47 @@
+
+
+ 48dp
+ 12dp
+ 14dp
+ 450dp
+ 600dp
+ 24dp
+ 24dp
+ 24dp
+ 24dp
+ 20dp
+ 4dp
+ 96dp
+ 0dp
+ 0dp
+ 104dp
+ 68dp
+ 28dp
+ 64dp
+ 32dp
+ 24dp
+ 32dp
+ 0
+ 6
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-large-v4/values-large-v4.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-large-v4/values-large-v4.xml
new file mode 100644
index 00000000..4284ad35
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-large-v4/values-large-v4.xml
@@ -0,0 +1,16 @@
+
+
+ 440dp
+ - 60%
+ - 90%
+ - 60%
+ - 90%
+ - 55%
+ - 80%
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml
new file mode 100644
index 00000000..1bdd835a
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ldrtl-v17/values-ldrtl-v17.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ldrtl-v17/values-ldrtl-v17.xml
new file mode 100644
index 00000000..0096540f
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ldrtl-v17/values-ldrtl-v17.xml
@@ -0,0 +1,5 @@
+
+
+ - @drawable/material_ic_keyboard_arrow_left_black_24dp
+ - @drawable/material_ic_keyboard_arrow_right_black_24dp
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-lo/values-lo.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-lo/values-lo.xml
new file mode 100644
index 00000000..8c67608e
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-lo/values-lo.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d àºàº²àº™à»àºˆà»‰àº‡à»€àº•ືàºàº™à»ƒà»à»ˆ
+ - %d àºàº²àº™à»àºˆà»‰àº‡à»€àº•ືàºàº™à»ƒà»à»ˆ
+
+ "àºàº±àºšà»„ປໜ້າຫຼັàº"
+ "ເລື່àºàº™àº‚ຶ້ນເທິງ"
+ "ຕົວເລືàºàºà»€àºžàºµà»ˆàº¡à»€àº•ີມ"
+ "à»àº¥à»‰àº§à»†"
+ "ເບິ່ງທັງà»àº»àº”"
+ "ເລືàºàºà»àºàº±àºš"
+ "ປິດ"
+ "ເປີດ"
+ "Alt+"
+ "Ctrl+"
+ "ລຶບ"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "àºàº°àº«àº§à»ˆàº²àº‡"
+ "Sym+"
+ "Menu+"
+ "ຊàºàºàº«àº²â€¦"
+ "ລຶບຂà»à»‰àº„ວາມຊàºàºàº«àº²"
+ "ຄຳສຳລັບຄົ້ນຫາ"
+ "ຊàºàºàº«àº²"
+ "ສົ່ງຂà»à»‰àº¡àº¹àº™"
+ "ຊàºàºàº«àº²àº”້ວàºàºªàº½àº‡"
+ "à»àºšà»ˆàº‡àº›àº±àº™àºàº±àºš"
+ "à»àºšà»ˆàº‡àº›àº±àº™àº”້ວຠ%s"
+ "ຫàºà»à»‰àº¥àº»àº‡"
+ ຫàºà»à»‰àºŠàºµàº”ລຸ່ມສຸດລົງ
+ ຂະຫàºàº²àºàºŠàºµàº”ລຸ່ມສຸດ
+ ຂະຫàºàº²àºàºàºàºà»€àº„ິ່ງໜຶ່ງ
+ à»àº•ະບ່àºàº™àºˆàº±àºšàº¥àº²àºàºªàºàº‡à»€àº—ື່àºà»àº¥à»‰àº§
+ ບ່àºàº™àºˆàº±àºšàº¥àº²àº
+ "ຮັບສາàº"
+ "ວິດີໂàº"
+ "ປະຕິເສດ"
+ "ວາງສາàº"
+ "ສາàºà»‚ທເຂົ້າ"
+ "ສາàºà»‚ທàºàºàº"
+ "àºàº³àº¥àº±àº‡àºàº§àº”ສàºàºšàºªàº²àºà»‚ທເຂົ້າ"
+ ຕົວàºàº±àºàºªàºàº™àº—ີ່ປ້àºàº™à»€àº‚ົ້າ %1$d ຕົວຈາàºàº—ັງà»àº»àº” %2$d ຕົວ
+ ຂີດຈຳàºàº±àº”ຕົວàºàº±àºàºªàºàº™à»€àºàºµàº™ %1$d ຈາàºàº—ັງà»àº»àº” %2$d
+ ລຶບລ້າງຂà»à»‰àº„ວາມ
+ ເປີດນຳໃຊ້
+ %1$s ຈະບà»à»ˆàºªàº²àº¡àº²àº”ໃຊ້ງານໄດ້ຈົນàºàº§à»ˆàº²àº—່ານຈະເປີດໃຊ້ງານ​àºàº²àº™â€‹àºšà»â€‹àº¥àº´â€‹àºàº²àº™ Google Play.
+ ເປີດໃຊ້àºàº²àº™â€‹àºšà»â€‹àº¥àº´â€‹àºàº²àº™ Google Play
+ ຕິດຕັ້ງ
+ %1$s ຈະບà»à»ˆàºªàº²àº¡àº²àº”ເປີດໃຊ້ໄດ້ຫາàºàºšà»à»ˆàº¡àºµàºàº²àº™àºšà»àº¥àº´àºàº²àº™ Google Play ເຊິ່ງà»àº—ັບເລັດຂàºàº‡àº—່ານບà»à»ˆàº¡àºµ.
+ ຕິດຕັ້ງບà»àº¥àº´àºàº²àº™ Google Play
+ ສະຖານະບà»àº¥àº´àºàº²àº™ Google Play
+ Google Play Services ​ເàºàºµàº”​ຄວາມ​ຜິດ​ພາດ
+ %1$s àºàº³àº¥àº±àº‡àº¡àºµàºšàº±àº™àº«àº²àºàº±àºšàºšà»àº¥àº´àºàº²àº™ Google Play. àºàº°àº¥àº¸àº™àº²àº¥àºàº‡à»ƒà»à»ˆàºàºµàºàº„ັ້ງ.
+ %1$s ຈະບà»à»ˆàºªàº²àº¡àº²àº”ໃຊ້ໄດ້ຫາàºàºšà»à»ˆàº¡àºµàºšà»àº¥àº´àºàº²àº™ Google Play ເຊິ່ງàºàº¸àº›àº°àºàºàº™àº‚àºàº‡àº—່ານບà»à»ˆàº®àºàº‡àº®àº±àºš.
+ àºàº±àºšà»€àº”ດ
+ %1$s ຈະບà»à»ˆàºªàº²àº¡àº²àº”ເຮັດວຽàºà»„ດ້ຈົນàºàº§à»ˆàº²àº—່ານຈະàºàº±àºšà»€àº”ດàºàº²àº™â€‹àºšà»â€‹àº¥àº´â€‹àºàº²àº™ Google Play
+ àºàº±àºšà»€àº”ດàºàº²àº™â€‹àºšà»â€‹àº¥àº´â€‹àºàº²àº™ Google Play
+ %1$s ຈະບà»à»ˆàºªàº²àº¡àº²àº”ໃຊ້ງານໄດ້ໂດàºàº—ີ່ບà»à»ˆàº¡àºµàºàº²àº™â€‹àºšà»â€‹àº¥àº´â€‹àºàº²àº™ Google Play, ເຊິ່ງ​àºàº³â€‹àº¥àº±àº‡â€‹àºàº±àºšâ€‹à»€àº”ດ​ຢູ່​ໃນ​ປະ​ຈຸ​ບັນ.
+ ຈຳ​ເປັນ​ຕ້àºàº‡â€‹àº¡àºµâ€‹àºàº²â€‹àº™â€‹àºšà»â€‹àº¥àº´â€‹àºàº²àº™ Google Play ເວີ​ຊັນ​ໃà»à»ˆ. ມັນ​ຈະ​àºàº±àºšâ€‹à»€àº”ດ​ຕົວ​ເàºàº‡â€‹à»„ວໆ​ນີ້.
+ ​ເປີດ​ໃນ​ໂທ​ລະ​ສັບ
+ ລົງຊື່ເຂົ້າໃຊ້
+ ລົງຊື່ເຂົ້າໃຊ້ດ້ວຠGoogle
+ "ສຳເນົາ"
+ "ສຳເນົາລິ້ງໃສ່ຄລິບບàºàº”à»àº¥à»‰àº§"
+ ຜິດພາດ
+ "ຂັ້ນສູງ"
+ ສະà»àº”ງເມນູເລື່àºàº™àº¥àº»àº‡
+ "ສຳເນົາລິ້ງ"
+ "ເປີດໃນໂປຣà»àºàº£àº¡àº—່àºàº‡à»€àº§àº±àºš"
+ "à»àºšà»ˆàº‡àº›àº±àº™àº¥àº´à»‰àº‡"
+ ໄàºàº„àºàº™àºà»ˆàºàº‡à»‚ຕ້ຕàºàºš
+ à»àº–ບ
+ ເລືàºàºàº•àºàº™à»€àºŠàº»à»‰àº² ຫຼື ຕàºàº™à»àº¥àº‡
+ %1$s ຊົ່ວໂມງ
+ ເລືàºàºàºŠàº»à»ˆàº§à»‚ມງ
+ %1$s ໂມງ
+ ເລືàºàºàº™àº²â€‹àº—ີ
+ %1$s ນາທີ
+ ໂມງເຊົ້າ
+ ສະຫຼັບໄປໃຊ້ໂà»àº”ໂມງສຳລັບàºàº²àº™àº›à»‰àºàº™à»€àº§àº¥àº².
+ ຊົ່ວໂມງ
+ ນາທີ
+ ໂມງà»àº¥àº‡
+ ເລືàºàºà»€àº§â€‹àº¥àº²
+ ສະຫຼັບໄປໃຊ້ໂà»àº”ປ້àºàº™àº‚à»à»‰àº„ວາມສຳລັບàºàº²àº™àº›à»‰àºàº™à»€àº§àº¥àº².
+ àºàº²àº™à»àºˆà»‰àº‡à»€àº•ືàºàº™à»ƒà»à»ˆ
+ ລຶບ %1$s àºàºàº
+ àºàº²àº™à»àºˆà»‰àº‡à»€àº•ືàºàº™à»ƒà»à»ˆàº«àº¼àº²àºàºàº§à»ˆàº² %1$d ລາàºàºàº²àº™
+ ປ່ຽນເປັນເດືàºàº™àº•à»à»ˆà»„ປ
+ ປ່ຽນເປັນເດືàºàº™àºœà»ˆàº²àº™àº¡àº²
+ àºàº²àº™à»€àº¥àº·àºàºàº§àº±àº™àº—ີເລີ່ມຕົ້ນ: %1$s – àºàº²àº™à»€àº¥àº·àºàºàº§àº±àº™àº—ີສິ້ນສຸດ: %2$s
+ àºàº²àº™à»€àº¥àº·àºàºàº›àº±àº”ຈຸບັນ: %1$s
+ ບà»à»ˆàº¡àºµ
+ àºàº»àºà»€àº¥àºµàº
+ ຕົàºàº¥àº»àº‡
+ %1$s
+ ເລືàºàºàº§àº±àº™àº—ີ
+ ເລືàºàºàº§àº±àº™àº—ີ
+ ຖັນມື້: %1$s
+ ວັນທີສິ້ນສຸດ %1$s
+ ຮູບà»àºšàºšàºšà»à»ˆàº–ືàºàº•້àºàº‡.
+ ຕົວຢ່າງ: %1$s
+ ໃຊ້: %1$s
+ ໄລàºàº°àºšà»à»ˆàº–ືàºàº•້àºàº‡.
+ ໄປຫາປີປັດຈຸບັນ %1$d
+ ເລື່àºàº™à»„ປປີ %1$d
+ ຢູ່ນàºàºàºŠà»ˆàº§àº‡àº§àº±àº™àº—ີ: %1$s
+ ວັນທີເລີ່ມຕົ້ນ – %1$s
+ %1$s – ວັນທີສິ້ນສຸດ
+ %1$s – %2$s
+ ເລືàºàºàºŠà»ˆàº§àº‡
+ ວັນທີເລີ່ມຕົ້ນ – ວັນທີສິ້ນສຸດ
+ ບັນທຶàº
+ ວັນທີເລີ່ມຕົ້ນ %1$s
+ ວັນທີ
+ ວັນທີສິ້ນສຸດ
+ ວັນທີເລີ່ມ
+ ວ
+ ດ
+ ປ
+ ມື້ນີ້ %1$s
+ ປ່ຽນເປັນໂà»àº”ປ້àºàº™àº‚à»à»‰àº¡àº¹àº™àº›àº°àº•ິທິນ
+ à»àº•ະເພື່àºàºªàº°àº«àº¼àº±àºšà»„ປເປັນມຸມມàºàº‡àº›àº°àº•ິທິນ
+ ປ່ຽນເປັນໂà»àº”ປ້àºàº™àº‚à»à»‰àº¡àº¹àº™àº‚à»à»‰àº„ວາມ
+ à»àº•ະເພື່àºàºªàº°àº«àº¼àº±àºšà»„ປເປັນມຸມມàºàº‡àº›àºµ
+ àºàº»àºà»€àº¥àºµàº
+ ຕົàºàº¥àº»àº‡
+ "ບà»à»ˆà»„ດ້ຕັ້ງຄ່າ"
+ ສະà»àº”ງລະຫັດຜ່ານ
+ "ສຳເນົາ \"%1$s\" ໄປໃສ່ຄລິບບàºàº”à»àº¥à»‰àº§."
+ "ຊàºàºàº«àº²"
+ "999+"
+ "%1$s, %2$s"
+ "ປິດ"
+ "ເປີດ"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-lt/values-lt.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-lt/values-lt.xml
new file mode 100644
index 00000000..daf10cdc
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-lt/values-lt.xml
@@ -0,0 +1,142 @@
+
+
+
+ - %d naujas pranešimas
+ - %d nauji pranešimai
+ - %d naujo pranešimo
+ - %d naujų pranešimų
+
+ "Eiti į pagrindinį puslapį"
+ "Naršyti aukštyn"
+ "Daugiau parinkÄių"
+ "Atlikta"
+ "Žr. viską"
+ "Pasirinkite programÄ…"
+ "IÅ JUNGTI"
+ "ĮJUNGTI"
+ "„Alt“ +"
+ "„Ctrl“ +"
+ "„delete“"
+ "„enter“"
+ "„Function“ +"
+ "„Meta“ +"
+ "„Shift“ +"
+ "„space“"
+ "„Sym“ +"
+ "„Menu“ +"
+ "Ieškoti…"
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Ieškoti"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti su"
+ "Bendrinti naudojant programą „%s“"
+ "Sutraukti"
+ Sutraukti apatinį lapą
+ Išskleisti apatinį lapą
+ Išskleisti iki pusės
+ Vilkimo rankenÄ—lÄ— dukart paliesta
+ Vilkimo rankenÄ—lÄ—
+ "Atsakyti"
+ "Vaizdo įrašas"
+ "Atmesti"
+ "Baigti pok."
+ "Gaunamasis skambutis"
+ "Vykstantis skambutis"
+ "Gaunamojo skambuÄio tikrinimas"
+ Įvesta simbolių: %1$d iš %2$d
+ VirÅ¡ytas simbolių skaiÄius: %1$d iÅ¡ %2$d
+ Išvalyti tekstą
+ Įgalinti
+ „%1$s“ neveiks, jei neįgalinsite „Google Play“ paslaugų.
+ Įgalinkite „Google Play“ paslaugas
+ Įdiegti
+ Programa „%1$s“ nebus paleidžiama be „Google Play“ paslaugų, kurių nėra įrenginyje.
+ Gaukite „Google Play“ paslaugas
+ „Google Play“ paslaugų pasiekiamumas
+ „Google Play“ paslaugų klaida
+ Naudojant programą „%1$s“ kilo problemų dėl „Google Play“ paslaugų. Bandykite dar kartą.
+ Programa „%1$s“ nebus paleidžiama be „Google Play“ paslaugų, kurių jūsų įrenginys nepalaiko.
+ Atnaujinti
+ „%1$s“ nebus paleidžiama, jei neatnaujinsite „Google Play“ paslaugų.
+ Atnaujinkite „Google Play“ paslaugas
+ „%1$s“ nebus paleidžiama be „Google Play“ paslaugų, kurios šiuo metu atnaujinamos.
+ Reikia naujos versijos „Google Play“ paslaugų. Jos netrukus bus atnaujintos.
+ Atidaryti telefone
+ Prisijungti
+ Prisijungti naudojant „Google“
+ "Kopijuoti"
+ "Nuoroda nukopijuota į iškarpinę"
+ Klaida
+ "Išplėstiniai"
+ Rodyti išskleidžiamąjį meniu
+ "Kopijuoti nuorodÄ…"
+ "Atidaryti naršyklėje"
+ "Bendrinti nuorodÄ…"
+ Dialogo lango piktograma
+ Skirtukas
+ Pasirinkite „iki pietų“ arba „po pietų“
+ %1$s val.
+ Pasirinkite valandÄ…
+ %1$s val.
+ Pasirinkite minutes
+ %1$s min.
+ AM
+ Laiko įvestį pateikti perjungus į laikrodžio režimą.
+ Valanda
+ MinutÄ—
+ PM
+ Pasirinkite laikÄ…
+ Laiko įvestį pateikti perjungus į teksto įvesties režimą.
+ Naujas pranešimas
+ Pašalinti %1$s
+ Naujų pranešimų: daugiau nei %1$d
+ Pakeisti į kitą mėnesį
+ Pakeisti į ankstesnį mėnesį
+ Pradžios datos pasirinkimas: %1$s – Pabaigos datos pasirinkimas: %2$s
+ Dabartinis pasirinkimas: %1$s
+ nÄ—ra
+ Atšaukti
+ Gerai
+ %1$s
+ Pasirinkite datÄ…
+ Pasirinkta data
+ Dienų stulpelis: %1$s
+ Pabaigos data %1$s
+ Netinkamas formatas.
+ Pavyzdys: %1$s
+ Naudoti: %1$s
+ Netinkamas diapazonas.
+ Eiti į dabartinius metus %1$d
+ Eiti į %1$d metus
+ Nepatenka į diapazoną: %1$s
+ Pradžios data–%1$s
+ %1$s–pabaigos data
+ %1$s–%2$s
+ Pasirinkite diapazonÄ…
+ Pradžios data–pabaigos data
+ Išsaugoti
+ Pradžios data %1$s
+ Data
+ Pabaigos data
+ Pradžios data
+ d
+ m
+ y
+ Å iandien %1$s
+ Perjungti į kalendoriaus įvesties režimą
+ Palieskite, kad perjungtumėte į Kalendoriaus rodinį
+ Perjungti į teksto įvesties režimą
+ Palieskite, kad perjungtumėte į metų rodinį
+ Atšaukti
+ Gerai
+ "Nenustatyta"
+ Rodyti slaptažodį
+ "Suvestinė „%1$s“ nukopijuota į iškarpinę."
+ "Ieškoti"
+ "999+"
+ "%1$s, %2$s"
+ "IÅ JUNGTA"
+ "ĮJUNGTA"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-lv/values-lv.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-lv/values-lv.xml
new file mode 100644
index 00000000..c0ec9b4c
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-lv/values-lv.xml
@@ -0,0 +1,141 @@
+
+
+
+ - %d jaunu paziņojumu
+ - %d jauns paziņojums
+ - %d jauni paziņojumi
+
+ "PÄrvietoties uz sÄkuma ekrÄnu"
+ "PÄrvietoties uz augÅ¡u"
+ "Citas opcijas"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "IZSLÄ’GT"
+ "IESLÄ’GT"
+ "Alternēšanas taustiņš +"
+ "Vadīšanas taustiņš +"
+ "dzēšanas taustiņš"
+ "ievadīšanas taustiņš"
+ "Funkcijas taustiņš +"
+ "Meta taustiņš +"
+ "PÄrslÄ“gÅ¡anas taustiņš +"
+ "atstarpes taustiņš"
+ "Simbolu taustiņš +"
+ "Poga Izvēlne +"
+ "Meklējiet…"
+ "NotÄ«rÄ«t vaicÄjumu"
+ "Meklēšanas vaicÄjums"
+ "Meklēt"
+ "Iesniegt vaicÄjumu"
+ "Meklēt ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar lietojumprogrammu %s"
+ "Sakļaut"
+ Sakļaut ekrÄna apakÅ¡daļas lapu
+ IzvÄ“rst ekrÄna apakÅ¡daļas lapu
+ Izvērst līdz pusei
+ Tika veikts dubultskÄriens uz vilkÅ¡anas tura
+ Vilkšanas turis
+ "Atbildēt"
+ "Video"
+ "Noraidīt"
+ "PÄrtraukt"
+ "IenÄkoÅ¡ais zvans"
+ "Pašreizējais zvans"
+ "IenÄkoÅ¡Ä zvana filtrēšana"
+ IevadÄ«tÄs rakstzÄ«mes: %1$d no %2$d
+ PÄrsniegts rakstzÄ«mju skaita ierobežojums (%1$d no %2$d)
+ Notīrīt tekstu
+ Iespējot
+ Lai lietotne %1$s darbotos, ir jÄiespÄ“jo Google Play pakalpojumi.
+ Google Play pakalpojumu iespējošana
+ Instalēt
+ Lai lietotne %1$s darbotos, ierÄ«cÄ“ ir jÄinstalÄ“ Google Play pakalpojumi.
+ Google Play pakalpojumu iegūšana
+ Google Play pakalpojumu pieejamība
+ Google Play pakalpojumu kļūda
+ Lietotnē %1$s ir radusies problēma ar Google Play pakalpojumu darbību. Lūdzu, mēģiniet vēlreiz.
+ Lai lietotne %1$s darbotos, ir nepiecieÅ¡ami Google Play pakalpojumi, taÄu jÅ«su ierÄ«ce tos neatbalsta.
+ AtjauninÄt
+ Lai lietotne %1$s darbotos, jums ir jÄatjaunina Google Play pakalpojumi.
+ Google Play pakalpojumu atjauninÄÅ¡ana
+ Lai lietotne %1$s darbotos, ir jÄinstalÄ“ Google Play pakalpojumi. PaÅ¡laik notiek to atjauninÄÅ¡ana.
+ Ir nepiecieÅ¡ama jauna Google Play pakalpojumu versija. DrÄ«zumÄ tÄ tiks instalÄ“ta.
+ AtvÄ“rt tÄlrunÄ«
+ Pierakstīties
+ Pierakstīties ar Google kontu
+ "Kopēt"
+ "Saite ir kopēta starpliktuvē."
+ Kļūda
+ "Papildu iestatījumi"
+ RÄdÄ«t nolaižamo izvÄ“lni
+ "Kopēt saiti"
+ "AtvÄ“rt pÄrlÅ«kprogrammÄ"
+ "Kopīgot saiti"
+ Dialoglodziņa ikona
+ Cilne
+ Atlasiet “AM†(priekÅ¡pusdienÄ) vai “PM†(pÄ“cpusdienÄ).
+ %1$s stundas
+ Atlasiet stundu
+ plkst. %1$s
+ Atlasiet minūtes.
+ %1$s min
+ AM
+ Lai ievadītu laiku, ieslēdziet pulksteņa režīmu.
+ Stunda
+ Minūte
+ PM
+ Laika atlasīšana
+ Lai ievadītu laiku, ieslēdziet teksta ievades režīmu.
+ Jauns paziņojums
+ Noņemt: %1$s
+ VairÄk nekÄ %1$d jauni paziņojumi
+ PÄriet uz nÄkamo mÄ“nesi
+ PÄriet uz iepriekšējo mÄ“nesi
+ SÄkuma datuma atlase: %1$s; beigu datuma atlase: %2$s
+ PaÅ¡reizÄ“jÄ atlase: %1$s
+ nav
+ Atcelt
+ Labi
+ %1$s
+ Atlasiet datumu
+ Atlasītais datums
+ Dienu sleja: %1$s
+ Beigu datums: %1$s
+ NederÄ«gs formÄts.
+ Piemērs: %1$s
+ Izmantojiet: %1$s
+ Nederīgs diapazons.
+ PÄriet uz paÅ¡reizÄ“jo gadu (%1$d)
+ PÄriet uz Å¡o gadu: %1$d
+ Ārpus diapazona: %1$s
+ SÄkuma datums–%1$s
+ %1$s–beigu datums
+ %1$s–%2$s
+ Atlasiet diapazonu
+ SÄkuma datums–beigu datums
+ SaglabÄt
+ SÄkuma datums: %1$s
+ Datums
+ Beigu datums
+ SÄkuma datums
+ d
+ m
+ g
+ Å odien (%1$s)
+ PÄrslÄ“gties uz kalendÄra ievades režīmu
+ Pieskarieties, lai pÄrslÄ“gtos uz KalendÄra skatu
+ PÄrslÄ“gties uz teksta ievades režīmu
+ Pieskarieties, lai pÄrslÄ“gtos uz gada skatu
+ Atcelt
+ Labi
+ "Nav iestatīts"
+ RÄdÄ«t paroli
+ "Preference “%1$s†ir kopēta starpliktuvē."
+ "Meklēt"
+ "999+"
+ "%1$s, %2$s"
+ "IZSLÄ’GTS"
+ "IESLÄ’GTS"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-mk/values-mk.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-mk/values-mk.xml
new file mode 100644
index 00000000..883eea95
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-mk/values-mk.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d ново извеÑтување
+ - %d нови извеÑтувања
+
+ "Движи Ñе кон дома"
+ "Движи Ñе нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Прикажи ги Ñите"
+ "Избери апликација"
+ "ИСКЛУЧЕÐО"
+ "ВКЛУЧЕÐО"
+ "Alt+"
+ "Ctrl+"
+ "избриши"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "вÑелена"
+ "Sym+"
+ "Menu+"
+ "Пребарување…"
+ "ИÑчиÑти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "ИÑпрати барање"
+ "ГлаÑовно пребарување"
+ "Сподели Ñо"
+ "Сподели Ñо %s"
+ "Собери"
+ Соберете го долниот лиÑÑ‚
+ Проширете го долниот лиÑÑ‚
+ Прошири до половина
+ Рачката за влечење е допрена двапати
+ Рачка за влечење
+ "Одговори"
+ "Видео"
+ "Одбиј"
+ "Спушти"
+ "Дојдовен повик"
+ "Тековен повик"
+ "Проверка на дојдовен повик"
+ ВнеÑени Ñе %1$d од %2$d знаци
+ Ограничувањето на знаците надмина %1$d од %2$d
+ Избриши го текÑтот
+ Овозможи
+ %1$s нема да Ñе извршува ако не овозможите уÑлуги на Google Play.
+ Овозможи ги уÑлугите на Google Play
+ ИнÑталирај
+ %1$s нема да Ñе извршува без уÑлугите на Google Play што ги нема на уредот.
+ Преземи ги уÑлугите на Google Play
+ ДоÑтапноÑÑ‚ на уÑлугите на Google Play
+ Грешка на уÑлугите на Google Play
+ %1$s има проблеми Ñо уÑлугите на Google Play. Обидете Ñе повторно.
+ %1$s нема да Ñе извршува без уÑлугите на Google Play, што не Ñе подржани од уредов.
+ Ðжурирај
+ %1$s нема да Ñе извршува ако не ги ажурирате уÑлугите на Google Play.
+ Ðжурирај ги уÑлугите на Google Play
+ %1$s нема да Ñе извршува без уÑлугите на Google Play што Ñе ажурираат во моментов.
+ Потребна е нова верзија на уÑлугите на Google Play. Таа наÑкоро Ñамата ќе Ñе ажурира.
+ Отвори на телефонот
+ Ðајави Ñе
+ Ðајави Ñе Ñо Google
+ "Копирај"
+ "Линкот е копиран во привремена меморија"
+ Грешка
+ "Ðапредни"
+ Прикажи паѓачко мени
+ "Копирај го линкот"
+ "Отвори во прелиÑтувач"
+ "Сподели линк"
+ Икона за дијалог
+ Картичка
+ Изберете претпладне или попладне
+ %1$s чаÑа
+ Изберете чаÑ
+ %1$s чаÑот
+ Избери минути
+ %1$s минути
+ пр.
+ Префрлете Ñе на режимот за чаÑовник за да внеÑете време.
+ ЧаÑ
+ Минута
+ по.
+ Изберете време
+ Префрлете Ñе на режимот за внеÑување текÑÑ‚ за да внеÑете време.
+ Ðово извеÑтување
+ ОтÑтрани %1$s
+ Ðад %1$d нови извеÑтувања
+ Промени на Ñледниот меÑец
+ Промени на претходниот меÑец
+ Избор на датум на започнување: %1$s – Избор на датум на завршување: %2$s
+ Тековен избор: %1$s
+ нема
+ Откажи
+ Во ред
+ %1$s
+ Изберете датум
+ Избран датум
+ Колона Ñо денови: %1$s
+ Краен датум %1$s
+ Ðеважечки формат.
+ Пример: %1$s
+ КориÑтете: %1$s
+ Погрешен опÑег.
+ Одете на тековната година: %1$d
+ Оди на %1$d година
+ Ðадвор од опÑег: %1$s
+ Почетен датум - %1$s
+ %1$s - краен датум
+ %1$s - %2$s
+ Изберете опÑег
+ Почетен датум - краен датум
+ Зачувај
+ Почетен датум %1$s
+ Датум
+ Краен датум
+ Почетен датум
+ д
+ м
+ г
+ ДенеÑ: %1$s
+ Префрли на режим за внеÑување во календарот
+ Допрете за да Ñе префрлите на приказ на „Календар“
+ Префрли на режим за внеÑување текÑÑ‚
+ Допрете за да Ñе префрлите на приказ на година
+ Откажи
+ Во ред
+ "Ðе е поÑтавено"
+ Прикажи ја лозинката
+ "„%1$s“ копирано во привремена меморија."
+ "Пребарај"
+ "999+"
+ "%1$s, %2$s"
+ "ИСКЛУЧЕÐО"
+ "ВКЛУЧЕÐО"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ml/values-ml.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ml/values-ml.xml
new file mode 100644
index 00000000..17dd3198
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ml/values-ml.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d à´ªàµà´¤à´¿à´¯ അറിയിപàµà´ªàµ
+ - %d à´ªàµà´¤à´¿à´¯ അറിയിപàµà´ªàµà´•ൾ
+
+ "ഹോമിലേകàµà´•ൠപോവàµà´•"
+ "à´®àµà´•ളിലേകàµà´•ൠപോവàµà´•"
+ "കൂടàµà´¤àµ½ à´“à´ªàµà´·à´¨àµà´•ൾ"
+ "പൂർതàµà´¤à´¿à´¯à´¾à´¯à´¿"
+ "à´Žà´²àµà´²à´¾à´‚ കാണàµà´•"
+ "ആപàµà´ªàµ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•"
+ "à´“à´«àµ"
+ "ഓൺ"
+ "Alt+"
+ "Ctrl+"
+ "ഇലàµà´²à´¾à´¤à´¾à´•àµà´•àµà´•"
+ "enter"
+ "à´«à´‚à´—àµà´·à´¨àµâ€+"
+ "മെറàµà´±+"
+ "Shift+"
+ "à´¸àµâ€Œà´ªàµ†à´¯àµâ€Œà´¸àµ"
+ "Sym+"
+ "മെനàµ+"
+ "തിരയàµà´•…"
+ "ചോദàµà´¯à´‚ മായàµâ€Œà´•àµà´•àµà´•"
+ "ചോദàµà´¯à´‚ തിരയàµà´•"
+ "തിരയàµà´•"
+ "ചോദàµà´¯à´‚ സമർപàµà´ªà´¿à´•àµà´•àµà´•"
+ "സംസാരതàµà´¤à´¿à´²àµ‚ടെ തിരയàµà´•"
+ "ഇനിപàµà´ªà´±à´¯àµà´¨àµà´¨à´¤àµà´®à´¾à´¯à´¿ പങàµà´•à´¿à´Ÿàµà´•"
+ "%s à´Žà´¨àµà´¨à´¤àµà´®à´¾à´¯à´¿ പങàµà´•à´¿à´Ÿàµà´•"
+ "à´šàµà´°àµà´•àµà´•àµà´•"
+ ബോടàµà´Ÿà´‚ ഷീറàµà´±àµ à´šàµà´°àµà´•àµà´•àµà´•
+ ബോടàµà´Ÿà´‚ ഷീറàµà´±àµ വികസിപàµà´ªà´¿à´•àµà´•àµà´•
+ à´®àµà´´àµà´µà´¨à´¾à´¯à´¿ വികസിപàµà´ªà´¿à´•àµà´•àµà´•
+ വലിചàµà´šà´¿à´Ÿàµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ ഹാൻഡിൽ ഡബിൾ ടാപàµà´ªàµ ചെയàµà´¤àµ
+ വലിചàµà´šà´¿à´Ÿàµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ ഹാൻഡിൽ
+ "മറàµà´ªà´Ÿà´¿ നൽകàµà´•"
+ "വീഡിയോ"
+ "നിരസികàµà´•àµà´•"
+ "കോൾ നിർതàµà´¤àµà´•"
+ "ഇൻകമിംഗൠകോൾ"
+ "സജീവമായ കോൾ"
+ "ഇൻകമിംഗൠകോൾ à´¸àµâ€Œà´•àµà´°àµ€àµ» ചെയàµà´¯àµà´¨àµà´¨àµ"
+ %2$d-ൽ %1$d à´ªàµà´°à´¤àµ€à´•à´™àµà´™àµ¾ നൽകി
+ à´…à´•àµà´·à´° പരിധി, %2$d-ൽ %1$d കവിഞàµà´žàµ
+ ടെകàµâ€Œà´¸àµâ€Œà´±àµà´±àµ മായàµâ€Œà´•àµà´•àµà´•
+ à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¨à´•àµà´·à´®à´®à´¾à´•àµà´•àµà´•
+ നിങàµà´™àµ¾ Google Play സേവനങàµà´™àµ¾ à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¨à´•àµà´·à´®à´®à´¾à´•àµà´•àµà´¨àµà´¨à´¿à´²àµà´²àµ†à´™àµà´•ിൽ %1$s à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¿à´•àµà´•à´¿à´²àµà´².
+ Google Play സേവനങàµà´™àµ¾ à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¨à´•àµà´·à´®à´®à´¾à´•àµà´•àµà´•
+ ഇനàµâ€à´¸àµà´±àµà´±à´¾à´³àµâ€ ചെയàµà´¯àµà´•
+ Google Play സേവനങàµà´™à´³à´¿à´²àµà´²à´¾à´¤àµ† %1$s à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¿à´•àµà´•à´¿à´²àµà´², à´ˆ സേവനങàµà´™à´³à´¾à´•à´Ÿàµà´Ÿàµ† നിങàµà´™à´³àµà´Ÿàµ† ഉപകരണതàµà´¤à´¿àµ½ ഇലàµà´².
+ Google Play സേവനങàµà´™àµ¾ നേടàµà´•
+ Google Play സേവന à´²à´àµà´¯à´¤
+ Google Play സേവനങàµà´™à´³à´¿à´²àµ† പിശകàµ
+ Google Play സേവനങàµà´™à´³àµà´®à´¾à´¯à´¿ ബനàµà´§à´ªàµà´ªàµ†à´Ÿàµà´Ÿàµ %1$s ആപàµà´ªà´¿à´¨àµ†à´¨àµà´¤àµ‹ à´ªàµà´°à´¶àµà´¨à´®àµà´£àµà´Ÿàµ. വീണàµà´Ÿàµà´‚ à´¶àµà´°à´®à´¿à´•àµà´•àµà´•.
+ Google Play സേവനങàµà´™à´³à´¿à´²àµà´²à´¾à´¤àµ† %1$s à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¿à´•àµà´•à´¿à´²àµà´², സേവനങàµà´™à´³àµ†à´¯à´¾à´•à´Ÿàµà´Ÿàµ† നിങàµà´™à´³àµà´Ÿàµ† ഉപകരണം പിനàµà´¤àµà´£à´¯àµà´•àµà´•àµà´¨àµà´¨àµà´®à´¿à´²àµà´².
+ à´…à´ªàµâ€Œà´¡àµ‡à´±àµà´±àµà´šàµ†à´¯àµà´¯àµà´•
+ നിങàµà´™àµ¾ Google Play സേവനങàµà´™àµ¾ à´…à´ªàµâ€Œà´¡àµ‡à´±àµà´±àµà´šàµ†à´¯àµâ€Œà´¤à´¿à´²àµà´²àµ†à´™àµà´•ിൽ %1$s à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¿à´•àµà´•à´¿à´²àµà´².
+ Google Play സേവനങàµà´™àµ¾ à´…à´ªàµâ€Œà´¡àµ‡à´±àµà´±àµà´šàµ†à´¯àµà´¯àµà´•
+ നിലവിൽ à´…à´ªàµâ€Œà´¡àµ‡à´±àµà´±àµà´šàµ†à´¯àµà´¯àµà´¨àµà´¨ Google Play സേവനങàµà´™àµ¾ ഇലàµà´²à´¾à´¤àµ† %1$s à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¿à´•àµà´•à´¿à´²àµà´².
+ Google Play സേവനങàµà´™à´³àµà´Ÿàµ† à´ªàµà´¤à´¿à´¯ പതിപàµà´ªàµ ആവശàµà´¯à´®à´¾à´£àµ. താമസിയാതെ ഇതൠസàµà´µà´¯à´‚ à´…à´ªàµâ€Œà´¡àµ‡à´±àµà´±àµà´šàµ†à´¯àµà´¯àµà´‚.
+ ഫോണിൽ à´¤àµà´±à´•àµà´•àµà´•
+ സൈൻ ഇൻ ചെയàµà´¯àµà´•
+ Google ഉപയോഗിചàµà´šàµ സൈൻ ഇൻ ചെയàµà´¯àµà´•
+ "പകർതàµà´¤àµà´•"
+ "à´•àµà´²à´¿à´ªàµà´ªàµâ€Œà´¬àµ‹àµ¼à´¡à´¿à´²àµ‡à´•àµà´•ൠലിങàµà´•ൠപകർതàµà´¤à´¿"
+ പിശകàµ
+ "വിപàµà´²à´®à´¾à´¯à´¤àµ"
+ à´¡àµà´°àµ‹à´ªàµà´ªàµâ€Œ ഡൗൺ മെനൠകാണികàµà´•àµà´•
+ "ലിങàµà´•ൠപകർതàµà´¤àµà´•"
+ "à´¬àµà´°àµ—സറിൽ à´¤àµà´±à´•àµà´•àµà´•"
+ "ലിങàµà´•ൠപങàµà´•à´¿à´Ÿàµà´•"
+ ഡയലോഗൠà´à´•àµà´•ൺ
+ ടാബàµ
+ AM à´…à´²àµà´²àµ†à´™àµà´•ിൽ PM തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•
+ %1$s മണി
+ മണികàµà´•ൂർ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•
+ %1$s മണി
+ മിനിറàµà´±àµ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•
+ %1$s മിനിറàµà´±àµ
+ AM
+ ‌സമയം നൽകàµà´¨àµà´¨à´¤à´¿à´¨àµ à´•àµà´²àµ‹à´•àµà´•ൠമോഡിലേകàµà´•ൠ‌മാറàµà´•.
+ മണികàµà´•ൂരàµâ€
+ മിനിറàµà´±àµ
+ PM
+ സമയം തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•
+ സമയം നൽകàµà´¨àµà´¨à´¤à´¿à´¨àµ ടെകàµà´¸àµà´±àµà´±àµ ഇൻപàµà´Ÿàµà´Ÿàµ ‌മോ‌ഡിലേകàµà´•ൠ‌മാറàµà´•.
+ à´ªàµà´¤à´¿à´¯ അറിയിപàµà´ªàµ
+ %1$s നീകàµà´•à´‚ ചെയàµà´¯àµà´•
+ %1$d-ലധികം à´ªàµà´¤à´¿à´¯ അറിയിപàµà´ªàµà´•ൾ
+ à´…à´Ÿàµà´¤àµà´¤ മാസതàµà´¤à´¿à´²àµ‡à´•àµà´•ൠമാറàµà´±àµà´•
+ à´®àµà´®àµà´ªà´¤àµà´¤àµ† മാസതàµà´¤à´¿à´²àµ‡à´•àµà´•ൠമാറàµà´±àµà´•
+ തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ ആരംà´à´¿à´•àµà´•àµà´¨àµà´¨ തീയതി: %1$s – തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ അവസാനികàµà´•àµà´¨àµà´¨ തീയതി: %2$s
+ നിലവിൽ തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤à´¤àµ: %1$s
+ à´’à´¨àµà´¨àµà´®à´¿à´²àµà´²
+ റദàµà´¦à´¾à´•àµà´•àµà´•
+ à´¶à´°à´¿
+ %1$s
+ തീയതി തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•
+ തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ തീയതി
+ ദിവസതàµà´¤à´¿à´¨àµà´±àµ† കോളം: %1$s
+ അവസാനികàµà´•àµà´¨àµà´¨ തീയതി: %1$s
+ അസാധàµà´µà´¾à´¯ ഫോർമാറàµà´±àµ.
+ ഉദാഹരണം: %1$s
+ %1$s ഉപയോഗികàµà´•àµà´•
+ അസാധàµà´µà´¾à´¯ à´¶àµà´°àµ‡à´£à´¿.
+ നിലവിലെ വർഷം %1$d-ലേകàµà´•ൠമാറàµà´±àµà´•
+ %1$d വർഷതàµà´¤à´¿à´²àµ‡à´•àµà´•ൠനാവിഗേറàµà´±àµ ചെയàµà´¯àµà´•
+ à´¶àµà´°àµ‡à´£à´¿à´•àµà´•ൠപàµà´±à´¤àµà´¤à´¾à´£àµ: %1$s
+ ആരംà´à´¿à´•àµà´•àµà´¨àµà´¨ തീയതി – %1$s
+ %1$s – അവസാനികàµà´•àµà´¨àµà´¨ തീയതി
+ %1$s – %2$s
+ à´¶àµà´°àµ‡à´£à´¿ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•
+ ആരംà´à´¿à´•àµà´•àµà´¨àµà´¨ തീയതി – അവസാനികàµà´•àµà´¨àµà´¨ തീയതി
+ സംരകàµà´·à´¿à´•àµà´•àµà´•
+ ആരംà´à´¿à´•àµà´•àµà´¨àµà´¨ തീയതി: %1$s
+ തീയതി
+ അവസാനികàµà´•àµà´¨àµà´¨ തീയതി
+ ആരംà´à´¿à´•àµà´•àµà´¨àµà´¨ തീയതി
+ d
+ m
+ y
+ ഇനàµà´¨àµ %1$s
+ കലണàµà´Ÿàµ¼ ഇൻപàµà´Ÿàµà´Ÿàµ മോഡിലേകàµà´•ൠമാറàµà´•
+ കലണàµà´Ÿàµ¼ കാഴàµâ€Œà´šà´¯à´¿à´²àµ‡à´•àµà´•ൠമാറാൻ ടാപàµà´ªàµ ചെയàµà´¯àµà´•
+ ടെകàµâ€Œà´¸àµâ€Œà´±àµà´±àµ ഇൻപàµà´Ÿàµà´Ÿàµ മോഡിലേകàµà´•ൠമാറàµà´•
+ വർഷ കാഴàµâ€Œà´šà´¯à´¿à´²àµ‡à´•àµà´•ൠമാറാൻ ടാപàµà´ªàµ ചെയàµà´¯àµà´•
+ റദàµà´¦à´¾à´•àµà´•àµà´•
+ à´¶à´°à´¿
+ "സജàµà´œàµ€à´•à´°à´¿à´šàµà´šà´¿à´Ÿàµà´Ÿà´¿à´²àµà´²"
+ പാസàµâ€Œà´µàµ‡à´¡àµ കാണികàµà´•àµà´•
+ "\"%1$s\" à´•àµà´²à´¿à´ªàµâ€Œà´¬àµ‹àµ¼à´¡à´¿à´²àµ‡à´•àµà´•ൠപകർതàµà´¤à´¿."
+ "തിരയàµà´•"
+ "999+"
+ "%1$s, %2$s"
+ "ഓഫാണàµ"
+ "ഓൺ"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-mn/values-mn.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-mn/values-mn.xml
new file mode 100644
index 00000000..2ebd946d
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-mn/values-mn.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d ÑˆÐ¸Ð½Ñ Ð¼ÑдÑгдÑл
+ - %d ÑˆÐ¸Ð½Ñ Ð¼ÑдÑгдÑл
+
+ "Ðүүр Ñ…ÑƒÑƒÐ´Ð°Ñ ÑƒÑ€ÑƒÑƒ шилжих"
+ "ДÑÑш шилжих"
+ "БуÑад Ñонголт"
+ "БолÑон"
+ "Бүгдийг харах"
+ "Ðппыг Ñонгох"
+ "ИДÐВХГҮЙ"
+ "ИДÐВХТÐЙ"
+ "Alt+"
+ "Ctrl+"
+ "уÑтгах"
+ "оруулах"
+ "Функц+"
+ "Мета+"
+ "Шифт+"
+ "зай"
+ "Sym+"
+ "ЦÑÑ+"
+ "Хайх…"
+ "ÐÑуулга арилгах"
+ "Хайх аÑуулга"
+ "Хайх"
+ "ÐÑуулга илгÑÑÑ…"
+ "Дуут хайлт"
+ "Дараахтай хуваалцах"
+ "%s-тай хуваалцах"
+ "Буулгах"
+ Доод Ñ…Ò¯ÑнÑгтийг хураах
+ Доод Ñ…Ò¯ÑнÑгтийг дÑлгÑÑ…
+ Ð¥Ð°Ð³Ð°Ñ Ð´ÑлгÑÐ½Ñ Ò¯Ò¯
+ ЧирÑÑ… бариулыг хоёр товших
+ ЧирÑÑ… бариул
+ "Хариулах"
+ "Видео"
+ "Татгалзах"
+ "ТаÑлах"
+ "ИрÑÑн дуудлага"
+ "Дуудлага хийгдÑж байна"
+ "ИрÑÑн дуудлагыг харуулж байна"
+ %2$d-н %1$d Ñ‚ÑмдÑгтийг оруулÑан
+ ТÑмдÑгтийн Ñ…Ñзгаар %2$d-н %1$d-Ñ Ñ…ÑÑ‚ÑÑ€ÑÑн
+ ТекÑтийг арилгах
+ ИдÑвхжүүлÑÑ…
+ %1$s нь Google Play үйлчилгÑÑг идÑвхжүүлÑÑ… хүртÑл ажиллахгүй.
+ Google Play үйлчилгÑÑг идÑвхжүүлÑÑ…
+ Суулгах
+ Таны төхөөрөмжид Google Play үйлчилгÑÑ Ð±Ð°Ð¹Ñ…Ð³Ò¯Ð¹ тул %1$s ажиллахгүй.
+ Google Play үйлчилгÑÑг авах
+ Google Play-н үйлчилгÑÑнүүдийн боломжит байдал
+ Google Ðаадаан үйлчилгÑÑний алдаа
+ %1$s-г Google Play-н үйлчилгÑÑгÑÑÑ€ ашиглахад аÑуудал гарлаа. Дахин оролдоно уу.
+ Таны төхөөрөмж Google Play үйлчилгÑÑг дÑмждÑггүй учир %1$s ажиллахгүй.
+ ШинÑчлÑÑ…
+ %1$s нь таныг Google Play үйлчилгÑÑнүүдийг шинÑчлÑÑ…ÑÑÑ Ð½Ð°Ð°Ñˆ ажиллахгүй.
+ Google Play үйлчилгÑÑг шинÑчлÑÑ…
+ %1$s нь одоогоор шинÑчилж буй Google Play үйлчилгÑÑгүйгÑÑÑ€ ажиллахгүй.
+ Google Play үйлчилгÑÑний ÑˆÐ¸Ð½Ñ Ñ…ÑƒÐ²Ð¸Ð»Ð±Ð°Ñ€ Ñ…ÑÑ€ÑгтÑй. ÐÐ½Ñ Ð½ÑŒ удахгүй Ó©Ó©Ñ€Ó©Ó© өөрийгөө шинÑчлÑÑ… болно.
+ УтÑаар нÑÑÑ…
+ ÐÑвтрÑÑ…
+ Google-Ñ€ нÑвтрÑÑ…:
+ "Хуулах"
+ "ХолбооÑыг түр Ñанах ойд хуулÑан"
+ Ðлдаа
+ "ДÑлгÑÑ€Ñнгүй"
+ Доош унадаг цÑÑийг харуулах
+ "ХолбооÑыг хуулах"
+ "Хөтчид нÑÑÑ…"
+ "ХолбооÑыг хуваалцах"
+ Харилцах цонхны Ð´Ò¯Ñ€Ñ Ñ‚ÑмдÑг
+ Таб
+ Ò®Ó¨ ÑÑвÑл ҮХ Ñонгоно уу
+ %1$s цаг
+ Цаг Ñонгох
+ %1$s цаг
+ Минут Ñонгоно уу
+ %1$s минут
+ AM
+ Цагийг оруулахын тулд цагийн горимд ÑˆÐ¸Ð»Ð¶Ò¯Ò¯Ð»Ð½Ñ Ò¯Ò¯.
+ Цаг
+ Минут
+ PM
+ Цаг Ñонгох
+ Цагийг оруулахын тулд текÑÑ‚ оруулах горимд ÑˆÐ¸Ð»Ð¶Ò¯Ò¯Ð»Ð½Ñ Ò¯Ò¯.
+ Ð¨Ð¸Ð½Ñ Ð¼ÑдÑгдÑл
+ %1$s-г уÑтгах
+ %1$d-Ñ Ð¾Ð»Ð¾Ð½ ÑˆÐ¸Ð½Ñ Ð¼ÑдÑгдÑл
+ Дараагийн Ñар луу өөрчлөх
+ Өмнөх Ñар луу өөрчлөх
+ ÐхлÑÑ… огнооны Ñонголт: %1$s – ДууÑах огнооны Ñонголт: %2$s
+ Одоогийн Ñонголт: %1$s
+ байхгүй
+ Цуцлах
+ OK
+ %1$s
+ Огноо Ñонгох
+ СонгоÑон огноо
+ Өдрийн багана: %1$s
+ ДууÑах огноо %1$s
+ Буруу формат байна.
+ ЖишÑÑ Ð½ÑŒ: %1$s
+ Ðшиглах формат: %1$s
+ Огнооны Ñ…Ñзгаар буруу байна.
+ Одоогийн %1$d он руу шилжих
+ %1$d он руу шилжих
+ Ð¥ÑÐ·Ð³Ð°Ð°Ñ€Ð°Ð°Ñ Ñ…ÑÑ‚ÑÑ€ÑÑн: %1$s
+ ÐхлÑÑ… огноо – %1$s
+ %1$s – ДууÑах огноо
+ %1$s – %2$s
+ Муж Ñонгох
+ ÐхлÑÑ… огноо – ДууÑах огноо
+ Хадгалах
+ ÐхлÑÑ… огноо %1$s
+ Огноо
+ ДууÑах огноо
+ ÐхлÑÑ… огноо
+ Ó©
+ Ñ
+ ж
+ Өнөөдөр %1$s
+ Календарийн орох горим руу ÑÑлгÑÑ…
+ Календариар харуулах руу ÑÑлгÑхийн тулд товшино уу
+ ТекÑтийн орох горим руу ÑÑлгÑÑ…
+ ЖилÑÑÑ€ нь харуулах руу ÑÑлгÑхийн тулд товшино уу
+ Цуцлах
+ OK
+ "Тохируулаагүй"
+ Ðууц үгийг харуулах
+ "\"%1$s\"-г түр Ñанах ойд хуулÑан."
+ "Хайх"
+ "999+"
+ "%1$s, %2$s"
+ "ИДÐВХГҮЙ"
+ "ИДÐВХТÐЙ"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-mr/values-mr.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-mr/values-mr.xml
new file mode 100644
index 00000000..3d3392ef
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-mr/values-mr.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d नवीन सूचना
+ - %d नवीन सूचना
+
+ "घराकडे नेवà¥à¤¹à¤¿à¤—ेट करा"
+ "वर नेवà¥â€à¤¹à¤¿à¤—ेट करा"
+ "आणखी परà¥à¤¯à¤¾à¤¯"
+ "पूरà¥à¤£ à¤à¤¾à¤²à¥‡"
+ "सरà¥à¤µ पहा"
+ "अâ€à¥…प निवडा"
+ "बंद"
+ "सà¥à¤°à¥‚"
+ "Alt+"
+ "Ctrl+"
+ "हटवा"
+ "à¤à¤‚टर करा"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "मेनू+"
+ "शोधा…"
+ "कà¥â€à¤µà¥‡à¤°à¥€ साफ करा"
+ "शोध कà¥à¤µà¥‡à¤°à¥€"
+ "शोधा"
+ "कà¥à¤µà¥‡à¤°à¥€ सबमिट करा"
+ "वà¥à¤¹à¥‰à¤‡à¤¸ शोध"
+ "यांचà¥à¤¯à¤¾à¤¸à¥‹à¤¬à¤¤ शेअर करा"
+ "%s सह शेअर करा"
+ "कोलॅपà¥à¤¸ करा"
+ तळाशी असलेली शीट कोलॅपà¥à¤¸ करा
+ तळाशी असलेलà¥à¤¯à¤¾ शीटचा विसà¥à¤¤à¤¾à¤° करा
+ पूरà¥à¤£à¤ªà¤£à¥‡ विसà¥à¤¤à¥ƒà¤¤ करा
+ डà¥à¤°à¥…ग हॅंडलवर दोनदा टॅप केले आहे
+ डà¥à¤°à¥…ग हॅंडल
+ "उतà¥à¤¤à¤° दà¥à¤¯à¤¾"
+ "वà¥à¤¹à¤¿à¤¡à¤¿à¤“"
+ "नकार दà¥à¤¯à¤¾"
+ "कॉल बंद करा"
+ "इनकमिंग कॉल"
+ "सà¥à¤°à¥‚ असलेला कॉल"
+ "इनकमिंग कॉल सà¥à¤•à¥à¤°à¥€à¤¨ करत आहे"
+ %2$d पैकी %1$d वरà¥à¤£ à¤à¤‚टर केले आहे
+ %2$d पैकी %1$d वरà¥à¤£à¤®à¤°à¥à¤¯à¤¾à¤¦à¤¾ ओलांडली आहे
+ मजकूर साफ करा
+ सà¥à¤°à¥‚ करा
+ तà¥à¤®à¥à¤¹à¥€ Google Play सेवा सकà¥à¤·à¤® केलà¥à¤¯à¤¾à¤¶à¤¿à¤µà¤¾à¤¯ %1$s हा अâ€à¥…प कारà¥à¤¯ करणार नाही.
+ Google Play सेवा सà¥à¤°à¥‚ करा
+ सà¥â€à¤¥à¤¾à¤ªà¤¿à¤¤ करा
+ Google Play सेवा आपलà¥à¤¯à¤¾ डिवà¥à¤¹à¤¾à¤‡à¤¸à¤µà¤° उपलबà¥à¤§ नाही, तà¥à¤¯à¤¾à¤¶à¤¿à¤µà¤¾à¤¯ %1$s चालणार नाही.
+ Google Play सेवा मिळवा
+ Google Play सेवा उपलबà¥à¤§à¤¤à¤¾
+ Google Play सेवा à¤à¤°à¤°
+ %1$s ला Google Play सेवांमधà¥à¤¯à¥‡ समसà¥à¤¯à¤¾ येत आहे. कृपया पà¥à¤¨à¥à¤¹à¤¾ पà¥à¤°à¤¯à¤¤à¥à¤¨ करा.
+ तà¥à¤®à¤šà¥‡ डिवà¥à¤¹à¤¾à¤‡à¤¸ सपोरà¥à¤Ÿ करत नसलेलà¥à¤¯à¤¾, Google Play सेवांशिवाय %1$s चालणार नाही.
+ अपडेट करा
+ तà¥à¤®à¥à¤¹à¥€ Google Play सेवा अपडेट करेपरà¥à¤¯à¤‚त %1$s चालणार नाही.
+ Google Play सेवा अपडेट करा
+ सधà¥â€à¤¯à¤¾ अपडेट होत असलेलà¥â€à¤¯à¤¾, Google Play सेवांशिवाय %1$s चालणार नाही.
+ Google Play सेवांचà¥à¤¯à¤¾ नवीन आवृतà¥à¤¤à¥€à¤šà¥€ आवशà¥à¤¯à¤•ता आहे. हे सà¥à¤µà¤¤:ला लवकरच अपडेट करेल.
+ फोनवर उघडा
+ साइन इन करा
+ Google सह साइन इन करा
+ "कॉपी करा"
+ "लिंक कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡à¤µà¤° कॉपी केली"
+ à¤à¤°à¤°
+ "पà¥à¤°à¤—त"
+ डà¥à¤°à¥‰à¤ªà¤¡à¤¾à¤‰à¤¨ मेनू दाखवा
+ "लिंक कॉपी करा"
+ "बà¥à¤°à¤¾à¤‰à¤à¤°à¤®à¤§à¥à¤¯à¥‡ उघडा"
+ "लिंक शेअर करा"
+ डायलॉग आयकन
+ टॅब
+ AM किंवा PM निवडा
+ %1$s तास
+ वेळ निवडा
+ %1$s वाजता
+ मिनिटे निवडा
+ %1$s मिनिटे
+ AM
+ वेळेचà¥à¤¯à¤¾ इनपà¥à¤Ÿà¤¸à¤¾à¤ ी घडà¥à¤¯à¤¾à¤³ मोडवर सà¥à¤µà¤¿à¤š करा.
+ तास
+ मिनिट
+ PM
+ वेळ निवडा
+ वेळ इनपà¥à¤Ÿà¤¸à¤¾à¤ ी मजकूर इनपà¥à¤Ÿ मोडवर सà¥à¤µà¤¿à¤š करा.
+ नवीन सूचना
+ काढून टाका %1$s
+ %1$d पेकà¥à¤·à¤¾ अधिक नवीन सूचना
+ पà¥à¤¢à¥€à¤² महिनà¥à¤¯à¤¾à¤µà¤° बदला
+ मागील महिनà¥à¤¯à¤¾à¤µà¤° बदला
+ सà¥à¤°à¥‚ होणà¥à¤¯à¤¾à¤šà¥à¤¯à¤¾ तारखेची निवड: %1$s – संपणà¥à¤¯à¤¾à¤šà¥à¤¯à¤¾ तारखेची निवड: %2$s
+ सधà¥à¤¯à¤¾à¤šà¥€ निवड: %1$s
+ काहीही नाही
+ रदà¥à¤¦ करा
+ ओके
+ %1$s
+ तारीख निवडा
+ निवडलेली तारीख
+ दिवसांचा सà¥à¤¤à¤‚à¤: %1$s
+ संपणà¥à¤¯à¤¾à¤šà¥€ तारीख %1$s
+ चà¥à¤•ीचा फॉरमॅट.
+ उदाहरण: %1$s
+ %1$s: वापरा
+ चà¥à¤•ीची शà¥à¤°à¥‡à¤£à¥€.
+ सधà¥à¤¯à¤¾à¤šà¥‡ वरà¥à¤· %1$d यावर नेवà¥à¤¹à¤¿à¤—ेट करा
+ %1$d वरà¥à¤·à¤¾à¤µà¤° नेवà¥à¤¹à¤¿à¤—ेट करा
+ रेंजचà¥à¤¯à¤¾ बाहेर: %1$s
+ सà¥à¤°à¥‚ होणà¥à¤¯à¤¾à¤šà¥€ तारीख – %1$s
+ %1$s – संपणà¥à¤¯à¤¾à¤šà¥€ तारीख
+ %1$s – %2$s
+ रेंज निवडा
+ सà¥à¤°à¥‚ होणà¥à¤¯à¤¾à¤šà¥€ तारीख – संपणà¥à¤¯à¤¾à¤šà¥€ तारीख
+ सेवà¥à¤¹ करा
+ सà¥à¤°à¥‚ होणà¥à¤¯à¤¾à¤šà¥€ तारीख %1$s
+ तारीख
+ संपणà¥à¤¯à¤¾à¤šà¥€ तारीख
+ सà¥à¤°à¥‚ होणà¥à¤¯à¤¾à¤šà¥€ तारीख
+ दि
+ म
+ व
+ आज %1$s
+ कॅलेंडर इनपà¥à¤Ÿ मोडवर सà¥à¤µà¤¿à¤š करा
+ कॅलेंडर या दृशà¥à¤¯à¤¾à¤µà¤° सà¥à¤µà¤¿à¤š करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी टॅप करा
+ मजकूर इनपà¥à¤Ÿ मोडवर सà¥à¤µà¤¿à¤š करा
+ वरà¥à¤· या दृशà¥à¤¯à¤¾à¤µà¤° सà¥à¤µà¤¿à¤š करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी टॅप करा
+ रदà¥à¤¦ करा
+ ओके
+ "सेट केलेले नाही"
+ पासवरà¥à¤¡ दाखवा
+ "\"%1$s\" कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡à¤µà¤° कॉपी केली."
+ "शोध"
+ "९९९+"
+ "%1$s, %2$s"
+ "बंद"
+ "सà¥à¤°à¥‚"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ms/values-ms.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ms/values-ms.xml
new file mode 100644
index 00000000..e7ffb2e1
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ms/values-ms.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d pemberitahuan baharu
+ - %d pemberitahuan baharu
+
+ "Navigasi laman utama"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "MATI"
+ "HIDUP"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Fungsi+"
+ "Meta+"
+ "Shift+"
+ "ruang"
+ "Sym+"
+ "Menu+"
+ "Cari…"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+ "Runtuhkan"
+ Kuncupkan helaian bawah
+ Kembangkan helaian bawah
+ Kembangkan helaian bawah
+ Pemegang seret diketik dua kali
+ Pemegang seret
+ "Jawab"
+ "Video"
+ "Tolak"
+ "Tamatkan Panggilan"
+ "Panggilan masuk"
+ "Panggilan sedang berlangsung"
+ "Menyaring panggilan masuk"
+ Aksara dimasukkan %1$d daripada %2$d
+ Melebihi had aksara %1$d daripada %2$d
+ Kosongkan teks
+ Dayakan
+ %1$s tidak akan berfungsi melainkan anda mendayakan perkhidmatan Google Play.
+ Dayakan perkhidmatan Google Play
+ Pasang
+ %1$s tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini tiada pada peranti anda.
+ Dapatkan perkhidmatan Google Play
+ Ketersediaan perkhidmatan Google Play
+ Ralat perkhidmatan Google Play
+ %1$s menghadapi masalah berhubung perkhidmatan Google Play. Sila cuba lagi.
+ %1$s tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini tidak disokong oleh peranti anda.
+ Kemas kini
+ %1$s tidak akan berfungsi kecuali anda mengemas kini perkhidmatan Google Play.
+ Kemaskinikan perkhidmatan Google Play
+ %1$s tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini sedang dikemaskinikan.
+ Versi baharu perkhidmatan Google Play diperlukan. Kemas kini automatik akan dijalankan sebentar lagi.
+ Buka pada telefon
+ Log masuk
+ Log masuk dengan Google
+ "Salin"
+ "Pautan disalin ke papan keratan"
+ Ralat
+ "Terperinci"
+ Tunjukkan menu lungsur
+ "Salin pautan"
+ "Buka dalam penyemak imbas"
+ "Kongsi pautan"
+ Ikon Dialog
+ Tab
+ Pilih AM atau PM
+ %1$s jam
+ Pilih jam
+ Pukul %1$s
+ Pilih minit
+ %1$s minit
+ PG
+ Beralih ke mod jam untuk input masa.
+ Jam
+ Minit
+ P/M
+ Pilih masa
+ Beralih ke mod input teks untuk input masa.
+ Pemberitahuan baharu
+ Alih keluar %1$s
+ Lebih daripada %1$d pemberitahuan baharu
+ Tukar kepada bulan seterusnya
+ Tukar kepada bulan sebelumnya
+ Pilihan tarikh mula: %1$s – Pilihan tarikh tamat: %2$s
+ Pilihan semasa: %1$s
+ tiada
+ Batal
+ OK
+ %1$s
+ Pilih Tarikh
+ Tarikh dipilih
+ Lajur hari: %1$s
+ Tarikh tamat %1$s
+ Format tidak sah.
+ Contoh: %1$s
+ Gunakan: %1$s
+ Julat tidak sah.
+ Navigasi ke tahun semasa %1$d
+ Navigasi ke tahun %1$d
+ Di luar julat: %1$s
+ Tarikh mula – %1$s
+ %1$s – Tarikh tamat
+ %1$s – %2$s
+ Pilih Julat
+ Tarikh mula – Tarikh tamat
+ Simpan
+ Tarikh mula %1$s
+ Tarikh
+ Tarikh tamat
+ Tarikh mula
+ h
+ b
+ t
+ Hari ini %1$s
+ Beralih kepada mod input kalendar
+ Ketik untuk menukar kepada paparan Kalendar
+ Beralih kepada mod input teks
+ Ketik untuk menukar kepada paparan tahun
+ Batal
+ OK
+ "Tidak ditetapkan"
+ Tunjukkan kata laluan
+ "\"%1$s\" disalin ke papan keratan."
+ "Cari"
+ "999+"
+ "%1$s, %2$s"
+ "MATI"
+ "HIDUP"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-my/values-my.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-my/values-my.xml
new file mode 100644
index 00000000..14419486
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-my/values-my.xml
@@ -0,0 +1,140 @@
+
+
+
+ - အကြောင်းကြားá€á€»á€€á€ºá€¡á€žá€…် %d á€á€¯
+ - အကြောင်းကြားá€á€»á€€á€ºá€¡á€žá€…် %d á€á€¯
+
+ "မူလနေရာကá€á€¯ ပြန်သွားရန်"
+ "အပေါ်သá€á€¯á€· ရွှေ့ရန်"
+ "နောက်ထပ် ရွေးစရာများ"
+ "ပြီးပြီ"
+ "အားလုံး ကြည့်ရန်"
+ "အက်ပ်á€á€…်á€á€¯á€€á€á€¯ ရွေးရန်"
+ "ပá€á€á€º"
+ "ဖွင့်"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ရှာဖွေရန်…"
+ "ရှာဖွေမှုကá€á€¯ ဖယ်ရှားရန်"
+ "ရှာဖွေရန် မေးá€á€½á€”်း"
+ "ရှာရန်"
+ "ရှာဖွေစရာ အá€á€»á€€á€ºá€¡á€œá€€á€ºá€€á€á€¯ ပေးပá€á€¯á€·á€›á€”်"
+ "အသံဖြင့် ရှာရန်"
+ "နှင့် မျှá€á€±á€›á€”်"
+ "%s ဖြင့် မျှá€á€±á€›á€”်"
+ "လျှော့ပြရန်"
+ အောက်á€á€¼á€±á€¡á€•á€á€¯á€†á€±á€¬á€„်း စာမျက်နှာကá€á€¯ ပá€á€á€ºá€”á€á€¯á€„်သည်
+ အောက်á€á€¼á€±á€¡á€•á€á€¯á€†á€±á€¬á€„်း စာမျက်နှာကá€á€¯ á€á€»á€²á€·á€”á€á€¯á€„်သည်
+ á€á€…်á€á€€á€ºá€á€»á€²á€·á€›á€”်
+ ဖá€á€†á€½á€²á€¡á€‘á€á€”်း နှစ်á€á€»á€€á€ºá€á€á€¯á€·á€‘ားသည်
+ ဖá€á€†á€½á€²á€¡á€‘á€á€”်း
+ "ဖုန်းကá€á€¯á€„်ရန်"
+ "ဗီဒီယá€á€¯"
+ "ငြင်းပယ်ရန်"
+ "ဖုန်းá€á€»á€›á€”်"
+ "အá€á€„်á€á€±á€«á€ºá€†á€á€¯á€™á€¾á€¯"
+ "လက်ရှá€á€á€±á€«á€ºá€†á€á€¯á€™á€¾á€¯"
+ "အá€á€„်á€á€±á€«á€ºá€†á€á€¯á€™á€¾á€¯á€€á€á€¯ စစ်ဆေးနေသည်"
+ စာလုံးရေ %2$d á€á€½á€„် %1$d ထည့်သွင်းထားသည်
+ စာလုံးရေအကန့်အသá€á€º %2$d လုံးá€á€½á€„် %1$d လုံးကျော်နေသည်
+ စာသား ဖယ်ရှားရန်
+ ဖွင့်ရန်
+ Google Play á€á€”်ဆောင်မှုများကá€á€¯ မဖွင့်သá %1$s သည်အလုပ်လုပ်မည်မဟုá€á€ºá€•ါá‹
+ Google Play á€á€”်ဆောင်မှုများ ဖွင့်ရန်
+ ထည့်သွင်းပါ
+ သင့်á€á€€á€ºá€˜á€œá€€á€ºá€á€½á€„် Google Play á€á€”်ဆောင်မှုများမရှá€á€žá€±á€¬á€€á€¼á€±á€¬á€„့် %1$s ကá€á€¯á€–ွင့်áမရပါá‹
+ Google Play á€á€”်ဆောင်မှုများရယူရန်
+ Google Play á€á€”်ဆောင်မှုများ ရရှá€á€”á€á€¯á€„်သည်
+ Google Play á€á€”်ဆောင်မှုများ အမှား
+ %1$s သည် Google Play á€á€”်ဆောင်မှုများနှင့် ပြဿနာအနည်းငယ် ရှá€á€”ေပါသည်ዠထပ်လုပ်ကြည့်ပါá‹
+ Google Play á€á€”်ဆောင်မှုများကá€á€¯ သင့်စက်ပစ္စည်းá€á€½á€„် ပံ့ပá€á€¯á€¸á€™á€‘ားသည့်အá€á€½á€€á€º áŽá€„်းမရှá€á€˜á€² %1$s ကá€á€¯ ဖွင့်áမရပါá‹
+ အပ်ဒá€á€á€º
+ Google Play á€á€”်ဆောင်မှုများအား အပ်ဒá€á€á€ºá€™á€œá€¯á€•်ပါက %1$s အလုပ်လုပ်မည် မဟုá€á€ºá€•ါá‹
+ Google Play á€á€”်ဆောင်မှုများကá€á€¯ အပ်ဒá€á€á€ºá€œá€¯á€•်ရန်
+ Google Play á€á€”်ဆောင်မှုများကá€á€¯ လက်ရှá€á€¡á€•်ဒá€á€á€ºá€œá€¯á€•်နေသောကြောင့် %1$s ကá€á€¯á€–ွင့်áရမည်မဟုá€á€ºá€•ါá‹
+ Google Play á€á€”်ဆောင်မှုဗားရှင်းအသစ်များ လá€á€¯á€¡á€•်နေသည်ዠအá€á€»á€á€”်အနည်းငယ်အကြာá€á€½á€„် áŽá€„်းကá€á€¯á€šá€ºá€á€á€¯á€„်အပ်ဒá€á€á€ºá€œá€¯á€•်ပါ လá€á€™á€·á€ºá€™á€Šá€ºá‹
+ ဖုန်းပေါ်မှာ ဖွင့်ပါ
+ လက်မှá€á€ºá€‘á€á€¯á€¸ á€á€„်ရန်
+ Google ဖြင့် လက်မှá€á€ºá€‘á€á€¯á€¸á€á€„်ရေ
+ "မá€á€á€¹á€á€°á€€á€°á€¸á€›á€”်"
+ "လင့်á€á€ºá€€á€á€¯ ကလစ်ဘုá€á€ºá€žá€á€¯á€· ကူးပြီးပါပြီ"
+ အမှား
+ "အဆင့်မြင့်"
+ ဆွဲá€á€»á€™á€®á€”ူးကá€á€¯ ပြရန်
+ "လင့်á€á€ºá€€á€á€¯ ကူးယူရန်"
+ "ဘရောင်ဇာá€á€½á€„် ဖွင့်ရန်"
+ "လင့်á€á€ºá€€á€á€¯ မျှá€á€±á€›á€”်"
+ ဒá€á€¯á€„်ယာလော့á€á€º သင်္ကေá€
+ á€á€˜á€º
+ AM (သá€á€¯á€·) PM ရွေးရန်
+ %1$s နာရီ
+ နာရီ ရွေးရန်
+ %1$s နာရီ
+ မá€á€”စ်များ ရွေးပါ
+ %1$s မá€á€”စ်
+ နံနက်
+ အá€á€»á€á€”်ထည့်သွင်းမှုအá€á€½á€€á€º နာရီမုဒ်သá€á€¯á€· ပြောင်းပါá‹
+ နာရီ
+ မá€á€”စ်
+ ညနေ
+ အá€á€»á€á€”်ရွေးပါ
+ အá€á€»á€á€”်ထည့်သွင်းရန် စာသားထည့်သွင်းမှုမုဒ်သá€á€¯á€· ပြောင်းပါá‹
+ အကြောင်းကြားá€á€»á€€á€ºá€¡á€žá€…်
+ %1$s ကá€á€¯ ဖယ်ရှားရန်
+ အကြောင်းကြားá€á€»á€€á€ºá€¡á€žá€…် %1$d á€á€¯ အထက်
+ နောက်လသá€á€¯á€· ပြောင်းရန်
+ ယá€á€„်လသá€á€¯á€· ပြောင်းရန်
+ စá€á€„်ရက် ရွေးရန်- %1$s – ပြီးဆုံးရက် ရွေးရန်- %2$s
+ လက်ရှဠရွေးá€á€»á€šá€ºá€™á€¾á€¯- %1$s
+ မရှá€
+ ပယ်ဖျက်ရန်
+ OK
+ %1$s
+ ရက်စွဲ ရွေးပါ
+ ရွေးထားသည့် ရက်စွဲ
+ ရက်ကော်လံ- %1$s
+ ပြီးဆုံးရက် %1$s
+ ဖော်မက် မမှန်ကန်ပါá‹
+ ဥပမာ− %1$s
+ %1$s သုံးရန်
+ ရက်အပá€á€¯á€„်းအá€á€¼á€¬á€¸ မမှန်ပါá‹
+ လက်ရှá€á€á€¯á€”ှစ် %1$d သá€á€¯á€· သွားရန်
+ နှစ် %1$d သá€á€¯á€· လမ်းညွှန်ရန်
+ ရက်အပá€á€¯á€„်းအá€á€¼á€¬á€¸ ပြင်ပ− %1$s
+ စá€á€„်ရက် – %1$s
+ %1$s – ပြီးဆုံးရက်
+ %1$s – %2$s
+ အပá€á€¯á€„်းအá€á€¼á€¬á€¸ ရွေးပါ
+ စá€á€„်ရက် – ပြီးဆုံးရက်
+ သá€á€™á€ºá€¸á€›á€”်
+ စá€á€„်ရက် %1$s
+ ရက်စွဲ
+ ပြီးဆုံးရက်
+ စá€á€„်ရက်
+ d
+ m
+ y
+ ယနေ့ %1$s
+ ပြက္á€á€’á€á€”် ထည့်သွင်းမှုမုဒ်သá€á€¯á€· ပြောင်းရန်
+ ပြက္á€á€’á€á€”်မြင်ကွင်းသá€á€¯á€· ပြောင်းရန် á€á€á€¯á€·á€”á€á€¯á€„်သည်
+ စာသား ထည့်သွင်းမှုမုဒ်သá€á€¯á€· ပြောင်းရန်
+ နှစ်အလá€á€¯á€€á€ºá€™á€¼á€„်ကွင်းသá€á€¯á€· ပြောင်းရန် á€á€á€¯á€·á€”á€á€¯á€„်သည်
+ မလုပ်á€á€±á€¬á€·
+ OK
+ "သá€á€ºá€™á€¾á€á€ºá€™á€‘ားပါ"
+ စကားá€á€¾á€€á€ºá€€á€á€¯ ပြရန်
+ "\"%1$s\" ကá€á€¯ ကလစ်ဘုá€á€ºá€žá€á€¯á€· မá€á€á€¹á€á€°á€€á€°á€¸á€šá€°á€•ြီးပါပြီá‹"
+ "ရှာဖွေမှု"
+ "á‰á‰á‰+"
+ "%1$sአ%2$s"
+ "ပá€á€á€º"
+ "ဖွင့်"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-nb/values-nb.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-nb/values-nb.xml
new file mode 100644
index 00000000..d6e40274
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-nb/values-nb.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d nytt varsel
+ - %d nye varsler
+
+ "Naviger hjem"
+ "GÃ¥ opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "AV"
+ "PÃ…"
+ "Alt+"
+ "Ctrl+"
+ "slett"
+ "enter"
+ "Funksjon+"
+ "Meta+"
+ "Shift+"
+ "mellomrom"
+ "Sym+"
+ "Meny+"
+ "Søk"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+ "Skjul"
+ Skjul feltet nederst
+ Vis feltet nederst
+ Vis halve feltet nederst
+ Dobbelttrykket på håndtaket
+ HÃ¥ndtak
+ "Svar"
+ "Video"
+ "Avvis"
+ "Legg på"
+ "Innkommende anrop"
+ "Pågående samtale"
+ "Filtrerer et innkommende anrop"
+ %1$d av %2$d tegn er skrevet inn
+ Tegngrensen er overskredet – %1$d av %2$d
+ Fjern teksten
+ Aktivér
+ %1$s fungerer ikke med mindre du slår på Google Play-tjenester.
+ Slå på Google Play-tjenester
+ Installer
+ %1$s kan ikke kjøre uten Google Play-tjenester, som ikke er installert på enheten din.
+ Installer Google Play-tjenester
+ Google Play Tjenester-tilgjengelighet
+ Google Play Tjenester-feil
+ %1$s har problemer med Google Play-tjenester. Prøv på nytt.
+ %1$s kan ikke kjøre uten Google Play-tjenester, som ikke støttes av enheten din.
+ Oppdater
+ %1$s kjører ikke med mindre du oppdaterer Google Play Tjenester.
+ Oppdater Google Play-tjenester
+ %1$s kjører ikke uten Google Play-tjenester, som oppdateres akkurat nå.
+ Du må installere en ny versjon av Google Play-tjenester. Appen oppdateres automatisk om en kort stund.
+ Åpne på telefonen
+ Logg på
+ Logg på med Google
+ "Kopiér"
+ "Linken er kopiert til utklippstavlen"
+ Feil
+ "Avansert"
+ Vis rullegardinmenyen
+ "Kopiér linken"
+ "Ã…pne i nettleseren"
+ "Del link"
+ Dialogboksikon
+ Fane
+ Velg AM eller PM
+ %1$s timer
+ Velg time
+ %1$s null-null
+ Angi minutter
+ %1$s minutter
+ AM
+ Bytt til klokkemodus for tidsinndata.
+ Time
+ Minutt
+ PM
+ Velg tidspunkt
+ Bytt til tekstinndatamodus for tidsinndata.
+ Nytt varsel
+ Fjern %1$s
+ Flere enn %1$d nye varsler
+ Endre til neste måned
+ Endre til forrige måned
+ Valg av startdato: %1$s – valg av sluttdato: %2$s
+ Gjeldende valg: %1$s
+ ingen
+ Avbryt
+ OK
+ %1$s
+ Velg dato
+ Valgt dato
+ Kolonne for dager: %1$s
+ Sluttdato %1$s
+ Ugyldig format.
+ Eksempel: %1$s
+ Bruk: %1$s
+ Ugyldig område.
+ Gå til dette året %1$d
+ Naviger til år %1$d
+ Utenfor rekkevidde: %1$s
+ Startdato – %1$s
+ %1$s – sluttdato
+ %1$s–%2$s
+ Velg periode
+ Startdato–sluttdato
+ Lagre
+ Startdato %1$s
+ Dato
+ Sluttdato
+ Startdato
+ d
+ m
+ å
+ I dag %1$s
+ Bytt til kalenderinndatamodus
+ Trykk for å bytte til kalendervisningen
+ Bytt til tekstinndatamodus
+ Trykk for å bytte til årsvisningen
+ Avbryt
+ OK
+ "Ikke angitt"
+ Vis passordet
+ "«%1$s» er kopiert til utklippstavlen."
+ "Søk"
+ "999+"
+ "%1$s, %2$s"
+ "AV"
+ "PÃ…"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ne/values-ne.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ne/values-ne.xml
new file mode 100644
index 00000000..4a832c51
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ne/values-ne.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d नयाठसूचना
+ - %d नयाठसूचनाहरू
+
+ "होम पेजमा जानà¥à¤¹à¥‹à¤¸à¥"
+ "माथि नेà¤à¤¿à¤—ेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ "थप विकलà¥à¤ªà¤¹à¤°à¥‚"
+ "समà¥à¤ªà¤¨à¥à¤¨ à¤à¤¯à¥‹"
+ "सबै हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ "à¤à¤‰à¤Ÿà¤¾ à¤à¤ª छानà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ "निषà¥à¤•à¥à¤°à¤¿à¤¯"
+ "सकà¥à¤°à¤¿à¤¯"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥â€¦"
+ "कà¥à¤µà¥‡à¤°à¥€ खाली गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ "खोज पà¥à¤°à¤¶à¥à¤¨"
+ "खोज"
+ "कà¥à¤µà¥‡à¤°à¥€ पेस गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ "आवाजमा आधारित खोजी"
+ "यसमारà¥à¤«à¤¤ सेयर गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ "%s मारà¥à¤«à¤¤ सेयर गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ "संकà¥à¤·à¤¿à¤ªà¥à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ पà¥à¤›à¤¾à¤°à¤•ो पाना कोलà¥à¤¯à¤¾à¤ªà¥à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ पà¥à¤›à¤¾à¤°à¤•ो पाना à¤à¤•à¥à¤¸à¥à¤ªà¤¾à¤¨à¥à¤¡ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ आधा ठà¥à¤²à¥‹ पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ डà¥à¤°à¥à¤¯à¤¾à¤— हà¥à¤¯à¤¾à¤¨à¥à¤¡à¤²à¤®à¤¾ डबल टà¥à¤¯à¤¾à¤ª गरियो
+ डà¥à¤°à¥à¤¯à¤¾à¤— हà¥à¤¯à¤¾à¤¨à¥à¤¡à¤²
+ "जवाफ दिनà¥à¤¹à¥‹à¤¸à¥"
+ "à¤à¤¿à¤¡à¤¿à¤¯à¥‹"
+ "काटà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ "फोन राखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ "आगमन कल"
+ "à¤à¤‡à¤°à¤¹à¥‡à¤•ो कल"
+ "आगमन कल जाà¤à¤šà¤¿à¤à¤¦à¥ˆ छ"
+ %2$d मधà¥à¤¯à¥‡ %1$d वरà¥à¤£ पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿ गरियो
+ %2$d मधà¥à¤¯à¥‡ %1$d वरà¥à¤£ सीमा नाघà¥à¤¯à¥‹
+ पाठखाली गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ अन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ %1$s ले तपाईà¤à¤²à¥‡ Google Play सेवाहरू सकà¥à¤·à¤® नगरेसमà¥à¤® काम गरà¥à¤¦à¥ˆà¤¨à¥¤
+ Google Play सेवाहरू सकà¥à¤·à¤® पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ %1$s Google Play services बिना सञà¥à¤šà¤¾à¤²à¤¨ हà¥à¤¨à¥‡ छैन र तपाईà¤à¤•ो यनà¥à¤¤à¥à¤°à¤®à¤¾ Google Play services उपलबà¥à¤§ छैननà¥à¥¤
+ Google Play सेवाहरू पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ Google Play सेवाको उपलबà¥à¤§à¤¤à¤¾
+ Google Play सेवाहरूका तà¥à¤°à¥à¤Ÿà¤¿
+ %1$s लाई Google Play services सà¤à¤— सहकारà¥à¤¯ गरà¥à¤¨ समसà¥à¤¯à¤¾ à¤à¤‡à¤°à¤¹à¥‡à¤•ो छ। कृपया फेरि पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¥¤
+ %1$s Google Play services बिना सञà¥à¤šà¤¾à¤²à¤¨ हà¥à¤¨à¥‡ छैन र तपाईà¤à¤•ो यनà¥à¤¤à¥à¤°à¤²à¥‡ Google Play services लाई समरà¥à¤¥à¤¨ गरà¥à¤¦à¥ˆà¤¨à¥¤
+ अपडेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ %1$s तपाईंले Google पà¥à¤²à¥‡ सेवाहरू अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• नगरेसमà¥à¤® सञà¥à¤šà¤¾à¤²à¤¨ हà¥à¤à¤¦à¥ˆà¤¨à¥¤
+ Google Play सेवाहरू अपडेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ Google Play सेवाहरू %1$s बिना सञà¥â€à¤šà¤¾à¤²à¤¨ हà¥à¤à¤¦à¥ˆà¤¨, जà¥à¤¨ हाल अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• à¤à¤‡à¤°à¤¹à¥‡à¤•ा छनà¥à¥¤
+ Google Play सेवाहरूको नयाठसंसà¥à¤•रण आवशà¥à¤¯à¤• छ। यो आफै छिटà¥à¤Ÿà¥ˆ नै अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• हà¥à¤¨à¥‡à¤›à¥¤
+ फोनमा खोलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ साइन इन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ Google मारà¥à¤«à¤¤ साइन†इन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ "पà¥à¤°à¤¤à¤¿à¤²à¤¿à¤ªà¤¿ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ "कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡à¤®à¤¾ लिंक कपी गरियो"
+ तà¥à¤°à¥à¤Ÿà¤¿
+ "उनà¥à¤¨à¤¤"
+ डà¥à¤°à¤ªà¤¡à¤¾à¤‰à¤¨ मेनॠदेखाउनà¥à¤¹à¥‹à¤¸à¥
+ "लिंक पà¥à¤°à¤¤à¤¿à¤²à¤¿à¤ªà¤¿ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ "बà¥à¤°à¤¾à¤‰à¤œà¤°à¤®à¤¾ खोलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ "लिंक सेयर गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥"
+ संवादको आइकन
+ टà¥à¤¯à¤¾à¤¬
+ पूरà¥à¤µà¤¾à¤¹à¥à¤¨ वा अपराहà¥à¤¨ चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ %1$s घणà¥à¤Ÿà¤¾
+ घनà¥à¤Ÿà¤¾ चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ %1$s बजे
+ मिनेट चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ %1$s मिनेट
+ AM
+ समय इनपà¥à¤Ÿ गरà¥à¤¨ घडी मोडमा सà¥à¤µà¤¿à¤š गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¥¤
+ घनà¥à¤Ÿà¤¾:
+ मिनेट
+ अपराहà¥à¤¨
+ समय चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ समय इनपà¥à¤Ÿ गरà¥à¤¨ पाठइनपà¥à¤Ÿ मोडमा सà¥à¤µà¤¿à¤š गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¥¤
+ नयाठसूचना
+ %1$s हटाउनà¥à¤¹à¥‹à¤¸à¥
+ %1$d à¤à¤¨à¥à¤¦à¤¾ बढी नयाठसूचनाहरू
+ अरà¥à¤•ो महिनामा सारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ अघिलà¥à¤²à¥‹ महिनामा सारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ सà¥à¤°à¥ हà¥à¤¨à¥‡ मितिको चयन: %1$s – अनà¥à¤¤à¥à¤¯ हà¥à¤¨à¥‡ मितिको चयन: %2$s
+ हालको चयन: %1$s
+ कà¥à¤¨à¥ˆ पनि होइन
+ रदà¥à¤¦ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ ठिक छ
+ %1$s
+ मिति चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ चयन गरिà¤à¤•ो मिति
+ दिनहरूको सà¥à¤¤à¤®à¥à¤: %1$s
+ समापन हà¥à¤¨à¥‡ मिति: %1$s
+ अमानà¥à¤¯ ढाà¤à¤šà¤¾à¥¤
+ उदाहरण: %1$s
+ %1$s पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ अमानà¥à¤¯ दायरा।
+ चालॠवरà¥à¤· %1$d मा जानà¥à¤¹à¥‹à¤¸à¥
+ वरà¥à¤· %1$d मा जानà¥à¤¹à¥‹à¤¸à¥
+ दायराà¤à¤¨à¥à¤¦à¤¾ बाहिर छ: %1$s
+ सà¥à¤°à¥ हà¥à¤¨à¥‡ मिति – %1$s
+ %1$s – अनà¥à¤¤à¥à¤¯ हà¥à¤¨à¥‡ मिति
+ %1$s – %2$s
+ दायरा चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ सà¥à¤°à¥ हà¥à¤¨à¥‡ मिति – अनà¥à¤¤à¥à¤¯ हà¥à¤¨à¥‡ मिति
+ सà¥à¤°à¤•à¥à¤·à¤¿à¤¤ गरà¥à¤¨à¥
+ पà¥à¤°à¤¾à¤°à¤®à¥à¤ हà¥à¤¨à¥‡ मिति: %1$s
+ मिति
+ अनà¥à¤¤à¥à¤¯ हà¥à¤¨à¥‡ मिति
+ सà¥à¤°à¥ हà¥à¤¨à¥‡ मिति
+ d
+ मिनेट
+ y
+ आज %1$s
+ Calendar को इनपà¥à¤Ÿ मोडमा बदलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ पातà¥à¤°à¥‹à¤•ो à¤à¥à¤¯à¥‚ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ टà¥à¤¯à¤¾à¤ª गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ पाठको इनपà¥à¤Ÿ मोडमा बदलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ वरà¥à¤·à¤•ो à¤à¥à¤¯à¥‚ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ टà¥à¤¯à¤¾à¤ª गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ रदà¥à¤¦ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥
+ ठिक छ
+ "सेट गरिà¤à¤•ो छैन"
+ पासवरà¥à¤¡ देखाउनà¥à¤¹à¥‹à¤¸à¥
+ "\"%1$s\" लाई कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡à¤®à¤¾ पà¥à¤°à¤¤à¤¿à¤²à¤¿à¤ªà¤¿ गरियो।"
+ "खोज"
+ "९९९+"
+ "%1$s, %2$s"
+ "निषà¥à¤•à¥à¤°à¤¿à¤¯ पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥â€Œ"
+ "सकà¥à¤°à¤¿à¤¯"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-night-v8/values-night-v8.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-night-v8/values-night-v8.xml
new file mode 100644
index 00000000..287cad59
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-night-v8/values-night-v8.xml
@@ -0,0 +1,49 @@
+
+
+ false
+ @color/dark_colorPrimary
+ #005005
+ #AEEA00
+ #303030
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-nl/values-nl.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-nl/values-nl.xml
new file mode 100644
index 00000000..0315e598
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-nl/values-nl.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d nieuwe melding
+ - %d nieuwe meldingen
+
+ "Navigeren naar startpositie"
+ "Omhoog navigeren"
+ "Meer opties"
+ "Klaar"
+ "Alles tonen"
+ "Een app selecteren"
+ "UIT"
+ "AAN"
+ "Alt +"
+ "Ctrl +"
+ "Delete"
+ "Enter"
+ "Functie +"
+ "Meta +"
+ "Shift +"
+ "spatie"
+ "Sym +"
+ "Menu +"
+ "Zoeken…"
+ "Zoekopdracht wissen"
+ "Zoekopdracht"
+ "Zoeken"
+ "Zoekopdracht verzenden"
+ "Gesproken zoekopdracht"
+ "Delen met"
+ "Delen met %s"
+ "Samenvouwen"
+ Het blad onderaan samenvouwen
+ Het blad onderaan uitvouwen
+ Half uitvouwen
+ Dubbelgetikt op handgreep voor slepen
+ Handgreep voor slepen
+ "Beantwoorden"
+ "Video"
+ "Weigeren"
+ "Ophangen"
+ "Inkomend gesprek"
+ "Actief gesprek"
+ "Een inkomend gesprek screenen"
+ %1$d van %2$d tekens opgegeven
+ Tekenlimiet heeft %1$d van %2$d overschreden
+ Tekst wissen
+ Aanzetten
+ %1$s werkt niet, tenzij je Google Play-services aanzet.
+ Google Play-services aanzetten
+ Installeren
+ %1$s kan niet worden uitgevoerd zonder Google Play-services, die je nog niet op je apparaat hebt.
+ Google Play-services ophalen
+ Beschikbaarheid van Google Play-services
+ Fout met Google Play-services
+ %1$s ondervindt problemen met Google Play-services. Probeer het opnieuw.
+ %1$s kan niet worden uitgevoerd zonder Google Play-services, die niet worden ondersteund op je apparaat.
+ Updaten
+ %1$s kan niet worden uitgevoerd, tenzij je Google Play-services updatet.
+ Google Play-services updaten
+ %1$s kan niet worden uitgevoerd zonder Google Play-services, die momenteel worden geüpdatet.
+ Er is een nieuwe versie van Google Play-services vereist. De update wordt binnenkort automatisch uitgevoerd.
+ Openen op telefoon
+ Inloggen
+ Inloggen met Google
+ "Kopiëren"
+ "Link naar klembord gekopieerd"
+ Fout
+ "Geavanceerd"
+ Dropdownmenu tonen
+ "Link kopiëren"
+ "Openen in browser"
+ "Link delen"
+ Icoon voor dialoogvenster
+ Tabblad
+ Selecteer a.m. of p.m.
+ %1$s uur
+ Selecteer uur
+ %1$s uur
+ Minuten selecteren
+ %1$s minuten
+ a.m.
+ Schakel naar de klokmodus om de tijd in te voeren.
+ Uur
+ Minuut
+ p.m.
+ Tijd selecteren
+ Schakel naar de tekstinvoermodus om de tijd in te voeren.
+ Nieuwe melding
+ %1$s verwijderen
+ Meer dan %1$d nieuwe meldingen
+ Naar volgende maand gaan
+ Naar vorige maand gaan
+ Startdatumselectie: %1$s – Einddatumselectie: %2$s
+ Huidige selectie: %1$s
+ geen
+ Annuleren
+ OK
+ %1$s
+ Selecteer een datum
+ Geselecteerde datum
+ Kolom met dagen: %1$s
+ Einddatum %1$s
+ Ongeldige indeling.
+ Voorbeeld: %1$s
+ Gebruik: %1$s
+ Ongeldig bereik.
+ Naar het huidige jaar %1$d gaan
+ Naar jaar %1$d navigeren
+ Valt buiten bereik: %1$s
+ Startdatum - %1$s
+ %1$s – einddatum
+ %1$s – %2$s
+ Selecteer een periode
+ Startdatum - einddatum
+ Opslaan
+ Startdatum %1$s
+ Datum
+ Einddatum
+ Startdatum
+ d
+ m
+ j
+ Vandaag %1$s
+ Overschakelen naar agenda-invoermodus
+ Tik om over te schakelen naar de agendaweergave
+ Overschakelen naar tekstinvoermodus
+ Tik om over te schakelen naar de jaarweergave
+ Annuleren
+ OK
+ "Niet ingesteld"
+ Wachtwoord tonen
+ "\'%1$s\' is gekopieerd naar het klembord."
+ "Zoeken"
+ "999+"
+ "%1$s, %2$s"
+ "UIT"
+ "AAN"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-or/values-or.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-or/values-or.xml
new file mode 100644
index 00000000..6227c883
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-or/values-or.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d new notification
+ - %d new notifications
+
+ "ହà‹à¬®à ପà‡à¬œà‌କà ନà‡à¬à¬¿à¬—à‡à¬Ÿà କରନàତà"
+ "ଉପରକà ନà‡à¬à¬¿à¬—à‡à¬Ÿà କରନàତà"
+ "ଅଧିକ ବିକଳàପ"
+ "ହà‹à¬‡à¬—ଲା"
+ "ସବà ଦà‡à¬–ନàତà"
+ "ଗà‹à¬Ÿà¬¿à¬ ଆପà†ବାଛନàତà"
+ "ବନàଦ"
+ "ଚାଲà ଅଛି"
+ "Alt+"
+ "Ctrl+"
+ "ଡିଲିଟà‌ କରନàତà"
+ "à¬à¬£àଟରà"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "ସàପà‡à¬¸àâ€"
+ "Sym+"
+ "ମà‡à¬¨à"
+ "ସରàଚàଚ କରନàତà…"
+ "କàà±à‡à¬°à€ ଖାଲି କରନàତà"
+ "ସରàଚàଚ କàà±à‡à¬°à€"
+ "ସନàଧାନ କରନàତà"
+ "କàà±à‡à¬°à€ ଦାଖଲ କରନàତà"
+ "à¬à¬à¬¸à‌ ସରàଚàଚ"
+ "à¬à¬¹à¬¾à¬™àକ ସହ ସà‡àŸà¬¾à¬°à‌ କରନàତà"
+ "%s ସହ ସà‡àŸà¬¾à¬°à†କରନàତà"
+ "ସଂକàଚିତ କରନàତà"
+ Collapse the bottom sheet
+ Expand the bottom sheet
+ Expand halfway
+ Drag handle double-tapped
+ Drag handle
+ "ଉତàତର ଦିଅନàତà"
+ "à¬à¬¿à¬¡à¬¿à¬“"
+ "ଅଗàରାହààŸ à¬•à¬°"
+ "ସମାପàତ କରନàତà"
+ "ଇନକମିଂ କଲà"
+ "ଚାଲିଥିବା କଲà"
+ "à¬à¬• ଇନକମିଂ କଲକà ସàକàରିନà କରàଛି"
+ %2$d ର %1$d ଅକàଷର ଲà‡à¬–ିଛନàତି
+ %2$d ର %1$d ଅକàଷର ଲà‡à¬–ିଛନàତି
+ Clear text
+ ସକàଷମ କରନàତà
+ ଆପଣ Google Play ସà‡à¬¬à¬¾ ସକàଷମ ନ କରିବା ପରàଯààŸà¬¨àତ %1$s କାମ କରିବ ନାହିà¬à¥¤
+ Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬• ସକàଷମ କରନàତà
+ ଇନàâ€à¬·àଟଲà†କରନàତà
+ %1$s à¬à¬¹à¬¿ Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬• ବିନା à¬šà¬¾à¬²à‡ à¬¨à¬¾à¬¹à¬¿à¬, à¬à¬¬à¬‚ ସà‡à¬—àଡ଼ିକ ଆପଣଙàକ ଡିà¬à¬¾à¬‡à¬¸àâ€Œà¬°à‡ à¬¨à¬¾à¬¹à¬¿à¬à¥¤
+ Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬• ପàରାପàତ କରନàତà
+ Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬•ର ଉପଲବàଧତା
+ Google Play ସà‡à¬¬à¬¾ ସମàପରàକିତ ସମସààŸà¬¾
+ %1$sର Google Play ସà‡à¬¬à¬¾ ସହ à¬à¬• ସମସààŸà¬¾ ରହିଛି। ଦàŸà¬¾à¬•ରି ପàଣି ଚà‡à¬·àଟା କରନàତà।
+ %1$s à¬à¬¹à¬¿ Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬• ବିନା à¬šà¬¾à¬²à‡ à¬¨à¬¾à¬¹à¬¿à¬, à¬à¬¬à¬‚ ସà‡à¬—àଡ଼ିକ ଆପଣଙàକ ଡିà¬à¬¾à¬‡à¬¸àâ€Œà¬°à‡ à¬•à¬¾à¬® à¬•à¬°à‡ à¬¨à¬¾à¬¹à¬¿à¬à¥¤
+ ଅପଡà‡à¬Ÿà†କରନàତà
+ ଆପଣ Google Play ସà‡à¬¬à¬¾ ଅପଡà‡à¬Ÿà‌ ନ କରିବା ପରàଯààŸà¬¨àତ %1$s ଚାଲିବ ନାହିà¬à¥¤
+ Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬• ଅପଡà‡à¬Ÿà କରନàତà
+ Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬• ବିନା %1$s ଚାଲିବ ନାହିà¬, ଯà‡à¬‰à¬à¬—ààœà¬¿à¬• ବରàତàତମାନ ଅପଡà‡à¬Ÿà‌ ହà‡à¬‰à¬›à¬¿à¥¤
+ Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬•ର ନà‚ତନ à¬à¬°àସନà‌ ଆବଶààŸà¬•। à¬à¬¹à¬¾ ନିଜକà କିଛି à¬¸à¬®àŸ à¬®à¬§ààŸà¬°à‡ ଅପଡà‡à¬Ÿà‌ କରିବ।
+ ଫà‹à¬¨àâ€Œà¬°à‡ à¬–à‹à¬²à¬¨àତà
+ ସାଇନà‌-ଇନà କରନàତà
+ Google ସହ ସାଇନà‌-ଇନà କରନàତà
+ "କପି କରନàତà"
+ "ଲିଙàକକà କàଲିପàâ€â€à¬¬à‹à¬°àà¬¡à¬°à‡ à¬•à¬ªà¬¿ କରାଯାଇଛି"
+ Error
+ "ଅଧିକ ଉନàନତ"
+ Show dropdown menu
+ "ଲିଙàକà କପି କରନàତà"
+ "ବàରାଉଜରàâ€Œà¬°à‡ à¬–à‹à¬²à¬¨àତà"
+ "ଲିଙàକà ସà‡àŸà¬¾à¬°à କରନàତà"
+ Dialog Icon
+ Tab
+ Select AM or PM
+ %1$s hours
+ Select hour
+ %1$s o\'clock
+ ମିନିଟà†ଚàŸà¬¨ କରନàତà
+ %1$s minutes
+ AM
+ à¬¸à¬®àŸ à¬‡à¬¨à¬ªàଟà†ପାଇଠଘଣàଟା ମà‹à¬¡à‌କà ବଦଳାନàତà।
+ Hour
+ Minute
+ PM
+ Select time
+ à¬¸à¬®àŸ à¬‡à¬¨à¬ªàଟà†ପାଇଠଟà‡à¬•àସଟà†ଇନପàଟà‌କà ବଦଳାନàତà।
+ New notification
+ %1$s କାàିଦିଅନàତà
+ More than %1$d new notifications
+ Change to next month
+ Change to previous month
+ Start date selection: %1$s – End date selection: %2$s
+ Current selection: %1$s
+ none
+ Cancel
+ OK
+ %1$s
+ Select Date
+ Selected date
+ Column of days: %1$s
+ End date %1$s
+ Invalid format.
+ Example: %1$s
+ Use: %1$s
+ Invalid range.
+ Navigate to current year %1$d
+ Navigate to year %1$d
+ Out of range: %1$s
+ Start date – %1$s
+ %1$s – End date
+ %1$s – %2$s
+ Select Range
+ Start date – End date
+ Save
+ Start date %1$s
+ Date
+ End date
+ Start date
+ d
+ m
+ y
+ Today %1$s
+ Switch to calendar input mode
+ Tap to switch to Calendar view
+ Switch to text input mode
+ Tap to switch to year view
+ Cancel
+ OK
+ "ସà‡à¬Ÿà ହà‹à¬‡à¬¨à¬¾à¬¹à¬¿à¬"
+ ପାସàâ€à±à¬¾à¬°àଡ ଦà‡à¬–ାନàତà
+ "\"%1$s\" କàଲିପବà‹à¬°àଡକà କପି ହà‹â€à¬‡à¬—ଲା।"
+ "ସନàଧାନ କରନàତà"
+ "999+"
+ "%1$s, %2$s"
+ "ବନàଦ"
+ "ଚାଲà ଅଛି"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pa/values-pa.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pa/values-pa.xml
new file mode 100644
index 00000000..27e926db
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pa/values-pa.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d ਨਵੀਂ ਸੂਚਨਾ
+ - %d ਨਵੀਆਂ ਸੂਚਨਾਵਾਂ
+
+ "ਹੋਮ \'ਤੇ ਜਾਓ"
+ "ਉੱਪਰ ਜਾਓ"
+ "ਹੋਰ ਵਿਕਲਪ"
+ "ਹੋ ਗਿਆ"
+ "ਸਠਦੇਖੋ"
+ "ਇੱਕ à¨à¨ª ਚà©à¨£à©‹"
+ "ਬੰਦ"
+ "ਚਾਲੂ"
+ "Alt+"
+ "Ctrl+"
+ "ਮਿਟਾਓ"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "ਖੋਜ…"
+ "ਪà©à©±à¨›à¨—ਿੱਛ ਕਲੀਅਰ ਕਰੋ"
+ "ਖੋਜ ਪà©à©±à¨›à¨—ਿੱਛ"
+ "ਖੋਜ"
+ "ਪà©à©±à¨›à¨—ਿੱਛ ਸਪà©à¨°à¨¦ ਕਰੋ"
+ "ਅਵਾਜ਼ੀ ਖੋਜ"
+ "ਇਸ ਨਾਲ ਸਾਂà¨à¨¾ ਕਰੋ"
+ "%s ਨਾਲ ਸਾਂà¨à¨¾ ਕਰੋ"
+ "ਸਮੇਟੋ"
+ ਹੇਠਲੀ ਸ਼ੀਟ ਨੂੰ ਸਮੇਟੋ
+ ਹੇਠਲੀ ਸ਼ੀਟ ਦਾ ਵਿਸਤਾਰ ਕਰੋ
+ ਅੱਧ ਤੱਕ ਵਿਸਤਾਰ ਕਰੋ
+ ਘਸੀਟਣ ਵਾਲੇ ਹੈਂਡਲ \'ਤੇ ਡਬਲ-ਟੈਪ ਕੀਤਾ ਗਿਆ
+ ਘਸੀਟਣ ਵਾਲਾ ਹੈਂਡਲ
+ "ਜਵਾਬ ਦਿਓ"
+ "ਵੀਡੀਓ"
+ "ਅਸਵੀਕਾਰ ਕਰੋ"
+ "ਸਮਾਪਤ ਕਰੋ"
+ "ਇਨਕਮਿੰਗ ਕਾਲ"
+ "ਜਾਰੀ ਕਾਲ"
+ "ਇਨਕਮਿੰਗ ਕਾਲ ਦੀ ਸਕà©à¨°à©€à¨¨à¨¿à©°à¨— ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
+ %2$d ਵਿੱਚੋਂ %1$d ਅੱਖਰ-ਚਿੰਨà©à¨¹ ਦਾਖਲ ਕੀਤੇ ਗà¨
+ ਅੱਖਰ-ਚਿੰਨà©à¨¹ ਸੀਮਾ %2$d ਤੋਂ %1$d ਵਧੀ
+ ਲਿਖਤ ਕਲੀਅਰ ਕਰੋ
+ ਚਾਲੂ ਕਰੋ
+ %1$s ਕੰਮ ਨਹੀਂ ਕਰੇਗਾ ਜਦੋਂ ਤੱਕ ਤà©à¨¸à©€à¨‚ Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਚਾਲੂ ਨਹੀਂ ਕਰਦੇ ਹੋ।
+ Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਚਾਲੂ ਕਰੋ
+ ਸਥਾਪਤ ਕਰੋ
+ %1$s Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲੇਗੀ, ਜੋ ਤà©à¨¹à¨¾à¨¡à©‡ ਡੀਵਾਈਸ ਤੋਂ ਗà©à©°à¨® ਹਨ।
+ Google Play ਸੇਵਾਵਾਂ ਪà©à¨°à¨¾à¨ªà¨¤ ਕਰੋ
+ Google Play ਸੇਵਾਵਾਂ ਦੀ ਉਪਲਬਧਤਾ
+ Google Play ਸੇਵਾਵਾਂ ਅਸ਼à©à©±à¨§à©€
+ %1$s ਨੂੰ Google Play ਸੇਵਾਵਾਂ ਨਾਲ ਸਮੱਸਿਆ ਆ ਰਹੀ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਦà©à¨¬à¨¾à¨°à¨¾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।
+ %1$s Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲ ਸਕੇਗੀ, ਜੋ ਤà©à¨¹à¨¾à¨¡à©‡ ਡੀਵਾਈਸ \'ਤੇ ਸਮਰਥਿਤ ਨਹੀਂ ਹਨ।
+ ਅੱਪਡੇਟ ਕਰੋ
+ %1$s ਨਹੀਂ ਚੱਲੇਗਾ ਜਦੋਂ ਤੱਕ ਤà©à¨¸à©€à¨‚ Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਅੱਪਡੇਟ ਨਹੀਂ ਕਰਦੇ ਹੋ।
+ Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਅੱਪਡੇਟ ਕਰੋ
+ %1$s Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲੇਗਾ, ਜੋ ਵਰਤਮਾਨ ਵਿੱਚ ਅੱਪਡੇਟ ਹੋ ਰਹੀਆਂ ਹਨ।
+ Google Play ਸੇਵਾਵਾਂ ਦੇ ਨਵਾਂ ਸੰਸਕਰਨ ਦੀ ਲੋੜ ਹੈ। ਇਹ ਛੇਤੀ ਹੀ ਸਵੈਚਲਿਤ ਤੌਰ \'ਤੇ ਅੱਪਡੇਟ ਕਰੇਗਾ।
+ ਫ਼ੋਨ \'ਤੇ ਖੋਲà©à¨¹à©‹
+ ਸਾਈਨ-ਇਨ ਕਰੋ
+ Google ਨਾਲ ਸਾਈਨ-ਇਨ ਕਰੋ
+ "ਕਾਪੀ ਕਰੋ"
+ "ਲਿੰਕ ਕਲਿੱਪਬੋਰਡ \'ਤੇ ਕਾਪੀ ਹੋ ਗਿਆ"
+ ਗੜਬੜ
+ "ਅਡਵਾਂਸ"
+ ਡà©à¨°à©Œà¨ª-ਡਾਊਨ ਮੀਨੂ ਦਿਖਾਓ
+ "ਲਿੰਕ ਕਾਪੀ ਕਰੋ"
+ "ਬà©à¨°à¨¾à¨Šà¨œà¨¼à¨° ਵਿੱਚ ਖੋਲà©à¨¹à©‹"
+ "ਲਿੰਕ ਸਾਂà¨à¨¾ ਕਰੋ"
+ ਵਿੰਡੋ ਦਾ ਪà©à¨°à¨¤à©€à¨•
+ ਟੈਬ
+ AM ਜਾਂ PM ਚà©à¨£à©‹
+ %1$s ਘੰਟੇ
+ ਸਮਾਂ ਚà©à¨£à©‹
+ %1$s ਵਜੇ
+ ਮਿੰਟ ਚà©à¨£à©‹
+ %1$s ਮਿੰਟ
+ AM
+ ਸਮਾਂ ਇਨਪà©à©±à¨Ÿ ਕਰਨ ਲਈ ਘੜੀ ਮੋਡ \'ਤੇ ਸਵਿੱਚ ਕਰੋ।
+ ਘੰਟਾ
+ ਮਿੰਟ
+ PM
+ ਸਮਾਂ ਚà©à¨£à©‹
+ ਸਮਾਂ ਇਨਪà©à©±à¨Ÿ ਕਰਨ ਲਈ ਲਿਖਤ ਇਨਪà©à©±à¨Ÿ ਮੋਡ \'ਤੇ ਸਵਿੱਚ ਕਰੋ।
+ ਨਵੀਂ ਸੂਚਨਾ
+ %1$s ਹਟਾਓ
+ %1$d ਤੋਂ ਵੱਧ ਨਵੀਆਂ ਸੂਚਨਾਵਾਂ
+ ਅਗਲੇ ਮਹੀਨੇ \'ਤੇ ਜਾਓ
+ ਪਿਛਲੇ ਮਹੀਨੇ \'ਤੇ ਜਾਓ
+ ਸ਼à©à¨°à©‚ਆਤੀ ਤਾਰੀਖ ਦੀ ਚੋਣ: %1$s – ਸਮਾਪਤੀ ਤਾਰੀਖ ਦੀ ਚੋਣ: %2$s
+ ਮੌਜੂਦਾ ਚੋਣ: %1$s
+ ਕੋਈ ਨਹੀਂਂ
+ ਰੱਦ ਕਰੋ
+ ਠੀਕ ਹੈ
+ %1$s
+ ਤਾਰੀਖ ਚà©à¨£à©‹
+ ਚà©à¨£à©€ ਗਈ ਤਾਰੀਖ
+ ਦਿਨਾਂ ਦਾ ਕਾਲਮ: %1$s
+ ਸਮਾਪਤੀ ਤਾਰੀਖ %1$s
+ ਅਵੈਧ ਫਾਰਮੈਟ।
+ ਉਦਾਹਰਨ: %1$s
+ ਵਰਤੋ: %1$s
+ ਅਵੈਧ ਰੇਂਜ।
+ ਮੌਜੂਦਾ ਸਾਲ \'ਤੇ ਜਾਓ %1$d
+ ਸਾਲ %1$d \'ਤੇ ਨੈਵੀਗੇਟ ਕਰੋ
+ ਰੇਂਜ ਤੋਂ ਬਾਹਰ: %1$s
+ ਸ਼à©à©à¨°à©‚ਆਤੀ ਤਾਰੀਖ – %1$s
+ %1$s – ਸਮਾਪਤੀ ਤਾਰੀਖ
+ %1$s – %2$s
+ ਰੇਂਜ ਚà©à¨£à©‹
+ ਸ਼à©à¨°à©‚ਆਤੀ ਤਾਰੀਖ – ਸਮਾਪਤੀ ਤਾਰੀਖ
+ ਰੱਖਿਅਤ ਕਰੋ
+ ਸ਼à©à¨°à©‚ਆਤੀ ਤਾਰੀਖ %1$s
+ ਤਾਰੀਖ
+ ਸਮਾਪਤੀ ਤਾਰੀਖ
+ ਸ਼à©à¨°à©‚ਆਤੀ ਤਾਰੀਖ
+ d
+ m
+ y
+ ਅੱਜ %1$s
+ ਕੈਲੰਡਰ ਇਨਪà©à©±à¨Ÿ ਮੋਡ \'ਤੇ ਜਾਓ
+ Calendar ਦà©à¨°à¨¿à¨¸à¨¼ \'ਤੇ ਸਵਿੱਚ ਕਰਨ ਲਈ ਟੈਪ ਕਰੋ
+ ਲਿਖਤ ਇਨਪà©à©±à¨Ÿ ਮੋਡ \'ਤੇ ਜਾਓ
+ ਸਾਲ ਦà©à¨°à¨¿à¨¸à¨¼ \'ਤੇ ਸਵਿੱਚ ਕਰਨ ਲਈ ਟੈਪ ਕਰੋ
+ ਰੱਦ ਕਰੋ
+ ਠੀਕ ਹੈ
+ "ਸੈੱਟ ਨਹੀਂ ਹੈ"
+ ਪਾਸਵਰਡ ਦਿਖਾਓ
+ "\"%1$s\" ਨੂੰ ਕਲਿੱਪਬੋਰਡ \'ਤੇ ਕਾਪੀ ਕੀਤਾ ਗਿਆ।"
+ "ਖੋਜ"
+ "999+"
+ "%1$s, %2$s"
+ "ਬੰਦ"
+ "ਚਾਲੂ"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pl/values-pl.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pl/values-pl.xml
new file mode 100644
index 00000000..39e8196f
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pl/values-pl.xml
@@ -0,0 +1,142 @@
+
+
+
+ - %d nowe powiadomienie
+ - %d nowe powiadomienia
+ - %d nowych powiadomień
+ - %d nowego powiadomienia
+
+ "Przejdź na stronę główną"
+ "Przejdź wyżej"
+ "Więcej opcji"
+ "Gotowe"
+ "Pokaż wszystko"
+ "Wybierz aplikacjÄ™"
+ "WYÅ."
+ "WÅ."
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Funkcyjny+"
+ "Meta+"
+ "Shift+"
+ "spacja"
+ "Sym+"
+ "Menu+"
+ "Szukaj…"
+ "Wyczyść zapytanie"
+ "Zapytanie"
+ "Szukaj"
+ "Wyślij zapytanie"
+ "Wyszukiwanie głosowe"
+ "Udostępnij przez:"
+ "Udostępnij przez: %s"
+ "Zwiń"
+ Zwiń planszę dolną
+ Rozwiń planszę dolną
+ Rozwiń do połowy
+ Dwukrotnie kliknięto uchwyt do przeciągania
+ Uchwyt do przeciÄ…gania
+ "Odbierz"
+ "Wideo"
+ "Odrzuć"
+ "Rozłącz"
+ "Połączenie przychodzące"
+ "Trwa połączenie"
+ "Filtruję połączenie przychodzące"
+ %1$d z %2$d znaków
+ Przekroczono limit znaków (%1$d z %2$d)
+ Wyczyść tekst
+ Włącz
+ Aplikacja %1$s nie będzie działać, jeśli nie włączysz Usług Google Play.
+ Włącz Usługi Google Play
+ Zainstaluj
+ %1$s nie będzie działać, jeśli nie zainstalujesz na urządzeniu Usług Google Play.
+ Pobierz Usługi Google Play
+ Dostępność Usług Google Play
+ Błąd Usług Google Play
+ %1$s ma problem z dostępem do Usług Google Play. Spróbuj jeszcze raz.
+ %1$s nie będzie działać bez Usług Google Play, które nie są obecnie obsługiwane przez urządzenie.
+ Aktualizuj
+ Aplikacja %1$s nie będzie działać, jeśli nie zaktualizujesz Usług Google Play.
+ Zaktualizuj Usługi Google Play
+ Aplikacja %1$s nie będzie działać bez Usług Google Play, które są obecnie aktualizowane.
+ Wymagana jest nowa wersja Usług Google Play. Wkrótce nastąpi automatyczna aktualizacja.
+ Otwórz na telefonie
+ Zaloguj siÄ™
+ Zaloguj siÄ™ przez Google
+ "Kopiuj"
+ "Link skopiowany do schowka"
+ Błąd
+ "Zaawansowane"
+ Pokaż menu
+ "Kopiuj link"
+ "Otwórz w przeglądarce"
+ "Udostępnij link"
+ Ikona okna
+ Karta
+ Wybierz: przed południem czy po południu
+ %1$s godz.
+ Wybierz godzinÄ™
+ %1$s
+ Wybierz minuty
+ %1$s minut
+ AM
+ Aby wprowadzić czas, włącz tryb zegara.
+ Godzina
+ Minuta
+ PM
+ Określ czas
+ Aby wprowadzić czas, włącz tryb wprowadzania tekstu.
+ Nowe powiadomienie
+ Usuń: (%1$s)
+ Liczba nowych powiadomień przekracza %1$d
+ Zmień na następny miesiąc
+ Zmień na poprzedni miesiąc
+ Wybrana data rozpoczęcia: %1$s – wybrana data zakończenia: %2$s
+ Bieżący wybór: %1$s
+ brak
+ Anuluj
+ OK
+ %1$s
+ Wybierz datÄ™
+ Wybrana data
+ Kolumna z dniami: %1$s
+ Data zakończenia %1$s
+ Nieprawidłowy format.
+ Przykład: %1$s
+ Użyj formatu: %1$s
+ Nieprawidłowy zakres.
+ Przejdź do bieżącego roku %1$d
+ Przejdź do roku %1$d
+ Poza zakresem: %1$s
+ Data rozpoczęcia – %1$s
+ %1$s – data zakończenia
+ %1$s–%2$s
+ Wybierz zakres
+ Data rozpoczęcia – data zakończenia
+ Zapisz
+ Data rozpoczęcia %1$s
+ Data
+ Data zakończenia
+ Data rozpoczęcia
+ d
+ m
+ r
+ Dzisiaj %1$s
+ Włącz kalendarzowy tryb wprowadzania
+ Kliknij, aby przełączyć się na widok kalendarza
+ Włącz tekstowy tryb wprowadzania
+ Kliknij, aby przełączyć się na widok roku
+ Anuluj
+ OK
+ "Nie ustawiono"
+ Pokaż hasło
+ "Skopiowano „%1$s†do schowka."
+ "Szukaj"
+ "999+"
+ "%1$s, %2$s"
+ "WYÅ."
+ "WÅ."
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-port/values-port.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-port/values-port.xml
new file mode 100644
index 00000000..7a925dc7
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-port/values-port.xml
@@ -0,0 +1,4 @@
+
+
+ false
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml
new file mode 100644
index 00000000..bc1118ce
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml
@@ -0,0 +1,343 @@
+
+
+
+ - Conectado 1 vez desde %2$s
+ - Conectado %1$s vezes desde %2$s
+
+
+ - Enviado 1 pacote, %2$s
+ - Enviados %1$s pacotes, %2$s
+
+
+ - Recebido 1 pacote, %2$s
+ - Recebidos %1$s pacotes, %2$s
+
+
+ - %d nova notificação
+ - %d novas notificações
+
+
+ - %d dispotivivo conectado ao %s
+ - %d dispositivos conectados ao %s
+
+
+ - %d interface
+ - %d interfaces
+
+
+ - %d dispositivo
+ - %d dispositivos
+
+
+ - %1$s/%2$d cliente conectado\nFunções suportadas: %3$s
+ - %1$s/%2$d clientes conectados\nFunções suportadas: %3$s
+
+
+ - %d cliente conectado
+ - %1d clientes conectados
+
+ "Navegar para a página inicial"
+ "Navegar para cima"
+ "Mais opções"
+ "ConcluÃdo"
+ "Ver tudo"
+ "Selecionar um app"
+ "DESATIVADO"
+ "ATIVADO"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "espaço"
+ "Sym+"
+ "Menu+"
+ "Pesquisar…"
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ VPN Hotspot
+ Fechar a página inferior
+ Abrir a página inferior
+ Expandir até a metade
+ Alça de arrastar tocada duas vezes
+ Alça de arrastar
+ "Atender"
+ "VÃdeo"
+ "Recusar"
+ "Desligar"
+ "Chamada recebida"
+ "Chamada em andamento"
+ "Filtrando uma ligação recebida"
+ Caracteres inseridos: %1$d de %2$d
+ Limite de %2$d caracteres excedido em %1$d
+ Limpar texto
+ O servidor retornou um erro para %1$s: %2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ Fornecedor
+ Apelido para %s
+ Bloquear
+ Ative o serviço para esta interface para bloquear o cliente.
+ Apelido…
+ Status…
+ Desbloquear
+ Status para %s
+ Ativar
+ %1$s só funciona com o Google Play Services ativado.
+ Ativar o Google Play Services
+ Instalar
+ O app %1$s não funciona sem o Google Play Services, o qual não está instalado no seu dispositivo.
+ Instalar o Google Play Services
+ Disponibilidade do Google Play Services
+ Erro do Google Play Services
+ O app %1$s está com problemas com o Google Play Services. Tente novamente.
+ O app %1$s não funciona sem o Google Play Services, o qual não é compatÃvel com seu dispositivo.
+ Atualizar
+ %1$s só funciona com uma versão atualizada do Google Play Services.
+ Atualizar o Google Play Services
+ %1$s não funciona sem o Google Play Services, o qual está sendo atualizado no momento.
+ É necessária uma nova versão do Google Play Services. Ele será atualizado em breve.
+ Abrir no smartphone
+ Fazer login
+ Fazer login com o Google
+ O sistema Android recusa essa configuração. (olhe o logcat)
+ Compartilhar via Código QR
+ Configuração Wi\u2011Fi
+ " (perdido)"
+ " (conectando)"
+ " (alcançável)"
+ "Copiar"
+ "Link copiado para a área de transferência"
+ Fechar
+ Você acha esse aplicativo útil?\nDê um apoio para o desenvolvedor, envie um mimo!
+ Google Play Store
+ O Google cobra uma taxa de 30%
+ Doe!
+ Acho que algo está errado com os pagamentos pelo aplicativo. Certifique-se que sua Google Play Store está instalada corretamente.
+ Quanto?
+ Obrigado mesmo por doar!\nEu lhe agradeço muito!
+ Erro
+ Fatal: Interface de downstream não encontrada
+ "Avançado"
+ Mostrar menu suspenso
+ desconhecido #%d
+ "Copiar link"
+ "Abrir no navegador"
+ "Compartilhar link"
+ Ãcone de caixa de diálogo
+ Guia
+ Selecionar AM ou PM
+ %1$s horas
+ Selecionar horário
+ %1$s em ponto
+ Selecione os minutos
+ %1$s minutos
+ AM
+ Alterne para o modo de relógio para informar o horário.
+ Hora
+ Minuto
+ PM
+ Selecionar horário
+ Alterne para o modo de entrada de texto para informar o horário.
+ Nova notificação
+ Remover %1$s
+ Mais de %1$d novas notificações
+ Alterar para o próximo mês
+ Alterar para o mês anterior
+ Seleção da data de inÃcio: %1$s. Seleção da data de término: %2$s
+ Seleção atual: %1$s
+ nenhuma
+ Cancelar
+ OK
+ %1$s
+ Selecionar data
+ Data selecionada
+ Coluna de dias: %1$s
+ Data de término: %1$s
+ Formato inválido.
+ Exemplo: %1$s
+ Usar %1$s
+ Intervalo inválido.
+ Ir para o ano atual %1$d
+ Ir para o ano %1$d
+ Fora do intervalo: %1$s
+ Data de inÃcio – %1$s
+ %1$s – Data de término
+ %1$s – %2$s
+ Selecionar intervalo
+ Data de inÃcio – Data de término
+ Salvar
+ Data de inÃcio: %1$s
+ Data
+ Data de término
+ Data de inÃcio
+ d
+ m
+ a
+ Hoje %1$s
+ Alternar para o modo de entrada da agenda
+ Toque para mudar para a visualização de agenda
+ Alternar para o modo de entrada de texto
+ Toque para mudar para a visualização \"Ano\"
+ Cancelar
+ OK
+ Algo se saiu errado. Por favor, verifique o log de depuração
+ "Não definido"
+ Monitorar interfaces inativas
+ Serviço de Tethering de VPN
+ Inativo: %s
+ VPN tethering
+ Exibir senha
+ Permissão faltando.
+ "\"%1$s\" copiado para a área de transferência."
+ Repetidor (%1$d MHz, channel %2$d)
+ Falha ao remover grupo P2P redundante (motivo: %s)
+ Não foi encontrada uma configuração válida. Por favor, inicie o repetidor primeiro.
+ Falha ao criar grupo P2P (motivo: %s)
+ Serviço indisponÃvel. Tente novamente mais tarde
+ erro interno
+ Nenhuma solicitação de serviço adicionada
+ Wi\u2011Fi direct não suportado
+ Operação não suportada
+ Por restrições de sistema, desativar a localização pode deixar o repetidor ineficiente e aumentar o consumo de bateria
+ Configurar
+ O repetidor necessita de permissões para acessar esta localização
+ Wi\u2011Fi direct não disponÃvel, por favor, ative o Wi\u2011Fi
+ Ativar
+ Falha ao remover grupo P2P (motivo: %s)
+ Falha ao remover antigo grupo P2P (motivo: %s)
+ Falha ao definir canal operacional (motivo: %s)
+ Falha ao definir elementos do fornecedor (motivo: %s)
+ WPS (inseguro)
+ Push Button
+ Insira um PIN
+ Ocorreu um erro ao acionar o WPS (motivo: %s)
+ PIN registrado.
+ Por favor, use o botão WPS dentro de 2 minutos para conectar seu dispositivo.
+ "Pesquisar"
+ Downstream
+ Sair
+ Ajuda
+ Diversos
+ Doe
+ GitHub sponsors, PayPal, e mais…
+ Eu amo dinheiro!
+ Exportar configurações de depuração
+ Muito útil… Uau
+ Página do GitHub do projeto
+ Leia o manual, marque com estrela, envie problemas e contribua (Tipo o Konny :D)
+ Reinicie o aplicativo para aplicar essa função.
+ Auto inicialização de serviços
+ Restaurar serviços que estavam em execução antes do aplicativo / dispositivo reiniciar ou atualizar
+ Limpar/re-aplicar regras de roteamento
+ Atualize as configurações alteradas para os serviços ativos atualmente. Isso pode corrigir condições raras.
+ Ativar DHCP workaround
+ Use isso se o cliente não consegue obter endereço IP.
+ Desative Tethering IPv6
+ Ativar esta opção evitará vazamentos de VPN via IPv6.
+ Modo de monitoramento de rede
+ Monitor netlink
+ Monitor netlink com root
+ Poll
+ Poll com root
+ Modo de máscara de IP
+ Serviço Android Netd
+ Nenhum
+ Simples
+ Modo de repetidor seguro
+ Não faz alterações no seu sistema mas pode causar mal funcionamento com nomes de rede curtos.
+ Nomes curtos de rede podem exigir o desligamento do modo seguro.
+ Interface de upstream de rede
+ Detectar automaticamente VPN de sistema
+ Upstreams atuais
+ %1$s; fallback: %2$s
+ Deixe o Wi\u2011Fi ativo
+ Ativo
+ Modo de alta performance
+ Desativar o modo de economia de energia
+ Modo de baixa latência
+ Padrão do sistema
+ Aceleração de Tethering do hardware
+ Atalho para a opção de desenvolvedor
+ Upstream
+ Interface upstream de fallback
+ Detectar automaticamente a rede padrão do sistema
+ "999+"
+ "%1$s, %2$s"
+ Essa função precisa que sua localização esteja ativada para funcionar.
+ Gerenciar tethering do sistema…
+ Tethering Bluetooth
+ Tethering Ethernet
+ Tethering USB (NCM)
+ Por favor, desative a Aceleração de hardware de tethering nas configurações de desenvolvedor caso o VPN Hotspot não funcionar corretamente.
+ Tethering USB
+ Ponto de acesso Wi\u2011Fi
+ Bloqueado %1$s: %2$s
+ Copiar MAC
+ \nCódigo do paÃs do Driver: %s
+ MAC AP aleatório
+ Simultaneidade de AP em ponte
+ STA + AP simultâneos
+ STA + Bridged AP simultâneos
+ %1$d MHz, canal %2$d, largura %3$s
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, largura %2$d,
+ largura %3$s, tempo ocioso desabilitado
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, canal %2$d,
+ largura %3$s, tempo ocioso em %6$s
+ Nenhum
+ \nCanais suportados: %s
+ Monitor…
+ %s (monitorado)
+ Hotspot Wi\u2011Fi temporário
+ Houve uma falha ao iniciar o hotspot (motivo: %s)
+ erro genérico
+ modo incompatÃvel
+ sem canal
+ tethering não permitido
+ Clientes
+ Repetidor
+ Configurações
+ Tethering
+ Atualização
+ "DESATIVADO"
+ "ATIVADO"
+ Endereço MAC aleatório persistente
+ Endereço MAC
+ Lista de clientes permitidos
+ %s GHz
+ Desativado
+ Lista de clientes bloqueados
+ Habilite o desligamento oportunista de uma instância no AP em ponte
+ Controle de qual cliente pode usar o hotspot
+ Rede oculta
+ Controle de acesso
+ Canais permitidos 2.4 GHz ACS
+ Canais permitidos 5 GHz ACS
+ Canais permitidos 6 GHz ACS
+ Opções de AP avançadas
+ Banda do AP
+ Desative o roteamento se não houver nenhum dispositivo conectado
+ Maximum channel bandwidth
+ Tempo inativo
+ Tempo limite inativo para uma instância em ponte
+ Tempo inativo padrão: %dms
+ Ative Wi\u2011Fi 6
+ Ative Wi\u2011Fi 7
+ Usar um MAC aleatório
+ Não persistente
+ Nenhum
+ Persistente
+ Número máximo de clientes
+ Senha
+ Salvar
+ Segurança
+ Nome da rede
+ Configuração fornecida pelo usuário
+ Elementos do fornecedor
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 00000000..7ec0f5cd
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d nova notificação
+ - %d novas notificações
+
+ "Navegar para casa"
+ "Navegar para cima"
+ "Mais opções"
+ "ConcluÃdo"
+ "Ver tudo"
+ "Escolher uma app"
+ "DESATIVADO"
+ "ATIVADO"
+ "Alt +"
+ "Ctrl +"
+ "eliminar"
+ "enter"
+ "Função +"
+ "Meta +"
+ "Shift +"
+ "espaço"
+ "Sym +"
+ "Menu +"
+ "Pesquisar…"
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Partilhar com"
+ "Partilhar com a app %s"
+ "Reduzir"
+ Reduza a secção inferior
+ Expanda a secção inferior
+ Expandir até metade
+ Dois toques no indicador para arrastar
+ Indicador para arrastar
+ "Atender"
+ "VÃdeo"
+ "Recusar"
+ "Desligar"
+ "Chamada recebida"
+ "Chamada em curso"
+ "A filtrar uma chamada recebida…"
+ Carateres introduzidos: %1$d de %2$d
+ Limite de carateres excedido: %1$d de %2$d
+ Limpar texto
+ Ativar
+ O %1$s não funciona enquanto não ativar os serviços do Google Play.
+ Ativar serviços do Google Play
+ Instalar
+ O %1$s não é executado sem os Serviços do Google Play, os quais estão em falta no seu dispositivo.
+ Obter serviços do Google Play
+ Disponibilidade Serviços do Google Play
+ Erro dos Serviços do Google Play
+ %1$s está a ter problemas com os Serviços do Google Play. Tente novamente.
+ Não é possÃvel executar o %1$s sem os Serviços do Google Play, os quais não são compatÃveis com o seu dispositivo.
+ Atualizar
+ O %1$s não é executado enquanto não atualizar os serviços do Google Play.
+ Atualizar serviços do Google Play
+ O %1$s não é executado sem os serviços do Google Play, os quais estão a ser atualizados.
+ É necessária uma nova versão dos serviços do Google Play. Esta será atualizada automaticamente em breve.
+ Abrir no telemóvel
+ Iniciar sessão
+ Iniciar sessão com o Google
+ "Copiar"
+ "Link copiado para a área de transferência."
+ Erro
+ "Avançadas"
+ Mostrar menu pendente
+ "Copiar link"
+ "Abrir no navegador"
+ "Partilhar link"
+ Ãcone de caixa de diálogo
+ Separador
+ Selecionar AM ou PM
+ %1$s horas
+ Selecionar hora
+ %1$s hora(s)
+ Selecionar minutos
+ %1$s minutos
+ AM
+ Mude para o modo de relógio para a introdução da hora.
+ Hora
+ Minuto
+ PM
+ Selecionar hora
+ Mude para o modo de introdução de texto para a introdução da hora.
+ Nova notificação
+ Remover %1$s
+ Mais de %1$d notificações novas
+ Mudar para o mês seguinte
+ Mudar para o mês anterior
+ Seleção da data de inÃcio: %1$s – Seleção da data de fim: %2$s
+ Seleção atual: %1$s
+ nenhuma
+ Cancelar
+ OK
+ %1$s
+ Selecione a data
+ Data selecionada
+ Coluna de dias: %1$s
+ Data de fim: %1$s
+ Formato inválido.
+ Exemplo: %1$s
+ Utilize: %1$s
+ Intervalo inválido.
+ Navegar para o ano atual %1$d
+ Navegue para o ano %1$d
+ Fora do intervalo: %1$s
+ Data de inÃcio – %1$s
+ %1$s – Data de conclusão
+ %1$s – %2$s
+ Selecione o intervalo
+ Data de inÃcio – Data de conclusão
+ Guardar
+ Data de inÃcio: %1$s
+ Data
+ Data de conclusão
+ Data de inÃcio
+ d
+ m
+ a
+ Hoje %1$s
+ Mudar para o modo de introdução de calendário
+ Toque para mudar para a vista do Calendário
+ Mudar para o modo de introdução de texto
+ Toque para mudar para a vista de ano
+ Cancelar
+ OK
+ "Não definido"
+ Mostrar palavra-passe
+ "\"%1$s\" copiado para a área de transferência."
+ "Pesquisar"
+ "999+"
+ "%1$s, %2$s"
+ "DESATIVADO"
+ "ATIVADO"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pt/values-pt.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pt/values-pt.xml
new file mode 100644
index 00000000..cd698952
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-pt/values-pt.xml
@@ -0,0 +1,50 @@
+
+
+ "Navegar para a página inicial"
+ "Navegar para cima"
+ "Mais opções"
+ "ConcluÃdo"
+ "Ver tudo"
+ "Selecionar um app"
+ "DESATIVADO"
+ "ATIVADO"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "espaço"
+ "Sym+"
+ "Menu+"
+ "Pesquisar…"
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+ "Recolher"
+ "Atender"
+ "VÃdeo"
+ "Recusar"
+ "Desligar"
+ "Chamada recebida"
+ "Chamada em andamento"
+ "Filtrando uma ligação recebida"
+ "Copiar"
+ "Link copiado para a área de transferência"
+ "Avançado"
+ "Copiar link"
+ "Abrir no navegador"
+ "Compartilhar link"
+ "Não definido"
+ "\"%1$s\" copiado para a área de transferência."
+ "Pesquisar"
+ "999+"
+ "%1$s, %2$s"
+ "DESATIVADO"
+ "ATIVADO"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ro/values-ro.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ro/values-ro.xml
new file mode 100644
index 00000000..f7440063
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ro/values-ro.xml
@@ -0,0 +1,141 @@
+
+
+
+ - %d notificare nouă
+ - %d notificări noi
+ - %d de notificări noi
+
+ "Navigați la ecranul de pornire"
+ "Navigați în sus"
+ "Mai multe opțiuni"
+ "Gata"
+ "Afișați tot"
+ "Alegeți o aplicație"
+ "DEZACTIVAT"
+ "ACTIVAT"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Meniu+"
+ "Căutați…"
+ "Ștergeți interogarea"
+ "Termen de căutare"
+ "Căutați"
+ "Trimiteți interogarea"
+ "Căutare vocală"
+ "Trimiteți la"
+ "Trimiteți folosind %s"
+ "Restrângeți"
+ Restrângeți foaia din partea de jos
+ Extindeți foaia din partea de jos
+ Extinde pe ecran complet
+ Ghidaj de tragere atins de două ori
+ Ghidaj de tragere
+ "Răspunde"
+ "Video"
+ "Respinge"
+ "ÃŽnchide"
+ "Apel primit"
+ "Apel în desfășurare"
+ "Se filtrează un apel primit"
+ Caractere introduse: %1$d din %2$d
+ Limita de caractere a depășit %1$d din %2$d
+ Ștergeți textul
+ Activează
+ %1$s nu va funcționa decât dacă activezi serviciile Google Play.
+ Activează serviciile Google Play
+ Instalează
+ %1$s nu va rula fără serviciile Google Play, care lipsesc de pe dispozitivul tău.
+ Descarcă serviciile Google Play
+ Disponibilitatea serviciilor Google Play
+ Eroare a serviciilor Google Play
+ %1$s întâmpină probleme privind serviciile Google Play. Încercați din nou.
+ %1$s nu va rula fără serviciile Google Play, care nu sunt acceptate de dispozitivul tău.
+ Actualizează
+ %1$s nu va rula decât dacă actualizezi serviciile Google Play.
+ Actualizează serviciile Google Play
+ %1$s nu va rula fără serviciile Google Play, care momentan se actualizează.
+ Este necesară o nouă versiune a serviciilor Google Play. Se vor actualiza automat în curând.
+ Deschide pe telefon
+ Conectează-te
+ Conectează-te cu Google
+ "Copiați"
+ "Linkul a fost copiat în clipboard"
+ Eroare
+ "Avansat"
+ Afișați meniul drop-down
+ "Copiază linkul"
+ "Deschide în browser"
+ "Trimite linkul"
+ Pictogramă de dialog
+ Filă
+ Selectați ora
+ %1$s ore
+ Selectați ora
+ Ora %1$s
+ Selectați minutele
+ %1$s minute
+ a.m.
+ Pentru a introduce ora, comutați la modul ceas.
+ Ora
+ Minut
+ p.m.
+ Selectați ora
+ Pentru a introduce ora, comutați la modul de introducere a textului.
+ Notificare nouă
+ Eliminați %1$s
+ Peste %1$d notificări noi
+ Treceți la luna următoare
+ Treceți la luna anterioară
+ Selectarea datei de începere: %1$s – selectarea datei de încheiere: %2$s
+ Selecția actuală: %1$s
+ niciuna
+ Anulați
+ OK
+ %1$s
+ Selectați data
+ Data selectată
+ Coloana cu zile: %1$s
+ Data de încheiere: %1$s
+ Format nevalid.
+ Exemplu: %1$s
+ Folosiți: %1$s
+ Interval nevalid.
+ Navigați la anul actual %1$d
+ Navigați la anul %1$d
+ Fără acoperire: %1$s
+ Data de începere – %1$s
+ %1$s – data de încheiere
+ %1$s – %2$s
+ Selectați intervalul
+ Data de începere – data de încheiere
+ Salvați
+ Data de începere: %1$s
+ Dată
+ Data de încheiere
+ Data de începere
+ z
+ l
+ a
+ Astăzi, la %1$s
+ Comutați la modul introducere în calendar
+ Atingeți pentru a comuta la afișarea Calendar
+ Comutați la modul de introducere a textului
+ Atingeți pentru a comuta la afișarea An
+ Anulați
+ OK
+ "Nesetată"
+ Afișați parola
+ "„%1$s†a fost copiat în clipboard."
+ "Căutați"
+ "999+"
+ "%1$s, %2$s"
+ "DEZACTIVAT"
+ "ACTIVAT"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ru/values-ru.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ru/values-ru.xml
new file mode 100644
index 00000000..56b3a591
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ru/values-ru.xml
@@ -0,0 +1,199 @@
+
+
+
+ - %d новое уведомление
+ - %d новых уведомлениÑ
+ - %d новых уведомлений
+ - %d нового уведомлениÑ
+
+
+ - %d уÑтройÑтво
+ - %d уÑтройÑтва
+ - %d уÑтройÑтв
+ - %d уÑтройÑтва
+
+ "Перейти на главный Ñкран"
+ "Перейти вверх"
+ "Ещё"
+ "Готово"
+ "Показать вÑе"
+ "Выберите приложение"
+ "ВЫКЛ"
+ "ВКЛ"
+ "Alt +"
+ "Ctrl +"
+ "Delete"
+ "Ввод"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "Пробел"
+ "Sym +"
+ "Меню +"
+ "Введите запроÑ"
+ "Удалить запроÑ"
+ "ПоиÑковый запроÑ"
+ "ПоиÑк"
+ "Отправить запроÑ"
+ "ГолоÑовой поиÑк"
+ "ПоделитьÑÑ Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ"
+ "ПоделитьÑÑ Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ %s"
+ "Свернуть"
+ Свернуть нижний Ñкран
+ Развернуть нижний Ñкран
+ Развернуть наполовину
+ Двойное нажатие на маркер перемещениÑ
+ Маркер перемещениÑ
+ "Ответить"
+ "Видео"
+ "Отклонить"
+ "Завершить"
+ "ВходÑщий вызов"
+ "Текущий вызов"
+ "Ð¤Ð¸Ð»ÑŒÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð²Ñ…Ð¾Ð´Ñщего вызова"
+ Введено Ñимволов: %1$d из %2$d
+ Превышено ограничение на количеÑтво Ñимволов (%1$d из %2$d)
+ ОчиÑтить текÑтовое поле
+ Сервер вернул ошибку Ð´Ð»Ñ %1$s: %2$s
+ Ð˜Ð¼Ñ Ð²ÐµÐ½Ð´Ð¾Ñ€Ð°
+ ÐикнÑйм Ð´Ð»Ñ %s
+ Блок
+ Включите Ñлужбу Ð´Ð»Ñ Ñтого интерфейÑа, чтобы заблокировать клиента.
+ ÐикнÑйм…
+ СтатиÑтика…
+ Разблокировать
+ СтатиÑтика Ð´Ð»Ñ %s
+ Включить
+ Ð”Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ \"%1$s\" требуетÑÑ Ð²ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒ ÑервиÑÑ‹ Google Play.
+ Включите ÑервиÑÑ‹ Google Play
+ УÑтановить
+ Ð”Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ \"%1$s\" требуетÑÑ ÑƒÑтановить ÑервиÑÑ‹ Google Play.
+ УÑтановите ÑервиÑÑ‹ Google Play
+ ДоÑтупноÑть ÑервиÑов Google Play
+ Ошибка ÑервиÑов Google Play
+ Приложению \"%1$s\" не удаетÑÑ Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒÑÑ Ðº ÑервиÑам Google Play. Повторите попытку.
+ Ð”Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ñ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸ÐµÐ¼ \"%1$s\" требуютÑÑ ÑервиÑÑ‹ Google Play. Они не поддерживаютÑÑ Ð½Ð° вашем уÑтройÑтве.
+ Обновить
+ Чтобы запуÑтить приложение \"%1$s\", обновите ÑервиÑÑ‹ Google Play.
+ Обновите ÑервиÑÑ‹ Google Play
+ СервиÑÑ‹ Google Play, необходимые Ð´Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ \"%1$s\", в наÑтоÑщий момент обновлÑÑŽÑ‚ÑÑ.
+ ВерÑÐ¸Ñ ÑервиÑов Google Play уÑтарела. Они автоматичеÑки обновÑÑ‚ÑÑ Ð² ближайшее времÑ.
+ Открыть на телефоне
+ Войти
+ Войти через аккаунт Google
+ ÐаÑтройка Wi-Fi ретранÑлÑтора
+ " (потерÑ)"
+ " (подключение)"
+ " (доÑтупный)"
+ "Копировать"
+ "СÑылка Ñкопирована в буфер обмена."
+ Закрыть
+ Считаете Ñто приложение полезным?\nПоддержите его разработку, отправив пожертвование разработчику!
+ Google Play Store
+ Google взимает 30% комиÑÑии Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ пожертвованиÑ!
+ Пожертвовать!
+ ÐŸÐ¾Ð¶ÐµÑ€Ñ‚Ð²Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ‡ÐµÑ€ÐµÐ· приложение не поддерживаютÑÑ. Google Play Store уÑтановлен правильно?
+ Сколько?
+ Благодарю за пожертвование! Я очень Ñто ценю!
+ Ошибка
+ Ошибка: ÐиÑходÑщий Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð½Ðµ найден
+ "Дополнительно"
+ Показать раÑкрывающееÑÑ Ð¼ÐµÐ½ÑŽ
+ ÐеизвеÑтно #%d
+ "Копировать ÑÑылку"
+ "Открыть в браузере"
+ "Отправить ÑÑылку"
+ Значок диалогового окна
+ Вкладка
+ Выберите AM (до полуднÑ) или PM (поÑле полуднÑ)
+ %1$s ч.
+ Выберите чаÑ
+ %1$s ч.
+ Выберите минуты
+ %1$s мин.
+ AM
+ Чтобы ввеÑти времÑ, перейдите в режим чаÑов.
+ ЧаÑ
+ Минуты
+ PM
+ Выбор времени
+ Чтобы ввеÑти времÑ, перейдите в режим ввода текÑта.
+ Ðовое уведомление
+ Удалить \"%1$s\"
+ Ðовых уведомлений больше %1$d
+ Перейти к Ñледующему меÑÑцу
+ Перейти к предыдущему меÑÑцу
+ Ð’Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ð´Ð°Ñ‚Ð° начала: %1$s. Ð’Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ð´Ð°Ñ‚Ð° окончаниÑ: %2$s.
+ Выбранный Ñлемент: %1$s
+ нет
+ Отмена
+ ОК
+ %1$s
+ Выберите дату
+ Ð’Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ð´Ð°Ñ‚Ð°
+ Столбец Ñо днÑми недели: %1$s
+ Дата окончаниÑ: %1$s
+ ÐедейÑтвительный формат.
+ Пример: %1$s
+ ИÑпользуйте: %1$s
+ ÐедопуÑтимый диапазон.
+ Перейти к текущему году: %1$d
+ Перейти к %1$d году
+ Вне диапазона: %1$s
+ Дата начала – %1$s
+ %1$s – дата окончаниÑ
+ %1$s – %2$s
+ Выберите диапазон дат
+ Дата начала – дата окончаниÑ
+ Сохранить
+ Дата начала: %1$s
+ Дата
+ Дата окончаниÑ
+ Дата начала
+ д
+ м
+ г
+ СегоднÑ: %1$s
+ Перейти в режим выбора дней
+ Ðажмите, чтобы перейти к Календарю
+ Перейти в режим ввода текÑта
+ Ðажмите, чтобы выбрать год
+ Отмена
+ ОК
+ Что-то пошло не так, пожалуйÑта, проверьте отладочную информацию.
+ "Ðе указано"
+ VPN Ð¼Ð¾Ð´ÐµÐ¼Ð½Ð°Ñ Ñлужба
+ Ðеактивных: %s
+ VPN-модем активен
+ Показать пароль
+ "ТекÑÑ‚ \"%1$s\" Ñкопирован в буфер обмена"
+ Ðе удалоÑÑŒ удалить избыточную группу P2P (причина: %s)
+ ДейÑтвительный конфиг не найден. ПожалуйÑта, Ñначала запуÑтите ретранÑлÑтор.
+ Ðе удалоÑÑŒ Ñоздать группу P2P (причина: %s)
+ Ð¡ÐµÑ€Ð²Ð¸Ñ Ð½ÐµÐ´Ð¾Ñтупен. Попробуйте позже
+ внутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°
+ запроÑÑ‹ на обÑлуживание не добавлены
+ Wi-Fi напрÑмую не поддерживаетÑÑ
+ Ð½ÐµÐ¿Ð¾Ð´Ð´ÐµÑ€Ð¶Ð¸Ð²Ð°ÐµÐ¼Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ
+ Wi-Fi директ недоÑтупен, пожалуйÑта включите Wi-Fi
+ Ðе удалоÑÑŒ удалить группу P2P (причина: %s)
+ Ðе удалоÑÑŒ удалить Ñтарую группу P2P (причина:%s)
+ "ПоиÑк"
+ ">999"
+ "%1$s, %2$s"
+ "Bluetooth-модем"
+ "Режим Ethernet-модема"
+ "USB-модем"
+ "Точка доÑтупа Wi‑Fi"
+ "ВЫКЛ."
+ "ВКЛ."
+ "MAC-адреÑ"
+ "%s ГГц"
+ "Ð¡ÐºÑ€Ñ‹Ñ‚Ð°Ñ Ñеть"
+ "Диапазон чаÑтот Wi-Fi"
+ "Выключать точку доÑтупа Wi‑Fi автоматичеÑки, еÑли к ней не подключено ни одного уÑтройÑтва"
+ "Пароль"
+ "Сохранить"
+ "Защита"
+ "Ð˜Ð¼Ñ Ñети"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-si/values-si.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-si/values-si.xml
new file mode 100644
index 00000000..5cabf0b3
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-si/values-si.xml
@@ -0,0 +1,140 @@
+
+
+
+ - නව දà·à¶±à·”ම්දීම් %dà¶šà·Š
+ - නව දà·à¶±à·”ම්දීම් %dà¶šà·Š
+
+ "මුල් පිටුවට සංචà·à¶½à¶±à¶º කරන්න"
+ "ඉහළට සංචà·à¶½à¶±à¶º කරන්න"
+ "à¶à·€à¶à·Š විකල්ප"
+ "à¶šà·…à·"
+ "සියල්ල බලන්න"
+ "යෙදුමක් à¶à·à¶»à¶±à·Šà¶±"
+ "à¶šà·Šâ€à¶»à·’යà·à·€à·’රහිà¶à¶ºà·’"
+ "à¶šà·Šâ€à¶»à·’යà·à¶à·Šà¶¸à¶šà¶ºà·’"
+ "Alt+"
+ "Ctrl+"
+ "මකන්න"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "සොයන්න..."
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමග බෙද෠ගන්න"
+ "%s සමඟ බෙද෠ගන්න"
+ "හකුළන්න"
+ පහළම à¶´à¶à·Šâ€à¶»à¶º හකුළන්න
+ පහළම à¶´à¶à·Šâ€à¶»à¶º දිග හරින්න
+ අඩක් දිග හරින්න
+ ඇදීම් à·„à·à¶¬à¶½à¶º දෙවරක් à¶à¶§à·Šà¶§à·” à¶šà¶» ඇà¶
+ à·„à·à¶¬à¶½à¶º අදින්න
+ "à¶´à·’à·…à·’à¶à·”රු දෙ."
+ "වීඩියà·"
+ "à¶´à·Šâ€à¶»à¶à·’à¶šà·Šà·‚à·šà¶´ à¶š"
+ "විසන්ධි කරන්න"
+ "à¶‘à¶± ඇමà¶à·”ම"
+ "කරගෙන යන ඇමà¶à·”ම"
+ "à¶‘à¶± ඇමà¶à·”මක් පරීක්ෂ෠කරන්න"
+ අනුලකුණු %2$dන් %1$dà¶šà·Š ඇà¶à·”à·…à·” කෙරිණි
+ අනුලකුණු සීමà·à·€ %2$dකින් %1$d ඉක්ම විය
+ පෙළ හිස් කරන්න
+ සබල කරන්න
+ ඔබ Google Play සේව෠සබල කරන්නේ නම් මිස %1$s à·€à·à¶© නොකරනු ඇà¶.
+ Google Play සේව෠සබල කරන්න
+ ස්ථà·à¶´à¶±à¶º කරන්න
+ ඔබගේ à¶§à·à¶¶à·Šà¶½à¶§à·Š පරිගණකයේ à¶±à·à¶à·’ Google Play සේව෠නොමà·à¶à·’à·€ %1$s à¶°à·à·€à¶±à¶º නොවනු ඇà¶.
+ Google Play සේව෠ලබ෠ගන්න
+ Google Play සේවà·à·€à¶½ ලබ෠ගචහà·à¶šà·’ à¶¶à·€
+ Google Play සේව෠දà·à·‚ය
+ %1$s à·„à¶§ Google Play සේව෠සමගින් à¶œà·à¶§à¶½à·” ඇà¶. කරුණà·à¶šà¶» à¶±à·à·€à¶ à¶‹à¶à·Šà·ƒà·à·„ කරන්න.
+ ඔබගේ à¶‹à¶´à·à¶‚ගය මගින් සහà·à¶º නොදක්වන, Google Play සේව෠නොමà·à¶à·’à·€ %1$s à¶°à·à·€à¶±à¶º නොවනු ඇà¶.
+ යà·à·€à¶à·Šà¶šà·à¶½à·“à¶± කරන්න
+ Google Play සේව෠යà·à·€à¶à·Šà¶šà·à¶½à·“à¶± කරන්නේ නොමà·à¶à·’à·€ %1$s à¶°à·à·€à¶±à¶º නොවේ.
+ Google Play සේව෠යà·à·€à¶à·Šà¶šà·à¶½à·“à¶± කරන්න
+ දà·à¶±à¶§ යà·à·€à¶à·Šà¶šà·à¶½à·“à¶± කරමින් ඇà¶à·’, Google Play සේව෠නොමà·à¶à·’à·€ %1$s à¶°à·à·€à¶±à¶º නොවනු ඇà¶.
+ Google Play සේවà·à·€à¶½ නව අනුවà·à¶¯à¶ºà¶šà·Š à¶…à·€à·à·Šâ€à¶ºà¶ºà·’. එය මද වේලà·à·€à¶šà·’න් එය විසින්ම යà·à·€à¶à·Šà¶šà·à¶½à·“à¶± වනු ඇà¶.
+ දුරකථනය à¶à·”à·… විවෘචකරන්න
+ පුරන්න
+ Google සමගින් පුරන්න
+ "à¶´à·’à¶§à¶´à¶à·Š කරන්න"
+ "සබà·à¶³à·’ය පසුරු පුවරුවට à¶´à·’à¶§à¶´à¶à·Š කෙරිණි"
+ දà·à·‚ය
+ "උසස්"
+ à¶´à¶à¶± මෙනුව පෙන්වන්න
+ "සබà·à¶³à·’ය à¶´à·’à¶§à¶´à¶à·Š කරන්න"
+ "à¶¶à·Šâ€à¶»à·€à·Šà·ƒà¶»à¶ºà·š විවෘචකරන්න"
+ "සබà·à¶³à·’ය බෙද෠ගන්න"
+ සංවà·à¶¯ නිරූපකය
+ à¶§à·à¶¶à¶º
+ පෙරවරු හ෠පස්වරු à¶à·à¶»à¶±à·Šà¶±
+ à¶´à·à¶º %1$sà¶šà·Š
+ à¶´à·à¶º à¶à·à¶»à¶±à·Šà¶±
+ %1$sයි
+ මිනිà¶à·Šà¶à·” à¶à·à¶»à¶±à·Šà¶±
+ මිනිà¶à·Šà¶à·” %1$sයි
+ පෙව
+ වේල෠ආදà·à¶±à¶º සඳහ෠ඔරලà·à·ƒà·” à¶´à·Šâ€à¶»à¶šà·à¶»à¶º වෙචමà·à¶»à·” වෙන්න.
+ à¶´à·à¶º
+ මිනිà¶à·Šà¶à·”
+ à¶´à·€
+ වේලà·à·€ à¶à·à¶»à¶±à·Šà¶±
+ වේල෠ආදà·à¶±à¶º සඳහ෠ආදà·à¶± à¶´à·Šâ€à¶»à¶šà·à¶»à¶º වෙචමà·à¶»à·” වෙන්න.
+ නව දà·à¶±à·”ම්දීම
+ %1$s ඉවà¶à·Š කරන්න
+ නව දà·à¶±à·”ම්දීම් %1$dà¶šà¶§ වඩà·
+ ලබන මà·à·ƒà¶ºà¶§ වෙනස් කරන්න
+ කලින් මà·à·ƒà¶ºà¶§ වෙනස් කරන්න
+ ආරම්භක දිනය à¶à·šà¶»à·“ම: %1$s – අවසà·à¶± දිනය à¶à·šà¶»à·“ම: %2$s
+ à·€à¶à·Šà¶¸à¶±à·Š à¶à·šà¶»à·“ම: %1$s
+ කිසිවක් à¶±à·à¶
+ අවලංගු කරන්න
+ හරි
+ %1$s
+ දිනය à¶à·à¶»à¶±à·Šà¶±
+ à¶à·šà¶»à·– දිනය
+ දින à¶à·“රුව: %1$s
+ අවසà·à¶± දිනය %1$s
+ අවලංගු ආකෘà¶à·’යකි.
+ උදà·à·„රණය: %1$s
+ à¶·à·à·€à·’à¶à¶º: %1$s
+ අවලංගු à¶´à¶»à·à·ƒà¶ºà¶šà·’.
+ à·€à¶à·Šà¶¸à¶±à·Š වර්ෂය %1$d වෙචසංචà·à¶½à¶±à¶º කරන්න
+ %1$d වසරට සංචà·à¶½à¶±à¶º කරන්න
+ à¶´à¶»à·à·ƒà¶ºà·™à¶±à·Š à¶´à·’à¶§à¶: %1$s
+ ආරම්භක දිනය – %1$s
+ %1$s – නිම෠වන දිනය
+ %1$s – %2$s
+ à¶´à¶»à·à·ƒà¶º à¶à·à¶»à¶±à·Šà¶±
+ ආරම්භක දිනය – නිම෠වන දිනය
+ සුරකින්න
+ ආරම්භක දිනය %1$s
+ දිනය
+ නිම෠වන දිනය
+ ආරම්භක දිනය
+ ද
+ ම
+ à·€
+ අද %1$s
+ දින දර්à·à¶± ආදà·à¶± à¶´à·Šâ€à¶»à¶šà·à¶»à¶ºà¶§ මà·à¶»à·” වන්න
+ දින දර්à·à¶± දසුන වෙචමà·à¶»à·” වීමට à¶à¶§à·Šà¶§à·” කරන්න
+ පෙළ ආදà·à¶± à¶´à·Šâ€à¶»à¶šà·à¶»à¶ºà¶§ මà·à¶»à·” වන්න
+ වසරේ දසුන වෙචමà·à¶»à·” වීමට à¶à¶§à·Šà¶§à·” කරන්න
+ අවලංගු කරන්න
+ හරි
+ "සකස෠නà·à¶"
+ මුරපදය පෙන්වන්න
+ "\"%1$s\" පසුරු පුවරුවට à¶´à·’à¶§à¶´à¶à·Š කරන ලදී."
+ "සෙවීම"
+ "999+"
+ "%1$s, %2$s"
+ "à¶šà·Šâ€à¶»à·’යà·à·€à·’රහිà¶à¶ºà·’"
+ "à¶šà·Šâ€à¶»à·’යà·à¶à·Šà¶¸à¶šà¶ºà·’"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sk/values-sk.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sk/values-sk.xml
new file mode 100644
index 00000000..f44ab689
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sk/values-sk.xml
@@ -0,0 +1,142 @@
+
+
+
+ - %d nové upozornenie
+ - %d nové upozornenia
+ - %d new notifications
+ - %d nových upozornenÃ
+
+ "Prejsť na plochu"
+ "Prejsť nahor"
+ "Ďalšie možnosti"
+ "Hotovo"
+ "Zobraziť všetky"
+ "Vybrať aplikáciu"
+ "VYP."
+ "ZAP."
+ "Alt+"
+ "Ctrl+"
+ "odstrániť"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "medzernÃk"
+ "Sym+"
+ "Menu+"
+ "Vyhľadať…"
+ "Vymazať dopyt"
+ "Vyhľadávacà dopyt"
+ "Hľadať"
+ "Odoslať dopyt"
+ "Hlasové vyhľadávanie"
+ "Zdieľať s"
+ "Zdieľať s aplikáciou %s"
+ "Zbaliť"
+ Zbaliť dolný hárok
+ Rozbaliť dolný hárok
+ Rozbaliť napoly
+ Dvojité klepnutie na presúvadlo
+ Presúvadlo
+ "Prijať"
+ "Video"
+ "Odmietnuť"
+ "Zložiť"
+ "Prichádzajúci hovor"
+ "Prebiehajúci hovor"
+ "Preveruje sa prichádzajúci hovor"
+ Zadané znaky: %1$d z %2$d
+ Bol prekroÄený povolený poÄet znakov (%1$d z %2$d)
+ Vymazať text
+ Povoliť
+ Aplikácia %1$s bude fungovať až po povolenà služieb Google Play.
+ Povoliť služby Google Play
+ Inštalovať
+ Na spustenie aplikácie %1$s sa vyžadujú služby Google Play, ktoré na zariadenà nemáte.
+ Inštalovať služby Google Play
+ Dostupnosť služieb Google Play
+ Chyba služieb Google Play
+ Aplikácia %1$s má problémy so službami Google Play. Skúste to znova.
+ Aplikáciu %1$s nebude možné spustiť bez služieb Google Play, ktoré vaše zariadenie nepodporuje.
+ Aktualizovať
+ Aplikáciu %1$s bude možné spustiť až po aktualizácii služieb Google Play.
+ Aktualizácia služieb Google Play
+ Na spustenie aplikácie %1$s sa vyžadujú služby Google Play, ktoré sa momentálne aktualizujú.
+ Vyžaduje sa nová verzia služieb Google Play. Aktualizujú sa automaticky v najbližšom Äase.
+ Otvoriť v telefóne
+ Prihlásiť sa
+ PrihlásiÅ¥ sa do úÄtu Google
+ "KopÃrovaÅ¥"
+ "Odkaz bol skopÃrovaný do schránky"
+ Chyba
+ "RozÅ¡Ãrené"
+ Zobraziť rozbaľovaciu ponuku
+ "KopÃrovaÅ¥ odkaz"
+ "OtvoriÅ¥ v prehliadaÄi"
+ "Zdieľať odkaz"
+ Ikona dialógového okna
+ Tabulátor
+ Vyberte AM alebo PM
+ %1$s hodÃn
+ Vybrať hodinu
+ %1$s
+ Vyberte minúty
+ %1$s min
+ AM
+ Ak chcete zadaÅ¥ Äas, prepnite na režim hodÃn.
+ Hodina
+ Minúta
+ PM
+ Vyberte Äas
+ Ak chcete zadaÅ¥ Äas, prepnite na textový režim vstupu
+ Nové upozornenie
+ Odstrániť položku %1$s
+ Viac než %1$d nových upozornenÃ
+ Ďalšà mesiac
+ Predchádzajúci mesiac
+ Výber dátumu zaÄatia: %1$s – Výber dátumu ukonÄenia: %2$s
+ Aktuálny výber: %1$s
+ prázdne
+ Zrušiť
+ OK
+ %1$s
+ Vyberte dátum
+ Vybraný dátum
+ Stĺpec dnÃ: %1$s
+ Dátum ukonÄenia %1$s
+ Neplatný formát.
+ PrÃklad: %1$s
+ Použite: %1$s
+ Neplatný rozsah.
+ Prejsť na aktuálny rok %1$d
+ Prejsť na rok %1$d
+ Mimo rozsahu: %1$s
+ Dátum zaÄatia – %1$s
+ %1$s – dátum ukonÄenia
+ %1$s – %2$s
+ Vyberte rozsah
+ Dátum zaÄatia – dátum ukonÄenia
+ Uložiť
+ Dátum zaÄatia %1$s
+ Dátum
+ Dátum ukonÄenia
+ Dátum zaÄatia
+ d
+ m
+ r
+ Dnes %1$s
+ Prepnúť na kalendárový režim vstupu
+ KlepnutÃm prepnete na zobrazenie kalendára
+ Prepnúť na textový režim vstupu
+ KlepnutÃm prepnete na zobrazenie jednotlivých rokov
+ Zrušiť
+ OK
+ "Nenastavené"
+ Zobraziť heslo
+ "Položka %1$s bola skopÃrovaná do schránky."
+ "Hľadať"
+ "999+"
+ "%1$s, %2$s"
+ "Vypnuté"
+ "Zapnuté"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sl/values-sl.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sl/values-sl.xml
new file mode 100644
index 00000000..b1c6f4cc
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sl/values-sl.xml
@@ -0,0 +1,142 @@
+
+
+
+ - %d novo obvestilo
+ - %d novi obvestili
+ - %d nova obvestila
+ - %d novih obvestil
+
+ "Krmarjenje na zaÄetek"
+ "Pomik navzgor"
+ "VeÄ možnosti"
+ "KonÄano"
+ "Pokaži vse"
+ "Izbira aplikacije"
+ "IZKLOP"
+ "VKLOP"
+ "Alt +"
+ "Ctrl +"
+ "delete"
+ "enter"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "preslednica"
+ "Sym +"
+ "Meni +"
+ "Iskanje …"
+ "Izbris poizvedbe"
+ "Iskalna poizvedba"
+ "Iskanje"
+ "Pošiljanje poizvedbe"
+ "Glasovno iskanje"
+ "Deljenje z:"
+ "Deljenje z drugimi prek aplikacije %s"
+ "Strnitev"
+ Strnitev razdelka na dnu zaslona
+ Razširitev razdelka na dnu zaslona
+ Razširjanje na pol višine
+ Dvakrat dotaknjena roÄica za vleÄenje
+ RoÄica za vleÄenje
+ "Sprejmi"
+ "Video"
+ "Zavrni"
+ "Prekini klic"
+ "Dohodni klic"
+ "Aktivni klic"
+ "Preverjanje dohodnega klica"
+ Å tevilo vnesenih znakov je %1$d od %2$d
+ Omejitev števila znakov je presegla %1$d od %2$d
+ Izbris besedila
+ OmogoÄi
+ Aplikacija %1$s ne bo delovala, Äe ne omogoÄite storitev Google Play.
+ OmogoÄanje storitev Google Play
+ Namesti
+ Aplikacija %1$s ne deluje brez storitev Google Play, vendar teh ni v napravi.
+ Namestitev storitev Google Play
+ Dostopnost storitev Google Play
+ Napaka storitev Google Play
+ Aplikacija %1$s ima težave s storitvami Google Play. Poskusite znova.
+ Aplikacija %1$s ne deluje brez storitev Google Play, ki jih vaša naprava ne podpira.
+ Posodobi
+ Aplikacija %1$s ne bo delovala, Äe ne posodobite storitev Google Play.
+ Posodobitev storitev Google Play
+ Aplikacija %1$s ne deluje brez storitev Google Play, ki se trenutno posodabljajo.
+ Potrebujete novo razliÄico storitev Google Play. V kratkem se bodo posodobile.
+ Odpiranje v telefonu
+ Prijava
+ Prijava z raÄunom Google
+ "Kopiraj"
+ "Povezava je kopirana v odložiÅ¡Äe"
+ Napaka
+ "Dodatno"
+ Prikaz spustnega menija
+ "Kopiraj povezavo"
+ "Odpri v brskalniku"
+ "Deli povezavo"
+ Ikona pogovornega okna
+ Zavihek
+ Izberite dopoldanski ali popoldanski Äas.
+ %1$s h
+ Izberite uro
+ %1$s
+ Izberite minute
+ %1$s min
+ dop.
+ Preklopite na naÄin ure, da vnesete Äas.
+ Ura
+ Minuta
+ pop.
+ Izberite uro
+ Preklopite na naÄin za vnaÅ¡anje besedila, da vnesete Äas.
+ Novo obvestilo
+ Odstranite %1$s
+ VeÄ kot toliko novih obvestil: %1$d
+ Spremeni na naslednji mesec
+ Spremeni na prejšnji mesec
+ Izbira zaÄetnega datuma: %1$s – Izbira konÄnega datuma: %2$s
+ Trenutna izbira: %1$s
+ brez
+ PrekliÄi
+ V redu
+ %1$s
+ Izberite datum
+ Izbrani datum
+ Stolpec dni: %1$s
+ KonÄni datum %1$s
+ Neveljavna oblika.
+ Primer: %1$s
+ Uporabite: %1$s
+ Neveljaven razpon.
+ Pomik na trenutno leto %1$d
+ Pomik na leto %1$d
+ Zunaj razpona: %1$s
+ ZaÄetni datum–%1$s
+ %1$s–konÄni datum
+ %1$s–%2$s
+ Izberite obseg
+ ZaÄetni datum–konÄni datum
+ Shrani
+ ZaÄetni datum %1$s
+ Datum
+ KonÄni datum
+ ZaÄetni datum
+ d
+ m
+ l
+ Danes %1$s
+ Preklop na naÄin vnosa v koledar
+ Dotaknite se za preklop na pogled koledarja
+ Preklop na naÄin vnosa besedila
+ Dotaknite se za preklop na pogled leta
+ PrekliÄi
+ V redu
+ "Ni nastavljeno"
+ Prikaz gesla
+ "»%1$s« je bilo kopirano v odložiÅ¡Äe."
+ "Iskanje"
+ "999+"
+ "%1$s, %2$s"
+ "IZKLOPLJENO"
+ "VKLOPLJENO"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-small-v4/values-small-v4.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-small-v4/values-small-v4.xml
new file mode 100644
index 00000000..2c200554
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-small-v4/values-small-v4.xml
@@ -0,0 +1,7 @@
+
+
+ 24dp
+ 24dp
+ 24dp
+ 24dp
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sq/values-sq.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sq/values-sq.xml
new file mode 100644
index 00000000..d551d405
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sq/values-sq.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d njoftim i ri
+ - %d njoftime të reja
+
+ "Orientohu për në shtëpi"
+ "Ngjitu lart"
+ "Opsione të tjera"
+ "U krye"
+ "Shfaq çdo gjë"
+ "Zgjidh një aplikacion"
+ "JOAKTIV"
+ "AKTIV"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Funksioni+"
+ "Meta+"
+ "Shift+"
+ "hapësirë"
+ "Sym+"
+ "Menyja+"
+ "Kërko…"
+ "Pastro pyetjen"
+ "Kërko pyetjen"
+ "Kërko"
+ "Dërgo pyetjen"
+ "Kërkim me zë"
+ "Ndaje me"
+ "Ndaje me %s"
+ "Palos"
+ Palos fletën e poshtme
+ Zgjero fletën e poshtme
+ Zgjeroje deri në gjysmë
+ Te doreza e zvarritjes u trokit dy herë
+ Doreza e zvarritjes
+ "Përgjigju"
+ "Video"
+ "Refuzo"
+ "Mbyll"
+ "Telefonatë hyrëse"
+ "Telefonatë në vazhdim"
+ "Po filtron një telefonatë hyrëse"
+ Karakteret e futura: %1$d nga %2$d
+ Kufiri i karaktereve është kaluar: %1$d nga %2$d
+ Pastro tekstin
+ Aktivizo
+ %1$s nuk do të funksionojë nëse nuk aktivizon shërbimet e \"Luaj me Google\".
+ Aktivizo shërbimet e \"Luaj me Google\"
+ Instalo
+ %1$s nuk do të funksionojë pa shërbimet e Google Play, të cilat mungojnë në pajisjen tënde.
+ Merr shërbimet e \"Luaj me Google\"
+ Disponueshmëria e shërbimeve të Google Play
+ Gabim në shërbimet e \"Luaj me Google\"
+ %1$s ka probleme me shërbimet e Google Play. Provo sërish.
+ %1$s nuk do të funksionojë pa shërbimet e Google Play, të cilat nuk mbështeten nga pajisja jote.
+ Përditëso
+ %1$s nuk do të funksionojë nëse nuk përditëson shërbimet e \"Luaj me Google\".
+ Përditëso shërbimet e \"Luaj me Google\"
+ %1$s nuk do të funksionojë pa shërbimet e Google Play, të cilat po përditësohen aktualisht.
+ Nevojitet një version i ri i shërbimeve të \"Luaj me Google\". Ai do të përditësohet automatikisht së shpejti.
+ Hape në telefon
+ Identifikohu
+ Identifikohu me Google
+ "Kopjo"
+ "Lidhja u kopjua në kujtesën e fragmenteve"
+ Gabim
+ "Të përparuara"
+ Shfaq menynë me lëshim poshtë
+ "Kopjo lidhjen"
+ "Hape në shfletues"
+ "Ndaj lidhjen"
+ Ikona e dialogut
+ Tab
+ Zgjidh paradite ose pasdite
+ %1$s orë
+ Zgjidh orën
+ %1$s fiks
+ Përzgjidh minutat
+ %1$s minuta
+ PD
+ Kalo te modaliteti i orës për hyrjen e kohës.
+ Ora
+ Minuta
+ PD
+ Zgjidh orën
+ Kalo te modaliteti i hyrjes së tekstit për hyrjen e kohës.
+ Njoftim i ri
+ Hiq %1$s
+ Më shumë se %1$d njoftime të reja
+ Ndrysho te muaji i ardhshëm
+ Ndrysho te muaji i kaluar
+ Zgjedhja e datës së fillimit: %1$s - Zgjedhja e datës së përfundimit: %2$s
+ Zgjedhja aktuale: %1$s
+ asnjë
+ Anulo
+ Në rregull
+ %1$s
+ Zgjidh datën
+ Data e zgjedhur
+ Kolona e ditëve: %1$s
+ Data e mbarimit: %1$s
+ Format i pavlefshëm.
+ Shembull: %1$s
+ Përdor: %1$s
+ Gamë e pavlefshme.
+ Navigo te viti aktual %1$d
+ Navigo te viti %1$d
+ Jashtë gamës: %1$s
+ Data e fillimit – %1$s
+ %1$s – data e përfundimit
+ %1$s - %2$s
+ Zgjidh gamën
+ Data e fillimit - data e përfundimit
+ Ruaj
+ Data e fillimit: %1$s
+ Data
+ Data e përfundimit
+ Data e fillimit
+ d
+ m
+ v
+ Sot %1$s
+ Kalo te modaliteti i \"Hyrjes së kalendarit\"
+ Trokit për t\'u kthyer te pamja e \"Kalendarit\"
+ Kalo te modaliteti i \"Hyrjes së tekstit\"
+ Trokit për t\'u kthyer te pamja vjetore
+ Anulo
+ Në rregull
+ "Nuk është caktuar"
+ Shfaq fjalëkalimin
+ "\"%1$s\" u kopjua në kujtesën e fragmenteve"
+ "Kërko"
+ "999+"
+ "%1$s, %2$s"
+ "JOAKTIV"
+ "AKTIV"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sr/values-sr.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sr/values-sr.xml
new file mode 100644
index 00000000..552ca0f1
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sr/values-sr.xml
@@ -0,0 +1,141 @@
+
+
+
+ - %d ново обавештење
+ - %d нова обавештења
+ - %d нових обавештења
+
+ "Идите на почетну"
+ "Идите нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи Ñве"
+ "Изаберите апликацију"
+ "ИСКЉУЧЕÐО"
+ "УКЉУЧЕÐО"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "таÑтер за размак"
+ "Sym+"
+ "Menu+"
+ "Претражите…"
+ "Обришите упит"
+ "Претражите упит"
+ "Претражите"
+ "Пошаљите упит"
+ "ГлаÑовна претрага"
+ "Делите помоћу"
+ "Делите помоћу апликације %s"
+ "Скупи"
+ Скупите доњу табелу
+ Проширите доњу табелу
+ Проширите до пола
+ Идентификатор за превлачење је двапут додирнут
+ Ручица за превлачење
+ "Одговори"
+ "Видео"
+ "Одбиј"
+ "Прекини везу"
+ "Долазни позив"
+ "Позив је у току"
+ "Проверава Ñе долазни позив"
+ Унети знакови: %1$d од %2$d
+ Прекорачено је ограничење броја знакова: %1$d од %2$d
+ Обриши текÑÑ‚
+ Омогући
+ %1$s неће функциониÑати ако не омогућите Google Play уÑлуге.
+ Омогућите Google Play уÑлуге
+ ИнÑталирај
+ %1$s не може да Ñе покрене без Google Play уÑлуга, које ниÑу инÑталиране на уређају.
+ Преузмите Google Play уÑлуге
+ ДоÑтупноÑÑ‚ Google Play уÑлуга
+ Грешка Google Play уÑлуга
+ %1$s има проблема Ñа Google Play уÑлугама. Пробајте поново.
+ %1$s не може да Ñе покрене без Google Play уÑлуга, које уређај не подржава.
+ Ðжурирај
+ %1$s не може да Ñе покрене ако не ажурирате Google Play уÑлуге.
+ Ðжурирајте Google Play уÑлуге
+ %1$s не може да Ñе покрене без Google Play уÑлуга, које Ñе тренутно ажурирају.
+ Потребна је нова верзија Google Play уÑлуга. УÑкоро ће Ñе ажурирати.
+ Отвори на телефону
+ Пријави ме
+ Пријави ме на Google
+ "Копирај"
+ "Линк је копиран у привремену меморију"
+ Грешка
+ "Ðапредно"
+ Прикажи падајући мени
+ "Копирај линк"
+ "Отвори у прегледачу"
+ "Дели линк"
+ Икона дијалога
+ Картица
+ Изаберите пре подне или по подне
+ %1$s Ñ
+ Изаберите Ñат
+ %1$s Ñ
+ Изаберите минуте
+ %1$s мин
+ AM
+ Пређите у режим Ñата ради уноÑа времена.
+ Сат
+ Минут
+ PM
+ Изаберите време
+ Пређите у режим уноÑа текÑта ради уноÑа времена.
+ Ðово обавештење
+ Уклоните %1$s
+ Ðових обавештења: више од %1$d
+ Пређите на Ñледећи меÑец
+ Пређите на претходни меÑец
+ Избор датума почетка: %1$s – Избор датума завршетка: %2$s
+ Ðктуелни избор: %1$s
+ ништа
+ Откажи
+ Потврди
+ %1$s
+ Изаберите датум
+ Изабрани датум
+ Колона Ñа данима: %1$s
+ Датум завршетка %1$s
+ Формат је неважећи.
+ Пример: %1$s
+ КориÑтите: %1$s
+ Ðеважећи период.
+ Идите на актуелну годину %1$d
+ Идите на годину %1$d
+ Изван периода: %1$s
+ Датум почетка – %1$s
+ %1$s – Датум завршетка
+ %1$s–%2$s
+ Изаберите период
+ Датум почетка – Датум завршетка
+ Сачувај
+ Датум почетка %1$s
+ Датум
+ Датум завршетка
+ Датум почетка
+ д
+ м
+ г
+ Ð”Ð°Ð½Ð°Ñ %1$s
+ Пређите на режим уноÑа у Календару
+ Додирните да биÑте прешли на приказ календара
+ Пређите на режим уноÑа текÑта
+ Додирните да биÑте прешли на приказ године
+ Откажи
+ Потврди
+ "Ðије подешено"
+ Прикажи лозинку
+ "Резиме „%1$s“ је копиран у привремену меморију."
+ "Претражите"
+ "999+"
+ "%1$s, %2$s"
+ "ИСКЉУЧЕÐО"
+ "УКЉУЧЕÐО"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sv/values-sv.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sv/values-sv.xml
new file mode 100644
index 00000000..f9be7c4d
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sv/values-sv.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d ny avisering
+ - %d nya aviseringar
+
+ "Navigera hem"
+ "Navigera uppåt"
+ "Fler alternativ"
+ "Klar"
+ "Visa alla"
+ "Välj en app"
+ "AV"
+ "PÃ…"
+ "Alt + "
+ "Ctrl + "
+ "delete"
+ "retur"
+ "Funktion + "
+ "Meta + "
+ "Skift + "
+ "blanksteg"
+ "Symbol + "
+ "Meny + "
+ "Sök …"
+ "Ta bort frågan"
+ "Sökfråga"
+ "Sök"
+ "Skicka fråga"
+ "Röstsökning"
+ "Dela med"
+ "Dela med %s"
+ "Komprimera"
+ Komprimera arket på nedre delen av skärmen
+ Utöka arket på nedre delen av skärmen
+ Utöka till hälften
+ Du tryckte snabbt två gånger på handtaget
+ Handtag
+ "Svara"
+ "Video"
+ "Avvisa"
+ "Lägg på"
+ "Inkommande samtal"
+ "Pågående samtal"
+ "Ett inkommande samtal filtreras"
+ %1$d av %2$d tecken har angetts
+ Teckengränsen har överskridits: %1$d av %2$d
+ Rensa text
+ Aktivera
+ %1$s fungerar inte om du inte aktiverar Google Play-tjänster.
+ Aktivera Google Play-tjänster
+ Installera
+ %1$s kan inte köras utan Google Play-tjänsterna, som saknas på enheten.
+ Hämta Google Play-tjänster
+ Tillgänglighet för Google Plays tjänster
+ Fel på Google Play-tjänster
+ Det har uppstått ett fel mellan %1$s och Google Play-tjänsterna. Försök igen.
+ %1$s fungerar inte utan Google Play-tjänsterna, som inte stöds på enheten.
+ Uppdatera
+ %1$s kan inte köras om du inte uppdaterar Google Play-tjänsterna.
+ Uppdatera Google Play-tjänster
+ %1$s kan inte köras utan Google Play-tjänster, och dessa uppdateras för närvarande.
+ En ny version av Google Play-tjänster krävs. Den uppdateras automatiskt inom kort.
+ Öppna på mobilen
+ Logga in
+ Logga in med Google
+ "Kopiera"
+ "Länk kopierad till Urklipp"
+ Fel
+ "Avancerat"
+ Visa rullgardinsmenyn
+ "Kopiera länk"
+ "Öppna i webbläsaren"
+ "Dela länk"
+ Dialogikon
+ Flik
+ Välj mellan FM och EM
+ %1$s timmar
+ Ange timme
+ Klockan %1$s
+ Välj minuter
+ %1$s minuter
+ FM
+ Byt till klockläget och ange tid.
+ Timme
+ Minut
+ EM
+ Välj tid
+ Byt till textinmatningsläget och ange tid.
+ Ny avisering
+ Ta bort (%1$s)
+ Fler än %1$d nya aviseringar
+ Ändra till nästa månad
+ Ändra till föregående månad
+ Val av startdatum: %1$s – val av slutdatum: %2$s
+ Aktuellt val: %1$s
+ inget
+ Avbryt
+ OK
+ %1$s
+ Välj datum
+ Valt datum
+ Kolumn med dagar: %1$s
+ Slutdatum %1$s
+ Ogiltigt format.
+ Exempel: %1$s
+ Använd %1$s
+ Ogiltigt intervall.
+ Navigera till innevarande år %1$d
+ Navigera till år %1$d
+ Utanför intervallet: %1$s
+ Startdatum–%1$s
+ %1$s–slutdatum
+ %1$s–%2$s
+ Välj intervall
+ Startdatum–slutdatum
+ Spara
+ Startdatum %1$s
+ Datum
+ Slutdatum
+ Startdatum
+ d
+ m
+ å
+ Idag %1$s
+ Byt till kalender som inmatningsläge
+ Tryck för att byta till kalendervy
+ Byt till text som inmatningsläge
+ Tryck för att byta till årsvy
+ Avbryt
+ OK
+ "Inte angett"
+ Visa lösenord
+ "%1$s har kopierats till Urklipp."
+ "Sök"
+ "999+"
+ "%1$s, %2$s"
+ "AV"
+ "PÃ…"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sw/values-sw.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sw/values-sw.xml
new file mode 100644
index 00000000..f3605f9c
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sw/values-sw.xml
@@ -0,0 +1,140 @@
+
+
+
+ - Arifa %d mpya
+ - Arifa %d mpya
+
+ "Nenda mwanzo"
+ "Sogeza juu"
+ "Chaguo zaidi"
+ "Nimemaliza"
+ "Angalia zote"
+ "Chagua programu"
+ "IMEZIMWA"
+ "IMEWASHWA"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Tafuta…"
+ "Futa hoja"
+ "Hoja ya utafutaji"
+ "Tafuta"
+ "Wasilisha hoja"
+ "Kutafuta kwa kutamka"
+ "Shiriki na"
+ "Shiriki ukitumia %s"
+ "Kunja"
+ Kunja safu ya chini
+ Panua safu ya chini
+ Panua nusu
+ Aikoni ya buruta imeguswa mara mbili
+ Aikoni ya buruta
+ "Jibu"
+ "Video"
+ "Kataa"
+ "Kata simu"
+ "Simu uliyopigiwa"
+ "Simu inayoendelea"
+ "Inachuja simu unayopigiwa"
+ Umeweka herufi %1$d kati ya %2$d
+ Umepitisha idadi ya juu ya herufi %1$d kati ya %2$d
+ Futa maandishi
+ Washa
+ %1$s haitafanya kazi isipokuwa uwashe huduma za Google Play.
+ Washa huduma za Google Play
+ Sakinisha
+ %1$s haitafanya kazi bila huduma za Google Play. Huduma hizi hazipatikani kwenye kifaa chako.
+ Pata huduma za Google Play
+ Upatikanaji wa huduma za Google Play
+ Hitilafu kwenye huduma za Google Play
+ %1$s inakumbwa na hitilafu ya huduma za Google Play. Tafadhali jaribu tena.
+ %1$s haitafanya kazi bila huduma za Google Play. Huduma hizi hazitumiki kwenye kifaa chako.
+ Sasisha
+ %1$s haitafanya kazi hadi usasishe huduma za Google Play.
+ Sasisha huduma za Google Play
+ %1$s haitafanya kazi bila huduma za Google Play. Huduma hizi zinasasishwa sasa.
+ Toleo jipya la huduma za Google Play linahitajika. Litajisasisha baada ya muda mfupi.
+ Fungua kwenye simu
+ Ingia katika akaunti
+ Ingia katika akaunti ukitumia Google
+ "Nakili"
+ "Imenakili kiungo kwenye ubao wa kunakili"
+ Hitilafu
+ "Mipangilio ya Kina"
+ Onyesha menyu kunjuzi
+ "Nakili kiungo"
+ "Fungua katika kivinjari"
+ "Shiriki kiungo"
+ Aikoni ya Kidirisha
+ Kichupo
+ Chagua AM au PM
+ Saa %1$s
+ Chagua saa
+ Saa %1$s kamili
+ Chagua dakika
+ Dakika %1$s
+ AM
+ Badilisha umbo liwe la saa ya mishale wakati wa kuweka muda.
+ Saa
+ Dakika
+ PM
+ Chagua wakati
+ Badilisha iwe katika hali ya maandishi wakati wa kuweka muda.
+ Arifa mpya
+ Ondoa %1$s
+ Zaidi ya arifa %1$d mpya
+ Nenda kwenye mwezi unaofuata
+ Rudi kwenye mwezi uliotangulia
+ Uteuzi wa tarehe ya kuanza: %1$s - Uteuzi wa tarehe ya mwisho: %2$s
+ Uteuzi wa sasa: %1$s
+ hakuna
+ Ghairi
+ Sawa
+ %1$s
+ Chagua Tarehe
+ Tarehe uliyochagua
+ Safu wima ya siku: %1$s
+ Tarehe ya kumaliza %1$s
+ Muundo si sahihi
+ Mfano: %1$s
+ Tumia: %1$s
+ Kipindi si sahihi.
+ Sogeza kwenye mwaka huu %1$d
+ Sogeza kwenye mwaka wa %1$d
+ Nje ya kipindi: %1$s
+ Tarehe ya kuanza – %1$s
+ %1$s – Tarehe ya mwisho
+ %1$s – %2$s
+ Chagua Kipindi cha Tarehe
+ Tarehe ya kuanza – Tarehe ya mwisho
+ Hifadhi
+ Tarehe ya kuanza %1$s
+ Tarehe
+ Tarehe ya mwisho
+ Tarehe ya kuanza
+ d
+ m
+ y
+ Leo %1$s
+ Tumia programu ya kuingiza data kwenye kalenda
+ Gusa ili ubadilishe kwenda mwonekano wa Kalenda
+ Tumia programu ya kuingiza data ya maandishi
+ Gusa ili ubadilishe kwenda mwonekano wa mwaka
+ Ghairi
+ Sawa
+ "Haijawekwa"
+ Onyesha nenosiri
+ "\"%1$s\" imenakiliwa kwenye ubao wa kunakili."
+ "Tafuta"
+ "999+"
+ "%1$s, %2$s"
+ "IMEZIMWA"
+ "IMEWASHWA"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sw360dp-v13/values-sw360dp-v13.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sw360dp-v13/values-sw360dp-v13.xml
new file mode 100644
index 00000000..6975009e
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sw360dp-v13/values-sw360dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ true
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
new file mode 100644
index 00000000..6c32416e
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
@@ -0,0 +1,29 @@
+
+
+ 24dp
+ 80dp
+ 64dp
+ 8dp
+ 8dp
+ 580dp
+ 16dp
+ 20dp
+ 320dp
+ 0dp
+ 2dp
+ 24dp
+ 576dp
+ 320dp
+ @dimen/design_snackbar_padding_vertical
+
+ 160dp
+ 64dp
+ 64dp
+ 23dp
+ 1
+ 7
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ta/values-ta.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ta/values-ta.xml
new file mode 100644
index 00000000..2a4a4767
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ta/values-ta.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d பà¯à®¤à®¿à®¯ அறிவிபà¯à®ªà¯
+ - %d பà¯à®¤à®¿à®¯ அறிவிபà¯à®ªà¯à®•ளà¯
+
+ "à®®à¯à®•பà¯à®ªà®¿à®±à¯à®•à¯à®šà¯ செலà¯à®²à¯à®®à¯"
+ "மேலே செலà¯à®²à¯à®®à¯"
+ "மேலà¯à®®à¯ விரà¯à®ªà¯à®ªà®™à¯à®•ளà¯"
+ "à®®à¯à®Ÿà®¿à®¨à¯à®¤à®¤à¯"
+ "அனைதà¯à®¤à¯ˆà®¯à¯à®®à¯ காடà¯à®Ÿà¯"
+ "ஆபà¯à®¸à¯ˆà®¤à¯ தேரà¯à®µà¯à®šà¯†à®¯à¯à®•"
+ "ஆஃபà¯"
+ "ஆனà¯"
+ "Alt மறà¯à®±à¯à®®à¯"
+ "Ctrl மறà¯à®±à¯à®®à¯"
+ "delete"
+ "enter"
+ "Function மறà¯à®±à¯à®®à¯"
+ "Meta மறà¯à®±à¯à®®à¯"
+ "Shift மறà¯à®±à¯à®®à¯"
+ "space"
+ "Sym மறà¯à®±à¯à®®à¯"
+ "Menu மறà¯à®±à¯à®®à¯"
+ "தேடà¯à®•…"
+ "வினவலை அழிகà¯à®•à¯à®®à¯"
+ "தேடல௠வினவலà¯"
+ "தேடà¯à®®à¯"
+ "வினவலைச௠சமரà¯à®ªà¯à®ªà®¿à®•à¯à®•à¯à®®à¯"
+ "கà¯à®°à®²à¯ தேடலà¯"
+ "இதில௠பகிரà¯"
+ "%s மூலம௠பகிரà¯"
+ "சà¯à®°à¯à®•à¯à®•à¯à®®à¯"
+ கீழà¯à®ªà¯à®ªà¯à®±à®šà¯ சீடà¯à®Ÿà¯ˆà®šà¯ சà¯à®°à¯à®•à¯à®•à¯à®®à¯
+ கீழà¯à®ªà¯à®ªà¯à®±à®šà¯ சீடà¯à®Ÿà¯ˆ விரிவாகà¯à®•à¯à®®à¯
+ பாதியளவ௠விரிவாகà¯à®•à¯à®®à¯
+ இழà¯à®ªà¯à®ªà®¤à®±à¯à®•ான ஹேணà¯à®Ÿà®¿à®²à¯ இரà¯à®®à¯à®±à¯ˆ தடà¯à®Ÿà®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯
+ இழà¯à®ªà¯à®ªà®¤à®±à¯à®•ான ஹேணà¯à®Ÿà®¿à®²à¯
+ "பதிலளி"
+ "வீடியோ"
+ "நிராகரி"
+ "தà¯à®£à¯à®Ÿà®¿"
+ "உளà¯à®µà®°à¯à®®à¯ அழைபà¯à®ªà¯"
+ "செயலில௠இரà¯à®•à¯à®•à¯à®®à¯ அழைபà¯à®ªà¯"
+ "உளà¯à®µà®°à¯à®®à¯ அழைபà¯à®ªà¯ˆ மதிபà¯à®ªà®¾à®¯à¯à®µà¯ செயà¯à®•ிறதà¯"
+ %2$d இல௠%1$d எழà¯à®¤à¯à®¤à¯à®•ள௠உளà¯à®³à®¿à®Ÿà®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®©
+ %2$d இல௠%1$d எழà¯à®¤à¯à®¤à¯ வரமà¯à®ªà¯ மீறபà¯à®ªà®Ÿà¯à®Ÿà®¤à¯
+ உரையை அழிகà¯à®•à¯à®®à¯
+ இயகà¯à®•à¯
+ Google Play சேவைகளை இயகà¯à®•ினால௠மடà¯à®Ÿà¯à®®à¯‡, %1$s செயலà¯à®ªà®Ÿà¯à®®à¯.
+ Google Play சேவைகளை இயகà¯à®•வà¯à®®à¯
+ நிறà¯à®µà¯
+ Google Play சேவைகள௠இரà¯à®¨à¯à®¤à®¾à®²à¯ மடà¯à®Ÿà¯à®®à¯‡, %1$s இயஙà¯à®•à¯à®®à¯. அவை உஙà¯à®•ள௠சாதனதà¯à®¤à®¿à®²à¯ இலà¯à®²à¯ˆ.
+ Google Play சேவைகளைப௠பெறவà¯à®®à¯
+ கிடைகà¯à®•à¯à®®à¯ Google Play சேவைகளà¯
+ Google Play சேவைகள௠பிழை
+ Google Play சேவைகளில௠சிகà¯à®•ல௠à®à®±à¯à®ªà®Ÿà¯à®Ÿà®¤à®¾à®²à¯, %1$s ஆபà¯à®¸à¯ˆ அணà¯à®• à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. மீணà¯à®Ÿà¯à®®à¯ à®®à¯à®¯à®²à®µà¯à®®à¯.
+ Google Play சேவைகள௠இரà¯à®¨à¯à®¤à®¾à®²à¯ மடà¯à®Ÿà¯à®®à¯‡ %1$s ஆபà¯à®¸à¯ இயஙà¯à®•à¯à®®à¯. ஆனாலà¯, உஙà¯à®•ள௠சாதனதà¯à®¤à®¿à®²à¯ அவை ஆதரிகà¯à®•பà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ.
+ பà¯à®¤à¯à®ªà¯à®ªà®¿
+ Google Play சேவைகளை இயகà¯à®•ினால௠மடà¯à®Ÿà¯à®®à¯‡, %1$s செயலà¯à®ªà®Ÿà¯à®®à¯.
+ Google Play சேவைகளைப௠பà¯à®¤à¯à®ªà¯à®ªà®¿à®•à¯à®•வà¯à®®à¯
+ தறà¯à®ªà¯‹à®¤à¯ பà¯à®¤à¯à®ªà¯à®ªà®¿à®•à¯à®•பà¯à®ªà®Ÿà¯à®®à¯, Google Play சேவைகள௠இரà¯à®¨à¯à®¤à®¾à®²à¯ மடà¯à®Ÿà¯à®®à¯‡, %1$s செயலà¯à®ªà®Ÿà¯à®®à¯.
+ Google Play சேவைகளின௠பà¯à®¤à®¿à®¯ பதிபà¯à®ªà¯ தேவை. அத௠விரைவில௠தானாகவே பà¯à®¤à¯à®ªà¯à®ªà®¿à®•à¯à®•பà¯à®ªà®Ÿà¯à®®à¯.
+ மொபைலில௠திற
+ உளà¯à®¨à¯à®´à¯ˆà®•
+ Google மூலம௠உளà¯à®¨à¯à®´à¯ˆà®•
+ "நகலெடà¯"
+ "கிளிபà¯-போரà¯à®Ÿà¯à®•à¯à®•௠இணைபà¯à®ªà¯ நகலெடà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà®¤à¯"
+ பிழை
+ "மேமà¯à®ªà®Ÿà¯à®Ÿà®µà¯ˆ"
+ கீழ௠தோனà¯à®±à®²à¯ மெனà¯à®µà¯ˆà®•௠காடà¯à®Ÿà¯à®®à¯ படà¯à®Ÿà®©à¯
+ "இணைபà¯à®ªà¯ˆ நகலெடà¯"
+ "உலாவியில௠திற"
+ "இணைபà¯à®ªà¯ˆà®ªà¯ பகிரà¯"
+ உரையாடல௠à®à®•ானà¯
+ தாவலà¯
+ AM அலà¯à®²à®¤à¯ PMமைத௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• உதவà¯à®®à¯
+ %1$s மணிநேரமà¯
+ மணிநேரதà¯à®¤à¯ˆà®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• உதவà¯à®®à¯
+ %1$s மணி
+ நிமிடதà¯à®¤à¯ˆà®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯
+ %1$s நிமிடஙà¯à®•ளà¯
+ AM
+ நேர உளà¯à®³à¯€à®Ÿà¯à®Ÿà®¿à®±à¯à®•ாக, கடிகாரப௠பயனà¯à®®à¯à®±à¯ˆà®•à¯à®•௠மாறà¯à®±à¯à®®à¯.
+ மணிநேரமà¯
+ நிமிடமà¯
+ PM
+ நேரதà¯à®¤à¯ˆà®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯
+ உரை உளà¯à®³à¯€à®Ÿà¯à®Ÿà®¿à®±à¯à®•ாக, கடிகாரப௠பயனà¯à®®à¯à®±à¯ˆà®•à¯à®•௠மாறà¯à®±à¯à®®à¯.
+ பà¯à®¤à®¿à®¯ அறிவிபà¯à®ªà¯
+ %1$s஠அகறà¯à®±à¯
+ %1$d+ பà¯à®¤à®¿à®¯ அறிவிபà¯à®ªà¯à®•ளà¯
+ அடà¯à®¤à¯à®¤ மாததà¯à®¤à¯ˆà®•௠காடà¯à®Ÿà¯
+ à®®à¯à®¨à¯à®¤à¯ˆà®¯ மாததà¯à®¤à¯ˆà®•௠காடà¯à®Ÿà¯
+ தொடஙà¯à®•à¯à®®à¯ தேதியைத௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®™à¯à®•ளà¯: %1$s – à®®à¯à®Ÿà®¿à®¯à¯à®®à¯ தேதியைத௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®™à¯à®•ளà¯: %2$s
+ தறà¯à®ªà¯‹à®¤à¯ˆà®¯ தேரà¯à®µà¯: %1$s
+ எதà¯à®µà¯à®®à®¿à®²à¯à®²à¯ˆ
+ ரதà¯à®¤à¯à®šà¯†à®¯à¯
+ சரி
+ %1$s
+ தேதியைத௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯
+ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ தேதி
+ நாடà¯à®•ளின௠நெடà¯à®µà®°à®¿à®šà¯ˆ: %1$s
+ à®®à¯à®Ÿà®¿à®¯à¯à®®à¯ தேதி %1$s
+ தவறான வடிவமà¯.
+ உதாரணமà¯: %1$s
+ %1$sà®à®ªà¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®•
+ தவறான வரமà¯à®ªà¯.
+ தறà¯à®ªà¯‹à®¤à¯ˆà®¯ வரà¯à®Ÿà®¤à¯à®¤à®¿à®±à¯à®•௠(%1$d) செலà¯à®²à¯à®®à¯
+ %1$d ஆம௠ஆணà¯à®Ÿà®¿à®±à¯à®•à¯à®šà¯ செலà¯à®²à¯à®®à¯
+ எலà¯à®²à¯ˆà®•à¯à®•௠வெளியே உளà¯à®³à®¤à¯: %1$s
+ தொடகà¯à®•த௠தேதி – %1$s
+ %1$s – à®®à¯à®Ÿà®¿à®µà¯à®¤à¯ தேதி
+ %1$s – %2$s
+ வரமà¯à®ªà¯ˆà®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯
+ தொடகà¯à®•த௠தேதி - à®®à¯à®Ÿà®¿à®µà¯à®¤à¯ தேதி
+ சேமி
+ தொடஙà¯à®•à¯à®®à¯ தேதி %1$s
+ தேதி
+ à®®à¯à®Ÿà®¿à®µà¯à®¤à¯ தேதி
+ தொடகà¯à®•த௠தேதி
+ நா
+ மா
+ ஆ
+ இனà¯à®±à¯ %1$s
+ கேலெணà¯à®Ÿà®°à¯ உளà¯à®³à¯€à®Ÿà¯à®Ÿà¯ à®®à¯à®±à¯ˆà®•à¯à®•௠மாறà¯à®±à¯à®®à¯
+ கேலெணà¯à®Ÿà®°à¯ காடà¯à®šà®¿à®•à¯à®•௠மாற தடà¯à®Ÿà®µà¯à®®à¯
+ உரை உளà¯à®³à¯€à®Ÿà¯à®Ÿà¯ à®®à¯à®±à¯ˆà®•à¯à®•௠மாறà¯à®±à¯à®®à¯
+ ஆணà¯à®Ÿà¯à®•௠காடà¯à®šà®¿à®•à¯à®•௠மாற தடà¯à®Ÿà®µà¯à®®à¯
+ ரதà¯à®¤à¯à®šà¯†à®¯à¯
+ சரி
+ "அமைகà¯à®•பà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ"
+ கடவà¯à®šà¯à®šà¯Šà®²à¯à®²à¯ˆà®•௠காடà¯à®Ÿà¯
+ "\"%1$s\" கிளிபà¯à®ªà¯‹à®°à¯à®Ÿà¯à®•à¯à®•௠நகலெடà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà®¤à¯."
+ "தேடலà¯"
+ "999+"
+ "%1$s, %2$s"
+ "ஆஃபà¯"
+ "ஆனà¯"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-te/values-te.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-te/values-te.xml
new file mode 100644
index 00000000..fe4cacf9
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-te/values-te.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d కొతà±à°¤ నోటిఫికేషనà±
+ - %d కొతà±à°¤ నోటిఫికేషనà±â€Œà°²à±
+
+ "హోమà±â€Œà°•ౠనావిగేటౠచేసà±à°¤à±à°‚ది"
+ "పైకి నావిగేటౠచేసà±à°¤à±à°‚ది"
+ "మరినà±à°¨à°¿ ఆపà±à°·à°¨à±â€Œà°²à±"
+ "పూరà±à°¤à°¯à°¿à°‚ది"
+ "à°…à°¨à±à°¨à±€ చూడండి"
+ "యాపà±â€Œà°¨à± à°Žà°‚à°šà±à°•ోండి"
+ "ఆఫà±"
+ "ఆనà±"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "à°¸à±à°ªà±‡à°¸à±"
+ "Sym+"
+ "Menu+"
+ "సెరà±à°šà± చేయండి…"
+ "à°ªà±à°°à°¶à±à°¨à°¨à± తీసివేసà±à°¤à±à°‚ది"
+ "సెరà±à°šà± à°•à±à°µà±†à°°à±€"
+ "సెరà±à°šà±"
+ "à°ªà±à°°à°¶à±à°¨à°¨à°¿ సమరà±à°ªà°¿à°¸à±à°¤à±à°‚ది"
+ "వాయిసౠసెరà±à°šà±"
+ "వీరితో షేరౠచేసà±à°¤à±à°‚ది"
+ "%sతో షేరౠచేసà±à°¤à±à°‚ది"
+ "à°•à±à°¦à°¿à°¸à±à°¤à±à°‚ది"
+ దిగà±à°µà±à°¨ ఉనà±à°¨ షీటà±â€Œà°¨à± à°•à±à°¦à°¿à°¸à±à°¤à±à°‚ది
+ దిగà±à°µà±à°¨ ఉనà±à°¨ షీటà±â€Œà°¨à± విసà±à°¤à°°à°¿à°¸à±à°¤à±à°‚ది
+ సగానà±à°¨à°¿ విసà±à°¤à°°à°¿à°‚పజేయండి
+ లాగే à°¹à±à°¯à°¾à°‚డిలౠడబà±à°²à±-à°Ÿà±à°¯à°¾à°ªà± చేయబడింది
+ లాగే à°¹à±à°¯à°¾à°‚à°¡à°¿à°²à±
+ "పికపౠచేయండి"
+ "వీడియో కాలà±"
+ "కటౠచేయండి"
+ "à°®à±à°—à°¿à°‚à°šà°‚à°¡à°¿"
+ "ఇనà±â€Œà°•మింగౠకాలà±"
+ "కాలౠకొనసాగà±à°¤à±‹à°‚ది"
+ "ఇనà±â€Œà°•మింగౠకాలà±â€Œà°¨à± à°¸à±à°•à±à°°à±€à°¨à± చేయండి"
+ %2$dలో %1$d à°…à°•à±à°·à°°à°¾à°²à± నమోదౠచేయబడà±à°¡à°¾à°¯à°¿
+ à°…à°•à±à°·à°° పరిధి %2$dలో %1$dనౠఅధిగమించింది
+ రాసినదానà±à°¨à°¿ తీసివేయండి
+ à°ªà±à°°à°¾à°°à°‚à°à°¿à°‚à°šà±
+ మీరౠGoogle Play సేవలనౠపà±à°°à°¾à°°à°‚à°à°¿à°¸à±à°¤à±‡ మినహా %1$s పని చేయదà±.
+ Google Play సేవలనౠపà±à°°à°¾à°°à°‚à°à°¿à°‚à°šà°‚à°¡à°¿
+ ఇనà±â€Œà°¸à±à°Ÿà°¾à°²à± చేయి
+ %1$s Google Play సేవలౠలేకà±à°‚à°¡à°¾ అమలౠకాదà±, à°† సేవలౠమీ పరికరంలో లేవà±.
+ Google Play సేవలనౠపొందండి
+ Google Play సేవల à°²à°à±à°¯à°¤
+ Google Play సేవల à°Žà°°à±à°°à°°à±
+ %1$s Google Play సేవలతో సమసà±à°¯ కలిగి ఉంది. దయచేసి మళà±à°²à±€ à°ªà±à°°à°¯à°¤à±à°¨à°¿à°‚à°šà°‚à°¡à°¿.
+ %1$s Google Play సేవలౠలేకà±à°‚à°¡à°¾ అమలౠకాదà±, à°ˆ సేవలకౠమీ పరికరంలో మదà±à°¦à°¤à± లేదà±.
+ à°…à°ªà±â€Œà°¡à±‡à°Ÿà± చేయి
+ మీరౠGoogle Play సేవలనౠనవీకరిసà±à°¤à±‡ మినహా %1$s అమలౠకాదà±.
+ Google Play సేవలనౠఅపà±â€Œà°¡à±‡à°Ÿà± చేయండి
+ %1$s Google Play సేవలౠలేకà±à°‚à°¡à°¾ అమలౠకాదà±, à°† సేవలౠపà±à°°à°¸à±à°¤à±à°¤à°‚ నవీకరించబడà±à°¤à±à°¨à±à°¨à°¾à°¯à°¿.
+ కొతà±à°¤ Google Play సేవల వెరà±à°·à°¨à± అవసరం. అది కొదà±à°¦à°¿ సేపటà±à°²à±‹ దానంతట అదే à°…à°ªà±â€Œà°¡à±‡à°Ÿà± చేయబడà±à°¤à±à°‚ది.
+ ఫోనà±â€Œà°²à±‹ తెరà±à°µà±
+ సైనౠఇనౠచేయండి
+ Googleతో సైనౠఇనౠచేయండి
+ "కాపీ చేయి"
+ "à°•à±à°²à°¿à°ªà±â€Œà°¬à±‹à°°à±à°¡à±â€Œà°•ౠలింకౠకాపీ చేయబడింది"
+ à°Žà°°à±à°°à°°à±
+ "à°…à°§à±à°¨à°¾à°¤à°¨ సెటà±à°Ÿà°¿à°‚à°—à±â€Œà°²à±"
+ à°¡à±à°°à°¾à°ªà±â€Œà°¡à±Œà°¨à± మెనూనౠచూపà±
+ "లింకà±â€Œà°¨à± కాపీ చేయి"
+ "à°¬à±à°°à±Œà°œà°°à±â€Œà°²à±‹ తెరà±à°µà±"
+ "లింకà±â€Œà°¨à± షేరౠచేయి"
+ డైలాగౠచిహà±à°¨à°‚
+ à°Ÿà±à°¯à°¾à°¬à±
+ AM లేదా PMనౠఎంచà±à°•ోండి
+ %1$s à°—à°‚à°Ÿà°²à±
+ గంటనౠఎంచà±à°•ోండి
+ %1$s à°…à°µà±à°¤à±à°‚ది
+ నిమిషాలనౠఎంచà±à°•ోండి
+ %1$s నిమిషాలà±
+ AM
+ సమయానà±à°¨à°¿ నమోదౠచేయడం కోసం గడియారం మోడà±â€Œà°•ౠమారండి.
+ à°—à°‚à°Ÿ
+ నిమిషం
+ PM
+ సమయానà±à°¨à°¿ à°Žà°‚à°šà±à°•ోండి
+ సమయానà±à°¨à°¿ నమోదౠచేయడం కోసం వచన నమోదౠమోడà±â€Œà°•à°¿ మారండి.
+ కొతà±à°¤ నోటిఫికేషనà±
+ (%1$s)ని తీసివేసà±à°¤à±à°‚ది
+ %1$d కంటే à°Žà°•à±à°•à±à°µ కొతà±à°¤ నోటిఫికేషనà±â€Œà°²à±
+ వచà±à°šà±‡ నెలకౠమారà±à°šà±à°¤à±à°‚ది
+ à°®à±à°¨à±à°ªà°Ÿà°¿ నెలకౠమారà±à°šà±à°¤à±à°‚ది
+ à°ªà±à°°à°¾à°°à°‚ఠతేదీ ఎంపిక: %1$s – à°®à±à°—ింపౠతేదీ ఎంపిక: %2$s
+ à°ªà±à°°à°¸à±à°¤à±à°¤ ఎంపిక: %1$s
+ à°à°¦à±€ వదà±à°¦à±
+ à°°à°¦à±à°¦à± చేయండి
+ సరే
+ %1$s
+ తేదీని à°Žà°‚à°šà±à°•ోండి
+ à°Žà°‚à°šà±à°•à±à°¨à±à°¨ తేది
+ రోజà±à°² నిలà±à°µà± వరà±à°¸: %1$s
+ à°®à±à°—ింపౠతేదీ %1$s
+ ఫారà±à°®à°¾à°Ÿà± చెలà±à°²à°¦à±.
+ ఉదాహరణ: %1$s
+ ఇలా ఉపయోగించండి: %1$s
+ చెలà±à°²à°¨à°¿ పరిధి.
+ à°ªà±à°°à°¸à±à°¤à±à°¤ సంవతà±à°¸à°°à°¾à°¨à°¿à°•à°¿ %1$d నావిగేటౠచేయండి
+ %1$dసంవతà±à°¸à°°à°¾à°¨à°¿à°•à°¿ నావిగేటౠచేసà±à°¤à±à°‚ది
+ పరిధి వెలà±à°ªà°² ఉంది: %1$s
+ à°ªà±à°°à°¾à°°à°‚ఠతేదీ – %1$s
+ %1$s – à°®à±à°—ింపౠతేది
+ %1$s – %2$s
+ పరిధిని à°Žà°‚à°šà±à°•ోండి
+ à°ªà±à°°à°¾à°°à°‚ఠతేది - à°®à±à°—ింపౠతేది
+ సేవౠచేయండి
+ à°ªà±à°°à°¾à°°à°‚ఠతేదీ %1$s
+ తేదీ
+ à°®à±à°—ింపౠతేదీ
+ à°ªà±à°°à°¾à°°à°‚ఠతేదీ
+ రో
+ నె
+ సం
+ ఈరోజౠ%1$s
+ à°•à±à°¯à°¾à°²à±†à°‚డరౠఇనà±â€Œà°ªà±à°Ÿà± మోడà±â€Œà°•ౠమారà±à°¸à±à°¤à±à°‚ది
+ à°•à±à°¯à°¾à°²à±†à°‚డరౠవీకà±à°·à°£à°•ౠమారడానికి à°Ÿà±à°¯à°¾à°ªà± చేయండి
+ వచన ఇనà±â€Œà°ªà±à°Ÿà± మోడà±â€Œà°•ౠమారà±à°¸à±à°¤à±à°‚ది
+ సంవతà±à°¸à°° వీకà±à°·à°£à°•ౠమారడానికి à°Ÿà±à°¯à°¾à°ªà± చేయండి
+ à°°à°¦à±à°¦à± చేయండి
+ సరే
+ "సెటౠచేయలేదà±"
+ పాసà±â€Œà°µà°°à±à°¡à±â€Œà°¨à± చూపà±
+ "\"%1$s\" à°•à±à°²à°¿à°ªà±â€Œà°¬à±‹à°°à±à°¡à±â€Œà°•à°¿ కాపీ చేయబడింది."
+ "సెరà±à°šà±"
+ "999+"
+ "%1$s, %2$s"
+ "ఆఫౠచేయండి"
+ "ఆనౠచేయండి"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-th/values-th.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-th/values-th.xml
new file mode 100644
index 00000000..33e8fa45
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-th/values-th.xml
@@ -0,0 +1,140 @@
+
+
+
+ - à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ืà¸à¸™à¹ƒà¸«à¸¡à¹ˆ %d รายà¸à¸²à¸£
+ - à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ืà¸à¸™à¹ƒà¸«à¸¡à¹ˆ %d รายà¸à¸²à¸£
+
+ "นำทางไปหน้าà¹à¸£à¸"
+ "à¸à¸¥à¸±à¸š"
+ "ตัวเลืà¸à¸à¸à¸·à¹ˆà¸™"
+ "เสร็จ"
+ "ดูทั้งหมด"
+ "เลืà¸à¸à¹à¸à¸›"
+ "ปิด"
+ "เปิด"
+ "Alt+"
+ "Ctrl+"
+ "ลบ"
+ "Enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "Space"
+ "Sym+"
+ "เมนู+"
+ "ค้นหา…"
+ "ล้างคำค้นหา"
+ "คำค้นหา"
+ "ค้นหา"
+ "ส่งคำค้นหา"
+ "ค้นหาด้วยเสียง"
+ "à¹à¸Šà¸£à¹Œà¸à¸±à¸š"
+ "à¹à¸Šà¸£à¹Œà¸—าง %s"
+ "ยุบ"
+ ยุบ Bottom Sheet
+ ขยาย Bottom Sheet
+ ขยายรายà¸à¸²à¸£à¸„รึ่งหนึ่ง
+ à¹à¸•ะà¹à¸®à¸™à¹€à¸”ิลà¸à¸²à¸£à¸¥à¸²à¸à¸ªà¸à¸‡à¸„รั้ง
+ à¹à¸®à¸™à¹€à¸”ิลà¸à¸²à¸£à¸¥à¸²à¸
+ "รับสาย"
+ "วิดีโà¸"
+ "ปà¸à¸´à¹€à¸ªà¸˜"
+ "วางสาย"
+ "สายเรียà¸à¹€à¸‚้า"
+ "สายที่สนทนาà¸à¸¢à¸¹à¹ˆ"
+ "à¸à¸³à¸¥à¸±à¸‡à¸ªà¸à¸£à¸µà¸™à¸ªà¸²à¸¢à¹€à¸£à¸µà¸¢à¸à¹€à¸‚้า"
+ ป้à¸à¸™à¸à¸±à¸à¸‚ระà¹à¸¥à¹‰à¸§ %1$d จาภ%2$d ตัว
+ เà¸à¸´à¸™à¸ˆà¸³à¸™à¸§à¸™à¸à¸±à¸à¸‚ระสูงสุด %1$d จาภ%2$d
+ ล้างข้à¸à¸„วาม
+ เปิดใช้
+ %1$s จะไม่ทำงานจนà¸à¸§à¹ˆà¸²à¸„ุณจะเปิดใช้บริà¸à¸²à¸£ Google Play
+ เปิดใช้บริà¸à¸²à¸£ Google Play
+ ติดตั้ง
+ %1$s จะไม่ทำงานหาà¸à¹„ม่มีบริà¸à¸²à¸£ Google Play ซี่งไม่มีในà¸à¸¸à¸›à¸à¸£à¸“์ขà¸à¸‡à¸„ุณ
+ ติดตั้งบริà¸à¸²à¸£ Google Play
+ ความพร้à¸à¸¡à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¸‚à¸à¸‡à¸šà¸£à¸´à¸à¸²à¸£ Google Play
+ ข้à¸à¸œà¸´à¸”พลาดขà¸à¸‡à¸šà¸£à¸´à¸à¸²à¸£ Google Play
+ %1$s มีปัà¸à¸«à¸²à¹€à¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸šà¸£à¸´à¸à¸²à¸£à¸‚à¸à¸‡ Google Play โปรดลà¸à¸‡à¸à¸µà¸à¸„รั้ง
+ %1$s จะไม่ทำงานหาà¸à¹„ม่มีบริà¸à¸²à¸£ Google Play ซึ่งà¸à¸¸à¸›à¸à¸£à¸“์ขà¸à¸‡à¸„ุณไม่สนับสนุน
+ à¸à¸±à¸›à¹€à¸”ต
+ %1$s จะไม่ทำงานจนà¸à¸§à¹ˆà¸²à¸„ุณจะà¸à¸±à¸›à¹€à¸”ตบริà¸à¸²à¸£ Google Play
+ à¸à¸±à¸›à¹€à¸”ตบริà¸à¸²à¸£ Google Play
+ %1$s จะไม่ทำงานหาà¸à¹„ม่มีบริà¸à¸²à¸£ Google Play ซึ่งà¸à¸³à¸¥à¸±à¸‡à¸à¸±à¸›à¹€à¸”ตà¸à¸¢à¸¹à¹ˆà¹ƒà¸™à¸‚ณะนี้
+ จำเป็นต้à¸à¸‡à¹ƒà¸Šà¹‰à¸šà¸£à¸´à¸à¸²à¸£ Google Play เวà¸à¸£à¹Œà¸Šà¸±à¸™à¹ƒà¸«à¸¡à¹ˆ ซึ่งจะà¸à¸±à¸›à¹€à¸”ตà¸à¸±à¸•โนมัติในà¸à¸µà¸à¹„ม่ช้า
+ เปิดบนโทรศัพท์
+ ลงชื่à¸à¹€à¸‚้าใช้
+ ลงชื่à¸à¹€à¸‚้าใช้ด้วย Google
+ "คัดลà¸à¸"
+ "คัดลà¸à¸à¸¥à¸´à¸‡à¸à¹Œà¹„ปยังคลิปบà¸à¸£à¹Œà¸”à¹à¸¥à¹‰à¸§"
+ ข้à¸à¸œà¸´à¸”พลาด
+ "ขั้นสูง"
+ à¹à¸ªà¸”งเมนูà¹à¸šà¸šà¹€à¸¥à¸·à¹ˆà¸à¸™à¸¥à¸‡
+ "คัดลà¸à¸à¸¥à¸´à¸‡à¸à¹Œ"
+ "เปิดในเบราว์เซà¸à¸£à¹Œ"
+ "à¹à¸Šà¸£à¹Œà¸¥à¸´à¸‡à¸à¹Œ"
+ ไà¸à¸„à¸à¸™à¸à¸¥à¹ˆà¸à¸‡à¹‚ต้ตà¸à¸š
+ à¹à¸—็บ
+ เลืà¸à¸ AM หรืภPM
+ %1$s ชั่วโมง
+ เลืà¸à¸à¸Šà¸±à¹ˆà¸§à¹‚มง
+ %1$s นาฬิà¸à¸²
+ เลืà¸à¸à¸™à¸²à¸—ี
+ %1$s นาที
+ AM
+ สลับไปโหมดนาฬิà¸à¸²à¹€à¸žà¸·à¹ˆà¸à¸›à¹‰à¸à¸™à¹€à¸§à¸¥à¸²
+ ชั่วโมง
+ นาที
+ PM
+ เลืà¸à¸à¹€à¸§à¸¥à¸²
+ สลับไปโหมดป้à¸à¸™à¸‚้à¸à¸„วามเพื่à¸à¸›à¹‰à¸à¸™à¹€à¸§à¸¥à¸²
+ à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ืà¸à¸™à¹ƒà¸«à¸¡à¹ˆ
+ นำ %1$s à¸à¸à¸
+ à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ืà¸à¸™à¹ƒà¸«à¸¡à¹ˆà¸¡à¸²à¸à¸à¸§à¹ˆà¸² %1$d รายà¸à¸²à¸£
+ เปลี่ยนไปที่เดืà¸à¸™à¸–ัดไป
+ เปลี่ยนไปที่เดืà¸à¸™à¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²
+ à¸à¸²à¸£à¹€à¸¥à¸·à¸à¸à¸§à¸±à¸™à¸—ี่เริ่มต้น: %1$s – à¸à¸²à¸£à¹€à¸¥à¸·à¸à¸à¸§à¸±à¸™à¸—ี่สิ้นสุด: %2$s
+ à¸à¸²à¸£à¹€à¸¥à¸·à¸à¸à¹ƒà¸™à¸›à¸±à¸ˆà¸ˆà¸¸à¸šà¸±à¸™: %1$s
+ ไม่มี
+ ยà¸à¹€à¸¥à¸´à¸
+ ตà¸à¸¥à¸‡
+ %1$s
+ เลืà¸à¸à¸§à¸±à¸™à¸—ี่
+ วันที่ที่เลืà¸à¸
+ คà¸à¸¥à¸±à¸¡à¸™à¹Œà¸‚à¸à¸‡à¸§à¸±à¸™: %1$s
+ วันที่สิ้นสุด %1$s
+ รูปà¹à¸šà¸šà¹„ม่ถูà¸à¸•้à¸à¸‡
+ ตัวà¸à¸¢à¹ˆà¸²à¸‡: %1$s
+ ใช้: %1$s
+ ช่วงไม่ถูà¸à¸•้à¸à¸‡
+ ไปยังปีปัจจุบัน %1$d
+ ไปที่ปี %1$d
+ วันที่ไม่à¸à¸¢à¸¹à¹ˆà¹ƒà¸™à¸Šà¹ˆà¸§à¸‡à¸—ี่à¸à¸™à¸¸à¸à¸²à¸•: %1$s
+ วันที่เริ่มต้น – %1$s
+ %1$s – วันที่สิ้นสุด
+ %1$s – %2$s
+ เลืà¸à¸à¸Šà¹ˆà¸§à¸‡
+ วันที่เริ่มต้น – วันที่สิ้นสุด
+ บันทึà¸
+ วันที่เริ่มต้น %1$s
+ วันที่
+ วันที่สิ้นสุด
+ วันที่เริ่มต้น
+ ว
+ ด
+ ป
+ วันนี้ %1$s
+ สลับไปใช้โหมดป้à¸à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸›à¸à¸´à¸—ิน
+ à¹à¸•ะเพื่à¸à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹€à¸›à¹‡à¸™à¸¡à¸¸à¸¡à¸¡à¸à¸‡à¸›à¸à¸´à¸—ิน
+ สลับไปใช้โหมดป้à¸à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸‚้à¸à¸„วาม
+ à¹à¸•ะเพื่à¸à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹€à¸›à¹‡à¸™à¸¡à¸¸à¸¡à¸¡à¸à¸‡à¸›à¸µ
+ ยà¸à¹€à¸¥à¸´à¸
+ ตà¸à¸¥à¸‡
+ "ไม่ได้ตั้งค่า"
+ à¹à¸ªà¸”งรหัสผ่าน
+ "คัดลà¸à¸ \"%1$s\" ไปยังคลิปบà¸à¸£à¹Œà¸”à¹à¸¥à¹‰à¸§"
+ "ค้นหา"
+ "999+"
+ "%1$s %2$s"
+ "ปิด"
+ "เปิด"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-tl/values-tl.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-tl/values-tl.xml
new file mode 100644
index 00000000..cef02bc0
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-tl/values-tl.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d bagong notification
+ - %d na bagong notification
+
+ "Mag-navigate sa home"
+ "Mag-navigate pataas"
+ "Higit pang opsyon"
+ "Tapos na"
+ "Tingnan lahat"
+ "Pumili ng app"
+ "I-OFF"
+ "I-ON"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Maghanap…"
+ "I-clear ang query"
+ "Query sa paghahanap"
+ "Maghanap"
+ "Isumite ang query"
+ "Paghahanap gamit ang boses"
+ "Ibahagi sa/kay"
+ "Ibahagi gamit ang %s"
+ "I-collapse"
+ I-collapse ang bottom sheet
+ I-expand ang bottom sheet
+ I-expand hanggang gitna
+ Na-double tap ang handle sa pag-drag
+ I-drag ang handle
+ "Sagutin"
+ "Video"
+ "Tanggihan"
+ "Ibaba"
+ "Papasok na tawag"
+ "Kasalukuyang tawag"
+ "Nagsi-screen ng papasok na tawag"
+ Mga character na nailagay %1$d sa %2$d
+ Lumampas sa limitasyon sa bilang ng character %1$d sa %2$d
+ I-clear ang text
+ I-enable
+ Hindi gagana ang %1$s maliban kung ie-enable mo ang mga serbisyo ng Google Play.
+ I-enable ang mga serbisyo ng Google Play
+ I-install
+ Hindi gagana ang %1$s nang wala ang mga serbisyo ng Google Play na wala sa iyong device.
+ Kunin ang mga serbisyo ng Google Play
+ Availability ng serbisyo ng Google Play
+ Error sa Mga Serbisyo ng Google Play
+ Nagkakaproblema ang %1$s sa mga serbisyo ng Google Play. Pakisubukan ulit.
+ Hindi gagana ang %1$s nang wala ang mga serbisyo ng Google Play, na hindi nasusuportahan ng iyong device.
+ I-update
+ Hindi gagana ang %1$s maliban kung i-a-update mo ang mga serbisyo ng Google Play.
+ I-update ang mga serbisyo ng Google Play
+ Hindi gagana ang %1$s nang wala ang mga serbisyo ng Google Play na kasalukuyang ina-update.
+ Kailangan ang bagong bersyon ng mga serbisyo ng Google Play. Mag-a-update itong mag-isa sa ilang sandali.
+ Buksan sa telepono
+ Mag-sign in
+ Mag-sign in sa Google
+ "Kopyahin"
+ "Nakopya sa clipboard ang link"
+ Error
+ "Advanced"
+ Ipakita ang dropdown na menu
+ "Kopyahin ang link"
+ "Buksan sa browser"
+ "Ibahagi ang link"
+ Icon ng Dialog
+ Tab
+ Piliin ang AM o PM
+ %1$s (na) oras
+ Pumili ng oras
+ %1$s o\'clock
+ Pumili ng mga minuto
+ %1$s (na) minuto
+ AM
+ Lumipat sa mode ng orasan para sa input na oras.
+ Oras
+ Minuto
+ PM
+ Pumili ng oras
+ Lumipat sa pamamaraan ng pag-input ng text para sa input na oras.
+ Bagong notification
+ Alisin ang %1$s
+ Mahigit %1$d (na) bagong notification
+ Lumipat sa susunod na buwan
+ Lumipat sa nakaraang buwan
+ Napiling petsa ng pagsisimula: %1$s – Napiling petsa ng pagtatapos: %2$s
+ Kasalukuyang seleksyon: %1$s
+ wala
+ Kanselahin
+ OK
+ %1$s
+ Pumili ng Petsa
+ Piniling petsa
+ Column ng mga araw: %1$s
+ Petsa ng pagtatapos %1$s
+ Invalid na format.
+ Halimbawa: %1$s
+ Gamitin: %1$s
+ Invalid na hanay.
+ Mag-navigate sa kasalukuyang taon %1$d
+ Mag-navigate patungo sa taong %1$d
+ Wala sa sakop: %1$s
+ Petsa ng pagsisimula – %1$s
+ %1$s – Petsa ng pagtatapos
+ %1$s – %2$s
+ Pumili ng Range
+ Petsa ng pagsisimula – Petsa ng pagtatapos
+ I-save
+ Petsa ng pagsisimula %1$s
+ Petsa
+ Petsa ng pagtatapos
+ Petsa ng pagsisimula
+ d
+ m
+ y
+ Ngayon %1$s
+ Lumipat sa pamamaraan ng pag-input ng kalendaryo
+ I-tap para lumipat sa view ng Kalendaryo
+ Lumipat sa pamamaraan ng pag-input ng text
+ I-tap para lumipat sa view ng taon
+ Kanselahin
+ OK
+ "Hindi nakatakda"
+ Ipakita ang password
+ "Nakopya sa clipboard ang \"%1$s.\""
+ "Maghanap"
+ "999+"
+ "%1$s, %2$s"
+ "NAKA-OFF"
+ "NAKA-ON"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-tr/values-tr.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-tr/values-tr.xml
new file mode 100644
index 00000000..1062ea51
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-tr/values-tr.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d yeni bildirim
+ - %d yeni bildirim
+
+ "Eve gidiş yolunu göster"
+ "Yukarı git"
+ "Diğer seçenekler"
+ "Bitti"
+ "Tümünü göster"
+ "Bir uygulama seçin"
+ "KAPAT"
+ "AÇ"
+ "Alt+"
+ "Ctrl+"
+ "sil"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Üst Karakter+"
+ "boÅŸluk"
+ "Sym+"
+ "Menü+"
+ "Ara…"
+ "Sorguyu temizle"
+ "Arama sorgusu"
+ "Ara"
+ "Sorguyu gönder"
+ "Sesli arama"
+ "Åžununla paylaÅŸ:"
+ "%s ile paylaÅŸ"
+ "Daralt"
+ Alt sayfayı daralt
+ Alt sayfayı genişlet
+ Yarım genişlet
+ Sürükleme tutamacına iki kez dokunuldu
+ Sürükleme tutamacı
+ "Yanıtla"
+ "Video"
+ "Reddet"
+ "Kapat"
+ "Gelen arama"
+ "Devam eden arama"
+ "Gelen arama süzülüyor"
+ Girilen karakter: %1$d / %2$d
+ Karakter sınırı aşıldı %1$d / %2$d
+ Metni temizle
+ EtkinleÅŸtir
+ Google Play hizmetlerini etkinleştirmezseniz %1$s çalışmaz.
+ Google Play hizmetlerini etkinleÅŸtirin
+ Yükle
+ %1$s, şu anda cihazınızda bulunmayan Google Play hizmetleri olmadan çalışmaz.
+ Google Play hizmetlerini edinin
+ Google Play hizmetlerinin kullanılabilirliği
+ Google Play Hizmetleri hatası
+ %1$s, Google Play hizmetleriyle ilgili sorun yaşıyor. Lütfen tekrar deneyin.
+ %1$s, Google Play hizmetleri olmadan çalışmaz ve bu hizmetler cihazınız tarafından desteklenmiyor.
+ Güncelle
+ Google Play hizmetlerini güncellemezseniz %1$s çalışmayacak.
+ Google Play hizmetlerini güncelleyin
+ %1$s, şu anda güncellenmekte olan Google Play hizmetleri olmadan çalışmaz.
+ Google Play hizmetlerinin yeni sürümü gerekiyor. Kendisini kısa süre içinde güncelleyecektir.
+ Telefonda aç
+ Oturum aç
+ Google\'da oturum aç
+ "Kopyala"
+ "Bağlantı panoya kopyalandı"
+ Hata
+ "GeliÅŸmiÅŸ"
+ Açılır menüyü göster
+ "Bağlantıyı kopyala"
+ "Tarayıcıda aç"
+ "Bağlantıyı paylaş"
+ İletişim kutusu simgesi
+ Sekme
+ ÖÖ veya ÖS\'yi seçin
+ %1$s saat
+ Saat seçin
+ Saat %1$s
+ Dakikayı seçin
+ %1$s dakika
+ AM
+ Zaman girişi için saat moduna geçin.
+ Saat
+ Dakika
+ PM
+ Zamanı seçin
+ Zaman girişi için metin girişi moduna geçin.
+ Yeni bildirim
+ %1$s içeriğini kaldır
+ %1$d adetten fazla yeni bildirim
+ Sonraki aya deÄŸiÅŸtir
+ Önceki aya değiştir
+ Başlangıç tarihi seçimi: %1$s – Bitiş tarihi seçimi: %2$s
+ Geçerli seçim: %1$s
+ yok
+ İptal
+ Tamam
+ %1$s
+ Tarih Seçin
+ Seçilen tarih
+ Gün sütunu: %1$s
+ BitiÅŸ tarihi: %1$s
+ Geçersiz biçim.
+ Örnek: %1$s
+ Tarih biçimi: %1$s
+ Geçersiz aralık.
+ Geçerli yıla (%1$d) git
+ %1$d yılına git
+ İzin verilen aralığın dışında: %1$s
+ Başlangıç tarihi – %1$s
+ %1$s – Bitiş tarihi
+ %1$s-%2$s
+ Aralık Seçin
+ Başlangıç tarihi - Bitiş tarihi
+ Kaydet
+ Başlangıç tarihi: %1$s
+ Tarih
+ BitiÅŸ tarihi
+ Başlangıç tarihi
+ g
+ a
+ y
+ Bugün, %1$s
+ Takvim giriş moduna geç
+ Takvim görünümüne geçmek için dokunun
+ Metin giriş moduna geç
+ Yıl görünümüne geçmek için dokunun
+ İptal
+ Tamam
+ "Ayarlanmadı"
+ Şifreyi göster
+ "\"%1$s\" panoya kopyalandı."
+ "Ara"
+ "999+"
+ "%1$s, %2$s"
+ "KAPALI"
+ "AÇIK"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-uk/values-uk.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-uk/values-uk.xml
new file mode 100644
index 00000000..58c0670c
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-uk/values-uk.xml
@@ -0,0 +1,142 @@
+
+
+
+ - %d нове ÑповіщеннÑ
+ - %d нові ÑповіщеннÑ
+ - %d нових Ñповіщень
+ - %d нового ÑповіщеннÑ
+
+ "Перейти на головну"
+ "Перейти вгору"
+ "Більше опцій"
+ "Готово"
+ "Показати вÑÑ–"
+ "Вибрати програму"
+ "ЗÐИЖКÐ"
+ "УВІМК."
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "пробіл"
+ "Sym+"
+ "Menu+"
+ "Введіть пошуковий запит…"
+ "ОчиÑтити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "ÐаіÑлати запит"
+ "ГолоÑовий пошук"
+ "ПоділитиÑÑ:"
+ "ПоділитиÑÑ Ñ‡ÐµÑ€ÐµÐ· додаток %s"
+ "Згорнути"
+ Згорнути нижній екран
+ Розгорнути нижній екран
+ Розгорнути нижню половину
+ Маркер Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ð°ÐºÑ‚Ð¸Ð²Ð¾Ð²Ð°Ð½Ð¾ подвійним дотиком
+ Маркер переміщеннÑ
+ "ВідповіÑти"
+ "Відео"
+ "Відхилити"
+ "Завершити"
+ "Вхідний виклик"
+ "Ðктивний виклик"
+ "Вхідний виклик (Фільтр)"
+ Введено Ñимволів: %1$d з %2$d
+ Перевищено ліміт Ñимволів: %1$d з %2$d
+ Видалити текÑÑ‚
+ Увімкнути
+ Додаток %1$s не працюватиме, Ñкщо не ввімкнути ÑервіÑи Google Play.
+ Увімкнути ÑервіÑи Google Play
+ УÑтановити
+ Додаток %1$s не працюватиме без ÑервіÑів Google Play, Ñких немає на вашому приÑтрої.
+ УÑтановити ÑервіÑи Google Play
+ ДоÑтупніÑть ÑервіÑів Google Play
+ Помилка ÑервіÑів Google Play
+ У додатку %1$s виникла проблема із ÑервіÑами Google Play. Повторіть Ñпробу.
+ Додаток %1$s не працюватиме без ÑервіÑів Google Play, Ñкі не підтримуютьÑÑ Ð½Ð° вашому приÑтрої.
+ Оновити
+ Додаток %1$s не працюватиме, Ñкщо не оновити ÑервіÑи Google Play.
+ Оновіть ÑервіÑи Google Play
+ Додаток %1$s не працюватиме без ÑервіÑів Google Play, Ñкі зараз оновлюютьÑÑ.
+ Потрібна нова верÑÑ–Ñ ÑервіÑів Google Play. Вони невдовзі оновлÑтьÑÑ.
+ Відкрити на телефоні
+ Увійти
+ Увійти в облік. Ð·Ð°Ð¿Ð¸Ñ Google
+ "Скопіювати"
+ "ПоÑÐ¸Ð»Ð°Ð½Ð½Ñ Ñкопійовано в буфер обміну"
+ Помилка
+ "Додатково"
+ Показати Ñпадне меню
+ "Копіювати поÑиланнÑ"
+ "Відкрити у веб-переглÑдачі"
+ "ÐадіÑлати поÑиланнÑ"
+ Значок вікна
+ Вкладка
+ Виберіть ДП чи ПП
+ %1$s год
+ Вибрати годину
+ %1$s год
+ Виберіть хвилини
+ %1$s хв
+ дп
+ Перейти в режим годинника, щоб ввеÑти чаÑ.
+ Година
+ Хвилина
+ пп
+ Виберіть чаÑ
+ Перейти в текÑтовий режим, щоб ввеÑти чаÑ.
+ Ðове ÑповіщеннÑ
+ Видалити %1$s
+ Ðових Ñповіщень більше ніж %1$d
+ Перейти до наÑтупного міÑÑцÑ
+ Перейти до попереднього міÑÑцÑ
+ Вибрана дата початку – %1$s; вибрана дата Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ â€“ %2$s
+ Поточний вибір: %1$s
+ немає
+ СкаÑувати
+ OK
+ %1$s
+ Виберіть дату
+ Вибрана дата
+ Стовпець із днÑми: %1$s
+ Дата завершеннÑ: %1$s
+ ÐедійÑний формат.
+ Приклад: %1$s
+ ВикориÑтовувати: %1$s
+ ÐедійÑний діапазон.
+ Перейти до поточного року: %1$d
+ Перейти до %1$d року
+ За межами діапазону: %1$s
+ Дата початку – %1$s
+ %1$s – дата завершеннÑ
+ %1$s – %2$s
+ Виберіть діапазон дат
+ Дата початку – дата завершеннÑ
+ Зберегти
+ Дата початку: %1$s
+ Дата
+ Дата завершеннÑ
+ Дата початку
+ д
+ м
+ р
+ Сьогодні: %1$s
+ Перейти в режим Ð²Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ð² календарі
+ ÐатиÑніть, щоб перейти до переглÑду календарÑ
+ Перейти в режим Ð²Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ñ‚ÐµÐºÑту
+ ÐатиÑніть, щоб перейти до переглÑду року
+ СкаÑувати
+ OK
+ "Ðе налаштовано"
+ Показувати пароль
+ "\"%1$s\": Ñкопійовано в буфер обміну."
+ "Пошук"
+ "999+"
+ "%1$s, %2$s"
+ "ВИМКÐЕÐО"
+ "УВІМКÐЕÐО"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ur/values-ur.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ur/values-ur.xml
new file mode 100644
index 00000000..62c65ff4
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-ur/values-ur.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d نئی اطلاع
+ - %d نئی اطلاعات
+
+ "گھر کی طر٠نیویگیٹ کریں"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ÛÙˆ گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "Ø¢Ù"
+ "آن"
+ "Alt+‎"
+ "Ctrl+‎"
+ "delete"
+ "enter"
+ "Function+‎"
+ "Meta+‎"
+ "Shift+‎"
+ "space"
+ "Sym+‎"
+ "Menu+‎"
+ "تلاش کریں…"
+ "Ø§Ø³ØªÙØ³Ø§Ø± صا٠کریں"
+ "تلاش کا Ø§Ø³ØªÙØ³Ø§Ø±"
+ "تلاش کریں"
+ "Ø§Ø³ØªÙØ³Ø§Ø± جمع کرائیں"
+ "صوتی تلاش"
+ "اس کے ساتھ اشتراک کریں"
+ "%s کے ساتھ اشتراک کریں"
+ "سکیڑیں"
+ نیچے کی شیٹ کو سکیڑیں
+ نیچے کی شیٹ کو پھیلائیں
+ نص٠تک پھیلائیں
+ گھسیٹنے Ú©Û’ Ûینڈل Ú©Ùˆ دو بار تھپتھپائیں
+ گھسیٹنے کا Ûینڈل
+ "جواب دیں"
+ "ویڈیو"
+ "مسترد کریں"
+ "منقطع کر دیں"
+ "اÙÙ† کمنگ کال"
+ "جاری کال"
+ "اÙÙ† کمنگ کال Ú©ÛŒ اسکریننگ"
+ %2$d میں سے %1$d ØØ±ÙˆÙ درج کیے گئے
+ ØØ±ÙˆÙ Ú©ÛŒ تعداد Ú©ÛŒ ØØ¯ %2$d سے %1$d Ù¾ÛÙ†Ú† گئی
+ ٹیکسٹ صا٠کریں
+ ÙØ¹Ø§Ù„ کریں
+ â€Ø¬Ø¨ تک آپ Google Play سروسز ÙØ¹Ø§Ù„ Ù†Ûیں کر لیتے، %1$s کام Ù†Ûیں کرے گی۔
+ â€Google Play سروسز ÙØ¹Ø§Ù„ کریں
+ انسٹال کریں
+ â€%1$s Google Play سروسز Ú©Û’ بغیر Ù†Ûیں Ú†Ù„Û’ گی، جو آپ Ú©Û’ Ø¢Ù„Û Ø³Û’ غائب Ûیں۔
+ â€Google Play سروسز ØØ§ØµÙ„ کریں
+ â€Google Play سروسز Ú©ÛŒ دستیابی
+ â€Google Play سروسز Ú©ÛŒ خرابی
+ â€%1$s Ú©Ùˆ Google Play سروسز Ú©Û’ ساتھ Ù…Ø³Ø¦Ù„Û Ù¾ÛŒØ´ Ø¢ Ø±ÛØ§ ÛÛ’Û” Ø¨Ø±Ø§Û Ú©Ø±Ù… Ø¯ÙˆØ¨Ø§Ø±Û Ú©ÙˆØ´Ø´ کریں۔
+ â€%1$s Google Play سروسز Ú©Û’ بغیر Ù†Ûیں Ú†Ù„Û’ گی، جن Ú©ÛŒ آپ کا Ø¢Ù„Û Ù…Ø¹Ø§ÙˆÙ†Øª Ù†Ûیں کرتا۔
+ اپ ڈیٹ کریں
+ â€Ø¬Ø¨ تک آپ Google Play سروسز اپ ڈیٹ Ù†Ûیں کر لیتے Ûیں %1$s تب تک Ù†Ûیں Ú†Ù„Û’ گی۔
+ â€Google Play سروسز اپ ڈیٹ کریں
+ â€%1$s Google Play سروسز Ú©Û’ بغیر Ù†Ûیں Ú†Ù„Û’ گی، جو ÙÛŒ Ø§Ù„ØØ§Ù„ اپ ڈیٹ ÛÙˆ رÛÛŒ Ûیں۔
+ â€Google Play سروسز Ú©Û’ نئے ورژن Ú©ÛŒ ضرورت ÛÛ’Û” ÛŒÛ ØªÚ¾ÙˆÚ‘ÛŒ دیر میں خود ÛÛŒ اپنے آپ Ú©Ùˆ اپ ڈیٹ کر Ù„Û’ گا۔
+ Ùون پر کھولیں
+ سائن ان کریں
+ â€Google Ú©Û’ ساتھ سائن ان کریں
+ "کاپی کریں"
+ "لنک کلپ بورڈ پر کاپی ÛÙˆ گیا"
+ خرابی
+ "جدید ترین"
+ ڈراپ ڈاؤن مینو دکھائیں
+ "لنک کاپی کریں"
+ "براؤزر میں کھولیں"
+ "لنک کا اشتراک کریں"
+ ڈائیلاگ کا آئیکن
+ ٹیب
+ AM یا PM منتخب کریں
+ %1$s گھنٹے
+ Ú¯Ú¾Ù†Ù¹Û Ù…Ù†ØªØ®Ø¨ کریں
+ %1$s بجے
+ منٹ منتخب کریں
+ %1$s منٹ
+ قبل از Ø¯ÙˆÙ¾ÛØ±
+ وقت ان پٹ Ú©Û’ لیے Ú¯Ú¾Ú‘ÛŒ Ùˆâ€Ø¶Ø¹ پر سوئچ کریں۔
+ گھنٹÛ
+ منٹ
+ رات
+ وقت منتخب کریں
+ وقت ان پٹ کے لیے ٹیکسٹ ان پٹ وضع پر سوئچ کریں۔
+ نئی اطلاع
+ %1$s Ú©Ùˆ Ûٹائیں
+ %1$d سے Ø²ÛŒØ§Ø¯Û Ù†Ø¦ÛŒ اطلاعات
+ اگلے Ù…ÛÛŒÙ†Û Ù…ÛŒÚº منتقل کریں
+ Ú¯Ø²Ø´ØªÛ Ù…Ø§Û Ù…ÛŒÚº منتقل کریں
+ تاریخ آغاز کا انتخاب: %1$s – تاریخ اختتام کا انتخاب: %2$s
+ Ù…ÙˆØ¬ÙˆØ¯Û Ø§Ù†ØªØ®Ø§Ø¨: %1$s
+ کوئی Ù†Ûیں
+ منسوخ کریں
+ ٹھیک ÛÛ’
+ %1$s
+ تاریخ منتخب کریں
+ منتخب Ú©Ø±Ø¯Û ØªØ§Ø±ÛŒØ®
+ دنوں کا کالم: %1$s
+ تاریخ اختتام %1$s
+ غلط ÙØ§Ø±Ù…یٹ۔
+ مثال: %1$s۔
+ %1$s استعمال کریں
+ غلط رینج۔
+ سال رواں %1$d پر نیویگیٹ کریں
+ %1$d سال پر نیویگیٹ کریں
+ ØØ¯ سے Ø¨Ø§ÛØ±: %1$s
+ تاریخ آغاز – %1$s
+ %1$s – تاریخ اختتام
+ %1$s – %2$s
+ رینج منتخب کریں
+ تاریخ آغاز - تاریخ اختتام
+ Ù…ØÙوظ کریں
+ تاریخ آغاز %1$s
+ تاریخ
+ تاریخ اختتام
+ تاریخ آغاز
+ d
+ m
+ y
+ آج %1$s
+ کیلنڈر ان پٹ وضع پر سوئچ کریں
+ کیلنڈر منظر پر سوئچ کرنے کے لیے تھپتھپائیں
+ متنی ان پٹ وضع پر سوئچ کریں
+ سال کے منظر پر سوئچ کرنے کے لیے تھپتھپائیں
+ منسوخ کریں
+ ٹھیک ÛÛ’
+ "سیٹ Ù†Ûیں ÛÛ’"
+ پاس ورڈ دکھائیں
+ "\"%1$s\" کلپ بورڈ میں کاپی ÛÙˆ گیا۔"
+ "تلاش کریں"
+ "+999"
+ "%1$s، %2$s"
+ "Ø¢Ù ÛÛ’"
+ "آن"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-uz/values-uz.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-uz/values-uz.xml
new file mode 100644
index 00000000..cd42e31b
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-uz/values-uz.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d ta yangi bildirishnoma
+ - %d ta yangi bildirishnoma
+
+ "Boshiga o‘tish"
+ "Yopish"
+ "Yana"
+ "OK"
+ "Hammasi"
+ "Ilovani tanlang"
+ "YOQILMAGAN"
+ "YONIQ"
+ "Alt+"
+ "Ctrl+"
+ "Delete"
+ "Enter"
+ "Fn+"
+ "Meta+"
+ "Shift+"
+ "Probel"
+ "Sym+"
+ "Menyu+"
+ "Qidirish…"
+ "So‘rovni o‘chirish"
+ "Qidiruv so‘rovi"
+ "Qidiruv"
+ "So‘rov yaratish"
+ "Ovozli qidiruv"
+ "Ulashish"
+ "%s orqali ulashish"
+ "Yig‘ish"
+ Quyi ekranni yigʻish
+ Quyi ekranni kengaytirish
+ Yarmiga kengaytirish
+ Surish dastagi ikki marta bosildi
+ Surish dastagi
+ "Javob berish"
+ "Video"
+ "Rad etish"
+ "Tugatish"
+ "Kiruvchi chaqiruv"
+ "Joriy chaqiruv"
+ "Kiruvchi chaqiruvni filtrlash"
+ %1$d/%2$d ta belgi kiritildi
+ Harflar soni (%1$d) cheklovdan (%2$d) oshib ketdi
+ Matnni tozalash
+ Yoqish
+ Google Play xizmatlari yoqilmaguncha, %1$s ishlamaydi.
+ Google Play xizmatlarini yoqish
+ O‘rnatish
+ %1$s ishlashi uchun qurilmangizda Google Play xizmatlarini o‘rnatish lozim.
+ Google Play xizmatlarini o‘rnatish
+ Google Play xizmatlarining mavjudligi
+ Google Play xizmatlari xatosi
+ %1$s ilovasini Google Play xizmatlariga ulab bo‘lmadi. Qaytadan urinib ko‘ring.
+ %1$s ilovasi Google Play xizmatlarisiz ishlamaydi, biroq qurilmangiz ularni qo‘llab-quvvatlamaydi.
+ Yangilash
+ Google Play xizmatlari yangilanmaguncha, %1$s ishga tushmaydi.
+ Google Play xizmatlarini yangilash
+ %1$s ilovasining ishlashi uchun zarur Google Play xizmatlari hozirda yangilanmoqda.
+ Google Play xizmatlarining yangi versiyasi zarur. U o‘zini qisqa vaqt ichida yangilaydi.
+ Telefonda ochish
+ Kirish
+ Google orqali kirish
+ "Nusxa olish"
+ "Havoladan vaqtinchalik xotiraga nusxa olindi"
+ Xato
+ "Kengaytirilgan"
+ Pastga ochiluvchi menyuni ochish
+ "Havoladan nusxa olish"
+ "Brauzerda ochish"
+ "Havolani ulashish"
+ Muloqot ikonkasi
+ Tab : Varaq
+ Tushdan oldin yoki keyinligini tanlang
+ %1$s soat
+ Soatni tanlang
+ %1$s soat
+ Daqiqalarni tanlash
+ %1$s daqiqa
+ AM
+ Vaqtni kiritish uchun soat rejimiga o‘ting.
+ Soat
+ Daqiqa
+ PM
+ Vaqtni tanlang
+ Vaqtni kiritish uchun matn kiritish rejimiga o‘ting.
+ Yangi bildirishnoma
+ Olib tashlash: %1$s
+ Yana %1$d dan ortiq bildirishnoma
+ Keyingi oyga oʻzgartirish
+ Avvalgi oyga oʻzgartirish
+ Boshlanish sanasini tanlash: %1$s – Tugash sanasini tanlash: %2$s
+ Joriy tanlov: %1$s
+ hech qanday
+ Bekor qilish
+ OK
+ %1$s
+ Sanani tanlang
+ Tanlangan sana
+ Kunlar ustuni: %1$s
+ Tugash sanasi: %1$s
+ Yaroqsiz format.
+ Masalan: %1$s
+ Ishlatish: %1$s
+ Yaroqsiz oraliq.
+ Joriy yilga oʻtish %1$d
+ Yilga nazar solish: %1$d
+ Chegaradan tashqari: %1$s
+ Boshlanish sanasi – %1$s
+ %1$s – Tugash sanasi
+ %1$s – %2$s
+ Oraliqni tanlang
+ Boshlanishi – Tugashi
+ Saqlash
+ Boshlanish sanasi: %1$s
+ Sana
+ Tugash sanasi
+ Boshlanish sanasi
+ k
+ o
+ y
+ Bugun %1$s
+ Taqvim kiritish rejimiga oʻtish
+ Taqvim shaklida koʻrish uchun bosing
+ Matn kiritish rejimiga oʻtish
+ Yillik shaklda koʻrish uchun bosing
+ Bekor qilish
+ OK
+ "Tayinlanmagan"
+ Parol ochiq tursin
+ "“%1$s†vaqtinchalik xotiraga nusxalandi."
+ "Qidiruv"
+ "999+"
+ "%1$s, %2$s"
+ "YOQILMAGAN"
+ "YONIQ"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v16/values-v16.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v16/values-v16.xml
new file mode 100644
index 00000000..5ee2feb2
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v16/values-v16.xml
@@ -0,0 +1,8 @@
+
+
+ 4dp
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v17/values-v17.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v17/values-v17.xml
new file mode 100644
index 00000000..f85a197a
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v17/values-v17.xml
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v18/values-v18.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v18/values-v18.xml
new file mode 100644
index 00000000..7dad77f9
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v18/values-v18.xml
@@ -0,0 +1,4 @@
+
+
+ 0px
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v21/values-v21.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v21/values-v21.xml
new file mode 100644
index 00000000..defb7d3c
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v21/values-v21.xml
@@ -0,0 +1,571 @@
+
+
+ @color/androidx_core_secondary_text_default_material_light
+ - 0.32
+ - 0.20
+ - 0.16
+ - 0.20
+ 0dp
+ 1dp
+ - 0.48
+ - 0.48
+ - 0.16
+ - 0.48
+ - 0.24
+ - 0.24
+ - 0.08
+ - 0.24
+ 0dp
+ 0dp
+ 12dp
+ 72dp
+ sans-serif-medium
+ sans-serif
+ sans-serif-medium
+ sans-serif
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v22/values-v22.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v22/values-v22.xml
new file mode 100644
index 00000000..1ad118ee
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v22/values-v22.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v23/values-v23.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v23/values-v23.xml
new file mode 100644
index 00000000..46887cb7
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v23/values-v23.xml
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v24/values-v24.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v24/values-v24.xml
new file mode 100644
index 00000000..abd53197
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v24/values-v24.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v25/values-v25.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v25/values-v25.xml
new file mode 100644
index 00000000..483ae0c4
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v25/values-v25.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v26/values-v26.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v26/values-v26.xml
new file mode 100644
index 00000000..4c306675
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v26/values-v26.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v28/values-v28.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v28/values-v28.xml
new file mode 100644
index 00000000..7f8fae07
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v28/values-v28.xml
@@ -0,0 +1,29 @@
+
+
+ - 0.16
+ - 0.17
+ - 0.4
+ - 0.10
+ - 0.24
+ - 0.40
+ - 0.40
+ - 0.24
+ - 0.12
+ - 0.20
+ - 0.20
+ - 0.12
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v29/values-v29.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v29/values-v29.xml
new file mode 100644
index 00000000..25619afb
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v29/values-v29.xml
@@ -0,0 +1,14 @@
+
+
+
+ - @string/settings_service_wifi_lock_none
+ - @string/settings_service_wifi_lock_high_perf_v29
+ - @string/settings_service_wifi_lock_low_latency
+
+
+ - None
+ - HighPerf
+ - LowLatency
+
+ @android:color/transparent
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v30/values-v30.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v30/values-v30.xml
new file mode 100644
index 00000000..6385721d
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v30/values-v30.xml
@@ -0,0 +1,4 @@
+
+
+ true
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v31/values-v31.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v31/values-v31.xml
new file mode 100644
index 00000000..fbf6931c
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v31/values-v31.xml
@@ -0,0 +1,475 @@
+
+
+ @android:color/system_neutral1_1000
+ @android:color/system_neutral1_900
+ @android:color/system_neutral1_0
+ @android:color/system_neutral1_800
+ @android:color/system_neutral1_700
+ @android:color/system_neutral1_600
+ @android:color/system_neutral1_500
+ @android:color/system_neutral1_400
+ @android:color/system_neutral1_300
+ @android:color/system_neutral1_200
+ @android:color/system_neutral1_100
+ @android:color/system_neutral1_50
+ @android:color/system_neutral1_10
+ @android:color/system_neutral2_1000
+ @android:color/system_neutral2_900
+ @android:color/system_neutral2_0
+ @android:color/system_neutral2_800
+ @android:color/system_neutral2_700
+ @android:color/system_neutral2_600
+ @android:color/system_neutral2_500
+ @android:color/system_neutral2_400
+ @android:color/system_neutral2_300
+ @android:color/system_neutral2_200
+ @android:color/system_neutral2_100
+ @android:color/system_neutral2_50
+ @android:color/system_neutral2_10
+ @android:color/system_accent1_1000
+ @android:color/system_accent1_900
+ @android:color/system_accent1_0
+ @android:color/system_accent1_800
+ @android:color/system_accent1_700
+ @android:color/system_accent1_600
+ @android:color/system_accent1_500
+ @android:color/system_accent1_400
+ @android:color/system_accent1_300
+ @android:color/system_accent1_200
+ @android:color/system_accent1_100
+ @android:color/system_accent1_50
+ @android:color/system_accent1_10
+ @android:color/system_accent2_1000
+ @android:color/system_accent2_900
+ @android:color/system_accent2_0
+ @android:color/system_accent2_800
+ @android:color/system_accent2_700
+ @android:color/system_accent2_600
+ @android:color/system_accent2_500
+ @android:color/system_accent2_400
+ @android:color/system_accent2_300
+ @android:color/system_accent2_200
+ @android:color/system_accent2_100
+ @android:color/system_accent2_50
+ @android:color/system_accent2_10
+ @android:color/system_accent3_1000
+ @android:color/system_accent3_900
+ @android:color/system_accent3_0
+ @android:color/system_accent3_800
+ @android:color/system_accent3_700
+ @android:color/system_accent3_600
+ @android:color/system_accent3_500
+ @android:color/system_accent3_400
+ @android:color/system_accent3_300
+ @android:color/system_accent3_200
+ @android:color/system_accent3_100
+ @android:color/system_accent3_50
+ @android:color/system_accent3_10
+ @color/m3_ref_palette_dynamic_neutral_variant6
+ @color/m3_ref_palette_dynamic_neutral20
+ @color/m3_ref_palette_dynamic_primary40
+ @color/m3_ref_palette_dynamic_neutral90
+ @color/m3_ref_palette_dynamic_neutral90
+ @color/m3_ref_palette_dynamic_primary20
+ @color/m3_ref_palette_dynamic_primary90
+ @color/m3_ref_palette_dynamic_secondary20
+ @color/m3_ref_palette_dynamic_secondary90
+ @color/m3_ref_palette_dynamic_neutral90
+ @color/m3_ref_palette_dynamic_neutral_variant80
+ @color/m3_ref_palette_dynamic_tertiary20
+ @color/m3_ref_palette_dynamic_tertiary90
+ @color/m3_ref_palette_dynamic_neutral_variant60
+ @color/m3_ref_palette_dynamic_neutral_variant30
+ @color/m3_ref_palette_dynamic_primary80
+ @color/m3_ref_palette_dynamic_primary30
+ @color/m3_ref_palette_dynamic_secondary80
+ @color/m3_ref_palette_dynamic_secondary30
+ @color/m3_ref_palette_dynamic_neutral_variant6
+ @color/m3_ref_palette_dynamic_neutral_variant24
+ @color/m3_ref_palette_dynamic_neutral_variant12
+ @color/m3_ref_palette_dynamic_neutral_variant17
+ @color/m3_ref_palette_dynamic_neutral_variant22
+ @color/m3_ref_palette_dynamic_neutral_variant10
+ @color/m3_ref_palette_dynamic_neutral_variant4
+ @color/m3_ref_palette_dynamic_neutral_variant6
+ @color/m3_ref_palette_dynamic_neutral_variant30
+ @color/m3_ref_palette_dynamic_tertiary80
+ @color/m3_ref_palette_dynamic_tertiary30
+ @color/m3_ref_palette_dynamic_neutral_variant98
+ @color/m3_ref_palette_dynamic_neutral95
+ @color/m3_ref_palette_dynamic_primary80
+ @color/m3_ref_palette_dynamic_neutral20
+ @color/m3_ref_palette_dynamic_neutral10
+ @color/m3_ref_palette_dynamic_primary100
+ @color/m3_ref_palette_dynamic_primary10
+ @color/m3_ref_palette_dynamic_secondary100
+ @color/m3_ref_palette_dynamic_secondary10
+ @color/m3_ref_palette_dynamic_neutral10
+ @color/m3_ref_palette_dynamic_neutral_variant30
+ @color/m3_ref_palette_dynamic_tertiary100
+ @color/m3_ref_palette_dynamic_tertiary10
+ @color/m3_ref_palette_dynamic_neutral_variant50
+ @color/m3_ref_palette_dynamic_neutral_variant80
+ @color/m3_ref_palette_dynamic_primary40
+ @color/m3_ref_palette_dynamic_primary90
+ @color/m3_ref_palette_dynamic_secondary40
+ @color/m3_ref_palette_dynamic_secondary90
+ @color/m3_ref_palette_dynamic_neutral_variant98
+ @color/m3_ref_palette_dynamic_neutral_variant98
+ @color/m3_ref_palette_dynamic_neutral_variant94
+ @color/m3_ref_palette_dynamic_neutral_variant92
+ @color/m3_ref_palette_dynamic_neutral_variant90
+ @color/m3_ref_palette_dynamic_neutral_variant96
+ @color/m3_ref_palette_dynamic_neutral_variant100
+ @color/m3_ref_palette_dynamic_neutral_variant87
+ @color/m3_ref_palette_dynamic_neutral_variant90
+ @color/m3_ref_palette_dynamic_tertiary40
+ @color/m3_ref_palette_dynamic_tertiary90
+ @color/m3_ref_palette_dynamic_primary10
+ @color/m3_ref_palette_dynamic_primary30
+ @color/m3_ref_palette_dynamic_secondary10
+ @color/m3_ref_palette_dynamic_secondary30
+ @color/m3_ref_palette_dynamic_tertiary10
+ @color/m3_ref_palette_dynamic_tertiary30
+ @color/m3_ref_palette_dynamic_primary90
+ @color/m3_ref_palette_dynamic_primary80
+ @color/m3_ref_palette_dynamic_secondary90
+ @color/m3_ref_palette_dynamic_secondary80
+ @color/m3_ref_palette_dynamic_tertiary90
+ @color/m3_ref_palette_dynamic_tertiary80
+ @color/m3_sys_color_dark_error
+ @color/m3_sys_color_dark_error_container
+ @color/m3_sys_color_dark_on_error
+ @color/m3_sys_color_dark_on_error_container
+ @color/m3_sys_color_light_error
+ @color/m3_sys_color_light_error_container
+ @color/m3_sys_color_light_on_error
+ @color/m3_sys_color_light_on_error_container
+ @color/m3_ref_palette_dynamic_neutral0
+ @color/m3_ref_palette_dynamic_neutral10
+ @color/m3_ref_palette_dynamic_neutral100
+ @color/m3_ref_palette_dynamic_neutral20
+ @color/m3_ref_palette_dynamic_neutral30
+ @color/m3_ref_palette_dynamic_neutral40
+ @color/m3_ref_palette_dynamic_neutral50
+ @color/m3_ref_palette_dynamic_neutral60
+ @color/m3_ref_palette_dynamic_neutral70
+ @color/m3_ref_palette_dynamic_neutral80
+ @color/m3_ref_palette_dynamic_neutral90
+ @color/m3_ref_palette_dynamic_neutral95
+ @color/m3_ref_palette_dynamic_neutral99
+ @color/m3_ref_palette_dynamic_neutral_variant0
+ @color/m3_ref_palette_dynamic_neutral_variant10
+ @color/m3_ref_palette_dynamic_neutral_variant100
+ @color/m3_ref_palette_dynamic_neutral_variant20
+ @color/m3_ref_palette_dynamic_neutral_variant30
+ @color/m3_ref_palette_dynamic_neutral_variant40
+ @color/m3_ref_palette_dynamic_neutral_variant50
+ @color/m3_ref_palette_dynamic_neutral_variant60
+ @color/m3_ref_palette_dynamic_neutral_variant70
+ @color/m3_ref_palette_dynamic_neutral_variant80
+ @color/m3_ref_palette_dynamic_neutral_variant90
+ @color/m3_ref_palette_dynamic_neutral_variant95
+ @color/m3_ref_palette_dynamic_neutral_variant99
+ @color/m3_ref_palette_dynamic_primary0
+ @color/m3_ref_palette_dynamic_primary10
+ @color/m3_ref_palette_dynamic_primary100
+ @color/m3_ref_palette_dynamic_primary20
+ @color/m3_ref_palette_dynamic_primary30
+ @color/m3_ref_palette_dynamic_primary40
+ @color/m3_ref_palette_dynamic_primary50
+ @color/m3_ref_palette_dynamic_primary60
+ @color/m3_ref_palette_dynamic_primary70
+ @color/m3_ref_palette_dynamic_primary80
+ @color/m3_ref_palette_dynamic_primary90
+ @color/m3_ref_palette_dynamic_primary95
+ @color/m3_ref_palette_dynamic_primary99
+ @color/m3_ref_palette_dynamic_secondary0
+ @color/m3_ref_palette_dynamic_secondary10
+ @color/m3_ref_palette_dynamic_secondary100
+ @color/m3_ref_palette_dynamic_secondary20
+ @color/m3_ref_palette_dynamic_secondary30
+ @color/m3_ref_palette_dynamic_secondary40
+ @color/m3_ref_palette_dynamic_secondary50
+ @color/m3_ref_palette_dynamic_secondary60
+ @color/m3_ref_palette_dynamic_secondary70
+ @color/m3_ref_palette_dynamic_secondary80
+ @color/m3_ref_palette_dynamic_secondary90
+ @color/m3_ref_palette_dynamic_secondary95
+ @color/m3_ref_palette_dynamic_secondary99
+ @color/m3_ref_palette_dynamic_tertiary0
+ @color/m3_ref_palette_dynamic_tertiary10
+ @color/m3_ref_palette_dynamic_tertiary100
+ @color/m3_ref_palette_dynamic_tertiary20
+ @color/m3_ref_palette_dynamic_tertiary30
+ @color/m3_ref_palette_dynamic_tertiary40
+ @color/m3_ref_palette_dynamic_tertiary50
+ @color/m3_ref_palette_dynamic_tertiary60
+ @color/m3_ref_palette_dynamic_tertiary70
+ @color/m3_ref_palette_dynamic_tertiary80
+ @color/m3_ref_palette_dynamic_tertiary90
+ @color/m3_ref_palette_dynamic_tertiary95
+ @color/m3_ref_palette_dynamic_tertiary99
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v34/values-v34.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v34/values-v34.xml
new file mode 100644
index 00000000..f5df9c8f
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-v34/values-v34.xml
@@ -0,0 +1,91 @@
+
+
+ @android:color/system_background_dark
+ @android:color/system_error_dark
+ @android:color/system_error_container_dark
+ @android:color/system_on_surface_light
+ @android:color/system_primary_light
+ @android:color/system_surface_light
+ @android:color/system_on_background_dark
+ @android:color/system_on_error_dark
+ @android:color/system_on_error_container_dark
+ @android:color/system_on_primary_dark
+ @android:color/system_on_primary_container_dark
+ @android:color/system_on_secondary_dark
+ @android:color/system_on_secondary_container_dark
+ @android:color/system_on_surface_dark
+ @android:color/system_on_surface_variant_dark
+ @android:color/system_on_tertiary_dark
+ @android:color/system_on_tertiary_container_dark
+ @android:color/system_outline_dark
+ @android:color/system_outline_variant_dark
+ @android:color/system_primary_dark
+ @android:color/system_primary_container_dark
+ @android:color/system_secondary_dark
+ @android:color/system_secondary_container_dark
+ @android:color/system_surface_dark
+ @android:color/system_surface_bright_dark
+ @android:color/system_surface_container_dark
+ @android:color/system_surface_container_high_dark
+ @android:color/system_surface_container_highest_dark
+ @android:color/system_surface_container_low_dark
+ @android:color/system_surface_container_lowest_dark
+ @android:color/system_surface_dim_dark
+ @android:color/system_surface_variant_dark
+ @android:color/system_tertiary_dark
+ @android:color/system_tertiary_container_dark
+ @android:color/system_background_light
+ @android:color/system_error_light
+ @android:color/system_error_container_light
+ @android:color/system_on_surface_dark
+ @android:color/system_primary_dark
+ @android:color/system_surface_dark
+ @android:color/system_on_background_light
+ @android:color/system_on_error_light
+ @android:color/system_on_error_container_light
+ @android:color/system_on_primary_light
+ @android:color/system_on_primary_container_light
+ @android:color/system_on_secondary_light
+ @android:color/system_on_secondary_container_light
+ @android:color/system_on_surface_light
+ @android:color/system_on_surface_variant_light
+ @android:color/system_on_tertiary_light
+ @android:color/system_on_tertiary_container_light
+ @android:color/system_outline_light
+ @android:color/system_outline_variant_light
+ @android:color/system_primary_light
+ @android:color/system_primary_container_light
+ @android:color/system_secondary_light
+ @android:color/system_secondary_container_light
+ @android:color/system_surface_light
+ @android:color/system_surface_bright_light
+ @android:color/system_surface_container_light
+ @android:color/system_surface_container_high_light
+ @android:color/system_surface_container_highest_light
+ @android:color/system_surface_container_low_light
+ @android:color/system_surface_container_lowest_light
+ @android:color/system_surface_dim_light
+ @android:color/system_surface_variant_light
+ @android:color/system_tertiary_light
+ @android:color/system_tertiary_container_light
+ @android:color/system_on_primary_fixed
+ @android:color/system_on_primary_fixed_variant
+ @android:color/system_on_secondary_fixed
+ @android:color/system_on_secondary_fixed_variant
+ @android:color/system_on_tertiary_fixed
+ @android:color/system_on_tertiary_fixed_variant
+ @android:color/system_primary_fixed
+ @android:color/system_primary_fixed_dim
+ @android:color/system_secondary_fixed
+ @android:color/system_secondary_fixed_dim
+ @android:color/system_tertiary_fixed
+ @android:color/system_tertiary_fixed_dim
+ @color/m3_sys_color_dynamic_dark_error
+ @color/m3_sys_color_dynamic_dark_error_container
+ @color/m3_sys_color_dynamic_dark_on_error
+ @color/m3_sys_color_dynamic_dark_on_error_container
+ @color/m3_sys_color_dynamic_light_error
+ @color/m3_sys_color_dynamic_light_error_container
+ @color/m3_sys_color_dynamic_light_on_error
+ @color/m3_sys_color_dynamic_light_on_error_container
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-vi/values-vi.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-vi/values-vi.xml
new file mode 100644
index 00000000..8f58d1b1
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-vi/values-vi.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d thông báo mới
+ - %d thông báo mới
+
+ "Chỉ đưá»ng vá» nhà "
+ "Di chuyển lên"
+ "Tùy chá»n khác"
+ "Xong"
+ "Xem tất cả"
+ "Chá»n má»™t ứng dụng"
+ "TẮT"
+ "BẬT"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Menu+"
+ "Tìm kiếm…"
+ "Xóa truy vấn"
+ "Truy vấn tìm kiếm"
+ "Tìm kiếm"
+ "Gá»i truy vấn"
+ "Tìm kiếm bằng giá»ng nói"
+ "Chia sẻ với"
+ "Chia sẻ với %s"
+ "Thu gá»n"
+ Thu gá»n bảng dưới cùng
+ Mở rộng bảng dưới cùng
+ Mở rá»™ng má»™t ná»a
+ Äã nhấn đúp nút kéo
+ Nút kéo
+ "Trả lá»i"
+ "Video"
+ "Từ chối"
+ "Kết thúc"
+ "Cuá»™c gá»i đến"
+ "Cuá»™c gá»i Ä‘ang thá»±c hiện"
+ "Äang sà ng lá»c cuá»™c gá»i đến"
+ Äã nháºp %1$d trong số %2$d ký tá»±
+ Äã vượt quá giá»›i hạn ký tá»± %1$d/%2$d
+ Xóa văn bản
+ Báºt
+ %1$s sẽ không hoạt động nếu bạn không báºt dịch vụ cá»§a Google Play.
+ Báºt dịch vụ cá»§a Google Play
+ Cài đặt
+ %1$s sẽ không chạy nếu không có dịch vụ của Google Play. Thiết bị của bạn bị thiếu dịch vụ nà y.
+ Cà i đặt dịch vụ của Google Play
+ Phạm vi cung cấp Dịch vụ Google Play
+ Lỗi dịch vụ của Google Play
+ %1$s đang gặp sự cố với Dịch vụ Google Play. Hãy thỠlại.
+ %1$s sẽ không chạy nếu không có Dịch vụ Google Play. Thiết bị của bạn không hỗ trợ các dịch vụ nà y.
+ Cáºp nháºt
+ %1$s sẽ không chạy trừ khi bạn cáºp nháºt Dịch vụ Google Play.
+ Cáºp nháºt dịch vụ cá»§a Google Play
+ %1$s sẽ không chạy nếu không có dịch vụ cá»§a Google Play. Dịch vụ nà y hiện Ä‘ang cáºp nháºt.
+ Cần phiên bản má»›i cá»§a dịch vụ Google Play. Dịch vụ sẽ sá»›m tá»± động cáºp nháºt.
+ Mở trên điện thoại
+ Äăng nháºp
+ Äăng nhập bằng Google
+ "Sao chép"
+ "Äã sao chép đưá»ng liên kết và o bảng nhá»› tạm"
+ Lá»—i
+ "Nâng cao"
+ Hiển thị menu thả xuống
+ "Sao chép đưá»ng liên kết"
+ "Mở trong trình duyệt"
+ "Chia sẻ đưá»ng liên kết"
+ Biểu tượng hộp thoại
+ Thẻ
+ Chá»n SA hoặc CH
+ %1$s giá»
+ Chá»n giá»
+ %1$s giá»
+ Chá»n phút
+ %1$s phút
+ SA
+ Chuyển sang chế độ đồng hồ để nháºp thá»i gian.
+ Giá»
+ Phút
+ CH
+ Chá»n thá»i gian
+ Chuyển sang chế độ nháºp văn bản để nháºp thá»i gian.
+ Thông báo mới
+ Xóa %1$s
+ Hơn %1$d thông báo mới
+ Chuyển sang tháng tiếp theo
+ Chuyển vỠtháng trước
+ Ngà y bắt đầu được chá»n: %1$s – Ngà y kết thúc được chá»n: %2$s
+ Lá»±a chá»n hiện tại: %1$s
+ không có
+ Há»§y
+ OK
+ %1$s
+ Chá»n ngà y
+ Ngà y đã chá»n
+ Cột ngà y: %1$s
+ Ngà y kết thúc %1$s
+ Äịnh dạng không hợp lệ.
+ Và dụ: %1$s
+ SỠdụng: %1$s
+ Phạm vi không hợp lệ.
+ Chuyển đến năm hiện tại %1$d
+ Chuyển tới năm %1$d
+ Nằm ngoà i phạm vi: %1$s
+ Ngà y bắt đầu – %1$s
+ %1$s – Ngà y kết thúc
+ %1$s – %2$s
+ Chá»n dải ô
+ Ngà y bắt đầu – Ngà y kết thúc
+ Lưu
+ Ngà y bắt đầu %1$s
+ Ngà y
+ Ngà y kết thúc
+ Ngà y bắt đầu
+ d
+ m
+ y
+ Hôm nay %1$s
+ Chuyển sang chế độ nháºp lịch
+ Nhấn để chuyển sang chế độ xem theo lịch
+ Chuyển sang chế độ nháºp văn bản
+ Nhấn để chuyển sang chế độ xem theo năm
+ Huá»·
+ OK
+ "Chưa đặt"
+ Hiện máºt khẩu
+ "Äã sao chép \"%1$s\" và o bảng nhá»› tạm."
+ "Tìm kiếm"
+ "999+"
+ "%1$s, %2$s"
+ "TẮT"
+ "BẬT"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-w320dp-land-v13/values-w320dp-land-v13.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-w320dp-land-v13/values-w320dp-land-v13.xml
new file mode 100644
index 00000000..b4fed6b9
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-w320dp-land-v13/values-w320dp-land-v13.xml
@@ -0,0 +1,5 @@
+
+
+ 24dp
+ 36dp
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-w360dp-port-v13/values-w360dp-port-v13.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-w360dp-port-v13/values-w360dp-port-v13.xml
new file mode 100644
index 00000000..fa14e49b
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-w360dp-port-v13/values-w360dp-port-v13.xml
@@ -0,0 +1,11 @@
+
+
+ 4dp
+ 18dp
+ 40dp
+ 2dp
+ 2dp
+ 40dp
+ 40dp
+ 4dp
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-w400dp-port-v13/values-w400dp-port-v13.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-w400dp-port-v13/values-w400dp-port-v13.xml
new file mode 100644
index 00000000..e8cf2fee
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-w400dp-port-v13/values-w400dp-port-v13.xml
@@ -0,0 +1,11 @@
+
+
+ 0dp
+ 22dp
+ 48dp
+ 2dp
+ 2dp
+ 48dp
+ 48dp
+ 0dp
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-w600dp-land-v13/values-w600dp-land-v13.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-w600dp-land-v13/values-w600dp-land-v13.xml
new file mode 100644
index 00000000..aaaf9559
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-w600dp-land-v13/values-w600dp-land-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 64dp
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml
new file mode 100644
index 00000000..2d85812e
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml
new file mode 100644
index 00000000..deecc9e8
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
new file mode 100644
index 00000000..b499d2cf
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
@@ -0,0 +1,9 @@
+
+
+ - 60%
+ - 90%
+ - 50%
+ - 70%
+ - 45%
+ - 72%
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 00000000..6f6a6336
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,338 @@
+
+
+
+ - 自 %2$s 以æ¥è¿žæŽ¥äº† %1$s 次
+
+
+ - ä¸Šä¼ %1$s 个包,%2$s
+
+
+ - 下载 %1$s 个包,%2$s
+
+
+ - %d æ¡æ–°é€šçŸ¥
+ - %d æ¡æ–°é€šçŸ¥
+
+
+ - %d 个设备已连接到 %s
+
+
+ - %d 个接å£
+
+
+ - %d å°è®¾å¤‡
+
+
+ - 已连接 %1$s/%2$d 个设备\n支æŒåŠŸèƒ½ï¼š%3$s
+
+
+ - 已连接 %d 个设备
+
+ "转到首页"
+ "转到上一层级"
+ "更多选项"
+ "完æˆ"
+ "查看全部"
+ "选择应用"
+ "å…³é—"
+ "å¼€å¯"
+ "Alt+"
+ "Ctrl+"
+ "Delete é”®"
+ "Enter é”®"
+ "Fn+"
+ "Meta+"
+ "Shift+"
+ "ç©ºæ ¼é”®"
+ "Sym+"
+ "Menu+"
+ "æœç´¢â€¦"
+ "清除查询"
+ "æœç´¢æŸ¥è¯¢"
+ "æœç´¢"
+ "æäº¤æŸ¥è¯¢"
+ "è¯éŸ³æœç´¢"
+ "分享对象"
+ "与%s分享"
+ "æ”¶èµ·"
+ VPN çƒç‚¹
+ 收起底部动作æ¡
+ 展开底部动作æ¡
+ 展开到一åŠé«˜åº¦
+ 拖动手柄被点按两次
+ 拖动手柄
+ "接å¬"
+ "视频通è¯"
+ "拒接"
+ "挂æ–"
+ "æ¥ç”µ"
+ "æ£åœ¨é€šè¯"
+ "æ£åœ¨è¿‡æ»¤æ¥ç”µ"
+ 输入了 %1$d 个å—符(上é™ä¸º %2$d 个)
+ 超出å—符数é™åˆ¶ï¼ˆå…± %1$d 个,上é™ä¸º %2$d 个)
+ 清除文å—
+ æœåŠ¡å™¨ä¸º %1$s 返回错误:%2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ 厂商
+ %s 的昵称
+ 拉黑
+ 拉黑需è¦ä¸ºè¯¥æŽ¥å£æ‰“å¼€æœåŠ¡ã€‚
+ 昵称…
+ æµé‡â€¦
+ 洗白
+ %s çš„æµé‡
+ å¯ç”¨
+ 您必须先å¯ç”¨ Google Play æœåŠ¡ï¼Œç„¶åŽæ‰èƒ½è¿è¡Œ%1$s。
+ å¯ç”¨ Google Play æœåŠ¡
+ 安装
+ 您的设备没有安装 Google Play æœåŠ¡ï¼Œå› æ¤æ— 法è¿è¡Œ%1$s。
+ èŽ·å– Google Play æœåŠ¡
+ Google Play æœåŠ¡çš„é€‚ç”¨èŒƒå›´
+ Google PlayæœåŠ¡å‡ºé”™
+ %1$sæ— æ³•è®¿é—® Google Play æœåŠ¡ï¼Œè¯·é‡è¯•。
+ æ‚¨çš„è®¾å¤‡ä¸æ”¯æŒ Google Play æœåŠ¡ï¼Œå› æ¤æ— 法è¿è¡Œ%1$s。
+ æ›´æ–°
+ 您必须先更新 Google Play æœåŠ¡ï¼Œç„¶åŽæ‰èƒ½è¿è¡Œ%1$s。
+ æ›´æ–° Google Play æœåŠ¡
+ Google Play æœåС当剿£åœ¨æ›´æ–°ï¼Œå› æ¤æ‚¨æ— 法è¿è¡Œ%1$s。
+ 必须使用新版 Google Play æœåŠ¡ã€‚è¯¥æœåŠ¡å¾ˆå¿«å°±ä¼šè‡ªè¡Œæ›´æ–°ã€‚
+ 在手机上打开
+ 登录
+ 使用 Google å¸å·ç™»å½•
+ é…ç½®å¯èƒ½æ— 效
+ Android 系统拒ç»ä½¿ç”¨æ¤é…置。(详情å‚è§æ—¥å¿—)
+ 使用 QR ç 分享
+ 设置 WLAN
+ (已æ–开)
+ (æ£åœ¨è¿žæŽ¥ï¼‰
+ (已连接)
+ "å¤åˆ¶"
+ "链接已å¤åˆ¶åˆ°å‰ªè´´æ¿"
+ å…³é—
+ 觉得æ¤åº”用很有用?\næèµ 给该开å‘è€…ä»¥æ”¯æŒæ¤åº”用的开å‘ï¼
+ Google Play 商店
+ Google æ”¶å– 30% 的费用
+ æèµ ï¼
+ 䏿”¯æŒ In-App æèµ ã€‚ä½ çš„ Google Play 商店是å¦å®‰è£…æ£ç¡®äº†å‘¢ï¼Ÿ
+ æèµ 多少?
+ 谢谢æèµ ï¼\néžå¸¸æ„Ÿè°¢æ‚¨ï¼
+ 错误
+ 错误:未找到下游接å£
+ "高级"
+ 显示下拉èœå•
+ 未知 #%d
+ "å¤åˆ¶é“¾æŽ¥"
+ "在æµè§ˆå™¨ä¸æ‰“å¼€"
+ "分享链接"
+ å¯¹è¯æ¡†å›¾æ ‡
+ æ ‡ç¾é¡µ
+ é€‰æ‹©ä¸Šåˆæˆ–下åˆ
+ %1$s å°æ—¶
+ é€‰æ‹©å°æ—¶
+ %1$s 点
+ 选择分钟
+ %1$s 分
+ 上åˆ
+ 切æ¢åˆ°æ—¶é’Ÿæ¨¡å¼æ¥è¾“入时间。
+ å°æ—¶
+ 分钟
+ 下åˆ
+ 选择时间
+ 切æ¢åˆ°æ–‡å—è¾“å…¥æ¨¡å¼æ¥è¾“入时间。
+ 新通知
+ 移除%1$s
+ 有 %1$d æ¡ä»¥ä¸Šçš„æ–°é€šçŸ¥
+ 转到下个月
+ 转到上个月
+ 开始日期选择:%1$s – ç»“æŸæ—¥æœŸé€‰æ‹©ï¼š%2$s
+ 当å‰çš„选择是:%1$s
+ æ—
+ å–æ¶ˆ
+ 确定
+ %1$s
+ 请选择日期
+ 选定的日期
+ è¡¨ç¤ºå‘¨å‡ çš„åˆ—ï¼š%1$s
+ ç»“æŸæ—¥æœŸ %1$s
+ æ ¼å¼æ— 效。
+ 示例:%1$s
+ 使用:%1$s
+ èŒƒå›´æ— æ•ˆã€‚
+ 转到今年%1$d
+ 转到 %1$d 年
+ ä¸åœ¨å…许的范围内:%1$s
+ 开始日期 – %1$s
+ %1$s – ç»“æŸæ—¥æœŸ
+ %1$s - %2$s
+ 请选择范围
+ 开始日期 - ç»“æŸæ—¥æœŸ
+ ä¿å˜
+ 开始日期 %1$s
+ 日期
+ ç»“æŸæ—¥æœŸ
+ 开始日期
+ d
+ m
+ y
+ 今天%1$s
+ 切æ¢åˆ°æ—¥åŽ†è¾“å…¥æ¨¡å¼
+ 点按å³å¯åˆ‡æ¢åˆ°æ—¥åŽ†è§†å›¾
+ 切æ¢åˆ°æ–‡æœ¬å—段输入模å¼
+ 点按å³å¯åˆ‡æ¢åˆ°å¹´è§†å›¾
+ å–æ¶ˆ
+ 确定
+ å‘生异常,详情请查看调试信æ¯ã€‚
+ "未设置"
+ ç›‘è§†ä¸æ´»è·ƒæŽ¥å£
+ VPN 共享æœåŠ¡
+ 䏿´»è·ƒï¼š%s
+ VPN 共享已å¯ç”¨
+ 显示密ç
+ æƒé™ä¸è¶³
+ "已将“%1$sâ€å¤åˆ¶åˆ°å‰ªè´´æ¿ã€‚"
+ æ— çº¿ä¸ç»§ (%1$d MHz, é¢‘é“ %2$d)
+ åˆ é™¤å¤šä½™ P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ 未能找到有效的档案。请å°è¯•先打开ä¸ç»§ã€‚
+ 创建 P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ æœåŠ¡ä¸å¯ç”¨ï¼Œè¯·ç¨åŽé‡è¯•
+ 内部异常
+ æœªæ·»åŠ æœåŠ¡è¯·æ±‚
+ è®¾å¤‡ä¸æ”¯æŒ Wi\u2011Fi 直连
+ 䏿”¯æŒæ¤æ“作
+ 由于系统é™åˆ¶ï¼Œå…³é—ä½ç½®ä¿¡æ¯æœåŠ¡å¯èƒ½äº§ç”Ÿé—®é¢˜å¹¶å¯¼è‡´ç»èˆªç¼©çŸ
+ 进入设置
+ æ— çº¿ä¸ç»§éœ€è¦ç²¾ç¡®ä½ç½®æƒé™
+ Wi\u2011Fi 直连ä¸å¯ç”¨ï¼Œè¯·æ‰“å¼€ Wi\u2011Fi
+ 打开
+ å…³é—已有 P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ å…³é— P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ 设置è¿è¡Œé¢‘æ®µå¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ è®¾ç½®ä¾›åº”å•†ç‰¹å®šå…ƒç´ å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ WPS(ä¸å®‰å…¨ï¼‰
+ ä¸€é”®åŠ å¯†
+ 输入 PIN
+ 打开 WPS å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ æˆåŠŸæ³¨å†Œ PIN。
+ 请在 2 分钟内在需è¦è¿žæŽ¥çš„è®¾å¤‡ä¸Šä½¿ç”¨ä¸€é”®åŠ å¯†ä»¥è¿žæŽ¥åˆ°æ¤ä¸ç»§ã€‚
+ "æœç´¢"
+ 下游
+ 退出
+ 帮助
+ æ‚项
+ ææ¬¾
+ GitHub sponsors, PayPal ç‰å…¶ä»–æ–¹å¼â€¦
+ 请给我钱
+ 导出调试信æ¯
+ è¿™ç§éžå¸¸æœ‰ç”¨å“‡
+ 项目首页 @ GitHub
+ 查看使用手册,star, æäº¤ issues, åˆä½œ
+ é‡å¯åº”用以应用新的设置。
+ 自动å¯åЍæœåŠ¡
+ 设备é‡å¯æˆ–应用å‡çº§åŽè‡ªåЍæ¢å¤ä¹‹å‰è¿è¡Œçš„æœåŠ¡
+ 清ç†/釿–°åº”用路由规则
+ 将修改的设置应用到当å‰å¯ç”¨çš„æœåŠ¡ä¸Šã€‚ä¹Ÿå¯ç”¨äºŽä¿®å¤å¶å°”会å‘ç”Ÿçš„ç«žæ€æ¡ä»¶ã€‚
+ å°è¯•ä¿®å¤ DHCP
+ å¦‚æžœè®¾å¤‡æ— æ³•èŽ·å– IP 地å€ï¼Œå°è¯•打开这个选项。
+ ç¦ç”¨ IPv6 共享
+ é˜²æ¢ VPN 通过 IPv6 泄æ¼ã€‚
+ 网络状æ€ç›‘嬿¨¡å¼
+ Netlink 监å¬
+ Netlink ç›‘å¬ (root)
+ 轮询
+ 轮询 (root)
+ IP 掩蔽模å¼
+ Android Netd æœåŠ¡
+ æ—
+ 简易
+ ä¸ç»§å®‰å…¨æ¨¡å¼
+ ä¸å¯¹ç³»ç»Ÿé…置进行修改,但是å¯èƒ½é¡»è¦è¾ƒé•¿çš„网络å称。
+ 使用çŸåç§°å¯èƒ½éœ€è¦å…³é—安全模å¼ã€‚
+ 临时 WLAN çƒç‚¹ä½¿ç”¨ç³»ç»Ÿé…ç½®
+ 这将与其他使用本地çƒç‚¹çš„应用冲çª
+ 上游网络接å£
+ 自动检测系统 VPN
+ 当å‰ä¸Šæ¸¸æŽ¥å£
+ %1$s;备用:%2$s
+ ä¿æŒ Wi\u2011Fi å¼€å¯
+ å¼€
+ 高性能模å¼
+ ç¦ç”¨çœç”µ
+ 低延迟模å¼
+ 系统默认
+ ç½‘ç»œå…±äº«ç¡¬ä»¶åŠ é€Ÿ
+ 系统“开å‘者选项â€çš„å¿«æ·æ–¹å¼
+ 上游
+ 备用上游接å£
+ 自动检测系统默认网络
+ "999+"
+ "%1$sã€%2$s"
+ 使用æ¤åŠŸèƒ½éœ€è¦æ‰“å¼€ä½ç½®æœåŠ¡ã€‚
+ 管ç†ç³»ç»Ÿå…±äº«â€¦
+ è“牙网络共享
+ "以太网络共享"
+ USB 网络共享 (NCM)
+ è‹¥ VPN å…±äº«æ— æ³•ä½¿ç”¨ï¼Œè¯·å°è¯•ç¦ç”¨â€œå¼€å‘者选项â€ä¸çš„â€œç½‘ç»œå…±äº«ç¡¬ä»¶åŠ é€Ÿâ€ã€‚
+ USB 网络共享
+ WLAN çƒç‚¹
+ å·²å±è”½ %1$s:%2$s
+ å¤åˆ¶ MAC
+ \n驱动国家代ç :%s
+ éšæœºæŽ¥å…¥ç‚¹ MAC
+ 桥接 AP å¹¶å‘
+ STA/AP å¹¶å‘
+ STA/桥接 AP å¹¶å‘
+ %1$d MHz, é¢‘é“ %2$d, 频宽 %3$s
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, é¢‘é“ %2$d, 频宽 %3$s,
+ ä¸è‡ªåЍ关é—
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, é¢‘é“ %2$d, 频宽 %3$s,
+ å…³é—延迟 %6$s
+ æ—
+ \n支æŒé¢‘é“: %s
+ 监视…
+ %s(监视)
+ 临时 WLAN çƒç‚¹
+ 打开çƒç‚¹å¤±è´¥ (åŽŸå› ï¼š%s)
+ 通用错误
+ 模å¼ä¸å…¼å®¹
+ æ— é¢‘æ®µ
+ 共享被ç¦ç”¨
+ 已连设备
+ æ— çº¿ä¸ç»§
+ 设置选项
+ 共享管ç†
+ 更新应用
+ "已关é—"
+ "已开å¯"
+ æŒä¹…æ€§éšæœº MAC 地å€
+ "MAC 地å€"
+ 设备白åå•
+ "%s GHz 频段"
+ Disabled
+ 设备黑åå•
+ å¯ç”¨æ¡¥æŽ¥æ¨¡å¼ä¼ºæœºå…³é—
+ 过滤å¯ä»¥è¿žæŽ¥çš„设备
+ "éšè—的网络"
+ 访问控制
+ 2.4 GHz ACS å¯é€‰é¢‘段
+ 5 GHz ACS å¯é€‰é¢‘段
+ 6 GHz ACS å¯é€‰é¢‘段
+ 高级接入点设置
+ "AP 频段"
+ æœªè¿žæŽ¥ä»»ä½•è®¾å¤‡æ—¶è‡ªåŠ¨å…³é— WLAN çƒç‚¹
+ 最大频宽
+ å…³é—延迟
+ 默认延迟:%d 毫秒
+ å¯ç”¨ Wi\u2011Fi 6
+ å¯ç”¨ Wi\u2011Fi 7
+ éšæœºç”Ÿæˆ MAC 地å€
+ 䏿Œä¹…化
+ æ—
+ æŒä¹…化
+ å…许连接设备数上é™
+ "密ç "
+ "ä¿å˜"
+ "安全性"
+ "网络åç§°"
+ 切æ¢åå…进制显示
+ 用户æä¾›é…ç½®
+ 供应商特定元ç´
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 00000000..853c531a
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d 個新通知
+ - %d 個新通知
+
+ "ç€è¦½ä¸»é "
+ "å‘上ç€è¦½"
+ "更多é¸é …"
+ "完æˆ"
+ "查看全部"
+ "鏿“‡æ‡‰ç”¨ç¨‹å¼"
+ "關閉"
+ "開啟"
+ "Alt +"
+ "Ctrl +"
+ "刪除"
+ "Enter éµ"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "空白éµ"
+ "Sym +"
+ "Menu +"
+ "æœå°‹â€¦"
+ "清除查詢"
+ "æœå°‹æŸ¥è©¢"
+ "æœå°‹"
+ "æäº¤æŸ¥è©¢"
+ "語音æœå°‹"
+ "分享å°è±¡"
+ "使用「%sã€åˆ†äº«"
+ "æ”¶åˆ"
+ æ”¶åˆé åº•é¢æ¿
+ 展開é åº•é¢æ¿
+ 展開一åŠ
+ 㩒咗兩下拖曳控點
+ 拖曳控點
+ "接è½"
+ "視åƒ"
+ "拒接"
+ "掛斷"
+ "來電"
+ "通話ä¸"
+ "æ£åœ¨éŽæ¿¾ä¾†é›»"
+ 已輸入 %1$d 個å—å…ƒ (å…± %2$d 個)
+ 超出å—å…ƒé™åˆ¶ %1$d 個å—å…ƒ (ä¸Šé™ %2$d 個å—å…ƒ)
+ 清除文å—
+ 啟用
+ æ‚¨å¿…é ˆå•Ÿç”¨ Google Play æœå‹™ï¼Œæ–¹å¯åŸ·è¡Œã€Œ%1$sã€ã€‚
+ 啟用 Google Play æœå‹™
+ 安è£
+ 您的è£ç½®å°šæœªå®‰è£ Google Play æœå‹™ï¼Œå› æ¤ç„¡æ³•執行「%1$sã€ã€‚
+ å®‰è£ Google Play æœå‹™
+ Google Play æœå‹™çš„é©ç”¨ç¯„åœ
+ Google Play æœå‹™éŒ¯èª¤
+ 「%1$sã€å˜å– Google Play æœå‹™æ™‚發生å•題。請ç¨å¾Œå†è©¦ä¸€æ¬¡ã€‚
+ 您的è£ç½®ä¸æ”¯æ´ Google Play æœå‹™ï¼Œå› æ¤ç„¡æ³•執行「%1$sã€ã€‚
+ æ›´æ–°
+ æ‚¨å¿…é ˆæ›´æ–°ã€ŒGoogle Play æœå‹™ã€ï¼Œæ‰èƒ½åŸ·è¡Œ %1$s。
+ æ›´æ–° Google Play æœå‹™
+ æ£åœ¨æ›´æ–° Google Play æœå‹™ï¼Œæ›´æ–°å®Œæˆå¾Œæ–¹å¯åŸ·è¡Œã€Œ%1$sã€ã€‚
+ 需è¦ä½¿ç”¨æ–°ç‰ˆæœ¬çš„ Google Play æœå‹™ã€‚更新會å³å°‡è‡ªå‹•開始。
+ 在手機開啟
+ 登入
+ é€éŽ Google 登入
+ "複製"
+ "連çµå·²è¤‡è£½åˆ°å‰ªè²¼ç°¿"
+ 錯誤
+ "進階"
+ 顯示下拉å¼é¸å–®
+ "複製連çµ"
+ "在ç€è¦½å™¨ä¸é–‹å•Ÿ"
+ "分享連çµ"
+ å°è©±æ¡†åœ–示
+ 分é
+ 鏿“‡ä¸Šåˆæˆ–下åˆ
+ %1$s 個é˜
+ é¸å–時段
+ %1$s 點
+ é¸å–分é˜
+ %1$s 分
+ AM
+ 切æ›è‡³æ™‚é˜æ¨¡å¼å³å¯è¼¸å…¥æ™‚間。
+ å°æ™‚
+ 分é˜
+ PM
+ é¸å–時間
+ 切æ›è‡³æ–‡å—輸入模å¼å³å¯è¼¸å…¥æ™‚間。
+ 新通知
+ 移除「%1$sã€
+ è¶…éŽ %1$d 則新通知
+ 變更為下個月
+ 變更為上個月
+ 開始日期é¸é …:%1$s – çµæŸæ—¥æœŸé¸é …:%2$s
+ ç›®å‰é¸å–:%1$s
+ 冇
+ å–æ¶ˆ
+ 確定
+ %1$s
+ è«‹é¸æ“‡æ—¥æœŸ
+ æ‰€é¸æ—¥æœŸ
+ 日期欄:%1$s
+ çµæŸæ—¥æœŸä¿‚ %1$s
+ æ ¼å¼ç„¡æ•ˆã€‚
+ 例如:%1$s
+ 使用:%1$s
+ 範åœç„¡æ•ˆã€‚
+ 去今個年度 %1$d
+ ç€è¦½è‡³ %1$d å¹´
+ 超出範åœï¼š%1$s
+ 開始日期 – %1$s
+ %1$s – çµæŸæ—¥æœŸ
+ %1$s – %2$s
+ è«‹é¸æ“‡ç¯„åœ
+ 開始日期 – çµæŸæ—¥æœŸ
+ 儲å˜
+ 開始日期係 %1$s
+ 日期
+ çµæŸæ—¥æœŸ
+ 開始日期
+ æ—¥
+ 月
+ å¹´
+ 今日 %1$s
+ 切æ›è‡³æ—¥æ›†è¼¸å…¥æ¨¡å¼
+ 㩒一下就å¯ä»¥åˆ‡æ›åŽ»æ—¥æ›†æª¢è¦–æ¨¡å¼
+ 切æ›è‡³æ–‡å—輸入模å¼
+ 㩒一下就å¯ä»¥åˆ‡æ›åŽ»æŒ‰å¹´æª¢è¦–æ¨¡å¼
+ å–æ¶ˆ
+ 確定
+ "未è¨å®š"
+ 顯示密碼
+ "「%1$sã€å·²è¤‡è£½åˆ°å‰ªè²¼ç°¿ã€‚"
+ "æœå°‹"
+ "999+"
+ "%1$sã€%2$s"
+ "關閉"
+ "開啟"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 00000000..ab96f9a3
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,323 @@
+
+
+
+ - 自 %2$s 以來連線了 %1$s 次
+
+
+ - 上傳 %1$s 個å°åŒ…,%2$s
+
+
+ - 下載 %1$s 個å°åŒ…,%2$s
+
+
+ - %d 則新通知
+ - %d 則新通知
+
+
+ - %d 個è£ç½®å·²é€£ç·šåˆ° %s
+
+
+ - %d 個介é¢
+
+
+ - %d 個è£ç½®
+
+
+ - 已連線 %1$s/%2$d 個è£ç½®\n支æ´åŠŸèƒ½ï¼š%3$s
+
+
+ - 已連線 %d 個è£ç½®
+
+ "ç€è¦½é¦–é "
+ "å‘上ç€è¦½"
+ "更多é¸é …"
+ "完æˆ"
+ "查看全部"
+ "鏿“‡æ‡‰ç”¨ç¨‹å¼"
+ "關閉"
+ "開啟"
+ "Alt +"
+ "Ctrl +"
+ "Delete éµ"
+ "Enter éµ"
+ "Fn +"
+ "Meta +"
+ "Shift +"
+ "ç©ºæ ¼éµ"
+ "Sym +"
+ "Menu +"
+ "æœå°‹â€¦"
+ "清除查詢"
+ "æœå°‹æŸ¥è©¢"
+ "æœå°‹"
+ "æäº¤æŸ¥è©¢"
+ "語音æœå°‹"
+ "分享å°è±¡"
+ "與「%sã€åˆ†äº«"
+ "æ”¶åˆ"
+ VPN 無線基地å°
+ æ”¶åˆåº•部功能表
+ 展開底部功能表
+ 展開一åŠ
+ 已輕觸兩下拖曳控點
+ 拖曳控點
+ "接è½"
+ "視訊"
+ "拒接"
+ "掛斷"
+ "來電"
+ "通話ä¸"
+ "æ£åœ¨éŽæ¿¾ä¾†é›»"
+ 已輸入 %1$d 個å—å…ƒ (上é™ç‚º %2$d 個å—å…ƒ)
+ è¶…éŽå—å…ƒé™åˆ¶ (å…± %1$d å—å…ƒï¼Œä¸Šé™ %2$d å—å…ƒ)
+ 清除文å—
+ 伺æœå™¨éŒ¯èª¤ %1$s:%2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ 供應商
+ 暱稱 %s
+ 黑åå–®
+ é–‹å•Ÿæ¤æœå‹™ä»¥é˜»æ¢è£ç½®é€£ç·š
+ 暱稱…
+ 狀態…
+ 解除黑åå–®
+ 狀態 %s
+ 啟用
+ æ‚¨å¿…é ˆå•Ÿç”¨ Google Play æœå‹™ï¼Œæ‰èƒ½åŸ·è¡Œã€Œ%1$sã€ã€‚
+ 啟用 Google Play æœå‹™
+ 安è£
+ 您的è£ç½®ä¸¦æœªå®‰è£ Google Play æœå‹™ï¼Œå› æ¤ç„¡æ³•執行「%1$sã€ã€‚
+ å–å¾— Google Play æœå‹™
+ Google Play æœå‹™å¯ç”¨æ€§
+ Google Play æœå‹™ç™¼ç”ŸéŒ¯èª¤
+ 「%1$sã€ç„¡æ³•å˜å– Google Play æœå‹™ï¼Œè«‹å†è©¦ä¸€æ¬¡ã€‚
+ 您的è£ç½®ä¸æ”¯æ´ Google Play æœå‹™ï¼Œå› æ¤ç„¡æ³•執行「%1$sã€ã€‚
+ æ›´æ–°
+ æ‚¨å¿…é ˆæ›´æ–° Google Play æœå‹™ï¼Œæ‰èƒ½åŸ·è¡Œã€Œ%1$sã€ã€‚
+ æ›´æ–° Google Play æœå‹™
+ 執行「%1$sã€æ‰€éœ€çš„ Google Play æœå‹™æ£åœ¨æ›´æ–°ã€‚
+ å¿…é ˆä½¿ç”¨æ–°ç‰ˆ Google Play æœå‹™ã€‚該æœå‹™ç¨å¾Œå°±æœƒè‡ªå‹•更新。
+ 在手機上開啟
+ 登入
+ 使用 Google 帳戶登入
+ Android 系統拒絕使用æ¤çµ„態。(請檢視 Logcat)
+ 使用 QR Code 分享
+ Wi\u2011Fi 組態
+ ï¼ˆå·²ä¸æ–·ï¼‰
+ (æ£åœ¨é€£ç·šï¼‰
+ (已連線)
+ "複製"
+ "已將連çµè¤‡è£½åˆ°å‰ªè²¼ç°¿"
+ 關閉
+ é€™å€‹æ‡‰ç”¨ç¨‹å¼æœ‰ç”¨å—Žï¼Ÿ\nå°é¡çš„æŠ–å…§çµ¦é–‹ç™¼äººå“¡ç”¨ä¾†æ”¯æ´æ¤æ‡‰ç”¨ç¨‹å¼çš„開發
+ Google Play 商店
+ Google å°‡æ”¶å– 30% 的費用
+ 抖內ï¼
+ 䏿”¯æ´æ‡‰ç”¨ç¨‹å¼å…§è³¼ï¼ŒPlay å•†åº—æ˜¯å¦æ£ç¢ºå®‰è£ï¼Ÿ
+ 抖內多少錢
+ æ„Ÿè¬æŠ–å…§ï¼\nååˆ†æ„Ÿè¬æ‚¨ï¼
+ 錯誤
+ 錯誤:找ä¸åˆ°ä¸‹æ¸¸ä»‹é¢
+ "進階"
+ 顯示下拉å¼é¸å–®
+ 未知 #%d
+ "複製連çµ"
+ "在ç€è¦½å™¨ä¸é–‹å•Ÿ"
+ "分享連çµ"
+ å°è©±æ–¹å¡Šåœ–示
+ åˆ†é æ¨™ç±¤
+ é¸å–ä¸Šåˆæˆ–下åˆ
+ %1$s å°æ™‚
+ è«‹é¸å–時段
+ %1$s 點
+ é¸å–åˆ†é˜æ•¸
+ %1$s 分
+ AM
+ 切æ›è‡³æ™‚é˜æ¨¡å¼ä¾†è¼¸å…¥æ™‚間。
+ å°æ™‚
+ 分é˜
+ PM
+ é¸å–時間
+ 切æ›è‡³æ–‡å—輸入模å¼ä¾†è¼¸å…¥æ™‚間。
+ 新通知
+ 移除 %1$s
+ è¶…éŽ %1$d 則新通知
+ 變更至下個月
+ 變更至上個月
+ 所é¸é–‹å§‹æ—¥æœŸï¼š%1$s - 所é¸çµæŸæ—¥æœŸï¼š%2$s
+ ç›®å‰é¸å–:%1$s
+ ç„¡
+ å–æ¶ˆ
+ 確定
+ %1$s
+ é¸å–日期
+ æ‰€é¸æ—¥æœŸ
+ 星期幾資料欄:%1$s
+ çµæŸæ—¥æœŸï¼š%1$s
+ æ ¼å¼ç„¡æ•ˆã€‚
+ 範例:%1$s
+ 使用:%1$s
+ 日期範åœç„¡æ•ˆã€‚
+ å‰å¾€ä»Šå¹´ %1$d
+ å‰å¾€ %1$d å¹´
+ 超出日期範åœï¼š%1$s
+ 開始日期 – %1$s
+ %1$s – çµæŸæ—¥æœŸ
+ %1$s – %2$s
+ é¸å–範åœ
+ 開始日期 - çµæŸæ—¥æœŸ
+ 儲å˜
+ 開始日期:%1$s
+ 日期
+ çµæŸæ—¥æœŸ
+ 開始日期
+ d
+ m
+ y
+ 今天 %1$s
+ 切æ›è‡³æ—¥æ›†è¼¸å…¥æ¨¡å¼
+ 輕觸å³å¯åˆ‡æ›è‡³æ—¥æ›†æª¢è¦–ç•«é¢
+ 切æ›è‡³æ–‡å—輸入模å¼
+ 輕觸å³å¯åˆ‡æ›è‡³å¹´ä»½æª¢è¦–ç•«é¢
+ å–æ¶ˆ
+ 確定
+ 發生錯誤,請檢查åµéŒ¯è³‡è¨Šã€‚
+ "未è¨å®š"
+ 監視éžä½œç”¨ä¸ä»‹é¢
+ VPN ç„¡ç·šåŸºåœ°å°æœå‹™
+ åœç”¨ï¼š%s
+ VPN 無線基地å°å·²å•Ÿç”¨
+ 顯示密碼
+ 權é™ä¸è¶³
+ "已將「%1$sã€è¤‡è£½åˆ°å‰ªè²¼ç°¿ã€‚"
+ ä¸ç¹¼å™¨ (%1$d MHzï¼Œé »é“ %2$d)
+ 刪除冗餘 P2P 群組失敗 (åŽŸå› ï¼š%s)
+ 未找到有效的組態,請先啟動ä¸ç¹¼å™¨
+ 建立 P2P 群組失敗 (åŽŸå› ï¼š%s)
+ æœå‹™ä¸å¯ç”¨ï¼Œè«‹ç¨å¾Œå†è©¦
+ 內部錯誤
+ æœªæ·»åŠ æœå‹™è«‹æ±‚
+ Wi\u2011Fi Direct 䏿”¯æ´
+ 䏿”¯æ´çš„作æ¥
+ 由於系統é™åˆ¶ï¼Œé—œé–‰å®šä½æœå‹™å¯èƒ½æœƒå°Žè‡´å•é¡Œä¸¦å¢žåŠ é›»æ± ä½¿ç”¨é‡
+ è¨å®š
+ ä¸ç¹¼å™¨éœ€è¦ç²¾ç¢ºä½ç½®å˜å–權
+ Wi\u2011Fi Direct ä¸å¯ç”¨ï¼Œè«‹å•Ÿç”¨ Wi\u2011Fi
+ 開啟
+ 移除 P2P 群組失敗 (åŽŸå› ï¼š%s)
+ 移除舊 P2P 群組失敗 (åŽŸå› ï¼š%s)
+ è¨å®šå·¥ä½œé »é“失敗 (åŽŸå› ï¼š%s)
+ WPS(ä¸å®‰å…¨ï¼‰
+ WPS 按鈕
+ 輸入 PIN 碼
+ 開啟 WPS 失敗 (åŽŸå› ï¼š%s)
+ PIN å·²è¨å®š
+ 請在兩分é˜å…§åœ¨éœ€è¦é€£ç·šçš„è£ç½®ä¸Šï¼ŒæŒ‰ä¸‹ WPS 按鈕以連線到æ¤ä¸ç¹¼å™¨
+ "æœå°‹"
+ 下游
+ 離開
+ 說明
+ é›œé …
+ 抖內
+ PayPalã€Flattr ç‰å…¶ä»–æ–¹å¼â€¦
+ 我喜æ¡éŒ¢
+ 匯出åµéŒ¯è³‡è¨Š
+ 這種éžå¸¸æœ‰ç”¨å•Š (^O^)ï¼
+ 專案首é @ GitHub
+ é–±è®€ä½¿ç”¨èªªæ˜Žï¼Œå° GitHub repo åŠ æ˜Ÿè™Ÿï¼Œæäº¤å•題並åˆä½œåƒèˆ‡é–‹ç™¼
+ é‡å•Ÿæ‡‰ç”¨ç¨‹å¼ä»¥å¥—用è¨å®šå€¼
+ 自動啟動æœå‹™
+ è£ç½®é‡æ–°å•Ÿå‹•或應用å‡ç´šå¾Œè‡ªå‹•æ¢å¾©ä¹‹å‰åŸ·è¡Œçš„æœå‹™
+ 清ç†/釿–°å¥—用路由è¦å‰‡
+ 將修改的è¨å®šå¥—用到目å‰å•Ÿç”¨çš„æœå‹™ä¸Šï¼Œä¹Ÿå¯ç”¨æ–¼ä¿®å¾©å¶çˆ¾æœƒç™¼ç”Ÿçš„ç«¶æ…‹æ¢ä»¶
+ 啟用 DHCP å› æ‡‰æŽªæ–½
+ 如果è£ç½®ç„¡æ³•å–å¾— IP ä½å€ï¼Œå˜—試開啟這é¸é …
+ åœç”¨ IPv6 共用
+ é˜²æ¢ VPN é€éŽ IPv6 æ´©æ¼
+ 網路狀態監視模å¼
+ Netlink 監視
+ Netlink 監視 (root)
+ 輪詢
+ 輪詢 (root)
+ IP å½è£æ¨¡å¼
+ Android Netd æœå‹™
+ ç„¡
+ 簡易
+ ä¸ç¹¼å®‰å…¨æ¨¡å¼
+ ä¸å°ç³»çµ±çµ„æ…‹åšä»»ä½•變更,但是å¯èƒ½éœ€è¦è¼ƒé•·çš„ SSID
+ ä½¿ç”¨çŸ SSID å¯èƒ½éœ€è¦é—œé–‰å®‰å…¨æ¨¡å¼ã€‚
+ 上游網路介é¢
+ 自動檢測系統 VPN æœå‹™
+ ç›®å‰ä¸Šæ¸¸ä»‹é¢
+ %1$s;後æ´ï¼š%2$s
+ ä¿æŒ Wi\u2011Fi 開啟
+ 開啟
+ 高效能模å¼
+ 關閉çœé›»æ¨¡å¼
+ ä½Žå»¶é²æ¨¡å¼
+ 系統é è¨
+ ç¶²è·¯å…±ç”¨ç¡¬é«”åŠ é€Ÿ
+ 系統「開發人員é¸é …ã€çš„æ·å¾‘
+ 上游
+ 後æ´ä¸Šæ¸¸ä»‹é¢
+ 自動檢測系統é è¨ç¶²è·¯
+ "999+"
+ "%1$sã€%2$s"
+ 需è¦é–‹å•Ÿå®šä½
+ 系統網路共用管ç†â€¦
+ è—牙網路共用
+ "乙太網路網路共用"
+ USB 網路共用 (NCM)
+ 如果 VPN 網路共用ä¸èµ·ä½œç”¨ï¼Œè«‹åœ¨ã€Œé–‹ç™¼äººå“¡é¸é …ã€ä¸é—œé–‰ã€Œç¶²è·¯å…±ç”¨ç¡¬é«”åŠ é€Ÿã€
+ USB 網路共用
+ Wi\u2011Fi 無線基地å°
+ å·²éš±è— %1$s:%2$s
+ 複製 MAC
+ 隨機 AP MAC
+ 橋接 AP 並行
+ STA/AP 並行
+ STA/橋接 AP 並行
+ %1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s
+ %4$s:Wi\u2011Fi %5$d,%1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s,
+ 閒置逾時已åœç”¨
+ %4$s:Wi\u2011Fi %5$d,%1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s,
+ 閒置逾時 %6$s
+ ç„¡
+ \n支æ´é »é“:%s
+ 監視…
+ %s (å—監視)
+ 臨時 Wi\u2011Fi 無線基地å°
+ 啟動無線基地å°å¤±æ•— (åŽŸå› ï¼š%s)
+ 一般錯誤
+ ä¸ç›¸å®¹çš„æ¨¡å¼
+ æ²’æœ‰é »é“
+ ç¶²è·¯å…±ç”¨å·²ç¦æ¢
+ 用戶端
+ ä¸ç¹¼å™¨
+ è¨å®š
+ 網路共用
+ æ›´æ–°
+ "關閉"
+ "開啟"
+ "MAC ä½å€"
+ è£ç½®ç™½åå–®
+ %s GHz é »å¸¶
+ åœç”¨
+ è£ç½®é»‘åå–®
+ 啟用橋接模å¼éš¨æ©Ÿé—œé–‰
+ éŽæ¿¾å¯ä»¥é€£ç·šçš„è£ç½®
+ "éš±è—的網路"
+ å˜å–控制
+ 進階 AP é¸é …
+ AP é »å¸¶
+ 在沒有任何è£ç½®é€£ç·šæ™‚關閉 WIFI 無線基地å°
+ éžä½¿ç”¨ä¸é—œé–‰é€¾æ™‚
+ é è¨é€¾æ™‚:%d 毫秒
+ 啟用 Wi\u2011Fi 6
+ 啟用 Wi\u2011Fi 7
+ 隨機化 MAC ä½å€
+ 最大連線è£ç½®æ•¸é‡
+ 密碼
+ 儲å˜
+ 安全性
+ 網路å稱
+ 使用者æä¾›çµ„æ…‹
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-zu/values-zu.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-zu/values-zu.xml
new file mode 100644
index 00000000..80898b51
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values-zu/values-zu.xml
@@ -0,0 +1,140 @@
+
+
+
+ - %d izaziso ezintsha
+ - %d izaziso ezintsha
+
+ "Zulazulela ekhaya"
+ "Zulazulela phezulu"
+ "Ezinye izinketho"
+ "Kwenziwe"
+ "Buka konke"
+ "Khetha insiza"
+ "VALA"
+ "VULA"
+ "Alt+"
+ "Ctrl+"
+ "delete"
+ "enter"
+ "Function+"
+ "Meta+"
+ "Shift+"
+ "space"
+ "Sym+"
+ "Imenyu+"
+ "Sesha…"
+ "Sula inkinga"
+ "Sesha umbuzo"
+ "Sesha"
+ "Thumela umbuzo"
+ "Ukusesha ngezwi"
+ "Yabelana no"
+ "Yabelana ne-%s"
+ "Goqa"
+ Goqa ishidi eliphansi
+ Nweba ishidi eliphansi
+ Nweba phakathi
+ Hudula isibambi esithephwe kabili
+ Hudula isibambi
+ "Phendula"
+ "Ividiyo"
+ "Yenqaba"
+ "Vala Ucingo"
+ "Ikholi engenayo"
+ "Ikholi eqhubekayo"
+ "Ukuveza ikholi engenayo"
+ Izinhlamvu ezifakiwe ezingu-%1$d zokungu-%2$d
+ Umkhawulo wezinhlamvu udlule u-%1$d kokungu-%2$d
+ Sula umbhalo
+ Nika amandla
+ I-%1$s ngeke isebenze ngaphandle kokuthi unike amandla amasevisi we-Google Play.
+ Nika amandla amasevisi we-Google Play
+ Faka
+ I-%1$s ngeke ize iqalise ngaphandle kwamasevisi we-Google Play, angekho kusukela kudivayisi yakho.
+ Thola amasevisi we-Google Play
+ Ukungatholakali kwamasevisi e-Google Play
+ Iphutha lamasevisi we-Google Play
+ %1$s inenkinga ngamasevisi e-Google Play. Sicela uzame futhi.
+ %1$s ngeke isebenze ngaphandle kwamasevisi e-Google Play, angasekelwa idivayisi yakho.
+ Isibuyekezo
+ I-%1$s ngeke ize iqalise ngaphandle kokuthi ubuyekeze i-Google Play.
+ Buyekeza amasevisi we-Google Play
+ I-%1$s ngeke ize iqalise ngaphandle kwamasevisi we-Google Play, okwamanje abuyekezwayo.
+ Kudingeka inguqulo entsha yamasevisi we-Google Play. Izozibuyekeza ngokwayo maduze.
+ Vula kufoni
+ Ngena ngemvume
+ Ngena ngemvume nge-Google
+ "Kopisha"
+ "Isixhumanisi sikopishelwe ku-clipboard"
+ Iphutha
+ "Okuthuthukisiwe"
+ Bonisa imenyu yokudonsela phansi
+ "Kopisha isixhumanisi"
+ "Vula kusiphequluli"
+ "Yabelana ngesixhumanisi"
+ Isithonjana sebhokisi
+ Ithebhu
+ Khetha u-AM noma u-PM
+ amahora angu-%1$s
+ Khetha ihora
+ %1$s ezimpondweni
+ Khetha amaminithi
+ amaminithi angu-%1$s
+ AM
+ Shintshela kumodi yewashi ngokufakwa kwesikhathi.
+ Ihora
+ Iminithi
+ PM
+ Khetha isikhathi
+ Shintshela kumodi yokufaka umbhalo ngokufaka isikhathi.
+ Isaziso esisha
+ Susa i-%1$s
+ Izaziso ezintsha ezingaphezu kokungu-%1$d
+ Shintshela kunyanga elandelayo
+ Shintshela kunyanga edlule
+ Ukukhethwa kosuku lokuqala: %1$s – Ukukhethwa kosuku lokuphela: %2$s
+ Ukukhetha kwamanje: %1$s
+ lutho
+ Khansela
+ KULUNGILE
+ %1$s
+ Khetha Idethi
+ Khetha idethi
+ Ikholomu yezinsuku: %1$s
+ Ilanga lokuphela %1$s
+ Ifomethi engavumelekile.
+ Isibonelo: %1$s
+ Sebenzisa: %1$s
+ Ibanga elingavumelekile.
+ Funa onyakeni wamanje %1$d
+ Zulela onyakeni %1$d
+ Ikude kubanga: %1$s
+ Idethi yokuqala – %1$s
+ %1$s – Idethi yokuphela
+ %1$s – %2$s
+ Khetha Ibanga
+ Idethi yokuqala – Idethi yokuphela
+ Londoloza
+ Ilanga lokuqala %1$s
+ Idethi
+ Idethi yokuphela
+ Idethi yokuqala
+ d
+ m
+ y
+ Namuhla %1$s
+ Shintshela kwimodi yokufaka yekhalenda
+ Thepha ukuze ushintshele ekubukeni Kwekhalenda
+ Shintshela kwimodi yokufaka yombhalo
+ Thepha ukuze ushintshele ekubukeni konyaka
+ Khansela
+ KULUNGILE
+ "Ayisethiwe"
+ Bonisa iphasiwedi
+ "\"%1$s\" kukopishelwe kuklibhodi."
+ "Sesha"
+ "999+"
+ "%1$s, %2$s"
+ "VALA"
+ "VULA"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values/values.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values/values.xml
new file mode 100644
index 00000000..13da6eba
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merged.dir/values/values.xml
@@ -0,0 +1,13733 @@
+
+
+
+ - @string/settings_service_ip_monitor_monitor
+ - @string/settings_service_ip_monitor_monitor_root
+ - @string/settings_service_ip_monitor_poll
+ - @string/settings_service_ip_monitor_poll_root
+
+
+ - Monitor
+ - MonitorRoot
+ - Poll
+ - PollRoot
+
+
+ - @string/settings_service_masquerade_none
+ - @string/settings_service_masquerade_simple
+ - @string/settings_service_masquerade_netd
+
+
+ - None
+ - Simple
+ - Netd
+
+
+ - @string/settings_service_wifi_lock_none
+ - @string/settings_service_wifi_lock_full
+ - @string/settings_service_wifi_lock_high_perf
+
+
+ - None
+ - Full
+ - HighPerf
+
+
+ - @string/wifi_mac_randomization_none
+ - @string/wifi_mac_randomization_persistent
+ - @string/wifi_mac_randomization_non_persistent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ false
+ false
+ true
+ true
+ #ff000000
+ #ffffffff
+ #7fa87f
+ @android:color/black
+ @android:color/black
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ #1f000000
+ #8a000000
+ @color/material_grey_800
+ @android:color/white
+ @color/material_grey_850
+ @color/material_grey_50
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #F5F5F5
+ #1E000000
+ #DE000000
+ #646464
+ #ff5a595b
+ #ffd6d7d7
+ #1d873b
+ #d93025
+ #FF424242
+ #FFFFFFFF
+ #03000000
+ #37000000
+ @color/light_colorPrimary
+ #087f23
+ #AEEA00
+ @android:color/white
+ #1F000000
+ @android:color/black
+ @android:color/white
+ #90000000
+ #1F000000
+ #90000000
+ #DE000000
+ #2e7d32
+ #14000000
+ #121212
+ #CF6679
+ #FFFFFF
+ #000000
+ #000000
+ #000000
+ #FFFFFF
+ #BA86FC
+ #000000
+ #3700B3
+ #03DAC6
+ #03DAC6
+ #121212
+ #FFFFFF
+ #B00020
+ #000000
+ #FFFFFF
+ #FFFFFF
+ #000000
+ #000000
+ #6200EE
+ #3700B3
+ #3700B3
+ #03DAC6
+ #018786
+ #FFFFFF
+ @android:color/transparent
+ #14000000
+ #44000000
+ #0A000000
+ #0F000000
+ #1AFFFFFF
+ #2EFFFFFF
+ #323232
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ #ff7043
+ #ff5722
+ @android:color/white
+ @android:color/black
+ #6680cbc4
+ #66009688
+ #4CAF50
+ #ff000000
+ #ff000000
+ #ff410e0b
+ #ffffffff
+ #ff601410
+ #ff8c1d18
+ #ffb3261e
+ #ffdc362e
+ #ffe46962
+ #ffec928e
+ #fff2b8b5
+ #fff9dedc
+ #fffceeee
+ #fffffbf9
+ #ff000000
+ #ff1d1b20
+ #ffffffff
+ #ff211f26
+ #ff2b2930
+ #ff322f35
+ #ff36343b
+ #ff3b383e
+ #ff48464c
+ #ff0f0d13
+ #ff605d64
+ #ff79767d
+ #ff141218
+ #ff938f96
+ #ffaea9b1
+ #ffcac5cd
+ #ffded8e1
+ #ffe6e0e9
+ #ffece6f0
+ #fff3edf7
+ #fff5eff7
+ #fff7f2fa
+ #fffef7ff
+ #fffffbff
+ #ff000000
+ #ff1d1a22
+ #ffffffff
+ #ff322f37
+ #ff49454f
+ #ff605d66
+ #ff79747e
+ #ff938f99
+ #ffaea9b4
+ #ffcac4d0
+ #ffe7e0ec
+ #fff5eefa
+ #fffffbfe
+ #ff000000
+ #ff21005d
+ #ffffffff
+ #ff381e72
+ #ff4f378b
+ #ff6750a4
+ #ff7f67be
+ #ff9a82db
+ #ffb69df8
+ #ffd0bcff
+ #ffeaddff
+ #fff6edff
+ #fffffbfe
+ #ff000000
+ #ff1d192b
+ #ffffffff
+ #ff332d41
+ #ff4a4458
+ #ff625b71
+ #ff7a7289
+ #ff958da5
+ #ffb0a7c0
+ #ffccc2dc
+ #ffe8def8
+ #fff6edff
+ #fffffbfe
+ #ff000000
+ #ff31111d
+ #ffffffff
+ #ff492532
+ #ff633b48
+ #ff7d5260
+ #ff986977
+ #ffb58392
+ #ffd29dac
+ #ffefb8c8
+ #ffffd8e4
+ #ffffecf1
+ #fffffbfa
+ #ffffffff
+ @color/m3_ref_palette_neutral6
+ @color/m3_ref_palette_error80
+ @color/m3_ref_palette_error30
+ @color/m3_ref_palette_neutral20
+ @color/m3_ref_palette_primary40
+ @color/m3_ref_palette_neutral90
+ @color/m3_ref_palette_neutral90
+ @color/m3_ref_palette_error20
+ @color/m3_ref_palette_error90
+ @color/m3_ref_palette_primary20
+ @color/m3_ref_palette_primary90
+ @color/m3_ref_palette_secondary20
+ @color/m3_ref_palette_secondary90
+ @color/m3_ref_palette_neutral90
+ @color/m3_ref_palette_neutral_variant80
+ @color/m3_ref_palette_tertiary20
+ @color/m3_ref_palette_tertiary90
+ @color/m3_ref_palette_neutral_variant60
+ @color/m3_ref_palette_neutral_variant30
+ @color/m3_ref_palette_primary80
+ @color/m3_ref_palette_primary30
+ @color/m3_ref_palette_secondary80
+ @color/m3_ref_palette_secondary30
+ @color/m3_ref_palette_neutral6
+ @color/m3_ref_palette_neutral24
+ @color/m3_ref_palette_neutral12
+ @color/m3_ref_palette_neutral17
+ @color/m3_ref_palette_neutral22
+ @color/m3_ref_palette_neutral10
+ @color/m3_ref_palette_neutral4
+ @color/m3_ref_palette_neutral6
+ @color/m3_ref_palette_neutral_variant30
+ @color/m3_ref_palette_tertiary80
+ @color/m3_ref_palette_tertiary30
+ @color/m3_ref_palette_neutral98
+ @color/m3_ref_palette_error40
+ @color/m3_ref_palette_error90
+ @color/m3_ref_palette_neutral95
+ @color/m3_ref_palette_primary80
+ @color/m3_ref_palette_neutral20
+ @color/m3_ref_palette_neutral10
+ @color/m3_ref_palette_error100
+ @color/m3_ref_palette_error10
+ @color/m3_ref_palette_primary100
+ @color/m3_ref_palette_primary10
+ @color/m3_ref_palette_secondary100
+ @color/m3_ref_palette_secondary10
+ @color/m3_ref_palette_neutral10
+ @color/m3_ref_palette_neutral_variant30
+ @color/m3_ref_palette_tertiary100
+ @color/m3_ref_palette_tertiary10
+ @color/m3_ref_palette_neutral_variant50
+ @color/m3_ref_palette_neutral_variant80
+ @color/m3_ref_palette_primary40
+ @color/m3_ref_palette_primary90
+ @color/m3_ref_palette_secondary40
+ @color/m3_ref_palette_secondary90
+ @color/m3_ref_palette_neutral98
+ @color/m3_ref_palette_neutral98
+ @color/m3_ref_palette_neutral94
+ @color/m3_ref_palette_neutral92
+ @color/m3_ref_palette_neutral90
+ @color/m3_ref_palette_neutral96
+ @color/m3_ref_palette_neutral100
+ @color/m3_ref_palette_neutral87
+ @color/m3_ref_palette_neutral_variant90
+ @color/m3_ref_palette_tertiary40
+ @color/m3_ref_palette_tertiary90
+ @color/m3_ref_palette_primary10
+ @color/m3_ref_palette_primary30
+ @color/m3_ref_palette_secondary10
+ @color/m3_ref_palette_secondary30
+ @color/m3_ref_palette_tertiary10
+ @color/m3_ref_palette_tertiary30
+ @color/m3_ref_palette_primary90
+ @color/m3_ref_palette_primary80
+ @color/m3_ref_palette_secondary90
+ @color/m3_ref_palette_secondary80
+ @color/m3_ref_palette_tertiary90
+ @color/m3_ref_palette_tertiary80
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff008577
+ #fff5f5f5
+ #ffe0e0e0
+ #fffafafa
+ #ff757575
+ #ff424242
+ #ff303030
+ #ff212121
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #FFFFFF
+ #61000000
+ #00ffffff
+ #52000000
+ #6B000000
+ #1F000000
+ #0A000000
+ #00000000
+ #DE000000
+ #6000
+ #ffffffff
+ #ff9e9e9e
+ #ff008577
+ #FAFAFA
+ @android:color/black
+ @color/material_grey_600
+ @color/material_grey_900
+ @color/material_grey_100
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #33ffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+ #e6616161
+ #e6FFFFFF
+ 16dp
+ 72dp
+ 56dp
+ 0dp
+ 0dp
+ 4dp
+ 16dp
+ 10dp
+ 6dp
+ 48dp
+ 180dp
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+ 48dp
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+ 720dp
+ 320dp
+ 2dp
+ 4dp
+ 4dp
+ 2dp
+ - 80%
+ - 100%
+ - 320dp
+ - 320dp
+ 8dp
+ 8dp
+ - 65%
+ - 95%
+ 24dp
+ 18dp
+ 8dp
+ - 0.30
+ - 0.26
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+ 16dp
+ 80dp
+ 64dp
+ 48dp
+ @dimen/abc_action_bar_content_inset_material
+ 296dp
+ 4dp
+ 48dip
+ 320dip
+ 2dp
+ 2dp
+ 20dp
+ 48dp
+ 36dp
+ 16dp
+ 3dp
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 14sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+ 16dp
+ 500dp
+ 20dp
+ 1dp
+ 2dp
+ 2dp
+ 64dp
+ 4dp
+ 6dp
+ 8dp
+ 4dp
+ 2dp
+ 320dp
+ 320dp
+ 10dp
+ 4dp
+ 168dp
+ 96dp
+ 14sp
+ 8dp
+ 56dp
+ 24dp
+ 96dp
+ 56dp
+ 10dp
+ 8dp
+ 1dp
+ 12sp
+ 8dp
+ 16dp
+ 64dp
+ 0.5dp
+ 6dp
+ 24dp
+ 40dp
+ 56dp
+ 6dp
+ 6dp
+ 16dp
+ 32dp
+ 24dp
+ 16dp
+ 32dp
+ 4dp
+ 280dp
+ 8dp
+ 8dp
+ 128dp
+ - 1.0
+ 0dp
+ 6dp
+ 0dp
+ -1px
+ -1px
+ 12dp
+ 14dp
+ 16dp
+ 14sp
+ 264dp
+ 72dp
+ 14sp
+ 12sp
+ 5dp
+ - 0.30
+ - 0.26
+ 8dp
+ 0dp
+ 50dp
+ - 0.26
+ - 0.20
+ - 0.12
+ - 0.50
+ - 0.38
+ - 0.70
+ - 0.54
+ 20dp
+ 800dp
+ 120dp
+ 56dp
+ 14dp
+ 14dp
+ 28dp
+ @dimen/m3_sys_elevation_level3
+ 16dp
+ 24dp
+ 16dp
+ 16dp
+ 16dp
+ 96dp
+ 112dp
+ 112dp
+ @dimen/m3_comp_top_app_bar_small_container_height
+ @dimen/m3_comp_top_app_bar_large_container_height
+ @dimen/m3_comp_top_app_bar_medium_container_height
+ 48dp
+ 24dp
+ 24dp
+ 8dp
+ 12dp
+ 24dp
+ 48dp
+ 1.5dp
+ 6dp
+ @dimen/m3_comp_badge_size
+ 1.5dp
+ 3dp
+ 12dp
+ @dimen/m3_comp_badge_large_size
+ 4dp
+ 2dp
+ @dimen/m3_comp_navigation_bar_active_indicator_height
+ 4dp
+ @dimen/m3_comp_navigation_bar_active_indicator_width
+ 16dp
+ 12dp
+ @dimen/m3_comp_navigation_bar_container_height
+ 20dp
+ @dimen/m3_sys_elevation_level1
+ @dimen/m3_sys_elevation_level1
+ 6dp
+ 4dp
+ 12dp
+ 16dp
+ @dimen/m3_comp_bottom_app_bar_container_height
+ 4dp
+ 64dp
+ 8dp
+ 0dp
+ 0dp
+ @dimen/m3_comp_elevated_button_container_elevation
+ 0dp
+ 16dp
+ 24dp
+ 10dp
+ 20dp
+ 0dp
+ 20dp
+ 4dp
+ 320dp
+ 6dp
+ 24dp
+ 24dp
+ 6dp
+ 1dp
+ 12dp
+ 16dp
+ 12dp
+ 12dp
+ 0dp
+ 1dp
+ 0dp
+ 6dp
+ 0dp
+ 7dp
+ @dimen/m3_comp_elevated_card_container_elevation
+ 2dp
+ @dimen/m3_sys_elevation_level0
+ 1dp
+ 1dp
+ 2dp
+ 10dp
+ 1dp
+ 28dp
+ 56dp
+ 40dp
+ 1dp
+ 8dp
+ -1dp
+ 7dp
+ 1dp
+ 2dp
+ 18dp
+ 32dp
+ @dimen/m3_sys_elevation_level1
+ @dimen/m3_sys_elevation_level0
+ 1dp
+ 18dp
+ 16dp
+ 6dp
+ @dimen/m3_sys_elevation_level2
+ 80dp
+ - 0.38
+ 4dp
+ 1dp
+ 120dp
+ 128dp
+ 1dp
+ @dimen/m3_sys_elevation_level1
+ @dimen/m3_sys_elevation_level0
+ @dimen/m3_sys_elevation_level1
+ 24dp
+ @dimen/m3_sys_elevation_level3
+ 56dp
+ @dimen/m3_sys_elevation_level3
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_elevation_level4
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ 24dp
+ @dimen/m3_sys_elevation_level3
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ @dimen/m3_sys_elevation_level3
+ 56dp
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_elevation_level4
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ 24dp
+ 96dp
+ 36dp
+ @dimen/m3_sys_elevation_level3
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ 40dp
+ 24dp
+ @dimen/m3_sys_elevation_level2
+ @dimen/m3_sys_elevation_level0
+ 18dp
+ @dimen/m3_sys_elevation_level0
+ @dimen/m3_sys_state_dragged_state_layer_opacity
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ 24dp
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ - 0.38
+ 32dp
+ @dimen/m3_sys_elevation_level1
+ @dimen/m3_sys_elevation_level0
+ 1dp
+ 18dp
+ @dimen/m3_sys_elevation_level0
+ 32dp
+ 1dp
+ 24dp
+ 18dp
+ 4dp
+ @dimen/m3_sys_elevation_level2
+ 32dp
+ 64dp
+ @dimen/m3_sys_elevation_level2
+ 80dp
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ 24dp
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ 360dp
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ 24dp
+ @dimen/m3_sys_elevation_level1
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ @dimen/m3_sys_elevation_level0
+ 32dp
+ 56dp
+ @dimen/m3_sys_elevation_level0
+ 80dp
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ 24dp
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ @dimen/m3_sys_elevation_level2
+ - 0.12
+ 1dp
+ @dimen/m3_sys_elevation_level0
+ - 0.12
+ 24dp
+ 1dp
+ 1dp
+ - 0.38
+ - 0.38
+ - 0.38
+ 2dp
+ 1dp
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ 3dp
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ 24dp
+ - 0.38
+ - 0.38
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ 30dp
+ @dimen/m3_sys_elevation_level3
+ 56dp
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ @dimen/m3_sys_elevation_level3
+ 56dp
+ 72dp
+ 2dp
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ 4dp
+ 32dp
+ @dimen/m3_sys_elevation_level1
+ @dimen/m3_sys_elevation_level1
+ 256dp
+ @dimen/m3_sys_elevation_level1
+ @dimen/m3_sys_elevation_level0
+ - 0.38
+ - 0.38
+ - 0.12
+ 4dp
+ @dimen/m3_sys_elevation_level3
+ 32dp
+ @dimen/m3_sys_elevation_level1
+ @dimen/m3_sys_elevation_level0
+ 1dp
+ 18dp
+ - 1
+ - 0.38
+ - 0.12
+ - 0.38
+ - 0.38
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ 32dp
+ 52dp
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ 2dp
+ @dimen/m3_sys_elevation_level3
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ 1dp
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ 152dp
+ 112dp
+ @dimen/m3_sys_elevation_level0
+ 64dp
+ @dimen/m3_sys_elevation_level2
+ @dimen/m3_sys_elevation_level3
+ 8dp
+ 8dp
+ 20dp
+ 12dp
+ 56dp
+ 16dp
+ 8dp
+ 0dp
+ 30%
+ 2dp
+ 6dp
+ 36dp
+ 96dp
+ 4dp
+ @dimen/m3_comp_menu_container_elevation
+ 14dp
+ 16dp
+ 4dp
+ 28dp
+ 12dp
+ 0dp
+ 12dp
+ 12dp
+ 0dp
+ 4dp
+ 28dp
+ 28dp
+ @dimen/m3_comp_navigation_rail_container_width
+ @dimen/m3_comp_navigation_rail_container_elevation
+ @dimen/m3_comp_navigation_rail_icon_size
+ @dimen/m3_comp_navigation_rail_active_indicator_height
+ 4dp
+ @dimen/m3_comp_navigation_rail_active_indicator_width
+ 60dp
+ 8dp
+ 16dp
+ 4dp
+ 12dp
+ @dimen/m3_sys_state_dragged_state_layer_opacity
+ @dimen/m3_sys_state_focus_state_layer_opacity
+ @dimen/m3_sys_state_hover_state_layer_opacity
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ @dimen/m3_sys_state_pressed_state_layer_opacity
+ @dimen/m3_comp_search_bar_container_elevation
+ @dimen/m3_comp_search_bar_container_height
+ 16dp
+ 16dp
+ 1dp
+ 4dp
+ 16dp
+ 16sp
+ 1dp
+ @dimen/m3_comp_search_view_container_elevation
+ @dimen/m3_comp_search_view_full_screen_header_container_height
+ 16dp
+ @dimen/m3_comp_sheet_side_docked_modal_container_elevation
+ @dimen/m3_comp_sheet_side_docked_standard_container_elevation
+ @dimen/m3_comp_sheet_side_docked_container_width
+ - 0.08
+ - 0.12
+ @dimen/m3_comp_slider_inactive_track_height
+ 2dp
+ 24dp
+ 40dp
+ - 1.0
+ 8dp
+ 0dp
+ 1dp
+ 3dp
+ 6dp
+ 8dp
+ 12dp
+ - 0.3
+ - 0.8
+ - 0
+ - 0.2
+ - 0.1
+ - 0.1
+ - 0.7
+ - 1
+ - 0.4
+ - 1
+ - 0
+ - 1
+ - 0.4
+ - 0.2
+ - 0
+ - 1
+ - 0
+ - 0.2
+ - 0
+ - 1
+ - 0
+ - 1
+ - 0
+ - 1
+ - 0.3
+ - 1
+ - 0
+ - 1
+ - 0.2
+ - 0
+ - 0
+ - 1
+ - 0
+ - 0
+ - 0
+ - 1
+ - 0.16
+ - 0.10
+ - 0.08
+ - 0.10
+ 2dp
+ @dimen/m3_comp_time_picker_container_elevation
+ 20dp
+ 640dp
+ 80dp
+ 24dp
+ 96dp
+ 24dp
+ 44dp
+ 4dp
+ 4dp
+ 2dp
+ 15sp
+ 96dp
+ 12dp
+ 12dp
+ 52dp
+ 256dp
+ -4dp
+ 2dp
+ 1dp
+ - 0.38
+ - 0.12
+ - 0.87
+ - 0.6
+ 12dp
+ 23dp
+ 8dp
+ 32dp
+ 4dp
+ 8dp
+ 4dp
+ 12dp
+ 8dp
+ 2dp
+ 245dp
+ 488dp
+ 56dp
+ 560dp
+ 340dp
+ 80dp
+ 24dp
+ 24dp
+ 80dp
+ 24dp
+ 4dp
+ 4dp
+ 8dp
+ 6dp
+ 10sp
+ 12dp
+ 12dp
+ 16dp
+ 60dp
+ 16dp
+ 5dp
+ 8dp
+ 0dp
+ 56dp
+ 4dp
+ 64dp
+ 0dp
+ 0dp
+ 2dp
+ 2dp
+ 2dp
+ 12dp
+ 8dp
+ 6dp
+ - 0.07
+ 320dp
+ 4dp
+ 16dp
+ 16dp
+ 4dp
+ 6dp
+ 8dp
+ 1dp
+ 4dp
+ 8dp
+ 8dp
+ 14sp
+ 0dp
+ 64dp
+ 52dp
+ 8dp
+ 0dp
+ 12dp
+ 15dp
+ 32dp
+ 3dp
+ 1dp
+ 1dp
+ 36dp
+ 24dp
+ 16dp
+ 12dp
+ 4dp
+ 1dp
+ 120dp
+ 128dp
+ 32dp
+ 12dp
+ 8dp
+ 24dp
+ 0dp
+ 480dp
+ 2dp
+ 0dp
+ 4dp
+ 48dp
+ 4dp
+ 8dp
+ 104dp
+ 20dp
+ 24dp
+ 100dp
+ 16dp
+ 28dp
+ 68dp
+ 18dp
+ 52dp
+ 8dp
+ 8dp
+ 88dp
+ 8dp
+ 24dp
+ 4dp
+ 5dp
+ 1dp
+ 8dp
+ 3dp
+ 14sp
+ 8dp
+ -8dp
+ 8dp
+ 12dp
+ 0dp
+ 0dp
+ 6dp
+ 20dp
+ 20dp
+ 24dp
+ 12dp
+ 48dp
+ 120dp
+ 20dp
+ 12dp
+ 12dp
+ 0dp
+ 2dp
+ 6dp
+ 6dp
+ 48dp
+ 2dp
+ 6dp
+ - 0.00
+ - 0.24
+ - 0.08
+ - 0.24
+ - 0.00
+ - 0.12
+ - 0.04
+ - 0.12
+ 48dp
+ 24dp
+ 8dp
+ 0dp
+ 22dp
+ 14dp
+ 24dp
+ 8dp
+ 4dp
+ 14dp
+ 56dp
+ 72dp
+ 8dp
+ 14dp
+ 24dp
+ 8dp
+ 16dp
+ 12dp
+ 4dp
+ 2dp
+ 4dp
+ 4dp
+ 18dp
+ 40dp
+ 20dp
+ 40dp
+ 28dp
+ 2.5dp
+ 4dp
+ 3dp
+ 2dp
+ 4dp
+ 0dp
+ 4dp
+ 4dp
+ 24dp
+ 4dp
+ 13dp
+ 26dp
+ 1dp
+ 10dp
+ 1dp
+ 4dp
+ 16dp
+ 48dp
+ - 0.5
+ 4dp
+ - 0.8
+ 8dp
+ 8dp
+ 8dp
+ 16dp
+ 4dp
+ 16dp
+ 32dp
+ @dimen/m3_comp_switch_track_height
+ @dimen/m3_comp_switch_track_width
+ 4dp
+ 0dp
+ 4dp
+ @dimen/m3_comp_outlined_text_field_outline_width
+ @dimen/m3_comp_outlined_text_field_focus_outline_width
+ 16dp
+ 4dp
+ 16dp
+ 4dp
+ 56dp
+ 14dp
+ 4dp
+ 32dp
+ 32dp
+ 12dp
+ 30dp
+ 32dp
+ 13sp
+ 12dp
+ 8dp
+ 64dp
+ 64dp
+ 10dp
+ @dimen/notification_content_margin_start
+ 16dp
+ 2dp
+ 3dp
+ 24dp
+ 13sp
+ 10dp
+ 5dp
+ 0dp
+ 0dp
+ 0dp
+ 15dp
+ 36dp
+ 300dp
+ 384dp
+ 264dp
+ 600dp
+ 15dp
+ 56dp
+ 2dp
+ 16dp
+ 8dp
+ 8dp
+ 96dp
+ 6.5dp
+ 0dp
+ 16dp
+ 48dp
+ - @drawable/material_ic_keyboard_arrow_right_black_24dp
+ - @drawable/material_ic_keyboard_arrow_left_black_24dp
+ #3333B5E5
+ #0cffffff
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+ 150
+ 150
+ 127
+ 150
+ 2
+ 300
+ 12451000
+ 320
+ 999
+ 100
+ 100
+ 75
+ 120
+ 100
+ 700
+ 800
+ 900
+ 1000
+ 450
+ 500
+ 550
+ 600
+ 250
+ 300
+ 350
+ 400
+ 50
+ 100
+ 150
+ 200
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 300
+ 350
+ 200
+ 250
+ 75
+ 150
+ 0
+ 4
+ 100
+ 100
+ 1
+ 1
+ 3
+ 75
+ 120
+ 100
+ @integer/m3_sys_motion_duration_medium1
+ @integer/m3_sys_motion_duration_short3
+ @integer/m3_sys_motion_duration_short2
+ @integer/m3_sys_motion_duration_short2
+ 16
+ 32
+ 32
+ 52
+ 250
+ 2
+ 1
+ 0
+ 1
+ 0
+ 200
+ 5
+ 999
+
+ - Connected 1 time since %2$s
+ - Connected %1$s times since %2$s
+
+
+ - Sent 1 packet, %2$s
+ - Sent %1$s packets, %2$s
+
+
+ - Received 1 packet, %2$s
+ - Received %1$s packets, %2$s
+
+
+ - %d new notification
+ - %d new notifications
+
+
+ - %d device connected to %s
+ - %d devices connected to %s
+
+
+ - %d interface
+ - %d interfaces
+
+
+ - %d device
+ - %d devices
+
+
+ - %1$s/%2$d client connected\nSupported features: %3$s
+ - %1$s/%2$d clients connected\nSupported features: %3$s
+
+
+ - %d client connected
+ - %1d clients connected
+
+ Navigate home
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ OFF
+ ON
+ Alt+
+ Ctrl+
+ delete
+ enter
+ Function+
+ Meta+
+ Shift+
+ space
+ Sym+
+ Menu+
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+ androidx.startup
+ VPN Hotspot MOD
+ com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior
+ com.google.android.material.bottomsheet.BottomSheetBehavior
+ Collapse the bottom sheet
+ Expand the bottom sheet
+ Expand halfway
+ Drag handle double-tapped
+ Drag handle
+ Answer
+ Video
+ Decline
+ Hang Up
+ Incoming call
+ Ongoing call
+ Screening an incoming call
+ Characters entered %1$d of %2$d
+ Character limit exceeded %1$d of %2$d
+ %1$d/%2$d
+ Clear text
+ Server returned error for %1$s: %2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ Vendor
+ Nickname for %s
+ Block
+ Turn on service for this interface to block the client.
+ Nickname…
+ Stats…
+ Unblock
+ Stats for %s
+ 00000000000000000000000000000000
+ Enable
+ %1$s won\'t work unless you enable Google Play services.
+ Enable Google Play services
+ Install
+ %1$s won\'t run without Google Play services, which are missing from your device.
+ Get Google Play services
+ Google Play services availability
+ Google Play services error
+ %1$s is having trouble with Google Play services. Please try again.
+ %1$s won\'t run without Google Play services, which are not supported by your device.
+ Update
+ %1$s won\'t run unless you update Google Play services.
+ Update Google Play services
+ %1$s won\'t run without Google Play services, which are currently updating.
+ New version of Google Play services needed. It will update itself shortly.
+ Open on phone
+ Sign in
+ Sign in with Google
+ Possibly invalid configuration
+ Android system refuses such configuration. (see logcat)
+ Share via QR code
+ Wi\u2011Fi configuration
+ " (lost)"
+ " (connecting)"
+ " (reachable)"
+ Copy
+ Link copied to clipboard
+ 13108846109-5iemp5pbapg7n5epbk0mv96007m9bhmg.apps.googleusercontent.com
+ Close
+ Do you find this application useful?\nSupport its development by sending a donation to the developer!
+ Google Play Store
+ Google charges a fee of 30%
+ Donate!
+ In-App Donations are not supported. Is Google Play Store installed correctly?
+ How much?
+ Thanks for donating!\nI really appreciate this!
+
+ Error: invalid
+
+ Error
+ Fatal: Downstream interface not found
+ Advanced
+ Show dropdown menu
+ com.google.android.material.transformation.FabTransformationScrimBehavior
+ com.google.android.material.transformation.FabTransformationSheetBehavior
+ unknown #%d
+ Copy link
+ Open in browser
+ Share link
+ https://mygod-vpnhotspot.firebaseio.com
+ 13108846109
+ AIzaSyADp0gTf25H6H3KxDRKwvp0EaWq_XvYUmg
+ 1:13108846109:android:63120dcb2e900ed0
+ AIzaSyADp0gTf25H6H3KxDRKwvp0EaWq_XvYUmg
+ mygod-vpnhotspot.appspot.com
+ com.google.android.material.behavior.HideBottomViewOnScrollBehavior
+ Dialog Icon
+ Tab
+ An error has occurred when fetching the license.
+ License info is loading.
+ License list is loading.
+ %1$s%2$s
+ sans-serif-medium
+ sans-serif
+ sans-serif-medium
+ sans-serif
+ path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1)
+ cubic-bezier(0.3, 0, 0.8, 0.2)
+ cubic-bezier(0.1, 0.7, 0.1, 1)
+ M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1
+ cubic-bezier(0.4, 0, 0.2, 1)
+ cubic-bezier(0.4, 0, 1, 1)
+ cubic-bezier(0, 0, 0.2, 1)
+ cubic-bezier(0, 0, 1, 1)
+ cubic-bezier(0.2, 0, 0, 1)
+ cubic-bezier(0.3, 0, 1, 1)
+ cubic-bezier(0, 0, 0, 1)
+ :
+ Select AM or PM
+ %1$s hours
+ Select hour
+ %1$s o\'clock
+ Select minutes
+ %1$s minutes
+ cubic-bezier(0.4, 0.0, 1.0, 1.0)
+ cubic-bezier(0.0, 0.0, 0.2, 1.0)
+ path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1)
+ cubic-bezier(0.0, 0.0, 1.0, 1.0)
+ cubic-bezier(0.4, 0.0, 0.2, 1.0)
+ Range end
+ Range start
+ Value
+ AM
+ Switch to clock mode for the time input.
+ Hour
+ Minute
+ PM
+ Select time
+ Switch to text input mode for the time input.
+ New notification
+ M14,18.2 11.4,15.6 10,17 14,21 22,13 20.6,11.6z
+ icon
+ M13.4,15 11,15 11,17 13.4,17 21,17 21,15z
+ icon path
+ M23,7H9C7.9,7,7,7.9,7,9v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9C25,7.9,24.1,7,23,7z
+ button
+ button path
+ M23,7H9C7.9,7,7,7.9,7,9v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9C25,7.9,24.1,7,23,7z M23,23H9V9h14V23z
+
+ Checked
+
+
+ Partially checked
+
+
+ Not checked
+
+ Remove %1$s
+ More than %1$d new notifications
+ %1$d%2$s
+ Change to next month
+ Change to previous month
+ Start date selection: %1$s – End date selection: %2$s
+ Current selection: %1$s
+ none
+ Cancel
+ OK
+ %1$s
+ Select Date
+ Selected date
+ %1$s
+ End date %1$s
+ Invalid format.
+ Example: %1$s
+ Use: %1$s
+ Invalid range.
+ Navigate to current year %1$d
+ Navigate to year %1$d
+ Out of range: %1$s
+ Start date – %1$s
+ %1$s – End date
+ %1$s – %2$s
+ Select Range
+ Start date – End date
+ Save
+ Start date %1$s
+ Date
+ End date
+ Start date
+ d
+ m
+ y
+ Today %1$s
+ Switch to calendar input mode
+ Tap to switch to Calendar view
+ Switch to text input mode
+ Tap to switch to year view
+ circle_group
+ M4,16 A12,12 0 0,1 16,4 H16 A12,12 0 0,1 16,28 H16 A12,12 0 0,1 4,16
+ M0,16 A11,11 0 0,1 11,5 H21 A11,11 0 0,1 21,27 H11 A11,11 0 0,1 0,16
+ circle
+ M2,16 A14,14 0 0,1 16,2 H16 A14,14 0 0,1 16,30 H16 A14,14 0 0,1 2,16
+ M8,16 A8,8 0 0,1 16,8 H16 A8,8 0 0,1 16,24 H16 A8,8 0 0,1 8,16
+ M1,16 A15,15 0 0,1 16,1 H36 A15,15 0 0,1 36,31 H16 A15,15 0 0,1 1,16
+ M0,16 A16,16 0 0,1 16,0 H36 A16,16 0 0,1 36,32 H16 A16,16 0 0,1 0,16
+ Cancel
+ OK
+ This app does not have any open source licenses.
+ Something went wrong, please check the debug information.
+ Not set
+ Monitor Inactive Interfaces
+ VPN Tethering Service
+ Inactive: %s
+ VPN tethering
+ Open source licenses
+ Show password
+ M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z
+ M2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z
+ M2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z
+ M3.27,4.27 L19.74,20.74
+ Permission missing
+
+ \"%1$s\" copied to clipboard.
+
+ License details for open source software
+ mygod-vpnhotspot
+ Repeater (%1$d MHz, channel %2$d)
+ Failed to remove redundant P2P group (reason: %s)
+ Valid config not found. Please start repeater first.
+ Failed to create P2P group (reason: %s)
+ Service unavailable. Try again later
+ internal error
+ no service requests added
+ Wi\u2011Fi direct unsupported
+ unsupported operation
+ Due to system restrictions, turning Location off may lead to things not working
+ properly and increased battery usage
+ Configure
+ Repeater requires permissions for accessing fine
+ location
+ Wi\u2011Fi direct unavailable, please enable Wi\u2011Fi
+ Enable
+ Failed to remove P2P group (reason: %s)
+ Failed to remove old P2P group (reason: %s)
+ Failed to set operating channel (reason: %s)
+ Failed to set vendor elements (reason: %s)
+ WPS (insecure)
+ Push Button
+ Enter PIN
+ Failed to start WPS (reason: %s)
+ PIN registered.
+ Please use WPS push button within the next 2 minutes to connect your
+ device.
+ Search
+
+ com.google.android.material.search.SearchBar$ScrollingViewBehavior
+
+ Clear text
+ Back
+ Downstream
+ Exit
+ Help
+ Misc
+ Donate
+ GitHub sponsors, PayPal, more…
+ I love money
+ Export debug information
+ Such useful very wow
+ Project homepage at GitHub
+ Read manual, star, submit issues and contribute
+ Restart this app to apply this setting.
+ Auto start services
+ Restore services if they were running before device reboot or app
+ update
+ Clean/reapply routing rules
+ Update changed settings to current active services. Can also fix rare
+ race conditions.
+ Enable DHCP workaround
+ Use this if clients cannot obtain IP addresses.
+ Disable IPv6 tethering
+ Enabling this option will prevent VPN leaks via IPv6.
+ Network status monitor mode
+ Netlink monitor
+ Netlink monitor with root
+ Poll
+ Poll with root
+ IP Masquerade Mode
+ Android Netd Service
+ None
+ Simple
+ Repeater safe mode
+ Makes no changes to your system configuration but might
+ not work with short network names.
+ Short network names might require turning off safe
+ mode.
+ Use system configuration for temporary hotspot
+ Will conflict with other apps using local only
+ hotspot
+ Upstream network interface
+ Auto detect system VPN
+ Current upstreams
+ %1$s; fallback: %2$s
+ Keep Wi\u2011Fi alive
+ On
+ High Performance Mode
+ Disable power save
+ Low latency mode
+ System default
+ Tethering hardware acceleration
+ Shortcut to system developer options
+ Upstream
+ Fallback upstream interface
+ Auto detect system default network
+ Side Sheet
+ com.google.android.material.sidesheet.SideSheetBehavior
+ 999+
+ %1$s, %2$s
+ This feature requires location to be turned on.
+ Manage system tethering…
+ Bluetooth tethering
+ Ethernet tethering
+ USB tethering (NCM)
+ Please disable Tethering hardware acceleration in Developer options
+ if VPN tethering does not work.
+ USB tethering
+ Wi\u2011Fi hotspot
+ Blocked %1$s: %2$s
+ Copy MAC
+ \nDriver country code: %s
+ Randomized AP MAC
+ Bridged AP concurrency
+ STA + AP concurrency
+ STA + Bridged AP concurrency
+ %1$d MHz, channel %2$d, width %3$s
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, channel %2$d,
+ width %3$s, idle timeout disabled
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, channel %2$d,
+ width %3$s, idle timeout in %6$s
+ None
+ \nSupported channels: %s
+ Monitor…
+ %s (monitored)
+ Temporary Wi\u2011Fi hotspot
+ Failed to start hotspot (reason: %s)
+ generic error
+ incompatible mode
+ no channel
+ tethering disallowed
+ Clients
+ Repeater
+ Settings
+ Tethering
+ Update
+ OFF
+ ON
+ Persistent Randomized MAC address
+ MAC address
+ Allowed list of clients
+ %s GHz Band
+ Disabled
+ Blocked list of clients
+ Enable opportunistic shutdown of an instance in bridged AP
+ Control which client can use hotspot
+ Hidden network
+ Access Control
+ Allowed 2.4 GHz ACS channels
+ Allowed 5 GHz ACS channels
+ Allowed 6 GHz ACS channels
+ Advanced AP Options
+ AP Band
+ Turn off hotspot automatically when no devices are connected
+ Maximum channel bandwidth
+ Inactive timeout
+ Inactive timeout for a bridged instance
+ Default timeout: %dms
+ Enable Wi\u2011Fi 6
+ Enable Wi\u2011Fi 7
+ Use randomized MAC
+ Non-persistent
+ None
+ Persistent
+ Maximum number of clients
+ Password
+ Save
+ Security
+ Network name
+ Toggle hex display
+ User supplied configuration
+ Vendor elements
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ?attr/shapeAppearanceCornerSmall
+ ?attr/textAppearanceLabelLarge
+ ?attr/colorError
+ ?attr/colorOnError
+ ?attr/textAppearanceLabelSmall
+ ?attr/colorSurfaceContainer
+ ?attr/colorPrimary
+ ?attr/colorOnSurface
+ ?attr/colorSurface
+ ?attr/colorError
+ ?attr/colorOnError
+ ?attr/colorOnPrimary
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorPrimary
+ ?attr/colorSurfaceContainerHigh
+ ?attr/shapeAppearanceCornerExtraLarge
+ ?attr/textAppearanceBodyLarge
+ ?attr/colorPrimary
+ ?attr/colorOnPrimary
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorOnSurface
+ ?attr/colorOnSurfaceVariant
+ ?attr/textAppearanceHeadlineLarge
+ ?attr/colorOnSurfaceVariant
+ ?attr/textAppearanceLabelLarge
+ ?attr/colorSecondaryContainer
+ ?attr/textAppearanceTitleLarge
+ ?attr/colorOnSurfaceVariant
+ ?attr/textAppearanceTitleSmall
+ ?attr/colorOnSurface
+ ?attr/textAppearanceBodyLarge
+ ?attr/colorPrimary
+ ?attr/colorOnPrimary
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorSurfaceContainerHigh
+ ?attr/shapeAppearanceCornerExtraLarge
+ ?attr/colorOnSurface
+ ?attr/textAppearanceHeadlineSmall
+ ?attr/colorOnSurfaceVariant
+ ?attr/textAppearanceBodyMedium
+ ?attr/colorOutlineVariant
+ ?attr/colorSurfaceContainerLow
+ ?attr/colorSurfaceContainerLow
+ ?attr/shapeAppearanceCornerMedium
+ ?attr/colorPrimaryContainer
+ ?attr/shapeAppearanceCornerLarge
+ ?attr/colorOnPrimaryContainer
+ ?attr/textAppearanceLabelLarge
+ ?attr/colorSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorSurfaceContainerHigh
+ ?attr/colorPrimary
+ ?attr/colorTertiaryContainer
+ ?attr/colorOnTertiaryContainer
+ ?attr/colorPrimaryContainer
+ ?attr/shapeAppearanceCornerLarge
+ ?attr/colorOnPrimaryContainer
+ ?attr/shapeAppearanceCornerExtraLarge
+ ?attr/shapeAppearanceCornerMedium
+ ?attr/colorSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorSurfaceContainerHigh
+ ?attr/colorPrimary
+ ?attr/colorTertiaryContainer
+ ?attr/colorOnTertiaryContainer
+ ?attr/colorSurfaceContainer
+ ?attr/textAppearanceBodyLarge
+ ?attr/colorPrimary
+ ?attr/colorOnPrimary
+ ?attr/textAppearanceLabelLarge
+ ?attr/colorSurfaceContainerHighest
+ ?attr/shapeAppearanceCornerMedium
+ ?attr/colorPrimary
+ ?attr/colorOnPrimary
+ ?attr/colorPrimary
+ ?attr/colorSurfaceContainerHighest
+ ?attr/shapeAppearanceCornerExtraSmall
+ ?attr/colorError
+ ?attr/colorError
+ ?attr/colorError
+ ?attr/textAppearanceBodyLarge
+ ?attr/textAppearanceBodySmall
+ ?attr/colorSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSurfaceVariant
+ ?attr/shapeAppearanceCornerSmall
+ ?attr/textAppearanceLabelLarge
+ ?attr/colorPrimary
+ ?attr/colorOnSurfaceVariant
+ ?attr/shapeAppearanceCornerSmall
+ ?attr/textAppearanceLabelLarge
+ ?attr/colorPrimary
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorSurfaceContainer
+ ?attr/colorSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorSecondaryContainer
+ ?attr/colorOnSurface
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorSurfaceContainer
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/textAppearanceLabelMedium
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorOnSurfaceVariant
+ ?attr/textAppearanceTitleSmall
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSecondaryContainer
+ ?attr/textAppearanceLabelLarge
+ ?attr/colorSurfaceContainerLow
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSecondaryContainer
+ ?attr/colorSecondaryContainer
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurface
+ ?attr/textAppearanceLabelMedium
+ ?attr/colorSurfaceContainer
+ ?attr/colorPrimary
+ ?attr/textAppearanceBodyLarge
+ ?attr/colorOnSurface
+ ?attr/colorPrimary
+ ?attr/colorOutline
+ ?attr/colorOutline
+ ?attr/colorOutline
+ ?attr/colorSurface
+ ?attr/shapeAppearanceCornerMedium
+ ?attr/colorOutline
+ ?attr/colorOutlineVariant
+ ?attr/colorOnSurface
+ ?attr/colorOutlineVariant
+ ?attr/colorOutlineVariant
+ ?attr/colorOutlineVariant
+ ?attr/colorPrimary
+ ?attr/shapeAppearanceCornerExtraSmall
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorError
+ ?attr/colorError
+ ?attr/colorError
+ ?attr/colorOnSurface
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurface
+ ?attr/textAppearanceBodyLarge
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOutline
+ ?attr/colorOnSurfaceVariant
+ ?attr/textAppearanceBodySmall
+ ?attr/textAppearanceBodySmall
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorPrimary
+ ?attr/colorOnSurfaceVariant
+ ?attr/textAppearanceTitleSmall
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurface
+ ?attr/colorPrimary
+ ?attr/colorSurfaceContainerHigh
+ ?attr/colorOnSurface
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurface
+ ?attr/textAppearanceBodyLarge
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurfaceVariant
+ ?attr/textAppearanceBodyLarge
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorSurfaceContainerHigh
+ ?attr/colorOutline
+ ?attr/shapeAppearanceCornerExtraLarge
+ ?attr/colorOnSurface
+ ?attr/textAppearanceBodyLarge
+ ?attr/colorOnSurface
+ ?attr/colorOnSurfaceVariant
+ ?attr/textAppearanceBodyLarge
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorPrimary
+ ?attr/colorOnSurface
+ ?attr/colorSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurfaceVariant
+ ?attr/textAppearanceTitleSmall
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorSurfaceContainerLow
+ ?attr/shapeAppearanceCornerExtraLarge
+ ?attr/colorOnSurfaceVariant
+ ?attr/shapeAppearanceCornerLarge
+ ?attr/colorSurfaceContainerLow
+ ?attr/shapeAppearanceCornerLarge
+ ?attr/colorSurface
+ ?attr/colorPrimary
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorPrimary
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorPrimary
+ ?attr/colorOnPrimary
+ ?attr/colorSurfaceInverse
+ ?attr/shapeAppearanceCornerExtraSmall
+ ?attr/colorOnSurfaceInverse
+ ?attr/textAppearanceBodyMedium
+ ?attr/shapeAppearanceCornerSmall
+ ?attr/textAppearanceLabelLarge
+ ?attr/colorSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorOnSurface
+ ?attr/colorPrimaryContainer
+ ?attr/colorOnPrimaryContainer
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorOnPrimary
+ ?attr/colorPrimaryContainer
+ ?attr/colorOnPrimaryContainer
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorOnPrimaryContainer
+ ?attr/colorPrimaryContainer
+ ?attr/colorOnPrimaryContainer
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorOnSurface
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorOutline
+ ?attr/colorOutline
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorOnSurface
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorOutline
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorOnSurface
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorOutline
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorOutline
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+ ?attr/textAppearanceLabelLarge
+ ?attr/colorPrimary
+ ?attr/shapeAppearanceCornerSmall
+ ?attr/colorPrimary
+ ?attr/colorOnSurface
+ ?attr/colorOnSurfaceVariant
+ ?attr/textAppearanceBodySmall
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorPrimary
+ ?attr/colorSurfaceContainerHigh
+ ?attr/shapeAppearanceCornerExtraLarge
+ ?attr/colorOnSurfaceVariant
+ ?attr/textAppearanceLabelMedium
+ ?attr/shapeAppearanceCornerSmall
+ ?attr/textAppearanceTitleMedium
+ ?attr/colorOutline
+ ?attr/colorTertiaryContainer
+ ?attr/colorOnTertiaryContainer
+ ?attr/colorOnTertiaryContainer
+ ?attr/colorOnTertiaryContainer
+ ?attr/colorOnTertiaryContainer
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorOnSurfaceVariant
+ ?attr/shapeAppearanceCornerSmall
+ ?attr/textAppearanceDisplayLarge
+ ?attr/colorPrimaryContainer
+ ?attr/colorOnPrimaryContainer
+ ?attr/colorOnPrimaryContainer
+ ?attr/colorOnPrimaryContainer
+ ?attr/colorOnPrimaryContainer
+ ?attr/colorOnSurface
+ ?attr/textAppearanceDisplayLarge
+ ?attr/colorSurfaceContainerHighest
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/colorOnSurface
+ ?attr/textAppearanceHeadlineMedium
+ ?attr/colorOnSurface
+ ?attr/textAppearanceHeadlineSmall
+ ?attr/colorSurface
+ ?attr/colorOnSurface
+ ?attr/textAppearanceTitleLarge
+ ?attr/colorOnSurface
+ ?attr/colorSurfaceContainer
+ ?attr/colorOnSurfaceVariant
+ ?attr/colorPrimary
+ ?attr/colorPrimary
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merger.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merger.xml
new file mode 100644
index 00000000..c7bda0b9
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/merger.xml
@@ -0,0 +1,14342 @@
+
+androidx.startup#FF424242#FFFFFFFF#03000000#37000000
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1dp2dp2dp"Phendula""Ividiyo""Yenqaba""Vala Ucingo""Ikholi engenayo""Ikholi eqhubekayo""Ukuveza ikholi engenayo""999+""ВідповіÑти""Відео""Відхилити""Завершити""Вхідний виклик""Ðктивний виклик""Вхідний виклик (Фільтр)""999+""Одговори""Видео""Одбиј""Спушти""Дојдовен повик""Тековен повик""Проверка на дојдовен повик""999+""Хариулах""Видео""Татгалзах""ТаÑлах""ИрÑÑн дуудлага""Дуудлага хийгдÑж байна""ИрÑÑн дуудлагыг харуулж байна""999+""ຮັບສາàº""ວິດີໂàº""ປະຕິເສດ""ວາງສາàº""ສາàºà»‚ທເຂົ້າ""ສາàºà»‚ທàºàºàº""àºàº³àº¥àº±àº‡àºàº§àº”ສàºàºšàºªàº²àºà»‚ທເຂົ້າ""999+""Απάντηση""Βίντεο""ΑπόÏÏιψη""ΤεÏματισμός""ΕισεÏχόμενη κλήση""Κλήση σε εξÎλιξη""Διαλογή εισεÏχόμενης κλήσης""999+""Ðдказаць""ВідÑа""Ðдхіліць""ЗавÑршыць""Уваходны выклік""БÑгучы выклік""Фільтраванне ўваходнага выкліку""999+""ردّ""Ùيديو""Ø±ÙØ¶""قطع الاتصال""مكالمة واردة""مكالمة جارية""يتم ÙØØµ المكالمة الواردة""999+""Svara""MyndsÃmtal""Hafna""Leggja á""SÃmtal berst""SÃmtal à gangi""SÃar sÃmtal sem berst""999+""जवाफ दिनà¥à¤¹à¥‹à¤¸à¥""à¤à¤¿à¤¡à¤¿à¤¯à¥‹""काटà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""फोन राखà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""आगमन कल""à¤à¤‡à¤°à¤¹à¥‡à¤•ो कल""आगमन कल जाà¤à¤šà¤¿à¤à¤¦à¥ˆ छ""९९९+""Atender""VÃdeo""Recusar""Desligar""Chamada recebida""Chamada em andamento""Filtrando uma ligação recebida""999+""Cavab verin""Video""İmtina edin""DÉ™stÉ™yi asın""GÉ™lÉ™n zÉ™ng""Davam edÉ™n zÉ™ng""GÉ™lÉ™n zÉ™ng göstÉ™rilir""999+""Sagutin""Video""Tanggihan""Ibaba""Papasok na tawag""Kasalukuyang tawag""Nagsi-screen ng papasok na tawag""999+""รับสาย""วิดีโà¸""ปà¸à¸´à¹€à¸ªà¸˜""วางสาย""สายเรียà¸à¹€à¸‚้า""สายที่สนทนาà¸à¸¢à¸¹à¹ˆ""à¸à¸³à¸¥à¸±à¸‡à¸ªà¸à¸£à¸µà¸™à¸ªà¸²à¸¢à¹€à¸£à¸µà¸¢à¸à¹€à¸‚้า""999+""Жауап""Бейне""Қабылдамау""Тұтқаны қою""ÐšÑ–Ñ€Ñ–Ñ Ò›Ð¾Ò£Ñ‹Ñ€Ð°Ñƒ""Қоңырау""Келген қоңырауды Ñүзу""999+""Жооп берүү""Видео""Четке кагуу""Чалууну бүтүрүү""Кирүүчү чалуу""Учурдагы чалуу""Кирүүчү чалууну иргөө""999+""Jawab""Video""Tolak""Tamatkan Panggilan""Panggilan masuk""Panggilan sedang berlangsung""Menyaring panggilan masuk""999+""Yanıtla""Video""Reddet""Kapat""Gelen arama""Devam eden arama""Gelen arama süzülüyor""999+""Answer""Video""Decline""Hang Up""Incoming call""Ongoing call""Screening an incoming call""999+""উতà§à¦¤à¦° দিন""à¦à¦¿à¦¡à¦¿à¦“""বাতিল করà§à¦¨""কল কেটে দিন""ইনকামিং কল""চালৠথাকা কল""ইনকামিং কল সà§à¦•à§à¦°à¦¿à¦¨à¦¿à¦‚ করা হচà§à¦›à§‡""৯৯৯+""Trả lá»i""Video""Từ chối""Kết thúc""Cuá»™c gá»i đến""Cuá»™c gá»i Ä‘ang thá»±c hiện""Äang sà ng lá»c cuá»™c gá»i đến""999+""Përgjigju""Video""Refuzo""Mbyll""Telefonatë hyrëse""Telefonatë në vazhdim""Po filtron një telefonatë hyrëse""999+""Svar""Video""Avvis""Legg pÃ¥""Innkommende anrop""PÃ¥gÃ¥ende samtale""Filtrerer et innkommende anrop""999+""×ž×¢× ×”""ויד×ו""דחייה""× ×™×ª×•×§""שיחה × ×›× ×¡×ª""שיחה פעילה""×¡×™× ×•×Ÿ שיחה × ×›× ×¡×ª""999+""Answer""Video""Decline""Hang up""Incoming call""On-going call""Screening an incoming call""999+""Vasta""Video""Keeldu""Lõpeta kõne""Sissetulev kõne""Käimasolev kõne""Sissetuleva kõne filtreerimine""999+""PrijaÅ¥""Video""OdmietnuÅ¥""ZložiÅ¥""Prichádzajúci hovor""Prebiehajúci hovor""Preveruje sa prichádzajúci hovor""999+""பதிலளி""வீடியோ""நிராகரி""தà¯à®£à¯à®Ÿà®¿""உளà¯à®µà®°à¯à®®à¯ அழைபà¯à®ªà¯""செயலில௠இரà¯à®•à¯à®•à¯à®®à¯ அழைபà¯à®ªà¯""உளà¯à®µà®°à¯à®®à¯ அழைபà¯à®ªà¯ˆ மதிபà¯à®ªà®¾à®¯à¯à®µà¯ செயà¯à®•ிறதà¯""999+""Одговори""Видео""Одбиј""Прекини везу""Долазни позив""Позив је у току""Проверава Ñе долазни позив""999+""Ответить""Видео""Отклонить""Завершить""ВходÑщий вызов""Текущий вызов""Ð¤Ð¸Ð»ÑŒÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð²Ñ…Ð¾Ð´Ñщего вызова"">999""उतà¥à¤¤à¤° दà¥à¤¯à¤¾""वà¥à¤¹à¤¿à¤¡à¤¿à¤“""नकार दà¥à¤¯à¤¾""कॉल बंद करा""इनकमिंग कॉल""सà¥à¤°à¥‚ असलेला कॉल""इनकमिंग कॉल सà¥à¤•à¥à¤°à¥€à¤¨ करत आहे""९९९+""जवाब दें""वीडियो""असà¥à¤µà¥€à¤•ार करें""कॉल काटें""आने वाला (इनकमिंग) कॉल""पहले से जारी कॉल""इनकमिंग कॉल को सà¥à¤•à¥à¤°à¥€à¤¨ किया जा रहा है""999+""Svara""Video""Avvisa""Lägg pÃ¥""Inkommande samtal""PÃ¥gÃ¥ende samtal""Ett inkommande samtal filtreras""999+""PÅ™ijmout""Video""OdmÃtnout""ZavÄ›sit""PÅ™Ãchozà hovor""ProbÃhajÃcà hovor""Prověřovánà pÅ™ÃchozÃho hovoru""999+""応ç”""ビデオ""æ‹’å¦""通話終了""ç€ä¿¡""通話ä¸""ç€ä¿¡ã‚’スクリーニングä¸""999+""മറàµà´ªà´Ÿà´¿ നൽകàµà´•""വീഡിയോ""നിരസികàµà´•àµà´•""കോൾ നിർതàµà´¤àµà´•""ഇൻകമിംഗൠകോൾ""സജീവമായ കോൾ""ഇൻകമിംഗൠകോൾ à´¸àµâ€Œà´•àµà´°àµ€àµ» ചെയàµà´¯àµà´¨àµà´¨àµ""999+""à¶´à·’à·…à·’à¶à·”රු දෙ.""වීඩියà·""à¶´à·Šâ€à¶»à¶à·’à¶šà·Šà·‚à·šà¶´ à¶š""විසන්ධි කරන්න""à¶‘à¶± ඇමà¶à·”ම""කරගෙන යන ඇමà¶à·”ම""à¶‘à¶± ඇමà¶à·”මක් පරීක්ෂ෠කරන්න""999+""Respon""VÃdeo""Rebutja""Penja""Trucada entrant""Trucada en curs""S\'està filtrant una trucada entrant""999+""پاسخ دادن""ویدیو""رد کردن""قطع تماس""تماس ورودی""تماس Ø¯Ø±ØØ§Ù„ انجام""Ø¯Ø±ØØ§Ù„ غربال کردن تماس ورودی""999+""જવાબ""વીડિયો""નકારો""સમાપà«àª¤ કરો""ઇનકમિંગ કૉલ""ચાલૠકૉલ""ઇનકમિંગ કૉલનà«àª‚ સà«àª•à«àª°à«€àª¨àª¿àª‚ગ થાય છે""999+""Erantzun""Bideoa""Baztertu""Amaitu deia""Sarrerako deia""Deia abian da""Sarrerako dei bat bistaratzen""999+""పికపౠచేయండి""వీడియో కాలà±""కటౠచేయండి""à°®à±à°—à°¿à°‚à°šà°‚à°¡à°¿""ఇనà±â€Œà°•మింగౠకాలà±""కాలౠకొనసాగà±à°¤à±‹à°‚ది""ఇనà±â€Œà°•మింగౠకాలà±â€Œà°¨à± à°¸à±à°•à±à°°à±€à°¨à± చేయండి""999+""Sprejmi""Video""Zavrni""Prekini klic""Dohodni klic""Aktivni klic""Preverjanje dohodnega klica""999+""Rispondi""Video""Rifiuta""Riaggancia""Chiamata in arrivo""Chiamata in corso""Applicazione filtro a chiamata in arrivo""999+""AtbildÄ“t""Video""NoraidÄ«t""PÄrtraukt""IenÄkoÅ¡ais zvans""PaÅ¡reizÄ“jais zvans""IenÄkoÅ¡Ä zvana filtrēšana""999+""Contestar""VÃdeo""Rexeitar""Colgar""Chamada entrante""Chamada en curso""Filtrando chamada entrante"">999""接å¬""视频通è¯""拒接""挂æ–""æ¥ç”µ""æ£åœ¨é€šè¯""æ£åœ¨è¿‡æ»¤æ¥ç”µ""999+""መáˆáˆµ""ቪዲዮ""አትቀበáˆ""ስáˆáŠ©áŠ• á‹áŒ‹""ገቢ ጥሪ""እየተካሄደ ያለ ጥሪ""ገቢ ጥሪ ማጣራት""999+""Jawab""Video""Tolak""Tutup""Panggilan masuk""Panggilan sedang berlangsung""Menyaring panggilan masuk""999+""Vastaa""Video""Hylkää""Lopeta puhelu""Saapuva puhelu""Käynnissä oleva puhelu""Seulotaan saapuvaa puhelua""999+""პáƒáƒ¡áƒ£áƒ®áƒ˜""ვიდეáƒ""უáƒáƒ ყáƒáƒ¤áƒ""გáƒáƒ—იშვáƒ""შემáƒáƒ›áƒáƒ•áƒáƒšáƒ˜ ზáƒáƒ ი""მიმდინáƒáƒ ე ზáƒáƒ ი""შემáƒáƒ›áƒáƒ•áƒáƒšáƒ˜ ზáƒáƒ ების გáƒáƒªáƒ®áƒ ილვáƒ""999+""Odgovori""Video""Odbaci""Prekini vezu""Dolazni poziv""Poziv u toku""Filtriranje dolaznog poziva""999+""Fogadás""Videó""ElutasÃtás""Befejezés""BejövÅ‘ hÃvás""HÃvás folyamatban""BejövÅ‘ hÃvás szűrése""999+""Отговор""Видеообаждане""ОтхвърлÑне""ЗатварÑне""ВходÑщо обаждане""Текущо обаждане""Преглежда Ñе входÑщо обаждане""999+""Răspunde""Video""Respinge""ÃŽnchide""Apel primit""Apel în desfășurare""Se filtrează un apel primit""999+"@color/androidx_core_secondary_text_default_material_light0dp0dp12dp"ឆ្លើយ""វីដáŸáž¢áž¼""បដិសáŸáž’""ដាក់​ចុះ""ការ​ហៅ​ចូល""ការ​ហៅដែលកំពុងដំណើរការ""កំពុងពិនិážáŸ’យការ​ហៅ​ចូល""999+""Besvar""Video""Afvis""Læg pÃ¥""IndgÃ¥ende opkald""Igangværende opkald""Et indgÃ¥ende opkald screenes""999+""Odgovori""Videozapis""Odbij""Prekini""Dolazni poziv""Poziv u tijeku""Filtriranje dolaznog poziva""999+""Answer""Video""Decline""Hang up""Incoming call""On-going call""Screening an incoming call""999+""통화""ë™ì˜ìƒ""ê±°ì ˆ""ì „í™” ëŠê¸°""ìˆ˜ì‹ ì „í™”""ì§„í–‰ ì¤‘ì¸ í†µí™”""ìˆ˜ì‹ ì „í™” 검사 중""999+""Répondre""Vidéo""Refuser""Raccrocher""Appel entrant""Appel en cours""Filtrage d\'un appel entrant""999+""ÕŠÕ¡Õ¿Õ¡Õ½ÕÕ¡Õ¶Õ¥Õ¬""ÕÕ¥Õ½Õ¡Õ¦Õ¡Õ¶Õ£""Õ„Õ¥Ö€ÕªÕ¥Õ¬""Ô±Õ¾Õ¡Ö€Õ¿Õ¥Õ¬""Õ„Õ¸Ö‚Õ¿Ö„Õ¡ÕµÕ«Õ¶ Õ¦Õ¡Õ¶Õ£""Ô¸Õ¶Õ©Õ¡ÖÕ«Õ¯ Õ¦Õ¡Õ¶Õ£""Õ„Õ¸Ö‚Õ¿Ö„Õ¡ÕµÕ«Õ¶ Õ¦Õ¡Õ¶Õ£Õ« Õ¦Õ¿Õ¸Ö‚Õ´""999+""جواب دیں""ویڈیو""مسترد کریں""منقطع کر دیں""اÙÙ† کمنگ کال""جاری کال""اÙÙ† کمنگ کال Ú©ÛŒ اسکریننگ""+999""Atender""VÃdeo""Recusar""Desligar""Chamada recebida""Chamada em curso""A filtrar uma chamada recebida…""999+""接è½""視åƒ""拒接""掛斷""來電""通話ä¸""æ£åœ¨éŽæ¿¾ä¾†é›»""999+""ಉತà³à²¤à²°à²¿à²¸à²¿""ವೀಡಿಯೊ""ನಿರಾಕರಿಸಿ""ಕರೆ ಕೊನೆಗೊಳಿಸಿ""ಒಳಬರà³à²µ ಕರೆ""ಚಾಲà³à²¤à²¿à²¯à²²à³à²²à²¿à²°à³à²µ ಕರೆ""ಒಳಬರà³à²µ ಕರೆಯನà³à²¨à³ ಸà³à²•à³à²°à³€à²¨à³ ಮಾಡಲಾಗà³à²¤à³à²¤à²¿à²¦à³†""999+""ଉତàତର ଦିଅନàତà""à¬à¬¿à¬¡à¬¿à¬“""ଅଗàରାହààŸ à¬•à¬°""ସମାପàତ କରନàତà""ଇନକମିଂ କଲà""ଚାଲିଥିବା କଲà""à¬à¬• ଇନକମିଂ କଲକà ସàକàରିନà କରàଛି""999+"4dp"Annehmen""Video""Ablehnen""Auflegen""Eingehender Anruf""Aktueller Anruf""Filter für eingehenden Anruf""999+""Answer""Video""Decline""Hang up""Incoming call""On-going call""Screening an incoming call""999+""Responder""Video""Rechazar""Colgar""Llamada entrante""Llamada en curso""Filtrando una llamada entrante""999+""ဖုန်းကá€á€¯á€„်ရန်""ဗီဒီယá€á€¯""ငြင်းပယ်ရန်""ဖုန်းá€á€»á€›á€”်""အá€á€„်á€á€±á€«á€ºá€†á€á€¯á€™á€¾á€¯""လက်ရှá€á€á€±á€«á€ºá€†á€á€¯á€™á€¾á€¯""အá€á€„်á€á€±á€«á€ºá€†á€á€¯á€™á€¾á€¯á€€á€á€¯ စစ်ဆေးနေသည်""á‰á‰á‰+""Odgovori""Video""Odbij""Prekini vezu""Dolazni poziv""Poziv je u toku""Proverava se dolazni poziv""999+""接è½""視訊""拒接""掛斷""來電""通話ä¸""æ£åœ¨éŽæ¿¾ä¾†é›»""999+"#1f000000#8a000000#1d873b#d93025#ffffffff#ff9e9e9e4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff 999AnswerVideoDeclineHang UpIncoming callOngoing callScreening an incoming call999+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "Antwoord""Video""Wys af""Lui af""Inkomende oproep""Oproep aan die gang""Keur tans \'n inkomende oproep""999+""Odbierz""Wideo""Odrzuć""Rozłącz""Połączenie przychodzÄ…ce""Trwa połączenie""FiltrujÄ™ połączenie przychodzÄ…ce""999+""Atsakyti""Vaizdo įraÅ¡as""Atmesti""Baigti pok.""Gaunamasis skambutis""Vykstantis skambutis""Gaunamojo skambuÄio tikrinimas""999+""Répondre""Vidéo""Refuser""Raccrocher""Appel entrant""Appel en cours""Filtrer un appel entrant""999+""Javob berish""Video""Rad etish""Tugatish""Kiruvchi chaqiruv""Joriy chaqiruv""Kiruvchi chaqiruvni filtrlash""999+""উতà§à¦¤à§° দিয়ক""à¦à¦¿à¦¡à¦¿à¦…’""পà§à§°à¦¤à§à¦¯à¦¾à¦–à§à¦¯à¦¾à¦¨ কৰক""কল কাটি দিয়ক""অনà§à¦¤à§°à§à¦—ামী কল""চলি থকা কল""à¦à¦Ÿà¦¾ অনà§à¦¤à§°à§à¦—ামী কলৰ পৰীকà§à¦·à¦¾ কৰি থকা হৈছে""৯৯৯+""Responder""VÃdeo""Rechazar""Colgar""Llamada entrante""Llamada en curso""Filtrando una llamada entrante""999+""Jibu""Video""Kataa""Kata simu""Simu uliyopigiwa""Simu inayoendelea""Inachuja simu unayopigiwa""999+""ਜਵਾਬ ਦਿਓ""ਵੀਡੀਓ""ਅਸਵੀਕਾਰ ਕਰੋ""ਸਮਾਪਤ ਕਰੋ""ਇਨਕਮਿੰਗ ਕਾਲ""ਜਾਰੀ ਕਾਲ""ਇਨਕਮਿੰਗ ਕਾਲ ਦੀ ਸਕà©à¨°à©€à¨¨à¨¿à©°à¨— ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ""999+""Beantwoorden""Video""Weigeren""Ophangen""Inkomend gesprek""Actief gesprek""Een inkomend gesprek screenen""999+""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€ŽAnswer‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€ŽVideo‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€ŽDecline‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€ŽHang Up‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€â€â€â€ŽIncoming call‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€â€â€Žâ€ŽOngoing call‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€ŽScreening an incoming call‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Ž999+‎â€â€Žâ€Žâ€â€Ž""Atender""VÃdeo""Recusar""Desligar""Chamada recebida""Chamada em andamento""Filtrando uma ligação recebida""999+"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 8dp0dp50dp20dp800dp120dp
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 10dp
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "Isixhumanisi sikopishelwe ku-clipboard""Kopisha isixhumanisi""Vula kusiphequluli""Yabelana ngesixhumanisi""ПоÑÐ¸Ð»Ð°Ð½Ð½Ñ Ñкопійовано в буфер обміну""Копіювати поÑиланнÑ""Відкрити у веб-переглÑдачі""ÐадіÑлати поÑиланнÑ""Линкот е копиран во привремена меморија""Копирај го линкот""Отвори во прелиÑтувач""Сподели линк""ХолбооÑыг түр Ñанах ойд хуулÑан""ХолбооÑыг хуулах""Хөтчид нÑÑÑ…""ХолбооÑыг хуваалцах""ສຳເນົາລິ້ງໃສ່ຄລິບບàºàº”à»àº¥à»‰àº§""ສຳເນົາລິ້ງ""ເປີດໃນໂປຣà»àºàº£àº¡àº—່àºàº‡à»€àº§àº±àºš""à»àºšà»ˆàº‡àº›àº±àº™àº¥àº´à»‰àº‡""Ο σÏνδεσμος αντιγÏάφηκε στο Ï€ÏόχειÏο""ΑντιγÏαφή συνδÎσμου""Άνοιγμα σε Ï€ÏόγÏαμμα πεÏιήγησης""Κοινοποίηση συνδÎσμου""СпаÑылка Ñкапіравана Ñž буфер абмену""Скапіраваць ÑпаÑылку""Ðдкрыць у браўзеры""Ðбагуліць ÑпаÑылку""تم نسخ الرابط إلى Ø§Ù„ØØ§Ùظة.""نسخ الرابط""ÙØªØ ÙÙŠ Ø§Ù„Ù…ØªØµÙØ""مشاركة الرابط""Tengill afritaður á klippiborð""Afrita tengil""Opna à vafra""Deila tengli""कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡à¤®à¤¾ लिंक कपी गरियो""लिंक पà¥à¤°à¤¤à¤¿à¤²à¤¿à¤ªà¤¿ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""बà¥à¤°à¤¾à¤‰à¤œà¤°à¤®à¤¾ खोलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""लिंक सेयर गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""Link copiado para a área de transferência""Copiar link""Abrir no navegador""Compartilhar link""Link buferÉ™ kopyalandı""Linki kopyalayın""BrauzerdÉ™ açın""Linki paylaşın""Nakopya sa clipboard ang link""Kopyahin ang link""Buksan sa browser""Ibahagi ang link""คัดลà¸à¸à¸¥à¸´à¸‡à¸à¹Œà¹„ปยังคลิปบà¸à¸£à¹Œà¸”à¹à¸¥à¹‰à¸§""คัดลà¸à¸à¸¥à¸´à¸‡à¸à¹Œ""เปิดในเบราว์เซà¸à¸£à¹Œ""à¹à¸Šà¸£à¹Œà¸¥à¸´à¸‡à¸à¹Œ""Сілтеме буферге көшірілді.""Сілтемені көшіру""Браузерден ашу""Сілтемені бөліÑу""Шилтеме буферге көчүрүлдү""Шилтемени көчүрүү""Серепчиден ачуу""Шилтемени бөлүшүү""Pautan disalin ke papan keratan""Salin pautan""Buka dalam penyemak imbas""Kongsi pautan""BaÄŸlantı panoya kopyalandı""BaÄŸlantıyı kopyala""Tarayıcıda aç""BaÄŸlantıyı paylaÅŸ""Link copied to clipboard""Copy link""Open in browser""Share link""লিঙà§à¦• কà§à¦²à¦¿à¦ªà¦¬à§‹à¦°à§à¦¡à§‡ কপি করা হয়েছে""লিঙà§à¦• কপি করà§à¦¨""বà§à¦°à¦¾à¦‰à¦œà¦¾à¦°à§‡ খà§à¦²à§à¦¨""লিঙà§à¦• শেয়ার করà§à¦¨""Äã sao chép đưá»ng liên kết và o bảng nhá»› tạm""Sao chép đưá»ng liên kết""Mở trong trình duyệt""Chia sẻ đưá»ng liên kết""Lidhja u kopjua në kujtesën e fragmenteve""Kopjo lidhjen""Hape në shfletues""Ndaj lidhjen""Linken er kopiert til utklippstavlen""Kopiér linken""Ã…pne i nettleseren""Del link""הקישור הועתק ללוח""העתקת הקישור""פתיחה בדפדפן""לשיתוף הקישור""Link copied to clipboard""Copy link""Open in browser""Share link""Link kopeeriti lõikelauale""Kopeeri link""Ava brauseris""Jaga linki""Odkaz bol skopÃrovaný do schránky""KopÃrovaÅ¥ odkaz""OtvoriÅ¥ v prehliadaÄi""ZdieľaÅ¥ odkaz""கிளிபà¯-போரà¯à®Ÿà¯à®•à¯à®•௠இணைபà¯à®ªà¯ நகலெடà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà®¤à¯""இணைபà¯à®ªà¯ˆ நகலெடà¯""உலாவியில௠திற""இணைபà¯à®ªà¯ˆà®ªà¯ பகிரà¯""Линк је копиран у привремену меморију""Копирај линк""Отвори у прегледачу""Дели линк""СÑылка Ñкопирована в буфер обмена.""Копировать ÑÑылку""Открыть в браузере""Отправить ÑÑылку""लिंक कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡à¤µà¤° कॉपी केली""लिंक कॉपी करा""बà¥à¤°à¤¾à¤‰à¤à¤°à¤®à¤§à¥à¤¯à¥‡ उघडा""लिंक शेअर करा""लिंक कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡ पर कॉपी किया गया""लिंक कॉपी करें""बà¥à¤°à¤¾à¤‰à¤œà¤¼à¤° में खोलें""लिंक शेयर करें""Länk kopierad till Urklipp""Kopiera länk""Öppna i webbläsaren""Dela länk""Odkaz zkopÃrován do schránky""KopÃrovat odkaz""OtevÅ™Ãt v prohlÞeÄi""SdÃlet odkaz""リンクをクリップボードã«ã‚³ãƒ”ーã—ã¾ã—ãŸ""リンクをコピー""ブラウザã§é–‹ã""リンクã®å…±æœ‰""à´•àµà´²à´¿à´ªàµà´ªàµâ€Œà´¬àµ‹àµ¼à´¡à´¿à´²àµ‡à´•àµà´•ൠലിങàµà´•ൠപകർതàµà´¤à´¿""ലിങàµà´•ൠപകർതàµà´¤àµà´•""à´¬àµà´°àµ—സറിൽ à´¤àµà´±à´•àµà´•àµà´•""ലിങàµà´•ൠപങàµà´•à´¿à´Ÿàµà´•""සබà·à¶³à·’ය පසුරු පුවරුවට à¶´à·’à¶§à¶´à¶à·Š කෙරිණි""සබà·à¶³à·’ය à¶´à·’à¶§à¶´à¶à·Š කරන්න""à¶¶à·Šâ€à¶»à·€à·Šà·ƒà¶»à¶ºà·š විවෘචකරන්න""සබà·à¶³à·’ය බෙද෠ගන්න""S\'ha copiat l\'enllaç al porta-retalls""Copia l\'enllaç""Obre al navegador""Comparteix l\'enllaç""پیوند در بریده‌دان Ú©Ù¾ÛŒ شد""Ú©Ù¾ÛŒ پیوند""بازکردن در مرورگر""هم‌رسانی پیوند""કà«àª²àª¿àªªàª¬à«‹àª°à«àª¡ પર લિંક કૉપિ કરી""લિંક કૉપિ કરો""બà«àª°àª¾àª‰àªàª°àª®àª¾àª‚ ખોલો""લિંક શેર કરો""Arbelean kopiatu da esteka""Kopiatu esteka""Ireki arakatzailean""Partekatu esteka""à°•à±à°²à°¿à°ªà±â€Œà°¬à±‹à°°à±à°¡à±â€Œà°•ౠలింకౠకాపీ చేయబడింది""లింకà±â€Œà°¨à± కాపీ చేయి""à°¬à±à°°à±Œà°œà°°à±â€Œà°²à±‹ తెరà±à°µà±""లింకà±â€Œà°¨à± షేరౠచేయి""Povezava je kopirana v odložiÅ¡Äe""Kopiraj povezavo""Odpri v brskalniku""Deli povezavo""Link copiato negli appunti""Copia link""Apri nel browser""Condividi link""Saite ir kopÄ“ta starpliktuvÄ“.""KopÄ“t saiti""AtvÄ“rt pÄrlÅ«kprogrammÄ""KopÄ«got saiti""Copiouse a ligazón no portapapeis""Copiar ligazón""Abrir no navegador""Compartir ligazón""链接已å¤åˆ¶åˆ°å‰ªè´´æ¿""å¤åˆ¶é“¾æŽ¥""在æµè§ˆå™¨ä¸æ‰“å¼€""分享链接""አገናአወደ ቅንጥብ ሰሌዳ ተቀድቷáˆ""አገናአቅዳ""በአሳሽ á‹áˆµáŒ¥ áŠáˆá‰µ""አገናአአጋራ""Link disalin ke papan klip""Salin link""Buka di browser""Bagikan link""Linkki kopioitu leikepöydälle""Kopioi linkki""Avaa selaimessa""Jaa linkki""გáƒáƒªáƒ•ლის ბუფერში კáƒáƒžáƒ˜áƒ ებული ბმული""ბმულის კáƒáƒžáƒ˜áƒ ებáƒ""ბრáƒáƒ£áƒ–ერში გáƒáƒ®áƒ¡áƒœáƒ""ბმულის გáƒáƒ–იáƒáƒ ებáƒ""Link je kopiran u meÄ‘umemoriju""Kopiraj link""Otvori u pregledniku""Dijeli link""Link vágólapra másolva""Link másolása""Megnyitás böngészÅ‘ben""Link megosztása""Връзката е копирана в буферната памет""Копиране на връзката""ОтварÑне в браузър""СподелÑне на връзката""Linkul a fost copiat în clipboard""Copiază linkul""Deschide în browser""Trimite linkul""បាន​ចម្លង​ážáŸ†ážŽâ€‹áž‘ៅឃ្លីបបáž""ចម្លង​ážáŸ†ážŽ""បើក​នៅក្នុង​កម្មវិធី​រុករកážáž¶áž˜â€‹áž¢áŸŠáž¸áž“ធឺណិáž""ážáŸ†ážŽáž…ែករំលែក""Linket er kopieret til udklipsholderen""Kopiér link""Ã…bn i browser""Del link""Veza je kopirana u meÄ‘uspremnik""Kopiraj vezu""Otvori u pregledniku""Podijeli vezu""Link copied to clipboard""Copy link""Open in browser""Share link""í´ë¦½ë³´ë“œì— ë§í¬ 복사ë¨""ë§í¬ 복사""브ë¼ìš°ì €ì—서 열기""ë§í¬ ê³µìœ ""Lien copié dans le presse-papiers""Copier le lien""Ouvrir dans un navigateur""Partager le lien""Õ€Õ²Õ¸Ö‚Õ´Õ¨ ÕºÕ¡Õ¿Õ³Õ¥Õ¶Õ¾Õ¥Ö Õ½Õ¥Õ²Õ´Õ¡Õ¿Õ¡ÕÕ¿Õ¡Õ¯Õ«Õ¶""ÕŠÕ¡Õ¿Õ³Õ¥Õ¶Õ¥Õ¬ Õ°Õ²Õ¸Ö‚Õ´Õ¨""Ô²Õ¡ÖÕ¥Õ¬ Õ¤Õ«Õ¿Õ¡Ö€Õ¯Õ«Õ¹Õ¸Ö‚Õ´""Ô¿Õ«Õ½Õ¾Õ¥Õ¬ Õ°Õ²Õ¸Ö‚Õ´Õ¸Õ¾""لنک کلپ بورڈ پر کاپی ÛÙˆ گیا""لنک کاپی کریں""براؤزر میں کھولیں""لنک کا اشتراک کریں""Link copiado para a área de transferência.""Copiar link""Abrir no navegador""Partilhar link""連çµå·²è¤‡è£½åˆ°å‰ªè²¼ç°¿""複製連çµ""在ç€è¦½å™¨ä¸é–‹å•Ÿ""分享連çµ""ಕà³à²²à²¿à²ªà³â€Œà²¬à³‹à²°à³à²¡à³â€Œà²—ೆ ಲಿಂಕೠಅನà³à²¨à³ ನಕಲಿಸಲಾಗಿದೆ""ಲಿಂಕೠನಕಲಿಸಿ""ಬà³à²°à³Œà²¸à²°à³â€Œà²¨à²²à³à²²à²¿ ತೆರೆಯಿರಿ""ಲಿಂಕೠಹಂಚಿರಿ""ଲିଙàକକà କàଲିପàâ€â€à¬¬à‹à¬°àà¬¡à¬°à‡ à¬•à¬ªà¬¿ କରାଯାଇଛି""ଲିଙàକà କପି କରନàତà""ବàରାଉଜରàâ€Œà¬°à‡ à¬–à‹à¬²à¬¨àତà""ଲିଙàକà ସà‡àŸà¬¾à¬°à କରନàତà""Link in Zwischenablage kopiert""Link kopieren""Im Browser öffnen""Link teilen""Link copied to clipboard""Copy link""Open in browser""Share link""Se copió el vÃnculo al portapapeles""Copiar vÃnculo""Abrir en el navegador""Compartir vÃnculo""လင့်á€á€ºá€€á€á€¯ ကလစ်ဘုá€á€ºá€žá€á€¯á€· ကူးပြီးပါပြီ""လင့်á€á€ºá€€á€á€¯ ကူးယူရန်""ဘရောင်ဇာá€á€½á€„် ဖွင့်ရန်""လင့်á€á€ºá€€á€á€¯ မျှá€á€±á€›á€”်""Link je kopiran u privremenu memoriju""Kopiraj link""Otvori u pregledaÄu""Deli link""已將連çµè¤‡è£½åˆ°å‰ªè²¼ç°¿""複製連çµ""在ç€è¦½å™¨ä¸é–‹å•Ÿ""分享連çµ"#F5F5F5#1E000000#DE000000#646464500dp20dpLink copied to clipboardCopy linkOpen in browserShare link"Skakel is na knipbord gekopieer""Kopieer skakel""Maak in blaaier oop""Deel skakel""Link skopiowany do schowka""Kopiuj link""Otwórz w przeglÄ…darce""UdostÄ™pnij link""Nuoroda nukopijuota į iÅ¡karpinÄ™""Kopijuoti nuorodÄ…""Atidaryti narÅ¡yklÄ—je""Bendrinti nuorodÄ…""Lien copié dans le presse-papiers""Copier le lien""Ouvrir dans le navigateur""Partager le lien""Havoladan vaqtinchalik xotiraga nusxa olindi""Havoladan nusxa olish""Brauzerda ochish""Havolani ulashish""লিংক কà§à¦²à¦¿à¦ªà¦¬â€™à§°à§à¦¡à¦¤ পà§à§°à¦¤à¦¿à¦²à¦¿à¦ªà¦¿ কৰা হ’ল""লিংক পà§à§°à¦¤à¦¿à¦²à¦¿à¦ªà¦¿ কৰক""বà§à§°à¦¾à¦‰à¦œà¦¾à§°à¦¤ খোলক""লিংক শà§à¦¬à§‡à¦¯à¦¼à¦¾à§° কৰক""Enlace copiado en el portapapeles""Copiar enlace""Abrir en el navegador""Compartir enlace""Imenakili kiungo kwenye ubao wa kunakili""Nakili kiungo""Fungua katika kivinjari""Shiriki kiungo""ਲਿੰਕ ਕਲਿੱਪਬੋਰਡ \'ਤੇ ਕਾਪੀ ਹੋ ਗਿਆ""ਲਿੰਕ ਕਾਪੀ ਕਰੋ""ਬà©à¨°à¨¾à¨Šà¨œà¨¼à¨° ਵਿੱਚ ਖੋਲà©à¨¹à©‹""ਲਿੰਕ ਸਾਂà¨à¨¾ ਕਰੋ""Link naar klembord gekopieerd""Link kopiëren""Openen in browser""Link delen""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€â€Žâ€Žâ€â€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€ŽLink copied to clipboard‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€â€ŽCopy link‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€ŽOpen in browser‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€ŽShare link‎â€â€Žâ€Žâ€â€Ž""Link copiado para a área de transferência""Copiar link""Abrir no navegador""Compartilhar link"
+
+
+
+
+
+
+
+
+ "Zulazulela ekhaya""Zulazulela phezulu""Ezinye izinketho""Kwenziwe""Buka konke""Khetha insiza""VALA""VULA""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Imenyu+""Sesha…""Sula inkinga""Sesha umbuzo""Sesha""Thumela umbuzo""Ukusesha ngezwi""Yabelana no""Yabelana ne-%s""Goqa""Sesha""Перейти на головну""Перейти вгору""Більше опцій""Готово""Показати вÑÑ–""Вибрати програму""ЗÐИЖКÐ""УВІМК.""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""пробіл""Sym+""Menu+""Введіть пошуковий запит…""ОчиÑтити запит""Пошуковий запит""Пошук""ÐаіÑлати запит""ГолоÑовий пошук""ПоділитиÑÑ:""ПоділитиÑÑ Ñ‡ÐµÑ€ÐµÐ· додаток %s""Згорнути""Пошук""Движи Ñе кон дома""Движи Ñе нагоре""Повеќе опции""Готово""Прикажи ги Ñите""Избери апликација""ИСКЛУЧЕÐО""ВКЛУЧЕÐО""Alt+""Ctrl+""избриши""Enter""Function+""Meta+""Shift+""вÑелена""Sym+""Menu+""Пребарување…""ИÑчиÑти барање""Пребарај барање""Пребарај""ИÑпрати барање""ГлаÑовно пребарување""Сподели Ñо""Сподели Ñо %s""Собери""Пребарај""Ðүүр Ñ…ÑƒÑƒÐ´Ð°Ñ ÑƒÑ€ÑƒÑƒ шилжих""ДÑÑш шилжих""БуÑад Ñонголт""БолÑон""Бүгдийг харах""Ðппыг Ñонгох""ИДÐВХГҮЙ""ИДÐВХТÐЙ""Alt+""Ctrl+""уÑтгах""оруулах""Функц+""Мета+""Шифт+""зай""Sym+""ЦÑÑ+""Хайх…""ÐÑуулга арилгах""Хайх аÑуулга""Хайх""ÐÑуулга илгÑÑÑ…""Дуут хайлт""Дараахтай хуваалцах""%s-тай хуваалцах""Буулгах""Хайх""àºàº±àºšà»„ປໜ້າຫຼັàº""ເລື່àºàº™àº‚ຶ້ນເທິງ""ຕົວເລືàºàºà»€àºžàºµà»ˆàº¡à»€àº•ີມ""à»àº¥à»‰àº§à»†""ເບິ່ງທັງà»àº»àº”""ເລືàºàºà»àºàº±àºš""ປິດ""ເປີດ""Alt+""Ctrl+""ລຶບ""enter""Function+""Meta+""Shift+""àºàº°àº«àº§à»ˆàº²àº‡""Sym+""Menu+""ຊàºàºàº«àº²â€¦""ລຶບຂà»à»‰àº„ວາມຊàºàºàº«àº²""ຄຳສຳລັບຄົ້ນຫາ""ຊàºàºàº«àº²""ສົ່ງຂà»à»‰àº¡àº¹àº™""ຊàºàºàº«àº²àº”້ວàºàºªàº½àº‡""à»àºšà»ˆàº‡àº›àº±àº™àºàº±àºš""à»àºšà»ˆàº‡àº›àº±àº™àº”້ວຠ%s""ຫàºà»à»‰àº¥àº»àº‡""ຊàºàºàº«àº²""Πλοήγηση στην αÏχική σελίδα""Πλοήγηση Ï€Ïος τα επάνω""ΠεÏισσότεÏες επιλογÎÏ‚""ΤÎλος""Εμφάνιση όλων""ΕπιλÎξτε μια εφαÏμογή""ΑΠΕÎΕΡΓΟΠΟΙΗΣΗ""ΕÎΕΡΓΟΠΟΙΗΣΗ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""διάστημα""Sym+""Menu+""Αναζήτηση…""ΔιαγÏαφή εÏωτήματος""ΕÏώτημα αναζήτησης""Αναζήτηση""Υποβολή εÏωτήματος""Φωνητική αναζήτηση""Κοινοποίηση σε""Κοινοποίηση στην εφαÏμογή %s""ΣÏμπτυξη""Αναζήτηση""ПерайÑці на галоўную Ñтаронку""ПерайÑці ўверх""Ð”Ð°Ð´Ð°Ñ‚ÐºÐ¾Ð²Ñ‹Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ‹""Гатова""Паказаць уÑе""Выберыце праграму""ВЫКЛ.""УКЛ.""Alt +""Ctrl +""Delete""Enter""Fn +""Meta +""Shift +""Прабел""Sym +""Меню +""Пошук…""Выдаліць запыт""Пошукавы запыт""Пошук""Ðдправіць запыт""ГалаÑавы пошук""Ðбагуліць праз""Ðбагуліць праз праграму \"%s\"""Згарнуць""Пошук""التوجه إلى المنزل""التنقل إلى أعلى""خيارات أكثر""تم""عرض الكل""اختيار تطبيق""إيقاÙ""Ù…ÙØ¹Ù‘لة""Alt+""Ctrl+""ØØ°Ù""enter""Function+""Meta+""Shift+""ÙØ¶Ø§Ø¡""Sym+""القائمة+""Ø¨ØØ«â€¦""Ù…ØÙˆ طلب Ø§Ù„Ø¨ØØ«""طلب Ø¨ØØ«""Ø§Ù„Ø¨ØØ«""إرسال طلب Ø§Ù„Ø¨ØØ«""Ø¨ØØ« صوتي""مشاركة مع""مشاركة مع %s""تصغير""Ø§Ù„Ø¨ØØ«"24dp80dp64dp8dp8dp580dp16dp20dp"Fara heim""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Alt+""Ctrl+""eyða""enter""Aðgerðarlykill+""Meta+""Shift+""bilslá""Sym+""Valmynd+""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leit""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leit"440dp- 60%
- 90%
- 60%
- 90%
- 55%
- 80%
"होम पेजमा जानà¥à¤¹à¥‹à¤¸à¥""माथि नेà¤à¤¿à¤—ेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""थप विकलà¥à¤ªà¤¹à¤°à¥‚""समà¥à¤ªà¤¨à¥à¤¨ à¤à¤¯à¥‹""सबै हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""à¤à¤‰à¤Ÿà¤¾ à¤à¤ª छानà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""निषà¥à¤•à¥à¤°à¤¿à¤¯""सकà¥à¤°à¤¿à¤¯""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""खोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥â€¦""कà¥à¤µà¥‡à¤°à¥€ खाली गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""खोज पà¥à¤°à¤¶à¥à¤¨""खोज""कà¥à¤µà¥‡à¤°à¥€ पेस गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""आवाजमा आधारित खोजी""यसमारà¥à¤«à¤¤ सेयर गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""%s मारà¥à¤«à¤¤ सेयर गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""संकà¥à¤·à¤¿à¤ªà¥à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""खोज""Navegar para a página inicial""Navegar para cima""Mais opções""ConcluÃdo""Ver tudo""Selecionar um app""DESATIVADO""ATIVADO""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""espaço""Sym+""Menu+""Pesquisar…""Limpar consulta""Consulta de pesquisa""Pesquisar""Enviar consulta""Pesquisa por voz""Compartilhar com""Compartilhar com %s""Recolher""Pesquisar""Æsas sÉ™hifÉ™yÉ™ keçin""Yuxarı keçin""DigÉ™r seçimlÉ™r""Hazırdır""Hamısına baxın""TÉ™tbiq seçin""DEAKTİV""AKTİV""Alt+""Ctrl+""silin""daxil olun""Funksiya+""Meta+""Shift+""space""Sym+""Menyu+""Axtarış...""SorÄŸunu silin""Axtarış sorÄŸusu""Axtarın""SorÄŸunu göndÉ™rin""SÉ™sli axtarış""Paylaşın""%s ilÉ™ paylaşın""YığcamlaÅŸdırın""Axtarın""Mag-navigate sa home""Mag-navigate pataas""Higit pang opsyon""Tapos na""Tingnan lahat""Pumili ng app""I-OFF""I-ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Maghanap…""I-clear ang query""Query sa paghahanap""Maghanap""Isumite ang query""Paghahanap gamit ang boses""Ibahagi sa/kay""Ibahagi gamit ang %s""I-collapse""Maghanap""นำทางไปหน้าà¹à¸£à¸""à¸à¸¥à¸±à¸š""ตัวเลืà¸à¸à¸à¸·à¹ˆà¸™""เสร็จ""ดูทั้งหมด""เลืà¸à¸à¹à¸à¸›""ปิด""เปิด""Alt+""Ctrl+""ลบ""Enter""Function+""Meta+""Shift+""Space""Sym+""เมนู+""ค้นหา…""ล้างคำค้นหา""คำค้นหา""ค้นหา""ส่งคำค้นหา""ค้นหาด้วยเสียง""à¹à¸Šà¸£à¹Œà¸à¸±à¸š""à¹à¸Šà¸£à¹Œà¸—าง %s""ยุบ""ค้นหา"48dp12dp14dp"Ðегізгі бетке өту""Жоғары қарай өту""БаÑқа опциÑлар""Дайын""Барлығын көру""Қолданбаны таңдау""ӨШІРУ""ҚОСУ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""Ð±Ð¾Ñ Ð¾Ñ€Ñ‹Ð½""Sym+""Menu+""Іздеу…""Сұрауды өшіру""Іздеу Ñұрауы""Іздеу""Сұрауды жіберу""ДауыÑпен іздеу""БөліÑу""%s қолданбаÑымен бөліÑу""Жию""Іздеу""Башкы бетке чабыттоо""Мурунку Ñкранга өтүү""Дагы параметрлер""Бүттү""Баарын көрүү""Колдонмо тандоо""ӨЧҮК""КҮЙҮК""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""боштук""Sym+""Menu+""Издөө…""Сурамды өчүрүү""Изделген Ñурам""Издөө""Сурам тапшыруу""Ðйтып издөө""Төмөнкү менен бөлүшүү""%s аркылуу бөлүшүү""Жыйыштыруу""Издөө""Navigasi laman utama""Navigasi ke atas""Lagi pilihan""Selesai""Lihat semua""Pilih apl""MATI""HIDUP""Alt+""Ctrl+""delete""enter""Fungsi+""Meta+""Shift+""ruang""Sym+""Menu+""Cari…""Kosongkan pertanyaan""Pertanyaan carian""Cari""Serah pertanyaan""Carian suara""Kongsi dengan""Kongsi dengan %s""Runtuhkan""Cari""Eve gidiÅŸ yolunu göster""Yukarı git""DiÄŸer seçenekler""Bitti""Tümünü göster""Bir uygulama seçin""KAPAT""AÇ""Alt+""Ctrl+""sil""enter""Function+""Meta+""Üst Karakter+""boÅŸluk""Sym+""Menü+""Ara…""Sorguyu temizle""Arama sorgusu""Ara""Sorguyu gönder""Sesli arama""Åžununla paylaÅŸ:""%s ile paylaÅŸ""Daralt""Ara""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""হোমে নেà¦à¦¿à¦—েট করà§à¦¨""উপরে নেà¦à¦¿à¦—েট করà§à¦¨""আরও বিকলà§à¦ª""হয়ে গেছে""সবগà§à¦²à¦¿ দেখà§à¦¨""à¦à¦•টি অà§à¦¯à¦¾à¦ª বেছে নিন""বনà§à¦§ আছে""চালৠকরà§à¦¨""Alt+""Ctrl+""মà§à¦›à§à¦¨""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""সারà§à¦š করà§à¦¨â€¦""কোয়েরি মà§à¦›à§‡ ফেলà§à¦¨""সারà§à¦š কোয়েরি""সারà§à¦š করà§à¦¨""কোয়েরি জমা দিন""à¦à¦¯à¦¼à§‡à¦¸ সারà§à¦š করà§à¦¨""শেয়ার করà§à¦¨""%s-à¦à¦° সাথে শেয়ার করà§à¦¨""সঙà§à¦•à§à¦šà¦¿à¦¤ করà§à¦¨""সারà§à¦š করà§à¦¨""Chỉ đưá»ng vá» nhà ""Di chuyển lên""Tùy chá»n khác""Xong""Xem tất cả""Chá»n má»™t ứng dụng""TẮT""BẬT""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Tìm kiếm…""Xóa truy vấn""Truy vấn tìm kiếm""Tìm kiếm""Gá»i truy vấn""Tìm kiếm bằng giá»ng nói""Chia sẻ vá»›i""Chia sẻ vá»›i %s""Thu gá»n""Tìm kiếm""Orientohu për në shtëpi""Ngjitu lart""Opsione të tjera""U krye""Shfaq çdo gjë""Zgjidh një aplikacion""JOAKTIV""AKTIV""Alt+""Ctrl+""delete""enter""Funksioni+""Meta+""Shift+""hapësirë""Sym+""Menyja+""Kërko…""Pastro pyetjen""Kërko pyetjen""Kërko""Dërgo pyetjen""Kërkim me zë""Ndaje me""Ndaje me %s""Palos""Kërko""Naviger hjem""GÃ¥ opp""Flere alternativer""Ferdig""Se alle""Velg en app""AV""PÃ…""Alt+""Ctrl+""slett""enter""Funksjon+""Meta+""Shift+""mellomrom""Sym+""Meny+""Søk""Slett søket""Søkeord""Søk""Utfør søket""Talesøk""Del med""Del med %s""Skjul""Søk""× ×™×•×•×˜ לדף הבית""× ×™×•×•×˜ למעלה""עוד ×פשרויות""סיו×""הצגת הכול""בחירת ×פליקציה""כבוי""מופעל""Alt+""Ctrl+‎""מחיקה""Enter""Function+""Meta+""Shift+""רווח""Sym+""תפריט+""חיפוש…""מחיקת הש×ילתה""ש×ילתת חיפוש""חיפוש""שליחת ש×ילתה""חיפוש קולי""שיתוף ×¢×""שיתוף ×¢× %s""כיווץ""חיפוש""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Liigu avalehele""Liigu üles""Rohkem valikuid""Valmis""Kuva kõik""Valige rakendus""VÄLJAS""SEES""Alt +""Ctrl +""kustuta""sisestusklahv""Funktsiooniklahv +""Meta +""Tõstuklahv +""tühik""Sym +""Menüü +""Otsige …""Päringu tühistamine""Otsingupäring""Otsing""Päringu esitamine""Häälotsing""Jaga:""Jagamine rakendusega %s""Ahendamine""Otsing""PrejsÅ¥ na plochu""PrejsÅ¥ nahor""ÄŽalÅ¡ie možnosti""Hotovo""ZobraziÅ¥ vÅ¡etky""VybraÅ¥ aplikáciu""VYP.""ZAP.""Alt+""Ctrl+""odstrániÅ¥""enter""Function+""Meta+""Shift+""medzernÃk""Sym+""Menu+""Vyhľadať…""VymazaÅ¥ dopyt""Vyhľadávacà dopyt""HľadaÅ¥""OdoslaÅ¥ dopyt""Hlasové vyhľadávanie""ZdieľaÅ¥ s""ZdieľaÅ¥ s aplikáciou %s""ZbaliÅ¥""HľadaÅ¥""à®®à¯à®•பà¯à®ªà®¿à®±à¯à®•à¯à®šà¯ செலà¯à®²à¯à®®à¯""மேலே செலà¯à®²à¯à®®à¯""மேலà¯à®®à¯ விரà¯à®ªà¯à®ªà®™à¯à®•ளà¯""à®®à¯à®Ÿà®¿à®¨à¯à®¤à®¤à¯""அனைதà¯à®¤à¯ˆà®¯à¯à®®à¯ காடà¯à®Ÿà¯""ஆபà¯à®¸à¯ˆà®¤à¯ தேரà¯à®µà¯à®šà¯†à®¯à¯à®•""ஆஃபà¯""ஆனà¯""Alt மறà¯à®±à¯à®®à¯""Ctrl மறà¯à®±à¯à®®à¯""delete""enter""Function மறà¯à®±à¯à®®à¯""Meta மறà¯à®±à¯à®®à¯""Shift மறà¯à®±à¯à®®à¯""space""Sym மறà¯à®±à¯à®®à¯""Menu மறà¯à®±à¯à®®à¯""தேடà¯à®•…""வினவலை அழிகà¯à®•à¯à®®à¯""தேடல௠வினவலà¯""தேடà¯à®®à¯""வினவலைச௠சமரà¯à®ªà¯à®ªà®¿à®•à¯à®•à¯à®®à¯""கà¯à®°à®²à¯ தேடலà¯""இதில௠பகிரà¯""%s மூலம௠பகிரà¯""சà¯à®°à¯à®•à¯à®•à¯à®®à¯""தேடலà¯""Идите на почетну""Идите нагоре""Још опција""Готово""Прикажи Ñве""Изаберите апликацију""ИСКЉУЧЕÐО""УКЉУЧЕÐО""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""таÑтер за размак""Sym+""Menu+""Претражите…""Обришите упит""Претражите упит""Претражите""Пошаљите упит""ГлаÑовна претрага""Делите помоћу""Делите помоћу апликације %s""Скупи""Претражите""Перейти на главный Ñкран""Перейти вверх""Ещё""Готово""Показать вÑе""Выберите приложение""ВЫКЛ""ВКЛ""Alt +""Ctrl +""Delete""Ввод""Fn +""Meta +""Shift +""Пробел""Sym +""Меню +""Введите запроÑ""Удалить запроÑ""ПоиÑковый запроÑ""ПоиÑк""Отправить запроÑ""ГолоÑовой поиÑк""ПоделитьÑÑ Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ""ПоделитьÑÑ Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ %s""Свернуть""ПоиÑк""घराकडे नेवà¥à¤¹à¤¿à¤—ेट करा""वर नेवà¥â€à¤¹à¤¿à¤—ेट करा""आणखी परà¥à¤¯à¤¾à¤¯""पूरà¥à¤£ à¤à¤¾à¤²à¥‡""सरà¥à¤µ पहा""अâ€à¥…प निवडा""बंद""सà¥à¤°à¥‚""Alt+""Ctrl+""हटवा""à¤à¤‚टर करा""Function+""Meta+""Shift+""space""Sym+""मेनू+""शोधा…""कà¥â€à¤µà¥‡à¤°à¥€ साफ करा""शोध कà¥à¤µà¥‡à¤°à¥€""शोधा""कà¥à¤µà¥‡à¤°à¥€ सबमिट करा""वà¥à¤¹à¥‰à¤‡à¤¸ शोध""यांचà¥à¤¯à¤¾à¤¸à¥‹à¤¬à¤¤ शेअर करा""%s सह शेअर करा""कोलॅपà¥à¤¸ करा""शोध""होम पेज पर जाà¤à¤‚""वापस जाà¤à¤‚""ज़à¥à¤¯à¤¾à¤¦à¤¾ विकलà¥à¤ª""हो गया""सà¤à¥€ देखें""कोई à¤à¤ªà¥à¤²à¤¿à¤•ेशन चà¥à¤¨à¥‡à¤‚""बंद""चालू""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""खोजें…""कà¥â€à¤µà¥‡à¤°à¥€ हटाà¤à¤‚""सरà¥à¤š कà¥à¤µà¥‡à¤°à¥€""खोजें""कà¥à¤µà¥‡à¤°à¥€ सबमिट करें""बोलकर खोजें""इससे शेयर करें:""%s से शेयर करें""छोटा करें""खोजें""Navigera hem""Navigera uppÃ¥t""Fler alternativ""Klar""Visa alla""Välj en app""AV""PÃ…""Alt + ""Ctrl + ""delete""retur""Funktion + ""Meta + ""Skift + ""blanksteg""Symbol + ""Meny + ""Sök …""Ta bort frÃ¥gan""SökfrÃ¥ga""Sök""Skicka frÃ¥ga""Röstsökning""Dela med""Dela med %s""Komprimera""Sök""PÅ™ejÃt na plochu""PÅ™ejÃt nahoru""Dalšà možnosti""Hotovo""Zobrazit vÅ¡e""Vybrat aplikaci""VYP""ZAP""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Shift+""mezernÃk""Sym+""Menu+""Vyhledat…""Smazat dotaz""Dotaz pro vyhledávánÃ""Hledat""Odeslat dotaz""Hlasové vyhledávánÃ""SdÃlet s""SdÃlet s aplikacà %s""Sbalit""Hledat""ãƒ›ãƒ¼ãƒ ã«æˆ»ã‚‹""å‰ã«æˆ»ã‚‹""ãã®ä»–ã®ã‚ªãƒ—ション""完了""ã™ã¹ã¦è¡¨ç¤º""アプリã®é¸æŠž""OFF""ON""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Space""Sym+""Menu+""検索…""検索ã‚ーワードを削除""検索ã‚ーワード""検索""検索ã‚ーワードをé€ä¿¡""音声検索""共有""%sã¨å…±æœ‰""折りãŸãŸã‚€""検索"false"ഹോമിലേകàµà´•ൠപോവàµà´•""à´®àµà´•ളിലേകàµà´•ൠപോവàµà´•""കൂടàµà´¤àµ½ à´“à´ªàµà´·à´¨àµà´•ൾ""പൂർതàµà´¤à´¿à´¯à´¾à´¯à´¿""à´Žà´²àµà´²à´¾à´‚ കാണàµà´•""ആപàµà´ªàµ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•""à´“à´«àµ""ഓൺ""Alt+""Ctrl+""ഇലàµà´²à´¾à´¤à´¾à´•àµà´•àµà´•""enter""à´«à´‚à´—àµà´·à´¨àµâ€+""മെറàµà´±+""Shift+""à´¸àµâ€Œà´ªàµ†à´¯àµâ€Œà´¸àµ""Sym+""മെനàµ+""തിരയàµà´•…""ചോദàµà´¯à´‚ മായàµâ€Œà´•àµà´•àµà´•""ചോദàµà´¯à´‚ തിരയàµà´•""തിരയàµà´•""ചോദàµà´¯à´‚ സമർപàµà´ªà´¿à´•àµà´•àµà´•""സംസാരതàµà´¤à´¿à´²àµ‚ടെ തിരയàµà´•""ഇനിപàµà´ªà´±à´¯àµà´¨àµà´¨à´¤àµà´®à´¾à´¯à´¿ പങàµà´•à´¿à´Ÿàµà´•""%s à´Žà´¨àµà´¨à´¤àµà´®à´¾à´¯à´¿ പങàµà´•à´¿à´Ÿàµà´•""à´šàµà´°àµà´•àµà´•àµà´•""തിരയàµà´•""මුල් පිටුවට සංචà·à¶½à¶±à¶º කරන්න""ඉහළට සංචà·à¶½à¶±à¶º කරන්න""à¶à·€à¶à·Š විකල්ප""à¶šà·…à·""සියල්ල බලන්න""යෙදුමක් à¶à·à¶»à¶±à·Šà¶±""à¶šà·Šâ€à¶»à·’යà·à·€à·’රහිà¶à¶ºà·’""à¶šà·Šâ€à¶»à·’යà·à¶à·Šà¶¸à¶šà¶ºà·’""Alt+""Ctrl+""මකන්න""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""සොයන්න...""විමසුම හිස් කරන්න""සෙවුම් විමසුම""සෙවීම""විමසුම යොමු කරන්න""හඬ සෙවීම""සමග බෙද෠ගන්න""%s සමඟ බෙද෠ගන්න""හකුළන්න""සෙවීම""Navega fins a la pà gina d\'inici""Navega cap amunt""Més opcions""Fet""Mostra-ho tot""Selecciona una aplicació""DESACTIVA""ACTIVA""Alt+""Ctrl+""Supr""Retorn""Funció+""Meta+""Maj+""Espai""Sym+""Menú+""Cerca…""Esborra la consulta""Consulta de cerca""Cerca""Envia la consulta""Cerca per veu""Comparteix amb""Comparteix amb %s""Replega""Cerca""پیمایش به ØµÙØÙ‡ اصلی""Ø±ÙØªÙ† به بالا""گزینه‌های بیشتر""تمام""دیدن همه""انتخاب برنامه""خاموش""روشن""‎Alt+‎""‎Ctrl+‎""ØØ°Ù""enter""‎Function+‎""‎Meta+‎""‎Shift+‎""ÙØ§ØµÙ„Ù‡""‎Sym+‎""منو+""جستجو…â€""پاک کردن Ù¾ÙØ±Ø³Ù…ان""درخواست جستجو""جستجو""ارسال Ù¾ÙØ±Ø³Ù…ان""جستجوی Ú¯ÙØªØ§Ø±ÛŒ""هم‌رسانی با""هم‌رسانی با %s""Ú©ÙˆÚ†Ú© کردن""جستجو""ઘરનો રસà«àª¤à«‹ બતાવો""ઉપર નૅવિગેટ કરો""વધૠવિકલà«àªªà«‹""થઈ ગયà«àª‚""બધી જà«àª“""àªàªªà«àª²àª¿àª•ેશન પસંદ કરો""બંધ""ચાલà«""Alt+""Ctrl+""delete""Enter""Function+""Meta+""Shift+""space""Sym+""Menu+""શોધો…""કà«àªµà«‡àª°à«€ સાફ કરો""શોધ કà«àªµà«‡àª°à«€""શોધો""કà«àªµà«‡àª°à«€ સબમિટ કરો""વૉઇસ શોધ""આની સાથે શેર કરો""%sની સાથે શેર કરો""સંકà«àªšàª¿àª¤ કરો""શોધો""Joan orri nagusira""Joan gora""Aukera gehiago""Eginda""Ikusi guztiak""Aukeratu aplikazio bat""DESAKTIBATU""AKTIBATU""Alt +""Ktrl +""ezabatu""sartu""Funtzioa +""Meta +""Maius +""zuriunea""Sym +""Menua +""Bilatu…""Garbitu kontsulta""Bilaketa-kontsulta""Bilatu""Bidali kontsulta""Ahozko bilaketa""Partekatu honekin""Partekatu %s aplikazioarekin""Tolestu""Bilatu""హోమà±â€Œà°•ౠనావిగేటౠచేసà±à°¤à±à°‚ది""పైకి నావిగేటౠచేసà±à°¤à±à°‚ది""మరినà±à°¨à°¿ ఆపà±à°·à°¨à±â€Œà°²à±""పూరà±à°¤à°¯à°¿à°‚ది""à°…à°¨à±à°¨à±€ చూడండి""యాపà±â€Œà°¨à± à°Žà°‚à°šà±à°•ోండి""ఆఫà±""ఆనà±""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""à°¸à±à°ªà±‡à°¸à±""Sym+""Menu+""సెరà±à°šà± చేయండి…""à°ªà±à°°à°¶à±à°¨à°¨à± తీసివేసà±à°¤à±à°‚ది""సెరà±à°šà± à°•à±à°µà±†à°°à±€""సెరà±à°šà±""à°ªà±à°°à°¶à±à°¨à°¨à°¿ సమరà±à°ªà°¿à°¸à±à°¤à±à°‚ది""వాయిసౠసెరà±à°šà±""వీరితో షేరౠచేసà±à°¤à±à°‚ది""%sతో షేరౠచేసà±à°¤à±à°‚ది""à°•à±à°¦à°¿à°¸à±à°¤à±à°‚ది""సెరà±à°šà±""Krmarjenje na zaÄetek""Pomik navzgor""VeÄ možnosti""KonÄano""Pokaži vse""Izbira aplikacije""IZKLOP""VKLOP""Alt +""Ctrl +""delete""enter""Fn +""Meta +""Shift +""preslednica""Sym +""Meni +""Iskanje …""Izbris poizvedbe""Iskalna poizvedba""Iskanje""PoÅ¡iljanje poizvedbe""Glasovno iskanje""Deljenje z:""Deljenje z drugimi prek aplikacije %s""Strnitev""Iskanje""Portami a casa""Torna indietro""Altre opzioni""Fine""Mostra tutto""Scelta di un\'app""OFF""ON""ALT +""CTRL +""CANC""INVIO""FUNZIONE +""META +""MAIUSC +""SPAZIO""SYM +""MENU +""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi tramite %s""Comprimi""Cerca""PÄrvietoties uz sÄkuma ekrÄnu""PÄrvietoties uz augÅ¡u""Citas opcijas""Gatavs""SkatÄ«t visu""IzvÄ“lieties lietotni""IZSLÄ’GT""IESLÄ’GT""Alternēšanas taustiņš +""Vadīšanas taustiņš +""dzēšanas taustiņš""ievadīšanas taustiņš""Funkcijas taustiņš +""Meta taustiņš +""PÄrslÄ“gÅ¡anas taustiņš +""atstarpes taustiņš""Simbolu taustiņš +""Poga IzvÄ“lne +""MeklÄ“jiet…""NotÄ«rÄ«t vaicÄjumu""Meklēšanas vaicÄjums""MeklÄ“t""Iesniegt vaicÄjumu""MeklÄ“t ar balsi""KopÄ«got ar:""KopÄ«got ar lietojumprogrammu %s""Sakļaut""MeklÄ“t""Vai ao inicio""Vai cara arriba""Máis opcións""Feito""Ver todo""Selecciona unha aplicación""DESACTIVADO""ACTIVADO""Alt +""Ctrl +""eliminar""intro""Función +""Meta +""Maiús +""espazo""Sym +""Menú +""Busca…""Borra a consulta""Busca a consulta""Realiza buscas""EnvÃa a consulta""Busca por voz""Comparte contido con""Comparte contido coa aplicación %s""Contrae""Buscar""转到首页""转到上一层级""更多选项""完æˆ""查看全部""选择应用""å…³é—""å¼€å¯""Alt+""Ctrl+""Delete é”®""Enter é”®""Fn+""Meta+""Shift+""ç©ºæ ¼é”®""Sym+""Menu+""æœç´¢â€¦""清除查询""æœç´¢æŸ¥è¯¢""æœç´¢""æäº¤æŸ¥è¯¢""è¯éŸ³æœç´¢""分享对象""与%s分享""æ”¶èµ·""æœç´¢""መáŠáˆ» ዳስስ""ወደ ላዠያስሱ""ተጨማሪ አማራጮች""ተከናá‹áŠ—áˆ""áˆáˆ‰áŠ•áˆ á‹áˆ˜áˆáŠ¨á‰±""አንድ መተáŒá‰ ሪያ á‹áˆáˆ¨áŒ¡""አጥá‹""አብራ""Alt+""Ctrl+""ሰáˆá‹""enter""Function+""Meta+""Shift+""áŠáተት""Sym+""Menu+""á‹áˆáˆáŒ‰â€¦""መጠá‹á‰… አጽዳ""የáለጋ መጠá‹á‰…""áለጋ""መጠá‹á‰… አስገባ""የድáˆáŒ½ áለጋ""አጋራ በ""ለ%s አጋራ""ሰብስብ""áለጋ""Tunjukkan jalan ke rumah""Kembali ke atas""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Telusuri kueri""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan dengan %s""Ciutkan""Telusuri""Siirry etusivulle""Siirry ylös""Lisäasetukset""Valmis""Näytä kaikki""Valitse sovellus""POIS PÄÄLTÄ""PÄÄLLÄ""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Vaihto+""välilyönti""Sym+""Valikko+""Haku…""Tyhjennä kysely""Hakukysely""Haku""Lähetä kysely""Puhehaku""Jaa…""Jaa: %s""Tiivistä""Haku""მთáƒáƒ•áƒáƒ ზე გáƒáƒ“áƒáƒ¡áƒ•ლáƒ""ზემáƒáƒ— გáƒáƒ“áƒáƒ¡áƒ•ლáƒ""სხვრვáƒáƒ იáƒáƒœáƒ¢áƒ”ბი""მზáƒáƒ“áƒáƒ""ყველáƒáƒ¡ ნáƒáƒ®áƒ•áƒ""áƒáƒ˜áƒ ჩიეთ áƒáƒžáƒ˜""გáƒáƒ›áƒáƒ თვáƒ""ჩáƒáƒ თვáƒ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""შáƒáƒ ისი""Sym+""Menu+""ძიებáƒâ€¦""მáƒáƒ—ხáƒáƒ•ნის გáƒáƒ¡áƒ£áƒ¤áƒ—áƒáƒ•ებáƒ""მáƒáƒ—ხáƒáƒ•ნის ძიებáƒ""ძიებáƒ""მáƒáƒ—ხáƒáƒ•ნის გáƒáƒ“áƒáƒ’ზáƒáƒ•ნáƒ""ხმáƒáƒ•áƒáƒœáƒ˜ ძიებáƒ""გáƒáƒ–იáƒáƒ ებáƒ:""%s-ით გáƒáƒ–იáƒáƒ ებáƒ""ჩáƒáƒ™áƒ”ცვáƒ""ძიებáƒ""Vratite se na poÄetnu stranicu""Idi gore""ViÅ¡e opcija""Gotovo""Prikaži sve""Odaberite aplikaciju""ISKLJUÄŒENO""UKLJUÄŒENO""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""razmak""Sym+""Menu+""Pretražite...""ObriÅ¡i upit""Pretraži upit""Pretraži""PoÅ¡alji upit""Glasovno pretraživanje""Dijeli sa""Dijeli putem aplikacije %s""Suzi""Pretražite""Ugrás a fÅ‘oldalra""Fel""További lehetÅ‘ségek""Kész""Az összes megtekintése""Válasszon alkalmazást""KI""BE""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Szóköz""Sym+""Menu+""Keresés…""Lekérdezés törlése""Keresési lekérdezés""Keresés""Lekérdezés küldése""Hangalapú keresés""Megosztás a következÅ‘vel:""Megosztás a következÅ‘ alkalmazással: %s""Összecsukás""Keresés""Ðавигиране към Ð½Ð°Ñ‡Ð°Ð»Ð½Ð¸Ñ ÐµÐºÑ€Ð°Ð½""Ðавигиране нагоре""Още опции""Готово""Преглед на вÑички""Изберете приложение""ИЗКЛ.""ВКЛ.""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""клавиша за интервал""Sym+""Menu+""ТърÑете…""ИзчиÑтване на заÑвката""ЗаÑвка за търÑене""ТърÑене""Изпращане на заÑвката""ГлаÑово търÑене""СподелÑне ÑÑŠÑ:""СподелÑне ÑÑŠÑ: %s""Свиване""ТърÑене""NavigaÈ›i la ecranul de pornire""NavigaÈ›i în sus""Mai multe opÈ›iuni""Gata""AfiÈ™aÈ›i tot""AlegeÈ›i o aplicaÈ›ie""DEZACTIVAT""ACTIVAT""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Meniu+""CăutaÈ›i…""ȘtergeÈ›i interogarea""Termen de căutare""CăutaÈ›i""TrimiteÈ›i interogarea""Căutare vocală""TrimiteÈ›i la""TrimiteÈ›i folosind %s""RestrângeÈ›i""CăutaÈ›i""​ទៅទំពáŸážšážŠáž¾áž˜""រំកិលឡើងលើ""ជម្រើសច្រើនទៀáž""រួចរាល់""មើលទាំងអស់""ជ្រើសរើស​កម្មវិធី​​""បិទ""បើក""Alt+""Ctrl+""លុប""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ស្វែងរក…""សម្អាážâ€‹ážŸáŸ†ážŽáž½ážš""ស្វែងរកសំណួរ​""ស្វែងរក""ដាក់បញ្ជូន​សំណួរ""ស្វែងរក​ážáž¶áž˜â€‹ážŸáŸ†áž¡áŸáž„""ចែករំលែក​ជា​មួយ""ចែក​រំលែក​ជា​មួយ %s""បង្រួម""ស្វែងរក"54dip"Find hjem""GÃ¥ op""Flere valgmuligheder""Udfør""Se alle""Vælg en app""FRA""TIL""Alt+""Ctrl+""slet""enter""Fn+""Meta+""Shift+""mellemrum""Sym+""Menu+""Søg…""Ryd forespørgsel""Søgeforespørgsel""Søg""Indsend forespørgsel""Talesøgning""Del med""Del med %s""Skjul""Søg""Idi na poÄetnu""Natrag""ViÅ¡e opcija""Gotovo""Prikaži sve""Odabir aplikacije""ISKLJUÄŒENO""UKLJUÄŒENO""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""svemir""Sym+""Menu+""Pretražite…""IzbriÅ¡i upit""Upit za pretraživanje""Pretraži""PoÅ¡alji upit""Glasovno pretraživanje""Dijeli s""Dijeli putem aplikacije %s""Sažmi""Pretraži""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""홈으로 ì´ë™""위로 ì´ë™""추가 옵션""완료""ì „ì²´ 보기""앱 ì„ íƒ""사용 중지""사용""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""스페ì´ìŠ¤ë°”""Sym+""Menu+""검색...""검색어 ì‚ì œ""검색어""검색""검색어 보내기""ìŒì„± 검색""ê³µìœ ëŒ€ìƒ:""%sê³¼(와) ê³µìœ ""ì ‘ê¸°""검색""Revenir à l\'accueil""Revenir en haut de la page""Autres options""OK""Tout afficher""Sélectionner une application""NON""OUI""Alt+""Ctrl+""supprimer""entrée""Fonction+""Méta+""Maj+""espace""Sym+""Menu+""Rechercher…""Effacer la requête""Requête de recherche""Rechercher""Envoyer la requête""Recherche vocale""Partager avec""Partager avec %s""Réduire""Rechercher"- 60%
- 90%
- 50%
- 70%
- 45%
- 72%
"Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ£Õ¬ÕÕ¡Õ¾Õ¸Ö€ Õ§Õ»""Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ¾Õ¥Ö€Ö‡""Ô±ÕµÕ¬ Õ¨Õ¶Õ¿Ö€Õ¡Õ¶Ö„Õ¶Õ¥Ö€""ÕŠÕ¡Õ¿Ö€Õ¡Õ½Õ¿ Õ§""ÕÕ¥Õ½Õ¶Õ¥Õ¬ Õ¢Õ¸Õ¬Õ¸Ö€Õ¨""Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®""Ô±Õ†Õ‹Ô±ÕÔµÔ¼""Õ„Ô»Ô±Õ‘Õ†ÔµÔ¼""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Õ¢Õ¡ÖÕ¡Õ¿""Sym+""Menu+""Որոնում…""Õ‹Õ¶Õ»Õ¥Õ¬ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´Õ¨""ÕˆÖ€Õ¸Õ¶Õ´Õ¡Õ¶ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´""ÕˆÖ€Õ¸Õ¶Õ¥Õ¬""ÕˆÖ‚Õ²Õ¡Ö€Õ¯Õ¥Õ¬ Õ°Õ¡Ö€ÖÕ¸Ö‚Õ´Õ¨""ÕÕ¡ÕµÕ¶Õ¡ÕµÕ«Õ¶ Õ¸Ö€Õ¸Õ¶Õ¸Ö‚Õ´""Կիսվել…""Ô¿Õ«Õ½Õ¾Õ¥Õ¬ %s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ« Õ´Õ«Õ»Õ¸ÖÕ¸Õ¾""Ô¾Õ¡Õ¬Õ¥Õ¬""ÕˆÖ€Õ¸Õ¶Õ¥Õ¬""گھر Ú©ÛŒ طر٠نیویگیٹ کریں""اوپر نیویگیٹ کریں""مزید اختیارات""ÛÙˆ گیا""سبھی دیکھیں""ایک ایپ منتخب کریں""Ø¢Ù""آن""Alt+‎""Ctrl+‎""delete""enter""Function+‎""Meta+‎""Shift+‎""space""Sym+‎""Menu+‎""تلاش کریں…""Ø§Ø³ØªÙØ³Ø§Ø± صا٠کریں""تلاش کا Ø§Ø³ØªÙØ³Ø§Ø±""تلاش کریں""Ø§Ø³ØªÙØ³Ø§Ø± جمع کرائیں""صوتی تلاش""اس Ú©Û’ ساتھ اشتراک کریں""%s Ú©Û’ ساتھ اشتراک کریں""سکیڑیں""تلاش کریں""Navegar para casa""Navegar para cima""Mais opções""ConcluÃdo""Ver tudo""Escolher uma app""DESATIVADO""ATIVADO""Alt +""Ctrl +""eliminar""enter""Função +""Meta +""Shift +""espaço""Sym +""Menu +""Pesquisar…""Limpar consulta""Consulta de pesquisa""Pesquisar""Enviar consulta""Pesquisa por voz""Partilhar com""Partilhar com a app %s""Reduzir""Pesquisar""ç€è¦½ä¸»é ""å‘上ç€è¦½""更多é¸é …""完æˆ""查看全部""鏿“‡æ‡‰ç”¨ç¨‹å¼""關閉""開啟""Alt +""Ctrl +""刪除""Enter éµ""Fn +""Meta +""Shift +""空白éµ""Sym +""Menu +""æœå°‹â€¦""清除查詢""æœå°‹æŸ¥è©¢""æœå°‹""æäº¤æŸ¥è©¢""語音æœå°‹""分享å°è±¡""使用「%sã€åˆ†äº«""æ”¶åˆ""æœå°‹""ಹೋಮà³â€Œà²—ೆ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ""ಮೇಲಕà³à²•ೆ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ""ಇನà³à²¨à²·à³à²Ÿà³ ಆಯà³à²•ೆಗಳà³""ಮà³à²—ಿದಿದೆ""ಎಲà³à²²à²µà²¨à³à²¨à³‚ ನೋಡಿ""ಆà³à²¯à²ªà³â€Œà²µà³Šà²‚ದನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ""ಆಫà³""ಆನà³""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ಹà³à²¡à³à²•ಿ…""ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ತೆರವà³à²—ೊಳಿಸಿ""ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ಹà³à²¡à³à²•ಿ""ಹà³à²¡à³à²•ಿ""ಪà³à²°à²¶à³à²¨à³†à²¯à²¨à³à²¨à³ ಸಲà³à²²à²¿à²¸à²¿""ಧà³à²µà²¨à²¿ ಹà³à²¡à³à²•ಾಟ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳà³à²³à²¿""%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳà³à²³à²¿""ಕà³à²—à³à²—ಿಸಿ""ಹà³à²¡à³à²•ಿ""ହà‹à¬®à ପà‡à¬œà‌କà ନà‡à¬à¬¿à¬—à‡à¬Ÿà କରନàତà""ଉପରକà ନà‡à¬à¬¿à¬—à‡à¬Ÿà କରନàତà""ଅଧିକ ବିକଳàପ""ହà‹à¬‡à¬—ଲା""ସବà ଦà‡à¬–ନàତà""ଗà‹à¬Ÿà¬¿à¬ ଆପà†ବାଛନàତà""ବନàଦ""ଚାଲà ଅଛି""Alt+""Ctrl+""ଡିଲିଟà‌ କରନàତà""à¬à¬£àଟରà""Function+""Meta+""Shift+""ସàପà‡à¬¸àâ€""Sym+""ମà‡à¬¨à""ସରàଚàଚ କରନàତà…""କàà±à‡à¬°à€ ଖାଲି କରନàତà""ସରàଚàଚ କàà±à‡à¬°à€""ସନàଧାନ କରନàତà""କàà±à‡à¬°à€ ଦାଖଲ କରନàତà""à¬à¬à¬¸à‌ ସରàଚàଚ""à¬à¬¹à¬¾à¬™àକ ସହ ସà‡àŸà¬¾à¬°à‌ କରନàତà""%s ସହ ସà‡àŸà¬¾à¬°à†କରନàତà""ସଂକàଚିତ କରନàତà""ସନàଧାନ କରନàତà"0px"Zur Startseite""Nach oben""Weitere Optionen""Fertig""Alle anzeigen""App auswählen""AUS""AN""Alt +""Strg +""Löschen""Eingabetaste""Funktionstaste +""Meta-Taste +""Umschalttaste +""Leertaste""Sym-Taste +""Menütaste +""Suchen…""Suchanfrage löschen""Suchanfrage""Suche""Anfrage senden""Sprachsuche""Teilen mit""Mit %s teilen""Minimieren""Suche""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Navegar a la página principal""Navegar hacia arriba""Más opciones""Listo""Ver todas""Elegir una app""DESACTIVAR""ACTIVAR""Alt+""Ctrl+""borrar""intro""Función+""Meta+""Mayúscula+""espacio""Sym+""Menú+""Buscar…""Borrar consulta""Búsqueda""Buscar""Enviar consulta""Búsqueda por voz""Compartir con""Compartir con %s""Contraer""Buscar""မူလနေရာကá€á€¯ ပြန်သွားရန်""အပေါ်သá€á€¯á€· ရွှေ့ရန်""နောက်ထပ် ရွေးစရာများ""ပြီးပြီ""အားလုံး ကြည့်ရန်""အက်ပ်á€á€…်á€á€¯á€€á€á€¯ ရွေးရန်""ပá€á€á€º""ဖွင့်""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ရှာဖွေရန်…""ရှာဖွေမှုကá€á€¯ ဖယ်ရှားရန်""ရှာဖွေရန် မေးá€á€½á€”်း""ရှာရန်""ရှာဖွေစရာ အá€á€»á€€á€ºá€¡á€œá€€á€ºá€€á€á€¯ ပေးပá€á€¯á€·á€›á€”်""အသံဖြင့် ရှာရန်""နှင့် မျှá€á€±á€›á€”်""%s ဖြင့် မျှá€á€±á€›á€”်""လျှော့ပြရန်""ရှာဖွေမှု""Idite na poÄetnu""Idite nagore""JoÅ¡ opcija""Gotovo""Prikaži sve""Izaberite aplikaciju""ISKLJUÄŒENO""UKLJUÄŒENO""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""taster za razmak""Sym+""Menu+""Pretražite…""ObriÅ¡ite upit""Pretražite upit""Pretražite""PoÅ¡aljite upit""Glasovna pretraga""Delite pomoću""Delite pomoću aplikacije %s""Skupi""Pretražite""ç€è¦½é¦–é ""å‘上ç€è¦½""更多é¸é …""完æˆ""查看全部""鏿“‡æ‡‰ç”¨ç¨‹å¼""關閉""開啟""Alt +""Ctrl +""Delete éµ""Enter éµ""Fn +""Meta +""Shift +""ç©ºæ ¼éµ""Sym +""Menu +""æœå°‹â€¦""清除查詢""æœå°‹æŸ¥è©¢""æœå°‹""æäº¤æŸ¥è©¢""語音æœå°‹""分享å°è±¡""與「%sã€åˆ†äº«""æ”¶åˆ""æœå°‹"truetrue#ff000000#ffffffff#7fa87f@android:color/black@android:color/black@color/material_deep_teal_200@color/material_deep_teal_500@color/material_grey_800@android:color/white@color/material_grey_850@color/material_grey_50#80ffffff#80000000@color/bright_foreground_material_light@color/bright_foreground_material_dark@android:color/white@android:color/black#ff5a595b#ffd6d7d7#80bebebe#80323232#ffbebebe#ff323232#ff7043#ff5722@android:color/white@android:color/black#6680cbc4#66009688#ff37474f#ff263238#ff21272b#ff80cbc4#ff008577#fff5f5f5#ffe0e0e0#fffafafa#ff757575#ff424242#ff303030#ff212121@android:color/black@color/material_grey_600@color/material_grey_900@color/material_grey_100#ffffffff#de000000#4Dffffff#39000000#33ffffff#1f000000#b3ffffff#8a000000#36ffffff#24000000#ff616161#ffbdbdbd#ffbdbdbd#fff1f1f1#e6616161#e6FFFFFF16dp72dp56dp0dp0dp4dp16dp10dp6dp48dp180dp5dp-3dp48dp48dp36dp48dp48dp@dimen/abc_control_inset_material6dp8dp@dimen/abc_control_padding_material720dp320dp2dp4dp4dp2dp- 80%
- 100%
- 320dp
- 320dp
8dp8dp- 65%
- 95%
24dp18dp8dp- 0.30
- 0.26
32dip8dip8dip7dp4dp10dp16dp80dp64dp48dp@dimen/abc_action_bar_content_inset_material296dp4dp48dip320dip2dp2dp20dp48dp36dp16dp3dp14sp14sp14sp12sp34sp45sp56sp112sp24sp22sp18sp14sp16sp14sp16sp16dp20sp20dp- 0.30
- 0.26
- 0.26
- 0.20
- 0.12
- 0.50
- 0.38
- 0.70
- 0.54
2dp16dp8dp8dp96dp6.5dp0dp16dp 220150127150Navigate homeNavigate upMore optionsDoneSee allChoose an appOFFONAlt+Ctrl+deleteenterFunction+Meta+Shift+spaceSym+Menu+Search…Clear querySearch querySearchSubmit queryVoice searchShare withShare with %sCollapseSearch
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "Gaan na tuisskerm""Gaan op""Nog opsies""Klaar""Sien alles""Kies \'n program""AF""AAN""Alt+""Ctrl+""delete""enter""Funksie+""Meta+""Shift+""spasiebalk""Simbool+""Kieslys+""Soek …""Vee navraag uit""Soektognavraag""Soek""Dien navraag in""Stemsoektog""Deel met""Deel met %s""Vou in""Soek""Przejdź na stronÄ™ głównÄ…""Przejdź wyżej""WiÄ™cej opcji""Gotowe""Pokaż wszystko""Wybierz aplikacjÄ™""WYÅ.""WÅ.""Alt+""Ctrl+""Delete""Enter""Funkcyjny+""Meta+""Shift+""spacja""Sym+""Menu+""Szukaj…""Wyczyść zapytanie""Zapytanie""Szukaj""WyÅ›lij zapytanie""Wyszukiwanie gÅ‚osowe""UdostÄ™pnij przez:""UdostÄ™pnij przez: %s""ZwiÅ„""Szukaj""Eiti į pagrindinį puslapį""NarÅ¡yti aukÅ¡tyn""Daugiau parinkÄių""Atlikta""Žr. viskÄ…""Pasirinkite programÄ…""IÅ JUNGTI""Ä®JUNGTI""„Alt“ +""„Ctrl“ +""„delete“""„enter“""„Function“ +""„Meta“ +""„Shift“ +""„space“""„Sym“ +""„Menu“ +""IeÅ¡koti…""IÅ¡valyti užklausÄ…""PaieÅ¡kos užklausa""IeÅ¡koti""Pateikti užklausÄ…""PaieÅ¡ka balsu""Bendrinti su""Bendrinti naudojant programÄ… „%s“""Sutraukti""IeÅ¡koti""Revenir à l\'accueil""Revenir en arrière""Autres options""Terminé""Tout afficher""Sélectionner une application""DÉSACTIVER""ACTIVER""Alt+""Ctrl+""supprimer""entrée""Fonction+""Méta+""Maj+""espace""Sym+""Menu+""Rechercher…""Effacer la requête""Requête de recherche""Rechercher""Envoyer la requête""Recherche vocale""Partager avec""Partager avec %s""Réduire""Rechercher""Boshiga o‘tish""Yopish""Yana""OK""Hammasi""Ilovani tanlang""YOQILMAGAN""YONIQ""Alt+""Ctrl+""Delete""Enter""Fn+""Meta+""Shift+""Probel""Sym+""Menyu+""Qidirish…""So‘rovni o‘chirish""Qidiruv so‘rovi""Qidiruv""So‘rov yaratish""Ovozli qidiruv""Ulashish""%s orqali ulashish""Yig‘ish""Qidiruv""গৃহ পৃষà§à¦ ালৈ যাওক""ওপৰলৈ যাওক""অধিক বিকলà§à¦ª""সমà§à¦ªà¦¨à§à¦¨ হ’ল""আটাইবোৰ চাওক""কোনো à¦à¦ªà§ বাছনি কৰক""অফ""অন""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""সনà§à¦§à¦¾à¦¨ কৰক…""সনà§à¦§à¦¾à¦¨ কৰা পà§à§°à¦¶à§à¦¨ মচক""সনà§à¦§à¦¾à¦¨ কৰা পà§à§°à¦¶à§à¦¨""সনà§à¦§à¦¾à¦¨ কৰক""পà§à§°à¦¶à§à¦¨ দাখিল কৰক""কণà§à¦ ধà§à¦¬à¦¨à¦¿à§° দà§à¦¬à¦¾à§°à¦¾ সনà§à¦§à¦¾à¦¨""ইয়াৰ জৰিয়তে শà§à¦¬à§‡à¦¯à¦¼à¦¾à§° কৰক""%sà§° জৰিয়তে শà§à¦¬à§‡à¦¯à¦¼à¦¾à§° কৰক""সংকোচন কৰক""সনà§à¦§à¦¾à¦¨""Ir a inicio""Desplazarse hacia arriba""Más opciones""Hecho""Ver todo""Seleccionar una aplicación""DESACTIVADO""ACTIVADO""Alt +""Ctrl +""Suprimir""Intro""Función +""Meta +""Mayús +""Espacio""Sym +""Menú +""Buscar…""Borrar consulta""Consulta de búsqueda""Buscar""Enviar consulta""Búsqueda por voz""Compartir con""Compartir con %s""Ocultar""Buscar""Nenda mwanzo""Sogeza juu""Chaguo zaidi""Nimemaliza""Angalia zote""Chagua programu""IMEZIMWA""IMEWASHWA""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Tafuta…""Futa hoja""Hoja ya utafutaji""Tafuta""Wasilisha hoja""Kutafuta kwa kutamka""Shiriki na""Shiriki ukitumia %s""Kunja""Tafuta""ਹੋਮ \'ਤੇ ਜਾਓ""ਉੱਪਰ ਜਾਓ""ਹੋਰ ਵਿਕਲਪ""ਹੋ ਗਿਆ""ਸਠਦੇਖੋ""ਇੱਕ à¨à¨ª ਚà©à¨£à©‹""ਬੰਦ""ਚਾਲੂ""Alt+""Ctrl+""ਮਿਟਾਓ""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ਖੋਜ…""ਪà©à©±à¨›à¨—ਿੱਛ ਕਲੀਅਰ ਕਰੋ""ਖੋਜ ਪà©à©±à¨›à¨—ਿੱਛ""ਖੋਜ""ਪà©à©±à¨›à¨—ਿੱਛ ਸਪà©à¨°à¨¦ ਕਰੋ""ਅਵਾਜ਼ੀ ਖੋਜ""ਇਸ ਨਾਲ ਸਾਂà¨à¨¾ ਕਰੋ""%s ਨਾਲ ਸਾਂà¨à¨¾ ਕਰੋ""ਸਮੇਟੋ""ਖੋਜ""Navigeren naar startpositie""Omhoog navigeren""Meer opties""Klaar""Alles tonen""Een app selecteren""UIT""AAN""Alt +""Ctrl +""Delete""Enter""Functie +""Meta +""Shift +""spatie""Sym +""Menu +""Zoeken…""Zoekopdracht wissen""Zoekopdracht""Zoeken""Zoekopdracht verzenden""Gesproken zoekopdracht""Delen met""Delen met %s""Samenvouwen""Zoeken""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€â€â€â€Žâ€ŽNavigate home‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€ŽNavigate up‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€â€â€Žâ€â€Žâ€Žâ€â€ŽMore options‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€ŽDone‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€ŽSee all‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€ŽChoose an app‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€Žâ€â€â€ŽOFF‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€Žâ€ŽON‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€â€Žâ€â€Žâ€ŽAlt+‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€Žâ€ŽCtrl+‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Ždelete‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€â€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Ženter‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€ŽFunction+‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€â€â€Žâ€ŽMeta+‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€ŽShift+‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€â€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žspace‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€â€â€â€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€ŽSym+‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€â€â€â€â€â€Žâ€ŽMenu+‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€ŽSearch…‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€â€â€ŽClear query‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€â€ŽSearch query‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€ŽSearch‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€â€â€â€ŽSubmit query‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€ŽVoice search‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€â€â€ŽShare with‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€â€Žâ€â€â€Žâ€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€ŽShare with ‎â€â€Žâ€Žâ€â€â€Ž%s‎â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€â€â€â€â€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€â€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€Žâ€â€Žâ€ŽCollapse‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€â€Žâ€â€â€â€Žâ€â€â€â€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€ŽSearch‎â€â€Žâ€Žâ€â€Ž""Navegar para a página inicial""Navegar para cima""Mais opções""ConcluÃdo""Ver tudo""Selecionar um app""DESATIVADO""ATIVADO""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""espaço""Sym+""Menu+""Pesquisar…""Limpar consulta""Consulta de pesquisa""Pesquisar""Enviar consulta""Pesquisa por voz""Compartilhar com""Compartilhar com %s""Recolher""Pesquisar"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ />
+ %1$s inenkinga ngamasevisi e-Google Play. Sicela uzame futhi.У додатку %1$s виникла проблема із ÑервіÑами Google Play. Повторіть Ñпробу.%1$s има проблеми Ñо уÑлугите на Google Play. Обидете Ñе повторно.%1$s-г Google Play-н үйлчилгÑÑгÑÑÑ€ ашиглахад аÑуудал гарлаа. Дахин оролдоно уу.%1$s àºàº³àº¥àº±àº‡àº¡àºµàºšàº±àº™àº«àº²àºàº±àºšàºšà»àº¥àº´àºàº²àº™ Google Play. àºàº°àº¥àº¸àº™àº²àº¥àºàº‡à»ƒà»à»ˆàºàºµàºàº„ັ້ງ.Η εφαÏμογή %1$s αντιμετωπίζει κάποιο Ï€Ïόβλημα με τις υπηÏεσίες Google Play. Î Ïοσπαθήστε ξανά.У праграмы %1$s узніклі праблемы Ñа Ñлужбамі Google Play. Паўтарыце Ñпробу.â€Ù„دى %1$s مشكلة ÙÙŠ خدمات Google Play. ÙŠÙØ±Ø¬Ù‰ إعادة Ø§Ù„Ù…ØØ§ÙˆÙ„Ø©.%1$s á à vandræðum með þjónustu Google Play. Reyndu aftur.%1$s लाई Google Play services सà¤à¤— सहकारà¥à¤¯ गरà¥à¤¨ समसà¥à¤¯à¤¾ à¤à¤‡à¤°à¤¹à¥‡à¤•ो छ। कृपया फेरि पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¥¤%1$s tÉ™tbiqi ilÉ™ Google Play xidmÉ™tlÉ™ri arasında problem var. Daha sonra yenidÉ™n cÉ™hd edin.Nagkakaproblema ang %1$s sa mga serbisyo ng Google Play. Pakisubukan ulit.%1$s มีปัà¸à¸«à¸²à¹€à¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸šà¸£à¸´à¸à¸²à¸£à¸‚à¸à¸‡ Google Play โปรดลà¸à¸‡à¸à¸µà¸à¸„รั้ง%1$s қолданбаÑында Google Play қызметіне байланыÑты белгіÑіз қате шықты. Әрекетті қайталаңыз.%1$s колдонмоÑунун Google Play кызматтары менен иштөөдө көйгөй чыкты. Кайталап көрүңүз.%1$s menghadapi masalah berhubung perkhidmatan Google Play. Sila cuba lagi.%1$s, Google Play hizmetleriyle ilgili sorun yaşıyor. Lütfen tekrar deneyin.Google Play পরিষেবাগà§à¦²à¦¿à¦° সাথে %1$s à¦à¦° সমসà§à¦¯à¦¾ হচà§à¦›à§‡à§· অনà§à¦—à§à¦°à¦¹ করে আবার চেষà§à¦Ÿà¦¾ করà§à¦¨à§·%1$s Ä‘ang gặp sá»± cố vá»›i Dịch vụ Google Play. Hãy thá» lại.%1$s ka probleme me shërbimet e Google Play. Provo sërish.%1$s har problemer med Google Play-tjenester. Prøv pÃ¥ nytt.â€%1$s × ×ª×§×œ×” בבעיה בשירותי Google Play. × ×¡×” שוב.Rakendusel %1$s on probleeme Google Play teenustega. Proovige uuesti.Aplikácia %1$s má problémy so službami Google Play. Skúste to znova.Google Play சேவைகளில௠சிகà¯à®•ல௠à®à®±à¯à®ªà®Ÿà¯à®Ÿà®¤à®¾à®²à¯, %1$s ஆபà¯à®¸à¯ˆ அணà¯à®• à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ. மீணà¯à®Ÿà¯à®®à¯ à®®à¯à®¯à®²à®µà¯à®®à¯.%1$s има проблема Ñа Google Play уÑлугама. Пробајте поново.Приложению \"%1$s\" не удаетÑÑ Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒÑÑ Ðº ÑервиÑам Google Play. Повторите попытку.%1$s ला Google Play सेवांमधà¥à¤¯à¥‡ समसà¥à¤¯à¤¾ येत आहे. कृपया पà¥à¤¨à¥à¤¹à¤¾ पà¥à¤°à¤¯à¤¤à¥à¤¨ करा.%1$s को Google Play सेवाओं के साथ समसà¥à¤¯à¤¾ आ रही है. कृपया फिर से कोशिश करें.Det har uppstÃ¥tt ett fel mellan %1$s och Google Play-tjänsterna. Försök igen.Aplikace %1$s má potÞe se službami Google Play. Zkuste to prosÃm znovu.「%1$sã€ã§ Google Play 開発者サービスã«å•題ãŒç™ºç”Ÿã—ã¦ã„ã¾ã™ã€‚ã‚‚ã†ä¸€åº¦ãŠè©¦ã—ãã ã•ã„。Google Play സേവനങàµà´™à´³àµà´®à´¾à´¯à´¿ ബനàµà´§à´ªàµà´ªàµ†à´Ÿàµà´Ÿàµ %1$s ആപàµà´ªà´¿à´¨àµ†à´¨àµà´¤àµ‹ à´ªàµà´°à´¶àµà´¨à´®àµà´£àµà´Ÿàµ. വീണàµà´Ÿàµà´‚ à´¶àµà´°à´®à´¿à´•àµà´•àµà´•.%1$s à·„à¶§ Google Play සේව෠සමගින් à¶œà·à¶§à¶½à·” ඇà¶. කරුණà·à¶šà¶» à¶±à·à·€à¶ à¶‹à¶à·Šà·ƒà·à·„ කරන්න.%1$s té problemes amb Serveis de Google Play. Torna-ho a provar.â€%1$s برای Ø§Ø³ØªÙØ§Ø¯Ù‡ از خدمات Google Play با مشکل روبرو است. Ù„Ø·ÙØ§Ù‹ دوباره Ø§Ù…ØªØØ§Ù† کنید.%1$s ને Google Play સેવાઓમાં મà«àª¶à«àª•ેલી આવી રહી છે. કૃપા કરીને ફરી પà«àª°àª¯àª¾àª¸ કરો.%1$s aplikazioak arazoak ditu Google Play Services-ekin. Saiatu berriro.%1$s Google Play సేవలతో సమసà±à°¯ కలిగి ఉంది. దయచేసి మళà±à°²à±€ à°ªà±à°°à°¯à°¤à±à°¨à°¿à°‚à°šà°‚à°¡à°¿.Aplikacija %1$s ima težave s storitvami Google Play. Poskusite znova.%1$s sta riscontrando problemi con Google Play Services. Riprova.LietotnÄ“ %1$s ir radusies problÄ“ma ar Google Play pakalpojumu darbÄ«bu. LÅ«dzu, mēģiniet vÄ“lreiz.%1$s ten problemas cos servizos de Google Play. Téntao de novo.%1$sæ— æ³•è®¿é—® Google Play æœåŠ¡ï¼Œè¯·é‡è¯•。%1$s በGoogle Play አገáˆáŒáˆŽá‰¶á‰½ ላዠችáŒáˆ®á‰½ እያጋጠሙት áŠá‹á¢ እባáŠá‹Ž እንደገና á‹áˆžáŠáˆ©á¢%1$s mengalami masalah dengan layanan Google Play. Coba lagi.Sovelluksella %1$s on ongelmia Google Play Palveluiden kanssa. Yritä uudelleen.%1$s-ს Google Play Services-თáƒáƒœ პრáƒáƒ‘ლემრშეექმნáƒ. გთხáƒáƒ•თ, ცáƒáƒ“áƒáƒ— ხელáƒáƒ®áƒšáƒ.Aplikacija %1$s ima problema s Google Play uslugama. PokuÅ¡ajte ponovo.A(z) %1$s alkalmazás problémába ütközött a Google Play-szolgáltatások használata során. Próbálkozzon újra.%1$s има проблеми Ñ ÑƒÑлугите за Google Play. МолÑ, опитайте отново.%1$s întâmpină probleme privind serviciile Google Play. ÃŽncercaÈ›i din nou.%1$s កំពុងមានបញ្ហាជាមួយសáŸážœáž¶áž€áž˜áŸ’មរបស់ Google Play ។ សូមព្យាយាមម្ážáž„ទៀážáž“ៅពáŸáž›áž€áŸ’រោយ។%1$s har problemer med Google Play-tjenester. Prøv igen.%1$s ima poteÅ¡koća s uslugama Google Playa. PokuÅ¡ajte ponovo.%1$s is having trouble with Google Play services. Please try again.%1$sì—서 Google Play 서비스를 사용하는 ë° ë¬¸ì œê°€ 있습니다. 다시 시ë„하세요.L\'application %1$s rencontre des problèmes avec les services Google Play. Veuillez réessayer.%1$s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ¨ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ°Õ¥Õ¿ Õ¯Õ¡ÕºÕ¾Õ¡Õ® ÕÕ¶Õ¤Õ«Ö€ Õ¸Ö‚Õ¶Õ«: Õ“Õ¸Ö€Õ±Õ¥Ö„ Õ¶Õ¸Ö€Õ«Ö:â€%1$s Ú©Ùˆ Google Play سروسز Ú©Û’ ساتھ Ù…Ø³Ø¦Ù„Û Ù¾ÛŒØ´ Ø¢ Ø±ÛØ§ ÛÛ’Û” Ø¨Ø±Ø§Û Ú©Ø±Ù… Ø¯ÙˆØ¨Ø§Ø±Û Ú©ÙˆØ´Ø´ کریں۔%1$s está a ter problemas com os Serviços do Google Play. Tente novamente.「%1$sã€å˜å– Google Play æœå‹™æ™‚發生å•題。請ç¨å¾Œå†è©¦ä¸€æ¬¡ã€‚Google Play ಸೇವೆಗಳಲà³à²²à²¿ %1$s ಸಮಸà³à²¯à³†à²¯à²¨à³à²¨à³ ಹೊಂದಿದೆ. ದಯವಿಟà³à²Ÿà³ ಮತà³à²¤à³† ಪà³à²°à²¯à²¤à³à²¨à²¿à²¸à²¿.%1$sର Google Play ସà‡à¬¬à¬¾ ସହ à¬à¬• ସମସààŸà¬¾ ରହିଛି। ଦàŸà¬¾à¬•ରି ପàଣି ଚà‡à¬·àଟା କରନàତà।%1$s hat Probleme mit Google Play-Diensten. Bitte versuche es noch einmal.%1$s tiene problemas con los servicios de Google Play. Vuelve a intentarlo.%1$s သည် Google Play á€á€”်ဆောင်မှုများနှင့် ပြဿနာအနည်းငယ် ရှá€á€”ေပါသည်ዠထပ်လုပ်ကြည့်ပါá‹%1$s ima problema sa Google Play uslugama. Probajte ponovo.「%1$sã€ç„¡æ³•å˜å– Google Play æœå‹™ï¼Œè«‹å†è©¦ä¸€æ¬¡ã€‚12451000%1$s is having trouble with Google Play services. Please try again.%1$s ondervind probleme met Google Play Dienste. Probeer asseblief weer.%1$s ma problem z dostÄ™pem do UsÅ‚ug Google Play. Spróbuj jeszcze raz.Naudojant programÄ… „%1$s“ kilo problemų dÄ—l „Google Play“ paslaugų. Bandykite dar kartÄ….L\'application %1$s éprouve un problème avec les services Google Play. Veuillez réessayer.%1$s ilovasini Google Play xizmatlariga ulab bo‘lmadi. Qaytadan urinib ko‘ring.Google পà§à¦²à§‡ সেৱাত %1$s ত সমসà§à¦¯à¦¾ হৈ আছে। আকৌ চেষà§à¦Ÿà¦¾ কৰক।La aplicación %1$s tiene problemas con los Servicios de Google Play. Vuelve a intentarlo.%1$s inakumbwa na hitilafu ya huduma za Google Play. Tafadhali jaribu tena.%1$s ਨੂੰ Google Play ਸੇਵਾਵਾਂ ਨਾਲ ਸਮੱਸਿਆ ਆ ਰਹੀ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਦà©à¨¬à¨¾à¨°à¨¾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।%1$s ondervindt problemen met Google Play-services. Probeer het opnieuw.O app %1$s está com problemas com o Google Play Services. Tente novamente.
+ - %d izaziso ezintsha
+ - %d izaziso ezintsha
+ Goqa ishidi eliphansiNweba ishidi eliphansiNweba phakathiHudula isibambi esithephwe kabiliHudula isibambiIzinhlamvu ezifakiwe ezingu-%1$d zokungu-%2$dUmkhawulo wezinhlamvu udlule u-%1$d kokungu-%2$dSula umbhaloIphuthaBonisa imenyu yokudonsela phansiIsithonjana sebhokisiIthebhuKhetha u-AM noma u-PMamahora angu-%1$sKhetha ihora%1$s ezimpondweniKhetha amaminithiamaminithi angu-%1$sAMShintshela kumodi yewashi ngokufakwa kwesikhathi.IhoraIminithiPMKhetha isikhathiShintshela kumodi yokufaka umbhalo ngokufaka isikhathi.Isaziso esishaSusa i-%1$sIzaziso ezintsha ezingaphezu kokungu-%1$dShintshela kunyanga elandelayoShintshela kunyanga edluleUkukhethwa kosuku lokuqala: %1$s – Ukukhethwa kosuku lokuphela: %2$sUkukhetha kwamanje: %1$sluthoKhanselaKULUNGILE%1$sKhetha IdethiKhetha idethiIkholomu yezinsuku: %1$sIlanga lokuphela %1$sIfomethi engavumelekile.Isibonelo: %1$sSebenzisa: %1$sIbanga elingavumelekile.Funa onyakeni wamanje %1$dZulela onyakeni %1$dIkude kubanga: %1$sIdethi yokuqala – %1$s%1$s – Idethi yokuphela%1$s – %2$sKhetha IbangaIdethi yokuqala – Idethi yokuphelaLondolozaIlanga lokuqala %1$sIdethiIdethi yokuphelaIdethi yokuqaladmyNamuhla %1$sShintshela kwimodi yokufaka yekhalendaThepha ukuze ushintshele ekubukeni KwekhalendaShintshela kwimodi yokufaka yombhaloThepha ukuze ushintshele ekubukeni konyakaKhanselaKULUNGILEBonisa iphasiwedi
+ - %d нове ÑповіщеннÑ
+ - %d нові ÑповіщеннÑ
+ - %d нових Ñповіщень
+ - %d нового ÑповіщеннÑ
+ Згорнути нижній екранРозгорнути нижній екранРозгорнути нижню половинуМаркер Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ð°ÐºÑ‚Ð¸Ð²Ð¾Ð²Ð°Ð½Ð¾ подвійним дотикомМаркер переміщеннÑВведено Ñимволів: %1$d з %2$dПеревищено ліміт Ñимволів: %1$d з %2$dВидалити текÑтПомилкаПоказати Ñпадне менюЗначок вікнаВкладкаВиберіть ДП чи ПП%1$s годВибрати годину%1$s годВиберіть хвилини%1$s хвдпПерейти в режим годинника, щоб ввеÑти чаÑ.ГодинаХвилинаппВиберіть чаÑПерейти в текÑтовий режим, щоб ввеÑти чаÑ.Ðове ÑповіщеннÑВидалити %1$sÐових Ñповіщень більше ніж %1$dПерейти до наÑтупного міÑÑцÑПерейти до попереднього міÑÑцÑВибрана дата початку – %1$s; вибрана дата Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ â€“ %2$sПоточний вибір: %1$sнемаєСкаÑуватиOK%1$sВиберіть датуВибрана датаСтовпець із днÑми: %1$sДата завершеннÑ: %1$sÐедійÑний формат.Приклад: %1$sВикориÑтовувати: %1$sÐедійÑний діапазон.Перейти до поточного року: %1$dПерейти до %1$d рокуЗа межами діапазону: %1$sДата початку – %1$s%1$s – дата завершеннÑ%1$s – %2$sВиберіть діапазон датДата початку – дата завершеннÑЗберегтиДата початку: %1$sДатаДата завершеннÑДата початкудмрСьогодні: %1$sПерейти в режим Ð²Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ð² календаріÐатиÑніть, щоб перейти до переглÑду календарÑПерейти в режим Ð²Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ñ‚ÐµÐºÑтуÐатиÑніть, щоб перейти до переглÑду рокуСкаÑуватиOKПоказувати пароль
+ - %d ново извеÑтување
+ - %d нови извеÑтувања
+ Соберете го долниот лиÑтПроширете го долниот лиÑтПрошири до половинаРачката за влечење е допрена двапатиРачка за влечењеВнеÑени Ñе %1$d од %2$d знациОграничувањето на знаците надмина %1$d од %2$dИзбриши го текÑтотГрешкаПрикажи паѓачко мениИкона за дијалогКартичкаИзберете претпладне или попладне%1$s чаÑаИзберете чаÑ%1$s чаÑотИзбери минути%1$s минутипр.Префрлете Ñе на режимот за чаÑовник за да внеÑете време.ЧаÑМинутапо.Изберете времеПрефрлете Ñе на режимот за внеÑување текÑÑ‚ за да внеÑете време.Ðово извеÑтувањеОтÑтрани %1$sÐад %1$d нови извеÑтувањаПромени на Ñледниот меÑецПромени на претходниот меÑецИзбор на датум на започнување: %1$s – Избор на датум на завршување: %2$sТековен избор: %1$sнемаОткажиВо ред%1$sИзберете датумИзбран датумКолона Ñо денови: %1$sКраен датум %1$sÐеважечки формат.Пример: %1$sКориÑтете: %1$sПогрешен опÑег.Одете на тековната година: %1$dОди на %1$d годинаÐадвор од опÑег: %1$sПочетен датум - %1$s%1$s - краен датум%1$s - %2$sИзберете опÑегПочетен датум - краен датумЗачувајПочетен датум %1$sДатумКраен датумПочетен датумдмгДенеÑ: %1$sПрефрли на режим за внеÑување во календаротДопрете за да Ñе префрлите на приказ на „Календар“Префрли на режим за внеÑување текÑтДопрете за да Ñе префрлите на приказ на годинаОткажиВо редПрикажи ја лозинката
+ - %d ÑˆÐ¸Ð½Ñ Ð¼ÑдÑгдÑл
+ - %d ÑˆÐ¸Ð½Ñ Ð¼ÑдÑгдÑл
+ Доод Ñ…Ò¯ÑнÑгтийг хураахДоод Ñ…Ò¯ÑнÑгтийг дÑлгÑÑ…Ð¥Ð°Ð³Ð°Ñ Ð´ÑлгÑÐ½Ñ Ò¯Ò¯Ð§Ð¸Ñ€ÑÑ… бариулыг хоёр товшихЧирÑÑ… бариул%2$d-н %1$d Ñ‚ÑмдÑгтийг оруулÑанТÑмдÑгтийн Ñ…Ñзгаар %2$d-н %1$d-Ñ Ñ…ÑÑ‚ÑÑ€ÑÑнТекÑтийг арилгахÐлдааДоош унадаг цÑÑийг харуулахХарилцах цонхны Ð´Ò¯Ñ€Ñ Ñ‚ÑмдÑгТабҮӨ ÑÑвÑл ҮХ Ñонгоно уу%1$s цагЦаг Ñонгох%1$s цагМинут Ñонгоно уу%1$s минутAMЦагийг оруулахын тулд цагийн горимд ÑˆÐ¸Ð»Ð¶Ò¯Ò¯Ð»Ð½Ñ Ò¯Ò¯.ЦагМинутPMЦаг ÑонгохЦагийг оруулахын тулд текÑÑ‚ оруулах горимд ÑˆÐ¸Ð»Ð¶Ò¯Ò¯Ð»Ð½Ñ Ò¯Ò¯.Ð¨Ð¸Ð½Ñ Ð¼ÑдÑгдÑл%1$s-г уÑтгах%1$d-Ñ Ð¾Ð»Ð¾Ð½ ÑˆÐ¸Ð½Ñ Ð¼ÑдÑгдÑлДараагийн Ñар луу өөрчлөхӨмнөх Ñар луу өөрчлөхÐхлÑÑ… огнооны Ñонголт: %1$s – ДууÑах огнооны Ñонголт: %2$sОдоогийн Ñонголт: %1$sбайхгүйЦуцлахOK%1$sОгноо ÑонгохСонгоÑон огнооӨдрийн багана: %1$sДууÑах огноо %1$sБуруу формат байна.ЖишÑÑ Ð½ÑŒ: %1$sÐшиглах формат: %1$sОгнооны Ñ…Ñзгаар буруу байна.Одоогийн %1$d он руу шилжих%1$d он руу шилжихХÑÐ·Ð³Ð°Ð°Ñ€Ð°Ð°Ñ Ñ…ÑÑ‚ÑÑ€ÑÑн: %1$sÐхлÑÑ… огноо – %1$s%1$s – ДууÑах огноо%1$s – %2$sМуж ÑонгохÐхлÑÑ… огноо – ДууÑах огнооХадгалахÐхлÑÑ… огноо %1$sОгнооДууÑах огнооÐхлÑÑ… огнооөÑжӨнөөдөр %1$sКалендарийн орох горим руу ÑÑлгÑхКалендариар харуулах руу ÑÑлгÑхийн тулд товшино ууТекÑтийн орох горим руу ÑÑлгÑхЖилÑÑÑ€ нь харуулах руу ÑÑлгÑхийн тулд товшино ууЦуцлахOKÐууц үгийг харуулах4dp18dp40dp2dp2dp40dp20dp128dp4dp
+ - %d àºàº²àº™à»àºˆà»‰àº‡à»€àº•ືàºàº™à»ƒà»à»ˆ
+ - %d àºàº²àº™à»àºˆà»‰àº‡à»€àº•ືàºàº™à»ƒà»à»ˆ
+ ຫàºà»à»‰àºŠàºµàº”ລຸ່ມສຸດລົງຂະຫàºàº²àºàºŠàºµàº”ລຸ່ມສຸດຂະຫàºàº²àºàºàºàºà»€àº„ິ່ງໜຶ່ງà»àº•ະບ່àºàº™àºˆàº±àºšàº¥àº²àºàºªàºàº‡à»€àº—ື່àºà»àº¥à»‰àº§àºšà»ˆàºàº™àºˆàº±àºšàº¥àº²àºàº•ົວàºàº±àºàºªàºàº™àº—ີ່ປ້àºàº™à»€àº‚ົ້າ %1$d ຕົວຈາàºàº—ັງà»àº»àº” %2$d ຕົວຂີດຈຳàºàº±àº”ຕົວàºàº±àºàºªàºàº™à»€àºàºµàº™ %1$d ຈາàºàº—ັງà»àº»àº” %2$dລຶບລ້າງຂà»à»‰àº„ວາມຜິດພາດສະà»àº”ງເມນູເລື່àºàº™àº¥àº»àº‡à»„àºàº„àºàº™àºà»ˆàºàº‡à»‚ຕ້ຕàºàºšà»àº–ບເລືàºàºàº•àºàº™à»€àºŠàº»à»‰àº² ຫຼື ຕàºàº™à»àº¥àº‡%1$s ຊົ່ວໂມງເລືàºàºàºŠàº»à»ˆàº§à»‚ມງ%1$s ໂມງເລືàºàºàº™àº²â€‹àº—ີ%1$s ນາທີໂມງເຊົ້າສະຫຼັບໄປໃຊ້ໂà»àº”ໂມງສຳລັບàºàº²àº™àº›à»‰àºàº™à»€àº§àº¥àº².ຊົ່ວໂມງນາທີໂມງà»àº¥àº‡à»€àº¥àº·àºàºà»€àº§â€‹àº¥àº²àºªàº°àº«àº¼àº±àºšà»„ປໃຊ້ໂà»àº”ປ້àºàº™àº‚à»à»‰àº„ວາມສຳລັບàºàº²àº™àº›à»‰àºàº™à»€àº§àº¥àº².àºàº²àº™à»àºˆà»‰àº‡à»€àº•ືàºàº™à»ƒà»à»ˆàº¥àº¶àºš %1$s àºàºàºàºàº²àº™à»àºˆà»‰àº‡à»€àº•ືàºàº™à»ƒà»à»ˆàº«àº¼àº²àºàºàº§à»ˆàº² %1$d ລາàºàºàº²àº™àº›à»ˆàº½àº™à»€àº›àº±àº™à»€àº”ືàºàº™àº•à»à»ˆà»„ປປ່ຽນເປັນເດືàºàº™àºœà»ˆàº²àº™àº¡àº²àºàº²àº™à»€àº¥àº·àºàºàº§àº±àº™àº—ີເລີ່ມຕົ້ນ: %1$s – àºàº²àº™à»€àº¥àº·àºàºàº§àº±àº™àº—ີສິ້ນສຸດ: %2$sàºàº²àº™à»€àº¥àº·àºàºàº›àº±àº”ຈຸບັນ: %1$sບà»à»ˆàº¡àºµàºàº»àºà»€àº¥àºµàºàº•ົàºàº¥àº»àº‡%1$sເລືàºàºàº§àº±àº™àº—ີເລືàºàºàº§àº±àº™àº—ີຖັນມື້: %1$sວັນທີສິ້ນສຸດ %1$sຮູບà»àºšàºšàºšà»à»ˆàº–ືàºàº•້àºàº‡.ຕົວຢ່າງ: %1$sໃຊ້: %1$sໄລàºàº°àºšà»à»ˆàº–ືàºàº•້àºàº‡.ໄປຫາປີປັດຈຸບັນ %1$dເລື່àºàº™à»„ປປີ %1$dຢູ່ນàºàºàºŠà»ˆàº§àº‡àº§àº±àº™àº—ີ: %1$sວັນທີເລີ່ມຕົ້ນ – %1$s%1$s – ວັນທີສິ້ນສຸດ%1$s – %2$sເລືàºàºàºŠà»ˆàº§àº‡àº§àº±àº™àº—ີເລີ່ມຕົ້ນ – ວັນທີສິ້ນສຸດບັນທຶàºàº§àº±àº™àº—ີເລີ່ມຕົ້ນ %1$sວັນທີວັນທີສິ້ນສຸດວັນທີເລີ່ມວດປມື້ນີ້ %1$sປ່ຽນເປັນໂà»àº”ປ້àºàº™àº‚à»à»‰àº¡àº¹àº™àº›àº°àº•ິທິນà»àº•ະເພື່àºàºªàº°àº«àº¼àº±àºšà»„ປເປັນມຸມມàºàº‡àº›àº°àº•ິທິນປ່ຽນເປັນໂà»àº”ປ້àºàº™àº‚à»à»‰àº¡àº¹àº™àº‚à»à»‰àº„ວາມà»àº•ະເພື່àºàºªàº°àº«àº¼àº±àºšà»„ປເປັນມຸມມàºàº‡àº›àºµàºàº»àºà»€àº¥àºµàºàº•ົàºàº¥àº»àº‡àºªàº°à»àº”ງລະຫັດຜ່ານ
+ - %d νÎα ειδοποίηση
+ - %d νÎες ειδοποιήσεις
+ ΣÏμπτυξη του φÏλλου κάτω μÎÏουςΑνάπτυξη του φÏλλου κάτω μÎÏουςΑνάπτυξη μÎχÏι τη μÎσηΗ λαβή μεταφοÏάς πατήθηκε δÏο φοÏÎςΛαβή μεταφοÏάςΕισήχθησαν %1$d από %2$d χαÏακτήÏεςΥπÎÏβαση οÏίου χαÏακτήÏων %1$d από %2$dΔιαγÏαφή κειμÎνουΣφάλμαΕμφάνιση αναπτυσσόμενου μενοÏΕικονίδιο παÏαθÏÏου διαλόγουΚαÏÏ„ÎλαΕπιλÎξτε Ï€.μ. ή μ.μ.%1$s ÏŽÏεςΕπιλογή ÏŽÏας%1$s ακÏιβώςΕπιλογή λεπτών%1$s λεπτάΠΜΚάντε εναλλαγή στη λειτουÏγία ÏολογιοÏ, για την εισαγωγή της ÏŽÏας.ÎÏαΛεπτόΜΜΕπιλÎξτε ÏŽÏαΚάντε εναλλαγή στη λειτουÏγία εισαγωγής κειμÎνου, για την εισαγωγή της ÏŽÏας.ÎÎα ειδοποίησηΚατάÏγηση %1$sΠάνω από %1$d νÎες ειδοποιήσειςΑλλαγή στον επόμενο μήναΑλλαγή στον Ï€ÏοηγοÏμενο μήναΕπιλογή ημεÏομηνίας ÎναÏξης: %1$s – Επιλογή ημεÏομηνίας λήξης: %2$sΤÏÎχουσα επιλογή: %1$sχωÏίς επιλογήΑκÏÏωσηΟΚ%1$sΕπιλογή ημεÏομηνίαςΕπιλεγμÎνη ημεÏομηνίαΣτήλη ημεÏών: %1$sΗμεÏομηνία λήξης %1$sΜη ÎγκυÏη μοÏφή.ΠαÏάδειγμα: %1$sΧÏησιμοποιήστε: %1$sΜη ÎγκυÏο εÏÏος.Πλοήγηση στο Ï„ÏÎχον Îτος %1$dΠλοήγηση στο Îτος %1$dΕκτός εÏÏους: %1$sΗμεÏομηνία ÎναÏξης – %1$s%1$s – ΗμεÏομηνία λήξης%1$s – %2$sΕπιλογή εÏÏουςΗμεÏομηνία ÎναÏξης – ΗμεÏομηνία λήξηςΑποθήκευσηΗμεÏομηνία ÎναÏξης %1$sΗμεÏομηνίαΗμεÏομηνία λήξηςΗμεÏομηνία ÎναÏξηςημεΣήμεÏα %1$sΕναλλαγή στη λειτουÏγία εισαγωγής ημεÏολογίουΠατήστε για εναλλαγή στην Ï€Ïοβολή ΗμεÏολόγιοΕναλλαγή στη λειτουÏγία εισαγωγής κειμÎνουΠατήστε για εναλλαγή στην Ï€Ïοβολή ÎτουςΑκÏÏωσηΟΚΕμφάνιση ÎºÏ‰Î´Î¹ÎºÎ¿Ï Ï€Ïόσβασης
+ - %d новае апавÑшчÑнне
+ - %dÂ Ð½Ð¾Ð²Ñ‹Ñ Ð°Ð¿Ð°Ð²ÑшчÑнні
+ - %d новых апавÑшчÑннÑÑž
+ - %d новага апавÑшчÑннÑ
+ Згарнуць ніжні аркушРазгарнуць ніжні аркушРазгарнуць напаловуМаркер перацÑÐ³Ð²Ð°Ð½Ð½Ñ Ð½Ð°Ñ†Ñ–Ñнуты двойчыМаркер перацÑгваннÑУведзена Ñімвалаў: %1$d з %2$dÐбмежаванне колькаÑці Ñімвалаў перавышана: %1$d з %2$dÐчыÑціць Ñ‚ÑкÑтПамылкаПаказаць выпадное менюЗначок дыÑлогавага акнаУкладкаВыберыце AM (да паўднÑ) або PM (паÑÐ»Ñ Ð¿Ð°ÑžÐ´Ð½Ñ)%1$s гадзВыберыце гадзіну%1$s гадзВыберыце хвіліны%1$s хвAMПераключыцца на Ñ€Ñжым гадзінніка пры ўводзе чаÑу.ГадзінаХвілінаPMВыберыце чаÑПераключыцца на Ñ€Ñжым Ñ‚ÑкÑту пры ўводзе чаÑу.Ðовае апавÑшчÑннеВыдаліць %1$sКолькаÑць новых апавÑшчÑннÑÑž перавыÑіла %1$dПерайÑці да наÑтупнага меÑÑцаПерайÑці да папÑÑ€ÑднÑга меÑÑÑ†Ð°Ð’Ñ‹Ð±Ñ€Ð°Ð½Ð°Ñ Ð´Ð°Ñ‚Ð° пачатку: %1$s, Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð°Ñ Ð´Ð°Ñ‚Ð° заканчÑннÑ: %2$sБÑгучае вылучÑнне: %1$sне выбранаСкаÑавацьОК%1$sВыберыце Ð´Ð°Ñ‚ÑƒÐ’Ñ‹Ð±Ñ€Ð°Ð½Ð°Ñ Ð´Ð°Ñ‚Ð°Ð¡Ð»ÑƒÐ¿Ð¾Ðº дзён: %1$sДата заканчÑннÑ: %1$sÐÑправільны фармат.Прыклад: %1$sÐеабходны фармат: %1$sÐÑправільны дыÑпазон.ПерайÑці да бÑгучага года %1$dПерайÑці Ñž %1$d годПа-за межамі дыÑпазону: %1$sДата пачатку – %1$s%1$s – дата заканчÑннÑ%1$s – %2$sВыберыце дыÑпазон датДата пачатку – дата заканчÑннÑЗахавацьДата пачатку: %1$sДатаДата заканчÑннÑДата Ð¿Ð°Ñ‡Ð°Ñ‚ÐºÑƒÐ´Ð¼Ð³Ð¡Ñ‘Ð½Ð½Ñ %1$sПераключыцца Ñž Ñ€Ñжым уводу \"КалÑндар\"ÐаціÑніце, каб пераключыцца на праглÑд календараПераключыцца Ñž Ñ€Ñжым уводу \"ТÑкÑÑ‚\"ÐаціÑніце, каб пераключыцца на аглÑд годаСкаÑавацьОКПаказаць пароль
+ - %d إشعار جديد
+ - إشعار جديد ÙˆØ§ØØ¯ (%d)
+ - إشعاران جديدان (%d)
+ - %d إشعارات جديدة
+ - %d إشعارًا جديدًا
+ - %d إشعار جديد
+ تصغير البطاقة السÙليةتوسيع البطاقة السÙليةتوسيع البطاقة السÙليةتم النقر مرّتين على مقبض Ø§Ù„Ø³ØØ¨.مقبض Ø§Ù„Ø³ØØ¨ØªÙ…Ù‘ إدخال %1$d ØØ±Ù من إجمالي %2$d.تجاوز عدد Ø§Ù„Ø£ØØ±Ù Ø§Ù„Ù…Ø³Ù…ÙˆØ Ø¨Ù‡ %1$d من %2$d.Ù…ØÙˆ النصخطأعرض القائمة المنسدلةرمز مربع الØÙˆØ§Ø±Ø¹Ù„امة ØªØ¨ÙˆÙŠØ¨ÙŠÙØ±Ø¬Ù‰ اختيار صباØÙ‹Ø§ أو مساءً.%1$s Ø³Ø§Ø¹Ø©ØªØØ¯ÙŠØ¯ الساعةالساعة %1$sØªØØ¯ÙŠØ¯ الدقائق%1$s دقيقةصباØÙ‹Ø§ÙŠÙرجى التبديل إلى وضع الساعة لإدخال الوقت.الساعةدقيقةمساءًاختيار Ø§Ù„ÙˆÙ‚ØªÙŠÙØ±Ø¬Ù‰ التبديل إلى وضع إدخال النص لإدخال الوقت.إشعار جديدإزالة %1$sيبلغ عدد الإشعارات الجديدة أكثر من %1$d.التغيير إلى الشهر التاليالتغيير إلى الشهر السابقاختيار تاريخ البدء: %1$s – اختيار تاريخ الانتهاء: %2$sالاختيار Ø§Ù„ØØ§Ù„ÙŠ: %1$sØ¨Ù„Ø§Ø¥Ù„ØºØ§Ø¡ØØ³Ù†Ù‹Ø§%1$sÙŠÙØ±Ø¬Ù‰ اختيار تاريخ.التاريخ Ø§Ù„Ù…ØØ¯Ù‘َدعمود الأيام: %1$sتاريخ الانتهاء: %1$sالتنسيق غير صالØÙ…ثال: %1$sاستخدام: %1$sالنطاق غير ØµØ§Ù„ØØ§Ù„انتقال إلى السنة Ø§Ù„ØØ§Ù„ية %1$dالتنقل إلى العام %1$dخارج النطاق: %1$sتاريخ البدء – %1$s%1$s – تاريخ الانتهاء%1$s – %2$sÙŠÙØ±Ø¬Ù‰ اختيار نطاق زمني.تاريخ البدء - تاريخ الانتهاءØÙظتاريخ البدء: %1$sالتاريختاريخ الانتهاءتاريخ البدءيشساليوم %1$sالتبديل إلى وضع \"الإدخال ÙÙŠ التقويم\"يمكنك النقر للتبديل إلى عرض \"تقويم Google\".التبديل إلى وضع \"إدخال النص\"يمكنك النقر للتبديل إلى عرض السنة.Ø¥Ù„ØºØ§Ø¡ØØ³Ù†Ù‹Ø§Ø¹Ø±Ø¶ كلمة المرور320dp0dp2dp24dp576dp320dp@dimen/design_snackbar_padding_vertical
+ 160dp64dp64dp1
+ - %d ný tilkynning
+ - %d nýjar tilkynningar
+ Minnka blað neðstStækka blað neðstStækka til hálfsÃtt tvisvar á dragklóDragklóInnslegnir stafir %1$d af %2$dYfir hámarksstafafjölda, %1$d af %2$dHreinsa textaVillaSýna fellivalmyndGluggatáknFlipiVelja f.h. eða e.h.%1$s klst.Velja tÃmaklukkan %1$sVeldu mÃnútur%1$s mÃnúturf.h.Skipta yfir à klukkustillingu til að færa inn tÃma.KlukkustundMÃnútae.h.Veldu tÃmaSkipta yfir à textastillingu til að færa inn tÃma.Ný tilkynningFjarlægja %1$sYfir %1$d nýjar tilkynningarBreyta à næsta mánuðBreyta à fyrri mánuðVal upphafsdags: %1$s – Val lokadags: %2$sNúverandi val: %1$sekkertHætta viðà lagi%1$sVeldu dagsetninguValin dagsetningDálkur með dögum: %1$sLokadagur %1$sÓgilt snið.Dæmi: %1$sNota: %1$sÓgilt svið.Fara á núverandi ár %1$dFara à árið %1$dUtan sviðs: %1$sUpphafsdagur – %1$s%1$s – lokadagur%1$s – %2$sVeldu tÃmabilUpphafsdagur – lokadagurVistaUpphafsdagur %1$sDagsetningLokadagurUpphafsdagurdmáà dag %1$sSkipta yfir à innfærsluaðferð fyrir dagatalÃttu til að skipta yfir à dagatalsyfirlitSkipta yfir à innfærsluaðferð fyrir textaÃttu til að skipta yfir à ársyfirlitHætta viðà lagiSýna aðgangsorð@android:color/system_neutral1_1000@android:color/system_neutral1_900@android:color/system_neutral1_0@android:color/system_neutral1_800@android:color/system_neutral1_700@android:color/system_neutral1_600@android:color/system_neutral1_500@android:color/system_neutral1_400@android:color/system_neutral1_300@android:color/system_neutral1_200@android:color/system_neutral1_100@android:color/system_neutral1_50@android:color/system_neutral1_10@android:color/system_neutral2_1000@android:color/system_neutral2_900@android:color/system_neutral2_0@android:color/system_neutral2_800@android:color/system_neutral2_700@android:color/system_neutral2_600@android:color/system_neutral2_500@android:color/system_neutral2_400@android:color/system_neutral2_300@android:color/system_neutral2_200@android:color/system_neutral2_100@android:color/system_neutral2_50@android:color/system_neutral2_10@android:color/system_accent1_1000@android:color/system_accent1_900@android:color/system_accent1_0@android:color/system_accent1_800@android:color/system_accent1_700@android:color/system_accent1_600@android:color/system_accent1_500@android:color/system_accent1_400@android:color/system_accent1_300@android:color/system_accent1_200@android:color/system_accent1_100@android:color/system_accent1_50@android:color/system_accent1_10@android:color/system_accent2_1000@android:color/system_accent2_900@android:color/system_accent2_0@android:color/system_accent2_800@android:color/system_accent2_700@android:color/system_accent2_600@android:color/system_accent2_500@android:color/system_accent2_400@android:color/system_accent2_300@android:color/system_accent2_200@android:color/system_accent2_100@android:color/system_accent2_50@android:color/system_accent2_10@android:color/system_accent3_1000@android:color/system_accent3_900@android:color/system_accent3_0@android:color/system_accent3_800@android:color/system_accent3_700@android:color/system_accent3_600@android:color/system_accent3_500@android:color/system_accent3_400@android:color/system_accent3_300@android:color/system_accent3_200@android:color/system_accent3_100@android:color/system_accent3_50@android:color/system_accent3_10@color/m3_ref_palette_dynamic_neutral_variant6@color/m3_ref_palette_dynamic_neutral20@color/m3_ref_palette_dynamic_primary40@color/m3_ref_palette_dynamic_neutral90@color/m3_ref_palette_dynamic_neutral90@color/m3_ref_palette_dynamic_primary20@color/m3_ref_palette_dynamic_primary90@color/m3_ref_palette_dynamic_secondary20@color/m3_ref_palette_dynamic_secondary90@color/m3_ref_palette_dynamic_neutral90@color/m3_ref_palette_dynamic_neutral_variant80@color/m3_ref_palette_dynamic_tertiary20@color/m3_ref_palette_dynamic_tertiary90@color/m3_ref_palette_dynamic_neutral_variant60@color/m3_ref_palette_dynamic_neutral_variant30@color/m3_ref_palette_dynamic_primary80@color/m3_ref_palette_dynamic_primary30@color/m3_ref_palette_dynamic_secondary80@color/m3_ref_palette_dynamic_secondary30@color/m3_ref_palette_dynamic_neutral_variant6@color/m3_ref_palette_dynamic_neutral_variant24@color/m3_ref_palette_dynamic_neutral_variant12@color/m3_ref_palette_dynamic_neutral_variant17@color/m3_ref_palette_dynamic_neutral_variant22@color/m3_ref_palette_dynamic_neutral_variant10@color/m3_ref_palette_dynamic_neutral_variant4@color/m3_ref_palette_dynamic_neutral_variant6@color/m3_ref_palette_dynamic_neutral_variant30@color/m3_ref_palette_dynamic_tertiary80@color/m3_ref_palette_dynamic_tertiary30@color/m3_ref_palette_dynamic_neutral_variant98@color/m3_ref_palette_dynamic_neutral95@color/m3_ref_palette_dynamic_primary80@color/m3_ref_palette_dynamic_neutral20@color/m3_ref_palette_dynamic_neutral10@color/m3_ref_palette_dynamic_primary100@color/m3_ref_palette_dynamic_primary10@color/m3_ref_palette_dynamic_secondary100@color/m3_ref_palette_dynamic_secondary10@color/m3_ref_palette_dynamic_neutral10@color/m3_ref_palette_dynamic_neutral_variant30@color/m3_ref_palette_dynamic_tertiary100@color/m3_ref_palette_dynamic_tertiary10@color/m3_ref_palette_dynamic_neutral_variant50@color/m3_ref_palette_dynamic_neutral_variant80@color/m3_ref_palette_dynamic_primary40@color/m3_ref_palette_dynamic_primary90@color/m3_ref_palette_dynamic_secondary40@color/m3_ref_palette_dynamic_secondary90@color/m3_ref_palette_dynamic_neutral_variant98@color/m3_ref_palette_dynamic_neutral_variant98@color/m3_ref_palette_dynamic_neutral_variant94@color/m3_ref_palette_dynamic_neutral_variant92@color/m3_ref_palette_dynamic_neutral_variant90@color/m3_ref_palette_dynamic_neutral_variant96@color/m3_ref_palette_dynamic_neutral_variant100@color/m3_ref_palette_dynamic_neutral_variant87@color/m3_ref_palette_dynamic_neutral_variant90@color/m3_ref_palette_dynamic_tertiary40@color/m3_ref_palette_dynamic_tertiary90@color/m3_ref_palette_dynamic_primary10@color/m3_ref_palette_dynamic_primary30@color/m3_ref_palette_dynamic_secondary10@color/m3_ref_palette_dynamic_secondary30@color/m3_ref_palette_dynamic_tertiary10@color/m3_ref_palette_dynamic_tertiary30@color/m3_ref_palette_dynamic_primary90@color/m3_ref_palette_dynamic_primary80@color/m3_ref_palette_dynamic_secondary90@color/m3_ref_palette_dynamic_secondary80@color/m3_ref_palette_dynamic_tertiary90@color/m3_ref_palette_dynamic_tertiary80@color/m3_sys_color_dark_error@color/m3_sys_color_dark_error_container@color/m3_sys_color_dark_on_error@color/m3_sys_color_dark_on_error_container@color/m3_sys_color_light_error@color/m3_sys_color_light_error_container@color/m3_sys_color_light_on_error@color/m3_sys_color_light_on_error_container@color/m3_ref_palette_dynamic_neutral0@color/m3_ref_palette_dynamic_neutral10@color/m3_ref_palette_dynamic_neutral100@color/m3_ref_palette_dynamic_neutral20@color/m3_ref_palette_dynamic_neutral30@color/m3_ref_palette_dynamic_neutral40@color/m3_ref_palette_dynamic_neutral50@color/m3_ref_palette_dynamic_neutral60@color/m3_ref_palette_dynamic_neutral70@color/m3_ref_palette_dynamic_neutral80@color/m3_ref_palette_dynamic_neutral90@color/m3_ref_palette_dynamic_neutral95@color/m3_ref_palette_dynamic_neutral99@color/m3_ref_palette_dynamic_neutral_variant0@color/m3_ref_palette_dynamic_neutral_variant10@color/m3_ref_palette_dynamic_neutral_variant100@color/m3_ref_palette_dynamic_neutral_variant20@color/m3_ref_palette_dynamic_neutral_variant30@color/m3_ref_palette_dynamic_neutral_variant40@color/m3_ref_palette_dynamic_neutral_variant50@color/m3_ref_palette_dynamic_neutral_variant60@color/m3_ref_palette_dynamic_neutral_variant70@color/m3_ref_palette_dynamic_neutral_variant80@color/m3_ref_palette_dynamic_neutral_variant90@color/m3_ref_palette_dynamic_neutral_variant95@color/m3_ref_palette_dynamic_neutral_variant99@color/m3_ref_palette_dynamic_primary0@color/m3_ref_palette_dynamic_primary10@color/m3_ref_palette_dynamic_primary100@color/m3_ref_palette_dynamic_primary20@color/m3_ref_palette_dynamic_primary30@color/m3_ref_palette_dynamic_primary40@color/m3_ref_palette_dynamic_primary50@color/m3_ref_palette_dynamic_primary60@color/m3_ref_palette_dynamic_primary70@color/m3_ref_palette_dynamic_primary80@color/m3_ref_palette_dynamic_primary90@color/m3_ref_palette_dynamic_primary95@color/m3_ref_palette_dynamic_primary99@color/m3_ref_palette_dynamic_secondary0@color/m3_ref_palette_dynamic_secondary10@color/m3_ref_palette_dynamic_secondary100@color/m3_ref_palette_dynamic_secondary20@color/m3_ref_palette_dynamic_secondary30@color/m3_ref_palette_dynamic_secondary40@color/m3_ref_palette_dynamic_secondary50@color/m3_ref_palette_dynamic_secondary60@color/m3_ref_palette_dynamic_secondary70@color/m3_ref_palette_dynamic_secondary80@color/m3_ref_palette_dynamic_secondary90@color/m3_ref_palette_dynamic_secondary95@color/m3_ref_palette_dynamic_secondary99@color/m3_ref_palette_dynamic_tertiary0@color/m3_ref_palette_dynamic_tertiary10@color/m3_ref_palette_dynamic_tertiary100@color/m3_ref_palette_dynamic_tertiary20@color/m3_ref_palette_dynamic_tertiary30@color/m3_ref_palette_dynamic_tertiary40@color/m3_ref_palette_dynamic_tertiary50@color/m3_ref_palette_dynamic_tertiary60@color/m3_ref_palette_dynamic_tertiary70@color/m3_ref_palette_dynamic_tertiary80@color/m3_ref_palette_dynamic_tertiary90@color/m3_ref_palette_dynamic_tertiary95@color/m3_ref_palette_dynamic_tertiary99
+ - %d नयाठसूचना
+ - %d नयाठसूचनाहरू
+ पà¥à¤›à¤¾à¤°à¤•ो पाना कोलà¥à¤¯à¤¾à¤ªà¥à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤ªà¥à¤›à¤¾à¤°à¤•ो पाना à¤à¤•à¥à¤¸à¥à¤ªà¤¾à¤¨à¥à¤¡ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤†à¤§à¤¾ ठà¥à¤²à¥‹ पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤¡à¥à¤°à¥à¤¯à¤¾à¤— हà¥à¤¯à¤¾à¤¨à¥à¤¡à¤²à¤®à¤¾ डबल टà¥à¤¯à¤¾à¤ª गरियोडà¥à¤°à¥à¤¯à¤¾à¤— हà¥à¤¯à¤¾à¤¨à¥à¤¡à¤²%2$d मधà¥à¤¯à¥‡ %1$d वरà¥à¤£ पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿ गरियो%2$d मधà¥à¤¯à¥‡ %1$d वरà¥à¤£ सीमा नाघà¥à¤¯à¥‹à¤ªà¤¾à¤ खाली गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤¤à¥à¤°à¥à¤Ÿà¤¿à¤¡à¥à¤°à¤ªà¤¡à¤¾à¤‰à¤¨ मेनॠदेखाउनà¥à¤¹à¥‹à¤¸à¥à¤¸à¤‚वादको आइकनटà¥à¤¯à¤¾à¤¬à¤ªà¥‚रà¥à¤µà¤¾à¤¹à¥à¤¨ वा अपराहà¥à¤¨ चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥%1$s घणà¥à¤Ÿà¤¾à¤˜à¤¨à¥à¤Ÿà¤¾ चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥%1$s बजेमिनेट चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥%1$s मिनेटAMसमय इनपà¥à¤Ÿ गरà¥à¤¨ घडी मोडमा सà¥à¤µà¤¿à¤š गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¥¤à¤˜à¤¨à¥à¤Ÿà¤¾:मिनेटअपराहà¥à¤¨à¤¸à¤®à¤¯ चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤¸à¤®à¤¯ इनपà¥à¤Ÿ गरà¥à¤¨ पाठइनपà¥à¤Ÿ मोडमा सà¥à¤µà¤¿à¤š गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¥¤à¤¨à¤¯à¤¾à¤ सूचना%1$s हटाउनà¥à¤¹à¥‹à¤¸à¥%1$d à¤à¤¨à¥à¤¦à¤¾ बढी नयाठसूचनाहरूअरà¥à¤•ो महिनामा सारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤…घिलà¥à¤²à¥‹ महिनामा सारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤¸à¥à¤°à¥ हà¥à¤¨à¥‡ मितिको चयन: %1$s – अनà¥à¤¤à¥à¤¯ हà¥à¤¨à¥‡ मितिको चयन: %2$sहालको चयन: %1$sकà¥à¤¨à¥ˆ पनि होइनरदà¥à¤¦ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤ िक छ%1$sमिति चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤šà¤¯à¤¨ गरिà¤à¤•ो मितिदिनहरूको सà¥à¤¤à¤®à¥à¤: %1$sसमापन हà¥à¤¨à¥‡ मिति: %1$sअमानà¥à¤¯ ढाà¤à¤šà¤¾à¥¤à¤‰à¤¦à¤¾à¤¹à¤°à¤£: %1$s%1$s पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤…मानà¥à¤¯ दायरा।चालॠवरà¥à¤· %1$d मा जानà¥à¤¹à¥‹à¤¸à¥à¤µà¤°à¥à¤· %1$d मा जानà¥à¤¹à¥‹à¤¸à¥à¤¦à¤¾à¤¯à¤°à¤¾à¤à¤¨à¥à¤¦à¤¾ बाहिर छ: %1$sसà¥à¤°à¥ हà¥à¤¨à¥‡ मिति – %1$s%1$s – अनà¥à¤¤à¥à¤¯ हà¥à¤¨à¥‡ मिति%1$s – %2$sदायरा चयन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤¸à¥à¤°à¥ हà¥à¤¨à¥‡ मिति – अनà¥à¤¤à¥à¤¯ हà¥à¤¨à¥‡ मितिसà¥à¤°à¤•à¥à¤·à¤¿à¤¤ गरà¥à¤¨à¥à¤ªà¥à¤°à¤¾à¤°à¤®à¥à¤ हà¥à¤¨à¥‡ मिति: %1$sमितिअनà¥à¤¤à¥à¤¯ हà¥à¤¨à¥‡ मितिसà¥à¤°à¥ हà¥à¤¨à¥‡ मितिdमिनेटyआज %1$sCalendar को इनपà¥à¤Ÿ मोडमा बदलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤ªà¤¾à¤¤à¥à¤°à¥‹à¤•ो à¤à¥à¤¯à¥‚ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ टà¥à¤¯à¤¾à¤ª गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤ªà¤¾à¤ को इनपà¥à¤Ÿ मोडमा बदलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤µà¤°à¥à¤·à¤•ो à¤à¥à¤¯à¥‚ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ टà¥à¤¯à¤¾à¤ª गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤°à¤¦à¥à¤¦ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤ िक छपासवरà¥à¤¡ देखाउनà¥à¤¹à¥‹à¤¸à¥
+ - %d yeni bildiriÅŸ
+ - %d yeni bildiriÅŸ
+ AÅŸağıdakı vÉ™rÉ™qi yığcamlaÅŸdırınAÅŸağıdakı vÉ™rÉ™qi geniÅŸlÉ™ndirinTam geniÅŸlÉ™ndirinDÉ™stÉ™yÉ™ iki dÉ™fÉ™ toxununDÉ™stÉ™k%1$d/%2$d simvol daxil edilibSimvol limiti %1$d/%2$d dÉ™yÉ™rini keçdiMÉ™tni silinXÉ™taAçılan menyunu göstÉ™rinDialoq ikonasıTabGündüz vÉ™ ya axÅŸam seçin%1$s saatSaatı seçinSaat %1$sDÉ™qiqÉ™ seçin%1$s dÉ™qiqÉ™AMZamanı daxil etmÉ™k üçün saat rejiminÉ™ keçinSaatDÉ™qiqÉ™GÆVaxt seçinZamanı daxil etmÉ™k üçün mÉ™tnlÉ™ daxiletmÉ™ rejiminÉ™ keçinYeni bildiriÅŸ%1$s silinMinimum %1$d yeni bildiriÅŸNövbÉ™ti aya dÉ™yiÅŸinÆvvÉ™lki aya dÉ™yiÅŸinBaÅŸlama tarixi seçimi: %1$s – BitmÉ™ tarixi seçimi: %2$sCari seçim: %1$syoxdurLəğv edinOK%1$sTarix seçinSeçilmiÅŸ tarixGün sütunu: %1$sBitmÉ™ tarixi: %1$sYanlış format.NümunÉ™: %1$s%1$s istifadÉ™ edinYanlış diapazon.Cari ilÉ™ keçin: %1$d%1$d ilinÉ™ keçinÆhatÉ™ dairÉ™sindÉ™n kÉ™nar: %1$sBaÅŸlama tarixi – %1$s%1$s – BitmÉ™ tarixi%1$s: %2$sAralıq seçinBaÅŸlama tarixi - BitmÉ™ tarixiSaxlayınBaÅŸlama tarixi: %1$sTarixBitmÉ™ tarixiBaÅŸlama tarixigünayilBugün: %1$sTÉ™qvim daxiletmÉ™ rejiminÉ™ keçinTÉ™qvim görünüşünÉ™ keçirmÉ™k üçün toxununMÉ™tn daxiletmÉ™ rejiminÉ™ keçinİl görünüşünÉ™ keçirmÉ™k üçün toxununLəğv edinOKParolu göstÉ™rin
+ - %d bagong notification
+ - %d na bagong notification
+ I-collapse ang bottom sheetI-expand ang bottom sheetI-expand hanggang gitnaNa-double tap ang handle sa pag-dragI-drag ang handleMga character na nailagay %1$d sa %2$dLumampas sa limitasyon sa bilang ng character %1$d sa %2$dI-clear ang textErrorIpakita ang dropdown na menuIcon ng DialogTabPiliin ang AM o PM%1$s (na) orasPumili ng oras%1$s o\'clockPumili ng mga minuto%1$s (na) minutoAMLumipat sa mode ng orasan para sa input na oras.OrasMinutoPMPumili ng orasLumipat sa pamamaraan ng pag-input ng text para sa input na oras.Bagong notificationAlisin ang %1$sMahigit %1$d (na) bagong notificationLumipat sa susunod na buwanLumipat sa nakaraang buwanNapiling petsa ng pagsisimula: %1$s – Napiling petsa ng pagtatapos: %2$sKasalukuyang seleksyon: %1$swalaKanselahinOK%1$sPumili ng PetsaPiniling petsaColumn ng mga araw: %1$sPetsa ng pagtatapos %1$sInvalid na format.Halimbawa: %1$sGamitin: %1$sInvalid na hanay.Mag-navigate sa kasalukuyang taon %1$dMag-navigate patungo sa taong %1$dWala sa sakop: %1$sPetsa ng pagsisimula – %1$s%1$s – Petsa ng pagtatapos%1$s – %2$sPumili ng RangePetsa ng pagsisimula – Petsa ng pagtataposI-savePetsa ng pagsisimula %1$sPetsaPetsa ng pagtataposPetsa ng pagsisimuladmyNgayon %1$sLumipat sa pamamaraan ng pag-input ng kalendaryoI-tap para lumipat sa view ng KalendaryoLumipat sa pamamaraan ng pag-input ng textI-tap para lumipat sa view ng taonKanselahinOKIpakita ang password
+ - à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ืà¸à¸™à¹ƒà¸«à¸¡à¹ˆ %d รายà¸à¸²à¸£
+ - à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ืà¸à¸™à¹ƒà¸«à¸¡à¹ˆ %d รายà¸à¸²à¸£
+ ยุบ Bottom Sheetขยาย Bottom Sheetขยายรายà¸à¸²à¸£à¸„รึ่งหนึ่งà¹à¸•ะà¹à¸®à¸™à¹€à¸”ิลà¸à¸²à¸£à¸¥à¸²à¸à¸ªà¸à¸‡à¸„รั้งà¹à¸®à¸™à¹€à¸”ิลà¸à¸²à¸£à¸¥à¸²à¸à¸›à¹‰à¸à¸™à¸à¸±à¸à¸‚ระà¹à¸¥à¹‰à¸§ %1$d จาภ%2$d ตัวเà¸à¸´à¸™à¸ˆà¸³à¸™à¸§à¸™à¸à¸±à¸à¸‚ระสูงสุด %1$d จาภ%2$dล้างข้à¸à¸„วามข้à¸à¸œà¸´à¸”พลาดà¹à¸ªà¸”งเมนูà¹à¸šà¸šà¹€à¸¥à¸·à¹ˆà¸à¸™à¸¥à¸‡à¹„à¸à¸„à¸à¸™à¸à¸¥à¹ˆà¸à¸‡à¹‚ต้ตà¸à¸šà¹à¸—็บเลืà¸à¸ AM หรืภPM%1$s ชั่วโมงเลืà¸à¸à¸Šà¸±à¹ˆà¸§à¹‚มง%1$s นาฬิà¸à¸²à¹€à¸¥à¸·à¸à¸à¸™à¸²à¸—ี%1$s นาทีAMสลับไปโหมดนาฬิà¸à¸²à¹€à¸žà¸·à¹ˆà¸à¸›à¹‰à¸à¸™à¹€à¸§à¸¥à¸²à¸Šà¸±à¹ˆà¸§à¹‚มงนาทีPMเลืà¸à¸à¹€à¸§à¸¥à¸²à¸ªà¸¥à¸±à¸šà¹„ปโหมดป้à¸à¸™à¸‚้à¸à¸„วามเพื่à¸à¸›à¹‰à¸à¸™à¹€à¸§à¸¥à¸²à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ืà¸à¸™à¹ƒà¸«à¸¡à¹ˆà¸™à¸³ %1$s à¸à¸à¸à¸à¸²à¸£à¹à¸ˆà¹‰à¸‡à¹€à¸•ืà¸à¸™à¹ƒà¸«à¸¡à¹ˆà¸¡à¸²à¸à¸à¸§à¹ˆà¸² %1$d รายà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹„ปที่เดืà¸à¸™à¸–ัดไปเปลี่ยนไปที่เดืà¸à¸™à¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²à¸à¸²à¸£à¹€à¸¥à¸·à¸à¸à¸§à¸±à¸™à¸—ี่เริ่มต้น: %1$s – à¸à¸²à¸£à¹€à¸¥à¸·à¸à¸à¸§à¸±à¸™à¸—ี่สิ้นสุด: %2$sà¸à¸²à¸£à¹€à¸¥à¸·à¸à¸à¹ƒà¸™à¸›à¸±à¸ˆà¸ˆà¸¸à¸šà¸±à¸™: %1$sไม่มียà¸à¹€à¸¥à¸´à¸à¸•à¸à¸¥à¸‡%1$sเลืà¸à¸à¸§à¸±à¸™à¸—ี่วันที่ที่เลืà¸à¸à¸„à¸à¸¥à¸±à¸¡à¸™à¹Œà¸‚à¸à¸‡à¸§à¸±à¸™: %1$sวันที่สิ้นสุด %1$sรูปà¹à¸šà¸šà¹„ม่ถูà¸à¸•้à¸à¸‡à¸•ัวà¸à¸¢à¹ˆà¸²à¸‡: %1$sใช้: %1$sช่วงไม่ถูà¸à¸•้à¸à¸‡à¹„ปยังปีปัจจุบัน %1$dไปที่ปี %1$dวันที่ไม่à¸à¸¢à¸¹à¹ˆà¹ƒà¸™à¸Šà¹ˆà¸§à¸‡à¸—ี่à¸à¸™à¸¸à¸à¸²à¸•: %1$sวันที่เริ่มต้น – %1$s%1$s – วันที่สิ้นสุด%1$s – %2$sเลืà¸à¸à¸Šà¹ˆà¸§à¸‡à¸§à¸±à¸™à¸—ี่เริ่มต้น – วันที่สิ้นสุดบันทึà¸à¸§à¸±à¸™à¸—ี่เริ่มต้น %1$sวันที่วันที่สิ้นสุดวันที่เริ่มต้นวดปวันนี้ %1$sสลับไปใช้โหมดป้à¸à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸›à¸à¸´à¸—ินà¹à¸•ะเพื่à¸à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹€à¸›à¹‡à¸™à¸¡à¸¸à¸¡à¸¡à¸à¸‡à¸›à¸à¸´à¸—ินสลับไปใช้โหมดป้à¸à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸‚้à¸à¸„วามà¹à¸•ะเพื่à¸à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹€à¸›à¹‡à¸™à¸¡à¸¸à¸¡à¸¡à¸à¸‡à¸›à¸µà¸¢à¸à¹€à¸¥à¸´à¸à¸•à¸à¸¥à¸‡à¹à¸ªà¸”งรหัสผ่าน450dp600dp24dp24dp24dp24dp20dp4dp96dp0dp0dp104dp68dp28dp64dp32dp24dp32dp06
+ - %d жаңа хабарландыру
+ - %d жаңа хабарландыру
+ Төменгі парақшаны жиюТөменгі парақшаны жаюЖартылай кеңейтуСүйрейтін тетік екі рет түртілді.Сүйрейтін тетік%1$d/%2$d таңба енгізілдіТаңба Ñаны шегінен аÑты: %1$d/%2$dМәтінді өшіруҚатеÐшылмалы мәзірді көрÑетуДиалог белгішеÑіҚойынды\"AM\" немеÑе \"PM\" форматын таңдауСағат: %1$sСағатты таңдауСағат: %1$sМинут таңдау%1$s минутAMУақытты енгізу үшін Ñағат режиміне өтіңіз.СағатMинутPMУақытты таңдауУақытты енгізу үшін мәтін енгізу режиміне өтіңіз.Жаңа хабарландыру%1$s контентін өшіру%1$d Ñанынан көп жаңа хабарландыруКелеÑÑ– айға өтуÐлдыңғы айға өтуТаңдалған баÑталу уақыты: %1$s – Таңдалған аÑқталу уақыты: %2$sÐғымдағы таңдау: %1$sÐµÑˆÒ›Ð°Ð½Ð´Ð°Ð¹Ð‘Ð°Ñ Ñ‚Ð°Ñ€Ñ‚ÑƒÐ–Ð°Ñ€Ð°Ð¹Ð´Ñ‹%1$sКүнді таңдауТаңдалған күнКүндер бағаны: %1$sÐÑқталу күні: %1$sФормат жарамÑыз.МыÑал: %1$s.Жарамды формат: %1$s.Ðуқым жарамÑыз.Қазіргі жылға өту %1$d%1$d жылына жылжуÐуқымнан тыc: %1$sБаÑталу күні – %1$s%1$s – аÑқталу күні%1$s – %2$sÐралықты таңдауБаÑталу күні – аÑқталу күніСақтауБаÑталу күні: %1$sКүніÐÑқталу күніБаÑталу күнікажБүгін %1$sКүнтізбенің енгізу режиміне ауыÑуКүнтізбе бойынша көрÑету үшін түртіңіз.Мәтін енгізу режиміне ауыÑуЖыл бойынша көрÑету үшін түртіңіз.Ð‘Ð°Ñ Ñ‚Ð°Ñ€Ñ‚ÑƒÐ–Ð°Ñ€Ð°Ð¹Ð´Ñ‹ÒšÒ±Ð¿Ð¸Ñ Ñөзді көрÑету
+ - %d жаңы билдирме
+ - %d жаңы билдирме
+ Ылдыйкы Ñкранды жыйыштырууЫлдыйкы Ñкранды жайып көрÑөтүүЖарымын жайып көрÑөтүүÐки жолу таптап, тизменин керектүү жерине Ñүйрөп барууТизменин керектүү жерине Ñүйрөп баруу%2$d ичинен %1$d Ñимвол киргизилдиСимволдордун Ñаны коюлган %2$d чегинен %1$d Ñимволго ашып кеттиТекÑтти тазалооКатаТүрүлмө менюну көрÑөтүүДиалог ÑүрөтчөÑүӨтмөкТандоо: AM же PM%1$s ÑаатСаат тандооСаат %1$sМүнөттөрдү тандаңыз%1$s мүнөтAMУбакытты дубал Ñаатынын режиминде киргизиңиз.СаатМүнөтPMУбакыт тандооУбакытты текÑÑ‚ киргизүү режиминде киргизиңиз.Жаңы билдирмеМазмунду алып Ñалуу (%1$s)%1$d ашуун жаңы билдирмеКийинки айга өзгөртүүМурунку айга өзгөртүүБашталуу күнүн тандоо: %1$s – ÐÑктоо күнүн тандоо: %2$sУчурдагы тандоо: %1$sÑч бириЖокко чыгарууЖарайт%1$sКүн тандооТандалган күнКүндөр тилкеÑи: %1$sКачан аÑктайт: %1$sТуура ÑÐ¼ÐµÑ Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚.МиÑалы: %1$s%1$s деген форматты колдонуңузЖаракÑыз диапазон.Учурдагы жылга өтүү %1$d%1$d-жылга өтүүДиапазондон тышкары: %1$sБаштоо күнү – %1$s%1$s – ÐÑктоо күнү%1$s – %2$sДаталар диапазонун тандооБаштоо күнү – ÐÑктоо күнүСактооКачан башталат: %1$sКүнКачан аÑктайтБаштоо күнүкажБүгүн %1$sЖылнаамага иш-чара киргизүү режимине которулууЖылнаама көрүнүшүнө өтүү үчүн таптап коюңузТекÑÑ‚ киргизүү режимине которулууЖыл көрүнүшүнө өтүү үчүн таптап коюңузЖокко чыгарууЖарайтСырÑөздү көрÑөтүү
+ - %d pemberitahuan baharu
+ - %d pemberitahuan baharu
+ Kuncupkan helaian bawahKembangkan helaian bawahKembangkan helaian bawahPemegang seret diketik dua kaliPemegang seretAksara dimasukkan %1$d daripada %2$dMelebihi had aksara %1$d daripada %2$dKosongkan teksRalatTunjukkan menu lungsurIkon DialogTabPilih AM atau PM%1$s jamPilih jamPukul %1$sPilih minit%1$s minitPGBeralih ke mod jam untuk input masa.JamMinitP/MPilih masaBeralih ke mod input teks untuk input masa.Pemberitahuan baharuAlih keluar %1$sLebih daripada %1$d pemberitahuan baharuTukar kepada bulan seterusnyaTukar kepada bulan sebelumnyaPilihan tarikh mula: %1$s – Pilihan tarikh tamat: %2$sPilihan semasa: %1$stiadaBatalOK%1$sPilih TarikhTarikh dipilihLajur hari: %1$sTarikh tamat %1$sFormat tidak sah.Contoh: %1$sGunakan: %1$sJulat tidak sah.Navigasi ke tahun semasa %1$dNavigasi ke tahun %1$dDi luar julat: %1$sTarikh mula – %1$s%1$s – Tarikh tamat%1$s – %2$sPilih JulatTarikh mula – Tarikh tamatSimpanTarikh mula %1$sTarikhTarikh tamatTarikh mulahbtHari ini %1$sBeralih kepada mod input kalendarKetik untuk menukar kepada paparan KalendarBeralih kepada mod input teksKetik untuk menukar kepada paparan tahunBatalOKTunjukkan kata laluan
+ - %d yeni bildirim
+ - %d yeni bildirim
+ Alt sayfayı daraltAlt sayfayı genişletYarım genişletSürükleme tutamacına iki kez dokunulduSürükleme tutamacıGirilen karakter: %1$d / %2$dKarakter sınırı aşıldı %1$d / %2$dMetni temizleHataAçılır menüyü gösterİletişim kutusu simgesiSekmeÖÖ veya ÖS\'yi seçin%1$s saatSaat seçinSaat %1$sDakikayı seçin%1$s dakikaAMZaman girişi için saat moduna geçin.SaatDakikaPMZamanı seçinZaman girişi için metin girişi moduna geçin.Yeni bildirim%1$s içeriğini kaldır%1$d adetten fazla yeni bildirimSonraki aya değiştirÖnceki aya değiştirBaşlangıç tarihi seçimi: %1$s – Bitiş tarihi seçimi: %2$sGeçerli seçim: %1$syokİptalTamam%1$sTarih SeçinSeçilen tarihGün sütunu: %1$sBitiş tarihi: %1$sGeçersiz biçim.Örnek: %1$sTarih biçimi: %1$sGeçersiz aralık.Geçerli yıla (%1$d) git%1$d yılına gitİzin verilen aralığın dışında: %1$sBaşlangıç tarihi – %1$s%1$s – Bitiş tarihi%1$s-%2$sAralık SeçinBaşlangıç tarihi - Bitiş tarihiKaydetBaşlangıç tarihi: %1$sTarihBitiş tarihiBaşlangıç tarihigayBugün, %1$sTakvim giriş moduna geçTakvim görünümüne geçmek için dokununMetin giriş moduna geçYıl görünümüne geçmek için dokununİptalTamamŞifreyi göster24dp24dp24dp24dp
+ - %dটি নতà§à¦¨ বিজà§à¦žà¦ªà§à¦¤à¦¿
+ - %dটি নতà§à¦¨ বিজà§à¦žà¦ªà§à¦¤à¦¿
+ সà§à¦•à§à¦°à¦¿à¦¨à§‡à¦° নিচে অà§à¦¯à¦¾à¦Ÿà¦¾à¦š করা শিট আড়াল করà§à¦¨à¦¸à§à¦•à§à¦°à¦¿à¦¨à§‡à¦° নিচে অà§à¦¯à¦¾à¦Ÿà¦¾à¦š করা শিট বড় করà§à¦¨à¦…রà§à¦§à§‡à¦• পà§à¦°à¦¸à¦¾à¦°à¦¿à¦¤ করà§à¦¨à¦Ÿà§‡à¦¨à§‡ আনার হà§à¦¯à¦¾à¦¨à§à¦¡à§‡à¦²à§‡ ডবল টà§à¦¯à¦¾à¦ª করা হয়েছেটেনে আনার হà§à¦¯à¦¾à¦¨à§à¦¡à§‡à¦²%2$dটির মধà§à¦¯à§‡ %1$dটি অকà§à¦·à¦° লেখা হয়েছেঅকà§à¦·à¦°à§‡à¦° সীমা %1$d à¦à¦° %2$d অতিকà§à¦°à¦® করেছেটেকà§à¦¸à¦Ÿ মà§à¦›à§à¦¨à¦¸à¦®à¦¸à§à¦¯à¦¾à¦¡à§à¦°à¦ª-ডাউন মেনৠদেখà§à¦¨à¦¡à¦¾à¦¯à¦¼à¦¾à¦²à¦— আইকনটà§à¦¯à¦¾à¦¬AM অথবা PM বেছে নিন%1$s ঘণà§à¦Ÿà¦¾à¦˜à¦£à§à¦Ÿà¦¾ বেছে নিন%1$sটা বাজেমিনিট বেছে নিন%1$s মিনিটAMসময় ইনপà§à¦Ÿ দেওয়ার জনà§à¦¯ ঘড়ি মোডে যান।ঘণà§à¦Ÿà¦¾à¦®à¦¿à¦¨à¦¿à¦ŸPMসময় বেছে নিনসময় ইনপà§à¦Ÿ দেওয়ার জনà§à¦¯ পাঠà§à¦¯ ইনপà§à¦Ÿ মোডে যান।নতà§à¦¨ বিজà§à¦žà¦ªà§à¦¤à¦¿%1$s সরিয়ে দিন%1$dটির বেশি নতà§à¦¨ বিজà§à¦žà¦ªà§à¦¤à¦¿à¦†à¦—ামী মাসে যানআগের মাসে যানচালৠহওয়ার তারিখ বাছà§à¦¨: %1$s – শেষ হওয়ার তারিখ বাছà§à¦¨: %2$sবরà§à¦¤à¦®à¦¾à¦¨ বাছাই: %1$sকোনওটিই নয়বাতিল করà§à¦¨à¦ িক আছে%1$sতারিখ বেছে নিনবেছে নেওয়া তারিখসপà§à¦¤à¦¾à¦¹à§‡à¦° দিনগà§à¦²à¦¿à¦° কলাম: %1$sশেষ হওয়ার তারিখ %1$sà¦à§à¦² ফরà§à¦®à§à¦¯à¦¾à¦Ÿà¥¤à¦‰à¦¦à¦¾à¦¹à¦°à¦£: %1$s%1$s ফরà§à¦®à§à¦¯à¦¾à¦Ÿà§‡ লিখà§à¦¨à¦¤à¦¾à¦°à¦¿à¦– সঠিক নয়।বরà§à¦¤à¦®à¦¾à¦¨ বছর %1$d-ঠনেà¦à¦¿à¦—েট করà§à¦¨à¦¨à§‡à¦à¦¿à¦—েট করে %1$d সালে যাননিরà§à¦¦à¦¿à¦·à§à¦Ÿ তারিখের বাইরে: %1$sশà§à¦°à§à¦° তারিখ – %1$s%1$s – সমাপà§à¦¤à¦¿à¦° তারিখ%1$s – %2$sরেঞà§à¦œ বেছে নিনশà§à¦°à§à¦° তারিখ - সমাপà§à¦¤à¦¿à¦° তারিখসেঠকরà§à¦¨à¦¶à§à¦°à§ হওয়ার তারিখ %1$sতারিখসমাপà§à¦¤à¦¿à¦° তারিখশà§à¦°à§à¦° তারিখdmyআজ %1$sকà§à¦¯à¦¾à¦²à§‡à¦¨à§à¦¡à¦¾à¦° ইনপà§à¦Ÿ মোডে বদল করà§à¦¨Calendar à¦à¦¿à¦‰à¦¤à§‡ পালà§à¦Ÿà¦¾à¦¤à§‡ টà§à¦¯à¦¾à¦ª করà§à¦¨à¦Ÿà§‡à¦•à§à¦¸à¦Ÿ ইনপà§à¦Ÿ মোডে বদল করà§à¦¨à¦¬à¦¾à¦°à§à¦·à¦¿à¦• à¦à¦¿à¦‰à¦¤à§‡ পালà§à¦Ÿà¦¾à¦¤à§‡ টà§à¦¯à¦¾à¦ª করà§à¦¨à¦¬à¦¾à¦¤à¦¿à¦² করà§à¦¨à¦ িক আছেপাসওয়ারà§à¦¡ দেখান
+ - %d thông báo mới
+ - %d thông báo mới
+ Thu gá»n bảng dưới cùngMở rá»™ng bảng dưới cùngMở rá»™ng má»™t ná»aÄã nhấn đúp nút kéoNút kéoÄã nháºp %1$d trong số %2$d ký tá»±Äã vượt quá giá»›i hạn ký tá»± %1$d/%2$dXóa văn bảnLá»—iHiển thị menu thả xuốngBiểu tượng há»™p thoạiThẻChá»n SA hoặc CH%1$s giá»Chá»n giá»%1$s giá»Chá»n phút%1$s phútSAChuyển sang chế độ đồng hồ để nháºp thá»i gian.Giá»PhútCHChá»n thá»i gianChuyển sang chế độ nháºp văn bản để nháºp thá»i gian.Thông báo má»›iXóa %1$sHÆ¡n %1$d thông báo má»›iChuyển sang tháng tiếp theoChuyển vá» tháng trướcNgà y bắt đầu được chá»n: %1$s – Ngà y kết thúc được chá»n: %2$sLá»±a chá»n hiện tại: %1$skhông cóHá»§yOK%1$sChá»n ngà yNgà y đã chá»nCá»™t ngà y: %1$sNgà y kết thúc %1$sÄịnh dạng không hợp lệ.Và dụ: %1$sSá» dụng: %1$sPhạm vi không hợp lệ.Chuyển đến năm hiện tại %1$dChuyển tá»›i năm %1$dNằm ngoà i phạm vi: %1$sNgà y bắt đầu – %1$s%1$s – Ngà y kết thúc%1$s – %2$sChá»n dải ôNgà y bắt đầu – Ngà y kết thúcLưuNgà y bắt đầu %1$sNgà yNgà y kết thúcNgà y bắt đầudmyHôm nay %1$sChuyển sang chế độ nháºp lịchNhấn để chuyển sang chế độ xem theo lịchChuyển sang chế độ nháºp văn bảnNhấn để chuyển sang chế độ xem theo nămHuá»·OKHiện máºt khẩu
+ - %d njoftim i ri
+ - %d njoftime të reja
+ Palos fletën e poshtmeZgjero fletën e poshtmeZgjeroje deri në gjysmëTe doreza e zvarritjes u trokit dy herëDoreza e zvarritjesKarakteret e futura: %1$d nga %2$dKufiri i karaktereve është kaluar: %1$d nga %2$dPastro tekstinGabimShfaq menynë me lëshim poshtëIkona e dialogutTabZgjidh paradite ose pasdite%1$s orëZgjidh orën%1$s fiksPërzgjidh minutat%1$s minutaPDKalo te modaliteti i orës për hyrjen e kohës.OraMinutaPDZgjidh orënKalo te modaliteti i hyrjes së tekstit për hyrjen e kohës.Njoftim i riHiq %1$sMë shumë se %1$d njoftime të rejaNdrysho te muaji i ardhshëmNdrysho te muaji i kaluarZgjedhja e datës së fillimit: %1$s - Zgjedhja e datës së përfundimit: %2$sZgjedhja aktuale: %1$sasnjëAnuloNë rregull%1$sZgjidh datënData e zgjedhurKolona e ditëve: %1$sData e mbarimit: %1$sFormat i pavlefshëm.Shembull: %1$sPërdor: %1$sGamë e pavlefshme.Navigo te viti aktual %1$dNavigo te viti %1$dJashtë gamës: %1$sData e fillimit – %1$s%1$s – data e përfundimit%1$s - %2$sZgjidh gamënData e fillimit - data e përfundimitRuajData e fillimit: %1$sDataData e përfundimitData e fillimitdmvSot %1$sKalo te modaliteti i \"Hyrjes së kalendarit\"Trokit për t\'u kthyer te pamja e \"Kalendarit\"Kalo te modaliteti i \"Hyrjes së tekstit\"Trokit për t\'u kthyer te pamja vjetoreAnuloNë rregullShfaq fjalëkalimin24dp0dp22dp48dp2dp2dp48dp20dp168dp0dp@android:color/system_background_dark@android:color/system_error_dark@android:color/system_error_container_dark@android:color/system_on_surface_light@android:color/system_primary_light@android:color/system_surface_light@android:color/system_on_background_dark@android:color/system_on_error_dark@android:color/system_on_error_container_dark@android:color/system_on_primary_dark@android:color/system_on_primary_container_dark@android:color/system_on_secondary_dark@android:color/system_on_secondary_container_dark@android:color/system_on_surface_dark@android:color/system_on_surface_variant_dark@android:color/system_on_tertiary_dark@android:color/system_on_tertiary_container_dark@android:color/system_outline_dark@android:color/system_outline_variant_dark@android:color/system_primary_dark@android:color/system_primary_container_dark@android:color/system_secondary_dark@android:color/system_secondary_container_dark@android:color/system_surface_dark@android:color/system_surface_bright_dark@android:color/system_surface_container_dark@android:color/system_surface_container_high_dark@android:color/system_surface_container_highest_dark@android:color/system_surface_container_low_dark@android:color/system_surface_container_lowest_dark@android:color/system_surface_dim_dark@android:color/system_surface_variant_dark@android:color/system_tertiary_dark@android:color/system_tertiary_container_dark@android:color/system_background_light@android:color/system_error_light@android:color/system_error_container_light@android:color/system_on_surface_dark@android:color/system_primary_dark@android:color/system_surface_dark@android:color/system_on_background_light@android:color/system_on_error_light@android:color/system_on_error_container_light@android:color/system_on_primary_light@android:color/system_on_primary_container_light@android:color/system_on_secondary_light@android:color/system_on_secondary_container_light@android:color/system_on_surface_light@android:color/system_on_surface_variant_light@android:color/system_on_tertiary_light@android:color/system_on_tertiary_container_light@android:color/system_outline_light@android:color/system_outline_variant_light@android:color/system_primary_light@android:color/system_primary_container_light@android:color/system_secondary_light@android:color/system_secondary_container_light@android:color/system_surface_light@android:color/system_surface_bright_light@android:color/system_surface_container_light@android:color/system_surface_container_high_light@android:color/system_surface_container_highest_light@android:color/system_surface_container_low_light@android:color/system_surface_container_lowest_light@android:color/system_surface_dim_light@android:color/system_surface_variant_light@android:color/system_tertiary_light@android:color/system_tertiary_container_light@android:color/system_on_primary_fixed@android:color/system_on_primary_fixed_variant@android:color/system_on_secondary_fixed@android:color/system_on_secondary_fixed_variant@android:color/system_on_tertiary_fixed@android:color/system_on_tertiary_fixed_variant@android:color/system_primary_fixed@android:color/system_primary_fixed_dim@android:color/system_secondary_fixed@android:color/system_secondary_fixed_dim@android:color/system_tertiary_fixed@android:color/system_tertiary_fixed_dim@color/m3_sys_color_dynamic_dark_error@color/m3_sys_color_dynamic_dark_error_container@color/m3_sys_color_dynamic_dark_on_error@color/m3_sys_color_dynamic_dark_on_error_container@color/m3_sys_color_dynamic_light_error@color/m3_sys_color_dynamic_light_error_container@color/m3_sys_color_dynamic_light_on_error@color/m3_sys_color_dynamic_light_on_error_container
+ - %d nytt varsel
+ - %d nye varsler
+ Skjul feltet nederstVis feltet nederstVis halve feltet nederstDobbelttrykket på håndtaketHåndtak%1$d av %2$d tegn er skrevet innTegngrensen er overskredet – %1$d av %2$dFjern tekstenFeilVis rullegardinmenyenDialogboksikonFaneVelg AM eller PM%1$s timerVelg time%1$s null-nullAngi minutter%1$s minutterAMBytt til klokkemodus for tidsinndata.TimeMinuttPMVelg tidspunktBytt til tekstinndatamodus for tidsinndata.Nytt varselFjern %1$sFlere enn %1$d nye varslerEndre til neste månedEndre til forrige månedValg av startdato: %1$s – valg av sluttdato: %2$sGjeldende valg: %1$singenAvbrytOK%1$sVelg datoValgt datoKolonne for dager: %1$sSluttdato %1$sUgyldig format.Eksempel: %1$sBruk: %1$sUgyldig område.Gå til dette året %1$dNaviger til år %1$dUtenfor rekkevidde: %1$sStartdato – %1$s%1$s – sluttdato%1$s–%2$sVelg periodeStartdato–sluttdatoLagreStartdato %1$sDatoSluttdatoStartdatodmåI dag %1$sBytt til kalenderinndatamodusTrykk for å bytte til kalendervisningenBytt til tekstinndatamodusTrykk for å bytte til årsvisningenAvbrytOKVis passordet
+ - %d התר×ות חדשות
+ - %d התר×ות חדשות
+ - %d התר×ות חדשות
+ כיווץ הגיליון התחתוןהרחבת הגיליון התחתוןהרחבה עד ×”×מצעבוצעה הקשה כפולה על × ×§×•×“×ª ×”××—×™×–×” ×œ×’×¨×™×¨×”× ×§×•×“×ª ××—×™×–×” ×œ×’×¨×™×¨×”×”×•×–× ×• %1$d ×ª×•×•×™× ×ž×ª×•×š %2$dמגבלת ×”×ª×•×•×™× ×—×•×¨×’×ª ב-%1$d מתוך %2$dמחיקת הטקסטשגי×ההצגת התפריט ×”× ×¤×ª×—×¡×ž×œ לתיבת דו-שיחמקש Tabיש לבחור ב-AM ×ו ב-PM%1$s שעותבחר שעההשעה %1$sבחר דקות%1$s דקותAMהעבר למצב שעון לצורך ×”×–× ×ª השעהשעהדקהPMבחר שעההעבר למצב קלט טקסט לצורך ×”×–× ×ª השעההתר××” חדשההסרה של %1$sיותר מ-%1$d התר×ות חדשותמעבר לחודש הב×מעבר לחודש הקוד×בחירת ת×ריך ההתחלה: %1$s – בחירת ת×ריך הסיו×: %2$sהבחירה ×”× ×•×›×—×™×ª: %1$sלל×ביטול×ישור%1$sיש לבחור ת×ריךהת×ריך ×”× ×‘×—×¨×¢×ž×•×“×” של ימי×: %1$sת×ריך ×”×¡×™×•× %1$sפורמט ×œ× ×—×•×§×™.דוגמה: %1$sיש להשתמש בפורמט: %1$sטווח ×œ× ×—×•×§×™.× ×™×•×•×˜ ×œ×©× ×” ×”× ×•×›×—×™×ª %1$d× ×™×•×•×˜ ×œ×©× ×ª %1$dמחוץ לטווח: %1$sת×ריך התחלה – %1$s%1$s – ת×ריך סיו×%1$s – %2$sיש לבחור טווחת×ריך התחלה - ת×ריך סיו×שמירהת×ריך ההתחלה %1$sת×ריךת×ריך סיו×ת×ריך ×”×ª×—×œ×”×™×—×©×”×™×•× %1$sהחלפה לשיטת קלט של יומןיש להקיש כדי לעבור לתצוגת יומןהחלפה לשיטת קלט של טקסטיש להקיש כדי לעבור לתצוגת ×©× ×ª×™×ª×‘×™×˜×•×œ×ישורהצגת סיסמה
+ - %d uus märguanne
+ - %d uut märguannet
+ Alumise lehe ahendamineAlumise lehe laiendamineLaiendamine poolenistiLohistamispidet topeltpuudutatiLohistamispideSisestatud tähemärgid: %1$d/%2$dTähemärgipiirang on ületatud: %1$d/%2$dKustuta tekstVigaKuva rippmenüüDialoogi ikoonVahelehtValige AM või PM%1$s tundiValige tundKell %1$sMinutite valimine%1$s minutitAMAktiveerige kellaaja sisestamiseks kellarežiim.TunnidMinutPMAja valimineAktiveerige kellaaja sisestamiseks tekstisisestusrežiim.Uus märguanneÜksuse %1$s eemaldamineRohkem kui %1$d uut märguannetVaheta järgmisele kuuleVaheta eelmisele kuuleAlguskuupäeva valik: %1$s. Lõppkuupäeva valik: %2$s.Praegune valik: %1$spuudubTühistaOK%1$sValige kuupäevValitud kuupäevPäevade veerg: %1$sLõppkuupäev: %1$sSobimatu vorming.Näide: %1$sKasutage: %1$sSobimatu vahemik.Navigeerige praegusele aastale %1$dMine aastasse %1$dVahemikust väljas: %1$sAlguskuupäev – %1$s%1$s – lõppkuupäev%1$s–%2$sValige vahemikAlguskuupäev – lõppkuupäevSalvestaAlguskuupäev: %1$sKuupäevLõppkuupäevAlguskuupäevpkaTäna %1$sLülitu kalendrisisestusrežiimilePuudutage kalendrivaatele lülitumiseksLülitu tekstisisestusrežiimilePuudutage aastavaatele lülitumiseksTühistaOKParooli kuvamine
+ - %d nové upozornenie
+ - %d nové upozornenia
+ - %d new notifications
+ - %d nových upozornenÃ
+ ZbaliÅ¥ dolný hárokRozbaliÅ¥ dolný hárokRozbaliÅ¥ napolyDvojité klepnutie na presúvadloPresúvadloZadané znaky: %1$d z %2$dBol prekroÄený povolený poÄet znakov (%1$d z %2$d)VymazaÅ¥ textChybaZobraziÅ¥ rozbaľovaciu ponukuIkona dialógového oknaTabulátorVyberte AM alebo PM%1$s hodÃnVybraÅ¥ hodinu%1$sVyberte minúty%1$s minAMAk chcete zadaÅ¥ Äas, prepnite na režim hodÃn.HodinaMinútaPMVyberte ÄasAk chcete zadaÅ¥ Äas, prepnite na textový režim vstupuNové upozornenieOdstrániÅ¥ položku %1$sViac než %1$d nových upozornenÃÄŽalšà mesiacPredchádzajúci mesiacVýber dátumu zaÄatia: %1$s – Výber dátumu ukonÄenia: %2$sAktuálny výber: %1$sprázdneZruÅ¡iÅ¥OK%1$sVyberte dátumVybraný dátumStĺpec dnÃ: %1$sDátum ukonÄenia %1$sNeplatný formát.PrÃklad: %1$sPoužite: %1$sNeplatný rozsah.PrejsÅ¥ na aktuálny rok %1$dPrejsÅ¥ na rok %1$dMimo rozsahu: %1$sDátum zaÄatia – %1$s%1$s – dátum ukonÄenia%1$s – %2$sVyberte rozsahDátum zaÄatia – dátum ukonÄeniaUložiÅ¥Dátum zaÄatia %1$sDátumDátum ukonÄeniaDátum zaÄatiadmrDnes %1$sPrepnúť na kalendárový režim vstupuKlepnutÃm prepnete na zobrazenie kalendáraPrepnúť na textový režim vstupuKlepnutÃm prepnete na zobrazenie jednotlivých rokovZruÅ¡iÅ¥OKZobraziÅ¥ heslo
+ - %d பà¯à®¤à®¿à®¯ அறிவிபà¯à®ªà¯
+ - %d பà¯à®¤à®¿à®¯ அறிவிபà¯à®ªà¯à®•ளà¯
+ கீழà¯à®ªà¯à®ªà¯à®±à®šà¯ சீடà¯à®Ÿà¯ˆà®šà¯ சà¯à®°à¯à®•à¯à®•à¯à®®à¯à®•ீழà¯à®ªà¯à®ªà¯à®±à®šà¯ சீடà¯à®Ÿà¯ˆ விரிவாகà¯à®•à¯à®®à¯à®ªà®¾à®¤à®¿à®¯à®³à®µà¯ விரிவாகà¯à®•à¯à®®à¯à®‡à®´à¯à®ªà¯à®ªà®¤à®±à¯à®•ான ஹேணà¯à®Ÿà®¿à®²à¯ இரà¯à®®à¯à®±à¯ˆ தடà¯à®Ÿà®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯à®‡à®´à¯à®ªà¯à®ªà®¤à®±à¯à®•ான ஹேணà¯à®Ÿà®¿à®²à¯%2$d இல௠%1$d எழà¯à®¤à¯à®¤à¯à®•ள௠உளà¯à®³à®¿à®Ÿà®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®©%2$d இல௠%1$d எழà¯à®¤à¯à®¤à¯ வரமà¯à®ªà¯ மீறபà¯à®ªà®Ÿà¯à®Ÿà®¤à¯à®‰à®°à¯ˆà®¯à¯ˆ அழிகà¯à®•à¯à®®à¯à®ªà®¿à®´à¯ˆà®•ீழ௠தோனà¯à®±à®²à¯ மெனà¯à®µà¯ˆà®•௠காடà¯à®Ÿà¯à®®à¯ படà¯à®Ÿà®©à¯à®‰à®°à¯ˆà®¯à®¾à®Ÿà®²à¯ à®à®•ானà¯à®¤à®¾à®µà®²à¯AM அலà¯à®²à®¤à¯ PMமைத௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• உதவà¯à®®à¯%1$s மணிநேரமà¯à®®à®£à®¿à®¨à¯‡à®°à®¤à¯à®¤à¯ˆà®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• உதவà¯à®®à¯%1$s மணிநிமிடதà¯à®¤à¯ˆà®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯%1$s நிமிடஙà¯à®•ளà¯AMநேர உளà¯à®³à¯€à®Ÿà¯à®Ÿà®¿à®±à¯à®•ாக, கடிகாரப௠பயனà¯à®®à¯à®±à¯ˆà®•à¯à®•௠மாறà¯à®±à¯à®®à¯.மணிநேரமà¯à®¨à®¿à®®à®¿à®Ÿà®®à¯PMநேரதà¯à®¤à¯ˆà®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯à®‰à®°à¯ˆ உளà¯à®³à¯€à®Ÿà¯à®Ÿà®¿à®±à¯à®•ாக, கடிகாரப௠பயனà¯à®®à¯à®±à¯ˆà®•à¯à®•௠மாறà¯à®±à¯à®®à¯.பà¯à®¤à®¿à®¯ அறிவிபà¯à®ªà¯%1$s஠அகறà¯à®±à¯%1$d+ பà¯à®¤à®¿à®¯ அறிவிபà¯à®ªà¯à®•ளà¯à®…டà¯à®¤à¯à®¤ மாததà¯à®¤à¯ˆà®•௠காடà¯à®Ÿà¯à®®à¯à®¨à¯à®¤à¯ˆà®¯ மாததà¯à®¤à¯ˆà®•௠காடà¯à®Ÿà¯à®¤à¯Šà®Ÿà®™à¯à®•à¯à®®à¯ தேதியைத௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®™à¯à®•ளà¯: %1$s – à®®à¯à®Ÿà®¿à®¯à¯à®®à¯ தேதியைத௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®™à¯à®•ளà¯: %2$sதறà¯à®ªà¯‹à®¤à¯ˆà®¯ தேரà¯à®µà¯: %1$sஎதà¯à®µà¯à®®à®¿à®²à¯à®²à¯ˆà®°à®¤à¯à®¤à¯à®šà¯†à®¯à¯à®šà®°à®¿%1$sதேதியைத௠தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯à®¤à¯‡à®°à¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ தேதிநாடà¯à®•ளின௠நெடà¯à®µà®°à®¿à®šà¯ˆ: %1$sà®®à¯à®Ÿà®¿à®¯à¯à®®à¯ தேதி %1$sதவறான வடிவமà¯.உதாரணமà¯: %1$s%1$sà®à®ªà¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯à®•தவறான வரமà¯à®ªà¯.தறà¯à®ªà¯‹à®¤à¯ˆà®¯ வரà¯à®Ÿà®¤à¯à®¤à®¿à®±à¯à®•௠(%1$d) செலà¯à®²à¯à®®à¯%1$d ஆம௠ஆணà¯à®Ÿà®¿à®±à¯à®•à¯à®šà¯ செலà¯à®²à¯à®®à¯à®Žà®²à¯à®²à¯ˆà®•à¯à®•௠வெளியே உளà¯à®³à®¤à¯: %1$sதொடகà¯à®•த௠தேதி – %1$s%1$s – à®®à¯à®Ÿà®¿à®µà¯à®¤à¯ தேதி%1$s – %2$sவரமà¯à®ªà¯ˆà®¤à¯ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯à®¤à¯Šà®Ÿà®•à¯à®•த௠தேதி - à®®à¯à®Ÿà®¿à®µà¯à®¤à¯ தேதிசேமிதொடஙà¯à®•à¯à®®à¯ தேதி %1$sதேதிமà¯à®Ÿà®¿à®µà¯à®¤à¯ தேதிதொடகà¯à®•த௠தேதிநாமாஆஇனà¯à®±à¯ %1$sகேலெணà¯à®Ÿà®°à¯ உளà¯à®³à¯€à®Ÿà¯à®Ÿà¯ à®®à¯à®±à¯ˆà®•à¯à®•௠மாறà¯à®±à¯à®®à¯à®•ேலெணà¯à®Ÿà®°à¯ காடà¯à®šà®¿à®•à¯à®•௠மாற தடà¯à®Ÿà®µà¯à®®à¯à®‰à®°à¯ˆ உளà¯à®³à¯€à®Ÿà¯à®Ÿà¯ à®®à¯à®±à¯ˆà®•à¯à®•௠மாறà¯à®±à¯à®®à¯à®†à®£à¯à®Ÿà¯à®•௠காடà¯à®šà®¿à®•à¯à®•௠மாற தடà¯à®Ÿà®µà¯à®®à¯à®°à®¤à¯à®¤à¯à®šà¯†à®¯à¯à®šà®°à®¿à®•டவà¯à®šà¯à®šà¯Šà®²à¯à®²à¯ˆà®•௠காடà¯à®Ÿà¯
+ - %d ново обавештење
+ - %d нова обавештења
+ - %d нових обавештења
+ Скупите доњу табелуПроширите доњу табелуПроширите до полаИдентификатор за превлачење је двапут додирнутРучица за превлачењеУнети знакови: %1$d од %2$dПрекорачено је ограничење броја знакова: %1$d од %2$dОбриши текÑтГрешкаПрикажи падајући мениИкона дијалогаКартицаИзаберите пре подне или по подне%1$s ÑИзаберите Ñат%1$s ÑИзаберите минуте%1$s минAMПређите у режим Ñата ради уноÑа времена.СатМинутPMИзаберите времеПређите у режим уноÑа текÑта ради уноÑа времена.Ðово обавештењеУклоните %1$sÐових обавештења: више од %1$dПређите на Ñледећи меÑецПређите на претходни меÑецИзбор датума почетка: %1$s – Избор датума завршетка: %2$sÐктуелни избор: %1$sништаОткажиПотврди%1$sИзаберите датумИзабрани датумКолона Ñа данима: %1$sДатум завршетка %1$sФормат је неважећи.Пример: %1$sКориÑтите: %1$sÐеважећи период.Идите на актуелну годину %1$dИдите на годину %1$dИзван периода: %1$sДатум почетка – %1$s%1$s – Датум завршетка%1$s–%2$sИзаберите периодДатум почетка – Датум завршеткаСачувајДатум почетка %1$sДатумДатум завршеткаДатум Ð¿Ð¾Ñ‡ÐµÑ‚ÐºÐ°Ð´Ð¼Ð³Ð”Ð°Ð½Ð°Ñ %1$sПређите на режим уноÑа у КалендаруДодирните да биÑте прешли на приказ календараПређите на режим уноÑа текÑтаДодирните да биÑте прешли на приказ годинеОткажиПотврдиПрикажи лозинку
+ - %d новое уведомление
+ - %d новых уведомлениÑ
+ - %d новых уведомлений
+ - %d нового уведомлениÑ
+ Свернуть нижний ÑкранРазвернуть нижний ÑкранРазвернуть наполовинуДвойное нажатие на маркер перемещениÑМаркер перемещениÑВведено Ñимволов: %1$d из %2$dПревышено ограничение на количеÑтво Ñимволов (%1$d из %2$d)ОчиÑтить текÑтовое полеОшибкаПоказать раÑкрывающееÑÑ Ð¼ÐµÐ½ÑŽÐ—Ð½Ð°Ñ‡Ð¾Ðº диалогового окнаВкладкаВыберите AM (до полуднÑ) или PM (поÑле полуднÑ)%1$s ч.Выберите чаÑ%1$s ч.Выберите минуты%1$s мин.AMЧтобы ввеÑти времÑ, перейдите в режим чаÑов.ЧаÑМинутыPMВыбор времениЧтобы ввеÑти времÑ, перейдите в режим ввода текÑта.Ðовое уведомлениеУдалить \"%1$s\"Ðовых уведомлений больше %1$dПерейти к Ñледующему меÑÑцуПерейти к предыдущему меÑÑÑ†ÑƒÐ’Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ð´Ð°Ñ‚Ð° начала: %1$s. Ð’Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ð´Ð°Ñ‚Ð° окончаниÑ: %2$s.Выбранный Ñлемент: %1$sнетОтменаОК%1$sВыберите Ð´Ð°Ñ‚ÑƒÐ’Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ð´Ð°Ñ‚Ð°Ð¡Ñ‚Ð¾Ð»Ð±ÐµÑ† Ñо днÑми недели: %1$sДата окончаниÑ: %1$sÐедейÑтвительный формат.Пример: %1$sИÑпользуйте: %1$sÐедопуÑтимый диапазон.Перейти к текущему году: %1$dПерейти к %1$d годуВне диапазона: %1$sДата начала – %1$s%1$s – дата окончаниÑ%1$s – %2$sВыберите диапазон датДата начала – дата окончаниÑСохранитьДата начала: %1$sДатаДата окончаниÑДата началадмгСегоднÑ: %1$sПерейти в режим выбора днейÐажмите, чтобы перейти к КалендарюПерейти в режим ввода текÑтаÐажмите, чтобы выбрать годОтменаОКПоказать пароль
+ - %d नवीन सूचना
+ - %d नवीन सूचना
+ तळाशी असलेली शीट कोलॅपà¥à¤¸ करातळाशी असलेलà¥à¤¯à¤¾ शीटचा विसà¥à¤¤à¤¾à¤° करापूरà¥à¤£à¤ªà¤£à¥‡ विसà¥à¤¤à¥ƒà¤¤ कराडà¥à¤°à¥…ग हॅंडलवर दोनदा टॅप केले आहेडà¥à¤°à¥…ग हॅंडल%2$d पैकी %1$d वरà¥à¤£ à¤à¤‚टर केले आहे%2$d पैकी %1$d वरà¥à¤£à¤®à¤°à¥à¤¯à¤¾à¤¦à¤¾ ओलांडली आहेमजकूर साफ कराà¤à¤°à¤°à¤¡à¥à¤°à¥‰à¤ªà¤¡à¤¾à¤‰à¤¨ मेनू दाखवाडायलॉग आयकनटॅबAM किंवा PM निवडा%1$s तासवेळ निवडा%1$s वाजतामिनिटे निवडा%1$s मिनिटेAMवेळेचà¥à¤¯à¤¾ इनपà¥à¤Ÿà¤¸à¤¾à¤ ी घडà¥à¤¯à¤¾à¤³ मोडवर सà¥à¤µà¤¿à¤š करा.तासमिनिटPMवेळ निवडावेळ इनपà¥à¤Ÿà¤¸à¤¾à¤ ी मजकूर इनपà¥à¤Ÿ मोडवर सà¥à¤µà¤¿à¤š करा.नवीन सूचनाकाढून टाका %1$s%1$d पेकà¥à¤·à¤¾ अधिक नवीन सूचनापà¥à¤¢à¥€à¤² महिनà¥à¤¯à¤¾à¤µà¤° बदलामागील महिनà¥à¤¯à¤¾à¤µà¤° बदलासà¥à¤°à¥‚ होणà¥à¤¯à¤¾à¤šà¥à¤¯à¤¾ तारखेची निवड: %1$s – संपणà¥à¤¯à¤¾à¤šà¥à¤¯à¤¾ तारखेची निवड: %2$sसधà¥à¤¯à¤¾à¤šà¥€ निवड: %1$sकाहीही नाहीरदà¥à¤¦ कराओके%1$sतारीख निवडानिवडलेली तारीखदिवसांचा सà¥à¤¤à¤‚à¤: %1$sसंपणà¥à¤¯à¤¾à¤šà¥€ तारीख %1$sचà¥à¤•ीचा फॉरमॅट.उदाहरण: %1$s%1$s: वापराचà¥à¤•ीची शà¥à¤°à¥‡à¤£à¥€.सधà¥à¤¯à¤¾à¤šà¥‡ वरà¥à¤· %1$d यावर नेवà¥à¤¹à¤¿à¤—ेट करा%1$d वरà¥à¤·à¤¾à¤µà¤° नेवà¥à¤¹à¤¿à¤—ेट करारेंजचà¥à¤¯à¤¾ बाहेर: %1$sसà¥à¤°à¥‚ होणà¥à¤¯à¤¾à¤šà¥€ तारीख – %1$s%1$s – संपणà¥à¤¯à¤¾à¤šà¥€ तारीख%1$s – %2$sरेंज निवडासà¥à¤°à¥‚ होणà¥à¤¯à¤¾à¤šà¥€ तारीख – संपणà¥à¤¯à¤¾à¤šà¥€ तारीखसेवà¥à¤¹ करासà¥à¤°à¥‚ होणà¥à¤¯à¤¾à¤šà¥€ तारीख %1$sतारीखसंपणà¥à¤¯à¤¾à¤šà¥€ तारीखसà¥à¤°à¥‚ होणà¥à¤¯à¤¾à¤šà¥€ तारीखदिमवआज %1$sकॅलेंडर इनपà¥à¤Ÿ मोडवर सà¥à¤µà¤¿à¤š कराकॅलेंडर या दृशà¥à¤¯à¤¾à¤µà¤° सà¥à¤µà¤¿à¤š करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी टॅप करामजकूर इनपà¥à¤Ÿ मोडवर सà¥à¤µà¤¿à¤š करावरà¥à¤· या दृशà¥à¤¯à¤¾à¤µà¤° सà¥à¤µà¤¿à¤š करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी टॅप करारदà¥à¤¦ कराओकेपासवरà¥à¤¡ दाखवा
+ - %d नई सूचनाà¤à¤‚
+ - %d नई सूचनाà¤à¤‚
+ बॉटम शीट को छोटा करेंबॉटम शीट को बड़ा करेंपूरी तरह बड़ा करेंखींचकर छोड़ने वाले हैंडल पर दो बार टैप किया गयाखींचकर छोड़ने वाला हैंडल%2$d वरà¥à¤£à¥‹à¤‚ में से %1$d वरà¥à¤£ दरà¥à¤œ किठगà¤à¤…à¤à¥€ %1$d वरà¥à¤£ हैं जबकि %2$d से ज़à¥à¤¯à¤¾à¤¦à¤¾ नहीं होने चाहिà¤à¤Ÿà¥‡à¤•à¥à¤¸à¥à¤Ÿ मिटाà¤à¤‚गड़बड़ीडà¥à¤°à¥‰à¤ªà¤¡à¤¾à¤‰à¤¨ मेनà¥à¤¯à¥‚ दिखाà¤à¤‚डायलॉग का आइकॉनटैबAM या PM चà¥à¤¨à¥‡à¤‚%1$s घंटेघंटा चà¥à¤¨à¥‡à¤‚%1$s बजेमिनट चà¥à¤¨à¥‡à¤‚%1$s मिनटपूरà¥à¤µà¤¾à¤¹à¥à¤¨à¤¸à¤®à¤¯ इनपà¥à¤Ÿ के लिठघड़ी मोड पर जाà¤à¤‚.घंटामिनटअपराहà¥à¤¨à¤¸à¤®à¤¯ चà¥à¤¨à¥‡à¤‚समय इनपà¥à¤Ÿ के लिठलेख इनपà¥à¤Ÿ मोड पर जाà¤à¤‚.नई सूचना%1$s हटाà¤à¤‚%1$d से ज़à¥à¤¯à¤¾à¤¦à¤¾ नई सूचनाà¤à¤‚अगले महीने पर जाà¤à¤‚पिछले महीने पर जाà¤à¤‚शà¥à¤°à¥‚ होने की तारीख चà¥à¤¨à¥‡à¤‚: %1$s – खतà¥à¤® होने की तारीख चà¥à¤¨à¥‡à¤‚: %2$sफ़िलहाल, यह चà¥à¤¨à¤¾ गया है: %1$sकोई à¤à¥€ तारीख नहीं चà¥à¤¨à¥€ गईरदà¥à¤¦ करेंठीक है%1$sतारीख चà¥à¤¨à¥‡à¤‚चà¥à¤¨à¥€ गई तारीखदिनों का कॉलम: %1$sखतà¥à¤® होने की तारीख %1$sगलत फ़ॉरà¥à¤®à¥ˆà¤Ÿ.उदाहरण: %1$s%1$s का इसà¥à¤¤à¥‡à¤®à¤¾à¤² करेंतारीखों की अमानà¥à¤¯ सीमा.मौजूदा साल %1$d पर जाà¤à¤‚साल %1$d पर जाà¤à¤‚चà¥à¤¨à¥€ गई तारीख मानà¥à¤¯ नहीं है: %1$sशà¥à¤°à¥‚ होने की तारीख – %1$s%1$s – खतà¥à¤® होने की तारीख%1$s – %2$sरेंज चà¥à¤¨à¥‡à¤‚शà¥à¤°à¥‚ होने की तारीख – खतà¥à¤® होने की तारीखसेव करेंशà¥à¤°à¥‚ होने की तारीख %1$sतारीखखतà¥à¤® होने की तारीखशà¥à¤°à¥‚ होने की तारीखdmyआज %1$sकैलेंडर के इनपà¥à¤Ÿ मोड पर सà¥à¤µà¤¿à¤š करेंकैलेंडर के वà¥à¤¯à¥‚ पर सà¥à¤µà¤¿à¤š करने के लिठटैप करेंटेकà¥à¤¸à¥à¤Ÿ के इनपà¥à¤Ÿ मोड पर सà¥à¤µà¤¿à¤š करेंसाल के वà¥à¤¯à¥‚ पर सà¥à¤µà¤¿à¤š करने के लिठटैप करेंरदà¥à¤¦ करेंठीक हैपासवरà¥à¤¡ दिखाà¤à¤‚
+ - %d ny avisering
+ - %d nya aviseringar
+ Komprimera arket på nedre delen av skärmenUtöka arket på nedre delen av skärmenUtöka till hälftenDu tryckte snabbt två gånger på handtagetHandtag%1$d av %2$d tecken har angettsTeckengränsen har överskridits: %1$d av %2$dRensa textFelVisa rullgardinsmenynDialogikonFlikVälj mellan FM och EM%1$s timmarAnge timmeKlockan %1$sVälj minuter%1$s minuterFMByt till klockläget och ange tid.TimmeMinutEMVälj tidByt till textinmatningsläget och ange tid.Ny aviseringTa bort (%1$s)Fler än %1$d nya aviseringarÄndra till nästa månadÄndra till föregående månadVal av startdatum: %1$s – val av slutdatum: %2$sAktuellt val: %1$singetAvbrytOK%1$sVälj datumValt datumKolumn med dagar: %1$sSlutdatum %1$sOgiltigt format.Exempel: %1$sAnvänd %1$sOgiltigt intervall.Navigera till innevarande år %1$dNavigera till år %1$dUtanför intervallet: %1$sStartdatum–%1$s%1$s–slutdatum%1$s–%2$sVälj intervallStartdatum–slutdatumSparaStartdatum %1$sDatumSlutdatumStartdatumdmåIdag %1$sByt till kalender som inmatningslägeTryck för att byta till kalendervyByt till text som inmatningslägeTryck för att byta till årsvyAvbrytOKVisa lösenord
+ - %d nové oznámenÃ
+ - %d nová oznámenÃ
+ - %d nového oznámenÃ
+ - %d nových oznámenÃ
+ Sbalit spodnà tabulkuRozbalit spodnà tabulkuRozbalit napůlDvakrát jste klepli na úchyt pro pÅ™etaženÃÚchyt pro pÅ™etaženÃZadané znaky: %1$d z %2$dByl pÅ™ekroÄen povolený poÄet znaků (%1$d z %2$d)Vymazat textChybaZobrazit rozbalovacà nabÃdkuIkona dialogového oknaKartaVyberte AM nebo PM%1$s hodinVyberte hodinu%1$sZvolte minuty%1$s minAMChcete-li zadat Äas, pÅ™epnÄ›te na režim hodin.HodinaMinutaPMVyberte ÄasChcete-li zadat Äas, pÅ™epnÄ›te na režim textu.Nové oznámenÃOdstranit položku %1$sVÃce než %1$d nových oznámenÃPÅ™ejÃt na dalšà mÄ›sÃcPÅ™ejÃt na pÅ™edchozà mÄ›sÃcVýbÄ›r data zahájenÃ: %1$s – VýbÄ›r data ukonÄenÃ: %2$sAktuálnà výbÄ›r: %1$sprázdnéZruÅ¡itOK%1$sVyberte datumVybrané datumSloupec dnů: %1$sDatum ukonÄenà %1$sNeplatný formát.PÅ™Ãklad: %1$sPoužijte: %1$sNeplatný rozsah.PÅ™ejÃt na aktuálnà rok %1$dPÅ™ejÃt na rok %1$dMimo rozsah: %1$sDatum zahájenà – %1$s%1$s – datum ukonÄenÃ%1$s – %2$sVyberte rozsahDatum zahájenà – datum ukonÄenÃUložitDatum zahájenà %1$sDatumDatum ukonÄenÃDatum zahájenÃdmrDnes %1$sPÅ™epnout na režim zadávánà do kalendářeKlepnutÃm pÅ™epnete na zobrazenà kalendářePÅ™epnout na režim zadávánà textuKlepnutÃm pÅ™epnete na zobrazenà jednotlivých letZruÅ¡itOKZobrazit heslo
+ - %d ä»¶ã®æ–°ã—ã„通知
+ - %d ä»¶ã®æ–°ã—ã„通知
+ ボトムシートを閉ã˜ã‚‹ãƒœãƒˆãƒ シートを開ã下åŠåˆ†ã‚’展開ドラッグ ãƒãƒ³ãƒ‰ãƒ«ã‚’ダブルタップã—ã¾ã—ãŸãƒ‰ãƒ©ãƒƒã‚° ãƒãƒ³ãƒ‰ãƒ«å…¥åŠ›æ¸ˆã¿æ–‡å—æ•°: %1$d/%2$dæ–‡å—æ•°åˆ¶é™ã‚’è¶…ãˆã¦ã„ã¾ã™ï¼ˆ%1$d/%2$d æ–‡å—)テã‚ストを消去エラープルダウン メニューを表示ダイアãƒã‚° アイコンタブåˆå‰ã¾ãŸã¯åˆå¾Œã‚’é¸æŠž%1$s æ™‚é–“æ™‚åˆ»ã‚’é¸æŠžã—ã¦ãã ã•ã„%1$sæ™‚åˆ†ã‚’é¸æŠž%1$s分AM時刻を時計ã§å…¥åŠ›ã™ã‚‹ãƒ¢ãƒ¼ãƒ‰ã«åˆ‡ã‚Šæ›¿ãˆã¾ã™ã€‚時間分PMæ™‚é–“ã‚’é¸æŠžæ™‚åˆ»ã‚’ãƒ†ã‚ストã§å…¥åŠ›ã™ã‚‹ãƒ¢ãƒ¼ãƒ‰ã«åˆ‡ã‚Šæ›¿ãˆã¾ã™ã€‚æ–°ã—ã„通知%1$s を削除ã—ã¾ã™%1$d ä»¶ä»¥ä¸Šã®æ–°ã—ã„通知翌月ã«å¤‰æ›´å‰æœˆã«å¤‰æ›´é–‹å§‹æ—¥ã®é¸æŠž: %1$s – 終了日ã®é¸æŠž: %2$sç¾åœ¨ã®é¸æŠž: %1$sãªã—ã‚ャンセルOK%1$sæ—¥ä»˜ã‚’é¸æŠžã—ã¦ãã ã•ã„é¸æŠžã—ãŸæ—¥ä»˜æ›œæ—¥ã®åˆ—: %1$s終了日 %1$så½¢å¼ãŒç„¡åйã§ã™ã€‚例: %1$s使用: %1$s範囲ãŒç„¡åйã§ã™ã€‚ç¾åœ¨ã®å¹´ï¼ˆ%1$d)ã«ç§»å‹•%1$d å¹´ã«ç§»å‹•範囲外: %1$s開始日~%1$s%1$s~終了日%1$s~%2$sæœŸé–“ã‚’é¸æŠžã—ã¦ãã ã•ã„開始日~終了日ä¿å˜é–‹å§‹æ—¥ %1$s日付終了日開始日dmy今日(%1$s)カレンダー入力モードã«åˆ‡ã‚Šæ›¿ãˆã‚¿ãƒƒãƒ—ã™ã‚‹ã¨ã‚«ãƒ¬ãƒ³ãƒ€ãƒ¼è¡¨ç¤ºã«åˆ‡ã‚Šæ›¿ã‚りã¾ã™ãƒ†ã‚スト入力モードã«åˆ‡ã‚Šæ›¿ãˆã‚¿ãƒƒãƒ—ã™ã‚‹ã¨å¹´è¡¨ç¤ºã«åˆ‡ã‚Šæ›¿ã‚りã¾ã™ã‚ャンセルOKパスワードを表示
+ - %d à´ªàµà´¤à´¿à´¯ അറിയിപàµà´ªàµ
+ - %d à´ªàµà´¤à´¿à´¯ അറിയിപàµà´ªàµà´•ൾ
+ ബോടàµà´Ÿà´‚ ഷീറàµà´±àµ à´šàµà´°àµà´•àµà´•àµà´•ബോടàµà´Ÿà´‚ ഷീറàµà´±àµ വികസിപàµà´ªà´¿à´•àµà´•àµà´•à´®àµà´´àµà´µà´¨à´¾à´¯à´¿ വികസിപàµà´ªà´¿à´•àµà´•àµà´•വലിചàµà´šà´¿à´Ÿàµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ ഹാൻഡിൽ ഡബിൾ ടാപàµà´ªàµ ചെയàµà´¤àµà´µà´²à´¿à´šàµà´šà´¿à´Ÿàµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ ഹാൻഡിൽ%2$d-ൽ %1$d à´ªàµà´°à´¤àµ€à´•à´™àµà´™àµ¾ നൽകിഅകàµà´·à´° പരിധി, %2$d-ൽ %1$d കവിഞàµà´žàµà´Ÿàµ†à´•àµâ€Œà´¸àµâ€Œà´±àµà´±àµ മായàµâ€Œà´•àµà´•àµà´•പിശകàµà´¡àµà´°àµ‹à´ªàµà´ªàµâ€Œ ഡൗൺ മെനൠകാണികàµà´•àµà´•ഡയലോഗൠà´à´•àµà´•ൺടാബàµAM à´…à´²àµà´²àµ†à´™àµà´•ിൽ PM തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•%1$s മണിമണികàµà´•ൂർ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•%1$s മണിമിനിറàµà´±àµ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•%1$s മിനിറàµà´±àµAM‌സമയം നൽകàµà´¨àµà´¨à´¤à´¿à´¨àµ à´•àµà´²àµ‹à´•àµà´•ൠമോഡിലേകàµà´•ൠ‌മാറàµà´•.മണികàµà´•ൂരàµâ€à´®à´¿à´¨à´¿à´±àµà´±àµPMസമയം തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•സമയം നൽകàµà´¨àµà´¨à´¤à´¿à´¨àµ ടെകàµà´¸àµà´±àµà´±àµ ഇൻപàµà´Ÿàµà´Ÿàµ ‌മോ‌ഡിലേകàµà´•ൠ‌മാറàµà´•.à´ªàµà´¤à´¿à´¯ അറിയിപàµà´ªàµ%1$s നീകàµà´•à´‚ ചെയàµà´¯àµà´•%1$d-ലധികം à´ªàµà´¤à´¿à´¯ അറിയിപàµà´ªàµà´•ൾഅടàµà´¤àµà´¤ മാസതàµà´¤à´¿à´²àµ‡à´•àµà´•ൠമാറàµà´±àµà´•à´®àµà´®àµà´ªà´¤àµà´¤àµ† മാസതàµà´¤à´¿à´²àµ‡à´•àµà´•ൠമാറàµà´±àµà´•തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ ആരംà´à´¿à´•àµà´•àµà´¨àµà´¨ തീയതി: %1$s – തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ അവസാനികàµà´•àµà´¨àµà´¨ തീയതി: %2$sനിലവിൽ തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤à´¤àµ: %1$sà´’à´¨àµà´¨àµà´®à´¿à´²àµà´²à´±à´¦àµà´¦à´¾à´•àµà´•àµà´•à´¶à´°à´¿%1$sതീയതി തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ തീയതിദിവസതàµà´¤à´¿à´¨àµà´±àµ† കോളം: %1$sഅവസാനികàµà´•àµà´¨àµà´¨ തീയതി: %1$sഅസാധàµà´µà´¾à´¯ ഫോർമാറàµà´±àµ.ഉദാഹരണം: %1$s%1$s ഉപയോഗികàµà´•àµà´•അസാധàµà´µà´¾à´¯ à´¶àµà´°àµ‡à´£à´¿.നിലവിലെ വർഷം %1$d-ലേകàµà´•ൠമാറàµà´±àµà´•%1$d വർഷതàµà´¤à´¿à´²àµ‡à´•àµà´•ൠനാവിഗേറàµà´±àµ ചെയàµà´¯àµà´•à´¶àµà´°àµ‡à´£à´¿à´•àµà´•ൠപàµà´±à´¤àµà´¤à´¾à´£àµ: %1$sആരംà´à´¿à´•àµà´•àµà´¨àµà´¨ തീയതി – %1$s%1$s – അവസാനികàµà´•àµà´¨àµà´¨ തീയതി%1$s – %2$sà´¶àµà´°àµ‡à´£à´¿ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•ആരംà´à´¿à´•àµà´•àµà´¨àµà´¨ തീയതി – അവസാനികàµà´•àµà´¨àµà´¨ തീയതിസംരകàµà´·à´¿à´•àµà´•àµà´•ആരംà´à´¿à´•àµà´•àµà´¨àµà´¨ തീയതി: %1$sതീയതിഅവസാനികàµà´•àµà´¨àµà´¨ തീയതിആരംà´à´¿à´•àµà´•àµà´¨àµà´¨ തീയതിdmyഇനàµà´¨àµ %1$sകലണàµà´Ÿàµ¼ ഇൻപàµà´Ÿàµà´Ÿàµ മോഡിലേകàµà´•ൠമാറàµà´•കലണàµà´Ÿàµ¼ കാഴàµâ€Œà´šà´¯à´¿à´²àµ‡à´•àµà´•ൠമാറാൻ ടാപàµà´ªàµ ചെയàµà´¯àµà´•ടെകàµâ€Œà´¸àµâ€Œà´±àµà´±àµ ഇൻപàµà´Ÿàµà´Ÿàµ മോഡിലേകàµà´•ൠമാറàµà´•വർഷ കാഴàµâ€Œà´šà´¯à´¿à´²àµ‡à´•àµà´•ൠമാറാൻ ടാപàµà´ªàµ ചെയàµà´¯àµà´•റദàµà´¦à´¾à´•àµà´•àµà´•ശരിപാസàµâ€Œà´µàµ‡à´¡àµ കാണികàµà´•àµà´•
+ - නව දà·à¶±à·”ම්දීම් %dà¶šà·Š
+ - නව දà·à¶±à·”ම්දීම් %dà¶šà·Š
+ පහළම à¶´à¶à·Šâ€à¶»à¶º හකුළන්නපහළම à¶´à¶à·Šâ€à¶»à¶º දිග හරින්නඅඩක් දිග හරින්නඇදීම් à·„à·à¶¬à¶½à¶º දෙවරක් à¶à¶§à·Šà¶§à·” à¶šà¶» ඇà¶à·„à·à¶¬à¶½à¶º අදින්නඅනුලකුණු %2$dන් %1$dà¶šà·Š ඇà¶à·”à·…à·” කෙරිණිඅනුලකුණු සීමà·à·€ %2$dකින් %1$d ඉක්ම වියපෙළ හිස් කරන්නදà·à·‚යපà¶à¶± මෙනුව පෙන්වන්නසංවà·à¶¯ නිරූපකයටà·à¶¶à¶ºà¶´à·™à¶»à·€à¶»à·” හ෠පස්වරු à¶à·à¶»à¶±à·Šà¶±à¶´à·à¶º %1$sà¶šà·Šà¶´à·à¶º à¶à·à¶»à¶±à·Šà¶±%1$sයිමිනිà¶à·Šà¶à·” à¶à·à¶»à¶±à·Šà¶±à¶¸à·’නිà¶à·Šà¶à·” %1$sයිපෙවවේල෠ආදà·à¶±à¶º සඳහ෠ඔරලà·à·ƒà·” à¶´à·Šâ€à¶»à¶šà·à¶»à¶º වෙචමà·à¶»à·” වෙන්න.à¶´à·à¶ºà¶¸à·’නිà¶à·Šà¶à·”පවවේලà·à·€ à¶à·à¶»à¶±à·Šà¶±à·€à·šà¶½à· ආදà·à¶±à¶º සඳහ෠ආදà·à¶± à¶´à·Šâ€à¶»à¶šà·à¶»à¶º වෙචමà·à¶»à·” වෙන්න.නව දà·à¶±à·”ම්දීම%1$s ඉවà¶à·Š කරන්නනව දà·à¶±à·”ම්දීම් %1$dà¶šà¶§ වඩà·à¶½à¶¶à¶± මà·à·ƒà¶ºà¶§ වෙනස් කරන්නකලින් මà·à·ƒà¶ºà¶§ වෙනස් කරන්නආරම්භක දිනය à¶à·šà¶»à·“ම: %1$s – අවසà·à¶± දිනය à¶à·šà¶»à·“ම: %2$sà·€à¶à·Šà¶¸à¶±à·Š à¶à·šà¶»à·“ම: %1$sකිසිවක් à¶±à·à¶à¶…වලංගු කරන්නහරි%1$sදිනය à¶à·à¶»à¶±à·Šà¶±à¶à·šà¶»à·– දිනයදින à¶à·“රුව: %1$sඅවසà·à¶± දිනය %1$sඅවලංගු ආකෘà¶à·’යකි.උදà·à·„රණය: %1$sà¶·à·à·€à·’à¶à¶º: %1$sඅවලංගු à¶´à¶»à·à·ƒà¶ºà¶šà·’.à·€à¶à·Šà¶¸à¶±à·Š වර්ෂය %1$d වෙචසංචà·à¶½à¶±à¶º කරන්න%1$d වසරට සංචà·à¶½à¶±à¶º කරන්නපරà·à·ƒà¶ºà·™à¶±à·Š à¶´à·’à¶§à¶: %1$sආරම්භක දිනය – %1$s%1$s – නිම෠වන දිනය%1$s – %2$sà¶´à¶»à·à·ƒà¶º à¶à·à¶»à¶±à·Šà¶±à¶†à¶»à¶¸à·Šà¶·à¶š දිනය – නිම෠වන දිනයසුරකින්නආරම්භක දිනය %1$sදිනයනිම෠වන දිනයආරම්භක දිනයදමවඅද %1$sදින දර්à·à¶± ආදà·à¶± à¶´à·Šâ€à¶»à¶šà·à¶»à¶ºà¶§ මà·à¶»à·” වන්නදින දර්à·à¶± දසුන වෙචමà·à¶»à·” වීමට à¶à¶§à·Šà¶§à·” කරන්නපෙළ ආදà·à¶± à¶´à·Šâ€à¶»à¶šà·à¶»à¶ºà¶§ මà·à¶»à·” වන්නවසරේ දසුන වෙචමà·à¶»à·” වීමට à¶à¶§à·Šà¶§à·” කරන්නඅවලංගු කරන්නහරිමුරපදය පෙන්වන්න
+ - %d notificació nova
+ - %d notificacions noves
+ Replega el full inferiorDesplega el full inferiorDesplega fins a la meitatHas fet doble toc a l\'ansa per arrossegarAnsa per arrossegarCarà cters introduïts: %1$d de %2$dS\'ha superat el lÃmit de carà cters (%1$d de %2$d)Esborra el textErrorMostra el menú desplegableIcona del quadre de dià legTabuladorSelecciona a. m. o p. m.%1$s horesSeleccioneu l\'hora%1$s en puntSelecciona els minuts%1$s minutsa. m.Canvia al mode de rellotge per introduir l\'hora.HoraMinutp. m.Selecció de l\'horaCanvia al mode d\'introducció de text per introduir l\'hora.Notificació novaSuprimeix %1$sMés de %1$d notificacions novesCanvia al mes següentCanvia al mes anteriorSelecció de la data d\'inici: %1$s – Selecció de la data de finalització: %2$sSelecció actual: %1$scapCancel·laD’acord%1$sSelecciona una dataData seleccionadaColumna de dies: %1$sData de finalització: %1$sEl format no és và lid.Exemple: %1$sUtilitza: %1$sL\'interval no és và lid.Navega fins a l\'any actual %1$dCanvia a l\'any %1$dLa data està fora de l\'interval: %1$sData d\'inici - %1$s%1$s - data de finalització%1$s - %2$sSelecciona un intervalData d\'inici - data de finalitzacióDesaData d\'inici: %1$sDataData de finalitzacióData d\'inicidmaAvui, dia %1$sCanvia al mode d\'introducció de dades del calendariToca per canviar a la visualització de calendariCanvia al mode d\'introducció de textToca per canviar a la visualització d\'anyCancel·laD’acordMostra la contrasenya
+ - %d اعلان جدید
+ - %d اعلان جدید
+ جمع کردن برگ زیرینازهم بازکردن برگ زیرینگسترده کردن تا نیمهروی دستگیره کشاندن دوضربه زده شددستگیره کشاندننویسه‌های واردشده %1$d از %2$dÙ…ØØ¯ÙˆØ¯ÛŒØª نویسه از ØØ¯ مجاز %1$d از %2$d بیشتر شده استپاک کردن نوشتارخطانمایش منوی کرکره‌اینماد کادر Ú¯ÙØªÚ¯ÙˆØ¨Ø±Ú¯Ù‡Ø§Ù†ØªØ®Ø§Ø¨ .Ù‚.ظ. یا ب.ظ.%1$s ساعتانتخاب ساعتساعت %1$sانتخاب دقیقه%1$s دقیقهق.ظبرای وارد کردن زمان، به ØØ§Ù„ت ساعت تغییر وضعیت دهید.ساعتدقیقهب.ظانتخاب زمانبرای وارد کردن زمان، به ØØ§Ù„ت ورودی نوشتاری تغییر وضعیت دهید.اعلان جدیدبرداشتن %1$sبیش از %1$d اعلان جدیدتغییر به ماه بعدیتغییر به ماه قبلیتاریخ شروع انتخاب‌شده: %1$s – تاریخ پایان انتخاب‌شده: %2$sانتخاب کنونی: %1$sخالیلغوتأیید%1$sانتخاب تاریختاریخ انتخابیستون روز: %1$sتاریخ پایان: %1$sقالب نامعتبر است.مثال: %1$sقالب: %1$sÙ…ØØ¯ÙˆØ¯Ù‡ نامعتبر است.پیمایش به سال ÙØ¹Ù„ÛŒ %1$dØ±ÙØªÙ† به سال %1$dخارج از Ù…ØØ¯ÙˆØ¯Ù‡: %1$sتاریخ شروع – %1$s%1$s – تاریخ پایان%1$s – %2$sانتخاب Ù…ØØ¯ÙˆØ¯Ù‡ØªØ§Ø±ÛŒØ® شروع – تاریخ پایانذخیرهتاریخ شروع: %1$sتاریختاریخ پایانتاریخ شروعdmyامروز %1$sØ±ÙØªÙ† به روش ورودی تقویمبرای Ø±ÙØªÙ† به نمای «تقویم» ضربه Ø¨Ø²Ù†ÛŒØ¯Ø±ÙØªÙ† به ØØ§Ù„ت ورودی نوشتاریبرای Ø±ÙØªÙ† به نمای سال ضربه بزنیدلغوتأییدنمایش گذرواژه
+ - %d નવà«àª‚ નોટિફિકેશન
+ - %d નવા નોટિફિકેશન
+ બોટમ શીટ નાની કરોબોટમ શીટ મોટી કરોઅડધે સà«àª§à«€ મોટà«àª‚ કરોઑબà«àªœà«‡àª•à«àªŸ ખેંચવાના હૅનà«àª¡àª² પર બે વાર ટૅપ કરà«àª¯à«àª‚ઑબà«àªœà«‡àª•à«àªŸ ખેંચવાનà«àª‚ હૅનà«àª¡àª²%2$dમાંથી %1$d અકà«àª·àª°à«‹ દાખલ કરà«àª¯àª¾%2$dમાંથી %1$dની વરà«àª£ મરà«àª¯àª¾àª¦àª¾ ઓળંગાઈ ગઈ છેટેકà«àª¸à«àªŸ સાફ કરોàªà«‚લડà«àª°à«‰àªªàª¡àª¾àª‰àª¨ મેનૂ બતાવોસંવાદનà«àª‚ આઇકનટૅબAM અથવા PM પસંદ કરો%1$s કલાકસમય પસંદ કરો%1$s વાગà«àª¯àª¾ છેમિનિટ પસંદ કરો%1$s મિનિટAMસમય દાખલ કરવા માટે ઘડિયાળ મોડમાં સà«àªµàª¿àªš કરો.કલાકમિનિટPMસમય પસંદ કરોસમય દાખલ કરવા માટે ટેકà«àª¸à«àªŸ ઇનપà«àªŸ મોડમાં સà«àªµàª¿àªš કરો.નવà«àª‚ નોટિફિકેશન%1$s કાઢી નાખો%1$dથી વધૠનવા નોટિફિકેશનઆગલા મહિના પર બદલોપાછલા મહિના પર બદલોપà«àª°àª¾àª°àª‚ઠતારીખની પસંદગી: %1$s – સમાપà«àª¤àª¿ તારીખની પસંદગી: %2$sહાલની પસંદગી: %1$sકોઈ નહીંરદ કરોઓકે%1$sતારીખ પસંદ કરોપસંદ કરેલી તારીખદિવસોની કૉલમ: %1$sસમાપà«àª¤àª¿ તારીખ %1$sઅમાનà«àª¯ ફોરà«àª®à«‡àªŸ.ઉદાહરણ: %1$sઆનો ઉપયોગ કરો: %1$sઅમાનà«àª¯ શà«àª°à«‡àª£à«€.ચાલૠવરà«àª· %1$d પર નૅવિગેટ કરો%1$dના વરà«àª· પર નૅવિગેટ કરોઆ શà«àª°à«‡àª£à«€àª¨à«€ બહાર છે: %1$sશરૂ કરવાની તારીખ – %1$s%1$s – સમાપà«àª¤àª¿àª¨à«€ તારીખ%1$s – %2$sશà«àª°à«‡àª£à«€ પસંદ કરોશરૂ કરવાની તારીખ – સમાપà«àª¤àª¿àª¨à«€ તારીખસાચવોપà«àª°àª¾àª°àª‚ઠતારીખ %1$sતારીખસમાપà«àª¤àª¿àª¨à«€ તારીખશરૂ કરવાની તારીખdmyઆજે %1$sકૅલેનà«àª¡àª° ઇનપà«àªŸ મોડ પર સà«àªµàª¿àªš કરોCalendar વà«àª¯à«‚ પર સà«àªµàª¿àªš કરવા માટે ટૅપ કરોટેકà«àª¸à«àªŸ ઇનપà«àªŸ મોડ પર સà«àªµàª¿àªš કરોવરà«àª· વà«àª¯à«‚ પર સà«àªµàª¿àªš કરવા માટે ટૅપ કરોરદ કરોઓકેપાસવરà«àª¡ બતાવો
+ - %d jakinarazpen berri
+ - %d jakinarazpen berri
+ Tolestu pantailaren behealdean ainguratutako orriaZabaldu pantailaren behealdean ainguratutako orriaZabaldu erdirainoBirritan sakatu da arrastatzeko kontrol-puntuaArrastatzeko kontrol-puntua%1$d/%2$d karaktere idatzi diraKaraktere-muga gainditu da: %1$d/%2$dGarbitu testuaErroreaErakutsi goitibeherako menuaLeihoko ikonoaFitxaHautatu AM edo PM%1$s orduHautatu ordua%1$s(r)ak diraHautatu minutuak%1$s minutuAMAldatu erloju modura ordua zehazteko.OrduaMinutuaPMHautatu orduaOrdua idazteko, aldatu testua idazteko metodora.Jakinarazpen berriaKendu %1$s%1$d jakinarazpen berri baino gehiagoAldatu hurrengo hilabeteraAldatu aurreko hilabeteraHasiera-dataren hautapena: %1$s, amaiera-dataren hautapena: %2$sOraingo hautapena: %1$sbat ere ezUtziAdos%1$sHautatu dataHautatutako dataEgunen zutabea:%1$sAmaiera-data: %1$sFormatuak ez du balio.Adibidea: %1$sErabili: %1$sTarteak ez du balio.Joan aurtengo ikuspegira %1$dJoan %1$d. urteraOnartutako barrutitik kanpo: %1$sHasiera-data – %1$s%1$s – Amaiera-data%1$s-%2$sHautatu barrutiaHasiera-data - Amaiera-dataGordeHasiera-data: %1$sDataAmaiera-dataHasiera-dataehuGaur %1$sAldatu egutegiaren idazketa-metodoraCalendar-en ikuspegira aldatzeko, sakatu hauAldatu testua idazteko moduraUrteko ikuspegira aldatzeko, sakatu hauUtziAdosErakutsi pasahitza
+ - %d కొతà±à°¤ నోటిఫికేషనà±
+ - %d కొతà±à°¤ నోటిఫికేషనà±â€Œà°²à±
+ దిగà±à°µà±à°¨ ఉనà±à°¨ షీటà±â€Œà°¨à± à°•à±à°¦à°¿à°¸à±à°¤à±à°‚దిదిగà±à°µà±à°¨ ఉనà±à°¨ షీటà±â€Œà°¨à± విసà±à°¤à°°à°¿à°¸à±à°¤à±à°‚దిసగానà±à°¨à°¿ విసà±à°¤à°°à°¿à°‚పజేయండిలాగే à°¹à±à°¯à°¾à°‚డిలౠడబà±à°²à±-à°Ÿà±à°¯à°¾à°ªà± చేయబడిందిలాగే à°¹à±à°¯à°¾à°‚à°¡à°¿à°²à±%2$dలో %1$d à°…à°•à±à°·à°°à°¾à°²à± నమోదౠచేయబడà±à°¡à°¾à°¯à°¿à°…à°•à±à°·à°° పరిధి %2$dలో %1$dనౠఅధిగమించిందిరాసినదానà±à°¨à°¿ తీసివేయండిఎరà±à°°à°°à±à°¡à±à°°à°¾à°ªà±â€Œà°¡à±Œà°¨à± మెనూనౠచూపà±à°¡à±ˆà°²à°¾à°—à± à°šà°¿à°¹à±à°¨à°‚à°Ÿà±à°¯à°¾à°¬à±AM లేదా PMనౠఎంచà±à°•ోండి%1$s à°—à°‚à°Ÿà°²à±à°—ంటనౠఎంచà±à°•ోండి%1$s à°…à°µà±à°¤à±à°‚దినిమిషాలనౠఎంచà±à°•ోండి%1$s నిమిషాలà±AMసమయానà±à°¨à°¿ నమోదౠచేయడం కోసం గడియారం మోడà±â€Œà°•ౠమారండి.గంటనిమిషంPMసమయానà±à°¨à°¿ à°Žà°‚à°šà±à°•ోండిసమయానà±à°¨à°¿ నమోదౠచేయడం కోసం వచన నమోదౠమోడà±â€Œà°•à°¿ మారండి.కొతà±à°¤ నోటిఫికేషనà±(%1$s)ని తీసివేసà±à°¤à±à°‚ది%1$d కంటే à°Žà°•à±à°•à±à°µ కొతà±à°¤ నోటిఫికేషనà±â€Œà°²à±à°µà°šà±à°šà±‡ నెలకౠమారà±à°šà±à°¤à±à°‚దిమà±à°¨à±à°ªà°Ÿà°¿ నెలకౠమారà±à°šà±à°¤à±à°‚దిపà±à°°à°¾à°°à°‚ఠతేదీ ఎంపిక: %1$s – à°®à±à°—ింపౠతేదీ ఎంపిక: %2$sà°ªà±à°°à°¸à±à°¤à±à°¤ ఎంపిక: %1$sà°à°¦à±€ వదà±à°¦à±à°°à°¦à±à°¦à± చేయండిసరే%1$sతేదీని à°Žà°‚à°šà±à°•ోండిఎంచà±à°•à±à°¨à±à°¨ తేదిరోజà±à°² నిలà±à°µà± వరà±à°¸: %1$sà°®à±à°—ింపౠతేదీ %1$sఫారà±à°®à°¾à°Ÿà± చెలà±à°²à°¦à±.ఉదాహరణ: %1$sఇలా ఉపయోగించండి: %1$sచెలà±à°²à°¨à°¿ పరిధి.à°ªà±à°°à°¸à±à°¤à±à°¤ సంవతà±à°¸à°°à°¾à°¨à°¿à°•à°¿ %1$d నావిగేటౠచేయండి%1$dసంవతà±à°¸à°°à°¾à°¨à°¿à°•à°¿ నావిగేటౠచేసà±à°¤à±à°‚దిపరిధి వెలà±à°ªà°² ఉంది: %1$sà°ªà±à°°à°¾à°°à°‚ఠతేదీ – %1$s%1$s – à°®à±à°—ింపౠతేది%1$s – %2$sపరిధిని à°Žà°‚à°šà±à°•ోండిపà±à°°à°¾à°°à°‚ఠతేది - à°®à±à°—ింపౠతేదిసేవౠచేయండిపà±à°°à°¾à°°à°‚ఠతేదీ %1$sతేదీమà±à°—ింపౠతేదీపà±à°°à°¾à°°à°‚ఠతేదీరోనెసంఈరోజౠ%1$sà°•à±à°¯à°¾à°²à±†à°‚డరౠఇనà±â€Œà°ªà±à°Ÿà± మోడà±â€Œà°•ౠమారà±à°¸à±à°¤à±à°‚దికà±à°¯à°¾à°²à±†à°‚డరౠవీకà±à°·à°£à°•ౠమారడానికి à°Ÿà±à°¯à°¾à°ªà± చేయండివచన ఇనà±â€Œà°ªà±à°Ÿà± మోడà±â€Œà°•ౠమారà±à°¸à±à°¤à±à°‚దిసంవతà±à°¸à°° వీకà±à°·à°£à°•ౠమారడానికి à°Ÿà±à°¯à°¾à°ªà± చేయండిరదà±à°¦à± చేయండిసరేపాసà±â€Œà°µà°°à±à°¡à±â€Œà°¨à± చూపà±
+ - %d novo obvestilo
+ - %d novi obvestili
+ - %d nova obvestila
+ - %d novih obvestil
+ Strnitev razdelka na dnu zaslonaRazÅ¡iritev razdelka na dnu zaslonaRazÅ¡irjanje na pol viÅ¡ineDvakrat dotaknjena roÄica za vleÄenjeRoÄica za vleÄenjeÅ tevilo vnesenih znakov je %1$d od %2$dOmejitev Å¡tevila znakov je presegla %1$d od %2$dIzbris besedilaNapakaPrikaz spustnega menijaIkona pogovornega oknaZavihekIzberite dopoldanski ali popoldanski Äas.%1$s hIzberite uro%1$sIzberite minute%1$s mindop.Preklopite na naÄin ure, da vnesete Äas.UraMinutapop.Izberite uroPreklopite na naÄin za vnaÅ¡anje besedila, da vnesete Äas.Novo obvestiloOdstranite %1$sVeÄ kot toliko novih obvestil: %1$dSpremeni na naslednji mesecSpremeni na prejÅ¡nji mesecIzbira zaÄetnega datuma: %1$s – Izbira konÄnega datuma: %2$sTrenutna izbira: %1$sbrezPrekliÄiV redu%1$sIzberite datumIzbrani datumStolpec dni: %1$sKonÄni datum %1$sNeveljavna oblika.Primer: %1$sUporabite: %1$sNeveljaven razpon.Pomik na trenutno leto %1$dPomik na leto %1$dZunaj razpona: %1$sZaÄetni datum–%1$s%1$s–konÄni datum%1$s–%2$sIzberite obsegZaÄetni datum–konÄni datumShraniZaÄetni datum %1$sDatumKonÄni datumZaÄetni datumdmlDanes %1$sPreklop na naÄin vnosa v koledarDotaknite se za preklop na pogled koledarjaPreklop na naÄin vnosa besedilaDotaknite se za preklop na pogled letaPrekliÄiV reduPrikaz gesla
+ - %d nuova notifica
+ - %d nuove notifiche
+ Comprimi riquadro inferioreEspandi riquadro inferioreEspandi a metà Doppio tocco su punto di trascinamentoPunto di trascinamento%1$d caratteri inserirti su %2$dSono presenti %2$d caratteri in più rispetto al limite di %1$dCancella testoErroreMostra il menu a discesaIcona della finestra di dialogoSchedaSeleziona AM o PM%1$s oreSeleziona l\'ora%1$s in puntoSeleziona i minuti%1$s minutiamPassa alla modalità orologio per inserire l\'ora.OraMinutopmSeleziona l\'oraPassa alla modalità di immissione testo per inserire l\'ora.Nuova notificaRimuovi %1$sPiù di %1$d nuove notifichePassa al mese successivoPassa al mese precedenteSelezione della data di inizio: %1$s. Selezione della data di fine: %2$sSelezione attuale: %1$sNessuna selezioneAnnullaOK%1$sSeleziona dataData selezionataColonna dei giorni: %1$sData di fine: %1$sFormato non valido.Esempio: %1$sUsa: %1$sIntervallo non valido.Vai all\'anno corrente %1$dVai all\'anno %1$dNon compresa nell\'intervallo: %1$sData di inizio - %1$s%1$s - Data di fine%1$s - %2$sSeleziona intervalloData di inizio - Data di fineSalvaData di inizio: %1$sDataData di fineData di iniziogmaOggi %1$sPassa alla modalità di immissione CalendarioTocca per passare alla visualizzazione CalendarioPassa alla modalità di immissione TestoTocca per passare alla visualizzazione AnnoAnnullaOKMostra password
+ - %d jaunu paziņojumu
+ - %d jauns paziņojums
+ - %d jauni paziņojumi
+ Sakļaut ekrÄna apakÅ¡daļas lapuIzvÄ“rst ekrÄna apakÅ¡daļas lapuIzvÄ“rst lÄ«dz puseiTika veikts dubultskÄriens uz vilkÅ¡anas turaVilkÅ¡anas turisIevadÄ«tÄs rakstzÄ«mes: %1$d no %2$dPÄrsniegts rakstzÄ«mju skaita ierobežojums (%1$d no %2$d)NotÄ«rÄ«t tekstuKļūdaRÄdÄ«t nolaižamo izvÄ“lniDialoglodziņa ikonaCilneAtlasiet “AM†(priekÅ¡pusdienÄ) vai “PM†(pÄ“cpusdienÄ).%1$s stundasAtlasiet stunduplkst. %1$sAtlasiet minÅ«tes.%1$s minAMLai ievadÄ«tu laiku, ieslÄ“dziet pulksteņa režīmu.StundaMinÅ«tePMLaika atlasīšanaLai ievadÄ«tu laiku, ieslÄ“dziet teksta ievades režīmu.Jauns paziņojumsNoņemt: %1$sVairÄk nekÄ %1$d jauni paziņojumiPÄriet uz nÄkamo mÄ“nesiPÄriet uz iepriekšējo mÄ“nesiSÄkuma datuma atlase: %1$s; beigu datuma atlase: %2$sPaÅ¡reizÄ“jÄ atlase: %1$snavAtceltLabi%1$sAtlasiet datumuAtlasÄ«tais datumsDienu sleja: %1$sBeigu datums: %1$sNederÄ«gs formÄts.PiemÄ“rs: %1$sIzmantojiet: %1$sNederÄ«gs diapazons.PÄriet uz paÅ¡reizÄ“jo gadu (%1$d)PÄriet uz Å¡o gadu: %1$dÄ€rpus diapazona: %1$sSÄkuma datums–%1$s%1$s–beigu datums%1$s–%2$sAtlasiet diapazonuSÄkuma datums–beigu datumsSaglabÄtSÄkuma datums: %1$sDatumsBeigu datumsSÄkuma datumsdmgÅ odien (%1$s)PÄrslÄ“gties uz kalendÄra ievades režīmuPieskarieties, lai pÄrslÄ“gtos uz KalendÄra skatuPÄrslÄ“gties uz teksta ievades režīmuPieskarieties, lai pÄrslÄ“gtos uz gada skatuAtceltLabiRÄdÄ«t paroli
+ - %d notificación nova
+ - %d notificacións novas
+ Contrae o panel inferiorDesprega o panel inferiorDespregar ata a metadeControlador de arrastre tocado dúas vecesControlador de arrastreIntroducÃronse %1$d caracteres de %2$dIntroducÃronse %1$d caracteres, pero o lÃmite é de %2$dBorra textoProduciuse un erroMostra o menú despregableIcona de cadro de diálogoPestanaSeleccionar a.m. ou p.m.%1$s horasSeleccionar hora%1$s en puntoSeleccionar minutos%1$s minutosa.m.Cambiar ao modo de reloxo para introducir a hora.HoraMinutop.m.Seleccionar horaCambia ao modo de introdución de texto para introducir a hora.Notificación novaQuita %1$sMáis de %1$d notificacións novasCambiar ao mes seguinteCambiar ao mes anteriorSelección de data de inicio: %1$s - Selección de data de finalización: %2$sSelección actual: %1$sningunhaCancelarAceptar%1$sSelecciona unha dataData seleccionadaColumna de dÃas: %1$sData de finalización: %1$sO formato non é válido.Exemplo: %1$sUsa este formato: %1$sO intervalo de datas non é válido.Ir ao ano actual (%1$d)Ir ao ano %1$dSó se admiten datas do intervalo: %1$sData de inicio - %1$s%1$s - data de finalización%1$s - %2$sSelecciona un intervalo de datasData de inicio - data de finalizaciónGardarData de inicio: %1$sDataData de finalizaciónData de iniciodmaHoxe (%1$s)Cambiar ao modo de entrada de calendarioTocar para cambiar á vista de calendarioCambiar ao modo de introdución de textoTocar para cambiar á vista de anoCancelarAceptarMostra o contrasinal4dp18dp40dp2dp2dp40dp40dp4dp
+ - %d æ¡æ–°é€šçŸ¥
+ - %d æ¡æ–°é€šçŸ¥
+ 收起底部动作æ¡å±•开底部动作æ¡å±•开到一åŠé«˜åº¦æ‹–动手柄被点按两次拖动手柄输入了 %1$d 个å—符(上é™ä¸º %2$d 个)超出å—符数é™åˆ¶ï¼ˆå…± %1$d 个,上é™ä¸º %2$d 个)清除文å—错误显示下拉èœå•å¯¹è¯æ¡†å›¾æ ‡æ ‡ç¾é¡µé€‰æ‹©ä¸Šåˆæˆ–下åˆ%1$s å°æ—¶é€‰æ‹©å°æ—¶%1$s 点选择分钟%1$s 分上åˆåˆ‡æ¢åˆ°æ—¶é’Ÿæ¨¡å¼æ¥è¾“å…¥æ—¶é—´ã€‚å°æ—¶åˆ†é’Ÿä¸‹åˆé€‰æ‹©æ—¶é—´åˆ‡æ¢åˆ°æ–‡å—è¾“å…¥æ¨¡å¼æ¥è¾“入时间。新通知移除%1$s有 %1$d æ¡ä»¥ä¸Šçš„æ–°é€šçŸ¥è½¬åˆ°ä¸‹ä¸ªæœˆè½¬åˆ°ä¸Šä¸ªæœˆå¼€å§‹æ—¥æœŸé€‰æ‹©ï¼š%1$s – ç»“æŸæ—¥æœŸé€‰æ‹©ï¼š%2$s当å‰çš„选择是:%1$sæ— å–æ¶ˆç¡®å®š%1$sè¯·é€‰æ‹©æ—¥æœŸé€‰å®šçš„æ—¥æœŸè¡¨ç¤ºå‘¨å‡ çš„åˆ—ï¼š%1$sç»“æŸæ—¥æœŸ %1$sæ ¼å¼æ— 效。示例:%1$s使用:%1$sèŒƒå›´æ— æ•ˆã€‚è½¬åˆ°ä»Šå¹´%1$d转到 %1$d å¹´ä¸åœ¨å…许的范围内:%1$s开始日期 – %1$s%1$s – ç»“æŸæ—¥æœŸ%1$s - %2$s请选择范围开始日期 - ç»“æŸæ—¥æœŸä¿å˜å¼€å§‹æ—¥æœŸ %1$sæ—¥æœŸç»“æŸæ—¥æœŸå¼€å§‹æ—¥æœŸdmy今天%1$s切æ¢åˆ°æ—¥åŽ†è¾“å…¥æ¨¡å¼ç‚¹æŒ‰å³å¯åˆ‡æ¢åˆ°æ—¥åŽ†è§†å›¾åˆ‡æ¢åˆ°æ–‡æœ¬å—段输入模å¼ç‚¹æŒ‰å³å¯åˆ‡æ¢åˆ°å¹´è§†å›¾å–消确定显示密ç
+ - %d አዲስ ማሳወቂያዎች
+ - %d አዲስ ማሳወቂያዎች
+ የáŒáˆáŒŒ ሉáˆáŠ• á‹áˆ°á‰¥áˆµá‰¡á‹¨áŒáˆáŒŒ ሉáˆáŠ• á‹á‹˜áˆáŒ‰áŒáˆ›áˆ½ መንገድ ዘáˆáŒ‹áˆ˜á‹«á‹£ á‹áŒŽá‰µá‰± áˆáˆˆá‰´ መታ ተደáˆáŒ“áˆáˆ˜á‹«á‹£ á‹áŒŽá‰µá‰±á‰áˆáŠá‹Žá‰½ %1$d ከ%2$d ገብተዋáˆá‹¨á‰áˆáŠ áŒˆá‹°á‰¥ %1$d ከ%2$d አáˆááˆáŒ½áˆ‘áን አጽዳስህተትተቆáˆá‰‹á‹ áˆáŠ“áˆŒáŠ• አሳá‹á‹¨áŠ•áŒáŒáˆ አዶትáˆAM ወá‹áˆ PM á‹áˆáˆ¨áŒ¡%1$s ሰዓታትሰዓትን á‹áˆáˆ¨áŒ¡%1$s ሰዓትደቂቃዎችን á‹áˆáˆ¨áŒ¡%1$s ደቂቃዎችጥዋትለጊዜ áŒá‰¤á‰± ወደ የሰዓት áˆáŠá‰³ ቀá‹áˆá¢áˆ°á‹“ትደቂቃከሰዓትጊዜ áˆáˆ¨áŒ¥áˆˆáŒŠá‹œ áŒá‰¤á‰± ወደ የጽሑá áŒá‰¤á‰µ áˆáŠá‰³ ቀá‹áˆá¢áŠ á‹²áˆµ ማሳወቂያ%1$sን አስወáŒá‹µáЍ%1$d በላዠአዲስ ማሳወቂያዎችወደ የሚቀጥለዠወሠቀá‹áˆá‹ˆá‹° ቀዳሚዠወሠቀá‹áˆá‹¨áˆ˜áŒ€áˆ˜áˆªá‹« ቀን áˆáˆáŒ«á¦ %1$s – የማብቂያ ቀን áˆáˆáŒ«á¦ %2$sየአáˆáŠ‘ áˆáˆáŒ«á¦ %1$sáˆáŠ•áˆá‹á‰…áˆáŠ¥áˆº%1$sቀን á‹áˆáˆ¨áŒ¡á‹¨á‰°áˆ˜áˆ¨áŒ ዠቀንየቀኖች á‹“áˆá‹µá¦ %1$sየማብቂያ ቀን %1$sáˆáŠ á‹«áˆáˆ†áŠ á‰…áˆáŒ¸á‰µáˆáˆ³áˆŒá¦ %1$s%1$s ን á‹áŒ ቀሙáˆáŠ á‹«áˆáŠ¾áŠ áŠáˆáˆá¢á‹ˆá‹° የአáˆáŠ‘ ዓመት %1$d አስስወደ ዓመት %1$d አሰስከáŠáˆáˆ á‹áŒá¦ %1$sመጀመሪያ ቀን – %1$s%1$s – መጨረሻ ቀን%1$s – %2$sáŠáˆáˆ á‹áˆáˆ¨áŒ¡á‹¨áˆ˜áŒ€áˆ˜áˆªá‹« ቀን – የመጨረሻ ቀንአስቀáˆáŒ¥á‹¨áˆ˜áŒ€áˆ˜áˆªá‹« ቀን %1$sቀንየማብቂያ ቀንመጀመሪያ ቀንቀደዓዛሬ %1$sወደ የቀን መá‰áŒ ሪያ áŒá‰¤á‰µ áˆáŠá‰³ ቀá‹áˆá‹ˆá‹° የቀን መá‰áŒ ሪያ እá‹á‰³ ለመቀየሠመታ ያድáˆáŒ‰á‹ˆá‹° ጽáˆá áŒá‰¤á‰µ áˆáŠá‰³ ቀá‹áˆá‹ˆá‹° የዓመት እá‹á‰³ ለመቀየሠመታ ያድáˆáŒ‰á‹á‰…áˆáŠ¥áˆºá‹¨á‹áˆˆá ቃሠአሳá‹
+ - %d notifikasi baru
+ - %d notifikasi baru
+ Menciutkan sheet bawahMeluaskan sheet bawahLuaskan setengahHandel geser diketuk dua kaliHandel geserKarakter yang dimasukkan %1$d dari %2$dMelebihi batas karakter %1$d dari %2$dMenghapus teksErrorTampilkan menu dropdownIkon DialogTabPilih AM atau PM%1$s jamPilih jamPukul %1$sPilih menit%1$s menitAMBeralih ke mode jam untuk masukan waktu.JamMenitPMPilih waktuBeralih ke mode masukan teks untuk masukan waktu.Notifikasi baruMenghapus %1$sLebih dari %1$d notifikasi baruUbah ke bulan berikutnyaUbah ke bulan sebelumnyaPemilihan tanggal mulai: %1$s – Pemilihan tanggal akhir: %2$sPilihan saat ini: %1$stidak adaBatalOke%1$sPilih TanggalTanggal yang dipilihKolom hari: %1$sTanggal akhir %1$sFormat tidak valid.Contoh: %1$sGunakan: %1$sRentang tidak valid.Pilih tahun ini %1$dBuka tahun %1$dDi luar rentang: %1$sTanggal mulai – %1$s%1$s – Tanggal akhir%1$s – %2$sPilih RentangTanggal mulai – Tanggal akhirSimpanTanggal mulai %1$sTanggalTanggal akhirTanggal mulaihbtHari ini %1$sBeralih ke mode masukan kalenderKetuk untuk beralih ke tampilan KalenderBeralih ke mode masukan teksKetuk untuk beralih ke tampilan tahunBatalOkeTampilkan sandi
+ - %d uusi ilmoitus
+ - %d uutta ilmoitusta
+ Tiivistä alapaneeliLaajenna alapaneeliLaajenna puoliväliinVetokahvaa kaksoisnapautettuVetokahva%1$d/%2$d merkkiä kirjoitettuMerkkiraja ylitetty: %1$d/%2$dTyhjennä tekstiVirheNäytä avattava valikkoValintaikkunan kuvakeVälilehtiValitse AP tai IP%1$s tuntiaValitse tuntiklo %1$sValitse minuutit%1$s minuuttiaapVaihda ajan syöttämiseen kellotilassa.TunnitMinuuttiipValitse aikaVaihda ajan syöttämiseen tekstitilassa.Uusi ilmoitusPoista %1$sYli %1$d uutta ilmoitustaVaihda seuraavaan kuukauteenVaihda edelliseen kuukauteenAlkamispäivän valinta: %1$s – päättymispäivän valinta: %2$sNykyinen valinta: %1$s–PeruOK%1$sValitse päivämääräValittu päivämääräPäiväsarake: %1$sPäättyy %1$sVirheellinen muotoEsimerkki: %1$sKäytä muotoa %1$sVirheellinen alueSiirry kuluvaan vuoteen: %1$dSiirry vuoteen %1$dAikavälin ulkop.: %1$sAlkamispäivä – %1$s%1$s – päättymispäivä%1$s – %2$sValitse jaksoAlkamispäivä – päättymispäiväTallennaAlkaa %1$sPäivämääräPäättymispäiväAlkamispäiväpkvTänään: %1$sVaihda syöttötavaksi kalenteriSiirry kalenterinäkymään napauttamallaValitse syöttötavaksi tekstiSiirry vuosinäkymään napauttamallaPeruOKNäytä salasana64dp
+ - %d áƒáƒ®áƒáƒšáƒ˜ შეტყáƒáƒ‘ინებáƒ
+ - %d áƒáƒ®áƒáƒšáƒ˜ შეტყáƒáƒ‘ინებáƒ
+ ქვედრფურცლის ჩáƒáƒ™áƒ”ცვáƒáƒ¥áƒ•ედრფურცლის გáƒáƒ¨áƒšáƒáƒœáƒáƒ®áƒ”ვრáƒáƒ›áƒ“ე გáƒáƒ¤áƒáƒ თáƒáƒ”ბáƒáƒáƒ მáƒáƒ’ი შეხებრჩáƒáƒ•ლების სáƒáƒ®áƒ”ლურზესáƒáƒ®áƒ”ლური ჩáƒáƒ•ლებისთვისშეყვáƒáƒœáƒ˜áƒšáƒ˜áƒ %2$d-დáƒáƒœ %1$d სიმბáƒáƒšáƒáƒ’áƒáƒ“áƒáƒáƒáƒ ბებულირსიმბáƒáƒšáƒáƒ—რლიმიტი (%2$d-დáƒáƒœ %1$d)ტექსტის გáƒáƒ¡áƒ£áƒ¤áƒ—áƒáƒ•ებáƒáƒ¨áƒ”ცდáƒáƒ›áƒáƒ©áƒáƒ›áƒáƒ¡áƒáƒ¨áƒšáƒ”ლი მენიუს ჩვენებáƒáƒ“იáƒáƒšáƒáƒ’ის ხáƒáƒ¢áƒ£áƒšáƒáƒ©áƒáƒœáƒáƒ თიáƒáƒ˜áƒ ჩიეთ AM áƒáƒœ PM%1$s სáƒáƒáƒ—იáƒáƒ˜áƒ ჩიეთ სáƒáƒáƒ—ი%1$s სáƒáƒáƒ—იáƒáƒ˜áƒ ჩიეთ წუთები%1$s წუთიAMდრáƒáƒ˜áƒ¡ შეყვáƒáƒœáƒ˜áƒ¡áƒ—ვის სáƒáƒáƒ—ის რეჟიმზე გáƒáƒ“áƒáƒ თვáƒ.სáƒáƒáƒ—იწუთიPMáƒáƒ˜áƒ ჩიეთ დრáƒáƒ“რáƒáƒ˜áƒ¡ შეყვáƒáƒœáƒ˜áƒ¡áƒ—ვის ტექსტის შეყვáƒáƒœáƒ˜áƒ¡ რეჟიმზე გáƒáƒ“áƒáƒ თვáƒ.áƒáƒ®áƒáƒšáƒ˜ შეტყáƒáƒ‘ინებáƒ%1$s-ის áƒáƒ›áƒáƒ¨áƒšáƒ%1$d-ზე მეტი áƒáƒ®áƒáƒšáƒ˜ შეტყáƒáƒ‘ინებáƒáƒ¨áƒ”მდეგ თვეზე გáƒáƒ“áƒáƒ¡áƒ•ლáƒáƒ¬áƒ˜áƒœáƒ თვეზე გáƒáƒ“áƒáƒ¡áƒ•ლáƒáƒ“áƒáƒ¬áƒ§áƒ”ბის თáƒáƒ იღის შერჩევáƒ: %1$s – დáƒáƒ¡áƒ ულების თáƒáƒ იღის შერჩევáƒ: %2$sáƒáƒ›áƒŸáƒáƒ›áƒ˜áƒœáƒ“ელი áƒáƒ ჩევáƒáƒœáƒ˜: %1$sáƒáƒ ცერთიგáƒáƒ£áƒ¥áƒ›áƒ”ბáƒáƒ™áƒáƒ გი%1$sáƒáƒ˜áƒ ჩიეთ თáƒáƒ იღიáƒáƒ ჩეული თáƒáƒ იღიდღეების სვეტი: %1$sდáƒáƒ¡áƒ ულების თáƒáƒ იღი %1$sáƒáƒ áƒáƒ¡áƒ¬áƒáƒ ი ფáƒáƒ მáƒáƒ¢áƒ˜.მáƒáƒ’áƒáƒšáƒ˜áƒ—ი: %1$s%1$s-ის გáƒáƒ›áƒáƒ§áƒ”ნებáƒáƒ“იáƒáƒžáƒáƒ–áƒáƒœáƒ˜ áƒáƒ áƒáƒ¡áƒ¬áƒáƒ იáƒ.ნáƒáƒ•იგáƒáƒªáƒ˜áƒ მიმდინáƒáƒ ე წელზე (%1$d)%1$d წელზე ნáƒáƒ•იგáƒáƒªáƒ˜áƒáƒ“იáƒáƒžáƒáƒ–áƒáƒœáƒ¡ მიღმáƒ: %1$sდáƒáƒ¬áƒ§áƒ”ბის თáƒáƒ იღი - %1$s%1$s - დáƒáƒ¡áƒ ულების თáƒáƒ იღი%1$s - %2$sáƒáƒ˜áƒ ჩიეთ დიáƒáƒžáƒáƒ–áƒáƒœáƒ˜áƒ“áƒáƒ¬áƒ§áƒ”ბის თáƒáƒ იღი - დáƒáƒ¡áƒ ულების თáƒáƒ იღიშენáƒáƒ®áƒ•áƒáƒ“áƒáƒ¬áƒ§áƒ”ბის თáƒáƒ იღი %1$sთáƒáƒ იღიდáƒáƒ¡áƒ ულების თáƒáƒ იღიდáƒáƒ¬áƒ§áƒ”ბის თáƒáƒ იღიდწთწდღეს (%1$s)კáƒáƒšáƒ”ნდáƒáƒ ში შეყვáƒáƒœáƒ˜áƒ¡ რეჟიმზე გáƒáƒ“áƒáƒ თვáƒáƒ¨áƒ”ეხეთ კáƒáƒšáƒ”ნდრის ხედზე გáƒáƒ“áƒáƒ¡áƒáƒ თáƒáƒ•áƒáƒ“ტექსტის შეყვáƒáƒœáƒ˜áƒ¡ რეჟიმზე გáƒáƒ“áƒáƒ თვáƒáƒ¨áƒ”ეხეთ წლის ხედზე გáƒáƒ“áƒáƒ¡áƒáƒ თáƒáƒ•áƒáƒ“გáƒáƒ£áƒ¥áƒ›áƒ”ბáƒáƒ™áƒáƒ გიპáƒáƒ áƒáƒšáƒ˜áƒ¡ ჩვენებáƒ
+ - %d novo obavještenje
+ - %d nova obavještenja
+ - %d novih obavještenja
+ Sužavanje donje tabeleProÅ¡irivanje donje tabeleProÅ¡irivanje dopolaRuÄica za prevlaÄenje je dvaput dodirnutaRuÄica za prevlaÄenjeUneseno znakova: %1$d od %2$dOgraniÄenje broja znakova premaÅ¡uje %1$d od %2$dObriÅ¡i tekstGreÅ¡kaPrikaži padajući meniikona dijaloÅ¡kog okviraKarticaOdaberite prijepodne ili poslijepodne%1$s hOdaberite sat%1$s hOdaberite minute%1$s minAMPrebacite u naÄin rada kao sat za unos vremena.SatMinutaPMOdabir vremenaPrebacite u naÄin unosa teksta za unos vremena.Novo obavjeÅ¡tenjeUklonite %1$sBroj novih obavjeÅ¡tenja: viÅ¡e od %1$dPromijeni na sljedeći mjesecPromijeni na prethodni mjesecOdabir datuma poÄetka: %1$s – Odabir datuma zavrÅ¡etka: %2$sTrenutni izbor: %1$sniÅ¡taOtkažiUredu%1$sOdaberite datumOdabrani datumKolona za dane: %1$sDatum zavrÅ¡etka %1$sNevažeći format.Primjer: %1$sKoristi: %1$sNevažeći opseg.Odlazak na trenutnu godinu %1$dOdlazak na %1$d. godinuIzvan opsega: %1$sDatum poÄetka – %1$s%1$s – Datum zavrÅ¡etka%1$s – %2$sOdaberite rasponDatum poÄetka – Datum zavrÅ¡etkaSaÄuvajDatum poÄetka %1$sDatumDatum zavrÅ¡etkaDatum poÄetkadmgDanas %1$sPrebacivanje na naÄin unosa kalendaraPrebacivanje dodirom na prikaz KalendaraPrebacivanje na naÄin unosa tekstaPrebacivanje dodirom na prikaz godineOtkažiUreduPrikaži lozinku
+ - %d új értesÃtés
+ - %d új értesÃtés
+ Az alsó lap összecsukásaAz alsó lap kibontásaKibontás féligDuplán koppintott a csúszkáraCsúszkaBegépelt karakterszám: %2$d/%1$dMaximális karakterszám túllépve: %2$d/%1$dSzöveg törléseHibaLegördülÅ‘ menü megjelenÃtésePárbeszédpanel ikonjaLapVálassza ki, hogy délelÅ‘tt vagy délután%1$s óraÓra kiválasztása%1$s óraPerc kiválasztása%1$s percde.IdÅ‘bevitelhez váltson óramódba.ÓraPercdu.IdÅ‘pont kiválasztásaIdÅ‘bevitelhez váltson szövegbeviteli módba.Új értesÃtésEltávolÃtás (%1$s)Több mint %1$d új értesÃtésVáltás a következÅ‘ hónapraVáltás az elÅ‘zÅ‘ hónapraKiválasztott kezdÅ‘ dátum: %1$s – Kiválasztott befejezÅ‘ dátum: %2$sJelenleg kiválasztva: %1$segyik semMégseOK%1$sVálasszon dátumotKiválasztott dátumNapok oszlopa: %1$sBefejezés dátuma: %1$sÉrvénytelen formátum.Példa: %1$sHasználja ezt: %1$sÉrvénytelen tartomány.Ugrás az aktuális évre %1$dUgrás ehhez az évhez: %1$dTartományon kÃvül: %1$sKezdés dátuma – %1$s%1$s – Befejezés dátuma%1$s – %2$sVálasszon dátumtartománytKezdés dátuma – Befejezés dátumaMentésKezdés dátuma: %1$sDátumBefejezés dátumaKezdés dátumaNHÉMa %1$sVáltás naptárbeviteli módraKoppintson a naptárnézetre való váltáshozVáltás szövegbeviteli módraKoppintson az éves nézetre való váltáshozMégseOKJelszó megjelenÃtése
+ - %d ново извеÑтие
+ - %d нови извеÑтиÑ
+ Свиване на Ð´Ð¾Ð»Ð½Ð¸Ñ Ð»Ð¸ÑтРазгъване на Ð´Ð¾Ð»Ð½Ð¸Ñ Ð»Ð¸ÑтРазгъване наполовинаДвукратно докоÑване на манипулатора за премеÑтване Ñ Ð¿Ð»ÑŠÐ·Ð³Ð°Ð½ÐµÐœÐ°Ð½Ð¸Ð¿ÑƒÐ»Ð°Ñ‚Ð¾Ñ€ за премеÑтване Ñ Ð¿Ð»ÑŠÐ·Ð³Ð°Ð½ÐµÐ’ÑŠÐ²ÐµÐ´ÐµÐ½Ð¸ знаци: %1$d от %2$dМакÑималниÑÑ‚ брой знаци е надхвърлен Ñ(ÑŠÑ) %1$d от %2$dИзчиÑтване на текÑтаГрешкаПоказване на падащото менюИкона за диалогов прозорецРазделИзберете AM или PM%1$s чаÑаИзберете чаÑ%1$s чаÑаИзбиране на минути%1$s минутиAMПревключете към режима за чаÑовник, за да въведете чаÑа.ЧаÑМинутаPMИзбор на чаÑПревключете към режима за въвеждане на текÑÑ‚, за да въведете чаÑа.Ðово извеÑтиеПремахване на %1$sПовече от %1$d нови извеÑтиÑПреминаване към ÑÐ»ÐµÐ´Ð²Ð°Ñ‰Ð¸Ñ Ð¼ÐµÑецПреминаване към Ð¿Ñ€ÐµÐ´Ð¸ÑˆÐ½Ð¸Ñ Ð¼ÐµÑецИзбиране на начална дата: %1$s – Избиране на крайна дата: %2$sТекущ избор: %1$sнÑмаОтказOK%1$sИзбиране на датаИзбрана датаКолона за дни: %1$sКрайна дата: %1$sФорматът е невалиден.Пример: %1$sИзползвайте: %1$sÐевалиден диапазон.Ðавигиране до текущата година %1$dÐавигиране до %1$d г.Извън диапазона: %1$sÐачална дата – %1$s%1$s – крайна дата%1$s – %2$sИзбиране на период от времеÐачална дата – крайна датаЗапазванеÐачална дата: %1$sДатаКрайна датаÐачална датадмгДнеÑ – %1$sПревключване към режим на въвеждане в календарДокоÑнете за превключване към календарен изгледПревключване към режим за въвеждане на текÑтДокоÑнете за превключване към годишен изгледОтказOKПоказване на паролата- 0.16
- 0.17
- 0.4
- 0.10
- 0.24
- 0.40
- 0.40
- 0.24
- 0.12
- 0.20
- 0.20
- 0.12
+ - %d notificare nouă
+ - %d notificări noi
+ - %d de notificări noi
+ Restrângeți foaia din partea de josExtindeți foaia din partea de josExtinde pe ecran completGhidaj de tragere atins de două oriGhidaj de tragereCaractere introduse: %1$d din %2$dLimita de caractere a depășit %1$d din %2$dȘtergeți textulEroareAfișați meniul drop-downPictogramă de dialogFilăSelectați ora%1$s oreSelectați oraOra %1$sSelectați minutele%1$s minutea.m.Pentru a introduce ora, comutați la modul ceas.OraMinutp.m.Selectați oraPentru a introduce ora, comutați la modul de introducere a textului.Notificare nouăEliminați %1$sPeste %1$d notificări noiTreceți la luna următoareTreceți la luna anterioarăSelectarea datei de începere: %1$s – selectarea datei de încheiere: %2$sSelecția actuală: %1$sniciunaAnulațiOK%1$sSelectați dataData selectatăColoana cu zile: %1$sData de încheiere: %1$sFormat nevalid.Exemplu: %1$sFolosiți: %1$sInterval nevalid.Navigați la anul actual %1$dNavigați la anul %1$dFără acoperire: %1$sData de începere – %1$s%1$s – data de încheiere%1$s – %2$sSelectați intervalulData de începere – data de încheiereSalvațiData de începere: %1$sDatăData de încheiereData de începerezlaAstăzi, la %1$sComutați la modul introducere în calendarAtingeți pentru a comuta la afișarea CalendarComutați la modul de introducere a textuluiAtingeți pentru a comuta la afișarea AnAnulațiOKAfișați parola- 0.32
- 0.20
- 0.16
- 0.20
0dp1dp- 0.48
- 0.48
- 0.16
- 0.48
- 0.24
- 0.24
- 0.08
- 0.24
sans-serif-mediumsans-serifsans-serif-mediumsans-serif
+ - ការជូនដំណឹងážáŸ’មី %d
+ - ការជូនដំណឹងážáŸ’មី %d
+ បង្រួមសន្លឹក​ážáž¶áž„ក្រោមពង្រីកសន្លឹក​ážáž¶áž„ក្រោមពង្រីក​ពាក់កណ្ដាលបានប៉ះដង​អូស​ពីរដងដង​អូសážáž½â€‹áž¢áž€áŸ’សរ​បាន​បញ្ចូល​ %1$d នៃ %2$dដែនកំណážáŸ‹ážáž½áž¢áž€áŸ’សរបានលើស %1$d នៃ %2$dសម្អាážáž¢áž€áŸ’សរបញ្ហាបង្ហាញ​ម៉ឺនុយ​ធ្លាក់ចុះរូប​ប្រអប់បញ្ចូលផ្ទាំងជ្រើសរើស AM ឬ PM%1$s ម៉ោងជ្រើសរើសម៉ោងម៉ោង %1$sជ្រើស​នាទី%1$s នាទីព្រឹកប្ážáž¼ážšâ€‹áž‘ៅ​មុážáž„ារ​នាឡិកា​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។ម៉ោងនាទី​ល្ងាចជ្រើស​ម៉ោងប្ážáž¼ážšâ€‹áž‘ៅ​មុážáž„ារ​បញ្ចូល​អក្សរ​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។ការជូនដំណឹងážáŸ’មីលុប %1$sការជូនដំណឹង​ážáŸ’មីៗ​លើស %1$d ហើយប្ដូរ​ទៅ​ážáŸ‚បន្ទាប់ប្ដូរ​ទៅ​ážáŸ‚មុនការជ្រើសរើស​កាលបរិច្ឆáŸáž‘ចាប់ផ្ដើម៖ %1$s – ការជ្រើសរើស​កាលបរិច្ឆáŸáž‘បញ្ចប់៖ %2$sការជ្រើសរើស​បច្ចុប្បន្ន៖ %1$sគ្មានបោះ​បង់យល់ព្រម%1$sជ្រើសរើស​កាល​បរិច្ឆáŸáž‘កាលបរិច្ឆáŸáž‘ដែលបាន​ជ្រើសរើសជួរឈរ​នៃ​ážáŸ’ងៃ៖ %1$sកាលបរិច្ឆáŸáž‘​បញ្ចប់ %1$sទម្រង់មិន​ážáŸ’រឹមážáŸ’រូវទáŸáŸ”ឧទាហរណáŸáŸ– %1$sប្រើ៖ %1$sជួរ​មិនážáŸ’រឹមážáŸ’រូវទáŸáŸ”រុករក​ទៅកាន់​ឆ្នាំបច្ចុប្បន្ន %1$dប្ដូរទៅ​ឆ្នាំ %1$dនៅក្រៅ​ចន្លោះ៖ %1$sកាលបរិច្ឆáŸáž‘​ចាប់ផ្ដើម – %1$s%1$s – កាលបរិច្ឆáŸáž‘​បញ្ចប់%1$s – %2$sជ្រើស​រើស​ចន្លោះកាលបរិច្ឆáŸáž‘​ចាប់ផ្ដើម – កាលបរិច្ឆáŸáž‘​បញ្ចប់រក្សាទុកកាលបរិច្ឆáŸáž‘​ចាប់ផ្ដើម %1$sកាលបរិច្ឆáŸáž‘កាល​បរិច្ឆáŸáž‘​បញ្ចប់កាល​បរិច្ឆáŸáž‘​ចាប់ផ្ដើមážážáž†ážáŸ’ងៃនáŸáŸ‡ %1$sប្ដូរទៅ​របៀប​បញ្ចូល​ប្រážáž·áž‘ិនចុច ដើម្បីប្ដូរទៅទិដ្ឋភាពប្រážáž·áž‘ិនប្ដូរទៅ​របៀប​បញ្ចូល​អក្សរចុច ដើម្បីប្ដូរទៅទិដ្ឋភាពឆ្នាំបោះបង់យល់ព្រមបង្ហាញពាក្យសម្ងាážáŸ‹
+ - %d ny notifikation
+ - %d nye notifikationer
+ Skjul feltet i bundenUdvid feltet i bundenUdvid halvdelenDu har trykket to gange på håndtagetHåndtagDu har brugt %1$d ud af %2$d tegnDu har brugt %1$d tegn og dermed overskredet tegnbegrænsningen på %2$d.Ryd tekstFejlVis rullemenuenIkon for dialogboksFaneVælg AM eller PM%1$s timerVælg timeklokken %1$sVælg minutter%1$s minutterf.m.Skift til urtilstand for at angive klokkeslæt.TimeMinute.m.Vælg tidspunktSkift til teksttilstand for at angive klokkeslæt.Ny notifikationFjern %1$sFlere end %1$d nye notifikationerSkift til næste månedSkift til forrige månedValg af startdato: %1$s – Valg af slutdato: %2$sAktuelt valg: %1$singenAnnullerOK%1$sVælg datoValgt datoKolonne med dage: %1$sSlutdato %1$sUgyldigt format.Eksempel: %1$sBrug: %1$sUgyldigt interval.Gå til indeværende år %1$dGå til år %1$dUden for interval: %1$sStartdato – %1$s%1$s – slutdato%1$s – %2$sVælg intervalStartdato – slutdatoGemStartdato %1$sDatoSlutdatoStartdatodmåI dag %1$sSkift til input-tilstand for kalenderTryk for at skifte til kalendervisningSkift til input-tilstand for tekstTryk for at skifte til årsvisningAnnullerOKVis adgangskode
+ - %d nova obavijest
+ - %d nove obavijesti
+ - %d novih obavijesti
+ Sažmite donju tablicuProÅ¡irite donju tablicuProÅ¡iri donju polovicuDvaput dodirnut marker za povlaÄenjeMarker za povlaÄenjeUneseno znakova: %1$d od %2$dPremaÅ¡eno je ograniÄenje broja znakova: %1$d od %2$dBrisanje tekstaPogreÅ¡kaPrikaži padajući izbornikIkona dijalogaKarticaOdaberite prijepodne ili poslijepodne%1$s hOdaberite sat%1$s hOdaberite minute%1$s minAMPrijeÄ‘ite na naÄin rada sata da biste unijeli vrijeme.SatMinutaPMOdabir vremenaPrijeÄ‘ite na naÄin unosa teksta da biste unijeli vrijeme.Nova obavijestUkloni %1$sViÅ¡e od %1$d novih obavijestiPrijelaz na sljedeći mjesecPomicanje na prethodni mjesecOdabir datuma poÄetka: %1$s – odabir datuma zavrÅ¡etka: %2$sTrenutaÄan odabir: %1$sniÅ¡taOdustaniU redu%1$sOdaberite datumOdabrani datumStupac s danima: %1$sDatum zavrÅ¡etka %1$sNevažeći format.Primjer: %1$sKoristi format: %1$sRaspon nije važeći.Idi na trenutaÄnu godinu %1$dPrijelaz na godinu %1$dIzvan raspona: %1$sDatum poÄetka – %1$s%1$s – datum zavrÅ¡etka%1$s – %2$sOdaberite rasponDatum poÄetka – datum zavrÅ¡etkaSpremiDatum poÄetka %1$sDatumDatum zavrÅ¡etkaDatum poÄetkadmgDanas: %1$sPrijelaz na naÄin unosa u KalendaruDodirnite da biste se prebacili na prikaz kalendaraPrijelaz na naÄin unosa tekstaDodirnite da biste se prebacili na prikaz godineOdustaniU reduPrikaži zaporku
+ - %d new notification
+ - %d new notifications
+ Collapse the bottom sheetExpand the bottom sheetExpand halfwayDrag handle double-tappedDrag handleCharacters entered %1$d of %2$dCharacter limit exceeded %1$d of %2$dClear textErrorShow drop-down menuDialogue IconTabSelect a.m. or p.m.%1$s hoursSelect hour%1$s o\'clockSelect minutes%1$s minutesAMSwitch to clock mode for the time input.HourMinutePMSelect timeSwitch to text input mode for the time input.New notificationRemove %1$sMore than %1$d new notificationsChange to next monthChange to previous monthStart date selection: %1$s – end date selection: %2$sCurrent selection: %1$snoneCancelOK%1$sSelect dateSelected dateColumn of days: %1$sEnd date %1$sInvalid format.Example: %1$sUse: %1$sInvalid range.Navigate to current year %1$dNavigate to year %1$dOut of range: %1$sStart date – %1$s%1$s – End date%1$s – %2$sSelect rangeStart date – End dateSaveStart date %1$sDateEnd dateStart datedmyToday %1$sSwitch to calendar input modeTap to switch to calendar viewSwitch to text input modeTap to switch to year viewCancelOKShow password
+ - 새 알림 %d개
+ - 새 알림 %d개
+ 하단 시트 ì ‘ê¸°í•˜ë‹¨ 시트 펼치기반만 íŽ¼ì¹˜ê¸°ë‘ ë²ˆ íƒí•œ 드래그 핸들드래그 í•¸ë“¤ìž…ë ¥ëœ ê¸€ìž %1$d/%2$dê¸€ìž ìˆ˜ ì œí•œì´ ì´ˆê³¼ë˜ì—ˆìŠµë‹ˆë‹¤(%1$d/%2$d).í…스트 ì‚ì œì˜¤ë¥˜ë“œë¡ë‹¤ìš´ 메뉴 표시대화ìƒìž ì•„ì´ì½˜íƒì˜¤ì „ ë˜ëŠ” 오후를 ì„ íƒí•˜ì„¸ìš”.%1$s시간시간 ì„ íƒ%1$s시 ì •ê°ë¶„ ì„ íƒ%1$së¶„ì˜¤ì „ì‹œê°„ ìž…ë ¥ì„ ìœ„í•´ 시계 모드로 ì „í™˜í•©ë‹ˆë‹¤.시간분오후시간 ì„ íƒì‹œê°„ ìž…ë ¥ì„ ìœ„í•´ í…스트 ìž…ë ¥ 모드로 ì „í™˜í•©ë‹ˆë‹¤.새 알림%1$s ì‚ì œìƒˆ 알림 %1$dê°œ ì´ˆê³¼ë‹¤ìŒ ë‹¬ë¡œ 변경ì´ì „ 달로 ë³€ê²½ì‹œìž‘ì¼ ì„ íƒ: %1$s, ì¢…ë£Œì¼ ì„ íƒ: %2$s현재 %1$s ì„ íƒë¨ì—†ìŒì·¨ì†Œí™•ì¸%1$së‚ ì§œ ì„ íƒì„ íƒí•œ ë‚ ì§œìš”ì¼ ì—´: %1$s종료ì¼: %1$s형ì‹ì´ 잘못ë˜ì—ˆìŠµë‹ˆë‹¤.예: %1$s%1$s ì‚¬ìš©ë‚ ì§œ 범위가 잘못ë˜ì—ˆìŠµë‹ˆë‹¤.현재 ì—°ë„(%1$d)로 ì´ë™%1$d년으로 ì´ë™%1$sì€ ë²”ìœ„ë¥¼ 벗어난 ë‚ ì§œìž…ë‹ˆë‹¤.시작ì¼~%1$s%1$s~종료ì¼%1$s~%2$s기간 ì„ íƒì‹œìž‘ì¼~종료ì¼ì €ìž¥ì‹œìž‘ì¼: %1$së‚ ì§œì¢…ë£Œì¼ì‹œìž‘ì¼ì¼ì›”년오늘(%1$s)ìº˜ë¦°ë” ìž…ë ¥ 모드로 ì „í™˜íƒí•˜ì—¬ ìº˜ë¦°ë” ë·°ë¡œ ì „í™˜í…스트 ìž…ë ¥ 모드로 ì „í™˜íƒí•˜ì—¬ ì—°ë„ ë·°ë¡œ ì „í™˜ì·¨ì†Œí™•ì¸ë¹„밀번호 표시
+ - %d nouvelle notification
+ - %d nouvelles notifications
+ Réduire la bottom sheetDévelopper la bottom sheetDévelopper en entierA appuyé deux fois sur la poignée de déplacementPoignée de déplacementCaractères saisis %1$d sur %2$dNombre maximal de caractères dépassé : %1$d sur %2$dEffacer le texteErreurAfficher le menu déroulantIcône de la boîte de dialogueTabulationSélectionner le format AM ou PM%1$s heuresSélectionnez une heure%1$s hSélectionner des minutes%1$s minAMPasser en mode horloge pour la saisie de l\'heure.HeureMinutePMSélectionner l\'heurePasser en mode saisie de texte pour la saisie de l\'heure.Nouvelle notificationSupprimer %1$sPlus de %1$d nouvelles notificationsPasser au mois suivantPasser au mois précédentDate de début sélectionnée : %1$s – Date de fin sélectionnée : %2$sSélection actuelle : %1$saucuneAnnulerOK%1$sSélectionnez une dateDate sélectionnéeColonne du jour de la semaine : %1$sDate de fin : %1$sFormat incorrect.Exemple : %1$sUtiliser %1$sPlage non valide.Accéder à l\'année en cours : %1$dAccéder à l\'année %1$dHors limite : %1$sDate de début – %1$s%1$s – Date de fin%1$s - %2$sSélectionnez une périodeDate de début – Date de finEnregistrerDate de début : %1$sDateDate de finDate de débutjmaAujourd\'hui : %1$sPasser au mode de saisie AgendaAppuyer pour passer à la vue \"Agenda\"Passer au mode de saisie TexteAppuyer pour passer à la vue \"Année\"AnnulerOKAfficher le mot de passe
+ - %d Õ¶Õ¸Ö€ Õ®Õ¡Õ¶Õ¸Ö‚ÖÕ¸Ö‚Õ´
+ - %d Õ¶Õ¸Ö€ Õ®Õ¡Õ¶Õ¸Ö‚ÖÕ¸Ö‚Õ´
+ Ô¾Õ¡Õ¬Õ¥Õ¬ Õ¶Õ¥Ö€Ö„Ö‡Õ« Õ§Õ¯Ö€Õ¡Õ¶Õ¨Ô¾Õ¡Õ¾Õ¡Õ¬Õ¥Õ¬ Õ¶Õ¥Ö€Ö„Ö‡Õ« Õ§Õ¯Ö€Õ¡Õ¶Õ¨Ô¾Õ¡Õ¾Õ¡Õ¬Õ¥Õ¬ Õ¯Õ«Õ½Õ¸Õ¾ Õ¹Õ¡ÖƒÔ¿Ö€Õ¯Õ¶Õ¡Õ¯Õ« Õ°ÕºÕ¸Ö‚Õ´ Õ¿Õ¥Õ²Õ¡ÖƒÕ¸ÕÕ´Õ¡Õ¶ Õ¶Õ·Õ«Õ¹Õ«Õ¶ÕÕ¥Õ²Õ¡ÖƒÕ¸ÕÕ´Õ¡Õ¶ Õ¶Õ·Õ«Õ¹Õ„Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ¾Õ¡Õ® Õ¶Õ«Õ·Õ¥Ö€Õ %1$d/%2$dÕ†Õ«Õ·Õ¥Ö€Õ« Õ¡Õ¼Õ¡Õ¾Õ¥Õ¬Õ¡Õ£Õ¸Ö‚ÕµÕ¶ Ö„Õ¡Õ¶Õ¡Õ¯Õ¨ Õ£Õ¥Ö€Õ¡Õ¦Õ¡Õ¶ÖÕ¾Õ¥Õ¬ Õ§ (%1$d/%2$d)Õ‹Õ¶Õ»Õ¥Õ¬ Õ¿Õ¥Ö„Õ½Õ¿Õ¨ÕÕÕ¡Õ¬Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ«Õ»Õ¶Õ¸Õ² Õ¨Õ¶Õ¿Ö€Õ¡ÖÕ¡Õ¶Õ¯Õ¨ÔµÖ€Õ¯ÕÕ¸Õ½Õ¸Ö‚Õ©ÕµÕ¡Õ¶ ÕºÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶Õ« ÕºÕ¡Õ¿Õ¯Õ¥Ö€Õ¡Õ¯Õ†Õ¥Ö€Õ¤Õ«Ö€Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ AM Õ¯Õ¡Õ´ PM%1$s ÕªÕ¡Õ´Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ ÕªÕ¡Õ´Õ¨ÔºÕ¡Õ´Õ¨ %1$s Õ§Ô¸Õ¶Õ¿Ö€Õ¥Ö„ Ö€Õ¸ÕºÕ¥Õ¶%1$s Ö€Õ¸ÕºÕ¥AMÔºÕ¡Õ´Õ¨ Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€ Õ´Õ«Õ¡ÖÖ€Õ¥Ö„ ÕªÕ¡Õ´Õ¡ÖÕ¸Ö‚ÕµÖÕ« Õ¼Õ¥ÕªÕ«Õ´Õ¨:ÔºÕ¡Õ´ÕÕ¸ÕºÕ¥PMÔºÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ« Õ¨Õ¶Õ¿Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶ÔºÕ¡Õ´Õ¨ Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€ Õ´Õ«Õ¡ÖÖ€Õ¥Ö„ Õ¿Õ¥Ö„Õ½Õ¿Õ« Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ´Õ¡Õ¶ Õ¼Õ¥ÕªÕ«Õ´Õ¨:Õ†Õ¸Ö€ Õ®Õ¡Õ¶Õ¸Ö‚ÖÕ¸Ö‚Õ´Õ€Õ¥Õ¼Õ¡ÖÕ¶Õ¥Õ¬ (%1$s)Ô±Õ¾Õ¥Õ¬Õ« Ö„Õ¡Õ¶ %1$d Õ¶Õ¸Ö€ Õ®Õ¡Õ¶Õ¸Ö‚ÖÕ¸Ö‚Õ´Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ°Õ¡Õ»Õ¸Ö€Õ¤ Õ¡Õ´Õ«Õ½Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ¶Õ¡ÕÕ¸Ö€Õ¤ Õ¡Õ´Õ«Õ½Õ„Õ¥Õ¯Õ¶Õ¡Ö€Õ¯Õ« Õ¡Õ´Õ½Õ¡Õ©Õ¾Õ« Õ¨Õ¶Õ¿Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ %1$s – Ô±Õ¾Õ¡Ö€Õ¿Õ« Õ¡Õ´Õ½Õ¡Õ©Õ¾Õ« Õ¨Õ¶Õ¿Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ %2$sÕ†Õ¥Ö€Õ¯Õ¡ÕµÕ«Õ½ Õ¨Õ¶Õ¿Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨Õ %1$sÕ¸Õ¹ Õ´Õ¥Õ¯Õ¨Õ‰Õ¥Õ²Õ¡Ö€Õ¯Õ¥Õ¬ÔµÕ²Õ¡Õ¾%1$sÔ¸Õ¶Õ¿Ö€Õ¥Ö„ Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨Ô¸Õ¶Õ¿Ö€Õ¾Õ¡Õ® Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ•Ö€Õ¥Ö€Õ« Õ½ÕµÕ¸Ö‚Õ¶Õ¡Õ¯Õ %1$sÔ±Õ¾Õ¡Ö€Õ¿Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨Õ %1$sÕÖ‡Õ¡Õ¹Õ¡ÖƒÕ¨ Õ½ÕÕ¡Õ¬ Õ§Ö‰Õ•Ö€Õ«Õ¶Õ¡Õ¯Õ %1$sÕ•Õ£Õ¿Õ¡Õ£Õ¸Ö€Õ®Õ¥Ö„Õ %1$sÔ¸Õ¶Õ¤Õ£Ö€Õ¯Õ¸Ö‚ÕµÕ©Õ¶ Õ¡Õ¶Õ¾Õ¡Õ¾Õ¥Ö€ Õ§:Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ¨Õ¶Õ©Õ¡ÖÕ«Õ¯ Õ¿Õ¡Ö€Õ¾Õ¡Õ¶ (%1$d)Ô±Õ¶ÖÕ¶Õ¥Õ¬ %1$d Õ©Õ¾Õ¡Õ¯Õ¡Õ¶Ô¸Õ¶Õ¤Õ£Ö€Õ¯Õ¸Ö‚ÕµÕ©Õ«Ö Õ¤Õ¸Ö‚Ö€Õ½ Õ§Õ %1$sÕ„Õ¥Õ¯Õ¶Õ¡Ö€Õ¯Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨ – %1$s%1$s – Ô±Õ¾Õ¡Ö€Õ¿Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨%1$s – %2$sÔ¸Õ¶Õ¿Ö€Õ¥Ö„ Õ¨Õ¶Õ¤Õ£Ö€Õ¯Õ¸Ö‚ÕµÕ©Õ¨Õ„Õ¥Õ¯Õ¶Õ¡Ö€Õ¯Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨ – Ô±Õ¾Õ¡Ö€Õ¿Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨ÕŠÕ¡Õ°Õ¥Õ¬ÕÕ¯Õ¦Õ¢Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨Õ %1$sÔ±Õ´Õ½Õ¡Õ©Õ«Õ¾Ô±Õ¾Õ¡Ö€Õ¿Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨Õ„Õ¥Õ¯Õ¶Õ¡Ö€Õ¯Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨Ö…Õ¡Õ¿Ô±ÕµÕ½Ö…Ö€ (%1$s)Ô±Õ¶ÖÕ¶Õ¥Õ¬ Ö…Ö€Õ¡ÖÕ¸Ö‚ÕµÖÕ« Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ´Õ¡Õ¶ Õ¼Õ¥ÕªÕ«Õ´Õ€ÕºÕ¥Ö„Õ Õ•Ö€Õ¡ÖÕ¸Ö‚ÕµÖÕ« Õ¤Õ«Õ¿Õ¡Õ¯Õ¥Ö€ÕºÕ«Õ¶ Õ¡Õ¶ÖÕ¶Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€Ô±Õ¶ÖÕ¶Õ¥Õ¬ Õ¿Õ¥Ö„Õ½Õ¿Õ« Õ´Õ¸Ö‚Õ¿Ö„Õ¡Õ£Ö€Õ´Õ¡Õ¶ Õ¼Õ¥ÕªÕ«Õ´Õ«Õ¶Õ€ÕºÕ¥Ö„Õ Õ¿Õ¡Ö€Õ¾Õ¡ Õ¤Õ«Õ¿Õ¡Õ¯Õ¥Ö€ÕºÕ«Õ¶ Õ¡Õ¶ÖÕ¶Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€Õ‰Õ¥Õ²Õ¡Ö€Õ¯Õ¥Õ¬ÔµÕ²Õ¡Õ¾Õ‘Õ¸Ö‚ÖÕ¡Õ¤Ö€Õ¥Õ¬ Õ£Õ¡Õ²Õ¿Õ¶Õ¡Õ¢Õ¡Õ¼Õ¨
+ - %d نئی اطلاع
+ - %d نئی اطلاعات
+ نیچے Ú©ÛŒ شیٹ Ú©Ùˆ سکیڑیںنیچے Ú©ÛŒ شیٹ Ú©Ùˆ پھیلائیںنص٠تک پھیلائیںگھسیٹنے Ú©Û’ Ûینڈل Ú©Ùˆ دو بار تھپتھپائیںگھسیٹنے کا Ûینڈل%2$d میں سے %1$d ØØ±ÙˆÙ درج کیے Ú¯Ø¦Û’ØØ±ÙˆÙ Ú©ÛŒ تعداد Ú©ÛŒ ØØ¯ %2$d سے %1$d Ù¾ÛÙ†Ú† گئیٹیکسٹ صا٠کریںخرابیڈراپ ڈاؤن مینو دکھائیںڈائیلاگ کا آئیکنٹیبAM یا PM منتخب کریں%1$s Ú¯Ú¾Ù†Ù¹Û’Ú¯Ú¾Ù†Ù¹Û Ù…Ù†ØªØ®Ø¨ کریں%1$s بجےمنٹ منتخب کریں%1$s منٹقبل از Ø¯ÙˆÙ¾ÛØ±ÙˆÙ‚ت ان پٹ Ú©Û’ لیے Ú¯Ú¾Ú‘ÛŒ Ùˆâ€Ø¶Ø¹ پر سوئچ کریں۔گھنٹÛمنٹراتوقت منتخب کریںوقت ان پٹ Ú©Û’ لیے ٹیکسٹ ان پٹ وضع پر سوئچ کریں۔نئی اطلاع%1$s Ú©Ùˆ Ûٹائیں%1$d سے Ø²ÛŒØ§Ø¯Û Ù†Ø¦ÛŒ اطلاعاتاگلے Ù…ÛÛŒÙ†Û Ù…ÛŒÚº منتقل Ú©Ø±ÛŒÚºÚ¯Ø²Ø´ØªÛ Ù…Ø§Û Ù…ÛŒÚº منتقل کریںتاریخ آغاز کا انتخاب: %1$s – تاریخ اختتام کا انتخاب: %2$sÙ…ÙˆØ¬ÙˆØ¯Û Ø§Ù†ØªØ®Ø§Ø¨: %1$sکوئی Ù†Ûیںمنسوخ کریںٹھیک ÛÛ’%1$sتاریخ منتخب کریںمنتخب Ú©Ø±Ø¯Û ØªØ§Ø±ÛŒØ®Ø¯Ù†ÙˆÚº کا کالم: %1$sتاریخ اختتام %1$sغلط ÙØ§Ø±Ù…یٹ۔مثال: %1$sÛ”%1$s استعمال کریںغلط رینج۔سال رواں %1$d پر نیویگیٹ کریں%1$d سال پر نیویگیٹ Ú©Ø±ÛŒÚºØØ¯ سے Ø¨Ø§ÛØ±: %1$sتاریخ آغاز – %1$s%1$s – تاریخ اختتام%1$s – %2$sرینج منتخب کریںتاریخ آغاز - تاریخ اختتاممØÙوظ کریںتاریخ آغاز %1$sتاریختاریخ اختتامتاریخ آغازdmyآج %1$sکیلنڈر ان پٹ وضع پر سوئچ کریںکیلنڈر منظر پر سوئچ کرنے Ú©Û’ لیے تھپتھپائیںمتنی ان پٹ وضع پر سوئچ کریںسال Ú©Û’ منظر پر سوئچ کرنے Ú©Û’ لیے تھپتھپائیںمنسوخ کریںٹھیک Ûےپاس ورڈ دکھائیں
+ - %d nova notificação
+ - %d novas notificações
+ Reduza a secção inferiorExpanda a secção inferiorExpandir até metadeDois toques no indicador para arrastarIndicador para arrastarCarateres introduzidos: %1$d de %2$dLimite de carateres excedido: %1$d de %2$dLimpar textoErroMostrar menu pendenteÃcone de caixa de diálogoSeparadorSelecionar AM ou PM%1$s horasSelecionar hora%1$s hora(s)Selecionar minutos%1$s minutosAMMude para o modo de relógio para a introdução da hora.HoraMinutoPMSelecionar horaMude para o modo de introdução de texto para a introdução da hora.Nova notificaçãoRemover %1$sMais de %1$d notificações novasMudar para o mês seguinteMudar para o mês anteriorSeleção da data de inÃcio: %1$s – Seleção da data de fim: %2$sSeleção atual: %1$snenhumaCancelarOK%1$sSelecione a dataData selecionadaColuna de dias: %1$sData de fim: %1$sFormato inválido.Exemplo: %1$sUtilize: %1$sIntervalo inválido.Navegar para o ano atual %1$dNavegue para o ano %1$dFora do intervalo: %1$sData de inÃcio – %1$s%1$s – Data de conclusão%1$s – %2$sSelecione o intervaloData de inÃcio – Data de conclusãoGuardarData de inÃcio: %1$sDataData de conclusãoData de inÃciodmaHoje %1$sMudar para o modo de introdução de calendárioToque para mudar para a vista do CalendárioMudar para o modo de introdução de textoToque para mudar para a vista de anoCancelarOKMostrar palavra-passe
+ - %d 個新通知
+ - %d 個新通知
+ æ”¶åˆé åº•é¢æ¿å±•é–‹é åº•é¢æ¿å±•開一åŠã©’咗兩下拖曳控點拖曳控點已輸入 %1$d 個å—å…ƒ (å…± %2$d 個)超出å—å…ƒé™åˆ¶ %1$d 個å—å…ƒ (ä¸Šé™ %2$d 個å—å…ƒ)清除文å—錯誤顯示下拉å¼é¸å–®å°è©±æ¡†åœ–示分é 鏿“‡ä¸Šåˆæˆ–下åˆ%1$s 個é˜é¸å–時段%1$s 點é¸å–分é˜%1$s 分AM切æ›è‡³æ™‚é˜æ¨¡å¼å³å¯è¼¸å…¥æ™‚é–“ã€‚å°æ™‚分é˜PMé¸å–時間切æ›è‡³æ–‡å—輸入模å¼å³å¯è¼¸å…¥æ™‚間。新通知移除「%1$sã€è¶…éŽ %1$d 則新通知變更為下個月變更為上個月開始日期é¸é …:%1$s – çµæŸæ—¥æœŸé¸é …:%2$sç›®å‰é¸å–:%1$s冇喿¶ˆç¢ºå®š%1$sè«‹é¸æ“‡æ—¥æœŸæ‰€é¸æ—¥æœŸæ—¥æœŸæ¬„:%1$sçµæŸæ—¥æœŸä¿‚ %1$sæ ¼å¼ç„¡æ•ˆã€‚例如:%1$s使用:%1$s範åœç„¡æ•ˆã€‚去今個年度 %1$dç€è¦½è‡³ %1$d 年超出範åœï¼š%1$s開始日期 – %1$s%1$s – çµæŸæ—¥æœŸ%1$s – %2$sè«‹é¸æ“‡ç¯„åœé–‹å§‹æ—¥æœŸ – çµæŸæ—¥æœŸå„²å˜é–‹å§‹æ—¥æœŸä¿‚ %1$sæ—¥æœŸçµæŸæ—¥æœŸé–‹å§‹æ—¥æœŸæ—¥æœˆå¹´ä»Šæ—¥ %1$s切æ›è‡³æ—¥æ›†è¼¸å…¥æ¨¡å¼ã©’一下就å¯ä»¥åˆ‡æ›åŽ»æ—¥æ›†æª¢è¦–æ¨¡å¼åˆ‡æ›è‡³æ–‡å—輸入模å¼ã©’一下就å¯ä»¥åˆ‡æ›åŽ»æŒ‰å¹´æª¢è¦–æ¨¡å¼å–消確定顯示密碼
+ - %d ಹೊಸ ಅಧಿಸೂಚನೆಗಳà³
+ - %d ಹೊಸ ಅಧಿಸೂಚನೆಗಳà³
+ ಕೆಳà²à²¾à²—ದ ಶೀಟೠಅನà³à²¨à³ ಕà³à²—à³à²—ಿಸಿಕೆಳà²à²¾à²—ದ ಶೀಟೠಅನà³à²¨à³ ವಿಸà³à²¤à²°à²¿à²¸à²¿à²…ರà³à²§à²¦à²·à³à²Ÿà³ ವಿಸà³à²¤à²°à²¿à²¸à²¿à²¹à³à²¯à²¾à²‚ಡಲೠಡà³à²°à³à²¯à²¾à²—ೠಮಾಡಿ ಎಂಬà³à²¦à²¨à³à²¨à³ ಡಬಲà³-ಟà³à²¯à²¾à²ªà³ ಮಾಡಲಾಗಿದೆಹà³à²¯à²¾à²‚ಡಲೠಡà³à²°à³à²¯à²¾à²—ೠಮಾಡಿ%2$d ರಲà³à²²à²¿ %1$d ಅಕà³à²·à²°à²—ಳನà³à²¨à³ ನಮೂದಿಸಲಾಗಿದೆಅಕà³à²·à²° ಮಿತಿಯೠ%2$d ರಲà³à²²à²¿ %1$d ಮೀರಿದೆಪಠà³à²¯ ತೆರವà³à²—ೊಳಿಸಿದೋಷಡà³à²°à²¾à²ªà³â€Œà²¡à³Œà²¨à³ ಮೆನೠತೋರಿಸಿಡೈಲಾಗೠà²à²•ಾನà³à²Ÿà³à²¯à²¾à²¬à³à²¬à³†à²³à²¿à²—à³à²—ೆ ಅಥವಾ ಮಧà³à²¯à²¾à²¹à³à²¨ ಆಯà³à²•ೆಮಾಡಿ%1$s ಗಂಟೆಗಳà³à²¸à²®à²¯à²µà²¨à³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ%1$s ಗಂಟೆನಿಮಿಷಗಳನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿ%1$s ನಿಮಿಷಗಳà³AMಸಮಯವನà³à²¨à³ ನಮೂದಿಸಲೠಗಡಿಯಾರದ ನಮೂನೆಗೆ ಬದಲಿಸಿ.ಗಂಟೆನಿಮಿಷPMಸಮಯವನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿಸಮಯವನà³à²¨à³ ನಮೂದಿಸಲೠಪಠà³à²¯à²¦ ನಮೂನೆಗೆ ಬದಲಿಸಿ.ಹೊಸ ಅಧಿಸೂಚನೆ%1$s ಅನà³à²¨à³ ತೆಗೆದà³à²¹à²¾à²•ಿ%1$d ಕà³à²•ಿಂತ ಹೆಚà³à²šà³ ಹೊಸ ಅಧಿಸೂಚನೆಗಳà³à²®à³à²‚ದಿನ ತಿಂಗಳಿಗೆ ಬದಲಿಸಿಹಿಂದಿನ ತಿಂಗಳಿಗೆ ಬದಲಿಸಿಪà³à²°à²¾à²°à²‚ಠದಿನಾಂಕದ ಆಯà³à²•ೆ: %1$s – ಅಂತಿಮ ದಿನಾಂಕದ ಆಯà³à²•ೆ: %2$sಪà³à²°à²¸à³à²¤à³à²¤ ಆಯà³à²•ೆ: %1$sಯಾವà³à²¦à³‚ ಇಲà³à²²à²°à²¦à³à²¦à³à²®à²¾à²¡à²¿à²¸à²°à²¿%1$sದಿನಾಂಕವನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಿದಿನಾಂಕವನà³à²¨à³ ಆಯà³à²•ೆಮಾಡಲಾಗಿದೆದಿನಗಳ ಕಾಲಮà³: %1$sಕೊನೆಯ ದಿನಾಂಕ %1$sಅಮಾನà³à²¯à²µà²¾à²¦ ಫಾರà³à²®à³à²¯à²¾à²Ÿà³.ಉದಾಹರಣೆ: %1$sಇದನà³à²¨à³ ಬಳಸಿ: %1$sಅಮಾನà³à²¯ ಶà³à²°à³‡à²£à²¿.ಪà³à²°à²¸à³à²¤à³à²¤ ವರà³à²· %1$d ಕà³à²•ೆ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿ%1$d ವರà³à²·à²•à³à²•ೆ ನà³à²¯à²¾à²µà²¿à²—ೇಟೠಮಾಡಿವà³à²¯à²¾à²ªà³à²¤à²¿à²¯ ಹೊರಗಿದೆ: %1$sಪà³à²°à²¾à²°à²‚ಠದಿನಾಂಕ – %1$s%1$s – ಮà³à²•à³à²¤à²¾à²¯ ದಿನಾಂಕ%1$s – %2$sಶà³à²°à³‡à²£à²¿à²¯à²¨à³à²¨à³ ಆಯà³à²•ೆಮಾಡಿಪà³à²°à²¾à²°à²‚ಠದಿನಾಂಕ – ಮà³à²•à³à²¤à²¾à²¯ ದಿನಾಂಕಉಳಿಸಿಪà³à²°à²¾à²°à²‚à²à²¦ ದಿನಾಂಕ %1$sದಿನಾಂಕಮà³à²•à³à²¤à²¾à²¯ ದಿನಾಂಕಪà³à²°à²¾à²°à²‚ಠದಿನಾಂಕದಿತಿವಇಂದೠ%1$sಕà³à²¯à²¾à²²à³†à²‚ಡರೠಇನà³â€Œà²ªà³à²Ÿà³ ಮೋಡà³â€Œà²—ೆ ಬದಲಿಸಿCalendar ವೀಕà³à²·à²£à³†à²—ೆ ಬದಲಾಯಿಸಲೠಟà³à²¯à²¾à²ªà³ ಮಾಡಿಪಠà³à²¯ ಇನà³â€Œà²ªà³à²Ÿà³ ಮೋಡà³â€Œà²—ೆ ಬದಲಿಸಿವರà³à²·à²¦ ವೀಕà³à²·à²£à³†à²—ೆ ಬದಲಾಯಿಸಲೠಟà³à²¯à²¾à²ªà³ ಮಾಡಿರದà³à²¦à³à²®à²¾à²¡à²¿à²¸à²°à²¿à²ªà²¾à²¸à³â€Œà²µà²°à³à²¡à³ ತೋರಿಸಿ
+ - %d new notification
+ - %d new notifications
+ Collapse the bottom sheetExpand the bottom sheetExpand halfwayDrag handle double-tappedDrag handle%2$d ର %1$d ଅକàଷର ଲà‡à¬–ିଛନàତି%2$d ର %1$d ଅକàଷର ଲà‡à¬–ିଛନàତିClear textErrorShow dropdown menuDialog IconTabSelect AM or PM%1$s hoursSelect hour%1$s o\'clockମିନିଟà†ଚàŸà¬¨ କରନàତà%1$s minutesAMà¬¸à¬®àŸ à¬‡à¬¨à¬ªàଟà†ପାଇଠଘଣàଟା ମà‹à¬¡à‌କà ବଦଳାନàତà।HourMinutePMSelect timeà¬¸à¬®àŸ à¬‡à¬¨à¬ªàଟà†ପାଇଠଟà‡à¬•àସଟà†ଇନପàଟà‌କà ବଦଳାନàତà।New notification%1$s କାàିଦିଅନàତàMore than %1$d new notificationsChange to next monthChange to previous monthStart date selection: %1$s – End date selection: %2$sCurrent selection: %1$snoneCancelOK%1$sSelect DateSelected dateColumn of days: %1$sEnd date %1$sInvalid format.Example: %1$sUse: %1$sInvalid range.Navigate to current year %1$dNavigate to year %1$dOut of range: %1$sStart date – %1$s%1$s – End date%1$s – %2$sSelect RangeStart date – End dateSaveStart date %1$sDateEnd dateStart datedmyToday %1$sSwitch to calendar input modeTap to switch to Calendar viewSwitch to text input modeTap to switch to year viewCancelOKପାସàâ€à±à¬¾à¬°àଡ ଦà‡à¬–ାନàତà8dp
+ - %d neue Benachrichtigung
+ - %d neue Benachrichtigungen
+ Ansicht am unteren Rand minimierenAnsicht am unteren Rand maximierenZur Hälfte maximierenAuf Ziehpunkt doppelt getipptZiehpunktEingegebene Zeichen: %1$d von %2$dZeichenbeschränkung überschritten: %1$d/%2$dText löschenFehlerDrop-down-Menü anzeigenDialogfeldsymbolTabVormittags oder Nachmittags auswählen%1$s StundenStunde auswählen%1$s UhrMinuten auswählen%1$s MinutenAMIn den Uhrzeitmodus wechseln, um die Uhrzeit einzugeben.StundeMinutePMUhrzeit auswählenIn den Texteingabemodus wechseln, um die Uhrzeit einzugeben.Neue Benachrichtigung%1$s entfernenMehr als %1$d neue BenachrichtigungenZum nächsten Monat wechselnZum vorherigen Monat wechselnAusgewähltes Startdatum: %1$s – Ausgewähltes Enddatum: %2$sAktuelle Auswahl: %1$sKeinesAbbrechenOK%1$sDatum auswählenAusgewähltes DatumSpalte \"Wochentag\": %1$sEnddatum %1$sUngültiges Format.Beispiel: %1$sFormat: %1$sUngültiger Bereich.Zum aktuellen Jahr %1$d wechselnZum Jahr %1$d wechselnAußerhalb des Bereichs: %1$sStartdatum – %1$s%1$s – Enddatum%1$s – %2$sZeitraum auswählenStartdatum – EnddatumSpeichernStartdatum %1$sDatumEnddatumStartdatumTMJHeute %1$sIn den Kalendereingabemodus wechselnTippen, um zur Kalenderansicht zu wechselnIn den Texteingabemodus wechselnTippen, um zur Jahresansicht zu wechselnAbbrechenOKPasswort anzeigen
+ - %d notificación nueva
+ - %d notificaciones nuevas
+ Contraer la hoja inferiorExpandir la hoja inferiorExpandir hasta la mitadEl control de arrastre se presionó dos vecesControlador de arrastreCaracteres ingresados: %1$d de %2$dSe excedió en %1$d el lÃmite de caracteres de %2$dBorrar textoErrorMostrar menú desplegableÃcono de diálogoPestañaSelecciona a.m. o p.m.%1$s horasSeleccione la hora.%1$s en puntoSeleccionar minutos%1$s minutosa.m.Cambia al modo de reloj para ingresar la hora.HoraMinutop.m.Seleccionar la horaCambia al modo de entrada de texto para ingresar la hora.Notificación nuevaQuitar %1$sMás de %1$d notificaciones nuevasCambiar al mes siguienteCambiar al mes anteriorSelección de fecha de inicio: %1$s – Selección de fecha de finalización: %2$sSelección actual: %1$snadaCancelarAceptar%1$sSeleccionar fechaFecha seleccionadaColumna de dÃas: %1$sFecha de finalización: %1$sFormato no válidoEjemplo: %1$sUsar: %1$sEl rango no es válido.Navegar al año actual (%1$d)Navegar al año %1$dFuera de rango: %1$sFecha de inicio - %1$s%1$s - fecha de finalización%1$s-%2$sSelecciona un perÃodoFecha de inicio - fecha de finalizaciónGuardarFecha de inicio: %1$sFechaFecha de finalizaciónFecha de iniciodmaHoy, %1$sCambiar al modo de entrada de calendarioPresiona para cambiar a la vista de CalendarioCambiar al modo de entrada de textoPresiona para cambiar a la vista de añoCancelarAceptarMostrar contraseña
+ - %d notificación nueva
+ - %d notificaciones nuevas
+ Contraer la hoja inferiorExpandir la hoja inferiorExpandir hasta la mitadEl control de arrastre se presionó dos vecesControlador de arrastreCaracteres ingresados: %1$d de %2$dSe excedió en %1$d el lÃmite de caracteres de %2$dBorrar textoErrorMostrar menú desplegableÃcono de diálogoPestañaSelecciona a.m. o p.m.%1$s horasSeleccione la hora.%1$s en puntoSeleccionar minutos%1$s minutosa.m.Cambia al modo de reloj para ingresar la hora.HoraMinutop.m.Seleccionar la horaCambia al modo de entrada de texto para ingresar la hora.Notificación nuevaQuitar %1$sMás de %1$d notificaciones nuevasCambiar al mes siguienteCambiar al mes anteriorSelección de fecha de inicio: %1$s – Selección de fecha de finalización: %2$sSelección actual: %1$snadaCancelarAceptar%1$sSeleccionar fechaFecha seleccionadaColumna de dÃas: %1$sFecha de finalización: %1$sFormato no válidoEjemplo: %1$sUsar: %1$sEl rango no es válido.Navegar al año actual (%1$d)Navegar al año %1$dFuera de rango: %1$sFecha de inicio - %1$s%1$s - fecha de finalización%1$s-%2$sSelecciona un perÃodoFecha de inicio - fecha de finalizaciónGuardarFecha de inicio: %1$sFechaFecha de finalizaciónFecha de iniciodmaHoy, %1$sCambiar al modo de entrada de calendarioPresiona para cambiar a la vista de CalendarioCambiar al modo de entrada de textoPresiona para cambiar a la vista de añoCancelarAceptarMostrar contraseña
+ - အကြောင်းကြားá€á€»á€€á€ºá€¡á€žá€…် %d á€á€¯
+ - အကြောင်းကြားá€á€»á€€á€ºá€¡á€žá€…် %d á€á€¯
+ အောက်á€á€¼á€±á€¡á€•á€á€¯á€†á€±á€¬á€„်း စာမျက်နှာကá€á€¯ ပá€á€á€ºá€”á€á€¯á€„်သည်အောက်á€á€¼á€±á€¡á€•á€á€¯á€†á€±á€¬á€„်း စာမျက်နှာကá€á€¯ á€á€»á€²á€·á€”á€á€¯á€„်သည်á€á€…်á€á€€á€ºá€á€»á€²á€·á€›á€”်ဖá€á€†á€½á€²á€¡á€‘á€á€”်း နှစ်á€á€»á€€á€ºá€á€á€¯á€·á€‘ားသည်ဖá€á€†á€½á€²á€¡á€‘á€á€”်းစာလုံးရေ %2$d á€á€½á€„် %1$d ထည့်သွင်းထားသည်စာလုံးရေအကန့်အသá€á€º %2$d လုံးá€á€½á€„် %1$d လုံးကျော်နေသည်စာသား ဖယ်ရှားရန်အမှားဆွဲá€á€»á€™á€®á€”ူးကá€á€¯ ပြရန်ဒá€á€¯á€„်ယာလော့á€á€º သင်္ကေá€á€á€˜á€ºAM (သá€á€¯á€·) PM ရွေးရန်%1$s နာရီနာရီ ရွေးရန်%1$s နာရီမá€á€”စ်များ ရွေးပါ%1$s မá€á€”စ်နံနက်အá€á€»á€á€”်ထည့်သွင်းမှုအá€á€½á€€á€º နာရီမုဒ်သá€á€¯á€· ပြောင်းပါá‹á€”ာရီမá€á€”စ်ညနေအá€á€»á€á€”်ရွေးပါအá€á€»á€á€”်ထည့်သွင်းရန် စာသားထည့်သွင်းမှုမုဒ်သá€á€¯á€· ပြောင်းပါá‹á€¡á€€á€¼á€±á€¬á€„်းကြားá€á€»á€€á€ºá€¡á€žá€…်%1$s ကá€á€¯ ဖယ်ရှားရန်အကြောင်းကြားá€á€»á€€á€ºá€¡á€žá€…် %1$d á€á€¯ အထက်နောက်လသá€á€¯á€· ပြောင်းရန်ယá€á€„်လသá€á€¯á€· ပြောင်းရန်စá€á€„်ရက် ရွေးရန်- %1$s – ပြီးဆုံးရက် ရွေးရန်- %2$sလက်ရှဠရွေးá€á€»á€šá€ºá€™á€¾á€¯- %1$sမရှá€á€•ယ်ဖျက်ရန်OK%1$sရက်စွဲ ရွေးပါရွေးထားသည့် ရက်စွဲရက်ကော်လံ- %1$sပြီးဆုံးရက် %1$sဖော်မက် မမှန်ကန်ပါá‹á€¥á€•မာ− %1$s%1$s သုံးရန်ရက်အပá€á€¯á€„်းအá€á€¼á€¬á€¸ မမှန်ပါá‹á€œá€€á€ºá€›á€¾á€á€á€¯á€”ှစ် %1$d သá€á€¯á€· သွားရန်နှစ် %1$d သá€á€¯á€· လမ်းညွှန်ရန်ရက်အပá€á€¯á€„်းအá€á€¼á€¬á€¸ ပြင်ပ− %1$sစá€á€„်ရက် – %1$s%1$s – ပြီးဆုံးရက်%1$s – %2$sအပá€á€¯á€„်းအá€á€¼á€¬á€¸ ရွေးပါစá€á€„်ရက် – ပြီးဆုံးရက်သá€á€™á€ºá€¸á€›á€”်စá€á€„်ရက် %1$sရက်စွဲပြီးဆုံးရက်စá€á€„်ရက်dmyယနေ့ %1$sပြက္á€á€’á€á€”် ထည့်သွင်းမှုမုဒ်သá€á€¯á€· ပြောင်းရန်ပြက္á€á€’á€á€”်မြင်ကွင်းသá€á€¯á€· ပြောင်းရန် á€á€á€¯á€·á€”á€á€¯á€„်သည်စာသား ထည့်သွင်းမှုမုဒ်သá€á€¯á€· ပြောင်းရန်နှစ်အလá€á€¯á€€á€ºá€™á€¼á€„်ကွင်းသá€á€¯á€· ပြောင်းရန် á€á€á€¯á€·á€”á€á€¯á€„်သည်မလုပ်á€á€±á€¬á€·OKစကားá€á€¾á€€á€ºá€€á€á€¯ ပြရန်
+ - %d novo obaveštenje
+ - %d nova obaveštenja
+ - %d novih obaveštenja
+ Skupite donju tabeluProÅ¡irite donju tabeluProÅ¡irite do polaIdentifikator za prevlaÄenje je dvaput dodirnutRuÄica za prevlaÄenjeUneti znakovi: %1$d od %2$dPrekoraÄeno je ograniÄenje broja znakova: %1$d od %2$dObriÅ¡i tekstGreÅ¡kaPrikaži padajucÌi meniIkona dijalogaKarticaIzaberite pre podne ili po podne%1$s sIzaberite sat%1$s sIzaberite minute%1$s minAMPreÄ‘ite u režim sata radi unosa vremena.SatMinutPMIzaberite vremePreÄ‘ite u režim unosa teksta radi unosa vremena.Novo obaveÅ¡tenjeUklonite %1$sNovih obaveÅ¡tenja: viÅ¡e od %1$dPreÄ‘ite na sledecÌi mesecPreÄ‘ite na prethodni mesecIzbor datuma poÄetka: %1$s – Izbor datuma zavrÅ¡etka: %2$sAktuelni izbor: %1$sniÅ¡taOtkažiPotvrdi%1$sIzaberite datumIzabrani datumKolona sa danima: %1$sDatum zavrÅ¡etka %1$sFormat je nevažecÌi.Primer: %1$sKoristite: %1$sNevažecÌi period.Idite na aktuelnu godinu %1$dIdite na godinu %1$dIzvan perioda: %1$sDatum poÄetka – %1$s%1$s – Datum zavrÅ¡etka%1$s–%2$sIzaberite periodDatum poÄetka – Datum zavrÅ¡etkaSaÄuvajDatum poÄetka %1$sDatumDatum zavrÅ¡etkaDatum poÄetkadmgDanas %1$sPreÄ‘ite na režim unosa u KalendaruDodirnite da biste preÅ¡li na prikaz kalendaraPreÄ‘ite na režim unosa tekstaDodirnite da biste preÅ¡li na prikaz godineOtkažiPotvrdiPrikaži lozinku
+ - %d 則新通知
+ - %d 則新通知
+ æ”¶åˆåº•部功能表展開底部功能表展開一åŠå·²è¼•觸兩下拖曳控點拖曳控點已輸入 %1$d 個å—å…ƒ (上é™ç‚º %2$d 個å—å…ƒ)è¶…éŽå—å…ƒé™åˆ¶ (å…± %1$d å—å…ƒï¼Œä¸Šé™ %2$d å—å…ƒ)清除文å—錯誤顯示下拉å¼é¸å–®å°è©±æ–¹å¡Šåœ–ç¤ºåˆ†é æ¨™ç±¤é¸å–ä¸Šåˆæˆ–下åˆ%1$s å°æ™‚è«‹é¸å–時段%1$s 點é¸å–åˆ†é˜æ•¸%1$s 分AM切æ›è‡³æ™‚é˜æ¨¡å¼ä¾†è¼¸å…¥æ™‚é–“ã€‚å°æ™‚分é˜PMé¸å–時間切æ›è‡³æ–‡å—輸入模å¼ä¾†è¼¸å…¥æ™‚間。新通知移除 %1$sè¶…éŽ %1$d 則新通知變更至下個月變更至上個月所é¸é–‹å§‹æ—¥æœŸï¼š%1$s - 所é¸çµæŸæ—¥æœŸï¼š%2$sç›®å‰é¸å–:%1$sç„¡å–æ¶ˆç¢ºå®š%1$sé¸å–æ—¥æœŸæ‰€é¸æ—¥æœŸæ˜ŸæœŸå¹¾è³‡æ–™æ¬„:%1$sçµæŸæ—¥æœŸï¼š%1$sæ ¼å¼ç„¡æ•ˆã€‚範例:%1$s使用:%1$s日期範åœç„¡æ•ˆã€‚å‰å¾€ä»Šå¹´ %1$då‰å¾€ %1$d 年超出日期範åœï¼š%1$s開始日期 – %1$s%1$s – çµæŸæ—¥æœŸ%1$s – %2$sé¸å–範åœé–‹å§‹æ—¥æœŸ - çµæŸæ—¥æœŸå„²å˜é–‹å§‹æ—¥æœŸï¼š%1$sæ—¥æœŸçµæŸæ—¥æœŸé–‹å§‹æ—¥æœŸdmy今天 %1$s切æ›è‡³æ—¥æ›†è¼¸å…¥æ¨¡å¼è¼•觸å³å¯åˆ‡æ›è‡³æ—¥æ›†æª¢è¦–ç•«é¢åˆ‡æ›è‡³æ–‡å—輸入模å¼è¼•觸å³å¯åˆ‡æ›è‡³å¹´ä»½æª¢è¦–ç•«é¢å–消確定顯示密碼
+
+
+
+
+
+ true#14000000#121212#CF6679#FFFFFF#000000#000000#000000#FFFFFF#BA86FC#000000#3700B3#03DAC6#03DAC6#121212#FFFFFF#B00020#000000#FFFFFF#FFFFFF#000000#000000#6200EE#3700B3#3700B3#03DAC6#018786#FFFFFF@android:color/transparent#14000000#44000000#0A000000#0F000000#1AFFFFFF#2EFFFFFF#323232#ff000000#ff000000#ff410e0b#ffffffff#ff601410#ff8c1d18#ffb3261e#ffdc362e#ffe46962#ffec928e#fff2b8b5#fff9dedc#fffceeee#fffffbf9#ff000000#ff1d1b20#ffffffff#ff211f26#ff2b2930#ff322f35#ff36343b#ff3b383e#ff48464c#ff0f0d13#ff605d64#ff79767d#ff141218#ff938f96#ffaea9b1#ffcac5cd#ffded8e1#ffe6e0e9#ffece6f0#fff3edf7#fff5eff7#fff7f2fa#fffef7ff#fffffbff#ff000000#ff1d1a22#ffffffff#ff322f37#ff49454f#ff605d66#ff79747e#ff938f99#ffaea9b4#ffcac4d0#ffe7e0ec#fff5eefa#fffffbfe#ff000000#ff21005d#ffffffff#ff381e72#ff4f378b#ff6750a4#ff7f67be#ff9a82db#ffb69df8#ffd0bcff#ffeaddff#fff6edff#fffffbfe#ff000000#ff1d192b#ffffffff#ff332d41#ff4a4458#ff625b71#ff7a7289#ff958da5#ffb0a7c0#ffccc2dc#ffe8def8#fff6edff#fffffbfe#ff000000#ff31111d#ffffffff#ff492532#ff633b48#ff7d5260#ff986977#ffb58392#ffd29dac#ffefb8c8#ffffd8e4#ffffecf1#fffffbfa#ffffffff@color/m3_ref_palette_neutral6@color/m3_ref_palette_error80@color/m3_ref_palette_error30@color/m3_ref_palette_neutral20@color/m3_ref_palette_primary40@color/m3_ref_palette_neutral90@color/m3_ref_palette_neutral90@color/m3_ref_palette_error20@color/m3_ref_palette_error90@color/m3_ref_palette_primary20@color/m3_ref_palette_primary90@color/m3_ref_palette_secondary20@color/m3_ref_palette_secondary90@color/m3_ref_palette_neutral90@color/m3_ref_palette_neutral_variant80@color/m3_ref_palette_tertiary20@color/m3_ref_palette_tertiary90@color/m3_ref_palette_neutral_variant60@color/m3_ref_palette_neutral_variant30@color/m3_ref_palette_primary80@color/m3_ref_palette_primary30@color/m3_ref_palette_secondary80@color/m3_ref_palette_secondary30@color/m3_ref_palette_neutral6@color/m3_ref_palette_neutral24@color/m3_ref_palette_neutral12@color/m3_ref_palette_neutral17@color/m3_ref_palette_neutral22@color/m3_ref_palette_neutral10@color/m3_ref_palette_neutral4@color/m3_ref_palette_neutral6@color/m3_ref_palette_neutral_variant30@color/m3_ref_palette_tertiary80@color/m3_ref_palette_tertiary30@color/m3_ref_palette_neutral98@color/m3_ref_palette_error40@color/m3_ref_palette_error90@color/m3_ref_palette_neutral95@color/m3_ref_palette_primary80@color/m3_ref_palette_neutral20@color/m3_ref_palette_neutral10@color/m3_ref_palette_error100@color/m3_ref_palette_error10@color/m3_ref_palette_primary100@color/m3_ref_palette_primary10@color/m3_ref_palette_secondary100@color/m3_ref_palette_secondary10@color/m3_ref_palette_neutral10@color/m3_ref_palette_neutral_variant30@color/m3_ref_palette_tertiary100@color/m3_ref_palette_tertiary10@color/m3_ref_palette_neutral_variant50@color/m3_ref_palette_neutral_variant80@color/m3_ref_palette_primary40@color/m3_ref_palette_primary90@color/m3_ref_palette_secondary40@color/m3_ref_palette_secondary90@color/m3_ref_palette_neutral98@color/m3_ref_palette_neutral98@color/m3_ref_palette_neutral94@color/m3_ref_palette_neutral92@color/m3_ref_palette_neutral90@color/m3_ref_palette_neutral96@color/m3_ref_palette_neutral100@color/m3_ref_palette_neutral87@color/m3_ref_palette_neutral_variant90@color/m3_ref_palette_tertiary40@color/m3_ref_palette_tertiary90@color/m3_ref_palette_primary10@color/m3_ref_palette_primary30@color/m3_ref_palette_secondary10@color/m3_ref_palette_secondary30@color/m3_ref_palette_tertiary10@color/m3_ref_palette_tertiary30@color/m3_ref_palette_primary90@color/m3_ref_palette_primary80@color/m3_ref_palette_secondary90@color/m3_ref_palette_secondary80@color/m3_ref_palette_tertiary90@color/m3_ref_palette_tertiary80#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#FFFFFF#61000000#00ffffff#52000000#6B000000#1F000000#0A000000#00000000#DE00000016dp64dp4dp168dp96dp14sp8dp56dp24dp96dp56dp10dp8dp1dp12sp8dp16dp64dp0.5dp6dp24dp40dp56dp6dp6dp16dp32dp24dp16dp32dp4dp280dp8dp8dp128dp- 1.0
0dp6dp0dp-1px-1px12dp14dp16dp14sp264dp72dp14sp12sp5dp14dp14dp28dp@dimen/m3_sys_elevation_level316dp24dp16dp16dp16dp96dp112dp112dp@dimen/m3_comp_top_app_bar_small_container_height@dimen/m3_comp_top_app_bar_large_container_height@dimen/m3_comp_top_app_bar_medium_container_height48dp24dp24dp8dp12dp24dp48dp1.5dp6dp@dimen/m3_comp_badge_size1.5dp3dp12dp@dimen/m3_comp_badge_large_size4dp2dp@dimen/m3_comp_navigation_bar_active_indicator_height4dp@dimen/m3_comp_navigation_bar_active_indicator_width16dp12dp@dimen/m3_comp_navigation_bar_container_height20dp@dimen/m3_sys_elevation_level1@dimen/m3_sys_elevation_level16dp4dp12dp16dp@dimen/m3_comp_bottom_app_bar_container_height4dp64dp8dp0dp0dp@dimen/m3_comp_elevated_button_container_elevation0dp16dp24dp10dp20dp0dp20dp4dp320dp6dp24dp24dp6dp1dp12dp16dp12dp12dp0dp1dp0dp6dp0dp7dp@dimen/m3_comp_elevated_card_container_elevation2dp@dimen/m3_sys_elevation_level01dp1dp2dp10dp1dp28dp56dp40dp1dp8dp-1dp7dp1dp2dp18dp32dp@dimen/m3_sys_elevation_level1@dimen/m3_sys_elevation_level01dp18dp16dp6dp@dimen/m3_sys_elevation_level280dp- 0.38
4dp1dp120dp128dp1dp@dimen/m3_sys_elevation_level1@dimen/m3_sys_elevation_level0@dimen/m3_sys_elevation_level124dp@dimen/m3_sys_elevation_level356dp@dimen/m3_sys_elevation_level3@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_elevation_level4@dimen/m3_sys_state_hover_state_layer_opacity24dp@dimen/m3_sys_elevation_level3@dimen/m3_sys_state_pressed_state_layer_opacity@dimen/m3_sys_elevation_level356dp@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_elevation_level4@dimen/m3_sys_state_hover_state_layer_opacity24dp96dp36dp@dimen/m3_sys_elevation_level3@dimen/m3_sys_state_pressed_state_layer_opacity40dp24dp@dimen/m3_sys_elevation_level2@dimen/m3_sys_elevation_level018dp@dimen/m3_sys_elevation_level0@dimen/m3_sys_state_dragged_state_layer_opacity@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity24dp@dimen/m3_sys_state_pressed_state_layer_opacity- 0.38
32dp@dimen/m3_sys_elevation_level1@dimen/m3_sys_elevation_level01dp18dp@dimen/m3_sys_elevation_level032dp1dp24dp18dp4dp@dimen/m3_sys_elevation_level232dp64dp@dimen/m3_sys_elevation_level280dp@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity24dp@dimen/m3_sys_state_pressed_state_layer_opacity360dp@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity24dp@dimen/m3_sys_elevation_level1@dimen/m3_sys_state_pressed_state_layer_opacity@dimen/m3_sys_elevation_level032dp56dp@dimen/m3_sys_elevation_level080dp@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity24dp@dimen/m3_sys_state_pressed_state_layer_opacity@dimen/m3_sys_elevation_level2- 0.12
1dp@dimen/m3_sys_elevation_level0- 0.12
24dp1dp1dp- 0.38
- 0.38
- 0.38
2dp1dp@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity3dp@dimen/m3_sys_state_pressed_state_layer_opacity@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity@dimen/m3_sys_state_pressed_state_layer_opacity24dp- 0.38
- 0.38
@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity@dimen/m3_sys_state_pressed_state_layer_opacity@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity@dimen/m3_sys_state_pressed_state_layer_opacity30dp@dimen/m3_sys_elevation_level356dp@dimen/m3_sys_state_hover_state_layer_opacity@dimen/m3_sys_state_pressed_state_layer_opacity@dimen/m3_sys_elevation_level356dp72dp2dp@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity@dimen/m3_sys_state_pressed_state_layer_opacity4dp32dp@dimen/m3_sys_elevation_level1@dimen/m3_sys_elevation_level1256dp@dimen/m3_sys_elevation_level1@dimen/m3_sys_elevation_level0- 0.38
- 0.38
- 0.12
4dp@dimen/m3_sys_elevation_level332dp@dimen/m3_sys_elevation_level1@dimen/m3_sys_elevation_level01dp18dp- 1
- 0.38
- 0.12
- 0.38
- 0.38
@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity@dimen/m3_sys_state_pressed_state_layer_opacity32dp52dp@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity@dimen/m3_sys_state_pressed_state_layer_opacity@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity@dimen/m3_sys_state_pressed_state_layer_opacity2dp@dimen/m3_sys_elevation_level3@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity1dp@dimen/m3_sys_state_pressed_state_layer_opacity@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity@dimen/m3_sys_state_pressed_state_layer_opacity152dp112dp@dimen/m3_sys_elevation_level064dp@dimen/m3_sys_elevation_level2@dimen/m3_sys_elevation_level38dp8dp20dp12dp56dp16dp8dp0dp30%2dp6dp36dp96dp4dp@dimen/m3_comp_menu_container_elevation14dp16dp4dp28dp12dp0dp12dp12dp0dp4dp28dp28dp@dimen/m3_comp_navigation_rail_container_width@dimen/m3_comp_navigation_rail_container_elevation@dimen/m3_comp_navigation_rail_icon_size@dimen/m3_comp_navigation_rail_active_indicator_height4dp@dimen/m3_comp_navigation_rail_active_indicator_width60dp8dp16dp4dp12dp@dimen/m3_sys_state_dragged_state_layer_opacity@dimen/m3_sys_state_focus_state_layer_opacity@dimen/m3_sys_state_hover_state_layer_opacity@dimen/m3_sys_state_pressed_state_layer_opacity@dimen/m3_sys_state_pressed_state_layer_opacity@dimen/m3_comp_search_bar_container_elevation@dimen/m3_comp_search_bar_container_height16dp16dp1dp4dp16dp16sp1dp@dimen/m3_comp_search_view_container_elevation@dimen/m3_comp_search_view_full_screen_header_container_height16dp@dimen/m3_comp_sheet_side_docked_modal_container_elevation@dimen/m3_comp_sheet_side_docked_standard_container_elevation@dimen/m3_comp_sheet_side_docked_container_width- 0.08
- 0.12
@dimen/m3_comp_slider_inactive_track_height2dp24dp40dp- 1.0
8dp0dp1dp3dp6dp8dp12dp- 0.3
- 0.8
- 0
- 0.2
- 0.1
- 0.1
- 0.7
- 1
- 0.4
- 1
- 0
- 1
- 0.4
- 0.2
- 0
- 1
- 0
- 0.2
- 0
- 1
- 0
- 1
- 0
- 1
- 0.3
- 1
- 0
- 1
- 0.2
- 0
- 0
- 1
- 0
- 0
- 0
- 1
- 0.16
- 0.10
- 0.08
- 0.10
2dp@dimen/m3_comp_time_picker_container_elevation20dp640dp80dp24dp96dp24dp44dp4dp4dp2dp15sp96dp12dp12dp52dp256dp-4dp2dp1dp- 0.38
- 0.12
- 0.87
- 0.6
12dp23dp8dp32dp4dp8dp4dp12dp8dp2dp245dp488dp56dp560dp340dp80dp24dp24dp80dp24dp4dp4dp8dp6dp10sp12dp12dp16dp60dp16dp5dp8dp0dp56dp4dp64dp0dp0dp2dp2dp2dp12dp8dp6dp- 0.07
320dp4dp16dp16dp4dp6dp8dp1dp4dp8dp8dp14sp0dp64dp52dp8dp0dp12dp15dp32dp3dp1dp1dp36dp24dp16dp12dp4dp1dp120dp128dp32dp12dp8dp24dp0dp480dp2dp0dp4dp48dp4dp8dp104dp20dp24dp100dp16dp28dp68dp18dp52dp8dp8dp88dp8dp24dp4dp5dp1dp8dp3dp14sp8dp-8dp8dp12dp0dp0dp6dp20dp20dp24dp12dp48dp120dp20dp12dp12dp0dp2dp6dp6dp48dp2dp6dp- 0.00
- 0.24
- 0.08
- 0.24
- 0.00
- 0.12
- 0.04
- 0.12
48dp24dp8dp0dp22dp14dp24dp8dp4dp14dp56dp72dp8dp14dp24dp8dp16dp12dp4dp2dp4dp4dp18dp40dp20dp40dp28dp2.5dp4dp3dp2dp4dp0dp4dp4dp24dp4dp13dp26dp1dp10dp1dp4dp16dp48dp- 0.5
4dp- 0.8
8dp8dp8dp16dp4dp16dp32dp@dimen/m3_comp_switch_track_height@dimen/m3_comp_switch_track_width4dp0dp4dp@dimen/m3_comp_outlined_text_field_outline_width@dimen/m3_comp_outlined_text_field_focus_outline_width16dp4dp16dp4dp56dp14dp4dp32dp32dp12dp30dp- @drawable/material_ic_keyboard_arrow_right_black_24dp
- @drawable/material_ic_keyboard_arrow_left_black_24dp
1501502300320999100100751201007008009001000450500550600250300350400501001502000000000300350200250751500410010011375120100@integer/m3_sys_motion_duration_medium1@integer/m3_sys_motion_duration_short3@integer/m3_sys_motion_duration_short2@integer/m3_sys_motion_duration_short216323252250210200
+ - %d new notification
+ - %d new notifications
+ com.google.android.material.appbar.AppBarLayout$ScrollingViewBehaviorcom.google.android.material.bottomsheet.BottomSheetBehaviorCollapse the bottom sheetExpand the bottom sheetExpand halfwayDrag handle double-tappedDrag handleCharacters entered %1$d of %2$dCharacter limit exceeded %1$d of %2$d%1$d/%2$dClear text
+ Error: invalid
+ ErrorShow dropdown menucom.google.android.material.transformation.FabTransformationScrimBehaviorcom.google.android.material.transformation.FabTransformationSheetBehaviorcom.google.android.material.behavior.HideBottomViewOnScrollBehaviorDialog IconTab%1$s%2$ssans-serif-mediumsans-serifsans-serif-mediumsans-serifpath(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1)cubic-bezier(0.3, 0, 0.8, 0.2)cubic-bezier(0.1, 0.7, 0.1, 1)M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1cubic-bezier(0.4, 0, 0.2, 1)cubic-bezier(0.4, 0, 1, 1)cubic-bezier(0, 0, 0.2, 1)cubic-bezier(0, 0, 1, 1)cubic-bezier(0.2, 0, 0, 1)cubic-bezier(0.3, 0, 1, 1)cubic-bezier(0, 0, 0, 1):Select AM or PM%1$s hoursSelect hour%1$s o\'clockSelect minutes%1$s minutescubic-bezier(0.4, 0.0, 1.0, 1.0)cubic-bezier(0.0, 0.0, 0.2, 1.0)path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1)cubic-bezier(0.0, 0.0, 1.0, 1.0)cubic-bezier(0.4, 0.0, 0.2, 1.0)Range endRange startValueAMSwitch to clock mode for the time input.HourMinutePMSelect timeSwitch to text input mode for the time input.New notificationM14,18.2 11.4,15.6 10,17 14,21 22,13 20.6,11.6ziconM13.4,15 11,15 11,17 13.4,17 21,17 21,15zicon pathM23,7H9C7.9,7,7,7.9,7,9v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9C25,7.9,24.1,7,23,7zbuttonbutton pathM23,7H9C7.9,7,7,7.9,7,9v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9C25,7.9,24.1,7,23,7z M23,23H9V9h14V23z
+ Checked
+
+ Partially checked
+
+ Not checked
+ Remove %1$sMore than %1$d new notifications%1$d%2$sChange to next monthChange to previous monthStart date selection: %1$s – End date selection: %2$sCurrent selection: %1$snoneCancelOK%1$sSelect DateSelected date%1$sEnd date %1$sInvalid format.Example: %1$sUse: %1$sInvalid range.Navigate to current year %1$dNavigate to year %1$dOut of range: %1$sStart date – %1$s%1$s – End date%1$s – %2$sSelect RangeStart date – End dateSaveStart date %1$sDateEnd dateStart datedmyToday %1$sSwitch to calendar input modeTap to switch to Calendar viewSwitch to text input modeTap to switch to year viewcircle_groupM4,16 A12,12 0 0,1 16,4 H16 A12,12 0 0,1 16,28 H16 A12,12 0 0,1 4,16M0,16 A11,11 0 0,1 11,5 H21 A11,11 0 0,1 21,27 H11 A11,11 0 0,1 0,16circleM2,16 A14,14 0 0,1 16,2 H16 A14,14 0 0,1 16,30 H16 A14,14 0 0,1 2,16M8,16 A8,8 0 0,1 16,8 H16 A8,8 0 0,1 16,24 H16 A8,8 0 0,1 8,16M1,16 A15,15 0 0,1 16,1 H36 A15,15 0 0,1 36,31 H16 A15,15 0 0,1 1,16M0,16 A16,16 0 0,1 16,0 H36 A16,16 0 0,1 36,32 H16 A16,16 0 0,1 0,16CancelOKShow passwordM12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 ZM2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 ZM3.27,4.27 L19.74,20.74
+ com.google.android.material.search.SearchBar$ScrollingViewBehavior
+ Clear textBackSide Sheetcom.google.android.material.sidesheet.SideSheetBehavior
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ?attr/shapeAppearanceCornerSmall?attr/textAppearanceLabelLarge?attr/colorError?attr/colorOnError?attr/textAppearanceLabelSmall?attr/colorSurfaceContainer?attr/colorPrimary?attr/colorOnSurface?attr/colorSurface?attr/colorError?attr/colorOnError?attr/colorOnPrimary?attr/colorOnSurfaceVariant?attr/colorPrimary?attr/colorSurfaceContainerHigh?attr/shapeAppearanceCornerExtraLarge?attr/textAppearanceBodyLarge?attr/colorPrimary?attr/colorOnPrimary?attr/colorPrimary?attr/colorPrimary?attr/colorOnSurface?attr/colorOnSurfaceVariant?attr/textAppearanceHeadlineLarge?attr/colorOnSurfaceVariant?attr/textAppearanceLabelLarge?attr/colorSecondaryContainer?attr/textAppearanceTitleLarge?attr/colorOnSurfaceVariant?attr/textAppearanceTitleSmall?attr/colorOnSurface?attr/textAppearanceBodyLarge?attr/colorPrimary?attr/colorOnPrimary?attr/colorOnSurfaceVariant?attr/colorSurfaceContainerHigh?attr/shapeAppearanceCornerExtraLarge?attr/colorOnSurface?attr/textAppearanceHeadlineSmall?attr/colorOnSurfaceVariant?attr/textAppearanceBodyMedium?attr/colorOutlineVariant?attr/colorSurfaceContainerLow?attr/colorSurfaceContainerLow?attr/shapeAppearanceCornerMedium?attr/colorPrimaryContainer?attr/shapeAppearanceCornerLarge?attr/colorOnPrimaryContainer?attr/textAppearanceLabelLarge?attr/colorSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorSurfaceContainerHigh?attr/colorPrimary?attr/colorTertiaryContainer?attr/colorOnTertiaryContainer?attr/colorPrimaryContainer?attr/shapeAppearanceCornerLarge?attr/colorOnPrimaryContainer?attr/shapeAppearanceCornerExtraLarge?attr/shapeAppearanceCornerMedium?attr/colorSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorSurfaceContainerHigh?attr/colorPrimary?attr/colorTertiaryContainer?attr/colorOnTertiaryContainer?attr/colorSurfaceContainer?attr/textAppearanceBodyLarge?attr/colorPrimary?attr/colorOnPrimary?attr/textAppearanceLabelLarge?attr/colorSurfaceContainerHighest?attr/shapeAppearanceCornerMedium?attr/colorPrimary?attr/colorOnPrimary?attr/colorPrimary?attr/colorSurfaceContainerHighest?attr/shapeAppearanceCornerExtraSmall?attr/colorError?attr/colorError?attr/colorError?attr/textAppearanceBodyLarge?attr/textAppearanceBodySmall?attr/colorSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorOnSurfaceVariant?attr/shapeAppearanceCornerSmall?attr/textAppearanceLabelLarge?attr/colorPrimary?attr/colorOnSurfaceVariant?attr/shapeAppearanceCornerSmall?attr/textAppearanceLabelLarge?attr/colorPrimary?attr/colorSurfaceContainerHighest?attr/colorSurfaceContainer?attr/colorSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSecondaryContainer?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSecondaryContainer?attr/colorSecondaryContainer?attr/colorOnSurface?attr/colorOnSecondaryContainer?attr/colorOnSurface?attr/colorOnSurface?attr/colorSurfaceContainer?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurfaceVariant?attr/colorOnSurfaceVariant?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/textAppearanceLabelMedium?attr/colorOnSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorOnSecondaryContainer?attr/colorOnSurfaceVariant?attr/textAppearanceTitleSmall?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurfaceVariant?attr/colorOnSurfaceVariant?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSecondaryContainer?attr/textAppearanceLabelLarge?attr/colorSurfaceContainerLow?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSecondaryContainer?attr/colorSecondaryContainer?attr/colorOnSurface?attr/colorOnSurface?attr/colorSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurfaceVariant?attr/colorOnSurfaceVariant?attr/colorOnSurface?attr/textAppearanceLabelMedium?attr/colorSurfaceContainer?attr/colorPrimary?attr/textAppearanceBodyLarge?attr/colorOnSurface?attr/colorPrimary?attr/colorOutline?attr/colorOutline?attr/colorOutline?attr/colorSurface?attr/shapeAppearanceCornerMedium?attr/colorOutline?attr/colorOutlineVariant?attr/colorOnSurface?attr/colorOutlineVariant?attr/colorOutlineVariant?attr/colorOutlineVariant?attr/colorPrimary?attr/shapeAppearanceCornerExtraSmall?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorError?attr/colorError?attr/colorError?attr/colorOnSurface?attr/colorPrimary?attr/colorPrimary?attr/colorOnSurfaceVariant?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurfaceVariant?attr/colorOnSurface?attr/textAppearanceBodyLarge?attr/colorOnSurfaceVariant?attr/colorOutline?attr/colorOnSurfaceVariant?attr/textAppearanceBodySmall?attr/textAppearanceBodySmall?attr/colorPrimary?attr/colorPrimary?attr/colorPrimary?attr/colorPrimary?attr/colorSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorPrimary?attr/colorPrimary?attr/colorOnSurfaceVariant?attr/colorPrimary?attr/colorOnSurfaceVariant?attr/textAppearanceTitleSmall?attr/colorOnSurface?attr/colorOnSurface?attr/colorPrimary?attr/colorPrimary?attr/colorPrimary?attr/colorPrimary?attr/colorPrimary?attr/colorPrimary?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurfaceVariant?attr/colorOnSurface?attr/colorPrimary?attr/colorSurfaceContainerHigh?attr/colorOnSurface?attr/colorOnSurfaceVariant?attr/colorOnSurface?attr/textAppearanceBodyLarge?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurfaceVariant?attr/colorOnSurfaceVariant?attr/textAppearanceBodyLarge?attr/colorOnSurfaceVariant?attr/colorSurfaceContainerHigh?attr/colorOutline?attr/shapeAppearanceCornerExtraLarge?attr/colorOnSurface?attr/textAppearanceBodyLarge?attr/colorOnSurface?attr/colorOnSurfaceVariant?attr/textAppearanceBodyLarge?attr/colorOnSurfaceVariant?attr/colorPrimary?attr/colorOnSurface?attr/colorSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurfaceVariant?attr/textAppearanceTitleSmall?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurfaceVariant?attr/colorSurfaceContainerLow?attr/shapeAppearanceCornerExtraLarge?attr/colorOnSurfaceVariant?attr/shapeAppearanceCornerLarge?attr/colorSurfaceContainerLow?attr/shapeAppearanceCornerLarge?attr/colorSurface?attr/colorPrimary?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorPrimary?attr/colorSurfaceContainerHighest?attr/colorPrimary?attr/colorOnPrimary?attr/colorSurfaceInverse?attr/shapeAppearanceCornerExtraSmall?attr/colorOnSurfaceInverse?attr/textAppearanceBodyMedium?attr/shapeAppearanceCornerSmall?attr/textAppearanceLabelLarge?attr/colorSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorSurfaceContainerHighest?attr/colorSurfaceContainerHighest?attr/colorOnSurface?attr/colorPrimaryContainer?attr/colorOnPrimaryContainer?attr/colorPrimary?attr/colorPrimary?attr/colorOnPrimary?attr/colorPrimaryContainer?attr/colorOnPrimaryContainer?attr/colorPrimary?attr/colorPrimary?attr/colorOnPrimaryContainer?attr/colorPrimaryContainer?attr/colorOnPrimaryContainer?attr/colorPrimary?attr/colorPrimary?attr/colorPrimary?attr/colorOnSurfaceVariant?attr/colorSurfaceContainerHighest?attr/colorOnSurface?attr/colorSurfaceContainerHighest?attr/colorOutline?attr/colorOutline?attr/colorOnSurfaceVariant?attr/colorSurfaceContainerHighest?attr/colorOnSurface?attr/colorSurfaceContainerHighest?attr/colorOutline?attr/colorSurfaceContainerHighest?attr/colorOnSurfaceVariant?attr/colorSurfaceContainerHighest?attr/colorOnSurface?attr/colorSurfaceContainerHighest?attr/colorOutline?attr/colorSurfaceContainerHighest?attr/colorOutline?attr/colorPrimary?attr/colorPrimary?attr/colorPrimary?attr/textAppearanceLabelLarge?attr/colorPrimary?attr/shapeAppearanceCornerSmall?attr/colorPrimary?attr/colorOnSurface?attr/colorOnSurfaceVariant?attr/textAppearanceBodySmall?attr/colorSurfaceContainerHighest?attr/colorPrimary?attr/colorSurfaceContainerHigh?attr/shapeAppearanceCornerExtraLarge?attr/colorOnSurfaceVariant?attr/textAppearanceLabelMedium?attr/shapeAppearanceCornerSmall?attr/textAppearanceTitleMedium?attr/colorOutline?attr/colorTertiaryContainer?attr/colorOnTertiaryContainer?attr/colorOnTertiaryContainer?attr/colorOnTertiaryContainer?attr/colorOnTertiaryContainer?attr/colorOnSurfaceVariant?attr/colorOnSurfaceVariant?attr/colorOnSurfaceVariant?attr/colorOnSurfaceVariant?attr/shapeAppearanceCornerSmall?attr/textAppearanceDisplayLarge?attr/colorPrimaryContainer?attr/colorOnPrimaryContainer?attr/colorOnPrimaryContainer?attr/colorOnPrimaryContainer?attr/colorOnPrimaryContainer?attr/colorOnSurface?attr/textAppearanceDisplayLarge?attr/colorSurfaceContainerHighest?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/colorOnSurface?attr/textAppearanceHeadlineMedium?attr/colorOnSurface?attr/textAppearanceHeadlineSmall?attr/colorSurface?attr/colorOnSurface?attr/textAppearanceTitleLarge?attr/colorOnSurface?attr/colorSurfaceContainer?attr/colorOnSurfaceVariant?attr/colorPrimary?attr/colorPrimary
+ - %d nuwe kennisgewing
+ - %d nuwe kennisgewings
+ Vou die onderste blad inVou die onderste blad uitVou halfpad uitHet op sleephandvatsel gedubbeltikSleephandvatselKarakters ingevoer: %1$d van %2$dKarakterlimiet oorskry %1$d van %2$dVee teks uitFoutWys aftrekkieslysDialoogikoonOortjieKies vm. of nm.%1$s uurKies uur%1$s-uurKies minute%1$s minuteVM.Skakel oor na horlosiemodus vir die tydinvoer.UurMinuutNM.Kies tydSkakel oor na teksmodus vir die tydinvoer.Nuwe kennisgewingVerwyder %1$sMeer as %1$d nuwe kennisgewingsVerander na volgende maandVerander na vorige maandKeuse van begindatum: %1$s – Keuse van einddatum: %2$sHuidige keuse: %1$sgeenKanselleerOK%1$sKies datumGekose datumKolom van dae: %1$sEinddatum %1$sOngeldige formaat.Voorbeeld: %1$sGebruik: %1$sOngeldige reeks.Gaan na huidige jaar %1$dGaan na jaar %1$dBuite reeks: %1$sBegindatum – %1$s%1$s – Einddatum%1$s-%2$sKies datumreeksBegindatum – EinddatumStoorBegindatum %1$sDatumEinddatumBegindatumdmjVandag %1$sSkakel oor na kalenderinvoermodusTik om na kalenderaansig oor te skakelSkakel oor na teksinvoermodusTik om na jaaraansig oor te skakelKanselleerOKWys wagwoord
+ - %d nowe powiadomienie
+ - %d nowe powiadomienia
+ - %d nowych powiadomień
+ - %d nowego powiadomienia
+ Zwiń planszę dolnąRozwiń planszę dolnąRozwiń do połowyDwukrotnie kliknięto uchwyt do przeciąganiaUchwyt do przeciągania%1$d z %2$d znakówPrzekroczono limit znaków (%1$d z %2$d)Wyczyść tekstBłądPokaż menuIkona oknaKartaWybierz: przed południem czy po południu%1$s godz.Wybierz godzinę%1$sWybierz minuty%1$s minutAMAby wprowadzić czas, włącz tryb zegara.GodzinaMinutaPMOkreśl czasAby wprowadzić czas, włącz tryb wprowadzania tekstu.Nowe powiadomienieUsuń: (%1$s)Liczba nowych powiadomień przekracza %1$dZmień na następny miesiącZmień na poprzedni miesiącWybrana data rozpoczęcia: %1$s – wybrana data zakończenia: %2$sBieżący wybór: %1$sbrakAnulujOK%1$sWybierz datęWybrana dataKolumna z dniami: %1$sData zakończenia %1$sNieprawidłowy format.Przykład: %1$sUżyj formatu: %1$sNieprawidłowy zakres.Przejdź do bieżącego roku %1$dPrzejdź do roku %1$dPoza zakresem: %1$sData rozpoczęcia – %1$s%1$s – data zakończenia%1$s–%2$sWybierz zakresData rozpoczęcia – data zakończeniaZapiszData rozpoczęcia %1$sDataData zakończeniaData rozpoczęciadmrDzisiaj %1$sWłącz kalendarzowy tryb wprowadzaniaKliknij, aby przełączyć się na widok kalendarzaWłącz tekstowy tryb wprowadzaniaKliknij, aby przełączyć się na widok rokuAnulujOKPokaż hasło
+ - %d naujas pranešimas
+ - %d nauji pranešimai
+ - %d naujo pranešimo
+ - %d naujų pranešimų
+ Sutraukti apatinį lapÄ…IÅ¡skleisti apatinį lapÄ…IÅ¡skleisti iki pusÄ—sVilkimo rankenÄ—lÄ— dukart paliestaVilkimo rankenÄ—lÄ—Ä®vesta simbolių: %1$d iÅ¡ %2$dVirÅ¡ytas simbolių skaiÄius: %1$d iÅ¡ %2$dIÅ¡valyti tekstÄ…KlaidaRodyti iÅ¡skleidžiamÄ…jį meniuDialogo lango piktogramaSkirtukasPasirinkite „iki pietų“ arba „po pietų“%1$s val.Pasirinkite valandÄ…%1$s val.Pasirinkite minutes%1$s min.AMLaiko įvestį pateikti perjungus į laikrodžio režimÄ….ValandaMinutÄ—PMPasirinkite laikÄ…Laiko įvestį pateikti perjungus į teksto įvesties režimÄ….Naujas praneÅ¡imasPaÅ¡alinti %1$sNaujų praneÅ¡imų: daugiau nei %1$dPakeisti į kitÄ… mÄ—nesįPakeisti į ankstesnį mÄ—nesįPradžios datos pasirinkimas: %1$s – Pabaigos datos pasirinkimas: %2$sDabartinis pasirinkimas: %1$snÄ—raAtÅ¡auktiGerai%1$sPasirinkite datÄ…Pasirinkta dataDienų stulpelis: %1$sPabaigos data %1$sNetinkamas formatas.Pavyzdys: %1$sNaudoti: %1$sNetinkamas diapazonas.Eiti į dabartinius metus %1$dEiti į %1$d metusNepatenka į diapazonÄ…: %1$sPradžios data–%1$s%1$s–pabaigos data%1$s–%2$sPasirinkite diapazonÄ…Pradžios data–pabaigos dataIÅ¡saugotiPradžios data %1$sDataPabaigos dataPradžios datadmyÅ iandien %1$sPerjungti į kalendoriaus įvesties režimÄ…Palieskite, kad perjungtumÄ—te į Kalendoriaus rodinįPerjungti į teksto įvesties režimÄ…Palieskite, kad perjungtumÄ—te į metų rodinįAtÅ¡auktiGeraiRodyti slaptažodį
+ - %d nouvelle notification
+ - %d nouvelles notifications
+ Réduire la zone de contenu dans le bas de l\'écranDévelopper la zone de contenu dans le bas de l\'écranDévelopper à moitiéPoignée de déplacement touchée deux foisFaire glisser la poignéeCaractères entrés : %1$d sur %2$dLimite de caractère dépassée : %1$d sur %2$dEffacer le texteErreurAfficher le menu déroulantIcône de boîte de dialogueOngletSélectionner AM ou PM%1$s heure(s)Sélectionner l\'heure%1$s heuresSélectionnez les minutes%1$s minutesAMPasser au mode Horloge pour entrer l\'heure.HeureMinutePMSélectionner l\'heurePasser au mode Entrée de texte pour entrer l\'heure.Nouvelle notificationSupprimer %1$sPlus de %1$d nouvelles notificationsPasser au mois suivantPasser au mois précédentSélection de la date de début : %1$s – Sélection de la date de fin : %2$sSélection actuelle : %1$saucuneAnnulerOK%1$sSélectionnez la dateDate sélectionnéeColonne des jours : %1$sDate de fin : %1$sFormat incorrectExemple : %1$sUtiliser : %1$sPlage incorrecte.Naviguer à l\'année en cours %1$dNaviguer vers l\'année %1$dHors de la plage : %1$sDu (date de début) au %1$sDu %1$s au (date de fin)Du %1$s au %2$sSélectionnez la plageDu (date de début) au (date de fin)EnregistrerDate de début : %1$sDateDate de finDate de débutjma%1$s Aujourd\'huiPasser au mode d\'entrée AgendaToucher pour passer à la vue du calendrierPasser au mode d\'entrée TexteToucher pour passer à la vue de l\'annéeAnnulerOKAfficher le mot de passe24dp36dp
+ - %d ta yangi bildirishnoma
+ - %d ta yangi bildirishnoma
+ Quyi ekranni yigʻishQuyi ekranni kengaytirishYarmiga kengaytirishSurish dastagi ikki marta bosildiSurish dastagi%1$d/%2$d ta belgi kiritildiHarflar soni (%1$d) cheklovdan (%2$d) oshib ketdiMatnni tozalashXatoPastga ochiluvchi menyuni ochishMuloqot ikonkasiTab : VaraqTushdan oldin yoki keyinligini tanlang%1$s soatSoatni tanlang%1$s soatDaqiqalarni tanlash%1$s daqiqaAMVaqtni kiritish uchun soat rejimiga o‘ting.SoatDaqiqaPMVaqtni tanlangVaqtni kiritish uchun matn kiritish rejimiga o‘ting.Yangi bildirishnomaOlib tashlash: %1$sYana %1$d dan ortiq bildirishnomaKeyingi oyga oʻzgartirishAvvalgi oyga oʻzgartirishBoshlanish sanasini tanlash: %1$s – Tugash sanasini tanlash: %2$sJoriy tanlov: %1$shech qandayBekor qilishOK%1$sSanani tanlangTanlangan sanaKunlar ustuni: %1$sTugash sanasi: %1$sYaroqsiz format.Masalan: %1$sIshlatish: %1$sYaroqsiz oraliq.Joriy yilga oʻtish %1$dYilga nazar solish: %1$dChegaradan tashqari: %1$sBoshlanish sanasi – %1$s%1$s – Tugash sanasi%1$s – %2$sOraliqni tanlangBoshlanishi – TugashiSaqlashBoshlanish sanasi: %1$sSanaTugash sanasiBoshlanish sanasikoyBugun %1$sTaqvim kiritish rejimiga oʻtishTaqvim shaklida koʻrish uchun bosingMatn kiritish rejimiga oʻtishYillik shaklda koʻrish uchun bosingBekor qilishOKParol ochiq tursin- @drawable/material_ic_keyboard_arrow_left_black_24dp
- @drawable/material_ic_keyboard_arrow_right_black_24dp
+ - %d new notification
+ - %d new notifications
+ Collapse the bottom sheetExpand the bottom sheetExpand halfwayDrag handle double-tappedDrag handle%2$dটাৰ à¦à¦¿à¦¤à§°à¦¤ %1$dটা বৰà§à¦£ লিখা হৈছে%2$dটাৰ à¦à¦¿à¦¤à§°à¦¤ %1$dটা বৰà§à¦£à§° সীমা অতিকà§à§°à¦® কৰিছেClear textErrorShow dropdown menuDialog IconTabSelect AM or PM%1$s hoursSelect hour%1$s o\'clockমিনিট বাছনি কৰক%1$s minutesAMসময়ৰ ইনপà§à¦Ÿà§° বাবে ঘড়ী ম\'ডলৈ যাওক।HourMinutePMSelect timeসময়ৰ ইনপà§à¦Ÿà§° বাবে পাঠৰ ইনপà§à¦Ÿ ম\'ডলৈ যাওক।New notification%1$sক আà¦à¦¤à§°à¦¾à¦“কMore than %1$d new notificationsChange to next monthChange to previous monthStart date selection: %1$s – End date selection: %2$sCurrent selection: %1$snoneCancelOK%1$sSelect DateSelected dateColumn of days: %1$sEnd date %1$sInvalid format.Example: %1$sUse: %1$sInvalid range.Navigate to current year %1$dNavigate to year %1$dOut of range: %1$sStart date – %1$s%1$s – End date%1$s – %2$sSelect RangeStart date – End dateSaveStart date %1$sDateEnd dateStart datedmyToday %1$sSwitch to calendar input modeTap to switch to Calendar viewSwitch to text input modeTap to switch to year viewCancelOKপাছৱৰà§à¦¡ দেখà§à§±à¦¾à¦“ক
+ - %d notificación nueva
+ - %d notificaciones nuevas
+ Ocultar la hoja inferiorMostrar la hoja inferiorDesplegar hasta la mitadControlador de arrastre tocado dos vecesControlador de arrastreCaracteres introducidos: %1$d de %2$dLÃmite de caracteres superado (%1$d de %2$d)Borrar textoErrorMostrar menú desplegableIcono del cuadro de diálogoPestañaSelecciona AM o PM%1$s horasSeleccionar hora%1$s en puntoSeleccionar minutos%1$s minutosA.M.Cambia al modo de reloj para escribir la hora.HoraMinutoP.M.Seleccionar la horaCambia al modo de introducción de texto para escribir la hora.Notificación nuevaRetirar %1$sMás de %1$d notificaciones nuevasCambiar al mes siguienteCambiar al mes anteriorSelección de fecha de inicio: %1$s – Selección de fecha de finalización: %2$sSelección actual: %1$sningunaCancelarAceptar%1$sSelecciona una fechaFecha seleccionadaColumna de dÃas: %1$sFecha de finalización: %1$sFormato no válido.Ejemplo: %1$sUsar: %1$sEl periodo no es válido.Ir al año actual, %1$dIr al año %1$dFuera del periodo válido: %1$sFecha de inicio–%1$s%1$s–Fecha de finalización%1$s – %2$sSelecciona un periodoFecha de inicio–Fecha de finalizaciónGuardarFecha de inicio: %1$sFechaFecha de finalizaciónFecha de iniciodmaHoy, %1$sCambiar al modo de introducción CalendarioToca para cambiar a la vista de calendarioCambiar al modo de introducción TextoToca para cambiar a la vista de añoCancelarAceptarMostrar contraseña
+ - Arifa %d mpya
+ - Arifa %d mpya
+ Kunja safu ya chiniPanua safu ya chiniPanua nusuAikoni ya buruta imeguswa mara mbiliAikoni ya burutaUmeweka herufi %1$d kati ya %2$dUmepitisha idadi ya juu ya herufi %1$d kati ya %2$dFuta maandishiHitilafuOnyesha menyu kunjuziAikoni ya KidirishaKichupoChagua AM au PMSaa %1$sChagua saaSaa %1$s kamiliChagua dakikaDakika %1$sAMBadilisha umbo liwe la saa ya mishale wakati wa kuweka muda.SaaDakikaPMChagua wakatiBadilisha iwe katika hali ya maandishi wakati wa kuweka muda.Arifa mpyaOndoa %1$sZaidi ya arifa %1$d mpyaNenda kwenye mwezi unaofuataRudi kwenye mwezi uliotanguliaUteuzi wa tarehe ya kuanza: %1$s - Uteuzi wa tarehe ya mwisho: %2$sUteuzi wa sasa: %1$shakunaGhairiSawa%1$sChagua TareheTarehe uliyochaguaSafu wima ya siku: %1$sTarehe ya kumaliza %1$sMuundo si sahihiMfano: %1$sTumia: %1$sKipindi si sahihi.Sogeza kwenye mwaka huu %1$dSogeza kwenye mwaka wa %1$dNje ya kipindi: %1$sTarehe ya kuanza – %1$s%1$s – Tarehe ya mwisho%1$s – %2$sChagua Kipindi cha TareheTarehe ya kuanza – Tarehe ya mwishoHifadhiTarehe ya kuanza %1$sTareheTarehe ya mwishoTarehe ya kuanzadmyLeo %1$sTumia programu ya kuingiza data kwenye kalendaGusa ili ubadilishe kwenda mwonekano wa KalendaTumia programu ya kuingiza data ya maandishiGusa ili ubadilishe kwenda mwonekano wa mwakaGhairiSawaOnyesha nenosiri
+ - %d ਨਵੀਂ ਸੂਚਨਾ
+ - %d ਨਵੀਆਂ ਸੂਚਨਾਵਾਂ
+ ਹੇਠਲੀ ਸ਼ੀਟ ਨੂੰ ਸਮੇਟੋਹੇਠਲੀ ਸ਼ੀਟ ਦਾ ਵਿਸਤਾਰ ਕਰੋਅੱਧ ਤੱਕ ਵਿਸਤਾਰ ਕਰੋਘਸੀਟਣ ਵਾਲੇ ਹੈਂਡਲ \'ਤੇ ਡਬਲ-ਟੈਪ ਕੀਤਾ ਗਿਆਘਸੀਟਣ ਵਾਲਾ ਹੈਂਡਲ%2$d ਵਿੱਚੋਂ %1$d ਅੱਖਰ-ਚਿੰਨà©à¨¹ ਦਾਖਲ ਕੀਤੇ ਗà¨à¨…ੱਖਰ-ਚਿੰਨà©à¨¹ ਸੀਮਾ %2$d ਤੋਂ %1$d ਵਧੀਲਿਖਤ ਕਲੀਅਰ ਕਰੋਗੜਬੜਡà©à¨°à©Œà¨ª-ਡਾਊਨ ਮੀਨੂ ਦਿਖਾਓਵਿੰਡੋ ਦਾ ਪà©à¨°à¨¤à©€à¨•ਟੈਬAM ਜਾਂ PM ਚà©à¨£à©‹%1$s ਘੰਟੇਸਮਾਂ ਚà©à¨£à©‹%1$s ਵਜੇਮਿੰਟ ਚà©à¨£à©‹%1$s ਮਿੰਟAMਸਮਾਂ ਇਨਪà©à©±à¨Ÿ ਕਰਨ ਲਈ ਘੜੀ ਮੋਡ \'ਤੇ ਸਵਿੱਚ ਕਰੋ।ਘੰਟਾਮਿੰਟPMਸਮਾਂ ਚà©à¨£à©‹à¨¸à¨®à¨¾à¨‚ ਇਨਪà©à©±à¨Ÿ ਕਰਨ ਲਈ ਲਿਖਤ ਇਨਪà©à©±à¨Ÿ ਮੋਡ \'ਤੇ ਸਵਿੱਚ ਕਰੋ।ਨਵੀਂ ਸੂਚਨਾ%1$s ਹਟਾਓ%1$d ਤੋਂ ਵੱਧ ਨਵੀਆਂ ਸੂਚਨਾਵਾਂਅਗਲੇ ਮਹੀਨੇ \'ਤੇ ਜਾਓਪਿਛਲੇ ਮਹੀਨੇ \'ਤੇ ਜਾਓਸ਼à©à¨°à©‚ਆਤੀ ਤਾਰੀਖ ਦੀ ਚੋਣ: %1$s – ਸਮਾਪਤੀ ਤਾਰੀਖ ਦੀ ਚੋਣ: %2$sਮੌਜੂਦਾ ਚੋਣ: %1$sਕੋਈ ਨਹੀਂਂਰੱਦ ਕਰੋਠੀਕ ਹੈ%1$sਤਾਰੀਖ ਚà©à¨£à©‹à¨šà©à¨£à©€ ਗਈ ਤਾਰੀਖਦਿਨਾਂ ਦਾ ਕਾਲਮ: %1$sਸਮਾਪਤੀ ਤਾਰੀਖ %1$sਅਵੈਧ ਫਾਰਮੈਟ।ਉਦਾਹਰਨ: %1$sਵਰਤੋ: %1$sਅਵੈਧ ਰੇਂਜ।ਮੌਜੂਦਾ ਸਾਲ \'ਤੇ ਜਾਓ %1$dਸਾਲ %1$d \'ਤੇ ਨੈਵੀਗੇਟ ਕਰੋਰੇਂਜ ਤੋਂ ਬਾਹਰ: %1$sਸ਼à©à©à¨°à©‚ਆਤੀ ਤਾਰੀਖ – %1$s%1$s – ਸਮਾਪਤੀ ਤਾਰੀਖ%1$s – %2$sਰੇਂਜ ਚà©à¨£à©‹à¨¸à¨¼à©à¨°à©‚ਆਤੀ ਤਾਰੀਖ – ਸਮਾਪਤੀ ਤਾਰੀਖਰੱਖਿਅਤ ਕਰੋਸ਼à©à¨°à©‚ਆਤੀ ਤਾਰੀਖ %1$sਤਾਰੀਖਸਮਾਪਤੀ ਤਾਰੀਖਸ਼à©à¨°à©‚ਆਤੀ ਤਾਰੀਖdmyਅੱਜ %1$sਕੈਲੰਡਰ ਇਨਪà©à©±à¨Ÿ ਮੋਡ \'ਤੇ ਜਾਓCalendar ਦà©à¨°à¨¿à¨¸à¨¼ \'ਤੇ ਸਵਿੱਚ ਕਰਨ ਲਈ ਟੈਪ ਕਰੋਲਿਖਤ ਇਨਪà©à©±à¨Ÿ ਮੋਡ \'ਤੇ ਜਾਓਸਾਲ ਦà©à¨°à¨¿à¨¸à¨¼ \'ਤੇ ਸਵਿੱਚ ਕਰਨ ਲਈ ਟੈਪ ਕਰੋਰੱਦ ਕਰੋਠੀਕ ਹੈਪਾਸਵਰਡ ਦਿਖਾਓ0dp22dp48dp2dp2dp48dp48dp0dp
+ - %d nieuwe melding
+ - %d nieuwe meldingen
+ Het blad onderaan samenvouwenHet blad onderaan uitvouwenHalf uitvouwenDubbelgetikt op handgreep voor slepenHandgreep voor slepen%1$d van %2$d tekens opgegevenTekenlimiet heeft %1$d van %2$d overschredenTekst wissenFoutDropdownmenu tonenIcoon voor dialoogvensterTabbladSelecteer a.m. of p.m.%1$s uurSelecteer uur%1$s uurMinuten selecteren%1$s minutena.m.Schakel naar de klokmodus om de tijd in te voeren.UurMinuutp.m.Tijd selecterenSchakel naar de tekstinvoermodus om de tijd in te voeren.Nieuwe melding%1$s verwijderenMeer dan %1$d nieuwe meldingenNaar volgende maand gaanNaar vorige maand gaanStartdatumselectie: %1$s – Einddatumselectie: %2$sHuidige selectie: %1$sgeenAnnulerenOK%1$sSelecteer een datumGeselecteerde datumKolom met dagen: %1$sEinddatum %1$sOngeldige indeling.Voorbeeld: %1$sGebruik: %1$sOngeldig bereik.Naar het huidige jaar %1$d gaanNaar jaar %1$d navigerenValt buiten bereik: %1$sStartdatum - %1$s%1$s – einddatum%1$s – %2$sSelecteer een periodeStartdatum - einddatumOpslaanStartdatum %1$sDatumEinddatumStartdatumdmjVandaag %1$sOverschakelen naar agenda-invoermodusTik om over te schakelen naar de agendaweergaveOverschakelen naar tekstinvoermodusTik om over te schakelen naar de jaarweergaveAnnulerenOKWachtwoord tonen
+ - %d nova notificação
+ - %d novas notificações
+ Fechar a página inferiorAbrir a página inferiorExpandir até a metadeAlça de arrastar tocada duas vezesAlça de arrastarCaracteres inseridos: %1$d de %2$dLimite de %2$d caracteres excedido em %1$dLimpar textoErroMostrar menu suspensoÃcone de caixa de diálogoGuiaSelecionar AM ou PM%1$s horasSelecionar horário%1$s em pontoSelecione os minutos%1$s minutosAMAlterne para o modo de relógio para informar o horário.HoraMinutoPMSelecionar horárioAlterne para o modo de entrada de texto para informar o horário.Nova notificaçãoRemover %1$sMais de %1$d novas notificaçõesAlterar para o próximo mêsAlterar para o mês anteriorSeleção da data de inÃcio: %1$s. Seleção da data de término: %2$sSeleção atual: %1$snenhumaCancelarOK%1$sSelecionar dataData selecionadaColuna de dias: %1$sData de término: %1$sFormato inválido.Exemplo: %1$sUsar %1$sIntervalo inválido.Ir para o ano atual %1$dIr para o ano %1$dFora do intervalo: %1$sData de inÃcio – %1$s%1$s – Data de término%1$s – %2$sSelecionar intervaloData de inÃcio – Data de términoSalvarData de inÃcio: %1$sDataData de términoData de inÃciodmaHoje %1$sAlternar para o modo de entrada da agendaToque para mudar para a visualização de agendaAlternar para o modo de entrada de textoToque para mudar para a visualização \"Ano\"CancelarOKExibir senhaNika amandlaI-%1$s ngeke isebenze ngaphandle kokuthi unike amandla amasevisi we-Google Play.Nika amandla amasevisi we-Google PlayFakaI-%1$s ngeke ize iqalise ngaphandle kwamasevisi we-Google Play, angekho kusukela kudivayisi yakho.Thola amasevisi we-Google PlayUkungatholakali kwamasevisi e-Google PlayIphutha lamasevisi we-Google Play%1$s ngeke isebenze ngaphandle kwamasevisi e-Google Play, angasekelwa idivayisi yakho.IsibuyekezoI-%1$s ngeke ize iqalise ngaphandle kokuthi ubuyekeze i-Google Play.Buyekeza amasevisi we-Google PlayI-%1$s ngeke ize iqalise ngaphandle kwamasevisi we-Google Play, okwamanje abuyekezwayo.Kudingeka inguqulo entsha yamasevisi we-Google Play. Izozibuyekeza ngokwayo maduze.Vula kufoniNgena ngemvumeNgena ngemvume nge-GoogleУвімкнутиДодаток %1$s не працюватиме, Ñкщо не ввімкнути ÑервіÑи Google Play.Увімкнути ÑервіÑи Google PlayУÑтановитиДодаток %1$s не працюватиме без ÑервіÑів Google Play, Ñких немає на вашому приÑтрої.УÑтановити ÑервіÑи Google PlayДоÑтупніÑть ÑервіÑів Google PlayПомилка ÑервіÑів Google PlayДодаток %1$s не працюватиме без ÑервіÑів Google Play, Ñкі не підтримуютьÑÑ Ð½Ð° вашому приÑтрої.ОновитиДодаток %1$s не працюватиме, Ñкщо не оновити ÑервіÑи Google Play.Оновіть ÑервіÑи Google PlayДодаток %1$s не працюватиме без ÑервіÑів Google Play, Ñкі зараз оновлюютьÑÑ.Потрібна нова верÑÑ–Ñ ÑервіÑів Google Play. Вони невдовзі оновлÑтьÑÑ.Відкрити на телефоніУвійтиУвійти в облік. Ð·Ð°Ð¿Ð¸Ñ GoogleОвозможи%1$s нема да Ñе извршува ако не овозможите уÑлуги на Google Play.Овозможи ги уÑлугите на Google PlayИнÑталирај%1$s нема да Ñе извршува без уÑлугите на Google Play што ги нема на уредот.Преземи ги уÑлугите на Google PlayДоÑтапноÑÑ‚ на уÑлугите на Google PlayГрешка на уÑлугите на Google Play%1$s нема да Ñе извршува без уÑлугите на Google Play, што не Ñе подржани од уредов.Ðжурирај%1$s нема да Ñе извршува ако не ги ажурирате уÑлугите на Google Play.Ðжурирај ги уÑлугите на Google Play%1$s нема да Ñе извршува без уÑлугите на Google Play што Ñе ажурираат во моментов.Потребна е нова верзија на уÑлугите на Google Play. Таа наÑкоро Ñамата ќе Ñе ажурира.Отвори на телефонотÐајави ÑеÐајави Ñе Ñо GoogleИдÑвхжүүлÑÑ…%1$s нь Google Play үйлчилгÑÑг идÑвхжүүлÑÑ… хүртÑл ажиллахгүй.Google Play үйлчилгÑÑг идÑвхжүүлÑхСуулгахТаны төхөөрөмжид Google Play үйлчилгÑÑ Ð±Ð°Ð¹Ñ…Ð³Ò¯Ð¹ тул %1$s ажиллахгүй.Google Play үйлчилгÑÑг авахGoogle Play-н үйлчилгÑÑнүүдийн боломжит байдалGoogle Ðаадаан үйлчилгÑÑний алдааТаны төхөөрөмж Google Play үйлчилгÑÑг дÑмждÑггүй учир %1$s ажиллахгүй.ШинÑчлÑÑ…%1$s нь таныг Google Play үйлчилгÑÑнүүдийг шинÑчлÑÑ…ÑÑÑ Ð½Ð°Ð°Ñˆ ажиллахгүй.Google Play үйлчилгÑÑг шинÑчлÑÑ…%1$s нь одоогоор шинÑчилж буй Google Play үйлчилгÑÑгүйгÑÑÑ€ ажиллахгүй.Google Play үйлчилгÑÑний ÑˆÐ¸Ð½Ñ Ñ…ÑƒÐ²Ð¸Ð»Ð±Ð°Ñ€ Ñ…ÑÑ€ÑгтÑй. ÐÐ½Ñ Ð½ÑŒ удахгүй Ó©Ó©Ñ€Ó©Ó© өөрийгөө шинÑчлÑÑ… болно.УтÑаар нÑÑÑ…ÐÑвтрÑÑ…Google-Ñ€ нÑвтрÑÑ…:ເປີດນຳໃຊ້%1$s ຈະບà»à»ˆàºªàº²àº¡àº²àº”ໃຊ້ງານໄດ້ຈົນàºàº§à»ˆàº²àº—່ານຈະເປີດໃຊ້ງານ​àºàº²àº™â€‹àºšà»â€‹àº¥àº´â€‹àºàº²àº™ Google Play.ເປີດໃຊ້àºàº²àº™â€‹àºšà»â€‹àº¥àº´â€‹àºàº²àº™ Google Playຕິດຕັ້ງ%1$s ຈະບà»à»ˆàºªàº²àº¡àº²àº”ເປີດໃຊ້ໄດ້ຫາàºàºšà»à»ˆàº¡àºµàºàº²àº™àºšà»àº¥àº´àºàº²àº™ Google Play ເຊິ່ງà»àº—ັບເລັດຂàºàº‡àº—່ານບà»à»ˆàº¡àºµ.ຕິດຕັ້ງບà»àº¥àº´àºàº²àº™ Google Playສະຖານະບà»àº¥àº´àºàº²àº™ Google PlayGoogle Play Services ​ເàºàºµàº”​ຄວາມ​ຜິດ​ພາດ%1$s ຈະບà»à»ˆàºªàº²àº¡àº²àº”ໃຊ້ໄດ້ຫາàºàºšà»à»ˆàº¡àºµàºšà»àº¥àº´àºàº²àº™ Google Play ເຊິ່ງàºàº¸àº›àº°àºàºàº™àº‚àºàº‡àº—່ານບà»à»ˆàº®àºàº‡àº®àº±àºš.àºàº±àºšà»€àº”ດ%1$s ຈະບà»à»ˆàºªàº²àº¡àº²àº”ເຮັດວຽàºà»„ດ້ຈົນàºàº§à»ˆàº²àº—່ານຈະàºàº±àºšà»€àº”ດàºàº²àº™â€‹àºšà»â€‹àº¥àº´â€‹àºàº²àº™ Google Playàºàº±àºšà»€àº”ດàºàº²àº™â€‹àºšà»â€‹àº¥àº´â€‹àºàº²àº™ Google Play%1$s ຈະບà»à»ˆàºªàº²àº¡àº²àº”ໃຊ້ງານໄດ້ໂດàºàº—ີ່ບà»à»ˆàº¡àºµàºàº²àº™â€‹àºšà»â€‹àº¥àº´â€‹àºàº²àº™ Google Play, ເຊິ່ງ​àºàº³â€‹àº¥àº±àº‡â€‹àºàº±àºšâ€‹à»€àº”ດ​ຢູ່​ໃນ​ປະ​ຈຸ​ບັນ.ຈຳ​ເປັນ​ຕ້àºàº‡â€‹àº¡àºµâ€‹àºàº²â€‹àº™â€‹àºšà»â€‹àº¥àº´â€‹àºàº²àº™ Google Play ເວີ​ຊັນ​ໃà»à»ˆ. ມັນ​ຈະ​àºàº±àºšâ€‹à»€àº”ດ​ຕົວ​ເàºàº‡â€‹à»„ວໆ​ນີ້.​ເປີດ​ໃນ​ໂທ​ລະ​ສັບລົງຊື່ເຂົ້າໃຊ້ລົງຊື່ເຂົ້າໃຊ້ດ້ວຠGoogleΕνεÏγοποίησηΗ εφαÏμογή %1$s δεν θα λειτουÏγήσει εάν δεν Îχετε ενεÏγοποιήσει τις υπηÏεσίες Google Play.ΕνεÏγοποίηση υπηÏεσιών Google PlayΕγκατάστασηΗ εφαÏμογή %1$s δεν μποÏεί να εκτελεστεί χωÏίς τις υπηÏεσίες Google Play, οι οποίες λείπουν από τη συσκευή σας.Λήψη υπηÏεσιών Google PlayΔιαθεσιμότητα υπηÏεσιών Google PlayΣφάλμα ΥπηÏεσιών Google PlayΗ εφαÏμογή %1$s δεν θα εκτελεστεί χωÏίς τις υπηÏεσίες Google Play, οι οποίες δεν υποστηÏίζονται από τη συσκευή σας.ΕνημÎÏωσηΗ εφαÏμογή %1$s θα εκτελεστεί Î±Ï†Î¿Ï ÎµÎ½Î·Î¼ÎµÏώσετε τις ΥπηÏεσίες Google Play.ΕνημÎÏωση υπηÏεσιών Google PlayΗ εφαÏμογή %1$s δεν θα εκτελεστεί χωÏίς τις υπηÏεσίες Google Play, οι οποίες ενημεÏώνονται αυτήν τη στιγμή.Απαιτείται νÎα Îκδοση των υπηÏεσιών Google Play. Θα ενημεÏωθεί σÏντομα.Άνοιγμα σε τηλÎφωνοΣÏνδεσηΣυνδεθείτε με το GoogleУключыць%1$s не будзе працаваць, пакуль вы не ўключыце Ñлужбы Google Play.Уключыць Ñлужбы Google PlayУÑталÑваць%1$s не будзе працаваць без Ñлужбаў Google Play, ÑÐºÑ–Ñ Ð°Ð´Ñутнічаюць на вашай прыладзе.Ðтрымаць Ñлужбы Google PlayДаÑтупнаÑць ÑÑрвіÑаў Google PlayПамылка Ñлужбаў Google Play%1$s не будзе працаваць без Ñлужбаў Google Play, ÑÐºÑ–Ñ Ð½Ðµ падтрымліваюцца вашай прыладай.Ðбнавіць%1$s не будзе працаваць, пакуль вы не абновіце Ñлужбы Google Play.Ðбнаўленне Ñлужбаў Google Play%1$s не будзе працаваць без Ñлужбаў Google Play, ÑÐºÑ–Ñ Ñž цÑперашні Ñ‡Ð°Ñ Ð°Ð±Ð½Ð°ÑžÐ»Ñюцца.Патрабуецца Ð½Ð¾Ð²Ð°Ñ Ð²ÐµÑ€ÑÑ–Ñ Ñлужб Google Play. Яна абновіцца аўтаматычна Ñž бліжÑйшы чаÑ.Ðдкрыць на Ñ‚ÑлефонеУвайÑцiУвайÑці праз GoogleØªÙØ¹ÙŠÙ„â€Ù„Ù† يعمل %1$s ما لم يتم ØªÙØ¹ÙŠÙ„ خدمات Google Play.â€ØªÙعيل خدمات Google Playتثبيتâ€Ù„Ù† يتم تشغيل %1$s بدون خدمات Google PlayØŒ والتي لا ØªØªÙˆÙØ± على جهازك.â€Ø§Ù„ØØµÙˆÙ„ على خدمات Google Playâ€Ù…دى توÙّر خدمات Google Playâ€Ø®Ø·Ø£ ÙÙŠ خدمات Google Playâ€Ù„Ù† يتم تشغيل %1$s بدون خدمات Google Play التي لا ÙŠÙˆÙØ±Ù‡Ø§ جهازك.ØªØØ¯ÙŠØ«â€Ù„Ù† يتم تشغيل %1$s ما لم يتم ØªØØ¯ÙŠØ« خدمات Google Play.â€ØªØØ¯ÙŠØ« خدمات Google Playâ€Ù„Ù† يتم تشغيل %1$s بدون خدمات Google PlayØŒ والتي يتم ØªØØ¯ÙŠØ«Ù‡Ø§ ØØ§Ù„يًا.â€ÙŠØ¬Ø¨ ØªÙˆÙØ± إصدار جديد من خدمات Google Play. سيتم ØªØØ¯ÙŠØ«Ù‡Ø§ تلقائيًا قريبًا.ÙØªØ على Ø§Ù„Ù‡Ø§ØªÙØªØ³Ø¬Ù„ Ø§Ù„Ø¯Ø®ÙˆÙ„â€ØªØ³Ø¬ÙŠÙ„ الدخول عبر GoogleKveikja%1$s virkar ekki nema þú gerir þjónustu Google Play virka.Virkja þjónustu Google PlaySetja upp%1$s getur ekki keyrt án þjónustu Google Play, sem vantar à tækið þitt.Sækja þjónustu Google PlayStaða þjónustu Google PlayVilla à þjónustu Google Play%1$s getur ekki keyrt án þjónustu Google Play, sem er ekki studd af tækinu þÃnu.Uppfæra%1$s getur ekki keyrt nema þú uppfærir þjónustu Google Play.Uppfæra þjónustu Google Play%1$s getur ekki keyrt án þjónustu Google Play, sem verið er að uppfæra.Nýja útgáfu af þjónustu Google Play vantar. Hún uppfærir sig sjálf innan skamms.Opna à sÃmanumSkrá innSkrá inn með Googleअन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥%1$s ले तपाईà¤à¤²à¥‡ Google Play सेवाहरू सकà¥à¤·à¤® नगरेसमà¥à¤® काम गरà¥à¤¦à¥ˆà¤¨à¥¤Google Play सेवाहरू सकà¥à¤·à¤® पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤¸à¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥%1$s Google Play services बिना सञà¥à¤šà¤¾à¤²à¤¨ हà¥à¤¨à¥‡ छैन र तपाईà¤à¤•ो यनà¥à¤¤à¥à¤°à¤®à¤¾ Google Play services उपलबà¥à¤§ छैननà¥à¥¤Google Play सेवाहरू पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥Google Play सेवाको उपलबà¥à¤§à¤¤à¤¾Google Play सेवाहरूका तà¥à¤°à¥à¤Ÿà¤¿%1$s Google Play services बिना सञà¥à¤šà¤¾à¤²à¤¨ हà¥à¤¨à¥‡ छैन र तपाईà¤à¤•ो यनà¥à¤¤à¥à¤°à¤²à¥‡ Google Play services लाई समरà¥à¤¥à¤¨ गरà¥à¤¦à¥ˆà¤¨à¥¤à¤…पडेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥%1$s तपाईंले Google पà¥à¤²à¥‡ सेवाहरू अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• नगरेसमà¥à¤® सञà¥à¤šà¤¾à¤²à¤¨ हà¥à¤à¤¦à¥ˆà¤¨à¥¤Google Play सेवाहरू अपडेट गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥Google Play सेवाहरू %1$s बिना सञà¥â€à¤šà¤¾à¤²à¤¨ हà¥à¤à¤¦à¥ˆà¤¨, जà¥à¤¨ हाल अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• à¤à¤‡à¤°à¤¹à¥‡à¤•ा छनà¥à¥¤Google Play सेवाहरूको नयाठसंसà¥à¤•रण आवशà¥à¤¯à¤• छ। यो आफै छिटà¥à¤Ÿà¥ˆ नै अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• हà¥à¤¨à¥‡à¤›à¥¤à¤«à¥‹à¤¨à¤®à¤¾ खोलà¥à¤¨à¥à¤¹à¥‹à¤¸à¥à¤¸à¤¾à¤‡à¤¨ इन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥Google मारà¥à¤«à¤¤ साइन†इन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥Aktiv edin%1$s Google Play xidmÉ™tlÉ™rini aktiv edÉ™nÉ™ kimi iÅŸlÉ™mÉ™yÉ™cÉ™k.Google Play xidmÉ™tlÉ™rini aktiv edinQuraÅŸdırın%1$s cihazınızda mövcud olmayan Google Play xidmÉ™tlÉ™ri olmadan çalışmayacaq.Google Play xidmÉ™tlÉ™rini É™ldÉ™ edinGoogle Play xidmÉ™tlÉ™rinin É™lçatanlığıGoogle Play xidmÉ™tlÉ™ri xÉ™tasıCihazınız tÉ™rÉ™findÉ™n dÉ™stÉ™klÉ™nmÉ™yÉ™n Google Play xidmÉ™tlÉ™ri olmadan %1$s tÉ™tbiqi iÅŸlÉ™mÉ™yÉ™cÉ™k.GüncÉ™llÉ™yin%1$s Google Play xidmÉ™tlÉ™ri yenilÉ™mÉ™ halda çalışmaz.Google Play xidmÉ™tlÉ™rini güncÉ™lləşdirin%1$s hal-hazırda güncÉ™llÉ™nÉ™n Google Play xidmÉ™tlÉ™ri olmadan çalışmayacaq.Google Play xidmÉ™tlÉ™rinin yeni versiyası lazımdır. Qısa müddÉ™tÉ™ özünü yenilÉ™yÉ™cÉ™k.Telefonda açınDaxil olunGoogle ilÉ™ daxil olunI-enableHindi gagana ang %1$s maliban kung ie-enable mo ang mga serbisyo ng Google Play.I-enable ang mga serbisyo ng Google PlayI-installHindi gagana ang %1$s nang wala ang mga serbisyo ng Google Play na wala sa iyong device.Kunin ang mga serbisyo ng Google PlayAvailability ng serbisyo ng Google PlayError sa Mga Serbisyo ng Google PlayHindi gagana ang %1$s nang wala ang mga serbisyo ng Google Play, na hindi nasusuportahan ng iyong device.I-updateHindi gagana ang %1$s maliban kung i-a-update mo ang mga serbisyo ng Google Play.I-update ang mga serbisyo ng Google PlayHindi gagana ang %1$s nang wala ang mga serbisyo ng Google Play na kasalukuyang ina-update.Kailangan ang bagong bersyon ng mga serbisyo ng Google Play. Mag-a-update itong mag-isa sa ilang sandali.Buksan sa teleponoMag-sign inMag-sign in sa Googleเปิดใช้%1$s จะไม่ทำงานจนà¸à¸§à¹ˆà¸²à¸„ุณจะเปิดใช้บริà¸à¸²à¸£ Google Playเปิดใช้บริà¸à¸²à¸£ Google Playติดตั้ง%1$s จะไม่ทำงานหาà¸à¹„ม่มีบริà¸à¸²à¸£ Google Play ซี่งไม่มีในà¸à¸¸à¸›à¸à¸£à¸“์ขà¸à¸‡à¸„ุณติดตั้งบริà¸à¸²à¸£ Google Playความพร้à¸à¸¡à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¸‚à¸à¸‡à¸šà¸£à¸´à¸à¸²à¸£ Google Playข้à¸à¸œà¸´à¸”พลาดขà¸à¸‡à¸šà¸£à¸´à¸à¸²à¸£ Google Play%1$s จะไม่ทำงานหาà¸à¹„ม่มีบริà¸à¸²à¸£ Google Play ซึ่งà¸à¸¸à¸›à¸à¸£à¸“์ขà¸à¸‡à¸„ุณไม่สนับสนุนà¸à¸±à¸›à¹€à¸”ต%1$s จะไม่ทำงานจนà¸à¸§à¹ˆà¸²à¸„ุณจะà¸à¸±à¸›à¹€à¸”ตบริà¸à¸²à¸£ Google Playà¸à¸±à¸›à¹€à¸”ตบริà¸à¸²à¸£ Google Play%1$s จะไม่ทำงานหาà¸à¹„ม่มีบริà¸à¸²à¸£ Google Play ซึ่งà¸à¸³à¸¥à¸±à¸‡à¸à¸±à¸›à¹€à¸”ตà¸à¸¢à¸¹à¹ˆà¹ƒà¸™à¸‚ณะนี้จำเป็นต้à¸à¸‡à¹ƒà¸Šà¹‰à¸šà¸£à¸´à¸à¸²à¸£ Google Play เวà¸à¸£à¹Œà¸Šà¸±à¸™à¹ƒà¸«à¸¡à¹ˆ ซึ่งจะà¸à¸±à¸›à¹€à¸”ตà¸à¸±à¸•โนมัติในà¸à¸µà¸à¹„ม่ช้าเปิดบนโทรศัพท์ลงชื่à¸à¹€à¸‚้าใช้ลงชื่à¸à¹€à¸‚้าใช้ด้วย GoogleҚоÑуGoogle Play қызметтерін қоÑпаÑаңыз, %1$s Ð¶Ò±Ð¼Ñ‹Ñ Ñ–Ñтемейді.Google Play қызметтерін қоÑуОрнатуGoogle Play қызметтері құрылғыда болмағандықтан, %1$s Ñ–Ñке қоÑылмайды.Google Play қызметтерін алуGoogle Play қызметтерінің қолжетімділігіGoogle Play қызметтерінің қатеÑÑ–%1$s қолданбаÑÑ‹ құрылғыңызда қолдау көрÑетілмейтін Google Play қызметінÑіз Ð¶Ò±Ð¼Ñ‹Ñ Ñ–Ñтемейді.ЖаңартуGoogle Play қызметтерін жаңартпаÑаңыз, %1$s Ñ–Ñке қоÑылмайды.Google Play қызметтерін жаңартуҚазіргі уақытта жаңартылып жатқан Google Play қызметтерінÑіз %1$s Ñ–Ñке қоÑылмайды.Google Play қызметтерінің жаңа нұÑқаÑÑ‹ қажет. Ол қыÑқа уақыттан кейін өзі жаңарады.Телефонда ашуКіруGoogle арқылы кіруИштетүүGoogle Play кызматтарын иштетмейиңизче %1$s иштебейт.Google Play кызматтарын иштетүүОрнотууGoogle Play кызматтарыÑыз %1$s иштебейт. Ðлар түзмөгүңүздө жок болуп жатат.Google Play кызматтарын алууGoogle Play кызматтарынын иштешиGoogle Play кызматтарынын катаÑÑ‹%1$s колдонмоÑу Ñиздин түзмөгүңүздө колдоого алынбаган Google Play кызматтары болбоÑо иштебейт.ЖаңыртууGoogle Play кызматтары жаңыртылмайынча %1$s иштебейт.Google Play кызматтарын жаңыртууGoogle Play кызматтарыÑыз %1$s иштебейт, алар учурда жаңыртылууда.Google Play кызматтарынын жаңы верÑиÑÑÑ‹ талап кылынат. Бир аздан кийин ал өзү Ñле жаңырат.Телефондо ачыкКирүүGoogle менен кирүүDayakan%1$s tidak akan berfungsi melainkan anda mendayakan perkhidmatan Google Play.Dayakan perkhidmatan Google PlayPasang%1$s tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini tiada pada peranti anda.Dapatkan perkhidmatan Google PlayKetersediaan perkhidmatan Google PlayRalat perkhidmatan Google Play%1$s tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini tidak disokong oleh peranti anda.Kemas kini%1$s tidak akan berfungsi kecuali anda mengemas kini perkhidmatan Google Play.Kemaskinikan perkhidmatan Google Play%1$s tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini sedang dikemaskinikan.Versi baharu perkhidmatan Google Play diperlukan. Kemas kini automatik akan dijalankan sebentar lagi.Buka pada telefonLog masukLog masuk dengan GoogleEtkinleÅŸtirGoogle Play hizmetlerini etkinleÅŸtirmezseniz %1$s çalışmaz.Google Play hizmetlerini etkinleÅŸtirinYükle%1$s, ÅŸu anda cihazınızda bulunmayan Google Play hizmetleri olmadan çalışmaz.Google Play hizmetlerini edininGoogle Play hizmetlerinin kullanılabilirliÄŸiGoogle Play Hizmetleri hatası%1$s, Google Play hizmetleri olmadan çalışmaz ve bu hizmetler cihazınız tarafından desteklenmiyor.GüncelleGoogle Play hizmetlerini güncellemezseniz %1$s çalışmayacak.Google Play hizmetlerini güncelleyin%1$s, ÅŸu anda güncellenmekte olan Google Play hizmetleri olmadan çalışmaz.Google Play hizmetlerinin yeni sürümü gerekiyor. Kendisini kısa süre içinde güncelleyecektir.Telefonda açOturum açGoogle\'da oturum açসকà§à¦·à¦® করà§à¦¨à¦†à¦ªà¦¨à¦¿ Google Play পরিষেবা সকà§à¦·à¦® না করা পরà§à¦¯à¦¨à§à¦¤ %1$s কাজ করবে না।Google Play পরিষেবা সকà§à¦·à¦® করà§à¦¨à¦‡à¦¨à¦¸à§à¦Ÿà¦² করà§à¦¨Google Play পরিষেবা ছাড়া %1$s চলবে না, যা আপনার ডিà¦à¦¾à¦‡à¦¸à§‡ অনà§à¦ªà¦¸à§à¦¥à¦¿à¦¤à¥¤Google Play পরিষেবা পানGoogle Play পরিষেবার উপলà¦à§à¦¯à¦¤à¦¾Google Play পরিষেবার তà§à¦°à§à¦Ÿà¦¿Google Play পরিষেবা ছাড়া %1$s চলবে না, যেটি আপনার ডিà¦à¦¾à¦‡à¦¸à§‡ সমরà§à¦¥à¦¿à¦¤ নয়৷আপডেট করà§à¦¨à¦†à¦ªà¦¨à¦¿ Google Play পরিষেবা আপডেট না করা পরà§à¦¯à¦¨à§à¦¤ %1$s চলবে না।Google Play পরিষেবা আপডেট করà§à¦¨Google Play পরিষেবা ছাড়া %1$s চলবে না যা বরà§à¦¤à¦®à¦¾à¦¨à§‡ আপডেট হচà§à¦›à§‡à¥¤Google Play পরিষেবার নতà§à¦¨ à¦à¦¾à¦°à§à¦¸à¦¨ পà§à¦°à¦¯à¦¼à§‹à¦œà¦¨à§· খà§à¦¬ শীঘà§à¦°à¦‡ à¦à¦Ÿà¦¾ নিজেই আপডেট হবে৷ফোনে খà§à¦²à§à¦¨à¦¸à¦¾à¦‡à¦¨-ইন করà§à¦¨Google à¦à¦° মাধà§à¦¯à¦®à§‡ সাইন-ইন করà§à¦¨Báºt%1$s sẽ không hoạt động nếu bạn không báºt dịch vụ cá»§a Google Play.Báºt dịch vụ cá»§a Google PlayCaÌ€i đặt%1$s sẽ không chạy nếu không có dịch vụ cá»§a Google Play. Thiết bị cá»§a bạn bị thiếu dịch vụ nà y.Cà i đặt dịch vụ cá»§a Google PlayPhạm vi cung cấp Dịch vụ Google PlayLá»—i dịch vụ cá»§a Google Play%1$s sẽ không chạy nếu không có Dịch vụ Google Play. Thiết bị cá»§a bạn không há»— trợ các dịch vụ nà y.Cáºp nháºt%1$s sẽ không chạy trừ khi bạn cáºp nháºt Dịch vụ Google Play.Cáºp nháºt dịch vụ cá»§a Google Play%1$s sẽ không chạy nếu không có dịch vụ cá»§a Google Play. Dịch vụ nà y hiện Ä‘ang cáºp nháºt.Cần phiên bản má»›i cá»§a dịch vụ Google Play. Dịch vụ sẽ sá»›m tá»± động cáºp nháºt.Mở trên Ä‘iện thoạiÄăng nháºpÄăng nhập bằng GoogleAktivizo%1$s nuk do të funksionojë nëse nuk aktivizon shërbimet e \"Luaj me Google\".Aktivizo shërbimet e \"Luaj me Google\"Instalo%1$s nuk do të funksionojë pa shërbimet e Google Play, të cilat mungojnë në pajisjen tënde.Merr shërbimet e \"Luaj me Google\"Disponueshmëria e shërbimeve të Google PlayGabim në shërbimet e \"Luaj me Google\"%1$s nuk do të funksionojë pa shërbimet e Google Play, të cilat nuk mbështeten nga pajisja jote.Përditëso%1$s nuk do të funksionojë nëse nuk përditëson shërbimet e \"Luaj me Google\".Përditëso shërbimet e \"Luaj me Google\"%1$s nuk do të funksionojë pa shërbimet e Google Play, të cilat po përditësohen aktualisht.Nevojitet një version i ri i shërbimeve të \"Luaj me Google\". Ai do të përditësohet automatikisht së shpejti.Hape në telefonIdentifikohuIdentifikohu me GoogleAktivér%1$s fungerer ikke med mindre du slÃ¥r pÃ¥ Google Play-tjenester.SlÃ¥ pÃ¥ Google Play-tjenesterInstaller%1$s kan ikke kjøre uten Google Play-tjenester, som ikke er installert pÃ¥ enheten din.Installer Google Play-tjenesterGoogle Play Tjenester-tilgjengelighetGoogle Play Tjenester-feil%1$s kan ikke kjøre uten Google Play-tjenester, som ikke støttes av enheten din.Oppdater%1$s kjører ikke med mindre du oppdaterer Google Play Tjenester.Oppdater Google Play-tjenester%1$s kjører ikke uten Google Play-tjenester, som oppdateres akkurat nÃ¥.Du mÃ¥ installere en ny versjon av Google Play-tjenester. Appen oppdateres automatisk om en kort stund.Ã…pne pÃ¥ telefonenLogg pÃ¥Logg pÃ¥ med Googleהפעלâ€×”×פליקציה %1$s ×œ× ×ª×¤×¢×œ ×× ×œ× ×ª×¤×¢×™×œ ×ת שירותי Google Play.â€×”פעל ×ת שירותי Google Playהתקןâ€×”×פליקציה %1$s ×œ× ×ª×¤×¢×œ ×œ×œ× ×©×™×¨×•×ª×™ Google Play, ש××™× × ×ž×•×ª×§× ×™× ×‘×ž×›×©×™×¨.â€×§×‘ל ×ת שירותי Google Playâ€×–×ž×™× ×•×ª של שירותי Google Playâ€×©×’×™××” בשירותי Google Playâ€%1$s ×œ× ×ª×¤×¢×œ ×œ×œ× ×©×™×¨×•×ª×™ Google Play, ש××™× × × ×ª×ž×›×™× ×‘×ž×›×©×™×¨ שלך.עדכוןâ€%1$s ×œ× ×™×¤×¢×œ ×× ×œ× ×ª×¢×“×›×Ÿ ×ת שירותי Google Play.â€×¢×“כון שירותי Google Playâ€×”×פליקציה %1$s ×œ× ×ª×¤×¢×œ ×œ×œ× ×©×™×¨×•×ª×™ Google Play, ×©×ž×ª×¢×“×›× ×™× ×›×¨×’×¢.â€×“רושה גרסה חדשה של שירותי Google Play. הגרסה תתעדכן בעצמה תוך זמן קצר.פתח ×‘×˜×œ×¤×•×Ÿ×›× ×™×¡×”â€×”×™×›× ×¡ ב×מצעות GoogleLubaRakendus %1$s töötab ainult siis, kui lubate Google Play teenused.Google Play teenuste lubamineInstalliRakendus %1$s töötab ainult koos Google Play teenustega, mida teie seadmes pole.Google Play teenuste hankimineGoogle Play teenuste saadavalolekViga Google Play teenustesRakendus %1$s töötab ainult koos Google Play teenustega, mida teie seadmes ei toetata.VärskendaRakenduse %1$s töötamiseks peate värskendama Google Play teenuseid.Google Play teenuste värskendamineRakendus %1$s töötab ainult koos Google Play teenustega, mida praegu värskendatakse.Vajalik on Google Play teenuste uus versioon. See värskendab end peagi.Ava telefonisLogi sisseLogi sisse Google\'i kontogaPovoliÅ¥Aplikácia %1$s bude fungovaÅ¥ až po povolenà služieb Google Play.PovoliÅ¥ služby Google PlayInÅ¡talovaÅ¥Na spustenie aplikácie %1$s sa vyžadujú služby Google Play, ktoré na zariadenà nemáte.InÅ¡talovaÅ¥ služby Google PlayDostupnosÅ¥ služieb Google PlayChyba služieb Google PlayAplikáciu %1$s nebude možné spustiÅ¥ bez služieb Google Play, ktoré vaÅ¡e zariadenie nepodporuje.AktualizovaÅ¥Aplikáciu %1$s bude možné spustiÅ¥ až po aktualizácii služieb Google Play.Aktualizácia služieb Google PlayNa spustenie aplikácie %1$s sa vyžadujú služby Google Play, ktoré sa momentálne aktualizujú.Vyžaduje sa nová verzia služieb Google Play. Aktualizujú sa automaticky v najbližšom Äase.OtvoriÅ¥ v telefónePrihlásiÅ¥ saPrihlásiÅ¥ sa do úÄtu Googleஇயகà¯à®•à¯Google Play சேவைகளை இயகà¯à®•ினால௠மடà¯à®Ÿà¯à®®à¯‡, %1$s செயலà¯à®ªà®Ÿà¯à®®à¯.Google Play சேவைகளை இயகà¯à®•வà¯à®®à¯à®¨à®¿à®±à¯à®µà¯Google Play சேவைகள௠இரà¯à®¨à¯à®¤à®¾à®²à¯ மடà¯à®Ÿà¯à®®à¯‡, %1$s இயஙà¯à®•à¯à®®à¯. அவை உஙà¯à®•ள௠சாதனதà¯à®¤à®¿à®²à¯ இலà¯à®²à¯ˆ.Google Play சேவைகளைப௠பெறவà¯à®®à¯à®•ிடைகà¯à®•à¯à®®à¯ Google Play சேவைகளà¯Google Play சேவைகள௠பிழைGoogle Play சேவைகள௠இரà¯à®¨à¯à®¤à®¾à®²à¯ மடà¯à®Ÿà¯à®®à¯‡ %1$s ஆபà¯à®¸à¯ இயஙà¯à®•à¯à®®à¯. ஆனாலà¯, உஙà¯à®•ள௠சாதனதà¯à®¤à®¿à®²à¯ அவை ஆதரிகà¯à®•பà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ.பà¯à®¤à¯à®ªà¯à®ªà®¿Google Play சேவைகளை இயகà¯à®•ினால௠மடà¯à®Ÿà¯à®®à¯‡, %1$s செயலà¯à®ªà®Ÿà¯à®®à¯.Google Play சேவைகளைப௠பà¯à®¤à¯à®ªà¯à®ªà®¿à®•à¯à®•வà¯à®®à¯à®¤à®±à¯à®ªà¯‹à®¤à¯ பà¯à®¤à¯à®ªà¯à®ªà®¿à®•à¯à®•பà¯à®ªà®Ÿà¯à®®à¯, Google Play சேவைகள௠இரà¯à®¨à¯à®¤à®¾à®²à¯ மடà¯à®Ÿà¯à®®à¯‡, %1$s செயலà¯à®ªà®Ÿà¯à®®à¯.Google Play சேவைகளின௠பà¯à®¤à®¿à®¯ பதிபà¯à®ªà¯ தேவை. அத௠விரைவில௠தானாகவே பà¯à®¤à¯à®ªà¯à®ªà®¿à®•à¯à®•பà¯à®ªà®Ÿà¯à®®à¯.மொபைலில௠திறஉளà¯à®¨à¯à®´à¯ˆà®•Google மூலம௠உளà¯à®¨à¯à®´à¯ˆà®•Омогући%1$s неће функциониÑати ако не омогућите Google Play уÑлуге.Омогућите Google Play уÑлугеИнÑталирај%1$s не може да Ñе покрене без Google Play уÑлуга, које ниÑу инÑталиране на уређају.Преузмите Google Play уÑлугеДоÑтупноÑÑ‚ Google Play уÑлугаГрешка Google Play уÑлуга%1$s не може да Ñе покрене без Google Play уÑлуга, које уређај не подржава.Ðжурирај%1$s не може да Ñе покрене ако не ажурирате Google Play уÑлуге.Ðжурирајте Google Play уÑлуге%1$s не може да Ñе покрене без Google Play уÑлуга, које Ñе тренутно ажурирају.Потребна је нова верзија Google Play уÑлуга. УÑкоро ће Ñе ажурирати.Отвори на телефонуПријави меПријави ме на GoogleÐ’ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒÐ”Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ \"%1$s\" требуетÑÑ Ð²ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒ ÑервиÑÑ‹ Google Play.Включите ÑервиÑÑ‹ Google PlayУÑÑ‚Ð°Ð½Ð¾Ð²Ð¸Ñ‚ÑŒÐ”Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ \"%1$s\" требуетÑÑ ÑƒÑтановить ÑервиÑÑ‹ Google Play.УÑтановите ÑервиÑÑ‹ Google PlayДоÑтупноÑть ÑервиÑов Google PlayОшибка ÑервиÑов Google PlayÐ”Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ñ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸ÐµÐ¼ \"%1$s\" требуютÑÑ ÑервиÑÑ‹ Google Play. Они не поддерживаютÑÑ Ð½Ð° вашем уÑтройÑтве.ОбновитьЧтобы запуÑтить приложение \"%1$s\", обновите ÑервиÑÑ‹ Google Play.Обновите ÑервиÑÑ‹ Google PlayСервиÑÑ‹ Google Play, необходимые Ð´Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ \"%1$s\", в наÑтоÑщий момент обновлÑÑŽÑ‚ÑÑ.ВерÑÐ¸Ñ ÑервиÑов Google Play уÑтарела. Они автоматичеÑки обновÑÑ‚ÑÑ Ð² ближайшее времÑ.Открыть на телефонеВойтиВойти через аккаунт Googleसà¥à¤°à¥‚ करातà¥à¤®à¥à¤¹à¥€ Google Play सेवा सकà¥à¤·à¤® केलà¥à¤¯à¤¾à¤¶à¤¿à¤µà¤¾à¤¯ %1$s हा अâ€à¥…प कारà¥à¤¯ करणार नाही.Google Play सेवा सà¥à¤°à¥‚ करासà¥â€à¤¥à¤¾à¤ªà¤¿à¤¤ कराGoogle Play सेवा आपलà¥à¤¯à¤¾ डिवà¥à¤¹à¤¾à¤‡à¤¸à¤µà¤° उपलबà¥à¤§ नाही, तà¥à¤¯à¤¾à¤¶à¤¿à¤µà¤¾à¤¯ %1$s चालणार नाही.Google Play सेवा मिळवाGoogle Play सेवा उपलबà¥à¤§à¤¤à¤¾Google Play सेवा à¤à¤°à¤°à¤¤à¥à¤®à¤šà¥‡ डिवà¥à¤¹à¤¾à¤‡à¤¸ सपोरà¥à¤Ÿ करत नसलेलà¥à¤¯à¤¾, Google Play सेवांशिवाय %1$s चालणार नाही.अपडेट करातà¥à¤®à¥à¤¹à¥€ Google Play सेवा अपडेट करेपरà¥à¤¯à¤‚त %1$s चालणार नाही.Google Play सेवा अपडेट करासधà¥â€à¤¯à¤¾ अपडेट होत असलेलà¥â€à¤¯à¤¾, Google Play सेवांशिवाय %1$s चालणार नाही.Google Play सेवांचà¥à¤¯à¤¾ नवीन आवृतà¥à¤¤à¥€à¤šà¥€ आवशà¥à¤¯à¤•ता आहे. हे सà¥à¤µà¤¤:ला लवकरच अपडेट करेल.फोनवर उघडासाइन इन कराGoogle सह साइन इन कराचालू करेंजब तक आप Google Play सेवाà¤à¤‚ चालू नहीं करते, %1$s काम नहीं करेगा.Google Play सेवाà¤à¤‚ चालू करेंइंसà¥à¤Ÿà¥‰à¤² करें%1$s उन Google Play सेवाओं के बिना नहीं चलेगा जो आपके डिवाइस में उपलबà¥à¤§ नहीं हैं.Google Play सेवाà¤à¤‚ इंसà¥à¤Ÿà¥‰à¤² करेंGoogle Play सेवाà¤à¤‚ उपलबà¥à¤§ हैंGoogle Play सेवाओं से जà¥à¤¡à¤¼à¥€ गड़बड़ी%1$s उन Google Play सेवाओं के बिना नहीं चलेगा, जो आपके डिवाइस पर काम नहीं करती हैं.अपडेट करें%1$s तब तक नहीं चलेगा जब तक आप Google Play सेवाओं को अपडेट नहीं करते.Google Play सेवाओं को अपडेट करें%1$s उन Google Play सेवाओं के बिना नहीं चलेगा जो अà¤à¥€ अपडेट हो रही हैं.Google Play सेवाओं के नठवरà¥à¤¶à¤¨ की ज़रूरत है. यह जलà¥à¤¦ ही अपने आप अपडेट हो जाà¤à¤—ा.फ़ोन पर खोलेंसाइन इन करेंGoogle के ज़रिठसाइन इन करेंAktivera%1$s fungerar inte om du inte aktiverar Google Play-tjänster.Aktivera Google Play-tjänsterInstallera%1$s kan inte köras utan Google Play-tjänsterna, som saknas pÃ¥ enheten.Hämta Google Play-tjänsterTillgänglighet för Google Plays tjänsterFel pÃ¥ Google Play-tjänster%1$s fungerar inte utan Google Play-tjänsterna, som inte stöds pÃ¥ enheten.Uppdatera%1$s kan inte köras om du inte uppdaterar Google Play-tjänsterna.Uppdatera Google Play-tjänster%1$s kan inte köras utan Google Play-tjänster, och dessa uppdateras för närvarande.En ny version av Google Play-tjänster krävs. Den uppdateras automatiskt inom kort.Öppna pÃ¥ mobilenLogga inLogga in med GooglePovolitKe spuÅ¡tÄ›nà aplikace %1$s je tÅ™eba aktivovat služby Google Play.Aktivace služeb Google PlayInstalovatKe spuÅ¡tÄ›nà aplikace %1$s jsou potÅ™eba služby Google Play, které v zaÅ™Ãzenà nemáte.Instalace služeb Google PlayDostupnost služeb Google PlayChyba služeb Google PlayKe spuÅ¡tÄ›nà aplikace %1$s jsou potÅ™eba služby Google Play, které v tomto zaÅ™Ãzenà nejsou podporovány.AktualizovatKe spuÅ¡tÄ›nà aplikace %1$s je tÅ™eba aktualizovat služby Google Play.Aktualizace služeb Google PlayKe spuÅ¡tÄ›nà aplikace %1$s jsou potÅ™eba služby Google Play, které jsou právÄ› aktualizovány.Je vyžadována nová verze služeb Google Play. Nová verze se brzy sama nainstaluje.OtevÅ™Ãt v telefonuPÅ™ihlásit sePÅ™ihlásit se k úÄtu Google有効ã«ã™ã‚‹%1$sã®å®Ÿè¡Œã«ã¯ã€Google Playé–‹ç™ºè€…ã‚µãƒ¼ãƒ“ã‚¹ã®æœ‰åŠ¹åŒ–ãŒå¿…è¦ã§ã™ã€‚Google Playé–‹ç™ºè€…ã‚µãƒ¼ãƒ“ã‚¹ã®æœ‰åŠ¹åŒ–ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã€Œ%1$sã€ã®å®Ÿè¡Œã«ã¯ Google Play 開発者サービスãŒå¿…è¦ã§ã™ãŒã€ãŠä½¿ã„ã®ãƒ‡ãƒã‚¤ã‚¹ã«ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ã¾ã›ã‚“。Google Play開発者サービスã®å…¥æ‰‹Google Play 開発者サービスã®åˆ©ç”¨Google Play開発者サービスã®ã‚¨ãƒ©ãƒ¼ã€Œ%1$sã€ã®å®Ÿè¡Œã«ã¯ Google Play 開発者サービスãŒå¿…è¦ã§ã™ãŒã€ãŠä½¿ã„ã®ãƒ‡ãƒã‚¤ã‚¹ã§ã¯ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“。更新%1$sã®å®Ÿè¡Œã«ã¯Google Playé–‹ç™ºè€…ã‚µãƒ¼ãƒ“ã‚¹ã®æ›´æ–°ãŒå¿…è¦ã§ã™ã€‚Google Playé–‹ç™ºè€…ã‚µãƒ¼ãƒ“ã‚¹ã®æ›´æ–°%1$sã®å®Ÿè¡Œã«ã¯Google Play開発者サービスãŒå¿…è¦ã§ã™ãŒã€ã“ã®ã‚µãƒ¼ãƒ“スã¯ç¾åœ¨æ›´æ–°ä¸ã§ã™ã€‚Google Playé–‹ç™ºè€…ã‚µãƒ¼ãƒ“ã‚¹ã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå¿…è¦ã§ã™ã€‚ã¾ã‚‚ãªã自動更新ã•れã¾ã™ã€‚スマートフォンã§é–‹ããƒã‚°ã‚¤ãƒ³Googleã«ãƒã‚°ã‚¤ãƒ³à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¨à´•àµà´·à´®à´®à´¾à´•àµà´•àµà´•നിങàµà´™àµ¾ Google Play സേവനങàµà´™àµ¾ à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¨à´•àµà´·à´®à´®à´¾à´•àµà´•àµà´¨àµà´¨à´¿à´²àµà´²àµ†à´™àµà´•ിൽ %1$s à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¿à´•àµà´•à´¿à´²àµà´².Google Play സേവനങàµà´™àµ¾ à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¨à´•àµà´·à´®à´®à´¾à´•àµà´•àµà´•ഇനàµâ€à´¸àµà´±àµà´±à´¾à´³àµâ€ ചെയàµà´¯àµà´•Google Play സേവനങàµà´™à´³à´¿à´²àµà´²à´¾à´¤àµ† %1$s à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¿à´•àµà´•à´¿à´²àµà´², à´ˆ സേവനങàµà´™à´³à´¾à´•à´Ÿàµà´Ÿàµ† നിങàµà´™à´³àµà´Ÿàµ† ഉപകരണതàµà´¤à´¿àµ½ ഇലàµà´².Google Play സേവനങàµà´™àµ¾ നേടàµà´•Google Play സേവന à´²à´àµà´¯à´¤Google Play സേവനങàµà´™à´³à´¿à´²àµ† പിശകàµGoogle Play സേവനങàµà´™à´³à´¿à´²àµà´²à´¾à´¤àµ† %1$s à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¿à´•àµà´•à´¿à´²àµà´², സേവനങàµà´™à´³àµ†à´¯à´¾à´•à´Ÿàµà´Ÿàµ† നിങàµà´™à´³àµà´Ÿàµ† ഉപകരണം പിനàµà´¤àµà´£à´¯àµà´•àµà´•àµà´¨àµà´¨àµà´®à´¿à´²àµà´².à´…à´ªàµâ€Œà´¡àµ‡à´±àµà´±àµà´šàµ†à´¯àµà´¯àµà´•നിങàµà´™àµ¾ Google Play സേവനങàµà´™àµ¾ à´…à´ªàµâ€Œà´¡àµ‡à´±àµà´±àµà´šàµ†à´¯àµâ€Œà´¤à´¿à´²àµà´²àµ†à´™àµà´•ിൽ %1$s à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¿à´•àµà´•à´¿à´²àµà´².Google Play സേവനങàµà´™àµ¾ à´…à´ªàµâ€Œà´¡àµ‡à´±àµà´±àµà´šàµ†à´¯àµà´¯àµà´•നിലവിൽ à´…à´ªàµâ€Œà´¡àµ‡à´±àµà´±àµà´šàµ†à´¯àµà´¯àµà´¨àµà´¨ Google Play സേവനങàµà´™àµ¾ ഇലàµà´²à´¾à´¤àµ† %1$s à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¿à´•àµà´•à´¿à´²àµà´².Google Play സേവനങàµà´™à´³àµà´Ÿàµ† à´ªàµà´¤à´¿à´¯ പതിപàµà´ªàµ ആവശàµà´¯à´®à´¾à´£àµ. താമസിയാതെ ഇതൠസàµà´µà´¯à´‚ à´…à´ªàµâ€Œà´¡àµ‡à´±àµà´±àµà´šàµ†à´¯àµà´¯àµà´‚.ഫോണിൽ à´¤àµà´±à´•àµà´•àµà´•സൈൻ ഇൻ ചെയàµà´¯àµà´•Google ഉപയോഗിചàµà´šàµ സൈൻ ഇൻ ചെയàµà´¯àµà´•සබල කරන්නඔබ Google Play සේව෠සබල කරන්නේ නම් මිස %1$s à·€à·à¶© නොකරනු ඇà¶.Google Play සේව෠සබල කරන්නස්ථà·à¶´à¶±à¶º කරන්නඔබගේ à¶§à·à¶¶à·Šà¶½à¶§à·Š පරිගණකයේ à¶±à·à¶à·’ Google Play සේව෠නොමà·à¶à·’à·€ %1$s à¶°à·à·€à¶±à¶º නොවනු ඇà¶.Google Play සේව෠ලබ෠ගන්නGoogle Play සේවà·à·€à¶½ ලබ෠ගචහà·à¶šà·’ à¶¶à·€Google Play සේව෠දà·à·‚යඔබගේ à¶‹à¶´à·à¶‚ගය මගින් සහà·à¶º නොදක්වන, Google Play සේව෠නොමà·à¶à·’à·€ %1$s à¶°à·à·€à¶±à¶º නොවනු ඇà¶.යà·à·€à¶à·Šà¶šà·à¶½à·“à¶± කරන්නGoogle Play සේව෠යà·à·€à¶à·Šà¶šà·à¶½à·“à¶± කරන්නේ නොමà·à¶à·’à·€ %1$s à¶°à·à·€à¶±à¶º නොවේ.Google Play සේව෠යà·à·€à¶à·Šà¶šà·à¶½à·“à¶± කරන්නදà·à¶±à¶§ යà·à·€à¶à·Šà¶šà·à¶½à·“à¶± කරමින් ඇà¶à·’, Google Play සේව෠නොමà·à¶à·’à·€ %1$s à¶°à·à·€à¶±à¶º නොවනු ඇà¶.Google Play සේවà·à·€à¶½ නව අනුවà·à¶¯à¶ºà¶šà·Š à¶…à·€à·à·Šâ€à¶ºà¶ºà·’. එය මද වේලà·à·€à¶šà·’න් එය විසින්ම යà·à·€à¶à·Šà¶šà·à¶½à·“à¶± වනු ඇà¶.දුරකථනය à¶à·”à·… විවෘචකරන්නපුරන්නGoogle සමගින් පුරන්නActiva%1$s no funcionarà si no actives Serveis de Google Play.Activa Serveis de Google PlayInstal·la%1$s no s\'executarà si Serveis de Google Play no està instal·lat al dispositiu.Obtén Serveis de Google PlayDisponibilitat de serveis de Google PlayError de Serveis de Google Play%1$s no es pot executar sense Serveis de Google Play, que no és compatible amb el teu dispositiu.Actualitza%1$s no s\'executarà si no actualitzes Serveis de Google Play.Actualitza Serveis de Google Play%1$s no s\'executarà sense Serveis de Google Play, que s\'està actualitzant en aquest moment.Cal una nova versió de Serveis de Google Play. S\'actualitzarà automà ticament aviat.Obre al telèfonInicia sessióInicia la sessió amb GoogleÙØ¹Ø§Ù„ Ú©Ø±Ø¯Ù†â€ØªØ§ وقتی «خدمات Google Play» را ÙØ¹Ø§Ù„ نکنید، %1$s کار نمی‌کند.â€â€«Ùعال کردن «خدمات Google Play»نصبâ€%1$s بدون خدمات Google Play Ú©Ù‡ در دستگاه شما وجود ندارد اجرا نمی‌شود.â€Ø¯Ø±ÛŒØ§Ùت «خدمات Google PlayÂ»â€Ø¯Ø±Ø¯Ø³ØªØ±Ø³ بودن خدمات Google Playâ€Ø®Ø·Ø§ در خدمات Google Playâ€%1$s بدون خدمات Google Play Ú©Ù‡ در دستگاه شما پشتیبانی نمی‌شود، اجرا نخواهد شد.Ø¨Ù‡â€ŒØ±ÙˆØ²Ø±Ø³Ø§Ù†ÛŒâ€ØªØ§Ø² مانی Ú©Ù‡ «خدمات Google Play» را به‌روزرسانی نکنید، %1$s اجرا نمی‌شود.â€â€«Ø¨Ù‡â€ŒØ±ÙˆØ²Ø±Ø³Ø§Ù†ÛŒ «خدمات Google Play»â€%1$s بدون «خدمات Google Play» Ú©Ù‡ Ø¯Ø±ØØ§Ù„ ØØ§Ø¶Ø± Ø¯Ø±ØØ§Ù„ به‌روزرسانی هستند، کار نمی‌کند.â€Ù†Ø³Ø®Ù‡ جدید «خدمات Google Play» نیاز است. به‌زودی به‌طور خودکار به‌روزرسانی می‌شود.باز کردن در تلÙنورود به سیستمâ€ÙˆØ±ÙˆØ¯ به سیستم با Google‎સકà«àª·àª® કરોતમે Google Play સેવાઓ સકà«àª·àª® કરશો નહીં તà«àª¯àª¾àª‚ સà«àª§à«€ %1$s કારà«àª¯ કરશે નહીં.Google Play સેવાઓ સકà«àª·àª® કરોઇનà«àª¸à«àªŸà«‰àª² કરો%1$s, Google Play સેવાઓ વગર ચાલશે નહીં, જે તમારા ઉપકરણમાંથી ખૂટે છે.Google Play સેવાઓ મેળવોGoogle Play સેવાઓની ઉપલબà«àª§àª¤àª¾Google Play સેવાઓની àªà«‚લ%1$s, Google Play સેવાઓ વગર ચાલશે નહીં, જે તમારા ઉપકરણ દà«àªµàª¾àª°àª¾ સમરà«àª¥àª¿àª¤ નથી.અપડેટ કરોતમે Google Play સેવાઓ અપડેટ કરશો નહીં તà«àª¯àª¾àª‚ સà«àª§à«€ %1$s શરૂ થશે નહીં.Google Play સેવાઓ અપડેટ કરો%1$s, Google Play સેવાઓ વગર શરૂ થશે નહીં, જે વરà«àª¤àª®àª¾àª¨àª®àª¾àª‚ અપડેટ થઈ રહી છે.Google Play સેવાઓના નવા સંસà«àª•રણની જરૂર છે. તે ટૂંક સમયમાં પોતાને અપડેટ કરશે.ફોનમાં ખોલોસાઇન ઇન કરોGoogle માં સાઇન ઇન કરોGaitu%1$s aplikazioak ez du funtzionatuko Google Play Services gaitzen ez baduzu.Gaitu Google Play ServicesInstalatu%1$s ez da exekutatuko Google Play Services gabe, baina ez dago halakorik gailuan.Lortu Google Play ServicesGoogle Play Services-en erabilgarritasunaGoogle Play Services-en errorea%1$s aplikazioa ezin da erabili Google Play Services gabe, baina zure gailua ez da harekin bateragarria.Eguneratu%1$s ez da exekutatuko Google Play Services eguneratzen ez baduzu.Eguneratu Google Play Services%1$s ez da exekutatuko Google Play Services gabe; zerbitzu hori eguneratzen ari da.Google Play Services-en bertsio berria behar da. Berehala eguneratuko da automatikoki.Ireki telefonoanHasi saioaHasi saioa Google-ko kontuarekinà°ªà±à°°à°¾à°°à°‚à°à°¿à°‚à°šà±à°®à±€à°°à± Google Play సేవలనౠపà±à°°à°¾à°°à°‚à°à°¿à°¸à±à°¤à±‡ మినహా %1$s పని చేయదà±.Google Play సేవలనౠపà±à°°à°¾à°°à°‚à°à°¿à°‚చండిఇనà±â€Œà°¸à±à°Ÿà°¾à°²à± చేయి%1$s Google Play సేవలౠలేకà±à°‚à°¡à°¾ అమలౠకాదà±, à°† సేవలౠమీ పరికరంలో లేవà±.Google Play సేవలనౠపొందండిGoogle Play సేవల à°²à°à±à°¯à°¤Google Play సేవల à°Žà°°à±à°°à°°à±%1$s Google Play సేవలౠలేకà±à°‚à°¡à°¾ అమలౠకాదà±, à°ˆ సేవలకౠమీ పరికరంలో మదà±à°¦à°¤à± లేదà±.à°…à°ªà±â€Œà°¡à±‡à°Ÿà± చేయిమీరౠGoogle Play సేవలనౠనవీకరిసà±à°¤à±‡ మినహా %1$s అమలౠకాదà±.Google Play సేవలనౠఅపà±â€Œà°¡à±‡à°Ÿà± చేయండి%1$s Google Play సేవలౠలేకà±à°‚à°¡à°¾ అమలౠకాదà±, à°† సేవలౠపà±à°°à°¸à±à°¤à±à°¤à°‚ నవీకరించబడà±à°¤à±à°¨à±à°¨à°¾à°¯à°¿.కొతà±à°¤ Google Play సేవల వెరà±à°·à°¨à± అవసరం. అది కొదà±à°¦à°¿ సేపటà±à°²à±‹ దానంతట అదే à°…à°ªà±â€Œà°¡à±‡à°Ÿà± చేయబడà±à°¤à±à°‚ది.ఫోనà±â€Œà°²à±‹ తెరà±à°µà±à°¸à±ˆà°¨à± ఇనౠచేయండిGoogleతో సైనౠఇనౠచేయండిOmogoÄiAplikacija %1$s ne bo delovala, Äe ne omogoÄite storitev Google Play.OmogoÄanje storitev Google PlayNamestiAplikacija %1$s ne deluje brez storitev Google Play, vendar teh ni v napravi.Namestitev storitev Google PlayDostopnost storitev Google PlayNapaka storitev Google PlayAplikacija %1$s ne deluje brez storitev Google Play, ki jih vaÅ¡a naprava ne podpira.PosodobiAplikacija %1$s ne bo delovala, Äe ne posodobite storitev Google Play.Posodobitev storitev Google PlayAplikacija %1$s ne deluje brez storitev Google Play, ki se trenutno posodabljajo.Potrebujete novo razliÄico storitev Google Play. V kratkem se bodo posodobile.Odpiranje v telefonuPrijavaPrijava z raÄunom GoogleAttiva%1$s non funzionerà se non attivi Google Play Services.Attiva Google Play ServicesInstallaL\'app %1$s non funzionerà senza Google Play Services, non presente sul tuo dispositivo.Installa Google Play ServicesDisponibilità di Google Play ServicesErrore Google Play Services%1$s non funzionerà senza Google Play Services, non supportati dal tuo dispositivo.Aggiorna%1$s non funzionerà se non aggiorni Google Play Services.Aggiorna Google Play Services%1$s non funzionerà senza Google Play Services, attualmente in fase di aggiornamento.È richiesta una nuova versione di Google Play Services. L\'aggiornamento automatico verrà eseguito a breve.Apri sul telefonoAccediAccedi con GoogleIespÄ“jotLai lietotne %1$s darbotos, ir jÄiespÄ“jo Google Play pakalpojumi.Google Play pakalpojumu iespÄ“joÅ¡anaInstalÄ“tLai lietotne %1$s darbotos, ierÄ«cÄ“ ir jÄinstalÄ“ Google Play pakalpojumi.Google Play pakalpojumu iegūšanaGoogle Play pakalpojumu pieejamÄ«baGoogle Play pakalpojumu kļūdaLai lietotne %1$s darbotos, ir nepiecieÅ¡ami Google Play pakalpojumi, taÄu jÅ«su ierÄ«ce tos neatbalsta.AtjauninÄtLai lietotne %1$s darbotos, jums ir jÄatjaunina Google Play pakalpojumi.Google Play pakalpojumu atjauninÄÅ¡anaLai lietotne %1$s darbotos, ir jÄinstalÄ“ Google Play pakalpojumi. PaÅ¡laik notiek to atjauninÄÅ¡ana.Ir nepiecieÅ¡ama jauna Google Play pakalpojumu versija. DrÄ«zumÄ tÄ tiks instalÄ“ta.AtvÄ“rt tÄlrunÄ«PierakstÄ«tiesPierakstÄ«ties ar Google kontuActivar%1$s non funcionará a menos que actives os servizos de Google Play.Activar servizos de Google PlayInstalar%1$s non se executará se o teu dispositivo non ten instalados os servizos de Google Play.Descargar servizos de Google PlayDispoñibilidade dos servizos de PlayErro nos servizos de Google Play%1$s non se executará sen os servizos de Google Play, que non son compatibles co teu dispositivo.Actualizar%1$s non se executará a menos que actualices os servizos de Google Play.Actualizar os servizos de Google Play%1$s non se executará sen os servizos de Google Play, que se están actualizando neste momento.NecesÃtase a nova versión dos servizos de Google Play. Actualizarase en breve.Abrir no teléfonoIniciar sesiónIniciar sesión con Googleå¯ç”¨æ‚¨å¿…须先å¯ç”¨ Google Play æœåŠ¡ï¼Œç„¶åŽæ‰èƒ½è¿è¡Œ%1$s。å¯ç”¨ Google Play æœåŠ¡å®‰è£…æ‚¨çš„è®¾å¤‡æ²¡æœ‰å®‰è£… Google Play æœåŠ¡ï¼Œå› æ¤æ— 法è¿è¡Œ%1$sã€‚èŽ·å– Google Play æœåŠ¡Google Play æœåŠ¡çš„é€‚ç”¨èŒƒå›´Google PlayæœåŠ¡å‡ºé”™æ‚¨çš„è®¾å¤‡ä¸æ”¯æŒ Google Play æœåŠ¡ï¼Œå› æ¤æ— 法è¿è¡Œ%1$s。更新您必须先更新 Google Play æœåŠ¡ï¼Œç„¶åŽæ‰èƒ½è¿è¡Œ%1$s。更新 Google Play æœåŠ¡Google Play æœåС当剿£åœ¨æ›´æ–°ï¼Œå› æ¤æ‚¨æ— 法è¿è¡Œ%1$s。必须使用新版 Google Play æœåŠ¡ã€‚è¯¥æœåŠ¡å¾ˆå¿«å°±ä¼šè‡ªè¡Œæ›´æ–°ã€‚åœ¨æ‰‹æœºä¸Šæ‰“å¼€ç™»å½•ä½¿ç”¨ Google å¸å·ç™»å½•አንቃGoogle Play አገáˆáŒáˆŽá‰¶á‰½áŠ• ካላáŠá‰ በስተቀሠ%1$s አá‹áˆ°áˆ«áˆá¢Google Play አገáˆáŒáˆŽá‰¶á‰½áŠ• ያንá‰áŒ«áŠ•%1$s ያለ Google Play አገáˆáŒáˆŽá‰¶á‰½ አá‹áˆ°áˆ«áˆá£ እáŠáˆ± á‹°áŒáˆž በመሣሪያዎ ላዠየሉáˆá¢Google Play አገáˆáŒáˆŽá‰¶á‰½áŠ• á‹«áŒáŠ™Google Play አገáˆáŒáˆŽá‰¶á‰½ ተገáŠáŠá‰µá‹¨Google Play አገáˆáŒáˆŽá‰¶á‰½ ስህተት%1$s ያለGoogle Play አገáˆáŒáˆŽá‰¶á‰½ አá‹áˆ„ድáˆá£ እáŠá‹šáˆ…ሠበመሣሪያዎ አá‹á‹°áŒˆá‰áˆá¢á‹«á‹˜áˆáŠ‘Google Play አገáˆáŒáˆŽá‰¶á‰½áŠ• ካላዘመኑ በስተቀሠድረስ %1$s አá‹áˆ°áˆ«áˆá¢Google Play አገáˆáŒáˆŽá‰¶á‰½áŠ• ያዘáˆáŠ‘%1$s ያለ Google Play አገáˆáŒáˆŽá‰¶á‰½ አá‹áˆ°áˆ«áˆá£ እáŠáˆ± á‹°áŒáˆž በአáˆáŠ‘ ጊዜ በመዘመን ላዠናቸá‹á¢áŠ á‹²áˆµ የGoogle Play አገáˆáŒáˆŽá‰¶á‰½ ስሪት ያስáˆáˆáŒ‹áˆá¢ በቅáˆá‰¡ እራሱን ያዘáˆáŠ“áˆá¢áˆµáˆáŠ áˆ‹á‹ áŠáˆá‰µáŒá‰£á‰ Google á‹áŒá‰¡Aktifkan%1$s tidak akan berfungsi jika layanan Google Play tidak diaktifkan.Aktifkan layanan Google PlayInstal%1$s tidak akan berjalan tanpa layanan Google Play, yang tidak ada di perangkat Anda.Dapatkan layanan Google PlayKetersediaan layanan Google PlayKesalahan layanan Google Play%1$s tidak akan berjalan tanpa layanan Google Play, yang tidak didukung oleh perangkat Anda.Update%1$s tidak akan berjalan jika layanan Google Play tidak diperbarui.Perbarui layanan Google Play%1$s tidak akan berjalan tanpa layanan Google Play, yang saat ini sedang diperbarui.Perlu versi baru layanan Google Play. Akan segera memperbarui sendiri.Buka di ponselLoginLogin dengan GoogleOta käyttöön%1$s ei toimi, ellet ota Google Play Palveluita käyttöön.Ota Google Play Palvelut käyttöönAsenna%1$s ei toimi ilman Google Play Palveluita, jotka puuttuvat laitteeltasi.Asenna Google Play PalvelutGoogle Play Palveluiden saatavuusVirhe Google Play -palveluissa%1$s ei toimi ilman Google Play Palveluita, joita laitteesi ei tue.Päivitä%1$s ei toimi, ellet päivitä Google Play Palveluita.Päivitä Google Play Palvelut%1$s ei toimi ilman Google Play Palveluita, joita päivitetään tällä hetkellä.Uusi Google Play Palveluiden versio tarvitaan. Se päivittyy pian.Avaa puhelimessaKirjaudu sisäänKirjaudu Google-tililleჩáƒáƒ თვáƒ%1$s ვერიმუშáƒáƒ•ებს Google Play Services-ის ჩáƒáƒ თვáƒáƒ›áƒ“ე.Google Play Services-ის ჩáƒáƒ თვáƒáƒ˜áƒœáƒ¡áƒ¢áƒáƒšáƒáƒªáƒ˜áƒ%1$s ვერგáƒáƒ”შვებრGoogle Play Services-ის გáƒáƒ ეშე, რáƒáƒ›áƒ”ლიც áƒáƒ™áƒšáƒ˜áƒ თქვენს მáƒáƒ¬áƒ§áƒáƒ‘ილáƒáƒ‘áƒáƒ¡.Google Play Services-ის ჩáƒáƒ›áƒáƒ¢áƒ•ირთვáƒGoogle Play services-ის ხელმისáƒáƒ¬áƒ•დáƒáƒ›áƒáƒ‘áƒGoogle Play Services-ის შეცდáƒáƒ›áƒ%1$s ვერგáƒáƒ”შვებრGoogle Play Services-ის გáƒáƒ ეშე, რáƒáƒ›áƒšáƒ”ბიც მხáƒáƒ დáƒáƒ£áƒáƒ”რელირთქვენი მáƒáƒ¬áƒ§áƒáƒ‘ილáƒáƒ‘ის მიერ.გáƒáƒœáƒáƒ®áƒšáƒ”ბáƒ%1$s ვერგáƒáƒ”შვებáƒ, თუ Google Play სერვისებს áƒáƒ გáƒáƒœáƒáƒáƒ®áƒšáƒ”ბთ.გáƒáƒœáƒáƒáƒ®áƒšáƒ”თ Google Play Services%1$s ვერგáƒáƒ”შვებრGoogle Play Services-ის გáƒáƒ ეშე, რáƒáƒ›áƒ”ლთრგáƒáƒœáƒáƒ®áƒšáƒ”ბáƒáƒª áƒáƒ›áƒŸáƒáƒ›áƒáƒ“ მიმდინáƒáƒ ეáƒáƒ‘ს.სáƒáƒáƒ˜áƒ áƒáƒ Google Play Services-ის áƒáƒ®áƒáƒšáƒ˜ ვერსიáƒ. ის მáƒáƒšáƒ” გáƒáƒœáƒáƒ®áƒšáƒ“ებáƒ.ტელეფáƒáƒœáƒ¨áƒ˜ გáƒáƒ®áƒ¡áƒœáƒáƒ¨áƒ”სვლáƒGoogle-ით შესვლáƒOmogućiAplikacija %1$s neće raditi ako ne omogućite Google Play usluge.Omogućite Google Play uslugeInstalirajAplikacija %1$s neće raditi bez Google Play usluga, kojih na vaÅ¡em ureÄ‘aju nema.Nabavite Google Play uslugeDostupnost Google Play uslugaGreÅ¡ka Google Play uslugeAplikacija %1$s neće raditi bez Google Play usluga, koje vaÅ¡ ureÄ‘aj ne podržava.AžurirajAplikacija %1$s neće raditi ako ne ažurirate Google Play usluge.Ažuriranje Google Play uslugaAplikacija %1$s neće raditi bez Google Play usluga, koje se trenutno ažuriraju.Potrebna je nova verzija Google Play usluga. Ubrzo će se samo ažurirati.Otvori na telefonuPrijavaPrijavi se pomoću GoogleaEngedélyezésA(z) %1$s alkalmazás csak akkor működik, ha engedélyezi a Google Play-szolgáltatásokat.Google Play-szolgáltatások engedélyezéseTelepÃtésA(z) %1$s alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyek hiányoznak az eszközrÅ‘l.A Google Play-szolgáltatások beszerzéseGoogle Play-szolgáltatások elérhetÅ‘ségeGoogle Play-szolgáltatások – hibaA(z) %1$s alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyeket eszköze nem támogat.FrissÃtésA(z) %1$s alkalmazás csak akkor fog működni, ha frissÃti a Google Play-szolgáltatásokat.A Google Play-szolgáltatások frissÃtéseA(z) %1$s alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyek frissÃtése folyamatban van.A Google Play-szolgáltatások új verziójára van szükség. A szolgáltatás hamarosan frissÃti önmagát.Megnyitás a telefononBejelentkezésBejelentkezés Google-fiókkalÐктивиране%1$s нÑма да работи, оÑвен ако не активирате уÑлугите за Google Play.Ðктивиране на уÑлугите за Google PlayИнÑталиране%1$s нÑма да Ñе изпълнÑва, тъй като уÑлугите за Google Play не Ñа инÑталирани на уÑтройÑтвото ви.ИзтеглÑне на уÑлугите за Google PlayÐаличноÑÑ‚ на уÑлугите за Google PlayГрешка в уÑлугите за Google Play%1$s нÑма да Ñе изпълнÑва, тъй като уÑлугите за Google Play не Ñе поддържат от уÑтройÑтвото ви.Ðктуализиране%1$s нÑма да Ñе изпълнÑва, оÑвен ако не актуализирате уÑлугите за Google Play.Ðктуализиране на уÑлугите за Google Play%1$s нÑма да Ñе изпълнÑва без уÑлугите за Google Play. ПонаÑтоÑщем те Ñе актуализират.Ðеобходима е нова верÑÐ¸Ñ Ð½Ð° уÑлугите за Google Play. Скоро Ñ‚Ñ Ñ‰Ðµ Ñе актуализира автоматично.ОтварÑне на телефонаВходВход Ñ GoogleActivează%1$s nu va funcÈ›iona decât dacă activezi serviciile Google Play.Activează serviciile Google PlayInstalează%1$s nu va rula fără serviciile Google Play, care lipsesc de pe dispozitivul tău.Descarcă serviciile Google PlayDisponibilitatea serviciilor Google PlayEroare a serviciilor Google Play%1$s nu va rula fără serviciile Google Play, care nu sunt acceptate de dispozitivul tău.Actualizează%1$s nu va rula decât dacă actualizezi serviciile Google Play.Actualizează serviciile Google Play%1$s nu va rula fără serviciile Google Play, care momentan se actualizează.Este necesară o nouă versiune a serviciilor Google Play. Se vor actualiza automat în curând.Deschide pe telefonConectează-teConectează-te cu Googleបើក%1$s នឹងមិនដំណើរការទ០លុះážáŸ’ážšáž¶ážáŸ‚អ្នកបើកសáŸážœáž¶áž€áž˜áŸ’ម Google Play។បើកសáŸážœáž¶áž€áž˜áŸ’ម Google Playដំឡើង%1$s នឹងមិនដំណើរការទ០ប្រសិនបើមិនមានសáŸážœáž¶áž€áž˜áŸ’មនានារបស់ Google Play ដែលបានបាážáŸ‹áž–ីឧបករណáŸážšáž”ស់អ្នក។ទាញយកសáŸážœáž¶áž€áž˜áŸ’ម Google Playលទ្ធភាព​ប្រើប្រាស់សáŸážœáž¶áž€áž˜áŸ’ម Google Playកំហុស​​សáŸážœáž¶áž€áž˜áŸ’ម​ Google កម្សាន្áž%1$s នឹងមិនដំណើរការដោយគ្មានសáŸážœáž¶áž€áž˜áŸ’មរបស់ Google Play ដែលឧបករណáŸážšáž”ស់អ្នកមិនគាំទ្រនោះទáŸáŸ”ធ្វើបច្ចុប្បន្នភាព%1$s នឹងមិនដំណើរការទ០លុះážáŸ’ážšáž¶ážáŸ‚អ្នកធ្វើបច្ចុប្បន្នភាពសáŸážœáž¶áž€áž˜áŸ’ម Google Play។អាប់ដáŸážážŸáŸážœáž¶áž€áž˜áŸ’ម Google Play%1$s នឹងមិនដំណើរការទ០បើមិនមានសáŸážœáž¶áž€áž˜áŸ’ម Google Play ដោយសារážáŸ‚វាកំពុងអាប់ដáŸážáŸ”ážáž˜áŸ’រូវឲ្យមានកំណែážáŸ’មីនៃសáŸážœáž¶áž€áž˜áŸ’ម Google Play។ វានឹងអាប់ដáŸážážŠáŸ„áž™ážáŸ’លួនវានៅពáŸáž›áž”ន្ážáž·áž…ទៀážáž“áŸáŸ‡áŸ”បើកážáž¶áž˜áž‘ូរសáŸáž–្ទចូលចូលដោយប្រើ GoogleAktivérDu skal aktivere Google Play-tjenester, for at %1$s kan fungere.Aktivér Google Play-tjenesterInstallerDu skal installere Google Play-tjenester, før %1$s kan køre pÃ¥ din enhed.Hent Google Play-tjenesterGoogle Play-tjenesters tilgængelighedFejl i Google Play-tjenester%1$s fungerer ikke uden Google Play-tjenester, som ikke understøttes pÃ¥ din enhed.Opdater%1$s kan ikke køre, medmindre du opdaterer Google Play-tjenester.Opdater Google Play-tjenester%1$s kan ikke køre uden Google Play-tjenester, som i øjeblikket opdateres.Du skal bruge en ny version af Google Play-tjenester. Opdateringen gennemføres automatisk om et øjeblik.Ã…bn pÃ¥ telefonenLog indLog ind med GoogleOmogući%1$s neće funkcionirati ako ne omogućite usluge Google Playa.Omogućivanje usluga Google PlayaInstaliraj%1$s neće funkcionirati bez usluga Google Playa koje nisu instalirane na vaÅ¡em ureÄ‘aju.Preuzimanje usluga Google PlayaDostupnost usluga za Google PlayPogreÅ¡ka Usluga za Google Play%1$s neće funkcionirati bez usluga Google Playa koje vaÅ¡ ureÄ‘aj ne podržava.Ažuriraj%1$s neće funkcionirati ako ne ažurirate Google Play usluge.Ažuriranje usluga Google Playa%1$s neće se pokrenuti bez usluga Google Playa koje se trenutaÄno ažuriraju.Potrebna je nova verzija usluga Google Playa. Uskoro će se ažurirati.Otvori na telefonuPrijavaPrijava putem GoogleaEnable%1$s won\'t work unless you enable Google Play services.Enable Google Play servicesInstall%1$s won\'t run without Google Play services, which are missing from your device.Get Google Play servicesGoogle Play services availabilityGoogle Play services error%1$s won\'t run without Google Play services, which are not supported by your device.Update%1$s won\'t run unless you update Google Play services.Update Google Play services%1$s won\'t run without Google Play services, which are currently updating.New version of Google Play services needed. It will update itself shortly.Open on phoneSign InSign in with Google사용 ì„¤ì •Google Play 서비스를 사용하ë„ë¡ ì„¤ì •í•´ì•¼ %1$sì´(ê°€) ìž‘ë™í•©ë‹ˆë‹¤.Google Play 서비스 ì‚¬ìš©ì„¤ì¹˜ê¸°ê¸°ì— Google Play 서비스가 설치ë˜ì–´ 있어야 %1$sì´(ê°€) 실행ë©ë‹ˆë‹¤.Google Play 서비스 설치Google Play 서비스 사용 가능 여부Google Play 서비스 오류%1$sì€(는) Google Play 서비스 ì—†ì´ëŠ” 실행ë˜ì§€ 않으나, 기기ì—서 Google Play 서비스를 ì§€ì›í•˜ì§€ 않습니다.ì—…ë°ì´íЏGoogle Play 서비스를 ì—…ë°ì´íŠ¸í•´ì•¼ %1$sì´(ê°€) 실행ë©ë‹ˆë‹¤.Google Play 서비스 ì—…ë°ì´íŠ¸í˜„ìž¬ ì—…ë°ì´íЏ ì¤‘ì¸ Google Play 서비스가 있어야 %1$sì´(ê°€) 실행ë©ë‹ˆë‹¤.새 ë²„ì „ì˜ Google Play 서비스가 필요합니다. ê³§ ìžë™ìœ¼ë¡œ ì—…ë°ì´íЏë©ë‹ˆë‹¤.스마트í°ì—서 열기로그ì¸Google ê³„ì •ìœ¼ë¡œ 로그ì¸Activer%1$s ne fonctionnera pas tant que vous n\'aurez pas activé les services Google Play.Activer les services Google PlayInstaller%1$s ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre appareil.Installer les services Google PlayDisponibilité des services Google PlayErreur liée aux services Google Play%1$s ne fonctionnera pas sans les services Google Play, qui ne sont pas compatibles avec votre appareil.Mettre à jour%1$s ne fonctionnera pas tant que vous n\'aurez pas mis à jour les services Google Play.Mettre à jour les services Google Play%1$s ne fonctionnera pas sans les services Google Play, qui sont en cours de mise à jour.La nouvelle version des services Google Play est nécessaire. Elle sera bientôt installée automatiquement.Ouvrir sur le téléphoneSe connecterSe connecter avec GoogleÕ„Õ«Õ¡ÖÕ¶Õ¥Õ¬%1$s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ¨ Õ¹Õ« Õ¡Õ·ÕÕ¡Õ¿Õ« Õ´Õ«Õ¶Õ¹Ö‡ Õ¹Õ´Õ«Õ¡ÖÕ¶Õ¥Ö„ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ¨:Õ„Õ«Õ¡ÖÕ¶Õ¥Õ¬ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ¨ÕÕ¥Õ²Õ¡Õ¤Ö€Õ¥Õ¬%1$s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ¨ Õ¹Õ« Õ¡Õ·ÕÕ¡Õ¿Õ« Õ¡Õ¼Õ¡Õ¶Ö Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ«, Õ¸Ö€Õ¸Õ¶Ö„ Õ¹Õ¯Õ¡Õ¶ Õ±Õ¥Ö€ Õ½Õ¡Ö€Ö„Õ¸Ö‚Õ´:ÕÕ¥Õ²Õ¡Õ¤Ö€Õ¥Õ¬ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ¨Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ°Õ¡Õ½Õ¡Õ¶Õ¥Õ¬Õ«Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ½ÕÕ¡Õ¬ Õ¯Õ¡%1$s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ¨ Õ¹Õ« Õ¡Õ·ÕÕ¡Õ¿Õ« Õ¡Õ¼Õ¡Õ¶Ö Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ«, Õ¸Ö€Õ¸Õ¶Ö„ Õ±Õ¥Ö€ Õ½Õ¡Ö€Ö„Õ¸Ö‚Õ´ Õ¹Õ¥Õ¶ Õ¡Õ»Õ¡Õ¯ÖÕ¾Õ¸Ö‚Õ´:Ô¹Õ¡Ö€Õ´Õ¡ÖÕ¶Õ¥Õ¬%1$s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ¨ Õ¹Õ« Õ¡Õ·ÕÕ¡Õ¿Õ« Õ´Õ«Õ¶Õ¹Ö‡ Õ¹Õ©Õ¡Ö€Õ´Õ¡ÖÕ¶Õ¥Ö„ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ¨:Ô¹Õ¡Ö€Õ´Õ¡ÖÕ¶Õ¥Õ¬ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ¨%1$s Õ°Õ¡Õ¾Õ¥Õ¬Õ¾Õ¡Õ®Õ¨ Õ¹Õ« Õ¡Õ·ÕÕ¡Õ¿Õ« Õ¡Õ¼Õ¡Õ¶Ö Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ«, Õ¸Ö€Õ¸Õ¶Ö„ Õ¡ÕµÕ½ ÕºÕ¡Õ°Õ«Õ¶ Õ©Õ¡Ö€Õ´Õ¡ÖÕ¾Õ¸Ö‚Õ´ Õ¥Õ¶:Ô±Õ¶Õ°Ö€Õ¡ÕªÕ¥Õ·Õ¿ Õ§ Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ¶Õ¸Ö€ Õ¿Õ¡Ö€Õ¢Õ¥Ö€Õ¡Õ¯Õ¨: Ô±ÕµÕ¶ Õ·Õ¸Ö‚Õ¿Õ¸Õ¾ Õ¯Õ©Õ¡Ö€Õ´Õ¡ÖÕ¾Õ« Õ¡Õ¾Õ¿Õ¸Õ´Õ¡Õ¿ Õ¯Õ¥Ö€ÕºÕ¸Õ¾:Ô²Õ¡ÖÕ¥Õ¬ Õ°Õ¥Õ¼Õ¡ÕÕ¸Õ½Õ¸Õ¾Õ„Õ¸Ö‚Õ¿Ö„ Õ£Õ¸Ö€Õ®Õ¥Õ¬Õ„Õ¸Ö‚Õ¿Ö„ Õ£Õ¸Ö€Õ®Õ¥Õ¬ Google-Õ¸Õ¾ÙØ¹Ø§Ù„ Ú©Ø±ÛŒÚºâ€Ø¬Ø¨ تک آپ Google Play سروسز ÙØ¹Ø§Ù„ Ù†Ûیں کر لیتے، %1$s کام Ù†Ûیں کرے گی۔â€Google Play سروسز ÙØ¹Ø§Ù„ کریںانسٹال کریںâ€%1$s Google Play سروسز Ú©Û’ بغیر Ù†Ûیں Ú†Ù„Û’ گی، جو آپ Ú©Û’ Ø¢Ù„Û Ø³Û’ غائب Ûیں۔â€Google Play سروسز ØØ§ØµÙ„ کریںâ€Google Play سروسز Ú©ÛŒ دستیابیâ€Google Play سروسز Ú©ÛŒ خرابیâ€%1$s Google Play سروسز Ú©Û’ بغیر Ù†Ûیں Ú†Ù„Û’ گی، جن Ú©ÛŒ آپ کا Ø¢Ù„Û Ù…Ø¹Ø§ÙˆÙ†Øª Ù†Ûیں کرتا۔اپ ڈیٹ Ú©Ø±ÛŒÚºâ€Ø¬Ø¨ تک آپ Google Play سروسز اپ ڈیٹ Ù†Ûیں کر لیتے Ûیں %1$s تب تک Ù†Ûیں Ú†Ù„Û’ گی۔â€Google Play سروسز اپ ڈیٹ کریںâ€%1$s Google Play سروسز Ú©Û’ بغیر Ù†Ûیں Ú†Ù„Û’ گی، جو ÙÛŒ Ø§Ù„ØØ§Ù„ اپ ڈیٹ ÛÙˆ رÛÛŒ Ûیں۔â€Google Play سروسز Ú©Û’ نئے ورژن Ú©ÛŒ ضرورت ÛÛ’Û” ÛŒÛ ØªÚ¾ÙˆÚ‘ÛŒ دیر میں خود ÛÛŒ اپنے آپ Ú©Ùˆ اپ ڈیٹ کر Ù„Û’ گا۔Ùون پر کھولیںسائن ان کریںâ€Google Ú©Û’ ساتھ سائن ان کریںAtivarO %1$s não funciona enquanto não ativar os serviços do Google Play.Ativar serviços do Google PlayInstalarO %1$s não é executado sem os Serviços do Google Play, os quais estão em falta no seu dispositivo.Obter serviços do Google PlayDisponibilidade Serviços do Google PlayErro dos Serviços do Google PlayNão é possÃvel executar o %1$s sem os Serviços do Google Play, os quais não são compatÃveis com o seu dispositivo.AtualizarO %1$s não é executado enquanto não atualizar os serviços do Google Play.Atualizar serviços do Google PlayO %1$s não é executado sem os serviços do Google Play, os quais estão a ser atualizados.É necessária uma nova versão dos serviços do Google Play. Esta será atualizada automaticamente em breve.Abrir no telemóvelIniciar sessãoIniciar sessão com o Googleå•Ÿç”¨æ‚¨å¿…é ˆå•Ÿç”¨ Google Play æœå‹™ï¼Œæ–¹å¯åŸ·è¡Œã€Œ%1$sã€ã€‚啟用 Google Play æœå‹™å®‰è£æ‚¨çš„è£ç½®å°šæœªå®‰è£ Google Play æœå‹™ï¼Œå› æ¤ç„¡æ³•執行「%1$sã€ã€‚å®‰è£ Google Play æœå‹™Google Play æœå‹™çš„é©ç”¨ç¯„åœGoogle Play æœå‹™éŒ¯èª¤æ‚¨çš„è£ç½®ä¸æ”¯æ´ Google Play æœå‹™ï¼Œå› æ¤ç„¡æ³•執行「%1$sã€ã€‚æ›´æ–°æ‚¨å¿…é ˆæ›´æ–°ã€ŒGoogle Play æœå‹™ã€ï¼Œæ‰èƒ½åŸ·è¡Œ %1$s。更新 Google Play æœå‹™æ£åœ¨æ›´æ–° Google Play æœå‹™ï¼Œæ›´æ–°å®Œæˆå¾Œæ–¹å¯åŸ·è¡Œã€Œ%1$sã€ã€‚需è¦ä½¿ç”¨æ–°ç‰ˆæœ¬çš„ Google Play æœå‹™ã€‚更新會å³å°‡è‡ªå‹•開始。在手機開啟登入é€éŽ Google 登入ಸಕà³à²°à²¿à²¯à²—ೊಳಿಸà³Google Play ಸೇವೆಗಳನà³à²¨à³ ನೀವೠಸಕà³à²°à²¿à²¯à²—ೊಳಿಸದ ಹೊರತೠ%1$s ಕಾರà³à²¯à²¨à²¿à²°à³à²µà²¹à²¿à²¸à³à²µà³à²¦à²¿à²²à³à²².Google Play ಸೇವೆಗಳನà³à²¨à³ ಸಕà³à²°à²¿à²¯à²—ೊಳಿಸಿಇನà³â€Œà²¸à³à²Ÿà²¾à²²à³ ಮಾಡಿನಿಮà³à²® ಸಾಧನದಿಂದ ಕಾಣೆಯಾಗಿರà³à²µ %1$s, Google Play ಸೇವೆಗಳಿಲà³à²²à²¦à³† ರನೠಆಗà³à²µà³à²¦à²¿à²²à³à²².Google Play ಸೇವೆಗಳನà³à²¨à³ ಪಡೆಯಿರಿGoogle Play ಸೇವೆಗಳ ಲà²à³à²¯à²¤à³†Google Play ಸೇವೆಗಳ ದೋಷನಿಮà³à²® ಸಾಧನದ ಮೂಲಕ ಬೆಂಬಲಿಸದಿರà³à²µ Google Play ಸೇವೆಗಳಿಲà³à²²à²¦à³† %1$s ರನà³â€Œ ಆಗà³à²µà³à²¦à²¿à²²à³à²².ಅಪà³â€Œà²¡à³‡à²Ÿà³â€Œ ಮಾಡಿನೀವೠGoogle Play ಸೇವೆಗಳನà³à²¨à³ ಅಪà³â€à²¡à³‡à²Ÿà³ ಮಾಡದ ಹೊರತೠ%1$s ರನೠಆಗà³à²µà³à²¦à²¿à²²à³à²².Google ಪà³à²²à³‡ ಸೇವೆಗಳನà³à²¨à³ ಅಪà³â€Œà²¡à³‡à²Ÿà³â€Œ ಮಾಡಿGoogle Play ಸೇವೆಗಳಿಲà³à²²à²¦à³† ಪà³à²°à²¸à³à²¤à³à²¤ ಅಪà³â€Œà²¡à³‡à²Ÿà³ ಆಗà³à²¤à³à²¤à²¿à²°à³à²µ %1$s ರನೠಆಗà³à²µà³à²¦à²¿à²²à³à²².Google Play ಸೇವೆಗಳ ಹೊಸ ಆವೃತà³à²¤à²¿ ಅಗತà³à²¯à²µà²¿à²¦à³†. ಸದà³à²¯à²¦à²²à³à²²à³‡ ಅದೠತಾನಾಗಿಯೇ ಅಪà³â€Œà²¡à³‡à²Ÿà³ ಆಗà³à²¤à³à²¤à²¦à³†.ಫೋನà³â€Œà²¨à²²à³à²²à²¿ ತೆರೆಯಿರಿಸೈನೠಇನà³Google ಮೂಲಕ ಸೈನೠಇನೠಮಾಡಿସକàଷମ କରନàତàଆପଣ Google Play ସà‡à¬¬à¬¾ ସକàଷମ ନ କରିବା ପରàଯààŸà¬¨àତ %1$s କାମ କରିବ ନାହିà¬à¥¤Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬• ସକàଷମ କରନàତàଇନàâ€à¬·àଟଲà†କରନàତà%1$s à¬à¬¹à¬¿ Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬• ବିନା à¬šà¬¾à¬²à‡ à¬¨à¬¾à¬¹à¬¿à¬, à¬à¬¬à¬‚ ସà‡à¬—àଡ଼ିକ ଆପଣଙàକ ଡିà¬à¬¾à¬‡à¬¸àâ€Œà¬°à‡ à¬¨à¬¾à¬¹à¬¿à¬à¥¤Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬• ପàରାପàତ କରନàତàGoogle Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬•ର ଉପଲବàଧତାGoogle Play ସà‡à¬¬à¬¾ ସମàପରàକିତ ସମସààŸà¬¾%1$s à¬à¬¹à¬¿ Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬• ବିନା à¬šà¬¾à¬²à‡ à¬¨à¬¾à¬¹à¬¿à¬, à¬à¬¬à¬‚ ସà‡à¬—àଡ଼ିକ ଆପଣଙàକ ଡିà¬à¬¾à¬‡à¬¸àâ€Œà¬°à‡ à¬•à¬¾à¬® à¬•à¬°à‡ à¬¨à¬¾à¬¹à¬¿à¬à¥¤à¬…ପଡà‡à¬Ÿà†କରନàତàଆପଣ Google Play ସà‡à¬¬à¬¾ ଅପଡà‡à¬Ÿà‌ ନ କରିବା ପରàଯààŸà¬¨àତ %1$s ଚାଲିବ ନାହିà¬à¥¤Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬• ଅପଡà‡à¬Ÿà କରନàତàGoogle Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬• ବିନା %1$s ଚାଲିବ ନାହିà¬, ଯà‡à¬‰à¬à¬—ààœà¬¿à¬• ବରàତàତମାନ ଅପଡà‡à¬Ÿà‌ ହà‡à¬‰à¬›à¬¿à¥¤Google Play ସà‡à¬¬à¬¾à¬—ààœà¬¿à¬•ର ନà‚ତନ à¬à¬°àସନà‌ ଆବଶààŸà¬•। à¬à¬¹à¬¾ ନିଜକà କିଛି à¬¸à¬®àŸ à¬®à¬§ààŸà¬°à‡ ଅପଡà‡à¬Ÿà‌ କରିବ।ଫà‹à¬¨àâ€Œà¬°à‡ à¬–à‹à¬²à¬¨àତàସାଇନà‌-ଇନà କରନàତàGoogle ସହ ସାଇନà‌-ଇନà କରନàତàAktivieren%1$s funktioniert erst nach der Aktivierung der Google Play-Dienste.Google Play-Dienste aktivierenInstallierenZur Nutzung von %1$s sind die Google Play-Dienste erforderlich, die auf deinem Gerät nicht installiert sind.Google Play-Dienste installierenVerfügbarkeit von Google Play-DienstenFehler bei Zugriff auf Google Play-DiensteZur Nutzung von %1$s sind Google Play-Dienste erforderlich, die auf deinem Gerät nicht unterstützt werden.Aktualisieren%1$s wird nur ausgeführt, wenn du die Google Play-Dienste aktualisierst.Google Play-Dienste aktualisierenZur Nutzung von %1$s sind Google Play-Dienste erforderlich, die gerade aktualisiert werden.Eine neue Version der Google Play-Dienste wird benötigt. Diese wird in Kürze automatisch aktualisiert.Auf Smartphone öffnenAnmeldenÜber Google anmeldenHabilitar%1$s no funcionará a menos que habilites los servicios de Google Play.Habilitar servicios de Google PlayInstalar%1$s no se ejecutará si los Servicios de Google Play no están instalados en tu dispositivo.Obtener servicios de Google PlayDisp. de los Servicios de Google‌‌‌ PlayError de Google Play Services%1$s no se ejecutará sin los servicios de Google Play, que no son compatibles con tu dispositivo.Actualizar%1$s no se ejecutará a menos que actualices los servicios de Google Play.Actualizar servicios de Google Play%1$s no se ejecutará sin los servicios de Google Play. La plataforma se está actualizando en este momento.Se necesita una nueva versión de los servicios de Google Play. Se actualizarán automáticamente en breve.Abrir en el teléfonoAccederAcceder con Googleဖွင့်ရန်Google Play á€á€”်ဆောင်မှုများကá€á€¯ မဖွင့်သá %1$s သည်အလုပ်လုပ်မည်မဟုá€á€ºá€•ါá‹Google Play á€á€”်ဆောင်မှုများ ဖွင့်ရန်ထည့်သွင်းပါသင့်á€á€€á€ºá€˜á€œá€€á€ºá€á€½á€„် Google Play á€á€”်ဆောင်မှုများမရှá€á€žá€±á€¬á€€á€¼á€±á€¬á€„့် %1$s ကá€á€¯á€–ွင့်áမရပါá‹Google Play á€á€”်ဆောင်မှုများရယူရန်Google Play á€á€”်ဆောင်မှုများ ရရှá€á€”á€á€¯á€„်သည်Google Play á€á€”်ဆောင်မှုများ အမှားGoogle Play á€á€”်ဆောင်မှုများကá€á€¯ သင့်စက်ပစ္စည်းá€á€½á€„် ပံ့ပá€á€¯á€¸á€™á€‘ားသည့်အá€á€½á€€á€º áŽá€„်းမရှá€á€˜á€² %1$s ကá€á€¯ ဖွင့်áမရပါá‹á€¡á€•်ဒá€á€á€ºGoogle Play á€á€”်ဆောင်မှုများအား အပ်ဒá€á€á€ºá€™á€œá€¯á€•်ပါက %1$s အလုပ်လုပ်မည် မဟုá€á€ºá€•ါá‹Google Play á€á€”်ဆောင်မှုများကá€á€¯ အပ်ဒá€á€á€ºá€œá€¯á€•်ရန်Google Play á€á€”်ဆောင်မှုများကá€á€¯ လက်ရှá€á€¡á€•်ဒá€á€á€ºá€œá€¯á€•်နေသောကြောင့် %1$s ကá€á€¯á€–ွင့်áရမည်မဟုá€á€ºá€•ါá‹Google Play á€á€”်ဆောင်မှုဗားရှင်းအသစ်များ လá€á€¯á€¡á€•်နေသည်ዠအá€á€»á€á€”်အနည်းငယ်အကြာá€á€½á€„် áŽá€„်းကá€á€¯á€šá€ºá€á€á€¯á€„်အပ်ဒá€á€á€ºá€œá€¯á€•်ပါ လá€á€™á€·á€ºá€™á€Šá€ºá‹á€–ုန်းပေါ်မှာ ဖွင့်ပါလက်မှá€á€ºá€‘á€á€¯á€¸ á€á€„်ရန်Google ဖြင့် လက်မှá€á€ºá€‘á€á€¯á€¸á€á€„်ရေOmogucÌi%1$s necÌe funkcionisati ako ne omogucÌite Google Play usluge.OmogucÌite Google Play uslugeInstaliraj%1$s ne može da se pokrene bez Google Play usluga, koje nisu instalirane na ureÄ‘aju.Preuzmite Google Play uslugeDostupnost Google Play uslugaGreÅ¡ka Google Play usluga%1$s ne može da se pokrene bez Google Play usluga, koje ureÄ‘aj ne podržava.Ažuriraj%1$s ne može da se pokrene ako ne ažurirate Google Play usluge.Ažurirajte Google Play usluge%1$s ne može da se pokrene bez Google Play usluga, koje se trenutno ažuriraju.Potrebna je nova verzija Google Play usluga. Uskoro cÌe se ažurirati.Otvori na telefonuPrijavi mePrijavi me na Googleå•Ÿç”¨æ‚¨å¿…é ˆå•Ÿç”¨ Google Play æœå‹™ï¼Œæ‰èƒ½åŸ·è¡Œã€Œ%1$sã€ã€‚啟用 Google Play æœå‹™å®‰è£æ‚¨çš„è£ç½®ä¸¦æœªå®‰è£ Google Play æœå‹™ï¼Œå› æ¤ç„¡æ³•執行「%1$sã€ã€‚å–å¾— Google Play æœå‹™Google Play æœå‹™å¯ç”¨æ€§Google Play æœå‹™ç™¼ç”ŸéŒ¯èª¤æ‚¨çš„è£ç½®ä¸æ”¯æ´ Google Play æœå‹™ï¼Œå› æ¤ç„¡æ³•執行「%1$sã€ã€‚æ›´æ–°æ‚¨å¿…é ˆæ›´æ–° Google Play æœå‹™ï¼Œæ‰èƒ½åŸ·è¡Œã€Œ%1$sã€ã€‚æ›´æ–° Google Play æœå‹™åŸ·è¡Œã€Œ%1$sã€æ‰€éœ€çš„ Google Play æœå‹™æ£åœ¨æ›´æ–°ã€‚å¿…é ˆä½¿ç”¨æ–°ç‰ˆ Google Play æœå‹™ã€‚該æœå‹™ç¨å¾Œå°±æœƒè‡ªå‹•更新。在手機上開啟登入使用 Google 帳戶登入@android:color/white#1F000000@android:color/black@android:color/white#90000000#1F000000#90000000#DE000000Enable%1$s won\'t work unless you enable Google Play services.Enable Google Play servicesInstall%1$s won\'t run without Google Play services, which are missing from your device.Get Google Play servicesGoogle Play services availabilityGoogle Play services error%1$s won\'t run without Google Play services, which are not supported by your device.Update%1$s won\'t run unless you update Google Play services.Update Google Play services%1$s won\'t run without Google Play services, which are currently updating.New version of Google Play services needed. It will update itself shortly.Open on phoneSign inSign in with Google
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Aktiveer%1$s sal nie werk nie tensy jy Google Play Dienste aktiveer.Aktiveer Google Play DiensteInstalleer%1$s sal nie sonder Google Play Dienste werk nie, wat nie op jou toestel is nie.Kry Google Play DiensteBeskikbaarheid van Google Play DiensteGoogle Play Services-fout%1$s sal nie werk sonder Google Play Dienste nie, wat nie deur jou toestel gesteun word nie.Dateer op%1$s sal nie werk nie tensy jy Google Play Dienste opdateer.Dateer Google Play Dienste op%1$s sal nie sonder Google Play Dienste werk nie, wat tans opdateer.Nuwe weergawe van Google Play Dienste is nodig. Dit sal binnekort self opdateer.Maak oop op foonMeld aanMeld aan met GoogleWłączAplikacja %1$s nie bÄ™dzie dziaÅ‚ać, jeÅ›li nie włączysz UsÅ‚ug Google Play.Włącz UsÅ‚ugi Google PlayZainstaluj%1$s nie bÄ™dzie dziaÅ‚ać, jeÅ›li nie zainstalujesz na urzÄ…dzeniu UsÅ‚ug Google Play.Pobierz UsÅ‚ugi Google PlayDostÄ™pność UsÅ‚ug Google PlayBłąd UsÅ‚ug Google Play%1$s nie bÄ™dzie dziaÅ‚ać bez UsÅ‚ug Google Play, które nie sÄ… obecnie obsÅ‚ugiwane przez urzÄ…dzenie.AktualizujAplikacja %1$s nie bÄ™dzie dziaÅ‚ać, jeÅ›li nie zaktualizujesz UsÅ‚ug Google Play.Zaktualizuj UsÅ‚ugi Google PlayAplikacja %1$s nie bÄ™dzie dziaÅ‚ać bez UsÅ‚ug Google Play, które sÄ… obecnie aktualizowane.Wymagana jest nowa wersja UsÅ‚ug Google Play. Wkrótce nastÄ…pi automatyczna aktualizacja.Otwórz na telefonieZaloguj siÄ™Zaloguj siÄ™ przez GoogleÄ®galinti„%1$s“ neveiks, jei neįgalinsite „Google Play“ paslaugų.Ä®galinkite „Google Play“ paslaugasÄ®diegtiPrograma „%1$s“ nebus paleidžiama be „Google Play“ paslaugų, kurių nÄ—ra įrenginyje.Gaukite „Google Play“ paslaugas„Google Play“ paslaugų pasiekiamumas„Google Play“ paslaugų klaidaPrograma „%1$s“ nebus paleidžiama be „Google Play“ paslaugų, kurių jÅ«sų įrenginys nepalaiko.Atnaujinti„%1$s“ nebus paleidžiama, jei neatnaujinsite „Google Play“ paslaugų.Atnaujinkite „Google Play“ paslaugas„%1$s“ nebus paleidžiama be „Google Play“ paslaugų, kurios Å¡iuo metu atnaujinamos.Reikia naujos versijos „Google Play“ paslaugų. Jos netrukus bus atnaujintos.Atidaryti telefonePrisijungtiPrisijungti naudojant „Google“Activer%1$s ne fonctionnera pas tant que vous n\'aurez pas activé les services Google Play.Activer les services Google PlayInstaller%1$s ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre appareil.Installer les services Google PlayDisponibilité des services Google PlayErreur liée aux services Google PlayL\'application %1$s ne fonctionnera pas sans les services Google Play, qui ne sont pas pris en charge par votre appareil.Mettre à jour%1$s ne fonctionnera pas tant que vous n\'aurez pas mis à jour les services Google Play.Mettre à jour les services Google Play%1$s ne fonctionnera pas sans les services Google Play, qui sont actuellement mis à jour.La nouvelle version des services Google Play est nécessaire. Elle sera bientôt installée automatiquement.Ouvrir sur le téléphoneConnexionSe connecter avec GoogleYoqishGoogle Play xizmatlari yoqilmaguncha, %1$s ishlamaydi.Google Play xizmatlarini yoqishO‘rnatish%1$s ishlashi uchun qurilmangizda Google Play xizmatlarini o‘rnatish lozim.Google Play xizmatlarini o‘rnatishGoogle Play xizmatlarining mavjudligiGoogle Play xizmatlari xatosi%1$s ilovasi Google Play xizmatlarisiz ishlamaydi, biroq qurilmangiz ularni qo‘llab-quvvatlamaydi.YangilashGoogle Play xizmatlari yangilanmaguncha, %1$s ishga tushmaydi.Google Play xizmatlarini yangilash%1$s ilovasining ishlashi uchun zarur Google Play xizmatlari hozirda yangilanmoqda.Google Play xizmatlarining yangi versiyasi zarur. U o‘zini qisqa vaqt ichida yangilaydi.Telefonda ochishKirishGoogle orqali kirishসকà§à¦·à¦® কৰকআপà§à¦¨à¦¿ Google Play সেৱাবোৰ সকà§à¦·à¦® নকৰালৈকে %1$sঠকাম নকৰিব।Google পà§à¦²à§‡ সেৱাসকà§à¦·à¦® কৰকইনষà§à¦Ÿà¦² কৰক%1$s Google পà§à¦²à§‡ সেৱাৰ অবিহনে নচলে, যিটো আপোনাৰ ডিà¦à¦¾à¦‡à¦šà¦¤ নাই।Google পà§à¦²à§‡ সেৱালাঠকৰকGoogle পà§à¦²à§‡ সেৱাসমূহৰ উপলবà§à¦§à¦¤à¦¾Google Playà§° সেৱা সমà§à¦ªà§°à§à¦•ীয় আসোà¦à§±à¦¾à¦¹%1$s Google পà§à¦²à§‡ সেৱাৰ অবিহনে নচলে, যিবোৰ আপোনাৰ ডিà¦à¦¾à¦‡à¦šà¦¤ চলিব নোৱাৰে।আপডে’ট কৰকআপà§à¦¨à¦¿ Google Play সেৱাবোৰ আপডে’ট নকৰালৈকে %1$s নচলিব।Google Play সেৱা আপডে’ট কৰকবৰà§à¦¤à¦®à¦¾à¦¨ আপডে’ট হৈ থকা Google Play সেৱাসমূহৰ অবিহনে %1$s নচলিব৷Google Play সেৱাসমূহৰ নতà§à¦¨ সংসà§à¦•ৰণৰ পà§à§°à§Ÿà§‹à¦œà¦¨à§· à¦à¦‡à¦Ÿà§‹ শীঘà§à§°à§‡à¦‡ নিজে-নিজে আপডে’ট হ’ব৷ফ\'নত খোলকছাইন ইন কৰকGoogleà§° জৰিয়তে ছাইন ইন কৰকHabilitar%1$s no funcionará hasta que no habilites Servicios de Google Play.Habilita Servicios de Google PlayInstalar%1$s no se ejecutará si los Servicios de Google Play no están instalados en tu dispositivo.Descargar Servicios de Google PlayDisponibilidad Servicios de Google PlayError de Servicios de Google PlayNo es posible ejecutar la aplicación %1$s sin los Servicios de Google Play, que no son compatibles con tu dispositivo.Actualizar%1$s no funcionará hasta que no actualices Servicios de Google Play.Actualiza Servicios de Google Play%1$s no se ejecutará hasta que finalice la actualización en curso de Servicios de Google Play.Se necesita una nueva versión de Servicios de Google Play. Se actualizará en breve.Abrir en teléfonoIniciar sesiónIniciar sesión con GoogleWasha%1$s haitafanya kazi isipokuwa uwashe huduma za Google Play.Washa huduma za Google PlaySakinisha%1$s haitafanya kazi bila huduma za Google Play. Huduma hizi hazipatikani kwenye kifaa chako.Pata huduma za Google PlayUpatikanaji wa huduma za Google PlayHitilafu kwenye huduma za Google Play%1$s haitafanya kazi bila huduma za Google Play. Huduma hizi hazitumiki kwenye kifaa chako.Sasisha%1$s haitafanya kazi hadi usasishe huduma za Google Play.Sasisha huduma za Google Play%1$s haitafanya kazi bila huduma za Google Play. Huduma hizi zinasasishwa sasa.Toleo jipya la huduma za Google Play linahitajika. Litajisasisha baada ya muda mfupi.Fungua kwenye simuIngia katika akauntiIngia katika akaunti ukitumia Googleਚਾਲੂ ਕਰੋ%1$s ਕੰਮ ਨਹੀਂ ਕਰੇਗਾ ਜਦੋਂ ਤੱਕ ਤà©à¨¸à©€à¨‚ Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਚਾਲੂ ਨਹੀਂ ਕਰਦੇ ਹੋ।Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਚਾਲੂ ਕਰੋਸਥਾਪਤ ਕਰੋ%1$s Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲੇਗੀ, ਜੋ ਤà©à¨¹à¨¾à¨¡à©‡ ਡੀਵਾਈਸ ਤੋਂ ਗà©à©°à¨® ਹਨ।Google Play ਸੇਵਾਵਾਂ ਪà©à¨°à¨¾à¨ªà¨¤ ਕਰੋGoogle Play ਸੇਵਾਵਾਂ ਦੀ ਉਪਲਬਧਤਾGoogle Play ਸੇਵਾਵਾਂ ਅਸ਼à©à©±à¨§à©€%1$s Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲ ਸਕੇਗੀ, ਜੋ ਤà©à¨¹à¨¾à¨¡à©‡ ਡੀਵਾਈਸ \'ਤੇ ਸਮਰਥਿਤ ਨਹੀਂ ਹਨ।ਅੱਪਡੇਟ ਕਰੋ%1$s ਨਹੀਂ ਚੱਲੇਗਾ ਜਦੋਂ ਤੱਕ ਤà©à¨¸à©€à¨‚ Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਅੱਪਡੇਟ ਨਹੀਂ ਕਰਦੇ ਹੋ।Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਅੱਪਡੇਟ ਕਰੋ%1$s Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲੇਗਾ, ਜੋ ਵਰਤਮਾਨ ਵਿੱਚ ਅੱਪਡੇਟ ਹੋ ਰਹੀਆਂ ਹਨ।Google Play ਸੇਵਾਵਾਂ ਦੇ ਨਵਾਂ ਸੰਸਕਰਨ ਦੀ ਲੋੜ ਹੈ। ਇਹ ਛੇਤੀ ਹੀ ਸਵੈਚਲਿਤ ਤੌਰ \'ਤੇ ਅੱਪਡੇਟ ਕਰੇਗਾ।ਫ਼ੋਨ \'ਤੇ ਖੋਲà©à¨¹à©‹à¨¸à¨¾à¨ˆà¨¨-ਇਨ ਕਰੋGoogle ਨਾਲ ਸਾਈਨ-ਇਨ ਕਰੋAanzetten%1$s werkt niet, tenzij je Google Play-services aanzet.Google Play-services aanzettenInstalleren%1$s kan niet worden uitgevoerd zonder Google Play-services, die je nog niet op je apparaat hebt.Google Play-services ophalenBeschikbaarheid van Google Play-servicesFout met Google Play-services%1$s kan niet worden uitgevoerd zonder Google Play-services, die niet worden ondersteund op je apparaat.Updaten%1$s kan niet worden uitgevoerd, tenzij je Google Play-services updatet.Google Play-services updaten%1$s kan niet worden uitgevoerd zonder Google Play-services, die momenteel worden geüpdatet.Er is een nieuwe versie van Google Play-services vereist. De update wordt binnenkort automatisch uitgevoerd.Openen op telefoonInloggenInloggen met GoogleAtivar%1$s só funciona com o Google Play Services ativado.Ativar o Google Play ServicesInstalarO app %1$s não funciona sem o Google Play Services, o qual não está instalado no seu dispositivo.Instalar o Google Play ServicesDisponibilidade do Google Play ServicesErro do Google Play ServicesO app %1$s não funciona sem o Google Play Services, o qual não é compatÃvel com seu dispositivo.Atualizar%1$s só funciona com uma versão atualizada do Google Play Services.Atualizar o Google Play Services%1$s não funciona sem o Google Play Services, o qual está sendo atualizado no momento.É necessária uma nova versão do Google Play Services. Ele será atualizado em breve.Abrir no smartphoneFazer loginFazer login com o GoogleAn error has occurred when fetching the license.License info is loading.License list is loading.This app does not have any open source licenses.Open source licensesLicense details for open source software"Kopisha""Okuthuthukisiwe""Ayisethiwe""\"%1$s\" kukopishelwe kuklibhodi.""%1$s, %2$s""VALA""VULA""Скопіювати""Додатково""Ðе налаштовано""\"%1$s\": Ñкопійовано в буфер обміну.""%1$s, %2$s""ВИМКÐЕÐО""УВІМКÐЕÐО""Копирај""Ðапредни""Ðе е поÑтавено""„%1$s“ копирано во привремена меморија.""%1$s, %2$s""ИСКЛУЧЕÐО""ВКЛУЧЕÐО""Хуулах""ДÑлгÑÑ€Ñнгүй""Тохируулаагүй""\"%1$s\"-г түр Ñанах ойд хуулÑан.""%1$s, %2$s""ИДÐВХГҮЙ""ИДÐВХТÐЙ""ສຳເນົາ""ຂັ້ນສູງ""ບà»à»ˆà»„ດ້ຕັ້ງຄ່າ""ສຳເນົາ \"%1$s\" ໄປໃສ່ຄລິບບàºàº”à»àº¥à»‰àº§.""%1$s, %2$s""ປິດ""ເປີດ""ΑντιγÏαφή""ΣÏνθετες""Δεν Îχει οÏιστεί""Το \"%1$s\" αντιγÏάφηκε στο Ï€ÏόχειÏο.""%1$s, %2$s""ΑÎΕÎΕΡΓΗ""ΕÎΕΡΓΗ""Капіраваць""ÐŸÐ°ÑˆÑ‹Ñ€Ð°Ð½Ñ‹Ñ Ð½Ð°Ð»Ð°Ð´Ñ‹""Ðе зададзена""\"%1$s\": Ñкапіравана Ñž буфер абмену.""%1$s, %2$s""ВЫКЛ.""УКЛ.""نسخ""إعدادات متقدمة""لم يتمّ ØªØØ¯ÙŠØ¯ قيمة.""تم نسخ \"%1$s\" إلى Ø§Ù„ØØ§Ùظة.""%1$sØŒ %2$s""إيقاÙ""Ù…ÙØ¹Ù‘لة""Afrita""Ãtarlegt""Ekki stillt""„%1$s“ afritað á klippiborðið.""%1$s, %2$s""SLÖKKT""KVEIKT""पà¥à¤°à¤¤à¤¿à¤²à¤¿à¤ªà¤¿ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥""उनà¥à¤¨à¤¤""सेट गरिà¤à¤•ो छैन""\"%1$s\" लाई कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡à¤®à¤¾ पà¥à¤°à¤¤à¤¿à¤²à¤¿à¤ªà¤¿ गरियो।""%1$s, %2$s""निषà¥à¤•à¥à¤°à¤¿à¤¯ पारà¥à¤¨à¥à¤¹à¥‹à¤¸à¥â€Œ""सकà¥à¤°à¤¿à¤¯""Copiar""Avançado""Não definido""\"%1$s\" copiado para a área de transferência.""%1$s, %2$s""DESATIVADO""ATIVADO""Kopyalayın""ÆlavÉ™""Ayarlanmayıb""\"%1$s\" buferÉ™ kopyalandı.""%1$s, %2$s""DEAKTİV""AKTİV""Kopyahin""Advanced""Hindi nakatakda""Nakopya sa clipboard ang \"%1$s.\"""%1$s, %2$s""NAKA-OFF""NAKA-ON""คัดลà¸à¸""ขั้นสูง""ไม่ได้ตั้งค่า""คัดลà¸à¸ \"%1$s\" ไปยังคลิปบà¸à¸£à¹Œà¸”à¹à¸¥à¹‰à¸§""%1$s %2$s""ปิด""เปิด""Көшіру""ҚоÑымша""Орнатылмаған""\"%1$s\" қорытындыÑÑ‹ буферге көшірілді""%1$s, %2$s""ӨШІРУЛІ""ҚОСУЛЫ""Көчүрүү""Өркүндөтүлгөн""Коюлган ÑмеÑ""\"%1$s\" алмашуу буферине көчүрүлдү.""%1$s, %2$s""ӨЧҮК""КҮЙҮК""Salin""Terperinci""Tidak ditetapkan""\"%1$s\" disalin ke papan keratan.""%1$s, %2$s""MATI""HIDUP""Kopyala""GeliÅŸmiÅŸ""Ayarlanmadı""\"%1$s\" panoya kopyalandı.""%1$s, %2$s""KAPALI""AÇIK""Copy""Advanced""Not set""\'%1$s\' copied to clipboard.""%1$s, %2$s""OFF""ON""কপি করà§à¦¨""উনà§à¦¨à¦¤""সেট করা হয়নি""\"%1$s\" কà§à¦²à¦¿à¦ªà¦¬à§‹à¦°à§à¦¡à§‡ লিঙà§à¦•টি কপি করা হয়েছে।""%1$s, %2$s""বনà§à¦§""চালà§""Sao chép""Nâng cao""Chưa đặt""Äã sao chép \"%1$s\" và o bảng nhá»› tạm.""%1$s, %2$s""TẮT""BẬT""Kopjo""Të përparuara""Nuk është caktuar""\"%1$s\" u kopjua në kujtesën e fragmenteve""%1$s, %2$s""JOAKTIV""AKTIV""Kopiér""Avansert""Ikke angitt""«%1$s» er kopiert til utklippstavlen.""%1$s, %2$s""AV""PÃ…""העתקה""מתקד×""×œ× ×ž×•×’×“×¨×ª""\"%1$s\" הועתק ללוח.""%1$s, %2$s""כבוי""מופעל""Copy""Advanced""Not set""\'%1$s\' copied to clipboard.""%1$s, %2$s""OFF""ON""Kopeerimine""Täpsemad""Määramata""„%1$s†on lõikelauale kopeeritud.""%1$s, %2$s""VÄLJAS""SEES""KopÃrovaÅ¥""RozÅ¡Ãrené""Nenastavené""Položka %1$s bola skopÃrovaná do schránky.""%1$s, %2$s""Vypnuté""Zapnuté""நகலெடà¯""மேமà¯à®ªà®Ÿà¯à®Ÿà®µà¯ˆ""அமைகà¯à®•பà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ""\"%1$s\" கிளிபà¯à®ªà¯‹à®°à¯à®Ÿà¯à®•à¯à®•௠நகலெடà¯à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿà®¤à¯.""%1$s, %2$s""ஆஃபà¯""ஆனà¯""Копирај""Ðапредно""Ðије подешено""Резиме „%1$s“ је копиран у привремену меморију.""%1$s, %2$s""ИСКЉУЧЕÐО""УКЉУЧЕÐО""Копировать""Дополнительно""Ðе указано""ТекÑÑ‚ \"%1$s\" Ñкопирован в буфер обмена""%1$s, %2$s""ВЫКЛ.""ВКЛ.""कॉपी करा""पà¥à¤°à¤—त""सेट केलेले नाही""\"%1$s\" कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡à¤µà¤° कॉपी केली.""%1$s, %2$s""बंद""सà¥à¤°à¥‚""कॉपी करें""बेहतर सेटिंग""सेट नहीं है""\"%1$s\" कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡ पर कॉपी किया गया.""%1$s, %2$s""बंद""चालू""Kopiera""Avancerat""Inte angett""%1$s har kopierats till Urklipp.""%1$s, %2$s""AV""PÃ…""KopÃrovat""RozÅ¡ÃÅ™ená nastavenÃ""Nenastaveno""Položka %1$s byla zkopÃrována do schránky.""%1$s, %2$s""Vypnuto""Zapnuto""コピー""詳細è¨å®š""未è¨å®š""「%1$sã€ã‚’クリップボードã«ã‚³ãƒ”ーã—ã¾ã—ãŸã€‚""%1$sã€%2$s""OFF""ON""പകർതàµà´¤àµà´•""വിപàµà´²à´®à´¾à´¯à´¤àµ""സജàµà´œàµ€à´•à´°à´¿à´šàµà´šà´¿à´Ÿàµà´Ÿà´¿à´²àµà´²""\"%1$s\" à´•àµà´²à´¿à´ªàµâ€Œà´¬àµ‹àµ¼à´¡à´¿à´²àµ‡à´•àµà´•ൠപകർതàµà´¤à´¿.""%1$s, %2$s""ഓഫാണàµ""ഓൺ""à¶´à·’à¶§à¶´à¶à·Š කරන්න""උසස්""සකස෠නà·à¶""\"%1$s\" පසුරු පුවරුවට à¶´à·’à¶§à¶´à¶à·Š කරන ලදී.""%1$s, %2$s""à¶šà·Šâ€à¶»à·’යà·à·€à·’රහිà¶à¶ºà·’""à¶šà·Šâ€à¶»à·’යà·à¶à·Šà¶¸à¶šà¶ºà·’""Copia""Opcions avançades""No definit""\"%1$s\" s\'ha copiat al porta-retalls""%1$s, %2$s""DESACTIVAT""ACTIVAT""Ú©Ù¾ÛŒ""Ù¾ÛŒØ´Ø±ÙØªÙ‡""تنظیم نشده""«%1$s» در بریده‌دان Ú©Ù¾ÛŒ شد.""%1$sØŒ %2$s""خاموش""روشن""કૉપિ કરો""વિગતવાર""સેટ કરà«àª¯à«àª‚ નથી""\"%1$s\"ને કà«àª²àª¿àªª બોરà«àª¡ પર કૉપિ કરà«àª¯à«‹.""%1$s, %2$s""બંધ કરો""ચાલૠકરો""Kopiatu""Hobespen aurreratuak""Ez da ezarri""Arbelean kopiatu da \"%1$s\".""%1$s, %2$s""DESAKTIBATUTA""AKTIBATUTA""కాపీ చేయి""à°…à°§à±à°¨à°¾à°¤à°¨ సెటà±à°Ÿà°¿à°‚à°—à±â€Œà°²à±""సెటౠచేయలేదà±""\"%1$s\" à°•à±à°²à°¿à°ªà±â€Œà°¬à±‹à°°à±à°¡à±â€Œà°•à°¿ కాపీ చేయబడింది.""%1$s, %2$s""ఆఫౠచేయండి""ఆనౠచేయండి""Kopiraj""Dodatno""Ni nastavljeno""»%1$s« je bilo kopirano v odložiÅ¡Äe.""%1$s, %2$s""IZKLOPLJENO""VKLOPLJENO""Copia""Avanzate""Non impostato""\"%1$s\"copiato negli appunti.""%1$s, %2$s""OFF""ON""KopÄ“t""Papildu iestatÄ«jumi""Nav iestatÄ«ts""Preference “%1$s†ir kopÄ“ta starpliktuvÄ“.""%1$s, %2$s""IZSLÄ’GTS""IESLÄ’GTS""Copiar""Configuración avanzada""Sen configurar""Copiouse \"%1$s\" no portapapeis.""%1$s, %2$s""DESACTIVADO""ACTIVADO""å¤åˆ¶""高级""未设置""已将“%1$sâ€å¤åˆ¶åˆ°å‰ªè´´æ¿ã€‚""%1$sã€%2$s""已关é—""已开å¯""ቅዳ""የላቀ""አáˆá‰°á‹˜áŒ‹áŒ€áˆ""«%1$s» ወደ የቅንጥብ ሰሌዳ ተቀድቷáˆá¢""%1$sᣠ%2$s""ጠáቷáˆ""በáˆá‰·áˆ""Salin""Lanjutan""Belum disetel""\"%1$s\" disalin ke papan klip.""%1$s, %2$s""NONAKTIF""AKTIF""Kopioi""Lisäasetukset""Ei asetettu""%1$s kopioitiin leikepöydälle.""%1$s, %2$s""POIS KÄYTÖSTÄ""KÄYTÖSSÄ""კáƒáƒžáƒ˜áƒ ებáƒ""დáƒáƒ›áƒáƒ¢áƒ”ბით""áƒáƒ áƒáƒ ის დáƒáƒ§áƒ”ნებული""„%1$s“ კáƒáƒžáƒ˜áƒ ებულირგáƒáƒªáƒ•ლის ბუფერში.""%1$s, %2$s""გáƒáƒ›áƒáƒ თული""ჩáƒáƒ თული""Kopiraj""Napredno""Nije postavljeno""\"%1$s\" kopirano u meÄ‘umemoriju.""%1$s, %2$s""ISKLJUÄŒENO""UKLJUÄŒENO""Másolás""Speciális""Nincs beállÃtva""„%1$s†a vágólapra lett másolva.""%1$s, %2$s""KI""BE""Копиране""Разширени""Ðе е зададено""Копирахте „%1$s“ в буферната памет.""%1$s, %2$s""ИЗКЛ.""ВКЛ."true"CopiaÈ›i""Avansat""Nesetată""„%1$s†a fost copiat în clipboard.""%1$s, %2$s""DEZACTIVAT""ACTIVAT"72dp"ចម្លង""កម្រិážážáŸ’ពស់""មិនបានកំណážáŸ‹""\"%1$s\" បានចម្លងទៅ​ឃ្លីបបážáŸ”""%1$s, %2$s""បិទ""បើក""Kopiér""Avanceret""Ikke angivet""\"%1$s\" blev kopieret til udklipsholderen.""%1$s, %2$s""FRA""TIL""Kopiraj""Napredno""Nije postavljeno""Sažetak \"%1$s\" kopiran je u meÄ‘uspremnik.""%1$s, %2$s""ISKLJUÄŒENO""UKLJUÄŒENO""Copy""Advanced""Not set""\'%1$s\' copied to clipboard.""%1$s, %2$s""OFF""ON""복사""ê³ ê¸‰""ì„¤ì •ë˜ì§€ 않ìŒ""\'%1$s\'ì´(ê°€) í´ë¦½ë³´ë“œì— 복사ë˜ì—ˆìŠµë‹ˆë‹¤.""%1$s, %2$s""사용 안함""사용""Copier""Paramètres avancés""Non définie""\"%1$s\" copié dans le presse-papier.""%1$s, %2$s""DÉSACTIVÉ""ACTIVÉ""ÕŠÕ¡Õ¿Õ³Õ¥Õ¶Õ¥Õ¬""Ô¼Ö€Õ¡ÖÕ¸Ö‚ÖÕ«Õ¹""Ô¿Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ¾Õ¡Õ® Õ¹Õ§""«%1$s». ÕºÕ¡Õ¿Õ³Õ¥Õ¶Õ¾Õ¥Ö Õ½Õ¥Õ²Õ´Õ¡Õ¿Õ¡ÕÕ¿Õ¡Õ¯Õ«Õ¶:""%1$s, %2$s""Ô±Õ†Õ‹Ô±ÕÔ±Ô¾""Õ„Ô»Ô±Õ‘ÕŽÔ±Ô¾""کاپی کریں""جدید ترین""سیٹ Ù†Ûیں ÛÛ’""\"%1$s\" کلپ بورڈ میں کاپی ÛÙˆ گیا۔""%1$sØŒ %2$s""Ø¢Ù ÛÛ’""آن""Copiar""Avançadas""Não definido""\"%1$s\" copiado para a área de transferência.""%1$s, %2$s""DESATIVADO""ATIVADO""複製""進階""未è¨å®š""「%1$sã€å·²è¤‡è£½åˆ°å‰ªè²¼ç°¿ã€‚""%1$sã€%2$s""關閉""開啟""ನಕಲಿಸಿ""ಸà³à²§à²¾à²°à²¿à²¤""ಹೊಂದಿಸಿಲà³à²²""\"%1$s\" ಅನà³à²¨à³ ಕà³à²²à²¿à²ªà³â€Œà²¬à³‹à²°à³à²¡à³â€Œà²—ೆ ನಕಲಿಸಲಾಗಿದೆ.""%1$s, %2$s""ಆಫà³""ಆನà³""କପି କରନàତà""ଅଧିକ ଉନàନତ""ସà‡à¬Ÿà ହà‹à¬‡à¬¨à¬¾à¬¹à¬¿à¬""\"%1$s\" କàଲିପବà‹à¬°àଡକà କପି ହà‹â€à¬‡à¬—ଲା।""%1$s, %2$s""ବନàଦ""ଚାଲà ଅଛି""Kopieren""Erweitert""Nicht festgelegt""\"%1$s\" in Zwischenablage kopiert.""%1$s, %2$s""AUS""AN""Copy""Advanced""Not set""\'%1$s\' copied to clipboard.""%1$s, %2$s""OFF""ON""Copiar""Opciones avanzadas""Sin definir""Se copió \"%1$s\" en el portapapeles.""%1$s, %2$s""DESACTIVADO""ACTIVADO""မá€á€á€¹á€á€°á€€á€°á€¸á€›á€”်""အဆင့်မြင့်""သá€á€ºá€™á€¾á€á€ºá€™á€‘ားပါ""\"%1$s\" ကá€á€¯ ကလစ်ဘုá€á€ºá€žá€á€¯á€· မá€á€á€¹á€á€°á€€á€°á€¸á€šá€°á€•ြီးပါပြီá‹""%1$sአ%2$s""ပá€á€á€º""ဖွင့်""Kopiraj""Napredno""Nije podeÅ¡eno""Rezime „%1$s“ je kopiran u privremenu memoriju.""%1$s, %2$s""ISKLJUÄŒENO""UKLJUÄŒENO""複製""進階""未è¨å®š""已將「%1$sã€è¤‡è£½åˆ°å‰ªè²¼ç°¿ã€‚""%1$sã€%2$s""關閉""開啟"false#ff0085770dp0dp0dp15dp36dp300dp384dp 10CopyAdvancedNot set
+ \"%1$s\" copied to clipboard.
+ %1$s, %2$sOFFON
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "Kopieer""Gevorderd""Nie gestel nie""\"%1$s\" is na knipbord gekopieer.""%1$s, %2$s""AF""AAN""Kopiuj""Zaawansowane""Nie ustawiono""Skopiowano „%1$s†do schowka.""%1$s, %2$s""WYÅ.""WÅ.""Kopijuoti""IÅ¡plÄ—stiniai""Nenustatyta""SuvestinÄ— „%1$s“ nukopijuota į iÅ¡karpinÄ™.""%1$s, %2$s""IÅ JUNGTA""Ä®JUNGTA""Copier""Paramètres avancés""Non défini""« %1$s » copié dans le presse-papiers.""%1$s, %2$s""DÉSACTIVÉ""ACTIVÉ""Nusxa olish""Kengaytirilgan""Tayinlanmagan""“%1$s†vaqtinchalik xotiraga nusxalandi.""%1$s, %2$s""YOQILMAGAN""YONIQ""পà§à§°à¦¤à¦¿à¦²à¦¿à¦ªà¦¿ কৰক""উনà§à¦¨à¦¤""ছেট কৰা হোৱা নাই""\"%1$s\" কà§à¦²à¦¿à¦ªà¦¬â€™à§°à§à¦¡à¦¤ পà§à§°à¦¤à¦¿à¦²à¦¿à¦ªà¦¿ কৰা হ’ল""%1$s, %2$s""অফ অৱসà§à¦¥à¦¾à¦¤ আছে""অন কৰক""Copiar""Ajustes avanzados""Sin establecer""\"%1$s\" se ha copiado en el portapapeles.""%1$s, %2$s""DESACTIVADA""ACTIVADO""Nakili""Mipangilio ya Kina""Haijawekwa""\"%1$s\" imenakiliwa kwenye ubao wa kunakili.""%1$s, %2$s""IMEZIMWA""IMEWASHWA""ਕਾਪੀ ਕਰੋ""ਅਡਵਾਂਸ""ਸੈੱਟ ਨਹੀਂ ਹੈ""\"%1$s\" ਨੂੰ ਕਲਿੱਪਬੋਰਡ \'ਤੇ ਕਾਪੀ ਕੀਤਾ ਗਿਆ।""%1$s, %2$s""ਬੰਦ""ਚਾਲੂ""Kopiëren""Geavanceerd""Niet ingesteld""\'%1$s\' is gekopieerd naar het klembord.""%1$s, %2$s""UIT""AAN""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€â€â€Žâ€â€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€ŽCopy‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€â€â€â€â€Žâ€â€â€â€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€â€â€Žâ€ŽAdvanced‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€â€â€â€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€ŽNot set‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€Žâ€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€â€â€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€â€â€Žâ€â€â€â€â€Žâ€â€â€â€Žâ€â€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€â€â€Žâ€â€â€Žâ€â€â€â€â€â€â€Ž\"‎â€â€Žâ€Žâ€â€â€Ž%1$s‎â€â€Žâ€Žâ€â€â€â€Ž\" copied to clipboard.‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€â€â€â€â€â€â€â€â€Žâ€Žâ€â€â€â€Žâ€â€Žâ€Žâ€â€â€â€â€Žâ€â€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€Žâ€â€â€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Ž%1$s‎â€â€Žâ€Žâ€â€â€â€Ž, ‎â€â€Žâ€Žâ€â€â€Ž%2$s‎â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€â€â€Žâ€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€Žâ€â€â€â€Žâ€â€Žâ€Žâ€Žâ€â€Žâ€â€Žâ€Žâ€â€â€â€Žâ€â€â€â€â€Žâ€â€â€â€Žâ€â€Žâ€â€â€â€Žâ€Žâ€â€â€ŽOFF‎â€â€Žâ€Žâ€â€Ž""‎â€â€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€â€â€â€Žâ€Žâ€Žâ€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€Žâ€Žâ€Žâ€Žâ€â€â€â€â€Žâ€Žâ€â€â€Žâ€Žâ€â€â€â€â€â€Žâ€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€â€Žâ€â€Žâ€â€Žâ€â€â€Žâ€Žâ€â€â€â€Žâ€Žâ€â€Žâ€Žâ€â€â€Žâ€â€â€Žâ€Žâ€â€â€â€â€Žâ€â€â€ŽON‎â€â€Žâ€Žâ€â€Ž""Copiar""Avançado""Não definido""\"%1$s\" copiado para a área de transferência.""%1$s, %2$s""DESATIVADO""ATIVADO"23dp7#FAFAFA600dp15dp56dp5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #303030 trueДейÑтвительный конфиг не найден. ПожалуйÑта, Ñначала запуÑтите ретранÑлÑтор.Ðе удалоÑÑŒ удалить избыточную группу P2P (причина: %s)Wi-Fi директ недоÑтупен, пожалуйÑта включите Wi-FiÐе удалоÑÑŒ Ñоздать группу P2P (причина: %s)Ðе удалоÑÑŒ удалить группу P2P (причина: %s)Ðе удалоÑÑŒ удалить Ñтарую группу P2P (причина:%s)внутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°Wi-Fi напрÑмую не поддерживаетÑÑзапроÑÑ‹ на обÑлуживание не Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ñ‹Ð½ÐµÐ¿Ð¾Ð´Ð´ÐµÑ€Ð¶Ð¸Ð²Ð°ÐµÐ¼Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸ÑÐ¡ÐµÑ€Ð²Ð¸Ñ Ð½ÐµÐ´Ð¾Ñтупен. Попробуйте позже"USB-модем""Точка доÑтупа Wi‑Fi""Bluetooth-модем""Режим Ethernet-модема"" (подключение)"" (доÑтупный)"" (потерÑ)"ÐикнÑйм…БлокВключите Ñлужбу Ð´Ð»Ñ Ñтого интерфейÑа, чтобы заблокировать клиента.РазблокироватьСтатиÑтика…Сервер вернул ошибку Ð´Ð»Ñ %1$s: %2$sÐикнÑйм Ð´Ð»Ñ %sÐ˜Ð¼Ñ Ð²ÐµÐ½Ð´Ð¾Ñ€Ð°Ð¡Ñ‚Ð°Ñ‚Ð¸Ñтика Ð´Ð»Ñ %sVPN-модем активенVPN Ð¼Ð¾Ð´ÐµÐ¼Ð½Ð°Ñ ÑлужбаÐеактивных: %s
+ - %d уÑтройÑтво
+ - %d уÑтройÑтва
+ - %d уÑтройÑтв
+ - %d уÑтройÑтва
+ ÐеизвеÑтно #%dОшибка: ÐиÑходÑщий Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð½Ðµ найденЧто-то пошло не так, пожалуйÑта, проверьте отладочную информацию.ÐаÑтройка Wi-Fi ретранÑлÑтора"Ð˜Ð¼Ñ Ñети""Защита""Пароль""Выключать точку доÑтупа Wi‑Fi автоматичеÑки, еÑли к ней не подключено ни одного уÑтройÑтва""Диапазон чаÑтот Wi-Fi""%s ГГц""MAC-адреÑ""Ð¡ÐºÑ€Ñ‹Ñ‚Ð°Ñ Ñеть""Сохранить"ЗакрытьСчитаете Ñто приложение полезным?\nПоддержите его разработку, отправив пожертвование разработчику!Google Play StoreÐŸÐ¾Ð¶ÐµÑ€Ñ‚Ð²Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ‡ÐµÑ€ÐµÐ· приложение не поддерживаютÑÑ. Google Play Store уÑтановлен правильно?Google взимает 30% комиÑÑии Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ пожертвованиÑ!Пожертвовать!Сколько?Благодарю за пожертвование! Я очень Ñто ценю!VPN HotspotRipetitoreTetheringClientImpostazioniRipetitore (%1$d MHz, channel %2$d)WPS (non sicuro)Inserisci PINPremi il bottoneUtilizza il pulsante WPS entro i prossimi 2 minuti per collegare il
+ dispositivo.PIN registrato.Avvio WPS fallito (causa: %s)File di configurazione valido non trovato. Per favore accendi il ripetitore prima.Rimozione del gruppo P2P ridondante fallita (causa: %s)Wi\u2011Fi direct non disponibile, per favore abilita il Wi\u2011FiAbilitaCreazione del gruppo P2P fallita (causa: %s)Rimozione del gruppo P2P fallita (causa: %s)Rimozione del vecchio gruppo P2P fallita (causa: %s)Impostazione del canale operativo fallita (causa: %s)errore internoWi\u2011Fi direct non supportatonessuna richiesta di servizio aggiuntaoperazione non supportataServizio non disponibile. Riprova dopoHotspot Wi\u2011Fi temporaneoL\'hotspot temporaneo richiede che la localizzazione sia attiva.Avvio dell\'hotspot fallito (causa: %s)nessun canaleerrore genericomodalità incompatibiletethering non permessoMonitora…%s (monitorato)Gestisci il tethering del sistema…Per favore disabilita l\'accelerazione hardware tethering nelle opzioni sviluppatore
+ se il tethering VPN non funziona.Tethering USBHotspot Wi\u2011FiTethering Bluetooth"Tethering Ethernet"" (in connessione)"" (raggiungibile)"" (perso)"Nickname…BloccaAbilita il servizio per questa interfaccia per bloccare il client.SbloccaStatistiche…Il server ha restituito questo errore per %1$s: %2$sNickname per %s↠ðŸ³ï¸â€ðŸŒˆ VenditoreStatistiche per %s
+ - Connesso 1 volta dal %2$s
+ - Connesso %1$s volte dal %2$s
+
+ - Inviato 1 pacchetto, %2$s
+ - Inviati %1$s pacchetti, %2$s
+
+ - Ricevuto 1 pacchetto, %2$s
+ - Ricevuti %1$s pacchetti, %2$s
+ UpstreamDownstreamModalità IP MasqueradeNessunoSempliceServizio Android NetdDisabilita tethering IPv6Abilitando questa funzione si preveniranno perdite della VPN via IPv6.Tieni il Wi\u2011Fi attivoDefault di sistemaAttivoModalità prestazioni elevateDisabilita il risparmio batteriaModalità latenza bassaModalità di monitoraggio dello stato della reteMonitoraggio NetlinkMonitoraggio Netlink con rootPollPoll con rootInterfaccia di rete upstreamIndividua automaticamente VPN del sistemaInterfaccia fallback upstreamIndividua automaticamente la rete default del sistemaAbilita DHCP alternativoUsalo se i client non riescono ad ottenere gli indirizzi IP.Pulisci/riapplica regole di routingAggiorna le impostazioni modificate ai servizi attivi. Può anche sistemare rare
+ condizioni.Accelerazione hardware TetheringScorciatoia alle opzioni sviluppatore del sistemaMiscellaneaAiutoEsporta informazioni di debugCosì utile molto wowHomepage progetto su GitHubLeggi il manuale, metti tra i preferiti, segnala problemi e contribuisciDonaAmo i soldiGitHub sponsors, PayPal, altro…Riavvia l\'applicazione per applicare questa impostazione.EsciTethering VPN attivoServizio Tethering VPN
+ - %d dispositivo connesso a %s
+ - %d dispositivi connessi a %s
+
+ - %d interfaccia
+ - %d interfacce
+ Inattivi: %s
+ - %d dispositivi
+ - %d dispositivo
+ sconosciuta #%dFatale: Interfaccia Downstream non trovataQualcosa è andato storto, per favore controlla le informazioni di debug.Configurazione Wi\u2011FiCondividi con Codice QRIl sistema Android rifiuta questa configurazione. (vedi logcat)"Nome rete"SicurezzaPassword"L\'hotspot Wi‑Fi viene disattivato se non ci sono dispositivi collegati"Banda AP"Banda a %s GHz""Indirizzo MAC""Rete nascosta"SalvaChiudiTrovi che questa applicazione sia utile?\nSupportane lo sviluppo inviando una donazione al suo sviluppatore!Google Play StoreDonazioni In-App non supportate. Google Play Store è installato correttamente?Google addebita una commissione del 30%Dona!Quanto?Grazie per la tua donazione!\nLo apprezzo molto!VPN çƒç‚¹æ— 线ä¸ç»§å…±äº«ç®¡ç†å·²è¿žè®¾å¤‡è®¾ç½®é€‰é¡¹æ›´æ–°åº”ç”¨æ— çº¿ä¸ç»§ (%1$d MHz, é¢‘é“ %2$d)WPS(ä¸å®‰å…¨ï¼‰è¾“å…¥ PINä¸€é”®åŠ å¯†è¯·åœ¨ 2 分钟内在需è¦è¿žæŽ¥çš„è®¾å¤‡ä¸Šä½¿ç”¨ä¸€é”®åŠ å¯†ä»¥è¿žæŽ¥åˆ°æ¤ä¸ç»§ã€‚æˆåŠŸæ³¨å†Œ PIN。打开 WPS å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)未能找到有效的档案。请å°è¯•先打开ä¸ç»§ã€‚åˆ é™¤å¤šä½™ P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)Wi\u2011Fi 直连ä¸å¯ç”¨ï¼Œè¯·æ‰“å¼€ Wi\u2011Fi打开创建 P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)关é—已有 P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%sï¼‰å…³é— P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)设置è¿è¡Œé¢‘æ®µå¤±è´¥ï¼ˆåŽŸå› ï¼š%sï¼‰è®¾ç½®ä¾›åº”å•†ç‰¹å®šå…ƒç´ å¤±è´¥ï¼ˆåŽŸå› ï¼š%sï¼‰å†…éƒ¨å¼‚å¸¸è®¾å¤‡ä¸æ”¯æŒ Wi\u2011Fi ç›´è¿žæœªæ·»åŠ æœåŠ¡è¯·æ±‚ä¸æ”¯æŒæ¤æ“作æœåŠ¡ä¸å¯ç”¨ï¼Œè¯·ç¨åŽé‡è¯•æ— çº¿ä¸ç»§éœ€è¦ç²¾ç¡®ä½ç½®æƒé™ç”±äºŽç³»ç»Ÿé™åˆ¶ï¼Œå…³é—ä½ç½®ä¿¡æ¯æœåŠ¡å¯èƒ½äº§ç”Ÿé—®é¢˜å¹¶å¯¼è‡´ç»èˆªç¼©çŸè¿›å…¥è®¾ç½®ä¸´æ—¶ WLAN çƒç‚¹ä½¿ç”¨æ¤åŠŸèƒ½éœ€è¦æ‰“å¼€ä½ç½®æœåŠ¡ã€‚æ‰“å¼€çƒç‚¹å¤±è´¥ (åŽŸå› ï¼š%s)æ— é¢‘æ®µé€šç”¨é”™è¯¯æ¨¡å¼ä¸å…¼å®¹å…±äº«è¢«ç¦ç”¨ç›‘视…%s(监视)管ç†ç³»ç»Ÿå…±äº«â€¦è‹¥ VPN å…±äº«æ— æ³•ä½¿ç”¨ï¼Œè¯·å°è¯•ç¦ç”¨â€œå¼€å‘者选项â€ä¸çš„â€œç½‘ç»œå…±äº«ç¡¬ä»¶åŠ é€Ÿâ€ã€‚USB 网络共享WLAN çƒç‚¹è“牙网络共享"以太网络共享"USB 网络共享 (NCM)%1$d MHz, é¢‘é“ %2$d, 频宽 %3$s%4$s: Wi\u2011Fi %5$d, %1$d MHz, é¢‘é“ %2$d, 频宽 %3$s,
+ å…³é—延迟 %6$s%4$s: Wi\u2011Fi %5$d, %1$d MHz, é¢‘é“ %2$d, 频宽 %3$s,
+ ä¸è‡ªåЍ关é—
+ - 已连接 %1$s/%2$d 个设备\n支æŒåŠŸèƒ½ï¼š%3$s
+
+ - 已连接 %d 个设备
+ \n支æŒé¢‘é“: %s\n驱动国家代ç :%séšæœºæŽ¥å…¥ç‚¹ MAC桥接 AP å¹¶å‘STA/AP å¹¶å‘STA/桥接 AP 并呿— å·²å±è”½ %1$s:%2$så¤åˆ¶ MAC(æ£åœ¨è¿žæŽ¥ï¼‰ï¼ˆå·²è¿žæŽ¥ï¼‰ï¼ˆå·²æ–开)昵称…拉黑拉黑需è¦ä¸ºè¯¥æŽ¥å£æ‰“å¼€æœåŠ¡ã€‚æ´—ç™½æµé‡â€¦æœåŠ¡å™¨ä¸º %1$s 返回错误:%2$s%s 的昵称↠ðŸ³ï¸â€ðŸŒˆ 厂商%s çš„æµé‡
+ - 自 %2$s 以æ¥è¿žæŽ¥äº† %1$s 次
+
+ - ä¸Šä¼ %1$s 个包,%2$s
+
+ - 下载 %1$s 个包,%2$s
+ 上游下游IP æŽ©è”½æ¨¡å¼æ— 简易Android Netd æœåŠ¡ç¦ç”¨ IPv6 å…±äº«é˜²æ¢ VPN 通过 IPv6 泄æ¼ã€‚自动å¯åЍæœåŠ¡è®¾å¤‡é‡å¯æˆ–应用å‡çº§åŽè‡ªåЍæ¢å¤ä¹‹å‰è¿è¡Œçš„æœåŠ¡ä¸ç»§å®‰å…¨æ¨¡å¼ä¸å¯¹ç³»ç»Ÿé…置进行修改,但是å¯èƒ½é¡»è¦è¾ƒé•¿çš„网络å称。使用çŸåç§°å¯èƒ½éœ€è¦å…³é—安全模å¼ã€‚临时 WLAN çƒç‚¹ä½¿ç”¨ç³»ç»Ÿé…置这将与其他使用本地çƒç‚¹çš„应用冲çªä¿æŒ Wi\u2011Fi å¼€å¯ç³»ç»Ÿé»˜è®¤å¼€é«˜æ€§èƒ½æ¨¡å¼ç¦ç”¨çœç”µä½Žå»¶è¿Ÿæ¨¡å¼ç½‘络状æ€ç›‘嬿¨¡å¼Netlink 监å¬Netlink ç›‘å¬ (root)轮询轮询 (root)当å‰ä¸Šæ¸¸æŽ¥å£%1$s;备用:%2$s上游网络接å£è‡ªåŠ¨æ£€æµ‹ç³»ç»Ÿ VPN备用上游接å£è‡ªåŠ¨æ£€æµ‹ç³»ç»Ÿé»˜è®¤ç½‘ç»œæ¸…ç†/釿–°åº”用路由规则将修改的设置应用到当å‰å¯ç”¨çš„æœåŠ¡ä¸Šã€‚ä¹Ÿå¯ç”¨äºŽä¿®å¤å¶å°”会å‘ç”Ÿçš„ç«žæ€æ¡ä»¶ã€‚å°è¯•ä¿®å¤ DHCPå¦‚æžœè®¾å¤‡æ— æ³•èŽ·å– IP 地å€ï¼Œå°è¯•æ‰“å¼€è¿™ä¸ªé€‰é¡¹ã€‚ç½‘ç»œå…±äº«ç¡¬ä»¶åŠ é€Ÿç³»ç»Ÿâ€œå¼€å‘者选项â€çš„å¿«æ·æ–¹å¼æ‚项帮助导出调试信æ¯è¿™ç§éžå¸¸æœ‰ç”¨å“‡é¡¹ç›®é¦–页 @ GitHub查看使用手册,star, æäº¤ issues, åˆä½œææ¬¾è¯·ç»™æˆ‘é’±GitHub sponsors, PayPal ç‰å…¶ä»–æ–¹å¼â€¦é‡å¯åº”用以应用新的设置。退出VPN 共享已å¯ç”¨VPN 共享æœåŠ¡ç›‘è§†ä¸æ´»è·ƒæŽ¥å£
+ - %d 个设备已连接到 %s
+
+ - %d 个接å£
+ 䏿´»è·ƒï¼š%s
+ - %d å°è®¾å¤‡
+ 未知 #%d错误:未找到下游接å£å‘生异常,详情请查看调试信æ¯ã€‚æƒé™ä¸è¶³è®¾ç½® WLANé…ç½®å¯èƒ½æ— 效使用 QR ç 分享Android 系统拒ç»ä½¿ç”¨æ¤é…置。(详情å‚è§æ—¥å¿—)"网络åç§°"切æ¢åå…进制显示"安全性""密ç "æœªè¿žæŽ¥ä»»ä½•è®¾å¤‡æ—¶è‡ªåŠ¨å…³é— WLAN çƒç‚¹å…³é—延迟默认延迟:%d 毫秒"AP 频段"Disabled"%s GHz 频段"2.4 GHz ACS å¯é€‰é¢‘段5 GHz ACS å¯é€‰é¢‘段6 GHz ACS å¯é€‰é¢‘段最大频宽访问控制高级接入点设置"MAC 地å€"æŒä¹…æ€§éšæœº MAC 地å€"éšè—的网络"å…许连接设备数上é™è¿‡æ»¤å¯ä»¥è¿žæŽ¥çš„设备设备黑åå•设备白åå•éšæœºç”Ÿæˆ MAC åœ°å€æ— æŒä¹…åŒ–ä¸æŒä¹…化å¯ç”¨æ¡¥æŽ¥æ¨¡å¼ä¼ºæœºå…³é—å¯ç”¨ Wi\u2011Fi 6å¯ç”¨ Wi\u2011Fi 7用户æä¾›é…ç½®ä¾›åº”å•†ç‰¹å®šå…ƒç´ "ä¿å˜"å…³é—Google Play å•†åº—ä¸æ”¯æŒ In-App æèµ ã€‚ä½ çš„ Google Play 商店是å¦å®‰è£…æ£ç¡®äº†å‘¢ï¼Ÿæèµ ï¼æèµ å¤šå°‘ï¼Ÿè°¢è°¢æèµ ï¼\néžå¸¸æ„Ÿè°¢æ‚¨ï¼è§‰å¾—æ¤åº”用很有用?\næèµ 给该开å‘è€…ä»¥æ”¯æŒæ¤åº”用的开å‘ï¼Google æ”¶å– 30% 的费用false@color/dark_colorPrimary#005005#AEEA00
+ - @string/settings_service_wifi_lock_none
+ - @string/settings_service_wifi_lock_high_perf_v29
+ - @string/settings_service_wifi_lock_low_latency
+
+ - None
+ - HighPerf
+ - LowLatency
+ @android:color/transparentVPN 無線基地å°ä¸ç¹¼å™¨ç¶²è·¯å…±ç”¨ç”¨æˆ¶ç«¯è¨å®šæ›´æ–°ä¸ç¹¼å™¨ (%1$d MHzï¼Œé »é“ %2$d)WPS(ä¸å®‰å…¨ï¼‰è¼¸å…¥ PIN 碼WPS 按鈕請在兩分é˜å…§åœ¨éœ€è¦é€£ç·šçš„è£ç½®ä¸Šï¼ŒæŒ‰ä¸‹ WPS 按鈕以連線到æ¤ä¸ç¹¼å™¨PIN å·²è¨å®šé–‹å•Ÿ WPS 失敗 (åŽŸå› ï¼š%s)未找到有效的組態,請先啟動ä¸ç¹¼å™¨åˆªé™¤å†—餘 P2P 群組失敗 (åŽŸå› ï¼š%s)Wi\u2011Fi Direct ä¸å¯ç”¨ï¼Œè«‹å•Ÿç”¨ Wi\u2011Fi開啟建立 P2P 群組失敗 (åŽŸå› ï¼š%s)移除 P2P 群組失敗 (åŽŸå› ï¼š%s)移除舊 P2P 群組失敗 (åŽŸå› ï¼š%s)è¨å®šå·¥ä½œé »é“失敗 (åŽŸå› ï¼š%s)內部錯誤Wi\u2011Fi Direct 䏿”¯æ´æœªæ·»åŠ æœå‹™è«‹æ±‚䏿”¯æ´çš„ä½œæ¥æœå‹™ä¸å¯ç”¨ï¼Œè«‹ç¨å¾Œå†è©¦ä¸ç¹¼å™¨éœ€è¦ç²¾ç¢ºä½ç½®å˜å–權由於系統é™åˆ¶ï¼Œé—œé–‰å®šä½æœå‹™å¯èƒ½æœƒå°Žè‡´å•é¡Œä¸¦å¢žåŠ é›»æ± ä½¿ç”¨é‡è¨å®šè‡¨æ™‚ Wi\u2011Fi 無線基地å°éœ€è¦é–‹å•Ÿå®šä½å•Ÿå‹•無線基地å°å¤±æ•— (åŽŸå› ï¼š%s)æ²’æœ‰é »é“一般錯誤ä¸ç›¸å®¹çš„æ¨¡å¼ç¶²è·¯å…±ç”¨å·²ç¦æ¢ç›£è¦–…%s (å—監視)系統網路共用管ç†â€¦å¦‚æžœ VPN 網路共用ä¸èµ·ä½œç”¨ï¼Œè«‹åœ¨ã€Œé–‹ç™¼äººå“¡é¸é …ã€ä¸é—œé–‰ã€Œç¶²è·¯å…±ç”¨ç¡¬é«”åŠ é€Ÿã€USB 網路共用Wi\u2011Fi 無線基地å°è—牙網路共用"乙太網路網路共用"USB 網路共用 (NCM)%1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s%4$s:Wi\u2011Fi %5$d,%1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s,
+ 閒置逾時 %6$s%4$s:Wi\u2011Fi %5$d,%1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s,
+ 閒置逾時已åœç”¨
+ - 已連線 %1$s/%2$d 個è£ç½®\n支æ´åŠŸèƒ½ï¼š%3$s
+
+ - 已連線 %d 個è£ç½®
+ \n支æ´é »é“:%s隨機 AP MAC橋接 AP 並行STA/AP 並行STA/橋接 AP ä¸¦è¡Œç„¡å·²éš±è— %1$s:%2$s複製 MAC(æ£åœ¨é€£ç·šï¼‰ï¼ˆå·²é€£ç·šï¼‰ï¼ˆå·²ä¸æ–·ï¼‰æš±ç¨±â€¦é»‘åå–®é–‹å•Ÿæ¤æœå‹™ä»¥é˜»æ¢è£ç½®é€£ç·šè§£é™¤é»‘å單狀態…伺æœå™¨éŒ¯èª¤ %1$s:%2$s暱稱 %s↠ðŸ³ï¸â€ðŸŒˆ 供應商狀態 %s
+ - 自 %2$s 以來連線了 %1$s 次
+
+ - 上傳 %1$s 個å°åŒ…,%2$s
+
+ - 下載 %1$s 個å°åŒ…,%2$s
+ 上游下游IP å½è£æ¨¡å¼ç„¡ç°¡æ˜“Android Netd æœå‹™åœç”¨ IPv6 å…±ç”¨é˜²æ¢ VPN é€éŽ IPv6 æ´©æ¼è‡ªå‹•啟動æœå‹™è£ç½®é‡æ–°å•Ÿå‹•或應用å‡ç´šå¾Œè‡ªå‹•æ¢å¾©ä¹‹å‰åŸ·è¡Œçš„æœå‹™ä¸ç¹¼å®‰å…¨æ¨¡å¼ä¸å°ç³»çµ±çµ„æ…‹åšä»»ä½•變更,但是å¯èƒ½éœ€è¦è¼ƒé•·çš„ SSIDä½¿ç”¨çŸ SSID å¯èƒ½éœ€è¦é—œé–‰å®‰å…¨æ¨¡å¼ã€‚ä¿æŒ Wi\u2011Fi 開啟系統é è¨é–‹å•Ÿé«˜æ•ˆèƒ½æ¨¡å¼é—œé–‰çœé›»æ¨¡å¼ä½Žå»¶é²æ¨¡å¼ç¶²è·¯ç‹€æ…‹ç›£è¦–模å¼Netlink 監視Netlink 監視 (root)輪詢輪詢 (root)ç›®å‰ä¸Šæ¸¸ä»‹é¢%1$s;後æ´ï¼š%2$s上游網路介é¢è‡ªå‹•檢測系統 VPN æœå‹™å¾Œæ´ä¸Šæ¸¸ä»‹é¢è‡ªå‹•檢測系統é è¨ç¶²è·¯æ¸…ç†/釿–°å¥—用路由è¦å‰‡å°‡ä¿®æ”¹çš„è¨å®šå¥—用到目å‰å•Ÿç”¨çš„æœå‹™ä¸Šï¼Œä¹Ÿå¯ç”¨æ–¼ä¿®å¾©å¶çˆ¾æœƒç™¼ç”Ÿçš„ç«¶æ…‹æ¢ä»¶å•Ÿç”¨ DHCP å› æ‡‰æŽªæ–½å¦‚æžœè£ç½®ç„¡æ³•å–å¾— IP ä½å€ï¼Œå˜—試開啟這é¸é …ç¶²è·¯å…±ç”¨ç¡¬é«”åŠ é€Ÿç³»çµ±ã€Œé–‹ç™¼äººå“¡é¸é …ã€çš„æ·å¾‘é›œé …èªªæ˜ŽåŒ¯å‡ºåµéŒ¯è³‡è¨Šé€™ç¨®éžå¸¸æœ‰ç”¨å•Š (^O^)ï¼å°ˆæ¡ˆé¦–é @ GitHubé–±è®€ä½¿ç”¨èªªæ˜Žï¼Œå° GitHub repo åŠ æ˜Ÿè™Ÿï¼Œæäº¤å•題並åˆä½œåƒèˆ‡é–‹ç™¼æŠ–內我喜æ¡éŒ¢PayPalã€Flattr ç‰å…¶ä»–æ–¹å¼â€¦é‡å•Ÿæ‡‰ç”¨ç¨‹å¼ä»¥å¥—用è¨å®šå€¼é›¢é–‹VPN 無線基地å°å·²å•Ÿç”¨VPN ç„¡ç·šåŸºåœ°å°æœå‹™ç›£è¦–éžä½œç”¨ä¸ä»‹é¢
+ - %d 個è£ç½®å·²é€£ç·šåˆ° %s
+
+ - %d 個介é¢
+ åœç”¨ï¼š%s
+ - %d 個è£ç½®
+ 未知 #%d錯誤:找ä¸åˆ°ä¸‹æ¸¸ä»‹é¢ç™¼ç”ŸéŒ¯èª¤ï¼Œè«‹æª¢æŸ¥åµéŒ¯è³‡è¨Šã€‚權é™ä¸è¶³Wi\u2011Fi 組態使用 QR Code 分享Android 系統拒絕使用æ¤çµ„態。(請檢視 Logcat)網路å稱安全性密碼在沒有任何è£ç½®é€£ç·šæ™‚關閉 WIFI 無線基地å°éžä½¿ç”¨ä¸é—œé–‰é€¾æ™‚é è¨é€¾æ™‚:%d 毫秒AP é »å¸¶åœç”¨%s GHz é »å¸¶å˜å–控制進階 AP é¸é …"MAC ä½å€""éš±è—的網路"最大連線è£ç½®æ•¸é‡éŽæ¿¾å¯ä»¥é€£ç·šçš„è£ç½®è£ç½®é»‘åå–®è£ç½®ç™½å單隨機化 MAC ä½å€å•Ÿç”¨æ©‹æŽ¥æ¨¡å¼éš¨æ©Ÿé—œé–‰å•Ÿç”¨ Wi\u2011Fi 6啟用 Wi\u2011Fi 7使用者æä¾›çµ„態儲å˜é—œé–‰Google Play å•†åº—ä¸æ”¯æ´æ‡‰ç”¨ç¨‹å¼å…§è³¼ï¼ŒPlay å•†åº—æ˜¯å¦æ£ç¢ºå®‰è£ï¼ŸæŠ–å…§ï¼æŠ–å…§å¤šå°‘éŒ¢æ„Ÿè¬æŠ–å…§ï¼\nååˆ†æ„Ÿè¬æ‚¨ï¼é€™å€‹æ‡‰ç”¨ç¨‹å¼æœ‰ç”¨å—Žï¼Ÿ\nå°é¡çš„æŠ–å…§çµ¦é–‹ç™¼äººå“¡ç”¨ä¾†æ”¯æ´æ¤æ‡‰ç”¨ç¨‹å¼çš„開發Google å°‡æ”¶å– 30% 的費用falsetrue
+ - @string/wifi_mac_randomization_none
+ - @string/wifi_mac_randomization_persistent
+ - @string/wifi_mac_randomization_non_persistent
+
+ - @string/settings_service_masquerade_none
+ - @string/settings_service_masquerade_simple
+ - @string/settings_service_masquerade_netd
+
+ - None
+ - Simple
+ - Netd
+
+ - @string/settings_service_wifi_lock_none
+ - @string/settings_service_wifi_lock_full
+ - @string/settings_service_wifi_lock_high_perf
+
+ - None
+ - Full
+ - HighPerf
+
+ - @string/settings_service_ip_monitor_monitor
+ - @string/settings_service_ip_monitor_monitor_root
+ - @string/settings_service_ip_monitor_poll
+ - @string/settings_service_ip_monitor_poll_root
+
+ - Monitor
+ - MonitorRoot
+ - Poll
+ - PollRoot
+ 48dp56dp264dpVPN Hotspot MODRepeaterTetheringClientsSettingsUpdateRepeater (%1$d MHz, channel %2$d)WPS (insecure)Enter PINPush ButtonPlease use WPS push button within the next 2 minutes to connect your
+ device.PIN registered.Failed to start WPS (reason: %s)Valid config not found. Please start repeater first.Failed to remove redundant P2P group (reason: %s)Wi\u2011Fi direct unavailable, please enable Wi\u2011FiEnableFailed to create P2P group (reason: %s)Failed to remove P2P group (reason: %s)Failed to remove old P2P group (reason: %s)Failed to set operating channel (reason: %s)Failed to set vendor elements (reason: %s)internal errorWi\u2011Fi direct unsupportedno service requests addedunsupported operationService unavailable. Try again laterRepeater requires permissions for accessing fine
+ locationDue to system restrictions, turning Location off may lead to things not working
+ properly and increased battery usageConfigureTemporary Wi\u2011Fi hotspotThis feature requires location to be turned on.Failed to start hotspot (reason: %s)no channelgeneric errorincompatible modetethering disallowedMonitor…%s (monitored)Manage system tethering…Please disable Tethering hardware acceleration in Developer options
+ if VPN tethering does not work.USB tetheringWi\u2011Fi hotspotBluetooth tetheringEthernet tetheringUSB tethering (NCM)%1$d MHz, channel %2$d, width %3$s%4$s: Wi\u2011Fi %5$d, %1$d MHz, channel %2$d,
+ width %3$s, idle timeout in %6$s%4$s: Wi\u2011Fi %5$d, %1$d MHz, channel %2$d,
+ width %3$s, idle timeout disabled
+ - %1$s/%2$d client connected\nSupported features: %3$s
+ - %1$s/%2$d clients connected\nSupported features: %3$s
+
+ - %d client connected
+ - %1d clients connected
+ \nSupported channels: %s\nDriver country code: %sRandomized AP MACBridged AP concurrencySTA + AP concurrencySTA + Bridged AP concurrencyNoneBlocked %1$s: %2$sCopy MAC" (connecting)"" (reachable)"" (lost)"Nickname…BlockTurn on service for this interface to block the client.UnblockStats…Server returned error for %1$s: %2$sNickname for %s↠ðŸ³ï¸â€ðŸŒˆ VendorStats for %s
+ - Connected 1 time since %2$s
+ - Connected %1$s times since %2$s
+
+ - Sent 1 packet, %2$s
+ - Sent %1$s packets, %2$s
+
+ - Received 1 packet, %2$s
+ - Received %1$s packets, %2$s
+ UpstreamDownstreamIP Masquerade ModeNoneSimpleAndroid Netd ServiceDisable IPv6 tetheringEnabling this option will prevent VPN leaks via IPv6.Auto start servicesRestore services if they were running before device reboot or app
+ updateRepeater safe modeMakes no changes to your system configuration but might
+ not work with short network names.Short network names might require turning off safe
+ mode.Use system configuration for temporary hotspotWill conflict with other apps using local only
+ hotspotKeep Wi\u2011Fi aliveSystem defaultOnHigh Performance ModeDisable power saveLow latency modeNetwork status monitor modeNetlink monitorNetlink monitor with rootPollPoll with rootCurrent upstreams%1$s; fallback: %2$sUpstream network interfaceAuto detect system VPNFallback upstream interfaceAuto detect system default networkEnable DHCP workaroundUse this if clients cannot obtain IP addresses.Clean/reapply routing rulesUpdate changed settings to current active services. Can also fix rare
+ race conditions.Tethering hardware accelerationShortcut to system developer optionsMiscHelpExport debug informationSuch useful very wowProject homepage at GitHubRead manual, star, submit issues and contributeDonateI love moneyGitHub sponsors, PayPal, more…Restart this app to apply this setting.ExitVPN tetheringVPN Tethering ServiceMonitor Inactive Interfaces
+ - %d device connected to %s
+ - %d devices connected to %s
+
+ - %d interface
+ - %d interfaces
+ Inactive: %s
+ - %d device
+ - %d devices
+ unknown #%dFatal: Downstream interface not foundSomething went wrong, please check the debug information.Permission missingWi\u2011Fi configurationPossibly invalid configurationShare via QR codeAndroid system refuses such configuration. (see logcat)Network nameToggle hex displaySecurityPasswordTurn off hotspot automatically when no devices are connectedInactive timeoutDefault timeout: %dmsAP BandDisabled%s GHz BandAllowed 2.4 GHz ACS channelsAllowed 5 GHz ACS channelsAllowed 6 GHz ACS channelsMaximum channel bandwidthAccess ControlAdvanced AP OptionsMAC addressPersistent Randomized MAC addressHidden networkMaximum number of clientsControl which client can use hotspotBlocked list of clientsAllowed list of clientsUse randomized MACNonePersistentNon-persistentEnable opportunistic shutdown of an instance in bridged APInactive timeout for a bridged instanceEnable Wi\u2011Fi 6Enable Wi\u2011Fi 7User supplied configurationVendor elementsSaveCloseDo you find this application useful?\nSupport its development by sending a donation to the developer!Google Play StoreIn-App Donations are not supported. Is Google Play Store installed correctly?Google charges a fee of 30%Donate!How much?Thanks for donating!\nI really appreciate this!#4CAF50#2e7d32@color/light_colorPrimary#087f23#AEEA00#6000VPN HotspotRepetidorTetheringClientesConfiguraçõesAtualizaçãoRepetidor (%1$d MHz, channel %2$d)WPS (inseguro)Insira um PINPush ButtonPor favor, use o botão WPS dentro de 2 minutos para conectar seu dispositivo.PIN registrado.Ocorreu um erro ao acionar o WPS (motivo: %s)Não foi encontrada uma configuração válida. Por favor, inicie o repetidor primeiro.Falha ao remover grupo P2P redundante (motivo: %s)Wi\u2011Fi direct não disponÃvel, por favor, ative o Wi\u2011FiAtivarFalha ao criar grupo P2P (motivo: %s)Falha ao remover grupo P2P (motivo: %s)Falha ao remover antigo grupo P2P (motivo: %s)Falha ao definir canal operacional (motivo: %s)Falha ao definir elementos do fornecedor (motivo: %s)erro internoWi\u2011Fi direct não suportadoNenhuma solicitação de serviço adicionadaOperação não suportadaServiço indisponÃvel. Tente novamente mais tardeO repetidor necessita de permissões para acessar esta localizaçãoPor restrições de sistema, desativar a localização pode deixar o repetidor ineficiente e aumentar o consumo de bateriaConfigurarHotspot Wi\u2011Fi temporárioEssa função precisa que sua localização esteja ativada para funcionar.Houve uma falha ao iniciar o hotspot (motivo: %s)sem canalerro genéricomodo incompatÃveltethering não permitidoMonitor…%s (monitorado)Gerenciar tethering do sistema…Por favor, desative a Aceleração de hardware de tethering nas configurações de desenvolvedor caso o VPN Hotspot não funcionar corretamente.Tethering USBPonto de acesso Wi\u2011FiTethering BluetoothTethering EthernetTethering USB (NCM)%1$d MHz, canal %2$d, largura %3$s%4$s: Wi\u2011Fi %5$d, %1$d MHz, canal %2$d,
+ largura %3$s, tempo ocioso em %6$s%4$s: Wi\u2011Fi %5$d, %1$d MHz, largura %2$d,
+ largura %3$s, tempo ocioso desabilitado
+ - %1$s/%2$d cliente conectado\nFunções suportadas: %3$s
+ - %1$s/%2$d clientes conectados\nFunções suportadas: %3$s
+
+ - %d cliente conectado
+ - %1d clientes conectados
+ \nCanais suportados: %s\nCódigo do paÃs do Driver: %sMAC AP aleatórioSimultaneidade de AP em ponteSTA + AP simultâneosSTA + Bridged AP simultâneosNenhumBloqueado %1$s: %2$sCopiar MAC" (conectando)"" (alcançável)"" (perdido)"Apelido…BloquearAtive o serviço para esta interface para bloquear o cliente.DesbloquearStatus…O servidor retornou um erro para %1$s: %2$sApelido para %s↠ðŸ³ï¸â€ðŸŒˆ FornecedorStatus para %s
+ - Conectado 1 vez desde %2$s
+ - Conectado %1$s vezes desde %2$s
+
+ - Enviado 1 pacote, %2$s
+ - Enviados %1$s pacotes, %2$s
+
+ - Recebido 1 pacote, %2$s
+ - Recebidos %1$s pacotes, %2$s
+ UpstreamDownstreamModo de máscara de IPNenhumSimplesServiço Android NetdDesative Tethering IPv6Ativar esta opção evitará vazamentos de VPN via IPv6.Auto inicialização de serviçosRestaurar serviços que estavam em execução antes do aplicativo / dispositivo reiniciar ou atualizarModo de repetidor seguroNão faz alterações no seu sistema mas pode causar mal funcionamento com nomes de rede curtos.Nomes curtos de rede podem exigir o desligamento do modo seguro.Deixe o Wi\u2011Fi ativoPadrão do sistemaAtivoModo de alta performanceDesativar o modo de economia de energiaModo de baixa latênciaModo de monitoramento de redeMonitor netlinkMonitor netlink com rootPollPoll com rootUpstreams atuais%1$s; fallback: %2$sInterface de upstream de redeDetectar automaticamente VPN de sistemaInterface upstream de fallbackDetectar automaticamente a rede padrão do sistemaAtivar DHCP workaroundUse isso se o cliente não consegue obter endereço IP.Limpar/re-aplicar regras de roteamentoAtualize as configurações alteradas para os serviços ativos atualmente. Isso pode corrigir condições raras.Aceleração de Tethering do hardwareAtalho para a opção de desenvolvedorDiversosAjudaExportar configurações de depuraçãoMuito útil… UauPágina do GitHub do projetoLeia o manual, marque com estrela, envie problemas e contribua (Tipo o Konny :D)DoeEu amo dinheiro!GitHub sponsors, PayPal, e mais…Reinicie o aplicativo para aplicar essa função.SairVPN tetheringServiço de Tethering de VPNMonitorar interfaces inativas
+ - %d dispotivivo conectado ao %s
+ - %d dispositivos conectados ao %s
+
+ - %d interface
+ - %d interfaces
+ Inativo: %s
+ - %d dispositivo
+ - %d dispositivos
+ desconhecido #%dFatal: Interface de downstream não encontradaAlgo se saiu errado. Por favor, verifique o log de depuraçãoPermissão faltando.Configuração Wi\u2011FiCompartilhar via Código QRO sistema Android recusa essa configuração. (olhe o logcat)Nome da redeSegurançaSenhaDesative o roteamento se não houver nenhum dispositivo conectadoTempo inativoTempo inativo padrão: %dmsBanda do APDesativado%s GHzCanais permitidos 2.4 GHz ACSCanais permitidos 5 GHz ACSCanais permitidos 6 GHz ACSMaximum channel bandwidthControle de acessoOpções de AP avançadasEndereço MACEndereço MAC aleatório persistenteRede ocultaNúmero máximo de clientesControle de qual cliente pode usar o hotspotLista de clientes bloqueadosLista de clientes permitidosUsar um MAC aleatórioNenhumPersistenteNão persistenteHabilite o desligamento oportunista de uma instância no AP em ponteTempo limite inativo para uma instância em ponteAtive Wi\u2011Fi 6Ative Wi\u2011Fi 7Configuração fornecida pelo usuárioElementos do fornecedorSalvarFecharVocê acha esse aplicativo útil?\nDê um apoio para o desenvolvedor, envie um mimo!Google Play StoreAcho que algo está errado com os pagamentos pelo aplicativo. Certifique-se que sua Google Play Store está instalada corretamente.O Google cobra uma taxa de 30%Doe!Quanto?Obrigado mesmo por doar!\nEu lhe agradeço muito!13108846109-5iemp5pbapg7n5epbk0mv96007m9bhmg.apps.googleusercontent.comhttps://mygod-vpnhotspot.firebaseio.com13108846109AIzaSyADp0gTf25H6H3KxDRKwvp0EaWq_XvYUmg1:13108846109:android:63120dcb2e900ed0AIzaSyADp0gTf25H6H3KxDRKwvp0EaWq_XvYUmgmygod-vpnhotspot.appspot.commygod-vpnhotspot00000000000000000000000000000000
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/activity_main.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/activity_main.xml
new file mode 100644
index 00000000..0c4c7e59
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/activity_main.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/dialog_nickname.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/dialog_nickname.xml
new file mode 100644
index 00000000..b67eaa09
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/dialog_nickname.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/dialog_wifi_ap.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/dialog_wifi_ap.xml
new file mode 100644
index 00000000..94604f2b
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/dialog_wifi_ap.xml
@@ -0,0 +1,461 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/dialog_wps.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/dialog_wps.xml
new file mode 100644
index 00000000..0ec188b3
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/dialog_wps.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/fragment_clients.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/fragment_clients.xml
new file mode 100644
index 00000000..0863c13b
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/fragment_clients.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/fragment_ebeg.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/fragment_ebeg.xml
new file mode 100644
index 00000000..d1ba4cea
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/fragment_ebeg.xml
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/fragment_tethering.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/fragment_tethering.xml
new file mode 100644
index 00000000..29d963e5
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/fragment_tethering.xml
@@ -0,0 +1,10 @@
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/listitem_client.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/listitem_client.xml
new file mode 100644
index 00000000..2137538c
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/listitem_client.xml
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/listitem_interface.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/listitem_interface.xml
new file mode 100644
index 00000000..c21f327f
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/listitem_interface.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/listitem_manage.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/listitem_manage.xml
new file mode 100644
index 00000000..16f4fb3c
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/listitem_manage.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/listitem_repeater.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/listitem_repeater.xml
new file mode 100644
index 00000000..e42e391f
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/listitem_repeater.xml
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/preference_material.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/preference_material.xml
new file mode 100644
index 00000000..dcd2ae80
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/preference_material.xml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/preference_widget_edittext_autocomplete.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/preference_widget_edittext_autocomplete.xml
new file mode 100644
index 00000000..03f3bd47
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/preference_widget_edittext_autocomplete.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/preference_widget_material_switch.xml b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/preference_widget_material_switch.xml
new file mode 100644
index 00000000..7ede5c1b
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/mergeFreedomDebugResources/stripped.dir/layout/preference_widget_material_switch.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/compile-file-map.properties b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/compile-file-map.properties
new file mode 100644
index 00000000..39b724c8
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/compile-file-map.properties
@@ -0,0 +1,66 @@
+#Sun Mar 03 22:41:32 CST 2024
+hanson.xyz.vpnhotspotmod.mobile-freedomDebug-3\:/raw/third_party_license_metadata=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/raw/third_party_license_metadata
+hanson.xyz.vpnhotspotmod.mobile-freedomDebug-3\:/raw/third_party_licenses=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/raw/third_party_licenses
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_action_autorenew.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_autorenew.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_action_bug_report.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_bug_report.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_action_build.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_build.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_action_card_giftcard.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_card_giftcard.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_action_code.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_code.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_action_perm_scan_wifi.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_perm_scan_wifi.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_action_settings.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_action_settings_backup_restore.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_backup_restore.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_action_settings_ethernet.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_ethernet.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_action_settings_input_antenna.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_input_antenna.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_action_settings_input_component.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_input_component.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_action_update.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_update.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_action_wifi_protected_setup.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_wifi_protected_setup.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_alert_warning.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_alert_warning.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_av_closed_caption.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_av_closed_caption.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_av_closed_caption_off.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_av_closed_caption_off.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_content_add.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_content_add.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_content_file_copy.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_content_file_copy.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_content_inbox.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_content_inbox.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_device_battery_charging_full.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_battery_charging_full.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_device_bluetooth.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_bluetooth.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_device_devices.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_devices.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_device_network_wifi.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_network_wifi.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_device_usb.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_usb.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_device_wifi_lock.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_wifi_lock.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_device_wifi_tethering.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_wifi_tethering.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_file_downloading.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_file_downloading.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_hardware_device_hub.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_hardware_device_hub.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_image_flash_on.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_image_flash_on.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_image_looks_6.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_image_looks_6.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_image_remove_red_eye.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_image_remove_red_eye.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_launcher_background.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_launcher_background.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_launcher_foreground.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_launcher_foreground.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_launcher_monochrome.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_launcher_monochrome.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_quick_settings_tile_on.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_quick_settings_tile_on.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_settings_qrcode.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_settings_qrcode.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_social_people.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_social_people.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/ic_toggle_star.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_toggle_star.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/drawable/toggle_hex.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/drawable/toggle_hex.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/layout/dialog_nickname.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/dialog_nickname.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/layout/dialog_wps.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/dialog_wps.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/menu/navigation.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/menu/navigation.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/menu/popup_client.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/menu/popup_client.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/menu/toolbar_configuration.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/menu/toolbar_configuration.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/menu/toolbar_tethering.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/menu/toolbar_tethering.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/mipmap/banner.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/mipmap/banner.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/mipmap/ic_launcher.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/mipmap/ic_launcher.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/xml/locales_config.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/xml/locales_config.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/xml/log_paths.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/xml/log_paths.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/xml/no_backup.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/xml/no_backup.xml
+hanson.xyz.vpnhotspotmod.mobile-main-10\:/xml/pref_settings.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/xml/pref_settings.xml
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-5\:/layout/activity_main.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/activity_main.xml
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-5\:/layout/dialog_wifi_ap.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/dialog_wifi_ap.xml
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-5\:/layout/fragment_clients.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/fragment_clients.xml
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-5\:/layout/fragment_ebeg.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/fragment_ebeg.xml
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-5\:/layout/fragment_tethering.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/fragment_tethering.xml
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-5\:/layout/listitem_client.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_client.xml
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-5\:/layout/listitem_interface.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_interface.xml
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-5\:/layout/listitem_manage.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_manage.xml
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-5\:/layout/listitem_repeater.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_repeater.xml
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-5\:/layout/preference_material.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/preference_material.xml
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-5\:/layout/preference_widget_edittext_autocomplete.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/preference_widget_edittext_autocomplete.xml
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-5\:/layout/preference_widget_material_switch.xml=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/packaged_res/freedomDebug/layout/preference_widget_material_switch.xml
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-it/values-it.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-it/values-it.xml
new file mode 100644
index 00000000..10f36bfe
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-it/values-it.xml
@@ -0,0 +1,148 @@
+
+
+
+ - Connesso 1 volta dal %2$s
+ - Connesso %1$s volte dal %2$s
+
+
+ - Inviato 1 pacchetto, %2$s
+ - Inviati %1$s pacchetti, %2$s
+
+
+ - Ricevuto 1 pacchetto, %2$s
+ - Ricevuti %1$s pacchetti, %2$s
+
+
+ - %d dispositivo connesso a %s
+ - %d dispositivi connessi a %s
+
+
+ - %d interfaccia
+ - %d interfacce
+
+
+ - %d dispositivi
+ - %d dispositivo
+
+ VPN Hotspot
+ Il server ha restituito questo errore per %1$s: %2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ Venditore
+ Nickname per %s
+ Blocca
+ Abilita il servizio per questa interfaccia per bloccare il client.
+ Nickname…
+ Statistiche…
+ Sblocca
+ Statistiche per %s
+ Il sistema Android rifiuta questa configurazione. (vedi logcat)
+ Condividi con Codice QR
+ Configurazione Wi\u2011Fi
+ " (perso)"
+ " (in connessione)"
+ " (raggiungibile)"
+ Chiudi
+ Trovi che questa applicazione sia utile?\nSupportane lo sviluppo inviando una donazione al suo sviluppatore!
+ Google Play Store
+ Google addebita una commissione del 30%
+ Dona!
+ Donazioni In-App non supportate. Google Play Store è installato correttamente?
+ Quanto?
+ Grazie per la tua donazione!\nLo apprezzo molto!
+ Fatale: Interfaccia Downstream non trovata
+ sconosciuta #%d
+ Qualcosa è andato storto, per favore controlla le informazioni di debug.
+ Servizio Tethering VPN
+ Inattivi: %s
+ Tethering VPN attivo
+ Ripetitore (%1$d MHz, channel %2$d)
+ Rimozione del gruppo P2P ridondante fallita (causa: %s)
+ File di configurazione valido non trovato. Per favore accendi il ripetitore prima.
+ Creazione del gruppo P2P fallita (causa: %s)
+ Servizio non disponibile. Riprova dopo
+ errore interno
+ nessuna richiesta di servizio aggiunta
+ Wi\u2011Fi direct non supportato
+ operazione non supportata
+ Wi\u2011Fi direct non disponibile, per favore abilita il Wi\u2011Fi
+ Abilita
+ Rimozione del gruppo P2P fallita (causa: %s)
+ Rimozione del vecchio gruppo P2P fallita (causa: %s)
+ Impostazione del canale operativo fallita (causa: %s)
+ WPS (non sicuro)
+ Premi il bottone
+ Inserisci PIN
+ Avvio WPS fallito (causa: %s)
+ PIN registrato.
+ Utilizza il pulsante WPS entro i prossimi 2 minuti per collegare il
+ dispositivo.
+ Downstream
+ Esci
+ Aiuto
+ Miscellanea
+ Dona
+ GitHub sponsors, PayPal, altro…
+ Amo i soldi
+ Esporta informazioni di debug
+ Così utile molto wow
+ Homepage progetto su GitHub
+ Leggi il manuale, metti tra i preferiti, segnala problemi e contribuisci
+ Riavvia l\'applicazione per applicare questa impostazione.
+ Pulisci/riapplica regole di routing
+ Aggiorna le impostazioni modificate ai servizi attivi. Può anche sistemare rare
+ condizioni.
+ Abilita DHCP alternativo
+ Usalo se i client non riescono ad ottenere gli indirizzi IP.
+ Disabilita tethering IPv6
+ Abilitando questa funzione si preveniranno perdite della VPN via IPv6.
+ Modalità di monitoraggio dello stato della rete
+ Monitoraggio Netlink
+ Monitoraggio Netlink con root
+ Poll
+ Poll con root
+ Modalità IP Masquerade
+ Servizio Android Netd
+ Nessuno
+ Semplice
+ Interfaccia di rete upstream
+ Individua automaticamente VPN del sistema
+ Tieni il Wi\u2011Fi attivo
+ Attivo
+ Modalità prestazioni elevate
+ Disabilita il risparmio batteria
+ Modalità latenza bassa
+ Default di sistema
+ Accelerazione hardware Tethering
+ Scorciatoia alle opzioni sviluppatore del sistema
+ Upstream
+ Interfaccia fallback upstream
+ Individua automaticamente la rete default del sistema
+ L\'hotspot temporaneo richiede che la localizzazione sia attiva.
+ Gestisci il tethering del sistema…
+ Tethering Bluetooth
+ "Tethering Ethernet"
+ Per favore disabilita l\'accelerazione hardware tethering nelle opzioni sviluppatore
+ se il tethering VPN non funziona.
+ Tethering USB
+ Hotspot Wi\u2011Fi
+ Monitora…
+ %s (monitorato)
+ Hotspot Wi\u2011Fi temporaneo
+ Avvio dell\'hotspot fallito (causa: %s)
+ errore generico
+ modalità incompatibile
+ nessun canale
+ tethering non permesso
+ Client
+ Ripetitore
+ Impostazioni
+ Tethering
+ "Indirizzo MAC"
+ "Banda a %s GHz"
+ "Rete nascosta"
+ Banda AP
+ "L\'hotspot Wi‑Fi viene disattivato se non ci sono dispositivi collegati"
+ Password
+ Salva
+ Sicurezza
+ "Nome rete"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-night-v8/values-night-v8.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-night-v8/values-night-v8.xml
new file mode 100644
index 00000000..0e38592a
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-night-v8/values-night-v8.xml
@@ -0,0 +1,7 @@
+
+
+ false
+ @color/dark_colorPrimary
+ #005005
+ #AEEA00
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml
new file mode 100644
index 00000000..90275d6f
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml
@@ -0,0 +1,206 @@
+
+
+
+ - Conectado 1 vez desde %2$s
+ - Conectado %1$s vezes desde %2$s
+
+
+ - Enviado 1 pacote, %2$s
+ - Enviados %1$s pacotes, %2$s
+
+
+ - Recebido 1 pacote, %2$s
+ - Recebidos %1$s pacotes, %2$s
+
+
+ - %d dispotivivo conectado ao %s
+ - %d dispositivos conectados ao %s
+
+
+ - %d interface
+ - %d interfaces
+
+
+ - %d dispositivo
+ - %d dispositivos
+
+
+ - %1$s/%2$d cliente conectado\nFunções suportadas: %3$s
+ - %1$s/%2$d clientes conectados\nFunções suportadas: %3$s
+
+
+ - %d cliente conectado
+ - %1d clientes conectados
+
+ VPN Hotspot
+ O servidor retornou um erro para %1$s: %2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ Fornecedor
+ Apelido para %s
+ Bloquear
+ Ative o serviço para esta interface para bloquear o cliente.
+ Apelido…
+ Status…
+ Desbloquear
+ Status para %s
+ O sistema Android recusa essa configuração. (olhe o logcat)
+ Compartilhar via Código QR
+ Configuração Wi\u2011Fi
+ " (perdido)"
+ " (conectando)"
+ " (alcançável)"
+ Fechar
+ Você acha esse aplicativo útil?\nDê um apoio para o desenvolvedor, envie um mimo!
+ Google Play Store
+ O Google cobra uma taxa de 30%
+ Doe!
+ Acho que algo está errado com os pagamentos pelo aplicativo. Certifique-se que sua Google Play Store está instalada corretamente.
+ Quanto?
+ Obrigado mesmo por doar!\nEu lhe agradeço muito!
+ Fatal: Interface de downstream não encontrada
+ desconhecido #%d
+ Algo se saiu errado. Por favor, verifique o log de depuração
+ Monitorar interfaces inativas
+ Serviço de Tethering de VPN
+ Inativo: %s
+ VPN tethering
+ Permissão faltando.
+ Repetidor (%1$d MHz, channel %2$d)
+ Falha ao remover grupo P2P redundante (motivo: %s)
+ Não foi encontrada uma configuração válida. Por favor, inicie o repetidor primeiro.
+ Falha ao criar grupo P2P (motivo: %s)
+ Serviço indisponÃvel. Tente novamente mais tarde
+ erro interno
+ Nenhuma solicitação de serviço adicionada
+ Wi\u2011Fi direct não suportado
+ Operação não suportada
+ Por restrições de sistema, desativar a localização pode deixar o repetidor ineficiente e aumentar o consumo de bateria
+ Configurar
+ O repetidor necessita de permissões para acessar esta localização
+ Wi\u2011Fi direct não disponÃvel, por favor, ative o Wi\u2011Fi
+ Ativar
+ Falha ao remover grupo P2P (motivo: %s)
+ Falha ao remover antigo grupo P2P (motivo: %s)
+ Falha ao definir canal operacional (motivo: %s)
+ Falha ao definir elementos do fornecedor (motivo: %s)
+ WPS (inseguro)
+ Push Button
+ Insira um PIN
+ Ocorreu um erro ao acionar o WPS (motivo: %s)
+ PIN registrado.
+ Por favor, use o botão WPS dentro de 2 minutos para conectar seu dispositivo.
+ Downstream
+ Sair
+ Ajuda
+ Diversos
+ Doe
+ GitHub sponsors, PayPal, e mais…
+ Eu amo dinheiro!
+ Exportar configurações de depuração
+ Muito útil… Uau
+ Página do GitHub do projeto
+ Leia o manual, marque com estrela, envie problemas e contribua (Tipo o Konny :D)
+ Reinicie o aplicativo para aplicar essa função.
+ Auto inicialização de serviços
+ Restaurar serviços que estavam em execução antes do aplicativo / dispositivo reiniciar ou atualizar
+ Limpar/re-aplicar regras de roteamento
+ Atualize as configurações alteradas para os serviços ativos atualmente. Isso pode corrigir condições raras.
+ Ativar DHCP workaround
+ Use isso se o cliente não consegue obter endereço IP.
+ Desative Tethering IPv6
+ Ativar esta opção evitará vazamentos de VPN via IPv6.
+ Modo de monitoramento de rede
+ Monitor netlink
+ Monitor netlink com root
+ Poll
+ Poll com root
+ Modo de máscara de IP
+ Serviço Android Netd
+ Nenhum
+ Simples
+ Modo de repetidor seguro
+ Não faz alterações no seu sistema mas pode causar mal funcionamento com nomes de rede curtos.
+ Nomes curtos de rede podem exigir o desligamento do modo seguro.
+ Interface de upstream de rede
+ Detectar automaticamente VPN de sistema
+ Upstreams atuais
+ %1$s; fallback: %2$s
+ Deixe o Wi\u2011Fi ativo
+ Ativo
+ Modo de alta performance
+ Desativar o modo de economia de energia
+ Modo de baixa latência
+ Padrão do sistema
+ Aceleração de Tethering do hardware
+ Atalho para a opção de desenvolvedor
+ Upstream
+ Interface upstream de fallback
+ Detectar automaticamente a rede padrão do sistema
+ Essa função precisa que sua localização esteja ativada para funcionar.
+ Gerenciar tethering do sistema…
+ Tethering Bluetooth
+ Tethering Ethernet
+ Tethering USB (NCM)
+ Por favor, desative a Aceleração de hardware de tethering nas configurações de desenvolvedor caso o VPN Hotspot não funcionar corretamente.
+ Tethering USB
+ Ponto de acesso Wi\u2011Fi
+ Bloqueado %1$s: %2$s
+ Copiar MAC
+ \nCódigo do paÃs do Driver: %s
+ MAC AP aleatório
+ Simultaneidade de AP em ponte
+ STA + AP simultâneos
+ STA + Bridged AP simultâneos
+ %1$d MHz, canal %2$d, largura %3$s
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, largura %2$d,
+ largura %3$s, tempo ocioso desabilitado
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, canal %2$d,
+ largura %3$s, tempo ocioso em %6$s
+ Nenhum
+ \nCanais suportados: %s
+ Monitor…
+ %s (monitorado)
+ Hotspot Wi\u2011Fi temporário
+ Houve uma falha ao iniciar o hotspot (motivo: %s)
+ erro genérico
+ modo incompatÃvel
+ sem canal
+ tethering não permitido
+ Clientes
+ Repetidor
+ Configurações
+ Tethering
+ Atualização
+ Endereço MAC aleatório persistente
+ Endereço MAC
+ Lista de clientes permitidos
+ %s GHz
+ Desativado
+ Lista de clientes bloqueados
+ Habilite o desligamento oportunista de uma instância no AP em ponte
+ Controle de qual cliente pode usar o hotspot
+ Rede oculta
+ Controle de acesso
+ Canais permitidos 2.4 GHz ACS
+ Canais permitidos 5 GHz ACS
+ Canais permitidos 6 GHz ACS
+ Opções de AP avançadas
+ Banda do AP
+ Desative o roteamento se não houver nenhum dispositivo conectado
+ Maximum channel bandwidth
+ Tempo inativo
+ Tempo limite inativo para uma instância em ponte
+ Tempo inativo padrão: %dms
+ Ative Wi\u2011Fi 6
+ Ative Wi\u2011Fi 7
+ Usar um MAC aleatório
+ Não persistente
+ Nenhum
+ Persistente
+ Número máximo de clientes
+ Senha
+ Salvar
+ Segurança
+ Nome da rede
+ Configuração fornecida pelo usuário
+ Elementos do fornecedor
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-ru/values-ru.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-ru/values-ru.xml
new file mode 100644
index 00000000..11d1b094
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-ru/values-ru.xml
@@ -0,0 +1,60 @@
+
+
+
+ - %d уÑтройÑтво
+ - %d уÑтройÑтва
+ - %d уÑтройÑтв
+ - %d уÑтройÑтва
+
+ Сервер вернул ошибку Ð´Ð»Ñ %1$s: %2$s
+ Ð˜Ð¼Ñ Ð²ÐµÐ½Ð´Ð¾Ñ€Ð°
+ ÐикнÑйм Ð´Ð»Ñ %s
+ Блок
+ Включите Ñлужбу Ð´Ð»Ñ Ñтого интерфейÑа, чтобы заблокировать клиента.
+ ÐикнÑйм…
+ СтатиÑтика…
+ Разблокировать
+ СтатиÑтика Ð´Ð»Ñ %s
+ ÐаÑтройка Wi-Fi ретранÑлÑтора
+ " (потерÑ)"
+ " (подключение)"
+ " (доÑтупный)"
+ Закрыть
+ Считаете Ñто приложение полезным?\nПоддержите его разработку, отправив пожертвование разработчику!
+ Google Play Store
+ Google взимает 30% комиÑÑии Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ пожертвованиÑ!
+ Пожертвовать!
+ ÐŸÐ¾Ð¶ÐµÑ€Ñ‚Ð²Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ‡ÐµÑ€ÐµÐ· приложение не поддерживаютÑÑ. Google Play Store уÑтановлен правильно?
+ Сколько?
+ Благодарю за пожертвование! Я очень Ñто ценю!
+ Ошибка: ÐиÑходÑщий Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð½Ðµ найден
+ ÐеизвеÑтно #%d
+ Что-то пошло не так, пожалуйÑта, проверьте отладочную информацию.
+ VPN Ð¼Ð¾Ð´ÐµÐ¼Ð½Ð°Ñ Ñлужба
+ Ðеактивных: %s
+ VPN-модем активен
+ Ðе удалоÑÑŒ удалить избыточную группу P2P (причина: %s)
+ ДейÑтвительный конфиг не найден. ПожалуйÑта, Ñначала запуÑтите ретранÑлÑтор.
+ Ðе удалоÑÑŒ Ñоздать группу P2P (причина: %s)
+ Ð¡ÐµÑ€Ð²Ð¸Ñ Ð½ÐµÐ´Ð¾Ñтупен. Попробуйте позже
+ внутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°
+ запроÑÑ‹ на обÑлуживание не добавлены
+ Wi-Fi напрÑмую не поддерживаетÑÑ
+ Ð½ÐµÐ¿Ð¾Ð´Ð´ÐµÑ€Ð¶Ð¸Ð²Ð°ÐµÐ¼Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ
+ Wi-Fi директ недоÑтупен, пожалуйÑта включите Wi-Fi
+ Ðе удалоÑÑŒ удалить группу P2P (причина: %s)
+ Ðе удалоÑÑŒ удалить Ñтарую группу P2P (причина:%s)
+ "Bluetooth-модем"
+ "Режим Ethernet-модема"
+ "USB-модем"
+ "Точка доÑтупа Wi‑Fi"
+ "MAC-адреÑ"
+ "%s ГГц"
+ "Ð¡ÐºÑ€Ñ‹Ñ‚Ð°Ñ Ñеть"
+ "Диапазон чаÑтот Wi-Fi"
+ "Выключать точку доÑтупа Wi‑Fi автоматичеÑки, еÑли к ней не подключено ни одного уÑтройÑтва"
+ "Пароль"
+ "Сохранить"
+ "Защита"
+ "Ð˜Ð¼Ñ Ñети"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-v29/values-v29.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-v29/values-v29.xml
new file mode 100644
index 00000000..25619afb
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-v29/values-v29.xml
@@ -0,0 +1,14 @@
+
+
+
+ - @string/settings_service_wifi_lock_none
+ - @string/settings_service_wifi_lock_high_perf_v29
+ - @string/settings_service_wifi_lock_low_latency
+
+
+ - None
+ - HighPerf
+ - LowLatency
+
+ @android:color/transparent
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-v30/values-v30.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-v30/values-v30.xml
new file mode 100644
index 00000000..6385721d
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-v30/values-v30.xml
@@ -0,0 +1,4 @@
+
+
+ true
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 00000000..3bb143ae
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,201 @@
+
+
+
+ - 自 %2$s 以æ¥è¿žæŽ¥äº† %1$s 次
+
+
+ - ä¸Šä¼ %1$s 个包,%2$s
+
+
+ - 下载 %1$s 个包,%2$s
+
+
+ - %d 个设备已连接到 %s
+
+
+ - %d 个接å£
+
+
+ - %d å°è®¾å¤‡
+
+
+ - 已连接 %1$s/%2$d 个设备\n支æŒåŠŸèƒ½ï¼š%3$s
+
+
+ - 已连接 %d 个设备
+
+ VPN çƒç‚¹
+ æœåŠ¡å™¨ä¸º %1$s 返回错误:%2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ 厂商
+ %s 的昵称
+ 拉黑
+ 拉黑需è¦ä¸ºè¯¥æŽ¥å£æ‰“å¼€æœåŠ¡ã€‚
+ 昵称…
+ æµé‡â€¦
+ 洗白
+ %s çš„æµé‡
+ é…ç½®å¯èƒ½æ— 效
+ Android 系统拒ç»ä½¿ç”¨æ¤é…置。(详情å‚è§æ—¥å¿—)
+ 使用 QR ç 分享
+ 设置 WLAN
+ (已æ–开)
+ (æ£åœ¨è¿žæŽ¥ï¼‰
+ (已连接)
+ å…³é—
+ 觉得æ¤åº”用很有用?\næèµ 给该开å‘è€…ä»¥æ”¯æŒæ¤åº”用的开å‘ï¼
+ Google Play 商店
+ Google æ”¶å– 30% 的费用
+ æèµ ï¼
+ 䏿”¯æŒ In-App æèµ ã€‚ä½ çš„ Google Play 商店是å¦å®‰è£…æ£ç¡®äº†å‘¢ï¼Ÿ
+ æèµ 多少?
+ 谢谢æèµ ï¼\néžå¸¸æ„Ÿè°¢æ‚¨ï¼
+ 错误:未找到下游接å£
+ 未知 #%d
+ å‘生异常,详情请查看调试信æ¯ã€‚
+ ç›‘è§†ä¸æ´»è·ƒæŽ¥å£
+ VPN 共享æœåŠ¡
+ 䏿´»è·ƒï¼š%s
+ VPN 共享已å¯ç”¨
+ æƒé™ä¸è¶³
+ æ— çº¿ä¸ç»§ (%1$d MHz, é¢‘é“ %2$d)
+ åˆ é™¤å¤šä½™ P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ 未能找到有效的档案。请å°è¯•先打开ä¸ç»§ã€‚
+ 创建 P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ æœåŠ¡ä¸å¯ç”¨ï¼Œè¯·ç¨åŽé‡è¯•
+ 内部异常
+ æœªæ·»åŠ æœåŠ¡è¯·æ±‚
+ è®¾å¤‡ä¸æ”¯æŒ Wi\u2011Fi 直连
+ 䏿”¯æŒæ¤æ“作
+ 由于系统é™åˆ¶ï¼Œå…³é—ä½ç½®ä¿¡æ¯æœåŠ¡å¯èƒ½äº§ç”Ÿé—®é¢˜å¹¶å¯¼è‡´ç»èˆªç¼©çŸ
+ 进入设置
+ æ— çº¿ä¸ç»§éœ€è¦ç²¾ç¡®ä½ç½®æƒé™
+ Wi\u2011Fi 直连ä¸å¯ç”¨ï¼Œè¯·æ‰“å¼€ Wi\u2011Fi
+ 打开
+ å…³é—已有 P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ å…³é— P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ 设置è¿è¡Œé¢‘æ®µå¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ è®¾ç½®ä¾›åº”å•†ç‰¹å®šå…ƒç´ å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ WPS(ä¸å®‰å…¨ï¼‰
+ ä¸€é”®åŠ å¯†
+ 输入 PIN
+ 打开 WPS å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ æˆåŠŸæ³¨å†Œ PIN。
+ 请在 2 分钟内在需è¦è¿žæŽ¥çš„è®¾å¤‡ä¸Šä½¿ç”¨ä¸€é”®åŠ å¯†ä»¥è¿žæŽ¥åˆ°æ¤ä¸ç»§ã€‚
+ 下游
+ 退出
+ 帮助
+ æ‚项
+ ææ¬¾
+ GitHub sponsors, PayPal ç‰å…¶ä»–æ–¹å¼â€¦
+ 请给我钱
+ 导出调试信æ¯
+ è¿™ç§éžå¸¸æœ‰ç”¨å“‡
+ 项目首页 @ GitHub
+ 查看使用手册,star, æäº¤ issues, åˆä½œ
+ é‡å¯åº”用以应用新的设置。
+ 自动å¯åЍæœåŠ¡
+ 设备é‡å¯æˆ–应用å‡çº§åŽè‡ªåЍæ¢å¤ä¹‹å‰è¿è¡Œçš„æœåŠ¡
+ 清ç†/釿–°åº”用路由规则
+ 将修改的设置应用到当å‰å¯ç”¨çš„æœåŠ¡ä¸Šã€‚ä¹Ÿå¯ç”¨äºŽä¿®å¤å¶å°”会å‘ç”Ÿçš„ç«žæ€æ¡ä»¶ã€‚
+ å°è¯•ä¿®å¤ DHCP
+ å¦‚æžœè®¾å¤‡æ— æ³•èŽ·å– IP 地å€ï¼Œå°è¯•打开这个选项。
+ ç¦ç”¨ IPv6 共享
+ é˜²æ¢ VPN 通过 IPv6 泄æ¼ã€‚
+ 网络状æ€ç›‘嬿¨¡å¼
+ Netlink 监å¬
+ Netlink ç›‘å¬ (root)
+ 轮询
+ 轮询 (root)
+ IP 掩蔽模å¼
+ Android Netd æœåŠ¡
+ æ—
+ 简易
+ ä¸ç»§å®‰å…¨æ¨¡å¼
+ ä¸å¯¹ç³»ç»Ÿé…置进行修改,但是å¯èƒ½é¡»è¦è¾ƒé•¿çš„网络å称。
+ 使用çŸåç§°å¯èƒ½éœ€è¦å…³é—安全模å¼ã€‚
+ 临时 WLAN çƒç‚¹ä½¿ç”¨ç³»ç»Ÿé…ç½®
+ 这将与其他使用本地çƒç‚¹çš„应用冲çª
+ 上游网络接å£
+ 自动检测系统 VPN
+ 当å‰ä¸Šæ¸¸æŽ¥å£
+ %1$s;备用:%2$s
+ ä¿æŒ Wi\u2011Fi å¼€å¯
+ å¼€
+ 高性能模å¼
+ ç¦ç”¨çœç”µ
+ 低延迟模å¼
+ 系统默认
+ ç½‘ç»œå…±äº«ç¡¬ä»¶åŠ é€Ÿ
+ 系统“开å‘者选项â€çš„å¿«æ·æ–¹å¼
+ 上游
+ 备用上游接å£
+ 自动检测系统默认网络
+ 使用æ¤åŠŸèƒ½éœ€è¦æ‰“å¼€ä½ç½®æœåŠ¡ã€‚
+ 管ç†ç³»ç»Ÿå…±äº«â€¦
+ è“牙网络共享
+ "以太网络共享"
+ USB 网络共享 (NCM)
+ è‹¥ VPN å…±äº«æ— æ³•ä½¿ç”¨ï¼Œè¯·å°è¯•ç¦ç”¨â€œå¼€å‘者选项â€ä¸çš„â€œç½‘ç»œå…±äº«ç¡¬ä»¶åŠ é€Ÿâ€ã€‚
+ USB 网络共享
+ WLAN çƒç‚¹
+ å·²å±è”½ %1$s:%2$s
+ å¤åˆ¶ MAC
+ \n驱动国家代ç :%s
+ éšæœºæŽ¥å…¥ç‚¹ MAC
+ 桥接 AP å¹¶å‘
+ STA/AP å¹¶å‘
+ STA/桥接 AP å¹¶å‘
+ %1$d MHz, é¢‘é“ %2$d, 频宽 %3$s
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, é¢‘é“ %2$d, 频宽 %3$s,
+ ä¸è‡ªåЍ关é—
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, é¢‘é“ %2$d, 频宽 %3$s,
+ å…³é—延迟 %6$s
+ æ—
+ \n支æŒé¢‘é“: %s
+ 监视…
+ %s(监视)
+ 临时 WLAN çƒç‚¹
+ 打开çƒç‚¹å¤±è´¥ (åŽŸå› ï¼š%s)
+ 通用错误
+ 模å¼ä¸å…¼å®¹
+ æ— é¢‘æ®µ
+ 共享被ç¦ç”¨
+ 已连设备
+ æ— çº¿ä¸ç»§
+ 设置选项
+ 共享管ç†
+ 更新应用
+ æŒä¹…æ€§éšæœº MAC 地å€
+ "MAC 地å€"
+ 设备白åå•
+ "%s GHz 频段"
+ Disabled
+ 设备黑åå•
+ å¯ç”¨æ¡¥æŽ¥æ¨¡å¼ä¼ºæœºå…³é—
+ 过滤å¯ä»¥è¿žæŽ¥çš„设备
+ "éšè—的网络"
+ 访问控制
+ 2.4 GHz ACS å¯é€‰é¢‘段
+ 5 GHz ACS å¯é€‰é¢‘段
+ 6 GHz ACS å¯é€‰é¢‘段
+ 高级接入点设置
+ "AP 频段"
+ æœªè¿žæŽ¥ä»»ä½•è®¾å¤‡æ—¶è‡ªåŠ¨å…³é— WLAN çƒç‚¹
+ 最大频宽
+ å…³é—延迟
+ 默认延迟:%d 毫秒
+ å¯ç”¨ Wi\u2011Fi 6
+ å¯ç”¨ Wi\u2011Fi 7
+ éšæœºç”Ÿæˆ MAC 地å€
+ 䏿Œä¹…化
+ æ—
+ æŒä¹…化
+ å…许连接设备数上é™
+ "密ç "
+ "ä¿å˜"
+ "安全性"
+ "网络åç§°"
+ 切æ¢åå…进制显示
+ 用户æä¾›é…ç½®
+ 供应商特定元ç´
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 00000000..672fab69
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,186 @@
+
+
+
+ - 自 %2$s 以來連線了 %1$s 次
+
+
+ - 上傳 %1$s 個å°åŒ…,%2$s
+
+
+ - 下載 %1$s 個å°åŒ…,%2$s
+
+
+ - %d 個è£ç½®å·²é€£ç·šåˆ° %s
+
+
+ - %d 個介é¢
+
+
+ - %d 個è£ç½®
+
+
+ - 已連線 %1$s/%2$d 個è£ç½®\n支æ´åŠŸèƒ½ï¼š%3$s
+
+
+ - 已連線 %d 個è£ç½®
+
+ VPN 無線基地å°
+ 伺æœå™¨éŒ¯èª¤ %1$s:%2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ 供應商
+ 暱稱 %s
+ 黑åå–®
+ é–‹å•Ÿæ¤æœå‹™ä»¥é˜»æ¢è£ç½®é€£ç·š
+ 暱稱…
+ 狀態…
+ 解除黑åå–®
+ 狀態 %s
+ Android 系統拒絕使用æ¤çµ„態。(請檢視 Logcat)
+ 使用 QR Code 分享
+ Wi\u2011Fi 組態
+ ï¼ˆå·²ä¸æ–·ï¼‰
+ (æ£åœ¨é€£ç·šï¼‰
+ (已連線)
+ 關閉
+ é€™å€‹æ‡‰ç”¨ç¨‹å¼æœ‰ç”¨å—Žï¼Ÿ\nå°é¡çš„æŠ–å…§çµ¦é–‹ç™¼äººå“¡ç”¨ä¾†æ”¯æ´æ¤æ‡‰ç”¨ç¨‹å¼çš„開發
+ Google Play 商店
+ Google å°‡æ”¶å– 30% 的費用
+ 抖內ï¼
+ 䏿”¯æ´æ‡‰ç”¨ç¨‹å¼å…§è³¼ï¼ŒPlay å•†åº—æ˜¯å¦æ£ç¢ºå®‰è£ï¼Ÿ
+ 抖內多少錢
+ æ„Ÿè¬æŠ–å…§ï¼\nååˆ†æ„Ÿè¬æ‚¨ï¼
+ 錯誤:找ä¸åˆ°ä¸‹æ¸¸ä»‹é¢
+ 未知 #%d
+ 發生錯誤,請檢查åµéŒ¯è³‡è¨Šã€‚
+ 監視éžä½œç”¨ä¸ä»‹é¢
+ VPN ç„¡ç·šåŸºåœ°å°æœå‹™
+ åœç”¨ï¼š%s
+ VPN 無線基地å°å·²å•Ÿç”¨
+ 權é™ä¸è¶³
+ ä¸ç¹¼å™¨ (%1$d MHzï¼Œé »é“ %2$d)
+ 刪除冗餘 P2P 群組失敗 (åŽŸå› ï¼š%s)
+ 未找到有效的組態,請先啟動ä¸ç¹¼å™¨
+ 建立 P2P 群組失敗 (åŽŸå› ï¼š%s)
+ æœå‹™ä¸å¯ç”¨ï¼Œè«‹ç¨å¾Œå†è©¦
+ 內部錯誤
+ æœªæ·»åŠ æœå‹™è«‹æ±‚
+ Wi\u2011Fi Direct 䏿”¯æ´
+ 䏿”¯æ´çš„作æ¥
+ 由於系統é™åˆ¶ï¼Œé—œé–‰å®šä½æœå‹™å¯èƒ½æœƒå°Žè‡´å•é¡Œä¸¦å¢žåŠ é›»æ± ä½¿ç”¨é‡
+ è¨å®š
+ ä¸ç¹¼å™¨éœ€è¦ç²¾ç¢ºä½ç½®å˜å–權
+ Wi\u2011Fi Direct ä¸å¯ç”¨ï¼Œè«‹å•Ÿç”¨ Wi\u2011Fi
+ 開啟
+ 移除 P2P 群組失敗 (åŽŸå› ï¼š%s)
+ 移除舊 P2P 群組失敗 (åŽŸå› ï¼š%s)
+ è¨å®šå·¥ä½œé »é“失敗 (åŽŸå› ï¼š%s)
+ WPS(ä¸å®‰å…¨ï¼‰
+ WPS 按鈕
+ 輸入 PIN 碼
+ 開啟 WPS 失敗 (åŽŸå› ï¼š%s)
+ PIN å·²è¨å®š
+ 請在兩分é˜å…§åœ¨éœ€è¦é€£ç·šçš„è£ç½®ä¸Šï¼ŒæŒ‰ä¸‹ WPS 按鈕以連線到æ¤ä¸ç¹¼å™¨
+ 下游
+ 離開
+ 說明
+ é›œé …
+ 抖內
+ PayPalã€Flattr ç‰å…¶ä»–æ–¹å¼â€¦
+ 我喜æ¡éŒ¢
+ 匯出åµéŒ¯è³‡è¨Š
+ 這種éžå¸¸æœ‰ç”¨å•Š (^O^)ï¼
+ 專案首é @ GitHub
+ é–±è®€ä½¿ç”¨èªªæ˜Žï¼Œå° GitHub repo åŠ æ˜Ÿè™Ÿï¼Œæäº¤å•題並åˆä½œåƒèˆ‡é–‹ç™¼
+ é‡å•Ÿæ‡‰ç”¨ç¨‹å¼ä»¥å¥—用è¨å®šå€¼
+ 自動啟動æœå‹™
+ è£ç½®é‡æ–°å•Ÿå‹•或應用å‡ç´šå¾Œè‡ªå‹•æ¢å¾©ä¹‹å‰åŸ·è¡Œçš„æœå‹™
+ 清ç†/釿–°å¥—用路由è¦å‰‡
+ 將修改的è¨å®šå¥—用到目å‰å•Ÿç”¨çš„æœå‹™ä¸Šï¼Œä¹Ÿå¯ç”¨æ–¼ä¿®å¾©å¶çˆ¾æœƒç™¼ç”Ÿçš„ç«¶æ…‹æ¢ä»¶
+ 啟用 DHCP å› æ‡‰æŽªæ–½
+ 如果è£ç½®ç„¡æ³•å–å¾— IP ä½å€ï¼Œå˜—試開啟這é¸é …
+ åœç”¨ IPv6 共用
+ é˜²æ¢ VPN é€éŽ IPv6 æ´©æ¼
+ 網路狀態監視模å¼
+ Netlink 監視
+ Netlink 監視 (root)
+ 輪詢
+ 輪詢 (root)
+ IP å½è£æ¨¡å¼
+ Android Netd æœå‹™
+ ç„¡
+ 簡易
+ ä¸ç¹¼å®‰å…¨æ¨¡å¼
+ ä¸å°ç³»çµ±çµ„æ…‹åšä»»ä½•變更,但是å¯èƒ½éœ€è¦è¼ƒé•·çš„ SSID
+ ä½¿ç”¨çŸ SSID å¯èƒ½éœ€è¦é—œé–‰å®‰å…¨æ¨¡å¼ã€‚
+ 上游網路介é¢
+ 自動檢測系統 VPN æœå‹™
+ ç›®å‰ä¸Šæ¸¸ä»‹é¢
+ %1$s;後æ´ï¼š%2$s
+ ä¿æŒ Wi\u2011Fi 開啟
+ 開啟
+ 高效能模å¼
+ 關閉çœé›»æ¨¡å¼
+ ä½Žå»¶é²æ¨¡å¼
+ 系統é è¨
+ ç¶²è·¯å…±ç”¨ç¡¬é«”åŠ é€Ÿ
+ 系統「開發人員é¸é …ã€çš„æ·å¾‘
+ 上游
+ 後æ´ä¸Šæ¸¸ä»‹é¢
+ 自動檢測系統é è¨ç¶²è·¯
+ 需è¦é–‹å•Ÿå®šä½
+ 系統網路共用管ç†â€¦
+ è—牙網路共用
+ "乙太網路網路共用"
+ USB 網路共用 (NCM)
+ 如果 VPN 網路共用ä¸èµ·ä½œç”¨ï¼Œè«‹åœ¨ã€Œé–‹ç™¼äººå“¡é¸é …ã€ä¸é—œé–‰ã€Œç¶²è·¯å…±ç”¨ç¡¬é«”åŠ é€Ÿã€
+ USB 網路共用
+ Wi\u2011Fi 無線基地å°
+ å·²éš±è— %1$s:%2$s
+ 複製 MAC
+ 隨機 AP MAC
+ 橋接 AP 並行
+ STA/AP 並行
+ STA/橋接 AP 並行
+ %1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s
+ %4$s:Wi\u2011Fi %5$d,%1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s,
+ 閒置逾時已åœç”¨
+ %4$s:Wi\u2011Fi %5$d,%1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s,
+ 閒置逾時 %6$s
+ ç„¡
+ \n支æ´é »é“:%s
+ 監視…
+ %s (å—監視)
+ 臨時 Wi\u2011Fi 無線基地å°
+ 啟動無線基地å°å¤±æ•— (åŽŸå› ï¼š%s)
+ 一般錯誤
+ ä¸ç›¸å®¹çš„æ¨¡å¼
+ æ²’æœ‰é »é“
+ ç¶²è·¯å…±ç”¨å·²ç¦æ¢
+ 用戶端
+ ä¸ç¹¼å™¨
+ è¨å®š
+ 網路共用
+ æ›´æ–°
+ "MAC ä½å€"
+ è£ç½®ç™½åå–®
+ %s GHz é »å¸¶
+ åœç”¨
+ è£ç½®é»‘åå–®
+ 啟用橋接模å¼éš¨æ©Ÿé—œé–‰
+ éŽæ¿¾å¯ä»¥é€£ç·šçš„è£ç½®
+ "éš±è—的網路"
+ å˜å–控制
+ 進階 AP é¸é …
+ AP é »å¸¶
+ 在沒有任何è£ç½®é€£ç·šæ™‚關閉 WIFI 無線基地å°
+ éžä½¿ç”¨ä¸é—œé–‰é€¾æ™‚
+ é è¨é€¾æ™‚:%d 毫秒
+ 啟用 Wi\u2011Fi 6
+ 啟用 Wi\u2011Fi 7
+ 隨機化 MAC ä½å€
+ 最大連線è£ç½®æ•¸é‡
+ 密碼
+ 儲å˜
+ 安全性
+ 網路å稱
+ 使用者æä¾›çµ„æ…‹
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values/values.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values/values.xml
new file mode 100644
index 00000000..9f75c1db
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir/values/values.xml
@@ -0,0 +1,332 @@
+
+
+
+ - @string/settings_service_ip_monitor_monitor
+ - @string/settings_service_ip_monitor_monitor_root
+ - @string/settings_service_ip_monitor_poll
+ - @string/settings_service_ip_monitor_poll_root
+
+
+ - Monitor
+ - MonitorRoot
+ - Poll
+ - PollRoot
+
+
+ - @string/settings_service_masquerade_none
+ - @string/settings_service_masquerade_simple
+ - @string/settings_service_masquerade_netd
+
+
+ - None
+ - Simple
+ - Netd
+
+
+ - @string/settings_service_wifi_lock_none
+ - @string/settings_service_wifi_lock_full
+ - @string/settings_service_wifi_lock_high_perf
+
+
+ - None
+ - Full
+ - HighPerf
+
+
+ - @string/wifi_mac_randomization_none
+ - @string/wifi_mac_randomization_persistent
+ - @string/wifi_mac_randomization_non_persistent
+
+ false
+ true
+ @color/light_colorPrimary
+ #087f23
+ #AEEA00
+ #2e7d32
+ #4CAF50
+ #6000
+ 56dp
+ 264dp
+ 48dp
+
+ - Connected 1 time since %2$s
+ - Connected %1$s times since %2$s
+
+
+ - Sent 1 packet, %2$s
+ - Sent %1$s packets, %2$s
+
+
+ - Received 1 packet, %2$s
+ - Received %1$s packets, %2$s
+
+
+ - %d device connected to %s
+ - %d devices connected to %s
+
+
+ - %d interface
+ - %d interfaces
+
+
+ - %d device
+ - %d devices
+
+
+ - %1$s/%2$d client connected\nSupported features: %3$s
+ - %1$s/%2$d clients connected\nSupported features: %3$s
+
+
+ - %d client connected
+ - %1d clients connected
+
+ VPN Hotspot MOD
+ Server returned error for %1$s: %2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ Vendor
+ Nickname for %s
+ Block
+ Turn on service for this interface to block the client.
+ Nickname…
+ Stats…
+ Unblock
+ Stats for %s
+ 00000000000000000000000000000000
+ Possibly invalid configuration
+ Android system refuses such configuration. (see logcat)
+ Share via QR code
+ Wi\u2011Fi configuration
+ " (lost)"
+ " (connecting)"
+ " (reachable)"
+ 13108846109-5iemp5pbapg7n5epbk0mv96007m9bhmg.apps.googleusercontent.com
+ Close
+ Do you find this application useful?\nSupport its development by sending a donation to the developer!
+ Google Play Store
+ Google charges a fee of 30%
+ Donate!
+ In-App Donations are not supported. Is Google Play Store installed correctly?
+ How much?
+ Thanks for donating!\nI really appreciate this!
+ Fatal: Downstream interface not found
+ unknown #%d
+ https://mygod-vpnhotspot.firebaseio.com
+ 13108846109
+ AIzaSyADp0gTf25H6H3KxDRKwvp0EaWq_XvYUmg
+ 1:13108846109:android:63120dcb2e900ed0
+ AIzaSyADp0gTf25H6H3KxDRKwvp0EaWq_XvYUmg
+ mygod-vpnhotspot.appspot.com
+ Something went wrong, please check the debug information.
+ Monitor Inactive Interfaces
+ VPN Tethering Service
+ Inactive: %s
+ VPN tethering
+ Permission missing
+ mygod-vpnhotspot
+ Repeater (%1$d MHz, channel %2$d)
+ Failed to remove redundant P2P group (reason: %s)
+ Valid config not found. Please start repeater first.
+ Failed to create P2P group (reason: %s)
+ Service unavailable. Try again later
+ internal error
+ no service requests added
+ Wi\u2011Fi direct unsupported
+ unsupported operation
+ Due to system restrictions, turning Location off may lead to things not working
+ properly and increased battery usage
+ Configure
+ Repeater requires permissions for accessing fine
+ location
+ Wi\u2011Fi direct unavailable, please enable Wi\u2011Fi
+ Enable
+ Failed to remove P2P group (reason: %s)
+ Failed to remove old P2P group (reason: %s)
+ Failed to set operating channel (reason: %s)
+ Failed to set vendor elements (reason: %s)
+ WPS (insecure)
+ Push Button
+ Enter PIN
+ Failed to start WPS (reason: %s)
+ PIN registered.
+ Please use WPS push button within the next 2 minutes to connect your
+ device.
+ Downstream
+ Exit
+ Help
+ Misc
+ Donate
+ GitHub sponsors, PayPal, more…
+ I love money
+ Export debug information
+ Such useful very wow
+ Project homepage at GitHub
+ Read manual, star, submit issues and contribute
+ Restart this app to apply this setting.
+ Auto start services
+ Restore services if they were running before device reboot or app
+ update
+ Clean/reapply routing rules
+ Update changed settings to current active services. Can also fix rare
+ race conditions.
+ Enable DHCP workaround
+ Use this if clients cannot obtain IP addresses.
+ Disable IPv6 tethering
+ Enabling this option will prevent VPN leaks via IPv6.
+ Network status monitor mode
+ Netlink monitor
+ Netlink monitor with root
+ Poll
+ Poll with root
+ IP Masquerade Mode
+ Android Netd Service
+ None
+ Simple
+ Repeater safe mode
+ Makes no changes to your system configuration but might
+ not work with short network names.
+ Short network names might require turning off safe
+ mode.
+ Use system configuration for temporary hotspot
+ Will conflict with other apps using local only
+ hotspot
+ Upstream network interface
+ Auto detect system VPN
+ Current upstreams
+ %1$s; fallback: %2$s
+ Keep Wi\u2011Fi alive
+ On
+ High Performance Mode
+ Disable power save
+ Low latency mode
+ System default
+ Tethering hardware acceleration
+ Shortcut to system developer options
+ Upstream
+ Fallback upstream interface
+ Auto detect system default network
+ This feature requires location to be turned on.
+ Manage system tethering…
+ Bluetooth tethering
+ Ethernet tethering
+ USB tethering (NCM)
+ Please disable Tethering hardware acceleration in Developer options
+ if VPN tethering does not work.
+ USB tethering
+ Wi\u2011Fi hotspot
+ Blocked %1$s: %2$s
+ Copy MAC
+ \nDriver country code: %s
+ Randomized AP MAC
+ Bridged AP concurrency
+ STA + AP concurrency
+ STA + Bridged AP concurrency
+ %1$d MHz, channel %2$d, width %3$s
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, channel %2$d,
+ width %3$s, idle timeout disabled
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, channel %2$d,
+ width %3$s, idle timeout in %6$s
+ None
+ \nSupported channels: %s
+ Monitor…
+ %s (monitored)
+ Temporary Wi\u2011Fi hotspot
+ Failed to start hotspot (reason: %s)
+ generic error
+ incompatible mode
+ no channel
+ tethering disallowed
+ Clients
+ Repeater
+ Settings
+ Tethering
+ Update
+ Persistent Randomized MAC address
+ MAC address
+ Allowed list of clients
+ %s GHz Band
+ Disabled
+ Blocked list of clients
+ Enable opportunistic shutdown of an instance in bridged AP
+ Control which client can use hotspot
+ Hidden network
+ Access Control
+ Allowed 2.4 GHz ACS channels
+ Allowed 5 GHz ACS channels
+ Allowed 6 GHz ACS channels
+ Advanced AP Options
+ AP Band
+ Turn off hotspot automatically when no devices are connected
+ Maximum channel bandwidth
+ Inactive timeout
+ Inactive timeout for a bridged instance
+ Default timeout: %dms
+ Enable Wi\u2011Fi 6
+ Enable Wi\u2011Fi 7
+ Use randomized MAC
+ Non-persistent
+ None
+ Persistent
+ Maximum number of clients
+ Password
+ Save
+ Security
+ Network name
+ Toggle hex display
+ User supplied configuration
+ Vendor elements
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merger.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merger.xml
new file mode 100644
index 00000000..f3c60070
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merger.xml
@@ -0,0 +1,210 @@
+
+trueДейÑтвительный конфиг не найден. ПожалуйÑта, Ñначала запуÑтите ретранÑлÑтор.Ðе удалоÑÑŒ удалить избыточную группу P2P (причина: %s)Wi-Fi директ недоÑтупен, пожалуйÑта включите Wi-FiÐе удалоÑÑŒ Ñоздать группу P2P (причина: %s)Ðе удалоÑÑŒ удалить группу P2P (причина: %s)Ðе удалоÑÑŒ удалить Ñтарую группу P2P (причина:%s)внутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°Wi-Fi напрÑмую не поддерживаетÑÑзапроÑÑ‹ на обÑлуживание не Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ñ‹Ð½ÐµÐ¿Ð¾Ð´Ð´ÐµÑ€Ð¶Ð¸Ð²Ð°ÐµÐ¼Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸ÑÐ¡ÐµÑ€Ð²Ð¸Ñ Ð½ÐµÐ´Ð¾Ñтупен. Попробуйте позже"USB-модем""Точка доÑтупа Wi‑Fi""Bluetooth-модем""Режим Ethernet-модема"" (подключение)"" (доÑтупный)"" (потерÑ)"ÐикнÑйм…БлокВключите Ñлужбу Ð´Ð»Ñ Ñтого интерфейÑа, чтобы заблокировать клиента.РазблокироватьСтатиÑтика…Сервер вернул ошибку Ð´Ð»Ñ %1$s: %2$sÐикнÑйм Ð´Ð»Ñ %sÐ˜Ð¼Ñ Ð²ÐµÐ½Ð´Ð¾Ñ€Ð°Ð¡Ñ‚Ð°Ñ‚Ð¸Ñтика Ð´Ð»Ñ %sVPN-модем активенVPN Ð¼Ð¾Ð´ÐµÐ¼Ð½Ð°Ñ ÑлужбаÐеактивных: %s
+ - %d уÑтройÑтво
+ - %d уÑтройÑтва
+ - %d уÑтройÑтв
+ - %d уÑтройÑтва
+ ÐеизвеÑтно #%dОшибка: ÐиÑходÑщий Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð½Ðµ найденЧто-то пошло не так, пожалуйÑта, проверьте отладочную информацию.ÐаÑтройка Wi-Fi ретранÑлÑтора"Ð˜Ð¼Ñ Ñети""Защита""Пароль""Выключать точку доÑтупа Wi‑Fi автоматичеÑки, еÑли к ней не подключено ни одного уÑтройÑтва""Диапазон чаÑтот Wi-Fi""%s ГГц""MAC-адреÑ""Ð¡ÐºÑ€Ñ‹Ñ‚Ð°Ñ Ñеть""Сохранить"ЗакрытьСчитаете Ñто приложение полезным?\nПоддержите его разработку, отправив пожертвование разработчику!Google Play StoreÐŸÐ¾Ð¶ÐµÑ€Ñ‚Ð²Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ‡ÐµÑ€ÐµÐ· приложение не поддерживаютÑÑ. Google Play Store уÑтановлен правильно?Google взимает 30% комиÑÑии Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ пожертвованиÑ!Пожертвовать!Сколько?Благодарю за пожертвование! Я очень Ñто ценю!VPN HotspotRipetitoreTetheringClientImpostazioniRipetitore (%1$d MHz, channel %2$d)WPS (non sicuro)Inserisci PINPremi il bottoneUtilizza il pulsante WPS entro i prossimi 2 minuti per collegare il
+ dispositivo.PIN registrato.Avvio WPS fallito (causa: %s)File di configurazione valido non trovato. Per favore accendi il ripetitore prima.Rimozione del gruppo P2P ridondante fallita (causa: %s)Wi\u2011Fi direct non disponibile, per favore abilita il Wi\u2011FiAbilitaCreazione del gruppo P2P fallita (causa: %s)Rimozione del gruppo P2P fallita (causa: %s)Rimozione del vecchio gruppo P2P fallita (causa: %s)Impostazione del canale operativo fallita (causa: %s)errore internoWi\u2011Fi direct non supportatonessuna richiesta di servizio aggiuntaoperazione non supportataServizio non disponibile. Riprova dopoHotspot Wi\u2011Fi temporaneoL\'hotspot temporaneo richiede che la localizzazione sia attiva.Avvio dell\'hotspot fallito (causa: %s)nessun canaleerrore genericomodalità incompatibiletethering non permessoMonitora…%s (monitorato)Gestisci il tethering del sistema…Per favore disabilita l\'accelerazione hardware tethering nelle opzioni sviluppatore
+ se il tethering VPN non funziona.Tethering USBHotspot Wi\u2011FiTethering Bluetooth"Tethering Ethernet"" (in connessione)"" (raggiungibile)"" (perso)"Nickname…BloccaAbilita il servizio per questa interfaccia per bloccare il client.SbloccaStatistiche…Il server ha restituito questo errore per %1$s: %2$sNickname per %s↠ðŸ³ï¸â€ðŸŒˆ VenditoreStatistiche per %s
+ - Connesso 1 volta dal %2$s
+ - Connesso %1$s volte dal %2$s
+
+ - Inviato 1 pacchetto, %2$s
+ - Inviati %1$s pacchetti, %2$s
+
+ - Ricevuto 1 pacchetto, %2$s
+ - Ricevuti %1$s pacchetti, %2$s
+ UpstreamDownstreamModalità IP MasqueradeNessunoSempliceServizio Android NetdDisabilita tethering IPv6Abilitando questa funzione si preveniranno perdite della VPN via IPv6.Tieni il Wi\u2011Fi attivoDefault di sistemaAttivoModalità prestazioni elevateDisabilita il risparmio batteriaModalità latenza bassaModalità di monitoraggio dello stato della reteMonitoraggio NetlinkMonitoraggio Netlink con rootPollPoll con rootInterfaccia di rete upstreamIndividua automaticamente VPN del sistemaInterfaccia fallback upstreamIndividua automaticamente la rete default del sistemaAbilita DHCP alternativoUsalo se i client non riescono ad ottenere gli indirizzi IP.Pulisci/riapplica regole di routingAggiorna le impostazioni modificate ai servizi attivi. Può anche sistemare rare
+ condizioni.Accelerazione hardware TetheringScorciatoia alle opzioni sviluppatore del sistemaMiscellaneaAiutoEsporta informazioni di debugCosì utile molto wowHomepage progetto su GitHubLeggi il manuale, metti tra i preferiti, segnala problemi e contribuisciDonaAmo i soldiGitHub sponsors, PayPal, altro…Riavvia l\'applicazione per applicare questa impostazione.EsciTethering VPN attivoServizio Tethering VPN
+ - %d dispositivo connesso a %s
+ - %d dispositivi connessi a %s
+
+ - %d interfaccia
+ - %d interfacce
+ Inattivi: %s
+ - %d dispositivi
+ - %d dispositivo
+ sconosciuta #%dFatale: Interfaccia Downstream non trovataQualcosa è andato storto, per favore controlla le informazioni di debug.Configurazione Wi\u2011FiCondividi con Codice QRIl sistema Android rifiuta questa configurazione. (vedi logcat)"Nome rete"SicurezzaPassword"L\'hotspot Wi‑Fi viene disattivato se non ci sono dispositivi collegati"Banda AP"Banda a %s GHz""Indirizzo MAC""Rete nascosta"SalvaChiudiTrovi che questa applicazione sia utile?\nSupportane lo sviluppo inviando una donazione al suo sviluppatore!Google Play StoreDonazioni In-App non supportate. Google Play Store è installato correttamente?Google addebita una commissione del 30%Dona!Quanto?Grazie per la tua donazione!\nLo apprezzo molto!VPN çƒç‚¹æ— 线ä¸ç»§å…±äº«ç®¡ç†å·²è¿žè®¾å¤‡è®¾ç½®é€‰é¡¹æ›´æ–°åº”ç”¨æ— çº¿ä¸ç»§ (%1$d MHz, é¢‘é“ %2$d)WPS(ä¸å®‰å…¨ï¼‰è¾“å…¥ PINä¸€é”®åŠ å¯†è¯·åœ¨ 2 分钟内在需è¦è¿žæŽ¥çš„è®¾å¤‡ä¸Šä½¿ç”¨ä¸€é”®åŠ å¯†ä»¥è¿žæŽ¥åˆ°æ¤ä¸ç»§ã€‚æˆåŠŸæ³¨å†Œ PIN。打开 WPS å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)未能找到有效的档案。请å°è¯•先打开ä¸ç»§ã€‚åˆ é™¤å¤šä½™ P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)Wi\u2011Fi 直连ä¸å¯ç”¨ï¼Œè¯·æ‰“å¼€ Wi\u2011Fi打开创建 P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)关é—已有 P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%sï¼‰å…³é— P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)设置è¿è¡Œé¢‘æ®µå¤±è´¥ï¼ˆåŽŸå› ï¼š%sï¼‰è®¾ç½®ä¾›åº”å•†ç‰¹å®šå…ƒç´ å¤±è´¥ï¼ˆåŽŸå› ï¼š%sï¼‰å†…éƒ¨å¼‚å¸¸è®¾å¤‡ä¸æ”¯æŒ Wi\u2011Fi ç›´è¿žæœªæ·»åŠ æœåŠ¡è¯·æ±‚ä¸æ”¯æŒæ¤æ“作æœåŠ¡ä¸å¯ç”¨ï¼Œè¯·ç¨åŽé‡è¯•æ— çº¿ä¸ç»§éœ€è¦ç²¾ç¡®ä½ç½®æƒé™ç”±äºŽç³»ç»Ÿé™åˆ¶ï¼Œå…³é—ä½ç½®ä¿¡æ¯æœåŠ¡å¯èƒ½äº§ç”Ÿé—®é¢˜å¹¶å¯¼è‡´ç»èˆªç¼©çŸè¿›å…¥è®¾ç½®ä¸´æ—¶ WLAN çƒç‚¹ä½¿ç”¨æ¤åŠŸèƒ½éœ€è¦æ‰“å¼€ä½ç½®æœåŠ¡ã€‚æ‰“å¼€çƒç‚¹å¤±è´¥ (åŽŸå› ï¼š%s)æ— é¢‘æ®µé€šç”¨é”™è¯¯æ¨¡å¼ä¸å…¼å®¹å…±äº«è¢«ç¦ç”¨ç›‘视…%s(监视)管ç†ç³»ç»Ÿå…±äº«â€¦è‹¥ VPN å…±äº«æ— æ³•ä½¿ç”¨ï¼Œè¯·å°è¯•ç¦ç”¨â€œå¼€å‘者选项â€ä¸çš„â€œç½‘ç»œå…±äº«ç¡¬ä»¶åŠ é€Ÿâ€ã€‚USB 网络共享WLAN çƒç‚¹è“牙网络共享"以太网络共享"USB 网络共享 (NCM)%1$d MHz, é¢‘é“ %2$d, 频宽 %3$s%4$s: Wi\u2011Fi %5$d, %1$d MHz, é¢‘é“ %2$d, 频宽 %3$s,
+ å…³é—延迟 %6$s%4$s: Wi\u2011Fi %5$d, %1$d MHz, é¢‘é“ %2$d, 频宽 %3$s,
+ ä¸è‡ªåЍ关é—
+ - 已连接 %1$s/%2$d 个设备\n支æŒåŠŸèƒ½ï¼š%3$s
+
+ - 已连接 %d 个设备
+ \n支æŒé¢‘é“: %s\n驱动国家代ç :%séšæœºæŽ¥å…¥ç‚¹ MAC桥接 AP å¹¶å‘STA/AP å¹¶å‘STA/桥接 AP 并呿— å·²å±è”½ %1$s:%2$så¤åˆ¶ MAC(æ£åœ¨è¿žæŽ¥ï¼‰ï¼ˆå·²è¿žæŽ¥ï¼‰ï¼ˆå·²æ–开)昵称…拉黑拉黑需è¦ä¸ºè¯¥æŽ¥å£æ‰“å¼€æœåŠ¡ã€‚æ´—ç™½æµé‡â€¦æœåŠ¡å™¨ä¸º %1$s 返回错误:%2$s%s 的昵称↠ðŸ³ï¸â€ðŸŒˆ 厂商%s çš„æµé‡
+ - 自 %2$s 以æ¥è¿žæŽ¥äº† %1$s 次
+
+ - ä¸Šä¼ %1$s 个包,%2$s
+
+ - 下载 %1$s 个包,%2$s
+ 上游下游IP æŽ©è”½æ¨¡å¼æ— 简易Android Netd æœåŠ¡ç¦ç”¨ IPv6 å…±äº«é˜²æ¢ VPN 通过 IPv6 泄æ¼ã€‚自动å¯åЍæœåŠ¡è®¾å¤‡é‡å¯æˆ–应用å‡çº§åŽè‡ªåЍæ¢å¤ä¹‹å‰è¿è¡Œçš„æœåŠ¡ä¸ç»§å®‰å…¨æ¨¡å¼ä¸å¯¹ç³»ç»Ÿé…置进行修改,但是å¯èƒ½é¡»è¦è¾ƒé•¿çš„网络å称。使用çŸåç§°å¯èƒ½éœ€è¦å…³é—安全模å¼ã€‚临时 WLAN çƒç‚¹ä½¿ç”¨ç³»ç»Ÿé…置这将与其他使用本地çƒç‚¹çš„应用冲çªä¿æŒ Wi\u2011Fi å¼€å¯ç³»ç»Ÿé»˜è®¤å¼€é«˜æ€§èƒ½æ¨¡å¼ç¦ç”¨çœç”µä½Žå»¶è¿Ÿæ¨¡å¼ç½‘络状æ€ç›‘嬿¨¡å¼Netlink 监å¬Netlink ç›‘å¬ (root)轮询轮询 (root)当å‰ä¸Šæ¸¸æŽ¥å£%1$s;备用:%2$s上游网络接å£è‡ªåŠ¨æ£€æµ‹ç³»ç»Ÿ VPN备用上游接å£è‡ªåŠ¨æ£€æµ‹ç³»ç»Ÿé»˜è®¤ç½‘ç»œæ¸…ç†/釿–°åº”用路由规则将修改的设置应用到当å‰å¯ç”¨çš„æœåŠ¡ä¸Šã€‚ä¹Ÿå¯ç”¨äºŽä¿®å¤å¶å°”会å‘ç”Ÿçš„ç«žæ€æ¡ä»¶ã€‚å°è¯•ä¿®å¤ DHCPå¦‚æžœè®¾å¤‡æ— æ³•èŽ·å– IP 地å€ï¼Œå°è¯•æ‰“å¼€è¿™ä¸ªé€‰é¡¹ã€‚ç½‘ç»œå…±äº«ç¡¬ä»¶åŠ é€Ÿç³»ç»Ÿâ€œå¼€å‘者选项â€çš„å¿«æ·æ–¹å¼æ‚项帮助导出调试信æ¯è¿™ç§éžå¸¸æœ‰ç”¨å“‡é¡¹ç›®é¦–页 @ GitHub查看使用手册,star, æäº¤ issues, åˆä½œææ¬¾è¯·ç»™æˆ‘é’±GitHub sponsors, PayPal ç‰å…¶ä»–æ–¹å¼â€¦é‡å¯åº”用以应用新的设置。退出VPN 共享已å¯ç”¨VPN 共享æœåŠ¡ç›‘è§†ä¸æ´»è·ƒæŽ¥å£
+ - %d 个设备已连接到 %s
+
+ - %d 个接å£
+ 䏿´»è·ƒï¼š%s
+ - %d å°è®¾å¤‡
+ 未知 #%d错误:未找到下游接å£å‘生异常,详情请查看调试信æ¯ã€‚æƒé™ä¸è¶³è®¾ç½® WLANé…ç½®å¯èƒ½æ— 效使用 QR ç 分享Android 系统拒ç»ä½¿ç”¨æ¤é…置。(详情å‚è§æ—¥å¿—)"网络åç§°"切æ¢åå…进制显示"安全性""密ç "æœªè¿žæŽ¥ä»»ä½•è®¾å¤‡æ—¶è‡ªåŠ¨å…³é— WLAN çƒç‚¹å…³é—延迟默认延迟:%d 毫秒"AP 频段"Disabled"%s GHz 频段"2.4 GHz ACS å¯é€‰é¢‘段5 GHz ACS å¯é€‰é¢‘段6 GHz ACS å¯é€‰é¢‘段最大频宽访问控制高级接入点设置"MAC 地å€"æŒä¹…æ€§éšæœº MAC 地å€"éšè—的网络"å…许连接设备数上é™è¿‡æ»¤å¯ä»¥è¿žæŽ¥çš„设备设备黑åå•设备白åå•éšæœºç”Ÿæˆ MAC åœ°å€æ— æŒä¹…åŒ–ä¸æŒä¹…化å¯ç”¨æ¡¥æŽ¥æ¨¡å¼ä¼ºæœºå…³é—å¯ç”¨ Wi\u2011Fi 6å¯ç”¨ Wi\u2011Fi 7用户æä¾›é…ç½®ä¾›åº”å•†ç‰¹å®šå…ƒç´ "ä¿å˜"å…³é—Google Play å•†åº—ä¸æ”¯æŒ In-App æèµ ã€‚ä½ çš„ Google Play 商店是å¦å®‰è£…æ£ç¡®äº†å‘¢ï¼Ÿæèµ ï¼æèµ å¤šå°‘ï¼Ÿè°¢è°¢æèµ ï¼\néžå¸¸æ„Ÿè°¢æ‚¨ï¼è§‰å¾—æ¤åº”用很有用?\næèµ 给该开å‘è€…ä»¥æ”¯æŒæ¤åº”用的开å‘ï¼Google æ”¶å– 30% 的费用false@color/dark_colorPrimary#005005#AEEA00
+ - @string/settings_service_wifi_lock_none
+ - @string/settings_service_wifi_lock_high_perf_v29
+ - @string/settings_service_wifi_lock_low_latency
+
+ - None
+ - HighPerf
+ - LowLatency
+ @android:color/transparentVPN 無線基地å°ä¸ç¹¼å™¨ç¶²è·¯å…±ç”¨ç”¨æˆ¶ç«¯è¨å®šæ›´æ–°ä¸ç¹¼å™¨ (%1$d MHzï¼Œé »é“ %2$d)WPS(ä¸å®‰å…¨ï¼‰è¼¸å…¥ PIN 碼WPS 按鈕請在兩分é˜å…§åœ¨éœ€è¦é€£ç·šçš„è£ç½®ä¸Šï¼ŒæŒ‰ä¸‹ WPS 按鈕以連線到æ¤ä¸ç¹¼å™¨PIN å·²è¨å®šé–‹å•Ÿ WPS 失敗 (åŽŸå› ï¼š%s)未找到有效的組態,請先啟動ä¸ç¹¼å™¨åˆªé™¤å†—餘 P2P 群組失敗 (åŽŸå› ï¼š%s)Wi\u2011Fi Direct ä¸å¯ç”¨ï¼Œè«‹å•Ÿç”¨ Wi\u2011Fi開啟建立 P2P 群組失敗 (åŽŸå› ï¼š%s)移除 P2P 群組失敗 (åŽŸå› ï¼š%s)移除舊 P2P 群組失敗 (åŽŸå› ï¼š%s)è¨å®šå·¥ä½œé »é“失敗 (åŽŸå› ï¼š%s)內部錯誤Wi\u2011Fi Direct 䏿”¯æ´æœªæ·»åŠ æœå‹™è«‹æ±‚䏿”¯æ´çš„ä½œæ¥æœå‹™ä¸å¯ç”¨ï¼Œè«‹ç¨å¾Œå†è©¦ä¸ç¹¼å™¨éœ€è¦ç²¾ç¢ºä½ç½®å˜å–權由於系統é™åˆ¶ï¼Œé—œé–‰å®šä½æœå‹™å¯èƒ½æœƒå°Žè‡´å•é¡Œä¸¦å¢žåŠ é›»æ± ä½¿ç”¨é‡è¨å®šè‡¨æ™‚ Wi\u2011Fi 無線基地å°éœ€è¦é–‹å•Ÿå®šä½å•Ÿå‹•無線基地å°å¤±æ•— (åŽŸå› ï¼š%s)æ²’æœ‰é »é“一般錯誤ä¸ç›¸å®¹çš„æ¨¡å¼ç¶²è·¯å…±ç”¨å·²ç¦æ¢ç›£è¦–…%s (å—監視)系統網路共用管ç†â€¦å¦‚æžœ VPN 網路共用ä¸èµ·ä½œç”¨ï¼Œè«‹åœ¨ã€Œé–‹ç™¼äººå“¡é¸é …ã€ä¸é—œé–‰ã€Œç¶²è·¯å…±ç”¨ç¡¬é«”åŠ é€Ÿã€USB 網路共用Wi\u2011Fi 無線基地å°è—牙網路共用"乙太網路網路共用"USB 網路共用 (NCM)%1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s%4$s:Wi\u2011Fi %5$d,%1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s,
+ 閒置逾時 %6$s%4$s:Wi\u2011Fi %5$d,%1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s,
+ 閒置逾時已åœç”¨
+ - 已連線 %1$s/%2$d 個è£ç½®\n支æ´åŠŸèƒ½ï¼š%3$s
+
+ - 已連線 %d 個è£ç½®
+ \n支æ´é »é“:%s隨機 AP MAC橋接 AP 並行STA/AP 並行STA/橋接 AP ä¸¦è¡Œç„¡å·²éš±è— %1$s:%2$s複製 MAC(æ£åœ¨é€£ç·šï¼‰ï¼ˆå·²é€£ç·šï¼‰ï¼ˆå·²ä¸æ–·ï¼‰æš±ç¨±â€¦é»‘åå–®é–‹å•Ÿæ¤æœå‹™ä»¥é˜»æ¢è£ç½®é€£ç·šè§£é™¤é»‘å單狀態…伺æœå™¨éŒ¯èª¤ %1$s:%2$s暱稱 %s↠ðŸ³ï¸â€ðŸŒˆ 供應商狀態 %s
+ - 自 %2$s 以來連線了 %1$s 次
+
+ - 上傳 %1$s 個å°åŒ…,%2$s
+
+ - 下載 %1$s 個å°åŒ…,%2$s
+ 上游下游IP å½è£æ¨¡å¼ç„¡ç°¡æ˜“Android Netd æœå‹™åœç”¨ IPv6 å…±ç”¨é˜²æ¢ VPN é€éŽ IPv6 æ´©æ¼è‡ªå‹•啟動æœå‹™è£ç½®é‡æ–°å•Ÿå‹•或應用å‡ç´šå¾Œè‡ªå‹•æ¢å¾©ä¹‹å‰åŸ·è¡Œçš„æœå‹™ä¸ç¹¼å®‰å…¨æ¨¡å¼ä¸å°ç³»çµ±çµ„æ…‹åšä»»ä½•變更,但是å¯èƒ½éœ€è¦è¼ƒé•·çš„ SSIDä½¿ç”¨çŸ SSID å¯èƒ½éœ€è¦é—œé–‰å®‰å…¨æ¨¡å¼ã€‚ä¿æŒ Wi\u2011Fi 開啟系統é è¨é–‹å•Ÿé«˜æ•ˆèƒ½æ¨¡å¼é—œé–‰çœé›»æ¨¡å¼ä½Žå»¶é²æ¨¡å¼ç¶²è·¯ç‹€æ…‹ç›£è¦–模å¼Netlink 監視Netlink 監視 (root)輪詢輪詢 (root)ç›®å‰ä¸Šæ¸¸ä»‹é¢%1$s;後æ´ï¼š%2$s上游網路介é¢è‡ªå‹•檢測系統 VPN æœå‹™å¾Œæ´ä¸Šæ¸¸ä»‹é¢è‡ªå‹•檢測系統é è¨ç¶²è·¯æ¸…ç†/釿–°å¥—用路由è¦å‰‡å°‡ä¿®æ”¹çš„è¨å®šå¥—用到目å‰å•Ÿç”¨çš„æœå‹™ä¸Šï¼Œä¹Ÿå¯ç”¨æ–¼ä¿®å¾©å¶çˆ¾æœƒç™¼ç”Ÿçš„ç«¶æ…‹æ¢ä»¶å•Ÿç”¨ DHCP å› æ‡‰æŽªæ–½å¦‚æžœè£ç½®ç„¡æ³•å–å¾— IP ä½å€ï¼Œå˜—試開啟這é¸é …ç¶²è·¯å…±ç”¨ç¡¬é«”åŠ é€Ÿç³»çµ±ã€Œé–‹ç™¼äººå“¡é¸é …ã€çš„æ·å¾‘é›œé …èªªæ˜ŽåŒ¯å‡ºåµéŒ¯è³‡è¨Šé€™ç¨®éžå¸¸æœ‰ç”¨å•Š (^O^)ï¼å°ˆæ¡ˆé¦–é @ GitHubé–±è®€ä½¿ç”¨èªªæ˜Žï¼Œå° GitHub repo åŠ æ˜Ÿè™Ÿï¼Œæäº¤å•題並åˆä½œåƒèˆ‡é–‹ç™¼æŠ–內我喜æ¡éŒ¢PayPalã€Flattr ç‰å…¶ä»–æ–¹å¼â€¦é‡å•Ÿæ‡‰ç”¨ç¨‹å¼ä»¥å¥—用è¨å®šå€¼é›¢é–‹VPN 無線基地å°å·²å•Ÿç”¨VPN ç„¡ç·šåŸºåœ°å°æœå‹™ç›£è¦–éžä½œç”¨ä¸ä»‹é¢
+ - %d 個è£ç½®å·²é€£ç·šåˆ° %s
+
+ - %d 個介é¢
+ åœç”¨ï¼š%s
+ - %d 個è£ç½®
+ 未知 #%d錯誤:找ä¸åˆ°ä¸‹æ¸¸ä»‹é¢ç™¼ç”ŸéŒ¯èª¤ï¼Œè«‹æª¢æŸ¥åµéŒ¯è³‡è¨Šã€‚權é™ä¸è¶³Wi\u2011Fi 組態使用 QR Code 分享Android 系統拒絕使用æ¤çµ„態。(請檢視 Logcat)網路å稱安全性密碼在沒有任何è£ç½®é€£ç·šæ™‚關閉 WIFI 無線基地å°éžä½¿ç”¨ä¸é—œé–‰é€¾æ™‚é è¨é€¾æ™‚:%d 毫秒AP é »å¸¶åœç”¨%s GHz é »å¸¶å˜å–控制進階 AP é¸é …"MAC ä½å€""éš±è—的網路"最大連線è£ç½®æ•¸é‡éŽæ¿¾å¯ä»¥é€£ç·šçš„è£ç½®è£ç½®é»‘åå–®è£ç½®ç™½å單隨機化 MAC ä½å€å•Ÿç”¨æ©‹æŽ¥æ¨¡å¼éš¨æ©Ÿé—œé–‰å•Ÿç”¨ Wi\u2011Fi 6啟用 Wi\u2011Fi 7使用者æä¾›çµ„態儲å˜é—œé–‰Google Play å•†åº—ä¸æ”¯æ´æ‡‰ç”¨ç¨‹å¼å…§è³¼ï¼ŒPlay å•†åº—æ˜¯å¦æ£ç¢ºå®‰è£ï¼ŸæŠ–å…§ï¼æŠ–å…§å¤šå°‘éŒ¢æ„Ÿè¬æŠ–å…§ï¼\nååˆ†æ„Ÿè¬æ‚¨ï¼é€™å€‹æ‡‰ç”¨ç¨‹å¼æœ‰ç”¨å—Žï¼Ÿ\nå°é¡çš„æŠ–å…§çµ¦é–‹ç™¼äººå“¡ç”¨ä¾†æ”¯æ´æ¤æ‡‰ç”¨ç¨‹å¼çš„開發Google å°‡æ”¶å– 30% 的費用falsetrue
+ - @string/wifi_mac_randomization_none
+ - @string/wifi_mac_randomization_persistent
+ - @string/wifi_mac_randomization_non_persistent
+
+ - @string/settings_service_masquerade_none
+ - @string/settings_service_masquerade_simple
+ - @string/settings_service_masquerade_netd
+
+ - None
+ - Simple
+ - Netd
+
+ - @string/settings_service_wifi_lock_none
+ - @string/settings_service_wifi_lock_full
+ - @string/settings_service_wifi_lock_high_perf
+
+ - None
+ - Full
+ - HighPerf
+
+ - @string/settings_service_ip_monitor_monitor
+ - @string/settings_service_ip_monitor_monitor_root
+ - @string/settings_service_ip_monitor_poll
+ - @string/settings_service_ip_monitor_poll_root
+
+ - Monitor
+ - MonitorRoot
+ - Poll
+ - PollRoot
+ 48dp56dp264dpVPN Hotspot MODRepeaterTetheringClientsSettingsUpdateRepeater (%1$d MHz, channel %2$d)WPS (insecure)Enter PINPush ButtonPlease use WPS push button within the next 2 minutes to connect your
+ device.PIN registered.Failed to start WPS (reason: %s)Valid config not found. Please start repeater first.Failed to remove redundant P2P group (reason: %s)Wi\u2011Fi direct unavailable, please enable Wi\u2011FiEnableFailed to create P2P group (reason: %s)Failed to remove P2P group (reason: %s)Failed to remove old P2P group (reason: %s)Failed to set operating channel (reason: %s)Failed to set vendor elements (reason: %s)internal errorWi\u2011Fi direct unsupportedno service requests addedunsupported operationService unavailable. Try again laterRepeater requires permissions for accessing fine
+ locationDue to system restrictions, turning Location off may lead to things not working
+ properly and increased battery usageConfigureTemporary Wi\u2011Fi hotspotThis feature requires location to be turned on.Failed to start hotspot (reason: %s)no channelgeneric errorincompatible modetethering disallowedMonitor…%s (monitored)Manage system tethering…Please disable Tethering hardware acceleration in Developer options
+ if VPN tethering does not work.USB tetheringWi\u2011Fi hotspotBluetooth tetheringEthernet tetheringUSB tethering (NCM)%1$d MHz, channel %2$d, width %3$s%4$s: Wi\u2011Fi %5$d, %1$d MHz, channel %2$d,
+ width %3$s, idle timeout in %6$s%4$s: Wi\u2011Fi %5$d, %1$d MHz, channel %2$d,
+ width %3$s, idle timeout disabled
+ - %1$s/%2$d client connected\nSupported features: %3$s
+ - %1$s/%2$d clients connected\nSupported features: %3$s
+
+ - %d client connected
+ - %1d clients connected
+ \nSupported channels: %s\nDriver country code: %sRandomized AP MACBridged AP concurrencySTA + AP concurrencySTA + Bridged AP concurrencyNoneBlocked %1$s: %2$sCopy MAC" (connecting)"" (reachable)"" (lost)"Nickname…BlockTurn on service for this interface to block the client.UnblockStats…Server returned error for %1$s: %2$sNickname for %s↠ðŸ³ï¸â€ðŸŒˆ VendorStats for %s
+ - Connected 1 time since %2$s
+ - Connected %1$s times since %2$s
+
+ - Sent 1 packet, %2$s
+ - Sent %1$s packets, %2$s
+
+ - Received 1 packet, %2$s
+ - Received %1$s packets, %2$s
+ UpstreamDownstreamIP Masquerade ModeNoneSimpleAndroid Netd ServiceDisable IPv6 tetheringEnabling this option will prevent VPN leaks via IPv6.Auto start servicesRestore services if they were running before device reboot or app
+ updateRepeater safe modeMakes no changes to your system configuration but might
+ not work with short network names.Short network names might require turning off safe
+ mode.Use system configuration for temporary hotspotWill conflict with other apps using local only
+ hotspotKeep Wi\u2011Fi aliveSystem defaultOnHigh Performance ModeDisable power saveLow latency modeNetwork status monitor modeNetlink monitorNetlink monitor with rootPollPoll with rootCurrent upstreams%1$s; fallback: %2$sUpstream network interfaceAuto detect system VPNFallback upstream interfaceAuto detect system default networkEnable DHCP workaroundUse this if clients cannot obtain IP addresses.Clean/reapply routing rulesUpdate changed settings to current active services. Can also fix rare
+ race conditions.Tethering hardware accelerationShortcut to system developer optionsMiscHelpExport debug informationSuch useful very wowProject homepage at GitHubRead manual, star, submit issues and contributeDonateI love moneyGitHub sponsors, PayPal, more…Restart this app to apply this setting.ExitVPN tetheringVPN Tethering ServiceMonitor Inactive Interfaces
+ - %d device connected to %s
+ - %d devices connected to %s
+
+ - %d interface
+ - %d interfaces
+ Inactive: %s
+ - %d device
+ - %d devices
+ unknown #%dFatal: Downstream interface not foundSomething went wrong, please check the debug information.Permission missingWi\u2011Fi configurationPossibly invalid configurationShare via QR codeAndroid system refuses such configuration. (see logcat)Network nameToggle hex displaySecurityPasswordTurn off hotspot automatically when no devices are connectedInactive timeoutDefault timeout: %dmsAP BandDisabled%s GHz BandAllowed 2.4 GHz ACS channelsAllowed 5 GHz ACS channelsAllowed 6 GHz ACS channelsMaximum channel bandwidthAccess ControlAdvanced AP OptionsMAC addressPersistent Randomized MAC addressHidden networkMaximum number of clientsControl which client can use hotspotBlocked list of clientsAllowed list of clientsUse randomized MACNonePersistentNon-persistentEnable opportunistic shutdown of an instance in bridged APInactive timeout for a bridged instanceEnable Wi\u2011Fi 6Enable Wi\u2011Fi 7User supplied configurationVendor elementsSaveCloseDo you find this application useful?\nSupport its development by sending a donation to the developer!Google Play StoreIn-App Donations are not supported. Is Google Play Store installed correctly?Google charges a fee of 30%Donate!How much?Thanks for donating!\nI really appreciate this!#4CAF50#2e7d32@color/light_colorPrimary#087f23#AEEA00#6000VPN HotspotRepetidorTetheringClientesConfiguraçõesAtualizaçãoRepetidor (%1$d MHz, channel %2$d)WPS (inseguro)Insira um PINPush ButtonPor favor, use o botão WPS dentro de 2 minutos para conectar seu dispositivo.PIN registrado.Ocorreu um erro ao acionar o WPS (motivo: %s)Não foi encontrada uma configuração válida. Por favor, inicie o repetidor primeiro.Falha ao remover grupo P2P redundante (motivo: %s)Wi\u2011Fi direct não disponÃvel, por favor, ative o Wi\u2011FiAtivarFalha ao criar grupo P2P (motivo: %s)Falha ao remover grupo P2P (motivo: %s)Falha ao remover antigo grupo P2P (motivo: %s)Falha ao definir canal operacional (motivo: %s)Falha ao definir elementos do fornecedor (motivo: %s)erro internoWi\u2011Fi direct não suportadoNenhuma solicitação de serviço adicionadaOperação não suportadaServiço indisponÃvel. Tente novamente mais tardeO repetidor necessita de permissões para acessar esta localizaçãoPor restrições de sistema, desativar a localização pode deixar o repetidor ineficiente e aumentar o consumo de bateriaConfigurarHotspot Wi\u2011Fi temporárioEssa função precisa que sua localização esteja ativada para funcionar.Houve uma falha ao iniciar o hotspot (motivo: %s)sem canalerro genéricomodo incompatÃveltethering não permitidoMonitor…%s (monitorado)Gerenciar tethering do sistema…Por favor, desative a Aceleração de hardware de tethering nas configurações de desenvolvedor caso o VPN Hotspot não funcionar corretamente.Tethering USBPonto de acesso Wi\u2011FiTethering BluetoothTethering EthernetTethering USB (NCM)%1$d MHz, canal %2$d, largura %3$s%4$s: Wi\u2011Fi %5$d, %1$d MHz, canal %2$d,
+ largura %3$s, tempo ocioso em %6$s%4$s: Wi\u2011Fi %5$d, %1$d MHz, largura %2$d,
+ largura %3$s, tempo ocioso desabilitado
+ - %1$s/%2$d cliente conectado\nFunções suportadas: %3$s
+ - %1$s/%2$d clientes conectados\nFunções suportadas: %3$s
+
+ - %d cliente conectado
+ - %1d clientes conectados
+ \nCanais suportados: %s\nCódigo do paÃs do Driver: %sMAC AP aleatórioSimultaneidade de AP em ponteSTA + AP simultâneosSTA + Bridged AP simultâneosNenhumBloqueado %1$s: %2$sCopiar MAC" (conectando)"" (alcançável)"" (perdido)"Apelido…BloquearAtive o serviço para esta interface para bloquear o cliente.DesbloquearStatus…O servidor retornou um erro para %1$s: %2$sApelido para %s↠ðŸ³ï¸â€ðŸŒˆ FornecedorStatus para %s
+ - Conectado 1 vez desde %2$s
+ - Conectado %1$s vezes desde %2$s
+
+ - Enviado 1 pacote, %2$s
+ - Enviados %1$s pacotes, %2$s
+
+ - Recebido 1 pacote, %2$s
+ - Recebidos %1$s pacotes, %2$s
+ UpstreamDownstreamModo de máscara de IPNenhumSimplesServiço Android NetdDesative Tethering IPv6Ativar esta opção evitará vazamentos de VPN via IPv6.Auto inicialização de serviçosRestaurar serviços que estavam em execução antes do aplicativo / dispositivo reiniciar ou atualizarModo de repetidor seguroNão faz alterações no seu sistema mas pode causar mal funcionamento com nomes de rede curtos.Nomes curtos de rede podem exigir o desligamento do modo seguro.Deixe o Wi\u2011Fi ativoPadrão do sistemaAtivoModo de alta performanceDesativar o modo de economia de energiaModo de baixa latênciaModo de monitoramento de redeMonitor netlinkMonitor netlink com rootPollPoll com rootUpstreams atuais%1$s; fallback: %2$sInterface de upstream de redeDetectar automaticamente VPN de sistemaInterface upstream de fallbackDetectar automaticamente a rede padrão do sistemaAtivar DHCP workaroundUse isso se o cliente não consegue obter endereço IP.Limpar/re-aplicar regras de roteamentoAtualize as configurações alteradas para os serviços ativos atualmente. Isso pode corrigir condições raras.Aceleração de Tethering do hardwareAtalho para a opção de desenvolvedorDiversosAjudaExportar configurações de depuraçãoMuito útil… UauPágina do GitHub do projetoLeia o manual, marque com estrela, envie problemas e contribua (Tipo o Konny :D)DoeEu amo dinheiro!GitHub sponsors, PayPal, e mais…Reinicie o aplicativo para aplicar essa função.SairVPN tetheringServiço de Tethering de VPNMonitorar interfaces inativas
+ - %d dispotivivo conectado ao %s
+ - %d dispositivos conectados ao %s
+
+ - %d interface
+ - %d interfaces
+ Inativo: %s
+ - %d dispositivo
+ - %d dispositivos
+ desconhecido #%dFatal: Interface de downstream não encontradaAlgo se saiu errado. Por favor, verifique o log de depuraçãoPermissão faltando.Configuração Wi\u2011FiCompartilhar via Código QRO sistema Android recusa essa configuração. (olhe o logcat)Nome da redeSegurançaSenhaDesative o roteamento se não houver nenhum dispositivo conectadoTempo inativoTempo inativo padrão: %dmsBanda do APDesativado%s GHzCanais permitidos 2.4 GHz ACSCanais permitidos 5 GHz ACSCanais permitidos 6 GHz ACSMaximum channel bandwidthControle de acessoOpções de AP avançadasEndereço MACEndereço MAC aleatório persistenteRede ocultaNúmero máximo de clientesControle de qual cliente pode usar o hotspotLista de clientes bloqueadosLista de clientes permitidosUsar um MAC aleatórioNenhumPersistenteNão persistenteHabilite o desligamento oportunista de uma instância no AP em ponteTempo limite inativo para uma instância em ponteAtive Wi\u2011Fi 6Ative Wi\u2011Fi 7Configuração fornecida pelo usuárioElementos do fornecedorSalvarFecharVocê acha esse aplicativo útil?\nDê um apoio para o desenvolvedor, envie um mimo!Google Play StoreAcho que algo está errado com os pagamentos pelo aplicativo. Certifique-se que sua Google Play Store está instalada corretamente.O Google cobra uma taxa de 30%Doe!Quanto?Obrigado mesmo por doar!\nEu lhe agradeço muito!13108846109-5iemp5pbapg7n5epbk0mv96007m9bhmg.apps.googleusercontent.comhttps://mygod-vpnhotspot.firebaseio.com13108846109AIzaSyADp0gTf25H6H3KxDRKwvp0EaWq_XvYUmg1:13108846109:android:63120dcb2e900ed0AIzaSyADp0gTf25H6H3KxDRKwvp0EaWq_XvYUmgmygod-vpnhotspot.appspot.commygod-vpnhotspot00000000000000000000000000000000
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/activity_main.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/activity_main.xml
new file mode 100644
index 00000000..0c4c7e59
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/activity_main.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/dialog_nickname.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/dialog_nickname.xml
new file mode 100644
index 00000000..b67eaa09
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/dialog_nickname.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/dialog_wifi_ap.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/dialog_wifi_ap.xml
new file mode 100644
index 00000000..94604f2b
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/dialog_wifi_ap.xml
@@ -0,0 +1,461 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/dialog_wps.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/dialog_wps.xml
new file mode 100644
index 00000000..0ec188b3
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/dialog_wps.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/fragment_clients.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/fragment_clients.xml
new file mode 100644
index 00000000..0863c13b
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/fragment_clients.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/fragment_ebeg.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/fragment_ebeg.xml
new file mode 100644
index 00000000..d1ba4cea
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/fragment_ebeg.xml
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/fragment_tethering.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/fragment_tethering.xml
new file mode 100644
index 00000000..29d963e5
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/fragment_tethering.xml
@@ -0,0 +1,10 @@
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/listitem_client.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/listitem_client.xml
new file mode 100644
index 00000000..2137538c
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/listitem_client.xml
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/listitem_interface.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/listitem_interface.xml
new file mode 100644
index 00000000..c21f327f
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/listitem_interface.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/listitem_manage.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/listitem_manage.xml
new file mode 100644
index 00000000..16f4fb3c
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/listitem_manage.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/listitem_repeater.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/listitem_repeater.xml
new file mode 100644
index 00000000..e42e391f
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/listitem_repeater.xml
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/preference_material.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/preference_material.xml
new file mode 100644
index 00000000..dcd2ae80
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/preference_material.xml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/preference_widget_edittext_autocomplete.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/preference_widget_edittext_autocomplete.xml
new file mode 100644
index 00000000..03f3bd47
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/preference_widget_edittext_autocomplete.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/preference_widget_material_switch.xml b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/preference_widget_material_switch.xml
new file mode 100644
index 00000000..7ede5c1b
--- /dev/null
+++ b/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir/layout/preference_widget_material_switch.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/incremental/mergeFreedomDebugAssets/merger.xml b/mobile/build/intermediates/incremental/mergeFreedomDebugAssets/merger.xml
new file mode 100644
index 00000000..10c94313
--- /dev/null
+++ b/mobile/build/intermediates/incremental/mergeFreedomDebugAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/mergeFreedomDebugJniLibFolders/merger.xml b/mobile/build/intermediates/incremental/mergeFreedomDebugJniLibFolders/merger.xml
new file mode 100644
index 00000000..c5b76112
--- /dev/null
+++ b/mobile/build/intermediates/incremental/mergeFreedomDebugJniLibFolders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/mergeFreedomDebugShaders/merger.xml b/mobile/build/intermediates/incremental/mergeFreedomDebugShaders/merger.xml
new file mode 100644
index 00000000..1d745fee
--- /dev/null
+++ b/mobile/build/intermediates/incremental/mergeFreedomDebugShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/incremental/packageFreedomDebug/tmp/freedomDebug/dex-renamer-state.txt b/mobile/build/intermediates/incremental/packageFreedomDebug/tmp/freedomDebug/dex-renamer-state.txt
new file mode 100644
index 00000000..c94c5e3a
--- /dev/null
+++ b/mobile/build/intermediates/incremental/packageFreedomDebug/tmp/freedomDebug/dex-renamer-state.txt
@@ -0,0 +1,37 @@
+#Sun Mar 03 23:02:15 CST 2024
+base.0=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/dex/freedomDebug/mergeExtDexFreedomDebug/classes.dex
+base.1=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/0/classes.dex
+base.10=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/desugar_lib_dex/freedomDebug/classes1000.dex
+base.11=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/dex/freedomDebug/mergeExtDexFreedomDebug/classes2.dex
+base.2=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/1/classes.dex
+base.3=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/11/classes.dex
+base.4=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/12/classes.dex
+base.5=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/15/classes.dex
+base.6=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/2/classes.dex
+base.7=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/5/classes.dex
+base.8=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/6/classes.dex
+base.9=/home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/dex/freedomDebug/mergeProjectDexFreedomDebug/9/classes.dex
+path.0=classes.dex
+path.1=0/classes.dex
+path.10=classes1000.dex
+path.11=classes2.dex
+path.2=1/classes.dex
+path.3=11/classes.dex
+path.4=12/classes.dex
+path.5=15/classes.dex
+path.6=2/classes.dex
+path.7=5/classes.dex
+path.8=6/classes.dex
+path.9=9/classes.dex
+renamed.0=classes.dex
+renamed.1=classes2.dex
+renamed.10=classes11.dex
+renamed.11=classes12.dex
+renamed.2=classes3.dex
+renamed.3=classes4.dex
+renamed.4=classes5.dex
+renamed.5=classes6.dex
+renamed.6=classes7.dex
+renamed.7=classes8.dex
+renamed.8=classes9.dex
+renamed.9=classes10.dex
diff --git a/mobile/build/intermediates/incremental/packageFreedomDebug/tmp/freedomDebug/zip-cache/androidResources b/mobile/build/intermediates/incremental/packageFreedomDebug/tmp/freedomDebug/zip-cache/androidResources
new file mode 100644
index 00000000..a5b6af61
Binary files /dev/null and b/mobile/build/intermediates/incremental/packageFreedomDebug/tmp/freedomDebug/zip-cache/androidResources differ
diff --git a/mobile/build/intermediates/incremental/packageFreedomDebug/tmp/freedomDebug/zip-cache/javaResources0 b/mobile/build/intermediates/incremental/packageFreedomDebug/tmp/freedomDebug/zip-cache/javaResources0
new file mode 100644
index 00000000..a303fb05
Binary files /dev/null and b/mobile/build/intermediates/incremental/packageFreedomDebug/tmp/freedomDebug/zip-cache/javaResources0 differ
diff --git a/mobile/build/intermediates/java_res/freedomDebug/out/META-INF/mobile_freedomDebug.kotlin_module b/mobile/build/intermediates/java_res/freedomDebug/out/META-INF/mobile_freedomDebug.kotlin_module
new file mode 100644
index 00000000..f4784e5d
Binary files /dev/null and b/mobile/build/intermediates/java_res/freedomDebug/out/META-INF/mobile_freedomDebug.kotlin_module differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/androidx/databinding/DataBinderMapperImpl.class b/mobile/build/intermediates/javac/freedomDebug/classes/androidx/databinding/DataBinderMapperImpl.class
new file mode 100644
index 00000000..7035703c
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/androidx/databinding/DataBinderMapperImpl.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/androidx/databinding/DataBindingComponent.class b/mobile/build/intermediates/javac/freedomDebug/classes/androidx/databinding/DataBindingComponent.class
new file mode 100644
index 00000000..d1f518f0
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/androidx/databinding/DataBindingComponent.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/androidx/databinding/library/baseAdapters/BR.class b/mobile/build/intermediates/javac/freedomDebug/classes/androidx/databinding/library/baseAdapters/BR.class
new file mode 100644
index 00000000..392217c1
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/androidx/databinding/library/baseAdapters/BR.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/BR.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/BR.class
new file mode 100644
index 00000000..8875f8aa
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/BR.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/BuildConfig.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/BuildConfig.class
new file mode 100644
index 00000000..559396fa
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/BuildConfig.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl$InnerBrLookup.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl$InnerBrLookup.class
new file mode 100644
index 00000000..5001fb86
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl$InnerBrLookup.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl$InnerLayoutIdLookup.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl$InnerLayoutIdLookup.class
new file mode 100644
index 00000000..a9cd15c3
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl$InnerLayoutIdLookup.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl.class
new file mode 100644
index 00000000..26ea031e
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/DataBindingTriggerClass.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/DataBindingTriggerClass.class
new file mode 100644
index 00000000..f555f752
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/DataBindingTriggerClass.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ActivityMainBinding.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ActivityMainBinding.class
new file mode 100644
index 00000000..29770fa5
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ActivityMainBinding.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/DialogWifiApBinding.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/DialogWifiApBinding.class
new file mode 100644
index 00000000..0b38ae47
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/DialogWifiApBinding.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/FragmentClientsBinding.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/FragmentClientsBinding.class
new file mode 100644
index 00000000..6f5b761a
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/FragmentClientsBinding.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/FragmentEbegBinding.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/FragmentEbegBinding.class
new file mode 100644
index 00000000..f7c86720
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/FragmentEbegBinding.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/FragmentTetheringBinding.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/FragmentTetheringBinding.class
new file mode 100644
index 00000000..b7c44a1f
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/FragmentTetheringBinding.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBinding.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBinding.class
new file mode 100644
index 00000000..32e97f52
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBinding.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBindingImpl.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBindingImpl.class
new file mode 100644
index 00000000..78e3020b
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBindingImpl.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBinding.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBinding.class
new file mode 100644
index 00000000..82fae54f
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBinding.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBindingImpl.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBindingImpl.class
new file mode 100644
index 00000000..fde32fe4
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBindingImpl.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBinding.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBinding.class
new file mode 100644
index 00000000..4a8171db
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBinding.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBindingImpl.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBindingImpl.class
new file mode 100644
index 00000000..b4240788
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBindingImpl.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBinding.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBinding.class
new file mode 100644
index 00000000..0ce2ac5b
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBinding.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBindingImpl.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBindingImpl.class
new file mode 100644
index 00000000..bad22de7
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBindingImpl.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/PreferenceMaterialBinding.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/PreferenceMaterialBinding.class
new file mode 100644
index 00000000..39891c03
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/PreferenceMaterialBinding.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetEdittextAutocompleteBinding.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetEdittextAutocompleteBinding.class
new file mode 100644
index 00000000..57bc0017
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetEdittextAutocompleteBinding.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetMaterialSwitchBinding.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetMaterialSwitchBinding.class
new file mode 100644
index 00000000..d0114b5c
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetMaterialSwitchBinding.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener$Listener.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener$Listener.class
new file mode 100644
index 00000000..a5599afb
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener$Listener.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener.class
new file mode 100644
index 00000000..4a17b4b3
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl$1.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl$1.class
new file mode 100644
index 00000000..ff483b9a
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl$1.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl.class
new file mode 100644
index 00000000..ab83baf2
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$1.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$1.class
new file mode 100644
index 00000000..f93176d1
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$1.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$2.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$2.class
new file mode 100644
index 00000000..8db40438
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$2.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$3.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$3.class
new file mode 100644
index 00000000..7721c8b3
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$3.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$4.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$4.class
new file mode 100644
index 00000000..e5e874d6
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$4.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl.class
new file mode 100644
index 00000000..f5cb5c6f
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl$1.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl$1.class
new file mode 100644
index 00000000..e3dbafd4
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl$1.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl$2.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl$2.class
new file mode 100644
index 00000000..1f453133
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl$2.class differ
diff --git a/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl.class b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl.class
new file mode 100644
index 00000000..5952aa6c
Binary files /dev/null and b/mobile/build/intermediates/javac/freedomDebug/classes/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl.class differ
diff --git a/mobile/build/intermediates/local_only_symbol_list/freedomDebug/R-def.txt b/mobile/build/intermediates/local_only_symbol_list/freedomDebug/R-def.txt
new file mode 100644
index 00000000..d769f3a0
--- /dev/null
+++ b/mobile/build/intermediates/local_only_symbol_list/freedomDebug/R-def.txt
@@ -0,0 +1,360 @@
+R_DEF: Internal format may change without notice
+local
+array settings_service_ip_monitor
+array settings_service_ip_monitor_values
+array settings_service_masquerade
+array settings_service_masquerade_values
+array settings_service_wifi_lock
+array settings_service_wifi_lock_values
+array wifi_mac_randomization
+bool api_ge_30
+bool is_day
+color colorPrimary
+color colorPrimaryDark
+color colorSecondary
+color dark_colorPrimary
+color light_colorPrimary
+color navigationBarColor
+dimen listitem_manage_tether_padding_start
+dimen qrcode_size
+dimen touch_target_min
+drawable ic_action_autorenew
+drawable ic_action_bug_report
+drawable ic_action_build
+drawable ic_action_card_giftcard
+drawable ic_action_code
+drawable ic_action_perm_scan_wifi
+drawable ic_action_settings
+drawable ic_action_settings_backup_restore
+drawable ic_action_settings_ethernet
+drawable ic_action_settings_input_antenna
+drawable ic_action_settings_input_component
+drawable ic_action_update
+drawable ic_action_wifi_protected_setup
+drawable ic_alert_warning
+drawable ic_av_closed_caption
+drawable ic_av_closed_caption_off
+drawable ic_content_add
+drawable ic_content_file_copy
+drawable ic_content_inbox
+drawable ic_device_battery_charging_full
+drawable ic_device_bluetooth
+drawable ic_device_devices
+drawable ic_device_network_wifi
+drawable ic_device_usb
+drawable ic_device_wifi_lock
+drawable ic_device_wifi_tethering
+drawable ic_file_downloading
+drawable ic_hardware_device_hub
+drawable ic_image_flash_on
+drawable ic_image_looks_6
+drawable ic_image_remove_red_eye
+drawable ic_launcher_background
+drawable ic_launcher_foreground
+drawable ic_launcher_monochrome
+drawable ic_quick_settings_tile_on
+drawable ic_settings_qrcode
+drawable ic_social_people
+drawable ic_toggle_star
+drawable toggle_hex
+id access_control_group
+id acs_2g
+id acs_2g_wrapper
+id acs_5g
+id acs_5g_wrapper
+id acs_6g
+id acs_6g_wrapper
+id addresses
+id advanced_ap_group
+id allowed_list
+id allowed_list_wrapper
+id auto_shutdown
+id band_error
+id band_group
+id band_primary
+id band_secondary
+id block
+id blocked_list
+id blocked_list_wrapper
+id bridged_mode_opportunistic_shutdown
+id bridged_timeout
+id bridged_timeout_wrapper
+id bssid
+id bssid_wrapper
+id client_user_control
+id clients
+id configuration
+id configuration_ap
+id configuration_repeater
+id configuration_temp_hotspot
+id description
+id donations__google
+id donations__google_android_market_donate_button
+id donations__google_android_market_spinner
+id donations__more_donate_button
+id fragmentHolder
+id hidden_ssid
+id ieee_80211ax
+id ieee_80211be
+id interfaces
+id invalid
+id mac_randomization
+id mac_randomization_wrapper
+id max_channel_bandwidth
+id max_channel_bandwidth_error
+id max_channel_bandwidth_wrapper
+id max_client
+id max_client_wrapper
+id monitor
+id navigation
+id navigation_clients
+id navigation_settings
+id navigation_tethering
+id navigation_update
+id nickname
+id offloadEnabled
+id password
+id password_wrapper
+id persistent_randomized_mac
+id persistent_randomized_mac_wrapper
+id security
+id security_wrapper
+id share_qr
+id ssid
+id ssid_wrapper
+id stats
+id swipeRefresher
+id switchWidget
+id text
+id timeout
+id timeout_wrapper
+id toolbar
+id unblock
+id user_config
+id vendor_elements
+id vendor_elements_wrapper
+layout activity_main
+layout dialog_nickname
+layout dialog_wifi_ap
+layout dialog_wps
+layout fragment_clients
+layout fragment_ebeg
+layout fragment_tethering
+layout listitem_client
+layout listitem_interface
+layout listitem_manage
+layout listitem_repeater
+layout preference_material
+layout preference_widget_edittext_autocomplete
+layout preference_widget_material_switch
+menu navigation
+menu popup_client
+menu toolbar_configuration
+menu toolbar_tethering
+mipmap banner
+mipmap ic_launcher
+plurals clients_stats_message_1
+plurals clients_stats_message_2
+plurals clients_stats_message_3
+plurals notification_connected_devices
+plurals notification_interfaces
+plurals quick_settings_hotspot_secondary_label_num_devices
+plurals tethering_manage_wifi_capabilities
+plurals tethering_manage_wifi_clients
+raw third_party_license_metadata
+raw third_party_licenses
+string app_name
+string clients_mac_lookup_unexpected_error
+string clients_nickname_set_to_vendor
+string clients_nickname_title
+string clients_popup_block
+string clients_popup_block_service_inactive
+string clients_popup_nickname
+string clients_popup_stats
+string clients_popup_unblock
+string clients_stats_title
+string com.google.firebase.crashlytics.mapping_file_id
+string configuration_invalid
+string configuration_rejected
+string configuration_share
+string configuration_view
+string connected_state_failed
+string connected_state_incomplete
+string connected_state_valid
+string default_web_client_id
+string donations__button_close
+string donations__description
+string donations__google_android_market
+string donations__google_android_market_description
+string donations__google_android_market_donate_button
+string donations__google_android_market_not_supported
+string donations__google_android_market_text
+string donations__thanks_dialog
+string exception_interface_not_found
+string failure_reason_unknown
+string firebase_database_url
+string gcm_defaultSenderId
+string google_api_key
+string google_app_id
+string google_crash_reporting_api_key
+string google_storage_bucket
+string noisy_su_failure
+string notification_channel_monitor
+string notification_channel_tethering
+string notification_interfaces_inactive
+string notification_tethering_title
+string permission_missing
+string project_id
+string repeater_channel
+string repeater_clean_pog_failure
+string repeater_configure_failure
+string repeater_create_group_failure
+string repeater_failure_disconnected
+string repeater_failure_reason_error
+string repeater_failure_reason_no_service_requests
+string repeater_failure_reason_p2p_unsupported
+string repeater_failure_reason_unsupported_operation
+string repeater_location_off
+string repeater_location_off_configure
+string repeater_missing_location_permissions
+string repeater_p2p_unavailable
+string repeater_p2p_unavailable_enable
+string repeater_remove_group_failure
+string repeater_remove_old_group_failure
+string repeater_set_oc_failure
+string repeater_set_vendor_elements_failure
+string repeater_wps
+string repeater_wps_dialog_pbc
+string repeater_wps_dialog_title
+string repeater_wps_failure
+string repeater_wps_success_keypad
+string repeater_wps_success_pbc
+string settings_downstream
+string settings_exit_app
+string settings_help
+string settings_misc
+string settings_misc_donate
+string settings_misc_donate_more
+string settings_misc_donate_summary
+string settings_misc_logcat
+string settings_misc_logcat_summary
+string settings_misc_source
+string settings_misc_source_summary
+string settings_restart_required
+string settings_service_auto_start
+string settings_service_auto_start_summary
+string settings_service_clean
+string settings_service_clean_summary
+string settings_service_dhcp_workaround
+string settings_service_dhcp_workaround_summary
+string settings_service_disable_ipv6
+string settings_service_disable_ipv6_summary
+string settings_service_ip_monitor
+string settings_service_ip_monitor_monitor
+string settings_service_ip_monitor_monitor_root
+string settings_service_ip_monitor_poll
+string settings_service_ip_monitor_poll_root
+string settings_service_masquerade
+string settings_service_masquerade_netd
+string settings_service_masquerade_none
+string settings_service_masquerade_simple
+string settings_service_repeater_safe_mode
+string settings_service_repeater_safe_mode_summary
+string settings_service_repeater_safe_mode_warning
+string settings_service_temp_hotspot_use_system
+string settings_service_temp_hotspot_use_system_summary
+string settings_service_upstream
+string settings_service_upstream_auto
+string settings_service_upstream_monitor
+string settings_service_upstream_monitor_summary
+string settings_service_wifi_lock
+string settings_service_wifi_lock_full
+string settings_service_wifi_lock_high_perf
+string settings_service_wifi_lock_high_perf_v29
+string settings_service_wifi_lock_low_latency
+string settings_service_wifi_lock_none
+string settings_system_tether_offload
+string settings_system_tether_offload_summary
+string settings_upstream
+string settings_upstream_fallback
+string settings_upstream_fallback_auto
+string tethering_location_off
+string tethering_manage
+string tethering_manage_bluetooth
+string tethering_manage_ethernet
+string tethering_manage_ncm
+string tethering_manage_offload_enabled
+string tethering_manage_usb
+string tethering_manage_wifi
+string tethering_manage_wifi_client_blocked
+string tethering_manage_wifi_copy_mac
+string tethering_manage_wifi_country_code
+string tethering_manage_wifi_feature_ap_mac_randomization
+string tethering_manage_wifi_feature_bridged_ap_concurrency
+string tethering_manage_wifi_feature_sta_ap_concurrency
+string tethering_manage_wifi_feature_sta_bridged_ap_concurrency
+string tethering_manage_wifi_info
+string tethering_manage_wifi_info_timeout_disabled
+string tethering_manage_wifi_info_timeout_enabled
+string tethering_manage_wifi_no_features
+string tethering_manage_wifi_supported_channels
+string tethering_monitor
+string tethering_state_monitored
+string tethering_temp_hotspot
+string tethering_temp_hotspot_failure
+string tethering_temp_hotspot_failure_generic
+string tethering_temp_hotspot_failure_incompatible_mode
+string tethering_temp_hotspot_failure_no_channel
+string tethering_temp_hotspot_failure_tethering_disallowed
+string title_clients
+string title_repeater
+string title_settings
+string title_tethering
+string title_update
+string wifi_advanced_mac_address_persistent_randomized
+string wifi_advanced_mac_address_title
+string wifi_allowed_list
+string wifi_ap_choose_G
+string wifi_ap_choose_disabled
+string wifi_blocked_list
+string wifi_bridged_mode_opportunistic_shutdown
+string wifi_client_user_control
+string wifi_hidden_network
+string wifi_hotspot_access_control_title
+string wifi_hotspot_acs_channel_2g
+string wifi_hotspot_acs_channel_5g
+string wifi_hotspot_acs_channel_6g
+string wifi_hotspot_ap_advanced_title
+string wifi_hotspot_ap_band_title
+string wifi_hotspot_auto_off
+string wifi_hotspot_max_channel_bandwidth
+string wifi_hotspot_timeout
+string wifi_hotspot_timeout_bridged
+string wifi_hotspot_timeout_default
+string wifi_ieee_80211ax
+string wifi_ieee_80211be
+string wifi_mac_randomization
+string wifi_mac_randomization_non_persistent
+string wifi_mac_randomization_none
+string wifi_mac_randomization_persistent
+string wifi_max_clients
+string wifi_password
+string wifi_save
+string wifi_security
+string wifi_ssid
+string wifi_ssid_toggle_hex
+string wifi_user_config
+string wifi_vendor_elements
+style AppTheme
+style AppTheme.ActionBar
+style AppTheme.Preference.MaterialSwitchPreference
+style wifi_item
+style wifi_item_content
+style wifi_item_divider
+style wifi_item_edit_content
+style wifi_item_label
+style wifi_item_subhead
+xml locales_config
+xml log_paths
+xml no_backup
+xml pref_settings
diff --git a/mobile/build/intermediates/manifest_merge_blame_file/freedomDebug/manifest-merger-blame-freedom-debug-report.txt b/mobile/build/intermediates/manifest_merge_blame_file/freedomDebug/manifest-merger-blame-freedom-debug-report.txt
new file mode 100644
index 00000000..3dd18261
--- /dev/null
+++ b/mobile/build/intermediates/manifest_merge_blame_file/freedomDebug/manifest-merger-blame-freedom-debug-report.txt
@@ -0,0 +1,794 @@
+1
+2
+6
+7
+10
+11 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:5:5-7:35
+12 android:name="android.hardware.bluetooth"
+12-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:6:9-50
+13 android:required="false" />
+13-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:7:9-33
+14 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:8:5-10:35
+15 android:name="android.hardware.ethernet"
+15-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:9:9-49
+16 android:required="false" />
+16-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:10:9-33
+17 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:11:5-13:35
+18 android:name="android.hardware.touchscreen"
+18-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:12:9-52
+19 android:required="false" />
+19-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:13:9-33
+20 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:14:5-16:35
+21 android:name="android.hardware.usb.accessory"
+21-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:15:9-54
+22 android:required="false" />
+22-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:16:9-33
+23 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:17:5-19:35
+24 android:name="android.hardware.wifi"
+24-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:18:9-45
+25 android:required="false" />
+25-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:19:9-33
+26 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:20:5-22:35
+27 android:name="android.hardware.wifi.direct"
+27-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:21:9-52
+28 android:required="false" />
+28-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:22:9-33
+29 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:23:5-25:35
+30 android:name="android.software.leanback"
+30-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:24:9-49
+31 android:required="false" />
+31-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:25:9-33
+32
+33
+33-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:27:5-78
+33-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:27:22-76
+34
+34-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:28:5-75
+34-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:28:22-73
+35
+35-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:29:5-67
+35-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:29:22-65
+36
+36-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:30:5-73
+36-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:30:22-71
+37
+37-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:31:5-75
+37-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:31:22-73
+38
+38-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:32:5-78
+38-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:32:22-76
+39
+39-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:33:5-75
+39-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:33:22-73
+40
+40-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:34:5-76
+40-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:34:22-74
+41
+41-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:35:5-93
+41-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:35:22-91
+42
+42-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:36:5-66
+42-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:36:22-64
+43
+43-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:37:5-38:60
+43-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:37:22-73
+44
+44-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:39:5-40:59
+44-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:39:22-66
+45 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:41:5-42:70
+46 android:name="android.permission.NEARBY_WIFI_DEVICES"
+46-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:41:22-75
+47 android:usesPermissionFlags="neverForLocation" />
+47-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:42:22-68
+48
+48-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:43:5-44:59
+48-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:43:22-76
+49
+49-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:45:5-76
+49-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:45:22-74
+50
+50-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:46:5-47:59
+50-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:46:22-76
+51
+51-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:48:5-80
+51-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:48:22-78
+52
+52-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:49:5-50:59
+52-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:49:22-73
+53
+53-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:51:5-67
+53-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:51:22-65
+54
+54-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:52:5-53:59
+54-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:52:22-77
+55
+55-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:54:5-55:59
+55-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:54:22-70
+56
+57 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:56:5-57:57
+58 android:name="android.permission.ACCESS_COARSE_LOCATION"
+58-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:56:29-85
+59 android:maxSdkVersion="32" />
+59-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:57:29-55
+60 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:58:5-59:57
+61 android:name="android.permission.ACCESS_FINE_LOCATION"
+61-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:58:29-83
+62 android:maxSdkVersion="32" />
+62-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:59:29-55
+63
+64
+64-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:61:5-71:15
+65
+65-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:62:9-64:18
+66
+66-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:63:13-70
+66-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:63:21-67
+67
+68
+68-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:65:9-67:18
+69
+69-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:66:13-80
+69-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:66:21-77
+70
+71
+71-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:68:9-70:18
+72
+72-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:69:13-103
+72-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:69:21-100
+73
+74
+74-->[com.android.billingclient:billing:6.1.0] /home/brian/.gradle/caches/transforms-3/0f524de6fa4b9def74bc5e789d94a083/transformed/jetified-billing-6.1.0/AndroidManifest.xml:13:9-15:18
+75
+75-->[com.android.billingclient:billing:6.1.0] /home/brian/.gradle/caches/transforms-3/0f524de6fa4b9def74bc5e789d94a083/transformed/jetified-billing-6.1.0/AndroidManifest.xml:14:13-91
+75-->[com.android.billingclient:billing:6.1.0] /home/brian/.gradle/caches/transforms-3/0f524de6fa4b9def74bc5e789d94a083/transformed/jetified-billing-6.1.0/AndroidManifest.xml:14:21-88
+76
+77
+78
+79
+79-->[com.android.billingclient:billing-ktx:6.1.0] /home/brian/.gradle/caches/transforms-3/4db05a164fa35b20496706c7f555f8b8/transformed/jetified-billing-ktx-6.1.0/AndroidManifest.xml:9:5-67
+79-->[com.android.billingclient:billing-ktx:6.1.0] /home/brian/.gradle/caches/transforms-3/4db05a164fa35b20496706c7f555f8b8/transformed/jetified-billing-ktx-6.1.0/AndroidManifest.xml:9:22-64
+80
+80-->[com.google.android.gms:play-services-measurement-api:21.5.0] /home/brian/.gradle/caches/transforms-3/bfa8d3ea47577de6603ddefe08958fe5/transformed/jetified-play-services-measurement-api-21.5.0/AndroidManifest.xml:25:5-79
+80-->[com.google.android.gms:play-services-measurement-api:21.5.0] /home/brian/.gradle/caches/transforms-3/bfa8d3ea47577de6603ddefe08958fe5/transformed/jetified-play-services-measurement-api-21.5.0/AndroidManifest.xml:25:22-76
+81
+81-->[com.google.android.gms:play-services-measurement-api:21.5.0] /home/brian/.gradle/caches/transforms-3/bfa8d3ea47577de6603ddefe08958fe5/transformed/jetified-play-services-measurement-api-21.5.0/AndroidManifest.xml:26:5-88
+81-->[com.google.android.gms:play-services-measurement-api:21.5.0] /home/brian/.gradle/caches/transforms-3/bfa8d3ea47577de6603ddefe08958fe5/transformed/jetified-play-services-measurement-api-21.5.0/AndroidManifest.xml:26:22-85
+82
+82-->[com.google.android.gms:play-services-measurement-api:21.5.0] /home/brian/.gradle/caches/transforms-3/bfa8d3ea47577de6603ddefe08958fe5/transformed/jetified-play-services-measurement-api-21.5.0/AndroidManifest.xml:27:5-82
+82-->[com.google.android.gms:play-services-measurement-api:21.5.0] /home/brian/.gradle/caches/transforms-3/bfa8d3ea47577de6603ddefe08958fe5/transformed/jetified-play-services-measurement-api-21.5.0/AndroidManifest.xml:27:22-79
+83
+83-->[com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:26:5-110
+83-->[com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:26:22-107
+84
+85 [androidx.core:core:1.12.0] /home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/AndroidManifest.xml:22:5-24:47
+86 android:name="hanson.xyz.vpnhotspotmod.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
+86-->[androidx.core:core:1.12.0] /home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/AndroidManifest.xml:23:9-81
+87 android:protectionLevel="signature" />
+87-->[androidx.core:core:1.12.0] /home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/AndroidManifest.xml:24:9-44
+88
+89
+89-->[androidx.core:core:1.12.0] /home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/AndroidManifest.xml:26:5-97
+89-->[androidx.core:core:1.12.0] /home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/AndroidManifest.xml:26:22-94
+90
+91 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:73:5-245:19
+92 android:name="hanson.xyz.vpnhotspotmod.App"
+92-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:74:9-28
+93 android:allowBackup="false"
+93-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:75:9-36
+94 android:appComponentFactory="androidx.core.app.CoreComponentFactory"
+94-->[androidx.core:core:1.12.0] /home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/AndroidManifest.xml:28:18-86
+95 android:banner="@mipmap/banner"
+95-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:78:9-40
+96 android:dataExtractionRules="@xml/no_backup"
+96-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:76:9-53
+97 android:debuggable="true"
+98 android:enableOnBackInvokedCallback="true"
+98-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:82:9-51
+99 android:extractNativeLibs="false"
+100 android:hasFragileUserData="true"
+100-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:79:9-42
+101 android:icon="@mipmap/ic_launcher"
+101-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:80:9-43
+102 android:label="@string/app_name"
+102-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:77:9-41
+103 android:localeConfig="@xml/locales_config"
+103-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:81:9-51
+104 android:supportsRtl="true"
+104-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:83:9-35
+105 android:theme="@style/AppTheme" >
+105-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:84:9-40
+106 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:87:9-101:20
+107 android:name="hanson.xyz.vpnhotspotmod.MainActivity"
+107-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:88:13-41
+108 android:exported="true"
+108-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:89:13-36
+109 android:launchMode="singleTask"
+109-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:90:13-44
+110 android:windowSoftInputMode="stateAlwaysHidden" >
+110-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:91:13-60
+111
+111-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:92:13-97:29
+112
+112-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:93:17-68
+112-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:93:25-66
+113
+114
+114-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:95:17-76
+114-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:95:27-74
+115
+115-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:96:17-85
+115-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:96:27-83
+116
+117
+117-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:98:13-100:29
+118
+118-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:99:17-99
+118-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:99:25-96
+119
+120
+121
+122 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:103:9-107:57
+123 android:name="hanson.xyz.vpnhotspotmod.LocalOnlyHotspotService"
+123-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:104:13-52
+124 android:directBootAware="true"
+124-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:105:13-43
+125 android:foregroundServiceType="location|connectedDevice" />
+125-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:106:13-69
+126 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:108:9-112:57
+127 android:name="hanson.xyz.vpnhotspotmod.RepeaterService"
+127-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:109:13-44
+128 android:directBootAware="true"
+128-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:110:13-43
+129 android:foregroundServiceType="location|connectedDevice" />
+129-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:111:13-69
+130 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:113:9-116:62
+131 android:name="hanson.xyz.vpnhotspotmod.TetheringService"
+131-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:114:13-45
+132 android:directBootAware="true"
+132-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:115:13-43
+133 android:foregroundServiceType="connectedDevice" />
+133-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:116:13-60
+134 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:118:9-131:19
+135 android:name="hanson.xyz.vpnhotspotmod.manage.RepeaterTileService"
+135-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:119:13-55
+136 android:directBootAware="true"
+136-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:120:13-43
+137 android:exported="true"
+137-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:121:13-36
+138 android:icon="@drawable/ic_action_settings_input_antenna"
+138-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:122:13-70
+139 android:label="@string/title_repeater"
+139-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:123:13-51
+140 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" >
+140-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:124:13-77
+141
+141-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:125:13-127:29
+142
+142-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:126:17-87
+142-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:126:25-84
+143
+144
+145 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:128:13-130:40
+146 android:name="android.service.quicksettings.TOGGLEABLE_TILE"
+146-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:129:17-77
+147 android:value="true" />
+147-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:130:17-37
+148
+149 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:132:9-145:19
+150 android:name="hanson.xyz.vpnhotspotmod.manage.LocalOnlyHotspotTileService"
+150-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:133:13-63
+151 android:directBootAware="true"
+151-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:134:13-43
+152 android:exported="true"
+152-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:135:13-36
+153 android:icon="@drawable/ic_action_perm_scan_wifi"
+153-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:136:13-62
+154 android:label="@string/tethering_temp_hotspot"
+154-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:137:13-59
+155 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" >
+155-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:138:13-77
+156
+156-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:125:13-127:29
+157
+157-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:126:17-87
+157-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:126:25-84
+158
+159
+160 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:128:13-130:40
+161 android:name="android.service.quicksettings.TOGGLEABLE_TILE"
+161-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:129:17-77
+162 android:value="true" />
+162-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:130:17-37
+163
+164 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:146:9-159:19
+165 android:name="hanson.xyz.vpnhotspotmod.manage.TetheringTileService$Wifi"
+165-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:147:13-61
+166 android:directBootAware="true"
+166-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:148:13-43
+167 android:exported="true"
+167-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:149:13-36
+168 android:icon="@drawable/ic_device_wifi_tethering"
+168-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:150:13-62
+169 android:label="@string/tethering_manage_wifi"
+169-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:151:13-58
+170 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" >
+170-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:152:13-77
+171
+171-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:125:13-127:29
+172
+172-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:126:17-87
+172-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:126:25-84
+173
+174
+175 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:128:13-130:40
+176 android:name="android.service.quicksettings.TOGGLEABLE_TILE"
+176-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:129:17-77
+177 android:value="true" />
+177-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:130:17-37
+178
+179 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:160:9-173:19
+180 android:name="hanson.xyz.vpnhotspotmod.manage.TetheringTileService$Usb"
+180-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:161:13-60
+181 android:directBootAware="true"
+181-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:162:13-43
+182 android:exported="true"
+182-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:163:13-36
+183 android:icon="@drawable/ic_device_usb"
+183-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:164:13-51
+184 android:label="@string/tethering_manage_usb"
+184-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:165:13-57
+185 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" >
+185-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:166:13-77
+186
+186-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:125:13-127:29
+187
+187-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:126:17-87
+187-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:126:25-84
+188
+189
+190 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:128:13-130:40
+191 android:name="android.service.quicksettings.TOGGLEABLE_TILE"
+191-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:129:17-77
+192 android:value="true" />
+192-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:130:17-37
+193
+194 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:174:9-187:19
+195 android:name="hanson.xyz.vpnhotspotmod.manage.TetheringTileService$Bluetooth"
+195-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:175:13-66
+196 android:directBootAware="true"
+196-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:176:13-43
+197 android:exported="true"
+197-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:177:13-36
+198 android:icon="@drawable/ic_device_bluetooth"
+198-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:178:13-57
+199 android:label="@string/tethering_manage_bluetooth"
+199-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:179:13-63
+200 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" >
+200-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:180:13-77
+201
+201-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:125:13-127:29
+202
+202-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:126:17-87
+202-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:126:25-84
+203
+204
+205 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:128:13-130:40
+206 android:name="android.service.quicksettings.TOGGLEABLE_TILE"
+206-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:129:17-77
+207 android:value="true" />
+207-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:130:17-37
+208
+209 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:188:9-203:19
+210 android:name="hanson.xyz.vpnhotspotmod.manage.TetheringTileService$Ethernet"
+210-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:189:13-65
+211 android:directBootAware="true"
+211-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:190:13-43
+212 android:enabled="@bool/api_ge_30"
+212-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:191:13-46
+213 android:exported="true"
+213-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:192:13-36
+214 android:icon="@drawable/ic_content_inbox"
+214-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:193:13-54
+215 android:label="@string/tethering_manage_ethernet"
+215-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:194:13-62
+216 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" >
+216-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:195:13-77
+217
+217-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:125:13-127:29
+218
+218-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:126:17-87
+218-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:126:25-84
+219
+220
+221 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:128:13-130:40
+222 android:name="android.service.quicksettings.TOGGLEABLE_TILE"
+222-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:129:17-77
+223 android:value="true" />
+223-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:130:17-37
+224
+225
+226 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:205:9-215:20
+227 android:name="hanson.xyz.vpnhotspotmod.BootReceiver"
+227-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:206:13-41
+228 android:directBootAware="true"
+228-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:207:13-43
+229 android:enabled="false"
+229-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:208:13-36
+230 android:exported="true" >
+230-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:209:13-36
+231
+231-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:210:13-214:29
+232
+232-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:211:17-78
+232-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:211:25-76
+233
+233-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:212:17-86
+233-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:212:25-83
+234
+234-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:213:17-84
+234-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:213:25-81
+235
+236
+237 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:217:9-224:20
+238 android:name="hanson.xyz.vpnhotspotmod.MyBroadcastReceiver"
+238-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:217:19-54
+239 android:exported="true" >
+239-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:217:55-78
+240
+240-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:218:13-223:29
+241
+241-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:219:17-85
+241-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:219:25-82
+242
+242-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:220:17-84
+242-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:220:25-81
+243
+243-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:221:17-83
+243-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:221:25-80
+244
+244-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:222:17-82
+244-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:222:25-79
+245
+246
+247
+248 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:226:9-234:20
+249 android:name="androidx.core.content.FileProvider"
+249-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:227:13-62
+250 android:authorities="hanson.xyz.vpnhotspotmod.log"
+250-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:228:13-63
+251 android:exported="false"
+251-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:229:13-37
+252 android:grantUriPermissions="true" >
+252-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:230:13-47
+253 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:231:13-233:53
+254 android:name="android.support.FILE_PROVIDER_PATHS"
+254-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:232:17-67
+255 android:resource="@xml/log_paths" />
+255-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:233:17-50
+256
+257
+258 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:236:9-237:62
+259 android:name="com.google.android.gms.oss.licenses.OssLicensesActivity"
+259-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:236:19-89
+260 android:theme="@style/AppTheme.ActionBar" />
+260-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:237:19-60
+261 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:238:9-239:62
+262 android:name="com.google.android.gms.oss.licenses.OssLicensesMenuActivity"
+262-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:238:19-93
+263 android:label="@string/oss_license_title"
+263-->[com.google.android.gms:play-services-oss-licenses:17.0.1] /home/brian/.gradle/caches/transforms-3/e0a8b88020286343a0b41a7733e08913/transformed/jetified-play-services-oss-licenses-17.0.1/AndroidManifest.xml:25:13-54
+264 android:theme="@style/AppTheme.ActionBar" />
+264-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:239:19-60
+265
+266 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:242:9-243:50
+267 android:name="com.google.firebase.components.ComponentDiscoveryService"
+267-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:242:18-89
+268 android:directBootAware="true"
+268-->/home/brian/Desktop/vpnhotspotmod/mobile/src/main/AndroidManifest.xml:243:18-48
+269 android:exported="false" >
+269-->[com.google.firebase:firebase-crashlytics:18.6.0] /home/brian/.gradle/caches/transforms-3/9e143386c62882dbe066b27e43eeb260/transformed/jetified-firebase-crashlytics-18.6.0/AndroidManifest.xml:14:13-37
+270 [com.google.firebase:firebase-crashlytics:18.6.0] /home/brian/.gradle/caches/transforms-3/9e143386c62882dbe066b27e43eeb260/transformed/jetified-firebase-crashlytics-18.6.0/AndroidManifest.xml:15:13-17:85
+271 android:name="com.google.firebase.components:com.google.firebase.crashlytics.FirebaseCrashlyticsKtxRegistrar"
+271-->[com.google.firebase:firebase-crashlytics:18.6.0] /home/brian/.gradle/caches/transforms-3/9e143386c62882dbe066b27e43eeb260/transformed/jetified-firebase-crashlytics-18.6.0/AndroidManifest.xml:16:17-126
+272 android:value="com.google.firebase.components.ComponentRegistrar" />
+272-->[com.google.firebase:firebase-crashlytics:18.6.0] /home/brian/.gradle/caches/transforms-3/9e143386c62882dbe066b27e43eeb260/transformed/jetified-firebase-crashlytics-18.6.0/AndroidManifest.xml:17:17-82
+273 [com.google.firebase:firebase-crashlytics:18.6.0] /home/brian/.gradle/caches/transforms-3/9e143386c62882dbe066b27e43eeb260/transformed/jetified-firebase-crashlytics-18.6.0/AndroidManifest.xml:18:13-20:85
+274 android:name="com.google.firebase.components:com.google.firebase.crashlytics.CrashlyticsRegistrar"
+274-->[com.google.firebase:firebase-crashlytics:18.6.0] /home/brian/.gradle/caches/transforms-3/9e143386c62882dbe066b27e43eeb260/transformed/jetified-firebase-crashlytics-18.6.0/AndroidManifest.xml:19:17-115
+275 android:value="com.google.firebase.components.ComponentRegistrar" />
+275-->[com.google.firebase:firebase-crashlytics:18.6.0] /home/brian/.gradle/caches/transforms-3/9e143386c62882dbe066b27e43eeb260/transformed/jetified-firebase-crashlytics-18.6.0/AndroidManifest.xml:20:17-82
+276 [com.google.firebase:firebase-analytics-ktx:21.5.0] /home/brian/.gradle/caches/transforms-3/badcabb387871b4f271200b45c39e284/transformed/jetified-firebase-analytics-ktx-21.5.0/AndroidManifest.xml:11:13-13:85
+277 android:name="com.google.firebase.components:com.google.firebase.analytics.ktx.FirebaseAnalyticsLegacyRegistrar"
+277-->[com.google.firebase:firebase-analytics-ktx:21.5.0] /home/brian/.gradle/caches/transforms-3/badcabb387871b4f271200b45c39e284/transformed/jetified-firebase-analytics-ktx-21.5.0/AndroidManifest.xml:12:17-129
+278 android:value="com.google.firebase.components.ComponentRegistrar" />
+278-->[com.google.firebase:firebase-analytics-ktx:21.5.0] /home/brian/.gradle/caches/transforms-3/badcabb387871b4f271200b45c39e284/transformed/jetified-firebase-analytics-ktx-21.5.0/AndroidManifest.xml:13:17-82
+279 [com.google.firebase:firebase-sessions:1.2.0] /home/brian/.gradle/caches/transforms-3/33080846229dc5c8c25a245e263cffe4/transformed/jetified-firebase-sessions-1.2.0/AndroidManifest.xml:29:13-31:85
+280 android:name="com.google.firebase.components:com.google.firebase.sessions.FirebaseSessionsRegistrar"
+280-->[com.google.firebase:firebase-sessions:1.2.0] /home/brian/.gradle/caches/transforms-3/33080846229dc5c8c25a245e263cffe4/transformed/jetified-firebase-sessions-1.2.0/AndroidManifest.xml:30:17-117
+281 android:value="com.google.firebase.components.ComponentRegistrar" />
+281-->[com.google.firebase:firebase-sessions:1.2.0] /home/brian/.gradle/caches/transforms-3/33080846229dc5c8c25a245e263cffe4/transformed/jetified-firebase-sessions-1.2.0/AndroidManifest.xml:31:17-82
+282 [com.google.android.gms:play-services-measurement-api:21.5.0] /home/brian/.gradle/caches/transforms-3/bfa8d3ea47577de6603ddefe08958fe5/transformed/jetified-play-services-measurement-api-21.5.0/AndroidManifest.xml:37:13-39:85
+283 android:name="com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar"
+283-->[com.google.android.gms:play-services-measurement-api:21.5.0] /home/brian/.gradle/caches/transforms-3/bfa8d3ea47577de6603ddefe08958fe5/transformed/jetified-play-services-measurement-api-21.5.0/AndroidManifest.xml:38:17-139
+284 android:value="com.google.firebase.components.ComponentRegistrar" />
+284-->[com.google.android.gms:play-services-measurement-api:21.5.0] /home/brian/.gradle/caches/transforms-3/bfa8d3ea47577de6603ddefe08958fe5/transformed/jetified-play-services-measurement-api-21.5.0/AndroidManifest.xml:39:17-82
+285 [com.google.firebase:firebase-installations:17.2.0] /home/brian/.gradle/caches/transforms-3/8c771defaab8df870c9a31f0772a3b95/transformed/jetified-firebase-installations-17.2.0/AndroidManifest.xml:15:13-17:85
+286 android:name="com.google.firebase.components:com.google.firebase.installations.FirebaseInstallationsKtxRegistrar"
+286-->[com.google.firebase:firebase-installations:17.2.0] /home/brian/.gradle/caches/transforms-3/8c771defaab8df870c9a31f0772a3b95/transformed/jetified-firebase-installations-17.2.0/AndroidManifest.xml:16:17-130
+287 android:value="com.google.firebase.components.ComponentRegistrar" />
+287-->[com.google.firebase:firebase-installations:17.2.0] /home/brian/.gradle/caches/transforms-3/8c771defaab8df870c9a31f0772a3b95/transformed/jetified-firebase-installations-17.2.0/AndroidManifest.xml:17:17-82
+288 [com.google.firebase:firebase-installations:17.2.0] /home/brian/.gradle/caches/transforms-3/8c771defaab8df870c9a31f0772a3b95/transformed/jetified-firebase-installations-17.2.0/AndroidManifest.xml:18:13-20:85
+289 android:name="com.google.firebase.components:com.google.firebase.installations.FirebaseInstallationsRegistrar"
+289-->[com.google.firebase:firebase-installations:17.2.0] /home/brian/.gradle/caches/transforms-3/8c771defaab8df870c9a31f0772a3b95/transformed/jetified-firebase-installations-17.2.0/AndroidManifest.xml:19:17-127
+290 android:value="com.google.firebase.components.ComponentRegistrar" />
+290-->[com.google.firebase:firebase-installations:17.2.0] /home/brian/.gradle/caches/transforms-3/8c771defaab8df870c9a31f0772a3b95/transformed/jetified-firebase-installations-17.2.0/AndroidManifest.xml:20:17-82
+291 [com.google.firebase:firebase-common-ktx:20.4.2] /home/brian/.gradle/caches/transforms-3/f23543f34ef23322a4ca36b6ba99a20c/transformed/jetified-firebase-common-ktx-20.4.2/AndroidManifest.xml:12:13-14:85
+292 android:name="com.google.firebase.components:com.google.firebase.ktx.FirebaseCommonLegacyRegistrar"
+292-->[com.google.firebase:firebase-common-ktx:20.4.2] /home/brian/.gradle/caches/transforms-3/f23543f34ef23322a4ca36b6ba99a20c/transformed/jetified-firebase-common-ktx-20.4.2/AndroidManifest.xml:13:17-116
+293 android:value="com.google.firebase.components.ComponentRegistrar" />
+293-->[com.google.firebase:firebase-common-ktx:20.4.2] /home/brian/.gradle/caches/transforms-3/f23543f34ef23322a4ca36b6ba99a20c/transformed/jetified-firebase-common-ktx-20.4.2/AndroidManifest.xml:14:17-82
+294 [com.google.firebase:firebase-common:20.4.2] /home/brian/.gradle/caches/transforms-3/e39a4a9589f30da3f24b063cc7322b4e/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:35:13-37:85
+295 android:name="com.google.firebase.components:com.google.firebase.FirebaseCommonKtxRegistrar"
+295-->[com.google.firebase:firebase-common:20.4.2] /home/brian/.gradle/caches/transforms-3/e39a4a9589f30da3f24b063cc7322b4e/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:36:17-109
+296 android:value="com.google.firebase.components.ComponentRegistrar" />
+296-->[com.google.firebase:firebase-common:20.4.2] /home/brian/.gradle/caches/transforms-3/e39a4a9589f30da3f24b063cc7322b4e/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:37:17-82
+297 [com.google.firebase:firebase-datatransport:18.1.8] /home/brian/.gradle/caches/transforms-3/94475e76afcb2f283212f89dff6b1fc1/transformed/jetified-firebase-datatransport-18.1.8/AndroidManifest.xml:27:13-29:85
+298 android:name="com.google.firebase.components:com.google.firebase.datatransport.TransportRegistrar"
+298-->[com.google.firebase:firebase-datatransport:18.1.8] /home/brian/.gradle/caches/transforms-3/94475e76afcb2f283212f89dff6b1fc1/transformed/jetified-firebase-datatransport-18.1.8/AndroidManifest.xml:28:17-115
+299 android:value="com.google.firebase.components.ComponentRegistrar" />
+299-->[com.google.firebase:firebase-datatransport:18.1.8] /home/brian/.gradle/caches/transforms-3/94475e76afcb2f283212f89dff6b1fc1/transformed/jetified-firebase-datatransport-18.1.8/AndroidManifest.xml:29:17-82
+300
+301
+302 [com.android.billingclient:billing:6.1.0] /home/brian/.gradle/caches/transforms-3/0f524de6fa4b9def74bc5e789d94a083/transformed/jetified-billing-6.1.0/AndroidManifest.xml:19:9-21:37
+303 android:name="com.google.android.play.billingclient.version"
+303-->[com.android.billingclient:billing:6.1.0] /home/brian/.gradle/caches/transforms-3/0f524de6fa4b9def74bc5e789d94a083/transformed/jetified-billing-6.1.0/AndroidManifest.xml:20:13-73
+304 android:value="6.1.0" />
+304-->[com.android.billingclient:billing:6.1.0] /home/brian/.gradle/caches/transforms-3/0f524de6fa4b9def74bc5e789d94a083/transformed/jetified-billing-6.1.0/AndroidManifest.xml:21:13-34
+305
+306 [com.android.billingclient:billing:6.1.0] /home/brian/.gradle/caches/transforms-3/0f524de6fa4b9def74bc5e789d94a083/transformed/jetified-billing-6.1.0/AndroidManifest.xml:23:9-27:75
+307 android:name="com.android.billingclient.api.ProxyBillingActivity"
+307-->[com.android.billingclient:billing:6.1.0] /home/brian/.gradle/caches/transforms-3/0f524de6fa4b9def74bc5e789d94a083/transformed/jetified-billing-6.1.0/AndroidManifest.xml:24:13-78
+308 android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
+308-->[com.android.billingclient:billing:6.1.0] /home/brian/.gradle/caches/transforms-3/0f524de6fa4b9def74bc5e789d94a083/transformed/jetified-billing-6.1.0/AndroidManifest.xml:25:13-96
+309 android:exported="false"
+309-->[com.android.billingclient:billing:6.1.0] /home/brian/.gradle/caches/transforms-3/0f524de6fa4b9def74bc5e789d94a083/transformed/jetified-billing-6.1.0/AndroidManifest.xml:26:13-37
+310 android:theme="@android:style/Theme.Translucent.NoTitleBar" />
+310-->[com.android.billingclient:billing:6.1.0] /home/brian/.gradle/caches/transforms-3/0f524de6fa4b9def74bc5e789d94a083/transformed/jetified-billing-6.1.0/AndroidManifest.xml:27:13-72
+311 [com.google.android.gms:play-services-base:18.2.0] /home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/AndroidManifest.xml:20:9-22:45
+312 android:name="com.google.android.gms.common.api.GoogleApiActivity"
+312-->[com.google.android.gms:play-services-base:18.2.0] /home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/AndroidManifest.xml:20:19-85
+313 android:exported="false"
+313-->[com.google.android.gms:play-services-base:18.2.0] /home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/AndroidManifest.xml:22:19-43
+314 android:theme="@android:style/Theme.Translucent.NoTitleBar" />
+314-->[com.google.android.gms:play-services-base:18.2.0] /home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/AndroidManifest.xml:21:19-78
+315
+316 [com.google.firebase:firebase-sessions:1.2.0] /home/brian/.gradle/caches/transforms-3/33080846229dc5c8c25a245e263cffe4/transformed/jetified-firebase-sessions-1.2.0/AndroidManifest.xml:22:9-25:40
+317 android:name="com.google.firebase.sessions.SessionLifecycleService"
+317-->[com.google.firebase:firebase-sessions:1.2.0] /home/brian/.gradle/caches/transforms-3/33080846229dc5c8c25a245e263cffe4/transformed/jetified-firebase-sessions-1.2.0/AndroidManifest.xml:23:13-80
+318 android:enabled="true"
+318-->[com.google.firebase:firebase-sessions:1.2.0] /home/brian/.gradle/caches/transforms-3/33080846229dc5c8c25a245e263cffe4/transformed/jetified-firebase-sessions-1.2.0/AndroidManifest.xml:24:13-35
+319 android:exported="false" />
+319-->[com.google.firebase:firebase-sessions:1.2.0] /home/brian/.gradle/caches/transforms-3/33080846229dc5c8c25a245e263cffe4/transformed/jetified-firebase-sessions-1.2.0/AndroidManifest.xml:25:13-37
+320
+321 [com.google.android.gms:play-services-measurement-api:21.5.0] /home/brian/.gradle/caches/transforms-3/bfa8d3ea47577de6603ddefe08958fe5/transformed/jetified-play-services-measurement-api-21.5.0/AndroidManifest.xml:30:9-32:61
+322 android:name="android.adservices.AD_SERVICES_CONFIG"
+322-->[com.google.android.gms:play-services-measurement-api:21.5.0] /home/brian/.gradle/caches/transforms-3/bfa8d3ea47577de6603ddefe08958fe5/transformed/jetified-play-services-measurement-api-21.5.0/AndroidManifest.xml:31:13-65
+323 android:resource="@xml/ga_ad_services_config" />
+323-->[com.google.android.gms:play-services-measurement-api:21.5.0] /home/brian/.gradle/caches/transforms-3/bfa8d3ea47577de6603ddefe08958fe5/transformed/jetified-play-services-measurement-api-21.5.0/AndroidManifest.xml:32:13-58
+324
+325 [com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:29:9-33:20
+326 android:name="com.google.android.gms.measurement.AppMeasurementReceiver"
+326-->[com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:30:13-85
+327 android:enabled="true"
+327-->[com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:31:13-35
+328 android:exported="false" >
+328-->[com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:32:13-37
+329
+330
+331 [com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:35:9-38:40
+332 android:name="com.google.android.gms.measurement.AppMeasurementService"
+332-->[com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:36:13-84
+333 android:enabled="true"
+333-->[com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:37:13-35
+334 android:exported="false" />
+334-->[com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:38:13-37
+335 [com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:39:9-43:72
+336 android:name="com.google.android.gms.measurement.AppMeasurementJobService"
+336-->[com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:40:13-87
+337 android:enabled="true"
+337-->[com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:41:13-35
+338 android:exported="false"
+338-->[com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:42:13-37
+339 android:permission="android.permission.BIND_JOB_SERVICE" />
+339-->[com.google.android.gms:play-services-measurement:21.5.0] /home/brian/.gradle/caches/transforms-3/03b4d5ce182c5a0a7127a782d4a22452/transformed/jetified-play-services-measurement-21.5.0/AndroidManifest.xml:43:13-69
+340
+341 [androidx.privacysandbox.ads:ads-adservices:1.0.0-beta05] /home/brian/.gradle/caches/transforms-3/0de0b18de1b209ff76fa9b1fed9366bf/transformed/jetified-ads-adservices-1.0.0-beta05/AndroidManifest.xml:23:9-25:40
+342 android:name="android.ext.adservices"
+342-->[androidx.privacysandbox.ads:ads-adservices:1.0.0-beta05] /home/brian/.gradle/caches/transforms-3/0de0b18de1b209ff76fa9b1fed9366bf/transformed/jetified-ads-adservices-1.0.0-beta05/AndroidManifest.xml:24:13-50
+343 android:required="false" />
+343-->[androidx.privacysandbox.ads:ads-adservices:1.0.0-beta05] /home/brian/.gradle/caches/transforms-3/0de0b18de1b209ff76fa9b1fed9366bf/transformed/jetified-ads-adservices-1.0.0-beta05/AndroidManifest.xml:25:13-37
+344
+345 [com.google.android.gms:play-services-basement:18.1.0] /home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/AndroidManifest.xml:21:9-23:69
+346 android:name="com.google.android.gms.version"
+346-->[com.google.android.gms:play-services-basement:18.1.0] /home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/AndroidManifest.xml:22:13-58
+347 android:value="@integer/google_play_services_version" />
+347-->[com.google.android.gms:play-services-basement:18.1.0] /home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/AndroidManifest.xml:23:13-66
+348
+349 [androidx.window:window:1.0.0] /home/brian/.gradle/caches/transforms-3/eec92cb44c58adbd0a1c3325c5763359/transformed/jetified-window-1.0.0/AndroidManifest.xml:25:9-27:40
+350 android:name="androidx.window.extensions"
+350-->[androidx.window:window:1.0.0] /home/brian/.gradle/caches/transforms-3/eec92cb44c58adbd0a1c3325c5763359/transformed/jetified-window-1.0.0/AndroidManifest.xml:26:13-54
+351 android:required="false" />
+351-->[androidx.window:window:1.0.0] /home/brian/.gradle/caches/transforms-3/eec92cb44c58adbd0a1c3325c5763359/transformed/jetified-window-1.0.0/AndroidManifest.xml:27:13-37
+352 [androidx.window:window:1.0.0] /home/brian/.gradle/caches/transforms-3/eec92cb44c58adbd0a1c3325c5763359/transformed/jetified-window-1.0.0/AndroidManifest.xml:28:9-30:40
+353 android:name="androidx.window.sidecar"
+353-->[androidx.window:window:1.0.0] /home/brian/.gradle/caches/transforms-3/eec92cb44c58adbd0a1c3325c5763359/transformed/jetified-window-1.0.0/AndroidManifest.xml:29:13-51
+354 android:required="false" />
+354-->[androidx.window:window:1.0.0] /home/brian/.gradle/caches/transforms-3/eec92cb44c58adbd0a1c3325c5763359/transformed/jetified-window-1.0.0/AndroidManifest.xml:30:13-37
+355
+356 [androidx.emoji2:emoji2:1.2.0] /home/brian/.gradle/caches/transforms-3/2b6d0d58f9560bd1dd189a818cf2fbc9/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:24:9-32:20
+357 android:name="androidx.startup.InitializationProvider"
+357-->[androidx.emoji2:emoji2:1.2.0] /home/brian/.gradle/caches/transforms-3/2b6d0d58f9560bd1dd189a818cf2fbc9/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:25:13-67
+358 android:authorities="hanson.xyz.vpnhotspotmod.androidx-startup"
+358-->[androidx.emoji2:emoji2:1.2.0] /home/brian/.gradle/caches/transforms-3/2b6d0d58f9560bd1dd189a818cf2fbc9/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:26:13-68
+359 android:exported="false" >
+359-->[androidx.emoji2:emoji2:1.2.0] /home/brian/.gradle/caches/transforms-3/2b6d0d58f9560bd1dd189a818cf2fbc9/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:27:13-37
+360 [androidx.emoji2:emoji2:1.2.0] /home/brian/.gradle/caches/transforms-3/2b6d0d58f9560bd1dd189a818cf2fbc9/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:29:13-31:52
+361 android:name="androidx.emoji2.text.EmojiCompatInitializer"
+361-->[androidx.emoji2:emoji2:1.2.0] /home/brian/.gradle/caches/transforms-3/2b6d0d58f9560bd1dd189a818cf2fbc9/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:30:17-75
+362 android:value="androidx.startup" />
+362-->[androidx.emoji2:emoji2:1.2.0] /home/brian/.gradle/caches/transforms-3/2b6d0d58f9560bd1dd189a818cf2fbc9/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:31:17-49
+363 [androidx.lifecycle:lifecycle-process:2.6.2] /home/brian/.gradle/caches/transforms-3/df3ce53770b3576216b092f2c813efd7/transformed/jetified-lifecycle-process-2.6.2/AndroidManifest.xml:29:13-31:52
+364 android:name="androidx.lifecycle.ProcessLifecycleInitializer"
+364-->[androidx.lifecycle:lifecycle-process:2.6.2] /home/brian/.gradle/caches/transforms-3/df3ce53770b3576216b092f2c813efd7/transformed/jetified-lifecycle-process-2.6.2/AndroidManifest.xml:30:17-78
+365 android:value="androidx.startup" />
+365-->[androidx.lifecycle:lifecycle-process:2.6.2] /home/brian/.gradle/caches/transforms-3/df3ce53770b3576216b092f2c813efd7/transformed/jetified-lifecycle-process-2.6.2/AndroidManifest.xml:31:17-49
+366 [androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:29:13-31:52
+367 android:name="androidx.profileinstaller.ProfileInstallerInitializer"
+367-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:30:17-85
+368 android:value="androidx.startup" />
+368-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:31:17-49
+369
+370
+371 [androidx.room:room-runtime:2.6.1] /home/brian/.gradle/caches/transforms-3/24eac5a3ad2a3a9fcae0710ce88e2e62/transformed/room-runtime-2.6.1/AndroidManifest.xml:24:9-28:63
+372 android:name="androidx.room.MultiInstanceInvalidationService"
+372-->[androidx.room:room-runtime:2.6.1] /home/brian/.gradle/caches/transforms-3/24eac5a3ad2a3a9fcae0710ce88e2e62/transformed/room-runtime-2.6.1/AndroidManifest.xml:25:13-74
+373 android:directBootAware="true"
+373-->[androidx.room:room-runtime:2.6.1] /home/brian/.gradle/caches/transforms-3/24eac5a3ad2a3a9fcae0710ce88e2e62/transformed/room-runtime-2.6.1/AndroidManifest.xml:26:13-43
+374 android:exported="false" />
+374-->[androidx.room:room-runtime:2.6.1] /home/brian/.gradle/caches/transforms-3/24eac5a3ad2a3a9fcae0710ce88e2e62/transformed/room-runtime-2.6.1/AndroidManifest.xml:27:13-37
+375 [com.google.android.datatransport:transport-backend-cct:3.1.9] /home/brian/.gradle/caches/transforms-3/6cfe577539001cf6b07790af85326f26/transformed/jetified-transport-backend-cct-3.1.9/AndroidManifest.xml:28:9-34:19
+376 android:name="com.google.android.datatransport.runtime.backends.TransportBackendDiscovery"
+376-->[com.google.android.datatransport:transport-backend-cct:3.1.9] /home/brian/.gradle/caches/transforms-3/6cfe577539001cf6b07790af85326f26/transformed/jetified-transport-backend-cct-3.1.9/AndroidManifest.xml:29:13-103
+377 android:exported="false" >
+377-->[com.google.android.datatransport:transport-backend-cct:3.1.9] /home/brian/.gradle/caches/transforms-3/6cfe577539001cf6b07790af85326f26/transformed/jetified-transport-backend-cct-3.1.9/AndroidManifest.xml:30:13-37
+378 [com.google.android.datatransport:transport-backend-cct:3.1.9] /home/brian/.gradle/caches/transforms-3/6cfe577539001cf6b07790af85326f26/transformed/jetified-transport-backend-cct-3.1.9/AndroidManifest.xml:31:13-33:39
+379 android:name="backend:com.google.android.datatransport.cct.CctBackendFactory"
+379-->[com.google.android.datatransport:transport-backend-cct:3.1.9] /home/brian/.gradle/caches/transforms-3/6cfe577539001cf6b07790af85326f26/transformed/jetified-transport-backend-cct-3.1.9/AndroidManifest.xml:32:17-94
+380 android:value="cct" />
+380-->[com.google.android.datatransport:transport-backend-cct:3.1.9] /home/brian/.gradle/caches/transforms-3/6cfe577539001cf6b07790af85326f26/transformed/jetified-transport-backend-cct-3.1.9/AndroidManifest.xml:33:17-36
+381
+382 [com.google.android.datatransport:transport-runtime:3.1.9] /home/brian/.gradle/caches/transforms-3/eb5fc1633ba944bfd99f621db79a4a31/transformed/jetified-transport-runtime-3.1.9/AndroidManifest.xml:26:9-30:19
+383 android:name="com.google.android.datatransport.runtime.scheduling.jobscheduling.JobInfoSchedulerService"
+383-->[com.google.android.datatransport:transport-runtime:3.1.9] /home/brian/.gradle/caches/transforms-3/eb5fc1633ba944bfd99f621db79a4a31/transformed/jetified-transport-runtime-3.1.9/AndroidManifest.xml:27:13-117
+384 android:exported="false"
+384-->[com.google.android.datatransport:transport-runtime:3.1.9] /home/brian/.gradle/caches/transforms-3/eb5fc1633ba944bfd99f621db79a4a31/transformed/jetified-transport-runtime-3.1.9/AndroidManifest.xml:28:13-37
+385 android:permission="android.permission.BIND_JOB_SERVICE" >
+385-->[com.google.android.datatransport:transport-runtime:3.1.9] /home/brian/.gradle/caches/transforms-3/eb5fc1633ba944bfd99f621db79a4a31/transformed/jetified-transport-runtime-3.1.9/AndroidManifest.xml:29:13-69
+386
+387
+388 [com.google.android.datatransport:transport-runtime:3.1.9] /home/brian/.gradle/caches/transforms-3/eb5fc1633ba944bfd99f621db79a4a31/transformed/jetified-transport-runtime-3.1.9/AndroidManifest.xml:32:9-34:40
+389 android:name="com.google.android.datatransport.runtime.scheduling.jobscheduling.AlarmManagerSchedulerBroadcastReceiver"
+389-->[com.google.android.datatransport:transport-runtime:3.1.9] /home/brian/.gradle/caches/transforms-3/eb5fc1633ba944bfd99f621db79a4a31/transformed/jetified-transport-runtime-3.1.9/AndroidManifest.xml:33:13-132
+390 android:exported="false" />
+390-->[com.google.android.datatransport:transport-runtime:3.1.9] /home/brian/.gradle/caches/transforms-3/eb5fc1633ba944bfd99f621db79a4a31/transformed/jetified-transport-runtime-3.1.9/AndroidManifest.xml:34:13-37
+391 [androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:34:9-52:20
+392 android:name="androidx.profileinstaller.ProfileInstallReceiver"
+392-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:35:13-76
+393 android:directBootAware="false"
+393-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:36:13-44
+394 android:enabled="true"
+394-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:37:13-35
+395 android:exported="true"
+395-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:38:13-36
+396 android:permission="android.permission.DUMP" >
+396-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:39:13-57
+397
+397-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:40:13-42:29
+398
+398-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:41:17-91
+398-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:41:25-88
+399
+400
+400-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:43:13-45:29
+401
+401-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:44:17-85
+401-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:44:25-82
+402
+403
+403-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:46:13-48:29
+404
+404-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:47:17-88
+404-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:47:25-85
+405
+406
+406-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:49:13-51:29
+407
+407-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:50:17-95
+407-->[androidx.profileinstaller:profileinstaller:1.3.0] /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:50:25-92
+408
+409
+410
+411
+412
diff --git a/mobile/build/intermediates/merged_java_res/freedomDebug/base.jar b/mobile/build/intermediates/merged_java_res/freedomDebug/base.jar
new file mode 100644
index 00000000..a14e9501
Binary files /dev/null and b/mobile/build/intermediates/merged_java_res/freedomDebug/base.jar differ
diff --git a/mobile/build/intermediates/merged_manifest/freedomDebug/AndroidManifest.xml b/mobile/build/intermediates/merged_manifest/freedomDebug/AndroidManifest.xml
new file mode 100644
index 00000000..37174bc7
--- /dev/null
+++ b/mobile/build/intermediates/merged_manifest/freedomDebug/AndroidManifest.xml
@@ -0,0 +1,412 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_manifests/freedomDebug/AndroidManifest.xml b/mobile/build/intermediates/merged_manifests/freedomDebug/AndroidManifest.xml
new file mode 100644
index 00000000..37174bc7
--- /dev/null
+++ b/mobile/build/intermediates/merged_manifests/freedomDebug/AndroidManifest.xml
@@ -0,0 +1,412 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_manifests/freedomDebug/output-metadata.json b/mobile/build/intermediates/merged_manifests/freedomDebug/output-metadata.json
new file mode 100644
index 00000000..1c0c4774
--- /dev/null
+++ b/mobile/build/intermediates/merged_manifests/freedomDebug/output-metadata.json
@@ -0,0 +1,20 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "MERGED_MANIFESTS",
+ "kind": "Directory"
+ },
+ "applicationId": "hanson.xyz.vpnhotspotmod",
+ "variantName": "freedomDebug",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "versionCode": 1005,
+ "versionName": "2.16.5",
+ "outputFile": "AndroidManifest.xml"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_autorenew.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_autorenew.xml.flat
new file mode 100644
index 00000000..693eec1c
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_autorenew.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_bug_report.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_bug_report.xml.flat
new file mode 100644
index 00000000..32ced54e
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_bug_report.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_build.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_build.xml.flat
new file mode 100644
index 00000000..79a77bfa
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_build.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_card_giftcard.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_card_giftcard.xml.flat
new file mode 100644
index 00000000..481faca3
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_card_giftcard.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_code.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_code.xml.flat
new file mode 100644
index 00000000..2687db24
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_code.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_perm_scan_wifi.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_perm_scan_wifi.xml.flat
new file mode 100644
index 00000000..ce828dc5
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_perm_scan_wifi.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings.xml.flat
new file mode 100644
index 00000000..f2c7bba7
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_backup_restore.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_backup_restore.xml.flat
new file mode 100644
index 00000000..1c979ed5
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_backup_restore.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_ethernet.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_ethernet.xml.flat
new file mode 100644
index 00000000..b903ea00
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_ethernet.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_input_antenna.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_input_antenna.xml.flat
new file mode 100644
index 00000000..70e870fb
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_input_antenna.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_input_component.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_input_component.xml.flat
new file mode 100644
index 00000000..94b47f98
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_settings_input_component.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_update.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_update.xml.flat
new file mode 100644
index 00000000..f11e7846
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_update.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_wifi_protected_setup.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_wifi_protected_setup.xml.flat
new file mode 100644
index 00000000..df3b4ee5
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_action_wifi_protected_setup.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_alert_warning.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_alert_warning.xml.flat
new file mode 100644
index 00000000..d1e47675
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_alert_warning.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_av_closed_caption.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_av_closed_caption.xml.flat
new file mode 100644
index 00000000..344e3fa7
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_av_closed_caption.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_av_closed_caption_off.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_av_closed_caption_off.xml.flat
new file mode 100644
index 00000000..b6302614
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_av_closed_caption_off.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_content_add.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_content_add.xml.flat
new file mode 100644
index 00000000..5aafe240
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_content_add.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_content_file_copy.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_content_file_copy.xml.flat
new file mode 100644
index 00000000..8fae5b42
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_content_file_copy.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_content_inbox.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_content_inbox.xml.flat
new file mode 100644
index 00000000..e368df2d
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_content_inbox.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_battery_charging_full.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_battery_charging_full.xml.flat
new file mode 100644
index 00000000..697bbf23
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_battery_charging_full.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_bluetooth.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_bluetooth.xml.flat
new file mode 100644
index 00000000..9927ff56
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_bluetooth.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_devices.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_devices.xml.flat
new file mode 100644
index 00000000..5f6dad35
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_devices.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_network_wifi.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_network_wifi.xml.flat
new file mode 100644
index 00000000..fc06dd13
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_network_wifi.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_usb.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_usb.xml.flat
new file mode 100644
index 00000000..42825959
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_usb.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_wifi_lock.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_wifi_lock.xml.flat
new file mode 100644
index 00000000..3245973d
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_wifi_lock.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_wifi_tethering.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_wifi_tethering.xml.flat
new file mode 100644
index 00000000..8dba575a
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_device_wifi_tethering.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_file_downloading.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_file_downloading.xml.flat
new file mode 100644
index 00000000..42ad8fda
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_file_downloading.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_hardware_device_hub.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_hardware_device_hub.xml.flat
new file mode 100644
index 00000000..b26f5ade
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_hardware_device_hub.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_image_flash_on.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_image_flash_on.xml.flat
new file mode 100644
index 00000000..3c3fb886
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_image_flash_on.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_image_looks_6.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_image_looks_6.xml.flat
new file mode 100644
index 00000000..eb2cac14
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_image_looks_6.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_image_remove_red_eye.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_image_remove_red_eye.xml.flat
new file mode 100644
index 00000000..a09f071f
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_image_remove_red_eye.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_launcher_background.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_launcher_background.xml.flat
new file mode 100644
index 00000000..3e6838f8
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_launcher_background.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_launcher_foreground.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_launcher_foreground.xml.flat
new file mode 100644
index 00000000..8aea8cc7
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_launcher_foreground.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_launcher_monochrome.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_launcher_monochrome.xml.flat
new file mode 100644
index 00000000..8c877c84
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_launcher_monochrome.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_quick_settings_tile_on.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_quick_settings_tile_on.xml.flat
new file mode 100644
index 00000000..af97ec3f
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_quick_settings_tile_on.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_settings_qrcode.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_settings_qrcode.xml.flat
new file mode 100644
index 00000000..0fa5a73f
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_settings_qrcode.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_social_people.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_social_people.xml.flat
new file mode 100644
index 00000000..793a3805
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_social_people.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_toggle_star.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_toggle_star.xml.flat
new file mode 100644
index 00000000..5f46d404
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_ic_toggle_star.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/drawable_toggle_hex.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/drawable_toggle_hex.xml.flat
new file mode 100644
index 00000000..c21caaff
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/drawable_toggle_hex.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_activity_main.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_activity_main.xml.flat
new file mode 100644
index 00000000..0ce7c4b9
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_activity_main.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_dialog_nickname.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_dialog_nickname.xml.flat
new file mode 100644
index 00000000..6533ee3e
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_dialog_nickname.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_dialog_wifi_ap.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_dialog_wifi_ap.xml.flat
new file mode 100644
index 00000000..1d3fd535
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_dialog_wifi_ap.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_dialog_wps.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_dialog_wps.xml.flat
new file mode 100644
index 00000000..464cda52
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_dialog_wps.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_fragment_clients.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_fragment_clients.xml.flat
new file mode 100644
index 00000000..3ac7b2ec
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_fragment_clients.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_fragment_ebeg.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_fragment_ebeg.xml.flat
new file mode 100644
index 00000000..6a46e66a
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_fragment_ebeg.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_fragment_tethering.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_fragment_tethering.xml.flat
new file mode 100644
index 00000000..84cc2158
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_fragment_tethering.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_client.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_client.xml.flat
new file mode 100644
index 00000000..cd1e8c81
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_client.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_interface.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_interface.xml.flat
new file mode 100644
index 00000000..f598be29
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_interface.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_manage.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_manage.xml.flat
new file mode 100644
index 00000000..bc781f25
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_manage.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_repeater.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_repeater.xml.flat
new file mode 100644
index 00000000..d05f2811
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_listitem_repeater.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_preference_material.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_preference_material.xml.flat
new file mode 100644
index 00000000..300e4d56
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_preference_material.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_preference_widget_edittext_autocomplete.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_preference_widget_edittext_autocomplete.xml.flat
new file mode 100644
index 00000000..cafe332f
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_preference_widget_edittext_autocomplete.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/layout_preference_widget_material_switch.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/layout_preference_widget_material_switch.xml.flat
new file mode 100644
index 00000000..e2304949
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/layout_preference_widget_material_switch.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/menu_navigation.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/menu_navigation.xml.flat
new file mode 100644
index 00000000..b2a5eb36
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/menu_navigation.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/menu_popup_client.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/menu_popup_client.xml.flat
new file mode 100644
index 00000000..0e5ccc77
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/menu_popup_client.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/menu_toolbar_configuration.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/menu_toolbar_configuration.xml.flat
new file mode 100644
index 00000000..d785fc24
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/menu_toolbar_configuration.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/menu_toolbar_tethering.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/menu_toolbar_tethering.xml.flat
new file mode 100644
index 00000000..b2805d92
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/menu_toolbar_tethering.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/mipmap_banner.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/mipmap_banner.xml.flat
new file mode 100644
index 00000000..1210d2ce
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/mipmap_banner.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/mipmap_ic_launcher.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/mipmap_ic_launcher.xml.flat
new file mode 100644
index 00000000..cb06d6e3
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/mipmap_ic_launcher.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/raw_third_party_license_metadata.flat b/mobile/build/intermediates/merged_res/freedomDebug/raw_third_party_license_metadata.flat
new file mode 100644
index 00000000..eaffcc09
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/raw_third_party_license_metadata.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/raw_third_party_licenses.flat b/mobile/build/intermediates/merged_res/freedomDebug/raw_third_party_licenses.flat
new file mode 100644
index 00000000..38ca7436
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/raw_third_party_licenses.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-af_values-af.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-af_values-af.arsc.flat
new file mode 100644
index 00000000..ec34c2ae
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-af_values-af.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-am_values-am.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-am_values-am.arsc.flat
new file mode 100644
index 00000000..c62e7044
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-am_values-am.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ar_values-ar.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ar_values-ar.arsc.flat
new file mode 100644
index 00000000..43ae1469
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ar_values-ar.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-as_values-as.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-as_values-as.arsc.flat
new file mode 100644
index 00000000..d309c79f
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-as_values-as.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-az_values-az.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-az_values-az.arsc.flat
new file mode 100644
index 00000000..31da8063
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-az_values-az.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-b+es+419_values-b+es+419.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-b+es+419_values-b+es+419.arsc.flat
new file mode 100644
index 00000000..0c98fadf
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-b+es+419_values-b+es+419.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat
new file mode 100644
index 00000000..e2854c25
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-be_values-be.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-be_values-be.arsc.flat
new file mode 100644
index 00000000..f6e4aabe
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-be_values-be.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-bg_values-bg.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-bg_values-bg.arsc.flat
new file mode 100644
index 00000000..57a81004
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-bg_values-bg.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-bn_values-bn.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-bn_values-bn.arsc.flat
new file mode 100644
index 00000000..ea913505
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-bn_values-bn.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-bs_values-bs.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-bs_values-bs.arsc.flat
new file mode 100644
index 00000000..d45eef7b
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-bs_values-bs.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ca_values-ca.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ca_values-ca.arsc.flat
new file mode 100644
index 00000000..1d24642d
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ca_values-ca.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-cs_values-cs.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-cs_values-cs.arsc.flat
new file mode 100644
index 00000000..dcf03698
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-cs_values-cs.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-da_values-da.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-da_values-da.arsc.flat
new file mode 100644
index 00000000..2159846a
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-da_values-da.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-de_values-de.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-de_values-de.arsc.flat
new file mode 100644
index 00000000..e2740d83
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-de_values-de.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-el_values-el.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-el_values-el.arsc.flat
new file mode 100644
index 00000000..10207ce3
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-el_values-el.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-en-rAU_values-en-rAU.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-en-rAU_values-en-rAU.arsc.flat
new file mode 100644
index 00000000..4e185501
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-en-rAU_values-en-rAU.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-en-rCA_values-en-rCA.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-en-rCA_values-en-rCA.arsc.flat
new file mode 100644
index 00000000..d7e2a2a9
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-en-rCA_values-en-rCA.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-en-rGB_values-en-rGB.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-en-rGB_values-en-rGB.arsc.flat
new file mode 100644
index 00000000..f31253ef
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-en-rGB_values-en-rGB.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-en-rIN_values-en-rIN.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-en-rIN_values-en-rIN.arsc.flat
new file mode 100644
index 00000000..b731ba23
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-en-rIN_values-en-rIN.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-en-rXC_values-en-rXC.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-en-rXC_values-en-rXC.arsc.flat
new file mode 100644
index 00000000..017a9c60
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-en-rXC_values-en-rXC.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-es-rUS_values-es-rUS.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-es-rUS_values-es-rUS.arsc.flat
new file mode 100644
index 00000000..8a54271a
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-es-rUS_values-es-rUS.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-es_values-es.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-es_values-es.arsc.flat
new file mode 100644
index 00000000..579be28c
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-es_values-es.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-et_values-et.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-et_values-et.arsc.flat
new file mode 100644
index 00000000..adf94e97
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-et_values-et.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-eu_values-eu.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-eu_values-eu.arsc.flat
new file mode 100644
index 00000000..9abe7bc0
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-eu_values-eu.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-fa_values-fa.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-fa_values-fa.arsc.flat
new file mode 100644
index 00000000..51db2164
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-fa_values-fa.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-fi_values-fi.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-fi_values-fi.arsc.flat
new file mode 100644
index 00000000..d2c3af55
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-fi_values-fi.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-fr-rCA_values-fr-rCA.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-fr-rCA_values-fr-rCA.arsc.flat
new file mode 100644
index 00000000..789aee2b
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-fr-rCA_values-fr-rCA.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-fr_values-fr.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-fr_values-fr.arsc.flat
new file mode 100644
index 00000000..a06ffac6
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-fr_values-fr.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-gl_values-gl.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-gl_values-gl.arsc.flat
new file mode 100644
index 00000000..04790b3e
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-gl_values-gl.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-gu_values-gu.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-gu_values-gu.arsc.flat
new file mode 100644
index 00000000..ac2bdaa1
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-gu_values-gu.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat
new file mode 100644
index 00000000..5815003c
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat
new file mode 100644
index 00000000..b7fffb89
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat
new file mode 100644
index 00000000..8e024f0c
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat
new file mode 100644
index 00000000..4b98880f
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-h720dp-v13_values-h720dp-v13.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-h720dp-v13_values-h720dp-v13.arsc.flat
new file mode 100644
index 00000000..53ea5e69
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-h720dp-v13_values-h720dp-v13.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-hdpi-v4_values-hdpi-v4.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-hdpi-v4_values-hdpi-v4.arsc.flat
new file mode 100644
index 00000000..f682f83f
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-hdpi-v4_values-hdpi-v4.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-hi_values-hi.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-hi_values-hi.arsc.flat
new file mode 100644
index 00000000..21010479
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-hi_values-hi.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-hr_values-hr.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-hr_values-hr.arsc.flat
new file mode 100644
index 00000000..29f94520
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-hr_values-hr.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-hu_values-hu.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-hu_values-hu.arsc.flat
new file mode 100644
index 00000000..e7f00bc5
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-hu_values-hu.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-hy_values-hy.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-hy_values-hy.arsc.flat
new file mode 100644
index 00000000..b6faf9cb
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-hy_values-hy.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-in_values-in.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-in_values-in.arsc.flat
new file mode 100644
index 00000000..72b4cd17
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-in_values-in.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-is_values-is.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-is_values-is.arsc.flat
new file mode 100644
index 00000000..1ea17931
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-is_values-is.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-it_values-it.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-it_values-it.arsc.flat
new file mode 100644
index 00000000..4f846929
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-it_values-it.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-iw_values-iw.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-iw_values-iw.arsc.flat
new file mode 100644
index 00000000..b7aabcfd
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-iw_values-iw.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ja_values-ja.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ja_values-ja.arsc.flat
new file mode 100644
index 00000000..f390659a
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ja_values-ja.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ka_values-ka.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ka_values-ka.arsc.flat
new file mode 100644
index 00000000..dfc08244
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ka_values-ka.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-kk_values-kk.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-kk_values-kk.arsc.flat
new file mode 100644
index 00000000..3b4bd8ec
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-kk_values-kk.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-km_values-km.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-km_values-km.arsc.flat
new file mode 100644
index 00000000..99cbfe9c
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-km_values-km.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-kn_values-kn.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-kn_values-kn.arsc.flat
new file mode 100644
index 00000000..c87043c9
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-kn_values-kn.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ko_values-ko.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ko_values-ko.arsc.flat
new file mode 100644
index 00000000..2d1cc791
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ko_values-ko.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ky_values-ky.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ky_values-ky.arsc.flat
new file mode 100644
index 00000000..746604e7
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ky_values-ky.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-land_values-land.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-land_values-land.arsc.flat
new file mode 100644
index 00000000..344edae7
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-land_values-land.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-large-v4_values-large-v4.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-large-v4_values-large-v4.arsc.flat
new file mode 100644
index 00000000..05e60f10
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-large-v4_values-large-v4.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ldltr-v21_values-ldltr-v21.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ldltr-v21_values-ldltr-v21.arsc.flat
new file mode 100644
index 00000000..a037b900
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ldltr-v21_values-ldltr-v21.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ldrtl-v17_values-ldrtl-v17.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ldrtl-v17_values-ldrtl-v17.arsc.flat
new file mode 100644
index 00000000..7637fdae
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ldrtl-v17_values-ldrtl-v17.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-lo_values-lo.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-lo_values-lo.arsc.flat
new file mode 100644
index 00000000..3ba58682
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-lo_values-lo.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-lt_values-lt.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-lt_values-lt.arsc.flat
new file mode 100644
index 00000000..b4a54799
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-lt_values-lt.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-lv_values-lv.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-lv_values-lv.arsc.flat
new file mode 100644
index 00000000..2a9a17c5
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-lv_values-lv.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-mk_values-mk.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-mk_values-mk.arsc.flat
new file mode 100644
index 00000000..dd3a79e8
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-mk_values-mk.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ml_values-ml.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ml_values-ml.arsc.flat
new file mode 100644
index 00000000..bc9ca082
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ml_values-ml.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-mn_values-mn.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-mn_values-mn.arsc.flat
new file mode 100644
index 00000000..11106eb2
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-mn_values-mn.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-mr_values-mr.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-mr_values-mr.arsc.flat
new file mode 100644
index 00000000..62e5a35f
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-mr_values-mr.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ms_values-ms.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ms_values-ms.arsc.flat
new file mode 100644
index 00000000..51f8036a
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ms_values-ms.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-my_values-my.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-my_values-my.arsc.flat
new file mode 100644
index 00000000..193748b3
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-my_values-my.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-nb_values-nb.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-nb_values-nb.arsc.flat
new file mode 100644
index 00000000..ea43e047
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-nb_values-nb.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ne_values-ne.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ne_values-ne.arsc.flat
new file mode 100644
index 00000000..f27606ca
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ne_values-ne.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-night-v8_values-night-v8.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-night-v8_values-night-v8.arsc.flat
new file mode 100644
index 00000000..1af91147
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-night-v8_values-night-v8.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-nl_values-nl.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-nl_values-nl.arsc.flat
new file mode 100644
index 00000000..b51b5bf8
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-nl_values-nl.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-or_values-or.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-or_values-or.arsc.flat
new file mode 100644
index 00000000..c918644e
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-or_values-or.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-pa_values-pa.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-pa_values-pa.arsc.flat
new file mode 100644
index 00000000..b79eddc8
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-pa_values-pa.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-pl_values-pl.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-pl_values-pl.arsc.flat
new file mode 100644
index 00000000..3cc52b3a
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-pl_values-pl.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-port_values-port.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-port_values-port.arsc.flat
new file mode 100644
index 00000000..31b5f258
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-port_values-port.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-pt-rBR_values-pt-rBR.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-pt-rBR_values-pt-rBR.arsc.flat
new file mode 100644
index 00000000..d0042bf2
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-pt-rBR_values-pt-rBR.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-pt-rPT_values-pt-rPT.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-pt-rPT_values-pt-rPT.arsc.flat
new file mode 100644
index 00000000..60fce7bd
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-pt-rPT_values-pt-rPT.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-pt_values-pt.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-pt_values-pt.arsc.flat
new file mode 100644
index 00000000..8c070867
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-pt_values-pt.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ro_values-ro.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ro_values-ro.arsc.flat
new file mode 100644
index 00000000..f52f2538
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ro_values-ro.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ru_values-ru.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ru_values-ru.arsc.flat
new file mode 100644
index 00000000..666bddca
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ru_values-ru.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-si_values-si.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-si_values-si.arsc.flat
new file mode 100644
index 00000000..5c54c1c9
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-si_values-si.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-sk_values-sk.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-sk_values-sk.arsc.flat
new file mode 100644
index 00000000..74323fd4
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-sk_values-sk.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-sl_values-sl.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-sl_values-sl.arsc.flat
new file mode 100644
index 00000000..63c17d4d
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-sl_values-sl.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-small-v4_values-small-v4.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-small-v4_values-small-v4.arsc.flat
new file mode 100644
index 00000000..23d6cd9a
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-small-v4_values-small-v4.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-sq_values-sq.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-sq_values-sq.arsc.flat
new file mode 100644
index 00000000..e4a94787
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-sq_values-sq.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-sr_values-sr.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-sr_values-sr.arsc.flat
new file mode 100644
index 00000000..9ac62693
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-sr_values-sr.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-sv_values-sv.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-sv_values-sv.arsc.flat
new file mode 100644
index 00000000..f70ab48b
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-sv_values-sv.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-sw360dp-v13_values-sw360dp-v13.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-sw360dp-v13_values-sw360dp-v13.arsc.flat
new file mode 100644
index 00000000..7f8124a6
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-sw360dp-v13_values-sw360dp-v13.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat
new file mode 100644
index 00000000..094fec5e
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-sw_values-sw.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-sw_values-sw.arsc.flat
new file mode 100644
index 00000000..77c19a96
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-sw_values-sw.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ta_values-ta.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ta_values-ta.arsc.flat
new file mode 100644
index 00000000..81e8c15b
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ta_values-ta.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-te_values-te.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-te_values-te.arsc.flat
new file mode 100644
index 00000000..b08c0b03
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-te_values-te.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-th_values-th.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-th_values-th.arsc.flat
new file mode 100644
index 00000000..b89f231c
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-th_values-th.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-tl_values-tl.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-tl_values-tl.arsc.flat
new file mode 100644
index 00000000..f9b9c813
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-tl_values-tl.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-tr_values-tr.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-tr_values-tr.arsc.flat
new file mode 100644
index 00000000..b94f5dfb
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-tr_values-tr.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-uk_values-uk.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-uk_values-uk.arsc.flat
new file mode 100644
index 00000000..7faf7125
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-uk_values-uk.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-ur_values-ur.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-ur_values-ur.arsc.flat
new file mode 100644
index 00000000..7c9403b8
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-ur_values-ur.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-uz_values-uz.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-uz_values-uz.arsc.flat
new file mode 100644
index 00000000..b2bd3abd
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-uz_values-uz.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v16_values-v16.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v16_values-v16.arsc.flat
new file mode 100644
index 00000000..4ed91196
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v16_values-v16.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v17_values-v17.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v17_values-v17.arsc.flat
new file mode 100644
index 00000000..307138d8
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v17_values-v17.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v18_values-v18.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v18_values-v18.arsc.flat
new file mode 100644
index 00000000..167b7140
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v18_values-v18.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v21_values-v21.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v21_values-v21.arsc.flat
new file mode 100644
index 00000000..af9815cf
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v21_values-v21.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v22_values-v22.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v22_values-v22.arsc.flat
new file mode 100644
index 00000000..00019652
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v22_values-v22.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v23_values-v23.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v23_values-v23.arsc.flat
new file mode 100644
index 00000000..28071d2d
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v23_values-v23.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v24_values-v24.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v24_values-v24.arsc.flat
new file mode 100644
index 00000000..d704ab36
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v24_values-v24.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v25_values-v25.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v25_values-v25.arsc.flat
new file mode 100644
index 00000000..feecde34
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v25_values-v25.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v26_values-v26.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v26_values-v26.arsc.flat
new file mode 100644
index 00000000..814cb33b
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v26_values-v26.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v28_values-v28.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v28_values-v28.arsc.flat
new file mode 100644
index 00000000..e114cc76
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v28_values-v28.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v29_values-v29.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v29_values-v29.arsc.flat
new file mode 100644
index 00000000..5fb2448b
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v29_values-v29.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v30_values-v30.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v30_values-v30.arsc.flat
new file mode 100644
index 00000000..91a37e4d
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v30_values-v30.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v31_values-v31.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v31_values-v31.arsc.flat
new file mode 100644
index 00000000..8cd8a835
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v31_values-v31.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-v34_values-v34.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-v34_values-v34.arsc.flat
new file mode 100644
index 00000000..132f5f01
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-v34_values-v34.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-vi_values-vi.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-vi_values-vi.arsc.flat
new file mode 100644
index 00000000..be42e94c
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-vi_values-vi.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat
new file mode 100644
index 00000000..a6c5685c
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat
new file mode 100644
index 00000000..4d4d3d10
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-w400dp-port-v13_values-w400dp-port-v13.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-w400dp-port-v13_values-w400dp-port-v13.arsc.flat
new file mode 100644
index 00000000..45fbd2d6
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-w400dp-port-v13_values-w400dp-port-v13.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat
new file mode 100644
index 00000000..c96d9fc6
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-watch-v20_values-watch-v20.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-watch-v20_values-watch-v20.arsc.flat
new file mode 100644
index 00000000..141cdc58
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-watch-v20_values-watch-v20.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-watch-v21_values-watch-v21.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-watch-v21_values-watch-v21.arsc.flat
new file mode 100644
index 00000000..a1b6feef
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-watch-v21_values-watch-v21.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-xlarge-v4_values-xlarge-v4.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-xlarge-v4_values-xlarge-v4.arsc.flat
new file mode 100644
index 00000000..d0b0c542
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-xlarge-v4_values-xlarge-v4.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-zh-rCN_values-zh-rCN.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-zh-rCN_values-zh-rCN.arsc.flat
new file mode 100644
index 00000000..f3333121
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-zh-rCN_values-zh-rCN.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-zh-rHK_values-zh-rHK.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-zh-rHK_values-zh-rHK.arsc.flat
new file mode 100644
index 00000000..38b96699
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-zh-rHK_values-zh-rHK.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-zh-rTW_values-zh-rTW.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-zh-rTW_values-zh-rTW.arsc.flat
new file mode 100644
index 00000000..d3da0ae0
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-zh-rTW_values-zh-rTW.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values-zu_values-zu.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values-zu_values-zu.arsc.flat
new file mode 100644
index 00000000..7d077183
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values-zu_values-zu.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/values_values.arsc.flat b/mobile/build/intermediates/merged_res/freedomDebug/values_values.arsc.flat
new file mode 100644
index 00000000..5a21dd2a
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/values_values.arsc.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/xml_locales_config.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/xml_locales_config.xml.flat
new file mode 100644
index 00000000..2ab335ae
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/xml_locales_config.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/xml_log_paths.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/xml_log_paths.xml.flat
new file mode 100644
index 00000000..bfa05001
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/xml_log_paths.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/xml_no_backup.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/xml_no_backup.xml.flat
new file mode 100644
index 00000000..75674f23
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/xml_no_backup.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res/freedomDebug/xml_pref_settings.xml.flat b/mobile/build/intermediates/merged_res/freedomDebug/xml_pref_settings.xml.flat
new file mode 100644
index 00000000..41c12844
Binary files /dev/null and b/mobile/build/intermediates/merged_res/freedomDebug/xml_pref_settings.xml.flat differ
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/freedomDebug.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/freedomDebug.json
new file mode 100644
index 00000000..985191bb
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/freedomDebug.json
@@ -0,0 +1,12075 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-eu_values-eu.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-eu/values-eu.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,275,382,487,567,674,774,872,987,1070,1137,1236,1304,1365,1453,1516,1582,1646,1717,1780,1834,1943,2002,2065,2119,2193,2318,2408,2488,2633,2716,2798,2936,3027,3110,3162,3215,3281,3352,3432,3518,3598,3676,3754,3827,3902,4009,4096,4183,4274,4367,4439,4515,4607,4658,4740,4806,4890,4976,5038,5102,5165,5233,5340,5449,5545,5650,5706,5763",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,106,104,79,106,99,97,114,82,66,98,67,60,87,62,65,63,70,62,53,108,58,62,53,73,124,89,79,144,82,81,137,90,82,51,52,65,70,79,85,79,77,77,72,74,106,86,86,90,92,71,75,91,50,81,65,83,85,61,63,62,67,106,108,95,104,55,56,82",
+ "endOffsets": "270,377,482,562,669,769,867,982,1065,1132,1231,1299,1360,1448,1511,1577,1641,1712,1775,1829,1938,1997,2060,2114,2188,2313,2403,2483,2628,2711,2793,2931,3022,3105,3157,3210,3276,3347,3427,3513,3593,3671,3749,3822,3897,4004,4091,4178,4269,4362,4434,4510,4602,4653,4735,4801,4885,4971,5033,5097,5160,5228,5335,5444,5540,5645,5701,5758,5841"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3070,3177,3282,3362,3469,4300,4398,4513,7042,7208,7627,7695,7756,7844,7907,7973,8037,8108,8171,8225,8334,8393,8456,8510,8584,8709,8799,8879,9024,9107,9189,9327,9418,9501,9553,9606,9672,9743,9823,9909,9989,10067,10145,10218,10293,10400,10487,10574,10665,10758,10830,10906,10998,11049,11131,11197,11281,11367,11429,11493,11556,11624,11731,11840,11936,12041,12097,12233",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,106,104,79,106,99,97,114,82,66,98,67,60,87,62,65,63,70,62,53,108,58,62,53,73,124,89,79,144,82,81,137,90,82,51,52,65,70,79,85,79,77,77,72,74,106,86,86,90,92,71,75,91,50,81,65,83,85,61,63,62,67,106,108,95,104,55,56,82",
+ "endOffsets": "320,3172,3277,3357,3464,3564,4393,4508,4591,7104,7302,7690,7751,7839,7902,7968,8032,8103,8166,8220,8329,8388,8451,8505,8579,8704,8794,8874,9019,9102,9184,9322,9413,9496,9548,9601,9667,9738,9818,9904,9984,10062,10140,10213,10288,10395,10482,10569,10660,10753,10825,10901,10993,11044,11126,11192,11276,11362,11424,11488,11551,11619,11726,11835,11931,12036,12092,12149,12311"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-eu/values-eu.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,257,370",
+ "endColumns": "99,101,112,104",
+ "endOffsets": "150,252,365,470"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6942,7307,7409,7522",
+ "endColumns": "99,101,112,104",
+ "endOffsets": "7037,7404,7517,7622"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-eu/values-eu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,256,356,459,564,667,786",
+ "endColumns": "97,102,99,102,104,102,118,100",
+ "endOffsets": "148,251,351,454,559,662,781,882"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3569,3667,3770,3870,3973,4078,4181,12533",
+ "endColumns": "97,102,99,102,104,102,118,100",
+ "endOffsets": "3662,3765,3865,3968,4073,4176,4295,12629"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-eu/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,293,461,581,686,834,955,1075,1179,1353,1457,1616,1740,1890,2046,2108,2169",
+ "endColumns": "99,167,119,104,147,120,119,103,173,103,158,123,149,155,61,60,87",
+ "endOffsets": "292,460,580,685,833,954,1074,1178,1352,1456,1615,1739,1889,2045,2107,2168,2256"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4596,4700,4872,4996,5105,5257,5382,5506,5757,5935,6043,6206,6334,6488,6648,6714,6779",
+ "endColumns": "103,171,123,108,151,124,123,107,177,107,162,127,153,159,65,64,91",
+ "endOffsets": "4695,4867,4991,5100,5252,5377,5501,5609,5930,6038,6201,6329,6483,6643,6709,6774,6866"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-eu/values-eu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,214,312,422,508,614,738,824,905,997,1091,1187,1281,1382,1476,1572,1669,1761,1854,1936,2045,2154,2253,2362,2469,2580,2751,2850",
+ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82",
+ "endOffsets": "209,307,417,503,609,733,819,900,992,1086,1182,1276,1377,1471,1567,1664,1756,1849,1931,2040,2149,2248,2357,2464,2575,2746,2845,2928"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "325,434,532,642,728,834,958,1044,1125,1217,1311,1407,1501,1602,1696,1792,1889,1981,2074,2156,2265,2374,2473,2582,2689,2800,2971,12450",
+ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82",
+ "endOffsets": "429,527,637,723,829,953,1039,1120,1212,1306,1402,1496,1597,1691,1787,1884,1976,2069,2151,2260,2369,2468,2577,2684,2795,2966,3065,12528"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-eu/values-eu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,275,354,488,657,747",
+ "endColumns": "70,98,78,133,168,89,83",
+ "endOffsets": "171,270,349,483,652,742,826"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6871,7109,12154,12316,12634,12803,12893",
+ "endColumns": "70,98,78,133,168,89,83",
+ "endOffsets": "6937,7203,12228,12445,12798,12888,12972"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-eu/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "138",
+ "endOffsets": "333"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5614",
+ "endColumns": "142",
+ "endOffsets": "5752"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-mn_values-mn.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-mn/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,299,452,580,683,816,938,1063,1169,1309,1412,1576,1701,1838,2002,2059,2117",
+ "endColumns": "105,152,127,102,132,121,124,105,139,102,163,124,136,163,56,57,72",
+ "endOffsets": "298,451,579,682,815,937,1062,1168,1308,1411,1575,1700,1837,2001,2058,2116,2189"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4451,4561,4718,4850,4957,5094,5220,5349,5609,5753,5860,6028,6157,6298,6466,6527,6589",
+ "endColumns": "109,156,131,106,136,125,128,109,143,106,167,128,140,167,60,61,76",
+ "endOffsets": "4556,4713,4845,4952,5089,5215,5344,5454,5748,5855,6023,6152,6293,6461,6522,6584,6661"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-mn/values-mn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,219,319,428,514,620,734,817,898,989,1082,1177,1273,1370,1463,1557,1649,1740,1830,1910,2017,2120,2217,2324,2426,2539,2698,2797",
+ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80",
+ "endOffsets": "214,314,423,509,615,729,812,893,984,1077,1172,1268,1365,1458,1552,1644,1735,1825,1905,2012,2115,2212,2319,2421,2534,2693,2792,2873"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,429,529,638,724,830,944,1027,1108,1199,1292,1387,1483,1580,1673,1767,1859,1950,2040,2120,2227,2330,2427,2534,2636,2749,2908,12239",
+ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80",
+ "endOffsets": "424,524,633,719,825,939,1022,1103,1194,1287,1382,1478,1575,1668,1762,1854,1945,2035,2115,2222,2325,2422,2529,2631,2744,2903,3002,12315"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-mn/values-mn.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,160,264,369",
+ "endColumns": "104,103,104,107",
+ "endOffsets": "155,259,364,472"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6736,7094,7198,7303",
+ "endColumns": "104,103,104,107",
+ "endOffsets": "6836,7193,7298,7406"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-mn/values-mn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,356,454,559,671,790",
+ "endColumns": "97,101,100,97,104,111,118,100",
+ "endOffsets": "148,250,351,449,554,666,785,886"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3414,3512,3614,3715,3813,3918,4030,12320",
+ "endColumns": "97,101,100,97,104,111,118,100",
+ "endOffsets": "3507,3609,3710,3808,3913,4025,4144,12416"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-mn/values-mn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,265,345,483,652,737",
+ "endColumns": "69,89,79,137,168,84,81",
+ "endOffsets": "170,260,340,478,647,732,814"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6666,6906,11937,12101,12421,12590,12675",
+ "endColumns": "69,89,79,137,168,84,81",
+ "endOffsets": "6731,6991,12012,12234,12585,12670,12752"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-mn/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "145",
+ "endOffsets": "340"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5459",
+ "endColumns": "149",
+ "endOffsets": "5604"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-mn/values-mn.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,344,421,500,587,672,770,889,974,1039,1137,1218,1277,1370,1432,1495,1553,1624,1686,1740,1861,1918,1979,2033,2104,2237,2321,2404,2537,2619,2697,2829,2919,2999,3053,3104,3170,3241,3319,3405,3484,3559,3637,3717,3800,3905,3993,4072,4162,4255,4329,4399,4490,4544,4624,4691,4775,4860,4922,4986,5049,5120,5224,5339,5436,5550,5608,5663",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,78,76,78,86,84,97,118,84,64,97,80,58,92,61,62,57,70,61,53,120,56,60,53,70,132,83,82,132,81,77,131,89,79,53,50,65,70,77,85,78,74,77,79,82,104,87,78,89,92,73,69,90,53,79,66,83,84,61,63,62,70,103,114,96,113,57,54,83",
+ "endOffsets": "260,339,416,495,582,667,765,884,969,1034,1132,1213,1272,1365,1427,1490,1548,1619,1681,1735,1856,1913,1974,2028,2099,2232,2316,2399,2532,2614,2692,2824,2914,2994,3048,3099,3165,3236,3314,3400,3479,3554,3632,3712,3795,3900,3988,4067,4157,4250,4324,4394,4485,4539,4619,4686,4770,4855,4917,4981,5044,5115,5219,5334,5431,5545,5603,5658,5742"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3007,3086,3163,3242,3329,4149,4247,4366,6841,6996,7411,7492,7551,7644,7706,7769,7827,7898,7960,8014,8135,8192,8253,8307,8378,8511,8595,8678,8811,8893,8971,9103,9193,9273,9327,9378,9444,9515,9593,9679,9758,9833,9911,9991,10074,10179,10267,10346,10436,10529,10603,10673,10764,10818,10898,10965,11049,11134,11196,11260,11323,11394,11498,11613,11710,11824,11882,12017",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,78,76,78,86,84,97,118,84,64,97,80,58,92,61,62,57,70,61,53,120,56,60,53,70,132,83,82,132,81,77,131,89,79,53,50,65,70,77,85,78,74,77,79,82,104,87,78,89,92,73,69,90,53,79,66,83,84,61,63,62,70,103,114,96,113,57,54,83",
+ "endOffsets": "310,3081,3158,3237,3324,3409,4242,4361,4446,6901,7089,7487,7546,7639,7701,7764,7822,7893,7955,8009,8130,8187,8248,8302,8373,8506,8590,8673,8806,8888,8966,9098,9188,9268,9322,9373,9439,9510,9588,9674,9753,9828,9906,9986,10069,10174,10262,10341,10431,10524,10598,10668,10759,10813,10893,10960,11044,11129,11191,11255,11318,11389,11493,11608,11705,11819,11877,11932,12096"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ldltr-v21_values-ldltr-v21.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ldltr-v21/values-ldltr-v21.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "112",
+ "endOffsets": "163"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-zh-rCN_values-zh-rCN.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-zh-rCN/values-zh-rCN.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,147,248,342,436,529,623,719",
+ "endColumns": "91,100,93,93,92,93,95,100",
+ "endOffsets": "142,243,337,431,524,618,714,815"
+ },
+ "to": {
+ "startLines": "63,64,65,66,67,68,69,265",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "4196,4288,4389,4483,4577,4670,4764,19201",
+ "endColumns": "91,100,93,93,92,93,95,100",
+ "endOffsets": "4283,4384,4478,4572,4665,4759,4855,19297"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-zh-rCN/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,294,419,530,628,729,841,939,1027,1131,1228,1354,1465,1565,1669,1721,1774",
+ "endColumns": "96,124,110,97,100,111,97,87,103,96,125,110,99,103,51,52,69",
+ "endOffsets": "293,418,529,627,728,840,938,1026,1130,1227,1353,1464,1564,1668,1720,1773,1843"
+ },
+ "to": {
+ "startLines": "82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "5688,5789,5918,6033,6135,6240,6356,6458,6649,6757,6858,6988,7103,7207,7315,7371,7428",
+ "endColumns": "100,128,114,101,104,115,101,91,107,100,129,114,103,107,55,56,73",
+ "endOffsets": "5784,5913,6028,6130,6235,6351,6453,6545,6752,6853,6983,7098,7202,7310,7366,7423,7497"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,200,295,395,477,574,680,757,832,923,1016,1113,1209,1303,1396,1491,1583,1674,1765,1843,1939,2034,2129,2226,2322,2420,2568,2662",
+ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78",
+ "endOffsets": "195,290,390,472,569,675,752,827,918,1011,1108,1204,1298,1391,1486,1578,1669,1760,1838,1934,2029,2124,2221,2317,2415,2563,2657,2736"
+ },
+ "to": {
+ "startLines": "30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,215",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "1252,1347,1442,1542,1624,1721,1827,1904,1979,2070,2163,2260,2356,2450,2543,2638,2730,2821,2912,2990,3086,3181,3276,3373,3469,3567,3715,15665",
+ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78",
+ "endOffsets": "1342,1437,1537,1619,1716,1822,1899,1974,2065,2158,2255,2351,2445,2538,2633,2725,2816,2907,2985,3081,3176,3271,3368,3464,3562,3710,3804,15739"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-zh-rCN/values-zh-rCN.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,138,230,331",
+ "endColumns": "82,91,100,92",
+ "endOffsets": "133,225,326,419"
+ },
+ "to": {
+ "startLines": "108,122,123,124",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7991,9057,9149,9250",
+ "endColumns": "82,91,100,92",
+ "endOffsets": "8069,9144,9245,9338"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-zh-rCN/values-zh-rCN.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,247,311,373,443,513,590,681,787,860,922,999,1058,1117,1195,1256,1313,1369,1428,1486,1540,1625,1681,1739,1793,1858,1950,2024,2100,2222,2284,2346,2445,2524,2598,2648,2699,2765,2829,2898,2976,3047,3108,3179,3246,3306,3392,3471,3538,3621,3706,3780,3845,3921,3969,4042,4106,4182,4260,4322,4386,4449,4514,4594,4670,4748,4824,4878,4933",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,63,61,69,69,76,90,105,72,61,76,58,58,77,60,56,55,58,57,53,84,55,57,53,64,91,73,75,121,61,61,98,78,73,49,50,65,63,68,77,70,60,70,66,59,85,78,66,82,84,73,64,75,47,72,63,75,77,61,63,62,64,79,75,77,75,53,54,68",
+ "endOffsets": "242,306,368,438,508,585,676,782,855,917,994,1053,1112,1190,1251,1308,1364,1423,1481,1535,1620,1676,1734,1788,1853,1945,2019,2095,2217,2279,2341,2440,2519,2593,2643,2694,2760,2824,2893,2971,3042,3103,3174,3241,3301,3387,3466,3533,3616,3701,3775,3840,3916,3964,4037,4101,4177,4255,4317,4381,4444,4509,4589,4665,4743,4819,4873,4928,4997"
+ },
+ "to": {
+ "startLines": "11,58,59,60,61,62,70,71,72,117,120,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,188",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "496,3853,3917,3979,4049,4119,4860,4951,5057,8710,8922,9343,9402,9461,9539,9600,9657,9713,9772,9830,9884,9969,10025,10083,10137,10202,10294,10368,10444,10566,10628,10690,10789,10868,10942,10992,11043,11109,11173,11242,11320,11391,11452,11523,11590,11650,11736,11815,11882,11965,12050,12124,12189,12265,12313,12386,12450,12526,12604,12666,12730,12793,12858,12938,13014,13092,13168,13222,13676",
+ "endLines": "14,58,59,60,61,62,70,71,72,117,120,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,188",
+ "endColumns": "12,63,61,69,69,76,90,105,72,61,76,58,58,77,60,56,55,58,57,53,84,55,57,53,64,91,73,75,121,61,61,98,78,73,49,50,65,63,68,77,70,60,70,66,59,85,78,66,82,84,73,64,75,47,72,63,75,77,61,63,62,64,79,75,77,75,53,54,68",
+ "endOffsets": "638,3912,3974,4044,4114,4191,4946,5052,5125,8767,8994,9397,9456,9534,9595,9652,9708,9767,9825,9879,9964,10020,10078,10132,10197,10289,10363,10439,10561,10623,10685,10784,10863,10937,10987,11038,11104,11168,11237,11315,11386,11447,11518,11585,11645,11731,11810,11877,11960,12045,12119,12184,12260,12308,12381,12445,12521,12599,12661,12725,12788,12853,12933,13009,13087,13163,13217,13272,13740"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-zh-rCN/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "94",
+ "endOffsets": "293"
+ },
+ "to": {
+ "startLines": "90",
+ "startColumns": "4",
+ "startOffsets": "6550",
+ "endColumns": "98",
+ "endOffsets": "6644"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-zh-rCN/strings.xml",
+ "from": {
+ "startLines": "96,99,102,159,162,166,67,70,2,92,94,93,88,89,87,91,90,95,176,178,177,175,85,83,84,214,221,215,222,217,216,218,219,171,170,172,158,157,165,156,173,9,17,16,21,31,27,29,28,30,33,34,32,19,20,22,23,24,25,10,12,11,15,14,13,107,154,145,144,150,152,151,146,147,148,149,153,114,115,138,139,140,141,112,113,127,128,129,130,131,108,111,109,110,116,117,118,119,120,134,135,132,133,121,123,124,125,126,122,142,143,106,136,137,37,47,59,60,61,48,57,58,80,81,74,75,76,77,78,62,65,63,79,73,44,45,36,38,40,41,39,42,5,3,6,4,7,196,195,201,188,187,200,206,199,197,193,189,190,191,194,186,183,192,184,185,207,208,202,205,203,204,198,182,211,181,179,180,209,210",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "5686,5804,5918,9691,9810,9983,3970,4108,55,5418,5560,5502,5183,5234,5128,5366,5313,5631,10412,10527,10469,10357,5070,4952,5014,13034,13500,13089,13580,13281,13165,13360,13432,10174,10116,10243,9626,9558,9915,9491,10304,338,868,793,1093,1795,1483,1634,1546,1714,1944,2023,1865,945,1030,1170,1249,1330,1398,408,519,458,727,661,576,6082,9441,8862,8817,9175,9289,9227,8907,8963,9028,9091,9374,6557,6620,8344,8407,8502,8573,6403,6472,7561,7626,7701,7788,7852,6133,6326,6197,6260,6706,6777,6875,6964,7050,8080,8141,7928,7997,7144,7281,7343,7414,7488,7216,8667,8735,6033,8211,8273,2151,2719,3395,3457,3547,2772,3279,3337,4806,4885,4303,4378,4467,4557,4644,3611,3833,3693,4742,4223,2607,2657,2089,2217,2365,2437,2291,2520,196,99,243,147,291,11831,11734,12173,11232,11171,12121,12483,12058,11920,11600,11317,11390,11461,11667,11080,10887,11532,10958,11012,12563,12625,12225,12412,12288,12346,12003,10812,12796,10736,10605,10678,12687,12739",
+ "endLines": "98,101,104,161,164,168,69,72,2,92,94,93,88,89,87,91,90,95,176,178,177,175,85,83,84,214,221,215,222,217,216,218,219,171,170,172,158,157,165,156,173,9,17,16,21,31,27,29,28,30,33,34,32,19,20,22,23,24,25,10,12,11,15,14,13,107,154,145,144,150,152,151,146,147,148,149,153,114,115,138,139,140,141,112,113,127,128,129,130,131,108,111,109,110,116,117,118,119,120,134,135,132,133,121,123,124,125,126,122,142,143,106,136,137,37,47,59,60,61,48,57,58,80,81,74,75,76,77,78,62,66,64,79,73,44,45,36,38,40,41,39,42,5,3,6,4,7,196,195,201,188,187,200,206,199,197,193,189,190,191,194,186,183,192,184,185,207,208,202,205,203,204,198,182,211,181,179,180,209,210",
+ "endColumns": "14,14,14,14,14,14,14,14,43,83,70,57,50,78,54,51,52,54,56,77,57,54,56,61,55,54,79,75,90,78,115,71,66,68,57,60,64,67,67,66,51,69,75,74,76,69,62,79,87,80,78,64,78,84,62,78,80,67,83,49,56,60,65,65,84,50,48,44,44,51,84,61,55,64,62,83,66,62,85,62,94,70,93,68,84,64,74,86,63,75,63,76,62,65,70,97,88,85,93,60,69,68,82,71,61,70,73,72,64,67,81,48,61,70,65,52,61,89,63,99,57,57,78,65,74,88,89,86,97,81,22,26,63,79,49,60,61,73,71,82,73,85,46,47,47,48,45,88,96,51,84,60,51,79,62,82,66,72,70,70,66,90,70,67,53,67,61,61,62,70,57,65,54,74,70,75,72,57,51,56",
+ "endOffsets": "5799,5913,6027,9805,9910,10110,4103,4218,94,5497,5626,5555,5229,5308,5178,5413,5361,5681,10464,10600,10522,10407,5122,5009,5065,13084,13575,13160,13666,13355,13276,13427,13494,10238,10169,10299,9686,9621,9978,9553,10351,403,939,863,1165,1860,1541,1709,1629,1790,2018,2083,1939,1025,1088,1244,1325,1393,1477,453,571,514,788,722,656,6128,9485,8902,8857,9222,9369,9284,8958,9023,9086,9170,9436,6615,6701,8402,8497,8568,8662,6467,6552,7621,7696,7783,7847,7923,6192,6398,6255,6321,6772,6870,6959,7045,7139,8136,8206,7992,8075,7211,7338,7409,7483,7556,7276,8730,8812,6077,8268,8339,2212,2767,3452,3542,3606,2867,3332,3390,4880,4946,4373,4462,4552,4639,4737,3688,3965,3828,4801,4298,2652,2713,2146,2286,2432,2515,2360,2601,238,142,286,191,332,11915,11826,12220,11312,11227,12168,12558,12116,11998,11662,11385,11456,11527,11729,11166,10953,11595,11007,11075,12620,12682,12283,12478,12341,12407,12053,10882,12862,10807,10673,10731,12734,12791"
+ },
+ "to": {
+ "startLines": "2,5,8,15,18,21,24,27,57,73,74,75,76,77,78,79,80,81,100,101,102,103,104,105,106,109,110,111,112,113,114,115,116,118,121,182,184,185,186,187,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,285,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,268,382,643,762,867,999,1137,3809,5130,5214,5285,5343,5394,5473,5528,5580,5633,7502,7559,7637,7695,7750,7807,7869,8074,8129,8209,8285,8376,8455,8571,8643,8772,8999,13277,13408,13473,13541,13609,13745,13917,13987,14063,14138,14215,14285,14348,14428,14516,14597,14676,14741,14820,14905,14968,15047,15128,15196,15280,15330,15387,15448,15514,15580,15744,15795,15844,15889,15934,15986,16071,16133,16189,16254,16317,16401,16468,16531,16617,16680,16775,16846,16940,17009,17094,17159,17234,17321,17385,17461,17525,17602,17665,17731,17802,17900,17989,18075,18169,18230,18300,18369,18452,18524,18586,18657,18731,18804,18869,18937,19019,19068,19130,19470,19536,19589,19651,19741,19805,19905,19963,20021,20100,20166,20241,20330,20420,20507,20605,20687,20824,20964,21028,21108,21158,21219,21281,21355,21427,21510,21584,21670,21717,21765,21813,21862,22065,22154,22251,22303,22388,22449,22501,22581,22644,22727,22794,22867,22938,23009,23076,23167,23238,23306,23360,23428,23490,23552,23615,23686,23744,23810,23865,23940,24011,24087,24160,24218,24270",
+ "endLines": "4,7,10,17,20,23,26,29,57,73,74,75,76,77,78,79,80,81,100,101,102,103,104,105,106,109,110,111,112,113,114,115,116,118,121,182,184,185,186,187,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,284,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336",
+ "endColumns": "14,14,14,14,14,14,14,14,43,83,70,57,50,78,54,51,52,54,56,77,57,54,56,61,55,54,79,75,90,78,115,71,66,68,57,60,64,67,67,66,51,69,75,74,76,69,62,79,87,80,78,64,78,84,62,78,80,67,83,49,56,60,65,65,84,50,48,44,44,51,84,61,55,64,62,83,66,62,85,62,94,70,93,68,84,64,74,86,63,75,63,76,62,65,70,97,88,85,93,60,69,68,82,71,61,70,73,72,64,67,81,48,61,70,65,52,61,89,63,99,57,57,78,65,74,88,89,86,97,81,22,26,63,79,49,60,61,73,71,82,73,85,46,47,47,48,45,88,96,51,84,60,51,79,62,82,66,72,70,70,66,90,70,67,53,67,61,61,62,70,57,65,54,74,70,75,72,57,51,56",
+ "endOffsets": "263,377,491,757,862,994,1132,1247,3848,5209,5280,5338,5389,5468,5523,5575,5628,5683,7554,7632,7690,7745,7802,7864,7920,8124,8204,8280,8371,8450,8566,8638,8705,8836,9052,13333,13468,13536,13604,13671,13792,13982,14058,14133,14210,14280,14343,14423,14511,14592,14671,14736,14815,14900,14963,15042,15123,15191,15275,15325,15382,15443,15509,15575,15660,15790,15839,15884,15929,15981,16066,16128,16184,16249,16312,16396,16463,16526,16612,16675,16770,16841,16935,17004,17089,17154,17229,17316,17380,17456,17520,17597,17660,17726,17797,17895,17984,18070,18164,18225,18295,18364,18447,18519,18581,18652,18726,18799,18864,18932,19014,19063,19125,19196,19531,19584,19646,19736,19800,19900,19958,20016,20095,20161,20236,20325,20415,20502,20600,20682,20819,20959,21023,21103,21153,21214,21276,21350,21422,21505,21579,21665,21712,21760,21808,21857,21903,22149,22246,22298,22383,22444,22496,22576,22639,22722,22789,22862,22933,23004,23071,23162,23233,23301,23355,23423,23485,23547,23610,23681,23739,23805,23860,23935,24006,24082,24155,24213,24265,24322"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,171,252,322,442,610,690",
+ "endColumns": "65,80,69,119,167,79,76",
+ "endOffsets": "166,247,317,437,605,685,762"
+ },
+ "to": {
+ "startLines": "107,119,183,190,266,302,303",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "7925,8841,13338,13797,19302,21908,21988",
+ "endColumns": "65,80,69,119,167,79,76",
+ "endOffsets": "7986,8917,13403,13912,19465,21983,22060"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-sk_values-sk.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sk/values-sk.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,378,453,528,606,698,781,873,1001,1082,1147,1246,1322,1387,1477,1541,1607,1661,1730,1790,1844,1961,2021,2083,2137,2209,2339,2426,2518,2657,2726,2804,2935,3023,3103,3157,3208,3274,3346,3423,3506,3588,3660,3737,3810,3881,3986,4074,4146,4238,4334,4408,4482,4578,4630,4712,4779,4866,4953,5015,5079,5142,5210,5316,5423,5521,5638,5696,5751",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,74,74,77,91,82,91,127,80,64,98,75,64,89,63,65,53,68,59,53,116,59,61,53,71,129,86,91,138,68,77,130,87,79,53,50,65,71,76,82,81,71,76,72,70,104,87,71,91,95,73,73,95,51,81,66,86,86,61,63,62,67,105,106,97,116,57,54,78",
+ "endOffsets": "373,448,523,601,693,776,868,996,1077,1142,1241,1317,1382,1472,1536,1602,1656,1725,1785,1839,1956,2016,2078,2132,2204,2334,2421,2513,2652,2721,2799,2930,3018,3098,3152,3203,3269,3341,3418,3501,3583,3655,3732,3805,3876,3981,4069,4141,4233,4329,4403,4477,4573,4625,4707,4774,4861,4948,5010,5074,5137,5205,5311,5418,5516,5633,5691,5746,5825"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3140,3215,3290,3368,3460,4280,4372,4500,7028,7181,7600,7676,7741,7831,7895,7961,8015,8084,8144,8198,8315,8375,8437,8491,8563,8693,8780,8872,9011,9080,9158,9289,9377,9457,9511,9562,9628,9700,9777,9860,9942,10014,10091,10164,10235,10340,10428,10500,10592,10688,10762,10836,10932,10984,11066,11133,11220,11307,11369,11433,11496,11564,11670,11777,11875,11992,12050,12183",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,74,74,77,91,82,91,127,80,64,98,75,64,89,63,65,53,68,59,53,116,59,61,53,71,129,86,91,138,68,77,130,87,79,53,50,65,71,76,82,81,71,76,72,70,104,87,71,91,95,73,73,95,51,81,66,86,86,61,63,62,67,105,106,97,116,57,54,78",
+ "endOffsets": "423,3210,3285,3363,3455,3538,4367,4495,4576,7088,7275,7671,7736,7826,7890,7956,8010,8079,8139,8193,8310,8370,8432,8486,8558,8688,8775,8867,9006,9075,9153,9284,9372,9452,9506,9557,9623,9695,9772,9855,9937,10009,10086,10159,10230,10335,10423,10495,10587,10683,10757,10831,10927,10979,11061,11128,11215,11302,11364,11428,11491,11559,11665,11772,11870,11987,12045,12100,12257"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-sk/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,451,571,677,829,953,1062,1160,1325,1432,1598,1724,1883,2043,2107,2170",
+ "endColumns": "101,155,119,105,151,123,108,97,164,106,165,125,158,159,63,62,82",
+ "endOffsets": "294,450,570,676,828,952,1061,1159,1324,1431,1597,1723,1882,2042,2106,2169,2252"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4581,4687,4847,4971,5081,5237,5365,5478,5719,5888,5999,6169,6299,6462,6626,6694,6761",
+ "endColumns": "105,159,123,109,155,127,112,101,168,110,169,129,162,163,67,66,86",
+ "endOffsets": "4682,4842,4966,5076,5232,5360,5473,5575,5883,5994,6164,6294,6457,6621,6689,6756,6843"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-sk/values-sk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,354,452,562,670,792",
+ "endColumns": "95,101,100,97,109,107,121,100",
+ "endOffsets": "146,248,349,447,557,665,787,888"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3543,3639,3741,3842,3940,4050,4158,12492",
+ "endColumns": "95,101,100,97,109,107,121,100",
+ "endOffsets": "3634,3736,3837,3935,4045,4153,4275,12588"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sk/values-sk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,313,424,510,618,736,815,892,983,1076,1174,1268,1368,1461,1556,1654,1745,1836,1920,2025,2133,2232,2338,2450,2553,2719,2817",
+ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82",
+ "endOffsets": "207,308,419,505,613,731,810,887,978,1071,1169,1263,1363,1456,1551,1649,1740,1831,1915,2020,2128,2227,2333,2445,2548,2714,2812,2895"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "428,535,636,747,833,941,1059,1138,1215,1306,1399,1497,1591,1691,1784,1879,1977,2068,2159,2243,2348,2456,2555,2661,2773,2876,3042,12409",
+ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82",
+ "endOffsets": "530,631,742,828,936,1054,1133,1210,1301,1394,1492,1586,1686,1779,1874,1972,2063,2154,2238,2343,2451,2550,2656,2768,2871,3037,3135,12487"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-sk/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "134",
+ "endOffsets": "329"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5580",
+ "endColumns": "138",
+ "endOffsets": "5714"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-sk/values-sk.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,162,265,380",
+ "endColumns": "106,102,114,101",
+ "endOffsets": "157,260,375,477"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6921,7280,7383,7498",
+ "endColumns": "106,102,114,101",
+ "endOffsets": "7023,7378,7493,7595"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sk/values-sk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,266,344,491,660,744",
+ "endColumns": "72,87,77,146,168,83,80",
+ "endOffsets": "173,261,339,486,655,739,820"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6848,7093,12105,12262,12593,12762,12846",
+ "endColumns": "72,87,77,146,168,83,80",
+ "endOffsets": "6916,7176,12178,12404,12757,12841,12922"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-el_values-el.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-el/values-el.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,270,358,444,529,625,712,814,931,1017,1083,1183,1265,1328,1419,1482,1547,1609,1678,1740,1794,1932,1989,2050,2104,2177,2330,2415,2499,2638,2719,2804,2945,3035,3121,3176,3227,3293,3371,3456,3541,3624,3696,3776,3856,3927,4034,4126,4198,4295,4392,4466,4540,4642,4698,4785,4857,4945,5037,5099,5163,5226,5296,5412,5521,5630,5735,5794,5849",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,87,85,84,95,86,101,116,85,65,99,81,62,90,62,64,61,68,61,53,137,56,60,53,72,152,84,83,138,80,84,140,89,85,54,50,65,77,84,84,82,71,79,79,70,106,91,71,96,96,73,73,101,55,86,71,87,91,61,63,62,69,115,108,108,104,58,54,90",
+ "endOffsets": "265,353,439,524,620,707,809,926,1012,1078,1178,1260,1323,1414,1477,1542,1604,1673,1735,1789,1927,1984,2045,2099,2172,2325,2410,2494,2633,2714,2799,2940,3030,3116,3171,3222,3288,3366,3451,3536,3619,3691,3771,3851,3922,4029,4121,4193,4290,4387,4461,4535,4637,4693,4780,4852,4940,5032,5094,5158,5221,5291,5407,5516,5625,5730,5789,5844,5935"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3101,3189,3275,3360,3456,4278,4380,4497,7132,7285,7727,7809,7872,7963,8026,8091,8153,8222,8284,8338,8476,8533,8594,8648,8721,8874,8959,9043,9182,9263,9348,9489,9579,9665,9720,9771,9837,9915,10000,10085,10168,10240,10320,10400,10471,10578,10670,10742,10839,10936,11010,11084,11186,11242,11329,11401,11489,11581,11643,11707,11770,11840,11956,12065,12174,12279,12338,12476",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,87,85,84,95,86,101,116,85,65,99,81,62,90,62,64,61,68,61,53,137,56,60,53,72,152,84,83,138,80,84,140,89,85,54,50,65,77,84,84,82,71,79,79,70,106,91,71,96,96,73,73,101,55,86,71,87,91,61,63,62,69,115,108,108,104,58,54,90",
+ "endOffsets": "315,3184,3270,3355,3451,3538,4375,4492,4578,7193,7380,7804,7867,7958,8021,8086,8148,8217,8279,8333,8471,8528,8589,8643,8716,8869,8954,9038,9177,9258,9343,9484,9574,9660,9715,9766,9832,9910,9995,10080,10163,10235,10315,10395,10466,10573,10665,10737,10834,10931,11005,11079,11181,11237,11324,11396,11484,11576,11638,11702,11765,11835,11951,12060,12169,12274,12333,12388,12562"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-el/values-el.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,223,334,451,536,642,765,854,939,1030,1123,1218,1312,1412,1505,1600,1697,1788,1879,1964,2075,2184,2286,2397,2507,2615,2786,2886",
+ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85",
+ "endOffsets": "218,329,446,531,637,760,849,934,1025,1118,1213,1307,1407,1500,1595,1692,1783,1874,1959,2070,2179,2281,2392,2502,2610,2781,2881,2967"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "320,438,549,666,751,857,980,1069,1154,1245,1338,1433,1527,1627,1720,1815,1912,2003,2094,2179,2290,2399,2501,2612,2722,2830,3001,12709",
+ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85",
+ "endOffsets": "433,544,661,746,852,975,1064,1149,1240,1333,1428,1522,1622,1715,1810,1907,1998,2089,2174,2285,2394,2496,2607,2717,2825,2996,3096,12790"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-el/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,482,610,717,894,1015,1129,1230,1415,1519,1685,1810,1984,2125,2190,2248",
+ "endColumns": "106,181,127,106,176,120,113,100,184,103,165,124,173,140,64,57,78",
+ "endOffsets": "299,481,609,716,893,1014,1128,1229,1414,1518,1684,1809,1983,2124,2189,2247,2326"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4583,4694,4880,5012,5123,5304,5429,5547,5816,6005,6113,6283,6412,6590,6735,6804,6866",
+ "endColumns": "110,185,131,110,180,124,117,104,188,107,169,128,177,144,68,61,82",
+ "endOffsets": "4689,4875,5007,5118,5299,5424,5542,5647,6000,6108,6278,6407,6585,6730,6799,6861,6944"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-el/values-el.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,265,348,490,659,744",
+ "endColumns": "72,86,82,141,168,84,79",
+ "endOffsets": "173,260,343,485,654,739,819"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6949,7198,12393,12567,12896,13065,13150",
+ "endColumns": "72,86,82,141,168,84,79",
+ "endOffsets": "7017,7280,12471,12704,13060,13145,13225"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-el/values-el.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,165,272,397",
+ "endColumns": "109,106,124,109",
+ "endOffsets": "160,267,392,502"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7022,7385,7492,7617",
+ "endColumns": "109,106,124,109",
+ "endOffsets": "7127,7487,7612,7722"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-el/values-el.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,256,356,459,567,673,790",
+ "endColumns": "97,102,99,102,107,105,116,100",
+ "endOffsets": "148,251,351,454,562,668,785,886"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3543,3641,3744,3844,3947,4055,4161,12795",
+ "endColumns": "97,102,99,102,107,105,116,100",
+ "endOffsets": "3636,3739,3839,3942,4050,4156,4273,12891"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-el/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "159",
+ "endOffsets": "354"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5652",
+ "endColumns": "163",
+ "endOffsets": "5811"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ro_values-ro.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ro/values-ro.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,226,330,443,527,631,752,837,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1855,1938,2050,2158,2258,2372,2478,2584,2748,2851",
+ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83",
+ "endOffsets": "221,325,438,522,626,747,832,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1850,1933,2045,2153,2253,2367,2473,2579,2743,2846,2930"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "371,492,596,709,793,897,1018,1103,1183,1274,1367,1462,1556,1656,1749,1844,1938,2029,2121,2204,2316,2424,2524,2638,2744,2850,3014,12501",
+ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83",
+ "endOffsets": "487,591,704,788,892,1013,1098,1178,1269,1362,1457,1551,1651,1744,1839,1933,2024,2116,2199,2311,2419,2519,2633,2739,2845,3009,3112,12580"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ro/values-ro.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,162,264,377",
+ "endColumns": "106,101,112,102",
+ "endOffsets": "157,259,372,475"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6937,7291,7393,7506",
+ "endColumns": "106,101,112,102",
+ "endOffsets": "7039,7388,7501,7604"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ro/values-ro.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,321,413,501,588,684,774,875,996,1080,1146,1241,1315,1375,1459,1521,1587,1645,1718,1781,1837,1956,2013,2074,2130,2204,2349,2435,2519,2652,2734,2817,2963,3053,3133,3188,3239,3305,3378,3456,3544,3629,3700,3777,3851,3923,4029,4120,4194,4289,4387,4461,4541,4642,4695,4781,4847,4936,5026,5088,5152,5215,5289,5401,5511,5621,5726,5785,5840",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,91,87,86,95,89,100,120,83,65,94,73,59,83,61,65,57,72,62,55,118,56,60,55,73,144,85,83,132,81,82,145,89,79,54,50,65,72,77,87,84,70,76,73,71,105,90,73,94,97,73,79,100,52,85,65,88,89,61,63,62,73,111,109,109,104,58,54,78",
+ "endOffsets": "316,408,496,583,679,769,870,991,1075,1141,1236,1310,1370,1454,1516,1582,1640,1713,1776,1832,1951,2008,2069,2125,2199,2344,2430,2514,2647,2729,2812,2958,3048,3128,3183,3234,3300,3373,3451,3539,3624,3695,3772,3846,3918,4024,4115,4189,4284,4382,4456,4536,4637,4690,4776,4842,4931,5021,5083,5147,5210,5284,5396,5506,5616,5721,5780,5835,5914"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3117,3209,3297,3384,3480,4297,4398,4519,7044,7196,7609,7683,7743,7827,7889,7955,8013,8086,8149,8205,8324,8381,8442,8498,8572,8717,8803,8887,9020,9102,9185,9331,9421,9501,9556,9607,9673,9746,9824,9912,9997,10068,10145,10219,10291,10397,10488,10562,10657,10755,10829,10909,11010,11063,11149,11215,11304,11394,11456,11520,11583,11657,11769,11879,11989,12094,12153,12283",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,91,87,86,95,89,100,120,83,65,94,73,59,83,61,65,57,72,62,55,118,56,60,55,73,144,85,83,132,81,82,145,89,79,54,50,65,72,77,87,84,70,76,73,71,105,90,73,94,97,73,79,100,52,85,65,88,89,61,63,62,73,111,109,109,104,58,54,78",
+ "endOffsets": "366,3204,3292,3379,3475,3565,4393,4514,4598,7105,7286,7678,7738,7822,7884,7950,8008,8081,8144,8200,8319,8376,8437,8493,8567,8712,8798,8882,9015,9097,9180,9326,9416,9496,9551,9602,9668,9741,9819,9907,9992,10063,10140,10214,10286,10392,10483,10557,10652,10750,10824,10904,11005,11058,11144,11210,11299,11389,11451,11515,11578,11652,11764,11874,11984,12089,12148,12203,12357"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ro/values-ro.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,355,454,556,665,782",
+ "endColumns": "97,101,99,98,101,108,116,100",
+ "endOffsets": "148,250,350,449,551,660,777,878"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3570,3668,3770,3870,3969,4071,4180,12585",
+ "endColumns": "97,101,99,98,101,108,116,100",
+ "endOffsets": "3663,3765,3865,3964,4066,4175,4292,12681"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ro/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,453,579,685,832,958,1077,1182,1340,1447,1602,1731,1873,2035,2100,2164",
+ "endColumns": "103,155,125,105,146,125,118,104,157,106,154,128,141,161,64,63,78",
+ "endOffsets": "296,452,578,684,831,957,1076,1181,1339,1446,1601,1730,1872,2034,2099,2163,2242"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4603,4711,4871,5001,5111,5262,5392,5515,5769,5931,6042,6201,6334,6480,6646,6715,6783",
+ "endColumns": "107,159,129,109,150,129,122,108,161,110,158,132,145,165,68,67,82",
+ "endOffsets": "4706,4866,4996,5106,5257,5387,5510,5619,5926,6037,6196,6329,6475,6641,6710,6778,6861"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ro/values-ro.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,262,337,476,645,732",
+ "endColumns": "70,85,74,138,168,86,80",
+ "endOffsets": "171,257,332,471,640,727,808"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6866,7110,12208,12362,12686,12855,12942",
+ "endColumns": "70,85,74,138,168,86,80",
+ "endOffsets": "6932,7191,12278,12496,12850,12937,13018"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ro/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "140",
+ "endOffsets": "335"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5624",
+ "endColumns": "144",
+ "endOffsets": "5764"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ne_values-ne.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ne/values-ne.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,214,325,433,524,631,751,835,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1937,2050,2151,2247,2360,2470,2587,2754,2865",
+ "endColumns": "108,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79",
+ "endOffsets": "209,320,428,519,626,746,830,909,1000,1093,1188,1282,1382,1475,1570,1664,1755,1846,1932,2045,2146,2242,2355,2465,2582,2749,2860,2940"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "312,421,532,640,731,838,958,1042,1121,1212,1305,1400,1494,1594,1687,1782,1876,1967,2058,2144,2257,2358,2454,2567,2677,2794,2961,12515",
+ "endColumns": "108,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79",
+ "endOffsets": "416,527,635,726,833,953,1037,1116,1207,1300,1395,1489,1589,1682,1777,1871,1962,2053,2139,2252,2353,2449,2562,2672,2789,2956,3067,12590"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ne/values-ne.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,156,268,382",
+ "endColumns": "100,111,113,107",
+ "endOffsets": "151,263,377,485"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6944,7291,7403,7517",
+ "endColumns": "100,111,113,107",
+ "endOffsets": "7040,7398,7512,7620"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ne/values-ne.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,262,351,439,521,616,705,807,917,1004,1070,1166,1232,1293,1398,1462,1534,1592,1666,1728,1782,1895,1955,2016,2075,2153,2277,2358,2443,2579,2660,2743,2874,2957,3043,3105,3159,3225,3302,3381,3469,3552,3621,3697,3778,3846,3950,4041,4119,4212,4309,4383,4462,4560,4620,4708,4774,4862,4950,5012,5080,5143,5209,5314,5420,5515,5620,5686,5744",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,88,87,81,94,88,101,109,86,65,95,65,60,104,63,71,57,73,61,53,112,59,60,58,77,123,80,84,135,80,82,130,82,85,61,53,65,76,78,87,82,68,75,80,67,103,90,77,92,96,73,78,97,59,87,65,87,87,61,67,62,65,104,105,94,104,65,57,83",
+ "endOffsets": "257,346,434,516,611,700,802,912,999,1065,1161,1227,1288,1393,1457,1529,1587,1661,1723,1777,1890,1950,2011,2070,2148,2272,2353,2438,2574,2655,2738,2869,2952,3038,3100,3154,3220,3297,3376,3464,3547,3616,3692,3773,3841,3945,4036,4114,4207,4304,4378,4457,4555,4615,4703,4769,4857,4945,5007,5075,5138,5204,5309,5415,5510,5615,5681,5739,5823"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3072,3161,3249,3331,3426,4235,4337,4447,7045,7195,7625,7691,7752,7857,7921,7993,8051,8125,8187,8241,8354,8414,8475,8534,8612,8736,8817,8902,9038,9119,9202,9333,9416,9502,9564,9618,9684,9761,9840,9928,10011,10080,10156,10237,10305,10409,10500,10578,10671,10768,10842,10921,11019,11079,11167,11233,11321,11409,11471,11539,11602,11668,11773,11879,11974,12079,12145,12284",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,88,87,81,94,88,101,109,86,65,95,65,60,104,63,71,57,73,61,53,112,59,60,58,77,123,80,84,135,80,82,130,82,85,61,53,65,76,78,87,82,68,75,80,67,103,90,77,92,96,73,78,97,59,87,65,87,87,61,67,62,65,104,105,94,104,65,57,83",
+ "endOffsets": "307,3156,3244,3326,3421,3510,4332,4442,4529,7106,7286,7686,7747,7852,7916,7988,8046,8120,8182,8236,8349,8409,8470,8529,8607,8731,8812,8897,9033,9114,9197,9328,9411,9497,9559,9613,9679,9756,9835,9923,10006,10075,10151,10232,10300,10404,10495,10573,10666,10763,10837,10916,11014,11074,11162,11228,11316,11404,11466,11534,11597,11663,11768,11874,11969,12074,12140,12198,12363"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ne/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "159",
+ "endOffsets": "354"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5576",
+ "endColumns": "163",
+ "endOffsets": "5735"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ne/values-ne.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,188,272,353,500,669,767",
+ "endColumns": "82,83,80,146,168,97,79",
+ "endOffsets": "183,267,348,495,664,762,842"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6861,7111,12203,12368,12696,12865,12963",
+ "endColumns": "82,83,80,146,168,97,79",
+ "endOffsets": "6939,7190,12279,12510,12860,12958,13038"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ne/values-ne.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,261,363,469,567,667,775",
+ "endColumns": "102,102,101,105,97,99,107,100",
+ "endOffsets": "153,256,358,464,562,662,770,871"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3515,3618,3721,3823,3929,4027,4127,12595",
+ "endColumns": "102,102,101,105,97,99,107,100",
+ "endOffsets": "3613,3716,3818,3924,4022,4122,4230,12691"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ne/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,454,584,697,864,996,1102,1203,1379,1489,1649,1778,1922,2070,2132,2200",
+ "endColumns": "106,153,129,112,166,131,105,100,175,109,159,128,143,147,61,67,87",
+ "endOffsets": "299,453,583,696,863,995,1101,1202,1378,1488,1648,1777,1921,2069,2131,2199,2287"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4534,4645,4803,4937,5054,5225,5361,5471,5740,5920,6034,6198,6331,6479,6631,6697,6769",
+ "endColumns": "110,157,133,116,170,135,109,104,179,113,163,132,147,151,65,71,91",
+ "endOffsets": "4640,4798,4932,5049,5220,5356,5466,5571,5915,6029,6193,6326,6474,6626,6692,6764,6856"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-en-rAU_values-en-rAU.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-en-rAU/values-en-rAU.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,44",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,4247",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,4325"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-en-rAU/values-en-rAU.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,352,451,555,658,774",
+ "endColumns": "95,101,98,98,103,102,115,100",
+ "endOffsets": "146,248,347,446,550,653,769,870"
+ },
+ "to": {
+ "startLines": "29,30,31,32,33,34,35,45",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "2762,2858,2960,3059,3158,3262,3365,4330",
+ "endColumns": "95,101,98,98,103,102,115,100",
+ "endOffsets": "2853,2955,3054,3153,3257,3360,3476,4426"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-en-rAU/values-en-rAU.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,153,250,359",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "148,245,354,453"
+ },
+ "to": {
+ "startLines": "37,39,40,41",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "3549,3734,3831,3940",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "3642,3826,3935,4034"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-en-rAU/values-en-rAU.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,173,260,334,468,637,717",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "168,255,329,463,632,712,788"
+ },
+ "to": {
+ "startLines": "36,38,42,43,46,47,48",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "3481,3647,4039,4113,4431,4600,4680",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "3544,3729,4108,4242,4595,4675,4751"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-b+sr+Latn_values-b+sr+Latn.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-b+sr+Latn/values-b+sr+Latn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,313,419,505,609,731,816,898,989,1082,1177,1271,1371,1464,1559,1664,1755,1846,1932,2037,2143,2246,2353,2462,2569,2739,2836",
+ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86",
+ "endOffsets": "207,308,414,500,604,726,811,893,984,1077,1172,1266,1366,1459,1554,1659,1750,1841,1927,2032,2138,2241,2348,2457,2564,2734,2831,2918"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "374,481,582,688,774,878,1000,1085,1167,1258,1351,1446,1540,1640,1733,1828,1933,2024,2115,2201,2306,2412,2515,2622,2731,2838,3008,12328",
+ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86",
+ "endOffsets": "476,577,683,769,873,995,1080,1162,1253,1346,1441,1535,1635,1728,1823,1928,2019,2110,2196,2301,2407,2510,2617,2726,2833,3003,3100,12410"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-b+sr+Latn/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "202",
+ "endColumns": "125",
+ "endOffsets": "327"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5571",
+ "endColumns": "129",
+ "endOffsets": "5696"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,324,401,478,558,666,760,854,986,1067,1133,1226,1294,1357,1460,1520,1586,1642,1713,1773,1827,1939,1996,2057,2111,2187,2312,2399,2482,2621,2703,2786,2917,3005,3083,3137,3193,3259,3333,3411,3500,3582,3658,3734,3809,3881,3988,4078,4151,4243,4339,4411,4487,4583,4636,4718,4785,4872,4959,5021,5085,5148,5217,5322,5432,5528,5636,5694,5754",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,76,76,79,107,93,93,131,80,65,92,67,62,102,59,65,55,70,59,53,111,56,60,53,75,124,86,82,138,81,82,130,87,77,53,55,65,73,77,88,81,75,75,74,71,106,89,72,91,95,71,75,95,52,81,66,86,86,61,63,62,68,104,109,95,107,57,59,79",
+ "endOffsets": "319,396,473,553,661,755,849,981,1062,1128,1221,1289,1352,1455,1515,1581,1637,1708,1768,1822,1934,1991,2052,2106,2182,2307,2394,2477,2616,2698,2781,2912,3000,3078,3132,3188,3254,3328,3406,3495,3577,3653,3729,3804,3876,3983,4073,4146,4238,4334,4406,4482,4578,4631,4713,4780,4867,4954,5016,5080,5143,5212,5317,5427,5523,5631,5689,5749,5829"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3105,3182,3259,3339,3447,4267,4361,4493,6931,7084,7488,7556,7619,7722,7782,7848,7904,7975,8035,8089,8201,8258,8319,8373,8449,8574,8661,8744,8883,8965,9048,9179,9267,9345,9399,9455,9521,9595,9673,9762,9844,9920,9996,10071,10143,10250,10340,10413,10505,10601,10673,10749,10845,10898,10980,11047,11134,11221,11283,11347,11410,11479,11584,11694,11790,11898,11956,12096",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,76,76,79,107,93,93,131,80,65,92,67,62,102,59,65,55,70,59,53,111,56,60,53,75,124,86,82,138,81,82,130,87,77,53,55,65,73,77,88,81,75,75,74,71,106,89,72,91,95,71,75,95,52,81,66,86,86,61,63,62,68,104,109,95,107,57,59,79",
+ "endOffsets": "369,3177,3254,3334,3442,3536,4356,4488,4569,6992,7172,7551,7614,7717,7777,7843,7899,7970,8030,8084,8196,8253,8314,8368,8444,8569,8656,8739,8878,8960,9043,9174,9262,9340,9394,9450,9516,9590,9668,9757,9839,9915,9991,10066,10138,10245,10335,10408,10500,10596,10668,10744,10840,10893,10975,11042,11129,11216,11278,11342,11405,11474,11579,11689,11785,11893,11951,12011,12171"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,352,456,560,665,781",
+ "endColumns": "97,101,96,103,103,104,115,100",
+ "endOffsets": "148,250,347,451,555,660,776,877"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3541,3639,3741,3838,3942,4046,4151,12415",
+ "endColumns": "97,101,96,103,103,104,115,100",
+ "endOffsets": "3634,3736,3833,3937,4041,4146,4262,12511"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-b+sr+Latn/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "200,303,457,580,686,836,959,1067,1165,1310,1413,1569,1692,1837,1976,2040,2101",
+ "endColumns": "102,153,122,105,149,122,107,97,144,102,155,122,144,138,63,60,75",
+ "endOffsets": "302,456,579,685,835,958,1066,1164,1309,1412,1568,1691,1836,1975,2039,2100,2176"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4574,4681,4839,4966,5076,5230,5357,5469,5701,5850,5957,6117,6244,6393,6536,6604,6669",
+ "endColumns": "106,157,126,109,153,126,111,101,148,106,159,126,148,142,67,64,79",
+ "endOffsets": "4676,4834,4961,5071,5225,5352,5464,5566,5845,5952,6112,6239,6388,6531,6599,6664,6744"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,166,266,379",
+ "endColumns": "110,99,112,97",
+ "endOffsets": "161,261,374,472"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6820,7177,7277,7390",
+ "endColumns": "110,99,112,97",
+ "endOffsets": "6926,7272,7385,7483"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-b+sr+Latn/values-b+sr+Latn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,263,343,495,664,751",
+ "endColumns": "70,86,79,151,168,86,82",
+ "endOffsets": "171,258,338,490,659,746,829"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6749,6997,12016,12176,12516,12685,12772",
+ "endColumns": "70,86,79,151,168,86,82",
+ "endOffsets": "6815,7079,12091,12323,12680,12767,12850"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-mr_values-mr.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-mr/values-mr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,155,259,360,463,565,670,787",
+ "endColumns": "99,103,100,102,101,104,116,100",
+ "endOffsets": "150,254,355,458,560,665,782,883"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3431,3531,3635,3736,3839,3941,4046,12216",
+ "endColumns": "99,103,100,102,101,104,116,100",
+ "endOffsets": "3526,3630,3731,3834,3936,4041,4158,12312"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-mr/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "138",
+ "endOffsets": "333"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5442",
+ "endColumns": "142",
+ "endOffsets": "5580"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-mr/values-mr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,261,343,480,649,729",
+ "endColumns": "71,83,81,136,168,79,77",
+ "endOffsets": "172,256,338,475,644,724,802"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6620,6856,11839,11999,12317,12486,12566",
+ "endColumns": "71,83,81,136,168,79,77",
+ "endOffsets": "6687,6935,11916,12131,12481,12561,12639"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-mr/values-mr.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,156,257,368",
+ "endColumns": "100,100,110,101",
+ "endOffsets": "151,252,363,465"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6692,7031,7132,7243",
+ "endColumns": "100,100,110,101",
+ "endOffsets": "6788,7127,7238,7340"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-mr/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,460,579,687,828,945,1049,1142,1288,1392,1542,1662,1797,1946,2002,2064",
+ "endColumns": "102,163,118,107,140,116,103,92,145,103,149,119,134,148,55,61,76",
+ "endOffsets": "295,459,578,686,827,944,1048,1141,1287,1391,1541,1661,1796,1945,2001,2063,2140"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4461,4568,4736,4859,4971,5116,5237,5345,5585,5735,5843,5997,6121,6260,6413,6473,6539",
+ "endColumns": "106,167,122,111,144,120,107,96,149,107,153,123,138,152,59,65,80",
+ "endOffsets": "4563,4731,4854,4966,5111,5232,5340,5437,5730,5838,5992,6116,6255,6408,6468,6534,6615"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-mr/values-mr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,216,322,429,519,620,732,810,887,978,1071,1164,1261,1361,1454,1549,1643,1734,1825,1905,2012,2113,2210,2319,2421,2535,2692,2795",
+ "endColumns": "110,105,106,89,100,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,96,108,101,113,156,102,79",
+ "endOffsets": "211,317,424,514,615,727,805,882,973,1066,1159,1256,1356,1449,1544,1638,1729,1820,1900,2007,2108,2205,2314,2416,2530,2687,2790,2870"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "309,420,526,633,723,824,936,1014,1091,1182,1275,1368,1465,1565,1658,1753,1847,1938,2029,2109,2216,2317,2414,2523,2625,2739,2896,12136",
+ "endColumns": "110,105,106,89,100,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,96,108,101,113,156,102,79",
+ "endOffsets": "415,521,628,718,819,931,1009,1086,1177,1270,1363,1460,1560,1653,1748,1842,1933,2024,2104,2211,2312,2409,2518,2620,2734,2891,2994,12211"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-mr/values-mr.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,259,344,431,514,607,691,791,907,989,1052,1143,1208,1267,1355,1417,1479,1539,1606,1669,1723,1837,1894,1955,2009,2079,2198,2279,2364,2499,2576,2653,2794,2880,2964,3020,3072,3138,3208,3286,3373,3455,3525,3601,3672,3741,3855,3951,4025,4123,4219,4293,4363,4465,4520,4608,4675,4762,4855,4918,4982,5045,5111,5211,5320,5414,5521,5581,5637",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,84,86,82,92,83,99,115,81,62,90,64,58,87,61,61,59,66,62,53,113,56,60,53,69,118,80,84,134,76,76,140,85,83,55,51,65,69,77,86,81,69,75,70,68,113,95,73,97,95,73,69,101,54,87,66,86,92,62,63,62,65,99,108,93,106,59,55,77",
+ "endOffsets": "254,339,426,509,602,686,786,902,984,1047,1138,1203,1262,1350,1412,1474,1534,1601,1664,1718,1832,1889,1950,2004,2074,2193,2274,2359,2494,2571,2648,2789,2875,2959,3015,3067,3133,3203,3281,3368,3450,3520,3596,3667,3736,3850,3946,4020,4118,4214,4288,4358,4460,4515,4603,4670,4757,4850,4913,4977,5040,5106,5206,5315,5409,5516,5576,5632,5710"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2999,3084,3171,3254,3347,4163,4263,4379,6793,6940,7345,7410,7469,7557,7619,7681,7741,7808,7871,7925,8039,8096,8157,8211,8281,8400,8481,8566,8701,8778,8855,8996,9082,9166,9222,9274,9340,9410,9488,9575,9657,9727,9803,9874,9943,10057,10153,10227,10325,10421,10495,10565,10667,10722,10810,10877,10964,11057,11120,11184,11247,11313,11413,11522,11616,11723,11783,11921",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,84,86,82,92,83,99,115,81,62,90,64,58,87,61,61,59,66,62,53,113,56,60,53,69,118,80,84,134,76,76,140,85,83,55,51,65,69,77,86,81,69,75,70,68,113,95,73,97,95,73,69,101,54,87,66,86,92,62,63,62,65,99,108,93,106,59,55,77",
+ "endOffsets": "304,3079,3166,3249,3342,3426,4258,4374,4456,6851,7026,7405,7464,7552,7614,7676,7736,7803,7866,7920,8034,8091,8152,8206,8276,8395,8476,8561,8696,8773,8850,8991,9077,9161,9217,9269,9335,9405,9483,9570,9652,9722,9798,9869,9938,10052,10148,10222,10320,10416,10490,10560,10662,10717,10805,10872,10959,11052,11115,11179,11242,11308,11408,11517,11611,11718,11778,11834,11994"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-uk_values-uk.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-uk/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,456,579,685,835,960,1071,1172,1336,1438,1596,1717,1860,1998,2064,2121",
+ "endColumns": "103,158,122,105,149,124,110,100,163,101,157,120,142,137,65,56,83",
+ "endOffsets": "296,455,578,684,834,959,1070,1171,1335,1437,1595,1716,1859,1997,2063,2120,2204"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4613,4721,4884,5011,5121,5275,5404,5519,5770,5938,6044,6206,6331,6478,6620,6690,6751",
+ "endColumns": "107,162,126,109,153,128,114,104,167,105,161,124,146,141,69,60,87",
+ "endOffsets": "4716,4879,5006,5116,5270,5399,5514,5619,5933,6039,6201,6326,6473,6615,6685,6746,6834"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-uk/values-uk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,179,267,348,490,659,744",
+ "endColumns": "73,87,80,141,168,84,82",
+ "endOffsets": "174,262,343,485,654,739,822"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6839,7090,12143,12306,12631,12800,12885",
+ "endColumns": "73,87,80,141,168,84,82",
+ "endOffsets": "6908,7173,12219,12443,12795,12880,12963"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-uk/values-uk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,155,257,358,459,564,669,782",
+ "endColumns": "99,101,100,100,104,104,112,100",
+ "endOffsets": "150,252,353,454,559,664,777,878"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3591,3691,3793,3894,3995,4100,4205,12530",
+ "endColumns": "99,101,100,100,104,104,112,100",
+ "endOffsets": "3686,3788,3889,3990,4095,4200,4313,12626"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-uk/values-uk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,214,316,424,510,615,733,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1930,2036,2142,2240,2347,2454,2559,2729,2829",
+ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81",
+ "endOffsets": "209,311,419,505,610,728,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1925,2031,2137,2235,2342,2449,2554,2724,2824,2906"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "424,533,635,743,829,934,1052,1133,1212,1303,1396,1491,1585,1685,1778,1873,1968,2059,2150,2249,2355,2461,2559,2666,2773,2878,3048,12448",
+ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81",
+ "endOffsets": "528,630,738,824,929,1047,1128,1207,1298,1391,1486,1580,1680,1773,1868,1963,2054,2145,2244,2350,2456,2554,2661,2768,2873,3043,3143,12525"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-uk/values-uk.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,165,272,392",
+ "endColumns": "109,106,119,107",
+ "endOffsets": "160,267,387,495"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6913,7269,7376,7496",
+ "endColumns": "109,106,119,107",
+ "endOffsets": "7018,7371,7491,7599"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-uk/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "141",
+ "endOffsets": "336"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5624",
+ "endColumns": "145",
+ "endOffsets": "5765"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-uk/values-uk.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,374,452,530,618,726,817,913,1029,1112,1179,1270,1336,1399,1487,1549,1616,1674,1745,1804,1858,1972,2032,2095,2149,2222,2341,2427,2510,2649,2734,2821,2954,3042,3120,3177,3228,3294,3366,3442,3532,3615,3688,3765,3846,3920,4029,4119,4198,4289,4385,4459,4540,4635,4689,4771,4837,4924,5010,5072,5136,5199,5272,5379,5489,5587,5693,5754,5809",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,77,77,87,107,90,95,115,82,66,90,65,62,87,61,66,57,70,58,53,113,59,62,53,72,118,85,82,138,84,86,132,87,77,56,50,65,71,75,89,82,72,76,80,73,108,89,78,90,95,73,80,94,53,81,65,86,85,61,63,62,72,106,109,97,105,60,54,81",
+ "endOffsets": "369,447,525,613,721,812,908,1024,1107,1174,1265,1331,1394,1482,1544,1611,1669,1740,1799,1853,1967,2027,2090,2144,2217,2336,2422,2505,2644,2729,2816,2949,3037,3115,3172,3223,3289,3361,3437,3527,3610,3683,3760,3841,3915,4024,4114,4193,4284,4380,4454,4535,4630,4684,4766,4832,4919,5005,5067,5131,5194,5267,5374,5484,5582,5688,5749,5804,5886"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3148,3226,3304,3392,3500,4318,4414,4530,7023,7178,7604,7670,7733,7821,7883,7950,8008,8079,8138,8192,8306,8366,8429,8483,8556,8675,8761,8844,8983,9068,9155,9288,9376,9454,9511,9562,9628,9700,9776,9866,9949,10022,10099,10180,10254,10363,10453,10532,10623,10719,10793,10874,10969,11023,11105,11171,11258,11344,11406,11470,11533,11606,11713,11823,11921,12027,12088,12224",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,77,77,87,107,90,95,115,82,66,90,65,62,87,61,66,57,70,58,53,113,59,62,53,72,118,85,82,138,84,86,132,87,77,56,50,65,71,75,89,82,72,76,80,73,108,89,78,90,95,73,80,94,53,81,65,86,85,61,63,62,72,106,109,97,105,60,54,81",
+ "endOffsets": "419,3221,3299,3387,3495,3586,4409,4525,4608,7085,7264,7665,7728,7816,7878,7945,8003,8074,8133,8187,8301,8361,8424,8478,8551,8670,8756,8839,8978,9063,9150,9283,9371,9449,9506,9557,9623,9695,9771,9861,9944,10017,10094,10175,10249,10358,10448,10527,10618,10714,10788,10869,10964,11018,11100,11166,11253,11339,11401,11465,11528,11601,11708,11818,11916,12022,12083,12138,12301"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-kn_values-kn.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-kn/values-kn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,256,357,463,564,672,800",
+ "endColumns": "97,102,100,105,100,107,127,100",
+ "endOffsets": "148,251,352,458,559,667,795,896"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3532,3630,3733,3834,3940,4041,4149,12532",
+ "endColumns": "97,102,100,105,100,107,127,100",
+ "endOffsets": "3625,3728,3829,3935,4036,4144,4272,12628"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-kn/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,466,595,706,845,970,1074,1169,1315,1424,1585,1716,1857,2010,2075,2134",
+ "endColumns": "106,165,128,110,138,124,103,94,145,108,160,130,140,152,64,58,80",
+ "endOffsets": "299,465,594,705,844,969,1073,1168,1314,1423,1584,1715,1856,2009,2074,2133,2214"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4582,4693,4863,4996,5111,5254,5383,5491,5736,5886,5999,6164,6299,6444,6601,6670,6733",
+ "endColumns": "110,169,132,114,142,128,107,98,149,112,164,134,144,156,68,62,84",
+ "endOffsets": "4688,4858,4991,5106,5249,5378,5486,5585,5881,5994,6159,6294,6439,6596,6665,6728,6813"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-kn/values-kn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,219,331,444,532,639,765,843,919,1010,1103,1198,1292,1392,1485,1580,1674,1765,1856,1938,2054,2164,2263,2376,2481,2595,2759,2859",
+ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82",
+ "endOffsets": "214,326,439,527,634,760,838,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1933,2049,2159,2258,2371,2476,2590,2754,2854,2937"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "319,433,545,658,746,853,979,1057,1133,1224,1317,1412,1506,1606,1699,1794,1888,1979,2070,2152,2268,2378,2477,2590,2695,2809,2973,12449",
+ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82",
+ "endOffsets": "428,540,653,741,848,974,1052,1128,1219,1312,1407,1501,1601,1694,1789,1883,1974,2065,2147,2263,2373,2472,2585,2690,2804,2968,3068,12527"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-kn/values-kn.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,269,353,436,518,633,728,835,948,1033,1096,1190,1256,1318,1421,1487,1558,1617,1693,1758,1812,1925,1983,2044,2098,2177,2293,2376,2467,2609,2688,2767,2896,2984,3068,3125,3177,3243,3323,3413,3497,3576,3653,3730,3807,3876,3993,4092,4169,4262,4357,4431,4512,4608,4659,4743,4811,4897,4985,5048,5113,5176,5244,5349,5454,5549,5652,5713,5769",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,83,82,81,114,94,106,112,84,62,93,65,61,102,65,70,58,75,64,53,112,57,60,53,78,115,82,90,141,78,78,128,87,83,56,51,65,79,89,83,78,76,76,76,68,116,98,76,92,94,73,80,95,50,83,67,85,87,62,64,62,67,104,104,94,102,60,55,81",
+ "endOffsets": "264,348,431,513,628,723,830,943,1028,1091,1185,1251,1313,1416,1482,1553,1612,1688,1753,1807,1920,1978,2039,2093,2172,2288,2371,2462,2604,2683,2762,2891,2979,3063,3120,3172,3238,3318,3408,3492,3571,3648,3725,3802,3871,3988,4087,4164,4257,4352,4426,4507,4603,4654,4738,4806,4892,4980,5043,5108,5171,5239,5344,5449,5544,5647,5708,5764,5846"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3073,3157,3240,3322,3437,4277,4384,4497,7002,7151,7562,7628,7690,7793,7859,7930,7989,8065,8130,8184,8297,8355,8416,8470,8549,8665,8748,8839,8981,9060,9139,9268,9356,9440,9497,9549,9615,9695,9785,9869,9948,10025,10102,10179,10248,10365,10464,10541,10634,10729,10803,10884,10980,11031,11115,11183,11269,11357,11420,11485,11548,11616,11721,11826,11921,12024,12085,12218",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,83,82,81,114,94,106,112,84,62,93,65,61,102,65,70,58,75,64,53,112,57,60,53,78,115,82,90,141,78,78,128,87,83,56,51,65,79,89,83,78,76,76,76,68,116,98,76,92,94,73,80,95,50,83,67,85,87,62,64,62,67,104,104,94,102,60,55,81",
+ "endOffsets": "314,3152,3235,3317,3432,3527,4379,4492,4577,7060,7240,7623,7685,7788,7854,7925,7984,8060,8125,8179,8292,8350,8411,8465,8544,8660,8743,8834,8976,9055,9134,9263,9351,9435,9492,9544,9610,9690,9780,9864,9943,10020,10097,10174,10243,10360,10459,10536,10629,10724,10798,10879,10975,11026,11110,11178,11264,11352,11415,11480,11543,11611,11716,11821,11916,12019,12080,12136,12295"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-kn/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "141",
+ "endOffsets": "336"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5590",
+ "endColumns": "145",
+ "endOffsets": "5731"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-kn/values-kn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,261,338,487,656,736",
+ "endColumns": "69,85,76,148,168,79,76",
+ "endOffsets": "170,256,333,482,651,731,808"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6818,7065,12141,12300,12633,12802,12882",
+ "endColumns": "69,85,76,148,168,79,76",
+ "endOffsets": "6883,7146,12213,12444,12797,12877,12954"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-kn/values-kn.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,169,269,385",
+ "endColumns": "113,99,115,100",
+ "endOffsets": "164,264,380,481"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6888,7245,7345,7461",
+ "endColumns": "113,99,115,100",
+ "endOffsets": "6997,7340,7456,7557"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-w360dp-port-v13/values-w360dp-port-v13.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,114,170,226,293,358,413,478",
+ "endColumns": "58,55,55,66,64,54,64,68",
+ "endOffsets": "109,165,221,288,353,408,473,542"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-km_values-km.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-km/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,291,442,559,660,818,938,1055,1160,1314,1427,1594,1715,1856,2010,2070,2124",
+ "endColumns": "97,150,116,100,157,119,116,104,153,112,166,120,140,153,59,53,72",
+ "endOffsets": "290,441,558,659,817,937,1054,1159,1313,1426,1593,1714,1855,2009,2069,2123,2196"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4412,4514,4669,4790,4895,5057,5181,5302,5560,5718,5835,6006,6131,6276,6434,6498,6556",
+ "endColumns": "101,154,120,104,161,123,120,108,157,116,170,124,144,157,63,57,76",
+ "endOffsets": "4509,4664,4785,4890,5052,5176,5297,5406,5713,5830,6001,6126,6271,6429,6493,6551,6628"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-km/values-km.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,269,347,423,503,582,661,761,873,953,1018,1112,1182,1244,1331,1394,1459,1518,1583,1644,1701,1820,1878,1939,1996,2067,2197,2283,2361,2499,2574,2645,2795,2892,2970,3025,3081,3147,3227,3317,3403,3488,3567,3644,3714,3789,3901,3989,4062,4162,4261,4335,4411,4518,4572,4662,4735,4826,4922,4984,5048,5111,5182,5281,5379,5471,5567,5625,5685",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,75,79,78,78,99,111,79,64,93,69,61,86,62,64,58,64,60,56,118,57,60,56,70,129,85,77,137,74,70,149,96,77,54,55,65,79,89,85,84,78,76,69,74,111,87,72,99,98,73,75,106,53,89,72,90,95,61,63,62,70,98,97,91,95,57,59,82",
+ "endOffsets": "264,342,418,498,577,656,756,868,948,1013,1107,1177,1239,1326,1389,1454,1513,1578,1639,1696,1815,1873,1934,1991,2062,2192,2278,2356,2494,2569,2640,2790,2887,2965,3020,3076,3142,3222,3312,3398,3483,3562,3639,3709,3784,3896,3984,4057,4157,4256,4330,4406,4513,4567,4657,4730,4821,4917,4979,5043,5106,5177,5276,5374,5466,5562,5620,5680,5763"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3007,3085,3161,3241,3320,4120,4220,4332,6799,6954,7378,7448,7510,7597,7660,7725,7784,7849,7910,7967,8086,8144,8205,8262,8333,8463,8549,8627,8765,8840,8911,9061,9158,9236,9291,9347,9413,9493,9583,9669,9754,9833,9910,9980,10055,10167,10255,10328,10428,10527,10601,10677,10784,10838,10928,11001,11092,11188,11250,11314,11377,11448,11547,11645,11737,11833,11891,12029",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,75,79,78,78,99,111,79,64,93,69,61,86,62,64,58,64,60,56,118,57,60,56,70,129,85,77,137,74,70,149,96,77,54,55,65,79,89,85,84,78,76,69,74,111,87,72,99,98,73,75,106,53,89,72,90,95,61,63,62,70,98,97,91,95,57,59,82",
+ "endOffsets": "314,3080,3156,3236,3315,3394,4215,4327,4407,6859,7043,7443,7505,7592,7655,7720,7779,7844,7905,7962,8081,8139,8200,8257,8328,8458,8544,8622,8760,8835,8906,9056,9153,9231,9286,9342,9408,9488,9578,9664,9749,9828,9905,9975,10050,10162,10250,10323,10423,10522,10596,10672,10779,10833,10923,10996,11087,11183,11245,11309,11372,11443,11542,11640,11732,11828,11886,11946,12107"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-km/values-km.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,207,306,416,503,606,727,805,881,972,1065,1157,1251,1351,1444,1539,1633,1724,1815,1898,2002,2106,2206,2315,2424,2533,2695,2793",
+ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83",
+ "endOffsets": "202,301,411,498,601,722,800,876,967,1060,1152,1246,1346,1439,1534,1628,1719,1810,1893,1997,2101,2201,2310,2419,2528,2690,2788,2872"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "319,421,520,630,717,820,941,1019,1095,1186,1279,1371,1465,1565,1658,1753,1847,1938,2029,2112,2216,2320,2420,2529,2638,2747,2909,12245",
+ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83",
+ "endOffsets": "416,515,625,712,815,936,1014,1090,1181,1274,1366,1460,1560,1653,1748,1842,1933,2024,2107,2211,2315,2415,2524,2633,2742,2904,3002,12324"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-km/values-km.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,264,342,475,644,724",
+ "endColumns": "68,89,77,132,168,79,76",
+ "endOffsets": "169,259,337,470,639,719,796"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6633,6864,11951,12112,12430,12599,12679",
+ "endColumns": "68,89,77,132,168,79,76",
+ "endOffsets": "6697,6949,12024,12240,12594,12674,12751"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-km/values-km.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,152,249,382",
+ "endColumns": "96,96,132,99",
+ "endOffsets": "147,244,377,477"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6702,7048,7145,7278",
+ "endColumns": "96,96,132,99",
+ "endOffsets": "6794,7140,7273,7373"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-km/values-km.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,253,351,451,552,664,776",
+ "endColumns": "94,102,97,99,100,111,111,100",
+ "endOffsets": "145,248,346,446,547,659,771,872"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3399,3494,3597,3695,3795,3896,4008,12329",
+ "endColumns": "94,102,97,99,100,111,111,100",
+ "endOffsets": "3489,3592,3690,3790,3891,4003,4115,12425"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-km/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "144",
+ "endOffsets": "339"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5411",
+ "endColumns": "148",
+ "endOffsets": "5555"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-zu_values-zu.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-zu/values-zu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,257,356,459,565,672,785",
+ "endColumns": "97,103,98,102,105,106,112,100",
+ "endOffsets": "148,252,351,454,560,667,780,881"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3421,3519,3623,3722,3825,3931,4038,12565",
+ "endColumns": "97,103,98,102,105,106,112,100",
+ "endOffsets": "3514,3618,3717,3820,3926,4033,4146,12661"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-zu/values-zu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,320,432,520,623,738,817,894,985,1078,1173,1267,1367,1460,1555,1649,1740,1833,1914,2018,2121,2219,2326,2433,2538,2695,2791",
+ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81",
+ "endOffsets": "208,315,427,515,618,733,812,889,980,1073,1168,1262,1362,1455,1550,1644,1735,1828,1909,2013,2116,2214,2321,2428,2533,2690,2786,2868"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "321,429,536,648,736,839,954,1033,1110,1201,1294,1389,1483,1583,1676,1771,1865,1956,2049,2130,2234,2337,2435,2542,2649,2754,2911,12483",
+ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81",
+ "endOffsets": "424,531,643,731,834,949,1028,1105,1196,1289,1384,1478,1578,1671,1766,1860,1951,2044,2125,2229,2332,2430,2537,2644,2749,2906,3002,12560"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-zu/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,472,603,703,867,992,1112,1218,1374,1480,1641,1768,1922,2075,2132,2197",
+ "endColumns": "106,171,130,99,163,124,119,105,155,105,160,126,153,152,56,64,80",
+ "endOffsets": "299,471,602,702,866,991,1111,1217,1373,1479,1640,1767,1921,2074,2131,2196,2277"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4470,4581,4757,4892,4996,5164,5293,5417,5659,5819,5929,6094,6225,6383,6540,6601,6670",
+ "endColumns": "110,175,134,103,167,128,123,109,159,109,164,130,157,156,60,68,84",
+ "endOffsets": "4576,4752,4887,4991,5159,5288,5412,5522,5814,5924,6089,6220,6378,6535,6596,6665,6750"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-zu/values-zu.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,271,349,426,503,597,685,797,923,1004,1071,1174,1249,1312,1404,1475,1540,1607,1679,1751,1805,1926,1985,2049,2103,2180,2312,2397,2478,2627,2714,2797,2939,3031,3109,3165,3223,3289,3361,3438,3529,3612,3692,3771,3846,3925,4029,4119,4192,4286,4383,4457,4530,4629,4684,4768,4836,4924,5013,5075,5139,5202,5273,5382,5493,5596,5704,5764,5826",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,76,76,93,87,111,125,80,66,102,74,62,91,70,64,66,71,71,53,120,58,63,53,76,131,84,80,148,86,82,141,91,77,55,57,65,71,76,90,82,79,78,74,78,103,89,72,93,96,73,72,98,54,83,67,87,88,61,63,62,70,108,110,102,107,59,61,81",
+ "endOffsets": "266,344,421,498,592,680,792,918,999,1066,1169,1244,1307,1399,1470,1535,1602,1674,1746,1800,1921,1980,2044,2098,2175,2307,2392,2473,2622,2709,2792,2934,3026,3104,3160,3218,3284,3356,3433,3524,3607,3687,3766,3841,3920,4024,4114,4187,4281,4378,4452,4525,4624,4679,4763,4831,4919,5008,5070,5134,5197,5268,5377,5488,5591,5699,5759,5821,5903"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3007,3085,3162,3239,3333,4151,4263,4389,6938,7099,7534,7609,7672,7764,7835,7900,7967,8039,8111,8165,8286,8345,8409,8463,8540,8672,8757,8838,8987,9074,9157,9299,9391,9469,9525,9583,9649,9721,9798,9889,9972,10052,10131,10206,10285,10389,10479,10552,10646,10743,10817,10890,10989,11044,11128,11196,11284,11373,11435,11499,11562,11633,11742,11853,11956,12064,12124,12263",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,76,76,93,87,111,125,80,66,102,74,62,91,70,64,66,71,71,53,120,58,63,53,76,131,84,80,148,86,82,141,91,77,55,57,65,71,76,90,82,79,78,74,78,103,89,72,93,96,73,72,98,54,83,67,87,88,61,63,62,70,108,110,102,107,59,61,81",
+ "endOffsets": "316,3080,3157,3234,3328,3416,4258,4384,4465,7000,7197,7604,7667,7759,7830,7895,7962,8034,8106,8160,8281,8340,8404,8458,8535,8667,8752,8833,8982,9069,9152,9294,9386,9464,9520,9578,9644,9716,9793,9884,9967,10047,10126,10201,10280,10384,10474,10547,10641,10738,10812,10885,10984,11039,11123,11191,11279,11368,11430,11494,11557,11628,11737,11848,11951,12059,12119,12181,12340"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-zu/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "127",
+ "endOffsets": "322"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5527",
+ "endColumns": "131",
+ "endOffsets": "5654"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-zu/values-zu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,270,347,485,654,735",
+ "endColumns": "70,93,76,137,168,80,77",
+ "endOffsets": "171,265,342,480,649,730,808"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6755,7005,12186,12345,12666,12835,12916",
+ "endColumns": "70,93,76,137,168,80,77",
+ "endOffsets": "6821,7094,12258,12478,12830,12911,12989"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-zu/values-zu.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,167,275,387",
+ "endColumns": "111,107,111,111",
+ "endOffsets": "162,270,382,494"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6826,7202,7310,7422",
+ "endColumns": "111,107,111,111",
+ "endOffsets": "6933,7305,7417,7529"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ms_values-ms.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ms/values-ms.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,279,359,438,525,617,704,807,923,1006,1071,1164,1229,1288,1375,1437,1499,1559,1625,1687,1741,1849,1906,1967,2022,2093,2213,2304,2390,2538,2624,2710,2838,2926,3004,3057,3108,3174,3245,3323,3406,3485,3558,3634,3707,3778,3885,3977,4050,4140,4233,4307,4378,4469,4521,4601,4669,4753,4838,4900,4964,5027,5099,5203,5311,5407,5513,5570,5625",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,79,78,86,91,86,102,115,82,64,92,64,58,86,61,61,59,65,61,53,107,56,60,54,70,119,90,85,147,85,85,127,87,77,52,50,65,70,77,82,78,72,75,72,70,106,91,72,89,92,73,70,90,51,79,67,83,84,61,63,62,71,103,107,95,105,56,54,85",
+ "endOffsets": "274,354,433,520,612,699,802,918,1001,1066,1159,1224,1283,1370,1432,1494,1554,1620,1682,1736,1844,1901,1962,2017,2088,2208,2299,2385,2533,2619,2705,2833,2921,2999,3052,3103,3169,3240,3318,3401,3480,3553,3629,3702,3773,3880,3972,4045,4135,4228,4302,4373,4464,4516,4596,4664,4748,4833,4895,4959,5022,5094,5198,5306,5402,5508,5565,5620,5706"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3024,3104,3183,3270,3362,4192,4295,4411,7024,7178,7592,7657,7716,7803,7865,7927,7987,8053,8115,8169,8277,8334,8395,8450,8521,8641,8732,8818,8966,9052,9138,9266,9354,9432,9485,9536,9602,9673,9751,9834,9913,9986,10062,10135,10206,10313,10405,10478,10568,10661,10735,10806,10897,10949,11029,11097,11181,11266,11328,11392,11455,11527,11631,11739,11835,11941,11998,12136",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,79,78,86,91,86,102,115,82,64,92,64,58,86,61,61,59,65,61,53,107,56,60,54,70,119,90,85,147,85,85,127,87,77,52,50,65,70,77,82,78,72,75,72,70,106,91,72,89,92,73,70,90,51,79,67,83,84,61,63,62,71,103,107,95,105,56,54,85",
+ "endOffsets": "324,3099,3178,3265,3357,3444,4290,4406,4489,7084,7266,7652,7711,7798,7860,7922,7982,8048,8110,8164,8272,8329,8390,8445,8516,8636,8727,8813,8961,9047,9133,9261,9349,9427,9480,9531,9597,9668,9746,9829,9908,9981,10057,10130,10201,10308,10400,10473,10563,10656,10730,10801,10892,10944,11024,11092,11176,11261,11323,11387,11450,11522,11626,11734,11830,11936,11993,12048,12217"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ms/values-ms.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,216,321,429,516,620,731,810,888,979,1072,1167,1261,1359,1452,1547,1641,1732,1823,1903,2015,2123,2220,2329,2433,2540,2699,2800",
+ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80",
+ "endOffsets": "211,316,424,511,615,726,805,883,974,1067,1162,1256,1354,1447,1542,1636,1727,1818,1898,2010,2118,2215,2324,2428,2535,2694,2795,2876"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "329,440,545,653,740,844,955,1034,1112,1203,1296,1391,1485,1583,1676,1771,1865,1956,2047,2127,2239,2347,2444,2553,2657,2764,2923,12361",
+ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80",
+ "endOffsets": "435,540,648,735,839,950,1029,1107,1198,1291,1386,1480,1578,1671,1766,1860,1951,2042,2122,2234,2342,2439,2548,2652,2759,2918,3019,12437"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ms/values-ms.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,263,346,485,654,735",
+ "endColumns": "68,88,82,138,168,80,78",
+ "endOffsets": "169,258,341,480,649,730,809"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6850,7089,12053,12222,12543,12712,12793",
+ "endColumns": "68,88,82,138,168,80,78",
+ "endOffsets": "6914,7173,12131,12356,12707,12788,12867"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ms/values-ms.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,160,260,379",
+ "endColumns": "104,99,118,101",
+ "endOffsets": "155,255,374,476"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6919,7271,7371,7490",
+ "endColumns": "104,99,118,101",
+ "endOffsets": "7019,7366,7485,7587"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ms/values-ms.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,252,349,459,565,683,798",
+ "endColumns": "94,101,96,109,105,117,114,100",
+ "endOffsets": "145,247,344,454,560,678,793,894"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3449,3544,3646,3743,3853,3959,4077,12442",
+ "endColumns": "94,101,96,109,105,117,114,100",
+ "endOffsets": "3539,3641,3738,3848,3954,4072,4187,12538"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ms/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,464,590,692,860,988,1104,1207,1388,1493,1664,1795,1962,2133,2196,2256",
+ "endColumns": "101,168,125,101,167,127,115,102,180,104,170,130,166,170,62,59,78",
+ "endOffsets": "294,463,589,691,859,987,1103,1206,1387,1492,1663,1794,1961,2132,2195,2255,2334"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4494,4600,4773,4903,5009,5181,5313,5433,5686,5871,5980,6155,6290,6461,6636,6703,6767",
+ "endColumns": "105,172,129,105,171,131,119,106,184,108,174,134,170,174,66,63,82",
+ "endOffsets": "4595,4768,4898,5004,5176,5308,5428,5535,5866,5975,6150,6285,6456,6631,6698,6762,6845"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ms/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "141",
+ "endOffsets": "336"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5540",
+ "endColumns": "145",
+ "endOffsets": "5681"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-port_values-port.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-port/values-port.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "55",
+ "endOffsets": "106"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-hdpi-v4_values-hdpi-v4.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-hdpi-v4/values-hdpi-v4.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "6",
+ "endColumns": "13",
+ "endOffsets": "327"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-hr_values-hr.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-hr/values-hr.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,320,398,476,561,658,751,847,977,1061,1129,1225,1293,1356,1464,1524,1590,1646,1717,1777,1831,1957,2014,2076,2130,2205,2339,2424,2505,2642,2726,2812,2945,3036,3114,3170,3225,3291,3365,3443,3531,3613,3685,3762,3842,3916,4023,4116,4189,4281,4377,4451,4527,4623,4675,4757,4824,4911,4998,5060,5124,5187,5257,5363,5479,5576,5690,5750,5809",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,77,77,84,96,92,95,129,83,67,95,67,62,107,59,65,55,70,59,53,125,56,61,53,74,133,84,80,136,83,85,132,90,77,55,54,65,73,77,87,81,71,76,79,73,106,92,72,91,95,73,75,95,51,81,66,86,86,61,63,62,69,105,115,96,113,59,58,79",
+ "endOffsets": "315,393,471,556,653,746,842,972,1056,1124,1220,1288,1351,1459,1519,1585,1641,1712,1772,1826,1952,2009,2071,2125,2200,2334,2419,2500,2637,2721,2807,2940,3031,3109,3165,3220,3286,3360,3438,3526,3608,3680,3757,3837,3911,4018,4111,4184,4276,4372,4446,4522,4618,4670,4752,4819,4906,4993,5055,5119,5182,5252,5358,5474,5571,5685,5745,5804,5884"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3081,3159,3237,3322,3419,4238,4334,4464,6911,7066,7478,7546,7609,7717,7777,7843,7899,7970,8030,8084,8210,8267,8329,8383,8458,8592,8677,8758,8895,8979,9065,9198,9289,9367,9423,9478,9544,9618,9696,9784,9866,9938,10015,10095,10169,10276,10369,10442,10534,10630,10704,10780,10876,10928,11010,11077,11164,11251,11313,11377,11440,11510,11616,11732,11829,11943,12003,12145",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,77,77,84,96,92,95,129,83,67,95,67,62,107,59,65,55,70,59,53,125,56,61,53,74,133,84,80,136,83,85,132,90,77,55,54,65,73,77,87,81,71,76,79,73,106,92,72,91,95,73,75,95,51,81,66,86,86,61,63,62,69,105,115,96,113,59,58,79",
+ "endOffsets": "365,3154,3232,3317,3414,3507,4329,4459,4543,6974,7157,7541,7604,7712,7772,7838,7894,7965,8025,8079,8205,8262,8324,8378,8453,8587,8672,8753,8890,8974,9060,9193,9284,9362,9418,9473,9539,9613,9691,9779,9861,9933,10010,10090,10164,10271,10364,10437,10529,10625,10699,10775,10871,10923,11005,11072,11159,11246,11308,11372,11435,11505,11611,11727,11824,11938,11998,12057,12220"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-hr/values-hr.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,160,260,374",
+ "endColumns": "104,99,113,101",
+ "endOffsets": "155,255,369,471"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6806,7162,7262,7376",
+ "endColumns": "104,99,113,101",
+ "endOffsets": "6906,7257,7371,7473"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-hr/values-hr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,210,305,412,498,602,721,806,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1912,2016,2128,2229,2334,2448,2550,2719,2816",
+ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84",
+ "endOffsets": "205,300,407,493,597,716,801,883,974,1067,1162,1256,1356,1449,1544,1639,1730,1821,1907,2011,2123,2224,2329,2443,2545,2714,2811,2896"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "370,475,570,677,763,867,986,1071,1153,1244,1337,1432,1526,1626,1719,1814,1909,2000,2091,2177,2281,2393,2494,2599,2713,2815,2984,12373",
+ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84",
+ "endOffsets": "470,565,672,758,862,981,1066,1148,1239,1332,1427,1521,1621,1714,1809,1904,1995,2086,2172,2276,2388,2489,2594,2708,2810,2979,3076,12453"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-hr/values-hr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,263,346,494,663,750",
+ "endColumns": "70,86,82,147,168,86,82",
+ "endOffsets": "171,258,341,489,658,745,828"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6735,6979,12062,12225,12559,12728,12815",
+ "endColumns": "70,86,82,147,168,86,82",
+ "endOffsets": "6801,7061,12140,12368,12723,12810,12893"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-hr/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,448,574,680,833,959,1070,1173,1319,1422,1575,1699,1842,1981,2045,2103",
+ "endColumns": "101,152,125,105,152,125,110,102,145,102,152,123,142,138,63,57,76",
+ "endOffsets": "294,447,573,679,832,958,1069,1172,1318,1421,1574,1698,1841,1980,2044,2102,2179"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4548,4654,4811,4941,5051,5208,5338,5453,5692,5842,5949,6106,6234,6381,6524,6592,6654",
+ "endColumns": "105,156,129,109,156,129,114,106,149,106,156,127,146,142,67,61,80",
+ "endOffsets": "4649,4806,4936,5046,5203,5333,5448,5555,5837,5944,6101,6229,6376,6519,6587,6649,6730"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-hr/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "127",
+ "endOffsets": "322"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5560",
+ "endColumns": "131",
+ "endOffsets": "5687"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-hr/values-hr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,260,357,456,560,664,781",
+ "endColumns": "97,106,96,98,103,103,116,100",
+ "endOffsets": "148,255,352,451,555,659,776,877"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3512,3610,3717,3814,3913,4017,4121,12458",
+ "endColumns": "97,106,96,98,103,103,116,100",
+ "endOffsets": "3605,3712,3809,3908,4012,4116,4233,12554"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-es-rUS_values-es-rUS.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-es-rUS/values-es-rUS.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,272,350,492,661,749",
+ "endColumns": "69,96,77,141,168,87,81",
+ "endOffsets": "170,267,345,487,656,744,826"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6865,7109,12266,12427,12753,12922,13010",
+ "endColumns": "69,96,77,141,168,87,81",
+ "endOffsets": "6930,7201,12339,12564,12917,13005,13087"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-es-rUS/values-es-rUS.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,164,266,381",
+ "endColumns": "108,101,114,105",
+ "endOffsets": "159,261,376,482"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6935,7301,7403,7518",
+ "endColumns": "108,101,114,105",
+ "endOffsets": "7039,7398,7513,7619"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-es-rUS/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "141",
+ "endOffsets": "340"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5571",
+ "endColumns": "145",
+ "endOffsets": "5712"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-es-rUS/values-es-rUS.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,278,360,440,526,631,727,829,957,1038,1103,1198,1268,1331,1424,1488,1560,1623,1697,1761,1817,1935,1993,2055,2111,2191,2325,2414,2495,2636,2717,2797,2948,3038,3115,3171,3227,3293,3369,3451,3539,3628,3701,3778,3848,3925,4031,4120,4194,4288,4390,4462,4543,4647,4700,4785,4852,4945,5034,5096,5160,5223,5291,5402,5513,5615,5720,5780,5840",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,81,79,85,104,95,101,127,80,64,94,69,62,92,63,71,62,73,63,55,117,57,61,55,79,133,88,80,140,80,79,150,89,76,55,55,65,75,81,87,88,72,76,69,76,105,88,73,93,101,71,80,103,52,84,66,92,88,61,63,62,67,110,110,101,104,59,59,82",
+ "endOffsets": "273,355,435,521,626,722,824,952,1033,1098,1193,1263,1326,1419,1483,1555,1618,1692,1756,1812,1930,1988,2050,2106,2186,2320,2409,2490,2631,2712,2792,2943,3033,3110,3166,3222,3288,3364,3446,3534,3623,3696,3773,3843,3920,4026,4115,4189,4283,4385,4457,4538,4642,4695,4780,4847,4940,5029,5091,5155,5218,5286,5397,5508,5610,5715,5775,5835,5918"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3044,3126,3206,3292,3397,4225,4327,4455,7044,7206,7624,7694,7757,7850,7914,7986,8049,8123,8187,8243,8361,8419,8481,8537,8617,8751,8840,8921,9062,9143,9223,9374,9464,9541,9597,9653,9719,9795,9877,9965,10054,10127,10204,10274,10351,10457,10546,10620,10714,10816,10888,10969,11073,11126,11211,11278,11371,11460,11522,11586,11649,11717,11828,11939,12041,12146,12206,12344",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,81,79,85,104,95,101,127,80,64,94,69,62,92,63,71,62,73,63,55,117,57,61,55,79,133,88,80,140,80,79,150,89,76,55,55,65,75,81,87,88,72,76,69,76,105,88,73,93,101,71,80,103,52,84,66,92,88,61,63,62,67,110,110,101,104,59,59,82",
+ "endOffsets": "323,3121,3201,3287,3392,3488,4322,4450,4531,7104,7296,7689,7752,7845,7909,7981,8044,8118,8182,8238,8356,8414,8476,8532,8612,8746,8835,8916,9057,9138,9218,9369,9459,9536,9592,9648,9714,9790,9872,9960,10049,10122,10199,10269,10346,10452,10541,10615,10709,10811,10883,10964,11068,11121,11206,11273,11366,11455,11517,11581,11644,11712,11823,11934,12036,12141,12201,12261,12422"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-es-rUS/values-es-rUS.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,334,442,527,629,745,830,910,1001,1094,1189,1283,1382,1475,1574,1670,1761,1852,1934,2041,2140,2239,2347,2455,2562,2721,2821",
+ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82",
+ "endOffsets": "220,329,437,522,624,740,825,905,996,1089,1184,1278,1377,1470,1569,1665,1756,1847,1929,2036,2135,2234,2342,2450,2557,2716,2816,2899"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "328,448,557,665,750,852,968,1053,1133,1224,1317,1412,1506,1605,1698,1797,1893,1984,2075,2157,2264,2363,2462,2570,2678,2785,2944,12569",
+ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82",
+ "endOffsets": "443,552,660,745,847,963,1048,1128,1219,1312,1407,1501,1600,1693,1792,1888,1979,2070,2152,2259,2358,2457,2565,2673,2780,2939,3039,12647"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-es-rUS/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,301,463,591,695,852,979,1098,1200,1367,1472,1638,1767,1940,2114,2180,2238",
+ "endColumns": "103,161,127,103,156,126,118,101,166,104,165,128,172,173,65,57,73",
+ "endOffsets": "300,462,590,694,851,978,1097,1199,1366,1471,1637,1766,1939,2113,2179,2237,2311"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4536,4644,4810,4942,5050,5211,5342,5465,5717,5888,5997,6167,6300,6477,6655,6725,6787",
+ "endColumns": "107,165,131,107,160,130,122,105,170,108,169,132,176,177,69,61,77",
+ "endOffsets": "4639,4805,4937,5045,5206,5337,5460,5566,5883,5992,6162,6295,6472,6650,6720,6782,6860"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-es-rUS/values-es-rUS.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,154,256,356,454,561,667,787",
+ "endColumns": "98,101,99,97,106,105,119,100",
+ "endOffsets": "149,251,351,449,556,662,782,883"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3493,3592,3694,3794,3892,3999,4105,12652",
+ "endColumns": "98,101,99,97,106,105,119,100",
+ "endOffsets": "3587,3689,3789,3887,3994,4100,4220,12748"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-sw600dp-v13_values-sw600dp-v13.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sw600dp-v13/values-sw600dp-v13.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,124,193,263,337,413,472,543",
+ "endColumns": "68,68,69,73,75,58,70,67",
+ "endOffsets": "119,188,258,332,408,467,538,606"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/96596d913bdc5ef7499b36edf6e5d946/transformed/jetified-preferencex-simplemenu-1.1.0/res/values-sw600dp-v13/values-sw600dp-v13.xml",
+ "from": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,105",
+ "endColumns": "49,53",
+ "endOffsets": "100,154"
+ },
+ "to": {
+ "startLines": "21,23",
+ "startColumns": "4,4",
+ "startOffsets": "1288,1401",
+ "endColumns": "49,53",
+ "endOffsets": "1333,1450"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sw600dp-v13/values-sw600dp-v13.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,115,185,256,328,386,444,553,617,673,732,795",
+ "endLines": "2,3,4,5,6,7,9,10,11,12,13,17",
+ "endColumns": "59,69,70,71,57,57,10,63,55,58,62,10",
+ "endOffsets": "110,180,251,323,381,439,548,612,668,727,790,962"
+ },
+ "to": {
+ "startLines": "10,11,12,13,14,15,16,18,19,20,22,24",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "611,671,741,812,884,942,1000,1109,1173,1229,1338,1455",
+ "endLines": "10,11,12,13,14,15,17,18,19,20,22,27",
+ "endColumns": "59,69,70,71,57,57,10,63,55,58,62,10",
+ "endOffsets": "666,736,807,879,937,995,1104,1168,1224,1283,1396,1622"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-h550dp-port-v13/values-h550dp-port-v13.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "64",
+ "endOffsets": "115"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v18_values-v18.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v18/values-v18.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "48",
+ "endOffsets": "99"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-bg_values-bg.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-bg/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,298,459,590,697,860,991,1106,1211,1376,1484,1655,1789,1942,2104,2170,2225",
+ "endColumns": "104,160,130,106,162,130,114,104,164,107,170,133,152,161,65,54,68",
+ "endOffsets": "297,458,589,696,859,990,1105,1210,1375,1483,1654,1788,1941,2103,2169,2224,2293"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4595,4704,4869,5004,5115,5282,5417,5536,5783,5952,6064,6239,6377,6534,6700,6770,6829",
+ "endColumns": "108,164,134,110,166,134,118,108,168,111,174,137,156,165,69,58,72",
+ "endOffsets": "4699,4864,4999,5110,5277,5412,5531,5640,5947,6059,6234,6372,6529,6695,6765,6824,6897"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-bg/values-bg.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,265,345,485,654,736",
+ "endColumns": "71,87,79,139,168,81,77",
+ "endOffsets": "172,260,340,480,649,731,809"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6902,7151,12269,12435,12760,12929,13011",
+ "endColumns": "71,87,79,139,168,81,77",
+ "endOffsets": "6969,7234,12344,12570,12924,13006,13084"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-bg/values-bg.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,344,423,506,628,738,833,966,1055,1121,1218,1298,1360,1449,1512,1577,1636,1709,1772,1826,1954,2011,2073,2127,2200,2343,2427,2515,2651,2739,2827,2963,3048,3125,3178,3229,3295,3370,3446,3532,3611,3688,3764,3841,3915,4027,4118,4193,4284,4376,4450,4537,4628,4683,4765,4831,4914,5000,5062,5126,5189,5259,5376,5488,5599,5709,5766,5821",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,78,78,82,121,109,94,132,88,65,96,79,61,88,62,64,58,72,62,53,127,56,61,53,72,142,83,87,135,87,87,135,84,76,52,50,65,74,75,85,78,76,75,76,73,111,90,74,90,91,73,86,90,54,81,65,82,85,61,63,62,69,116,111,110,109,56,54,85",
+ "endOffsets": "260,339,418,501,623,733,828,961,1050,1116,1213,1293,1355,1444,1507,1572,1631,1704,1767,1821,1949,2006,2068,2122,2195,2338,2422,2510,2646,2734,2822,2958,3043,3120,3173,3224,3290,3365,3441,3527,3606,3683,3759,3836,3910,4022,4113,4188,4279,4371,4445,4532,4623,4678,4760,4826,4909,4995,5057,5121,5184,5254,5371,5483,5594,5704,5761,5816,5902"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3064,3143,3222,3305,3427,4278,4373,4506,7085,7239,7666,7746,7808,7897,7960,8025,8084,8157,8220,8274,8402,8459,8521,8575,8648,8791,8875,8963,9099,9187,9275,9411,9496,9573,9626,9677,9743,9818,9894,9980,10059,10136,10212,10289,10363,10475,10566,10641,10732,10824,10898,10985,11076,11131,11213,11279,11362,11448,11510,11574,11637,11707,11824,11936,12047,12157,12214,12349",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,78,78,82,121,109,94,132,88,65,96,79,61,88,62,64,58,72,62,53,127,56,61,53,72,142,83,87,135,87,87,135,84,76,52,50,65,74,75,85,78,76,75,76,73,111,90,74,90,91,73,86,90,54,81,65,82,85,61,63,62,69,116,111,110,109,56,54,85",
+ "endOffsets": "310,3138,3217,3300,3422,3532,4368,4501,4590,7146,7331,7741,7803,7892,7955,8020,8079,8152,8215,8269,8397,8454,8516,8570,8643,8786,8870,8958,9094,9182,9270,9406,9491,9568,9621,9672,9738,9813,9889,9975,10054,10131,10207,10284,10358,10470,10561,10636,10727,10819,10893,10980,11071,11126,11208,11274,11357,11443,11505,11569,11632,11702,11819,11931,12042,12152,12209,12264,12430"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-bg/values-bg.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,331,436,522,632,753,833,910,1001,1094,1189,1283,1383,1476,1571,1679,1770,1861,1944,2058,2166,2266,2380,2487,2595,2755,2854",
+ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83",
+ "endOffsets": "220,326,431,517,627,748,828,905,996,1089,1184,1278,1378,1471,1566,1674,1765,1856,1939,2053,2161,2261,2375,2482,2590,2750,2849,2933"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,435,541,646,732,842,963,1043,1120,1211,1304,1399,1493,1593,1686,1781,1889,1980,2071,2154,2268,2376,2476,2590,2697,2805,2965,12575",
+ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83",
+ "endOffsets": "430,536,641,727,837,958,1038,1115,1206,1299,1394,1488,1588,1681,1776,1884,1975,2066,2149,2263,2371,2471,2585,2692,2800,2960,3059,12654"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-bg/values-bg.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,166,274,386",
+ "endColumns": "110,107,111,109",
+ "endOffsets": "161,269,381,491"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6974,7336,7444,7556",
+ "endColumns": "110,107,111,109",
+ "endOffsets": "7080,7439,7551,7661"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-bg/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "133",
+ "endOffsets": "328"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5645",
+ "endColumns": "137",
+ "endOffsets": "5778"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-bg/values-bg.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,262,364,465,572,677,796",
+ "endColumns": "96,109,101,100,106,104,118,100",
+ "endOffsets": "147,257,359,460,567,672,791,892"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3537,3634,3744,3846,3947,4054,4159,12659",
+ "endColumns": "96,109,101,100,106,104,118,100",
+ "endOffsets": "3629,3739,3841,3942,4049,4154,4273,12755"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v17_values-v17.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v17/values-v17.xml",
+ "from": {
+ "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216",
+ "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60",
+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12",
+ "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-h320dp-port-v13/values-h320dp-port-v13.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "63",
+ "endOffsets": "114"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-w600dp-land-v13/values-w600dp-land-v13.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "54",
+ "endOffsets": "105"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-sl_values-sl.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-sl/values-sl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,352,456,559,661,778",
+ "endColumns": "96,101,97,103,102,101,116,100",
+ "endOffsets": "147,249,347,451,554,656,773,874"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3612,3709,3811,3909,4013,4116,4218,12523",
+ "endColumns": "96,101,97,103,102,101,116,100",
+ "endOffsets": "3704,3806,3904,4008,4111,4213,4330,12619"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-sl/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,456,581,684,827,953,1063,1163,1317,1420,1583,1709,1857,2005,2071,2129",
+ "endColumns": "101,160,124,102,142,125,109,99,153,102,162,125,147,147,65,57,79",
+ "endOffsets": "294,455,580,683,826,952,1062,1162,1316,1419,1582,1708,1856,2004,2070,2128,2208"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4651,4757,4922,5051,5158,5305,5435,5549,5793,5951,6058,6225,6355,6507,6659,6729,6791",
+ "endColumns": "105,164,128,106,146,129,113,103,157,106,166,129,151,151,69,61,83",
+ "endOffsets": "4752,4917,5046,5153,5300,5430,5544,5648,5946,6053,6220,6350,6502,6654,6724,6786,6870"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sl/values-sl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,262,343,484,653,741",
+ "endColumns": "70,85,80,140,168,87,83",
+ "endOffsets": "171,257,338,479,648,736,820"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6875,7118,12140,12298,12624,12793,12881",
+ "endColumns": "70,85,80,140,168,87,83",
+ "endOffsets": "6941,7199,12216,12434,12788,12876,12960"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-sl/values-sl.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,161,265,377",
+ "endColumns": "105,103,111,101",
+ "endOffsets": "156,260,372,474"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6946,7298,7402,7514",
+ "endColumns": "105,103,111,101",
+ "endOffsets": "7047,7397,7509,7611"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sl/values-sl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,217,319,427,514,617,736,817,895,987,1081,1176,1270,1365,1459,1555,1655,1747,1839,1923,2031,2139,2239,2352,2460,2565,2745,2845",
+ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,104,179,99,83",
+ "endOffsets": "212,314,422,509,612,731,812,890,982,1076,1171,1265,1360,1454,1550,1650,1742,1834,1918,2026,2134,2234,2347,2455,2560,2740,2840,2924"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "417,529,631,739,826,929,1048,1129,1207,1299,1393,1488,1582,1677,1771,1867,1967,2059,2151,2235,2343,2451,2551,2664,2772,2877,3057,12439",
+ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,104,179,99,83",
+ "endOffsets": "524,626,734,821,924,1043,1124,1202,1294,1388,1483,1577,1672,1766,1862,1962,2054,2146,2230,2338,2446,2546,2659,2767,2872,3052,3152,12518"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sl/values-sl.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,367,456,545,633,731,822,928,1054,1138,1204,1298,1374,1437,1549,1609,1674,1728,1798,1858,1914,2026,2083,2145,2201,2274,2408,2493,2578,2721,2805,2888,3022,3111,3188,3244,3299,3365,3438,3515,3599,3678,3752,3828,3903,3976,4081,4169,4242,4332,4423,4495,4569,4660,4712,4794,4861,4945,5032,5094,5158,5221,5290,5393,5501,5599,5703,5763,5822",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,88,88,87,97,90,105,125,83,65,93,75,62,111,59,64,53,69,59,55,111,56,61,55,72,133,84,84,142,83,82,133,88,76,55,54,65,72,76,83,78,73,75,74,72,104,87,72,89,90,71,73,90,51,81,66,83,86,61,63,62,68,102,107,97,103,59,58,76",
+ "endOffsets": "362,451,540,628,726,817,923,1049,1133,1199,1293,1369,1432,1544,1604,1669,1723,1793,1853,1909,2021,2078,2140,2196,2269,2403,2488,2573,2716,2800,2883,3017,3106,3183,3239,3294,3360,3433,3510,3594,3673,3747,3823,3898,3971,4076,4164,4237,4327,4418,4490,4564,4655,4707,4789,4856,4940,5027,5089,5153,5216,5285,5388,5496,5594,5698,5758,5817,5894"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3157,3246,3335,3423,3521,4335,4441,4567,7052,7204,7616,7692,7755,7867,7927,7992,8046,8116,8176,8232,8344,8401,8463,8519,8592,8726,8811,8896,9039,9123,9206,9340,9429,9506,9562,9617,9683,9756,9833,9917,9996,10070,10146,10221,10294,10399,10487,10560,10650,10741,10813,10887,10978,11030,11112,11179,11263,11350,11412,11476,11539,11608,11711,11819,11917,12021,12081,12221",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,88,88,87,97,90,105,125,83,65,93,75,62,111,59,64,53,69,59,55,111,56,61,55,72,133,84,84,142,83,82,133,88,76,55,54,65,72,76,83,78,73,75,74,72,104,87,72,89,90,71,73,90,51,81,66,83,86,61,63,62,68,102,107,97,103,59,58,76",
+ "endOffsets": "412,3241,3330,3418,3516,3607,4436,4562,4646,7113,7293,7687,7750,7862,7922,7987,8041,8111,8171,8227,8339,8396,8458,8514,8587,8721,8806,8891,9034,9118,9201,9335,9424,9501,9557,9612,9678,9751,9828,9912,9991,10065,10141,10216,10289,10394,10482,10555,10645,10736,10808,10882,10973,11025,11107,11174,11258,11345,11407,11471,11534,11603,11706,11814,11912,12016,12076,12135,12293"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-sl/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "135",
+ "endOffsets": "330"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5653",
+ "endColumns": "139",
+ "endOffsets": "5788"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-hy_values-hy.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-hy/values-hy.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,265,346,483,652,736",
+ "endColumns": "71,87,80,136,168,83,80",
+ "endOffsets": "172,260,341,478,647,731,812"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6777,7017,12092,12258,12579,12748,12832",
+ "endColumns": "71,87,80,136,168,83,80",
+ "endOffsets": "6844,7100,12168,12390,12743,12827,12908"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-hy/values-hy.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,341,417,497,589,677,772,902,983,1047,1144,1229,1291,1378,1440,1504,1565,1632,1693,1747,1869,1926,1986,2040,2121,2256,2340,2425,2561,2636,2711,2854,2949,3029,3085,3138,3204,3278,3357,3443,3526,3597,3673,3749,3826,3932,4020,4100,4196,4292,4366,4444,4544,4595,4679,4748,4835,4926,4988,5052,5115,5186,5291,5397,5497,5600,5660,5717",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,75,75,79,91,87,94,129,80,63,96,84,61,86,61,63,60,66,60,53,121,56,59,53,80,134,83,84,135,74,74,142,94,79,55,52,65,73,78,85,82,70,75,75,76,105,87,79,95,95,73,77,99,50,83,68,86,90,61,63,62,70,104,105,99,102,59,56,84",
+ "endOffsets": "260,336,412,492,584,672,767,897,978,1042,1139,1224,1286,1373,1435,1499,1560,1627,1688,1742,1864,1921,1981,2035,2116,2251,2335,2420,2556,2631,2706,2849,2944,3024,3080,3133,3199,3273,3352,3438,3521,3592,3668,3744,3821,3927,4015,4095,4191,4287,4361,4439,4539,4590,4674,4743,4830,4921,4983,5047,5110,5181,5286,5392,5492,5595,5655,5712,5797"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3024,3100,3176,3256,3348,4156,4251,4381,6953,7105,7519,7604,7666,7753,7815,7879,7940,8007,8068,8122,8244,8301,8361,8415,8496,8631,8715,8800,8936,9011,9086,9229,9324,9404,9460,9513,9579,9653,9732,9818,9901,9972,10048,10124,10201,10307,10395,10475,10571,10667,10741,10819,10919,10970,11054,11123,11210,11301,11363,11427,11490,11561,11666,11772,11872,11975,12035,12173",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,75,75,79,91,87,94,129,80,63,96,84,61,86,61,63,60,66,60,53,121,56,59,53,80,134,83,84,135,74,74,142,94,79,55,52,65,73,78,85,82,70,75,75,76,105,87,79,95,95,73,77,99,50,83,68,86,90,61,63,62,70,104,105,99,102,59,56,84",
+ "endOffsets": "310,3095,3171,3251,3343,3431,4246,4376,4457,7012,7197,7599,7661,7748,7810,7874,7935,8002,8063,8117,8239,8296,8356,8410,8491,8626,8710,8795,8931,9006,9081,9224,9319,9399,9455,9508,9574,9648,9727,9813,9896,9967,10043,10119,10196,10302,10390,10470,10566,10662,10736,10814,10914,10965,11049,11118,11205,11296,11358,11422,11485,11556,11661,11767,11867,11970,12030,12087,12253"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-hy/values-hy.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,313,423,512,618,735,817,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1917,2023,2129,2228,2338,2446,2547,2717,2814",
+ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82",
+ "endOffsets": "208,308,418,507,613,730,812,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1912,2018,2124,2223,2333,2441,2542,2712,2809,2892"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,423,523,633,722,828,945,1027,1107,1198,1291,1386,1480,1580,1673,1768,1862,1953,2044,2127,2233,2339,2438,2548,2656,2757,2927,12395",
+ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82",
+ "endOffsets": "418,518,628,717,823,940,1022,1102,1193,1286,1381,1475,1575,1668,1763,1857,1948,2039,2122,2228,2334,2433,2543,2651,2752,2922,3019,12473"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-hy/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "146",
+ "endOffsets": "341"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5505",
+ "endColumns": "150",
+ "endOffsets": "5651"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-hy/values-hy.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,159,262,373",
+ "endColumns": "103,102,110,102",
+ "endOffsets": "154,257,368,471"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6849,7202,7305,7416",
+ "endColumns": "103,102,110,102",
+ "endOffsets": "6948,7300,7411,7514"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-hy/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,456,586,690,840,972,1095,1204,1367,1471,1635,1767,1925,2087,2148,2211",
+ "endColumns": "101,160,129,103,149,131,122,108,162,103,163,131,157,161,60,62,77",
+ "endOffsets": "294,455,585,689,839,971,1094,1203,1366,1470,1634,1766,1924,2086,2147,2210,2288"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4462,4568,4733,4867,4975,5129,5265,5392,5656,5823,5931,6099,6235,6397,6563,6628,6695",
+ "endColumns": "105,164,133,107,153,135,126,112,166,107,167,135,161,165,64,66,81",
+ "endOffsets": "4563,4728,4862,4970,5124,5260,5387,5500,5818,5926,6094,6230,6392,6558,6623,6690,6772"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-hy/values-hy.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,155,260,358,457,562,664,775",
+ "endColumns": "99,104,97,98,104,101,110,100",
+ "endOffsets": "150,255,353,452,557,659,770,871"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3436,3536,3641,3739,3838,3943,4045,12478",
+ "endColumns": "99,104,97,98,104,101,110,100",
+ "endOffsets": "3531,3636,3734,3833,3938,4040,4151,12574"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-in_values-in.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-in/values-in.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,261,341,477,646,731",
+ "endColumns": "68,86,79,135,168,84,78",
+ "endOffsets": "169,256,336,472,641,726,805"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6668,6902,11857,12017,12339,12508,12593",
+ "endColumns": "68,86,79,135,168,84,78",
+ "endOffsets": "6732,6984,11932,12148,12503,12588,12667"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-in/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "127",
+ "endOffsets": "322"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5473",
+ "endColumns": "131",
+ "endOffsets": "5600"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-in/values-in.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,220,324,429,516,620,736,819,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1920,2023,2128,2229,2333,2442,2550,2710,2809",
+ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84",
+ "endOffsets": "215,319,424,511,615,731,814,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1915,2018,2123,2224,2328,2437,2545,2705,2804,2889"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "319,434,538,643,730,834,950,1033,1111,1202,1295,1390,1484,1584,1677,1772,1866,1957,2048,2134,2237,2342,2443,2547,2656,2764,2924,12153",
+ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84",
+ "endOffsets": "429,533,638,725,829,945,1028,1106,1197,1290,1385,1479,1579,1672,1767,1861,1952,2043,2129,2232,2337,2438,2542,2651,2759,2919,3018,12233"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-in/values-in.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,253,362",
+ "endColumns": "99,97,108,100",
+ "endOffsets": "150,248,357,458"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6737,7083,7181,7290",
+ "endColumns": "99,97,108,100",
+ "endOffsets": "6832,7176,7285,7386"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-in/values-in.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,269,348,424,503,593,678,784,900,983,1048,1142,1207,1266,1353,1415,1477,1537,1603,1665,1719,1831,1888,1949,2003,2075,2201,2287,2371,2510,2591,2672,2807,2897,2979,3032,3084,3150,3222,3306,3389,3469,3544,3620,3693,3768,3866,3951,4026,4118,4212,4286,4359,4453,4505,4587,4656,4741,4828,4890,4954,5017,5089,5192,5297,5392,5495,5552,5608",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,78,75,78,89,84,105,115,82,64,93,64,58,86,61,61,59,65,61,53,111,56,60,53,71,125,85,83,138,80,80,134,89,81,52,51,65,71,83,82,79,74,75,72,74,97,84,74,91,93,73,72,93,51,81,68,84,86,61,63,62,71,102,104,94,102,56,55,79",
+ "endOffsets": "264,343,419,498,588,673,779,895,978,1043,1137,1202,1261,1348,1410,1472,1532,1598,1660,1714,1826,1883,1944,1998,2070,2196,2282,2366,2505,2586,2667,2802,2892,2974,3027,3079,3145,3217,3301,3384,3464,3539,3615,3688,3763,3861,3946,4021,4113,4207,4281,4354,4448,4500,4582,4651,4736,4823,4885,4949,5012,5084,5187,5292,5387,5490,5547,5603,5683"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3023,3102,3178,3257,3347,4162,4268,4384,6837,6989,7391,7456,7515,7602,7664,7726,7786,7852,7914,7968,8080,8137,8198,8252,8324,8450,8536,8620,8759,8840,8921,9056,9146,9228,9281,9333,9399,9471,9555,9638,9718,9793,9869,9942,10017,10115,10200,10275,10367,10461,10535,10608,10702,10754,10836,10905,10990,11077,11139,11203,11266,11338,11441,11546,11641,11744,11801,11937",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,78,75,78,89,84,105,115,82,64,93,64,58,86,61,61,59,65,61,53,111,56,60,53,71,125,85,83,138,80,80,134,89,81,52,51,65,71,83,82,79,74,75,72,74,97,84,74,91,93,73,72,93,51,81,68,84,86,61,63,62,71,102,104,94,102,56,55,79",
+ "endOffsets": "314,3097,3173,3252,3342,3427,4263,4379,4462,6897,7078,7451,7510,7597,7659,7721,7781,7847,7909,7963,8075,8132,8193,8247,8319,8445,8531,8615,8754,8835,8916,9051,9141,9223,9276,9328,9394,9466,9550,9633,9713,9788,9864,9937,10012,10110,10195,10270,10362,10456,10530,10603,10697,10749,10831,10900,10985,11072,11134,11198,11261,11333,11436,11541,11636,11739,11796,11852,12012"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-in/values-in.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,252,349,446,552,670,785",
+ "endColumns": "94,101,96,96,105,117,114,100",
+ "endOffsets": "145,247,344,441,547,665,780,881"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3432,3527,3629,3726,3823,3929,4047,12238",
+ "endColumns": "94,101,96,96,105,117,114,100",
+ "endOffsets": "3522,3624,3721,3818,3924,4042,4157,12334"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-in/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,456,578,680,831,954,1065,1167,1329,1430,1590,1712,1863,2003,2063,2119",
+ "endColumns": "102,159,121,101,150,122,110,101,161,100,159,121,150,139,59,55,74",
+ "endOffsets": "295,455,577,679,830,953,1064,1166,1328,1429,1589,1711,1862,2002,2062,2118,2193"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4467,4574,4738,4864,4970,5125,5252,5367,5605,5771,5876,6040,6166,6321,6465,6529,6589",
+ "endColumns": "106,163,125,105,154,126,114,105,165,104,163,125,154,143,63,59,78",
+ "endOffsets": "4569,4733,4859,4965,5120,5247,5362,5468,5766,5871,6035,6161,6316,6460,6524,6584,6663"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ldrtl-v17_values-ldrtl-v17.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ldrtl-v17/values-ldrtl-v17.xml",
+ "from": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,191",
+ "endColumns": "135,140",
+ "endOffsets": "186,327"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-sw360dp-v13_values-sw360dp-v13.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sw360dp-v13/values-sw360dp-v13.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "71",
+ "endOffsets": "122"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-en-rIN_values-en-rIN.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-en-rIN/values-en-rIN.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,173,260,334,468,637,717",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "168,255,329,463,632,712,788"
+ },
+ "to": {
+ "startLines": "36,38,42,43,46,47,48",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "3481,3647,4039,4113,4431,4600,4680",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "3544,3729,4108,4242,4595,4675,4751"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-en-rIN/values-en-rIN.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,44",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,4247",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,4325"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-en-rIN/values-en-rIN.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,352,451,555,658,774",
+ "endColumns": "95,101,98,98,103,102,115,100",
+ "endOffsets": "146,248,347,446,550,653,769,870"
+ },
+ "to": {
+ "startLines": "29,30,31,32,33,34,35,45",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "2762,2858,2960,3059,3158,3262,3365,4330",
+ "endColumns": "95,101,98,98,103,102,115,100",
+ "endOffsets": "2853,2955,3054,3153,3257,3360,3476,4426"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-en-rIN/values-en-rIN.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,153,250,359",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "148,245,354,453"
+ },
+ "to": {
+ "startLines": "37,39,40,41",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "3549,3734,3831,3940",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "3642,3826,3935,4034"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-iw_values-iw.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-iw/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "113",
+ "endOffsets": "308"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5385",
+ "endColumns": "117",
+ "endOffsets": "5498"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-iw/values-iw.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,258,334,459,628,709",
+ "endColumns": "68,83,75,124,168,80,78",
+ "endOffsets": "169,253,329,454,623,704,783"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6491,6716,11527,11678,11986,12155,12236",
+ "endColumns": "68,83,75,124,168,80,78",
+ "endOffsets": "6555,6795,11598,11798,12150,12231,12310"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-iw/values-iw.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,149,251,348,445,546,646,752",
+ "endColumns": "93,101,96,96,100,99,105,100",
+ "endOffsets": "144,246,343,440,541,641,747,848"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3437,3531,3633,3730,3827,3928,4028,11885",
+ "endColumns": "93,101,96,96,100,99,105,100",
+ "endOffsets": "3526,3628,3725,3822,3923,4023,4129,11981"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-iw/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,292,442,563,663,798,919,1027,1126,1258,1358,1499,1618,1748,1889,1945,2001",
+ "endColumns": "98,149,120,99,134,120,107,98,131,99,140,118,129,140,55,55,76",
+ "endOffsets": "291,441,562,662,797,918,1026,1125,1257,1357,1498,1617,1747,1888,1944,2000,2077"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4420,4523,4677,4802,4906,5045,5170,5282,5503,5639,5743,5888,6011,6145,6290,6350,6410",
+ "endColumns": "102,153,124,103,138,124,111,102,135,103,144,122,133,144,59,59,80",
+ "endOffsets": "4518,4672,4797,4901,5040,5165,5277,5380,5634,5738,5883,6006,6140,6285,6345,6405,6486"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-iw/values-iw.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,146,246,352",
+ "endColumns": "90,99,105,101",
+ "endOffsets": "141,241,347,449"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6560,6888,6988,7094",
+ "endColumns": "90,99,105,101",
+ "endOffsets": "6646,6983,7089,7191"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-iw/values-iw.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,311,388,463,540,640,731,824,937,1017,1082,1170,1240,1303,1395,1458,1518,1577,1640,1701,1755,1857,1914,1973,2027,2095,2206,2287,2369,2501,2572,2645,2769,2857,2933,2986,3040,3106,3179,3255,3341,3419,3489,3564,3646,3714,3815,3900,3970,4060,4151,4225,4298,4387,4438,4519,4586,4668,4753,4815,4879,4942,5010,5104,5199,5289,5386,5443,5501",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,76,74,76,99,90,92,112,79,64,87,69,62,91,62,59,58,62,60,53,101,56,58,53,67,110,80,81,131,70,72,123,87,75,52,53,65,72,75,85,77,69,74,81,67,100,84,69,89,90,73,72,88,50,80,66,81,84,61,63,62,67,93,94,89,96,56,57,74",
+ "endOffsets": "306,383,458,535,635,726,819,932,1012,1077,1165,1235,1298,1390,1453,1513,1572,1635,1696,1750,1852,1909,1968,2022,2090,2201,2282,2364,2496,2567,2640,2764,2852,2928,2981,3035,3101,3174,3250,3336,3414,3484,3559,3641,3709,3810,3895,3965,4055,4146,4220,4293,4382,4433,4514,4581,4663,4748,4810,4874,4937,5005,5099,5194,5284,5381,5438,5496,5571"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3017,3094,3169,3246,3346,4134,4227,4340,6651,6800,7196,7266,7329,7421,7484,7544,7603,7666,7727,7781,7883,7940,7999,8053,8121,8232,8313,8395,8527,8598,8671,8795,8883,8959,9012,9066,9132,9205,9281,9367,9445,9515,9590,9672,9740,9841,9926,9996,10086,10177,10251,10324,10413,10464,10545,10612,10694,10779,10841,10905,10968,11036,11130,11225,11315,11412,11469,11603",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,76,74,76,99,90,92,112,79,64,87,69,62,91,62,59,58,62,60,53,101,56,58,53,67,110,80,81,131,70,72,123,87,75,52,53,65,72,75,85,77,69,74,81,67,100,84,69,89,90,73,72,88,50,80,66,81,84,61,63,62,67,93,94,89,96,56,57,74",
+ "endOffsets": "356,3089,3164,3241,3341,3432,4222,4335,4415,6711,6883,7261,7324,7416,7479,7539,7598,7661,7722,7776,7878,7935,7994,8048,8116,8227,8308,8390,8522,8593,8666,8790,8878,8954,9007,9061,9127,9200,9276,9362,9440,9510,9585,9667,9735,9836,9921,9991,10081,10172,10246,10319,10408,10459,10540,10607,10689,10774,10836,10900,10963,11031,11125,11220,11310,11407,11464,11522,11673"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-iw/values-iw.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,210,310,418,502,604,720,799,877,968,1062,1156,1250,1350,1443,1538,1631,1722,1814,1895,2000,2103,2201,2306,2408,2510,2664,2761",
+ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81",
+ "endOffsets": "205,305,413,497,599,715,794,872,963,1057,1151,1245,1345,1438,1533,1626,1717,1809,1890,1995,2098,2196,2301,2403,2505,2659,2756,2838"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "361,466,566,674,758,860,976,1055,1133,1224,1318,1412,1506,1606,1699,1794,1887,1978,2070,2151,2256,2359,2457,2562,2664,2766,2920,11803",
+ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81",
+ "endOffsets": "461,561,669,753,855,971,1050,1128,1219,1313,1407,1501,1601,1694,1789,1882,1973,2065,2146,2251,2354,2452,2557,2659,2761,2915,3012,11880"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-en-rCA_values-en-rCA.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-en-rCA/values-en-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,352,451,555,657,773",
+ "endColumns": "95,101,98,98,103,101,115,100",
+ "endOffsets": "146,248,347,446,550,652,768,869"
+ },
+ "to": {
+ "startLines": "29,30,31,32,33,34,35,45",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "2762,2858,2960,3059,3158,3262,3364,4329",
+ "endColumns": "95,101,98,98,103,101,115,100",
+ "endOffsets": "2853,2955,3054,3153,3257,3359,3475,4425"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-en-rCA/values-en-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,153,250,359",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "148,245,354,453"
+ },
+ "to": {
+ "startLines": "37,39,40,41",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "3548,3733,3830,3939",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "3641,3825,3934,4033"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-en-rCA/values-en-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,44",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,4246",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,4324"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-en-rCA/values-en-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,173,260,334,468,637,717",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "168,255,329,463,632,712,788"
+ },
+ "to": {
+ "startLines": "36,38,42,43,46,47,48",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "3480,3646,4038,4112,4430,4599,4679",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "3543,3728,4107,4241,4594,4674,4750"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values_values.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values/dimen.xml",
+ "from": {
+ "startLines": "3,4,2",
+ "startColumns": "4,4,4",
+ "startOffsets": "103,171,55",
+ "endColumns": "67,43,47",
+ "endOffsets": "166,210,98"
+ },
+ "to": {
+ "startLines": "1105,1744,1756",
+ "startColumns": "4,4,4",
+ "startOffsets": "67038,117345,118001",
+ "endColumns": "67,43,47",
+ "endOffsets": "67101,117384,118044"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/7bf8b97a50c97fae198c1842347e4d1c/transformed/databinding-adapters-8.2.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4",
+ "startColumns": "4,4,4",
+ "startOffsets": "55,112,155",
+ "endColumns": "56,42,40",
+ "endOffsets": "107,150,191"
+ },
+ "to": {
+ "startLines": "1823,1824,1855",
+ "startColumns": "4,4,4",
+ "startOffsets": "121984,122041,123634",
+ "endColumns": "56,42,40",
+ "endOffsets": "122036,122079,123670"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/974f946db560c84390f432f3dcd91071/transformed/fragment-1.6.2/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,10",
+ "startColumns": "4,4,4,4,4",
+ "startOffsets": "55,112,177,241,411",
+ "endLines": "2,3,4,9,13",
+ "endColumns": "56,64,63,24,24",
+ "endOffsets": "107,172,236,406,555"
+ },
+ "to": {
+ "startLines": "1800,1838,1875,11334,11339",
+ "startColumns": "4,4,4,4,4",
+ "startOffsets": "120755,122699,124610,743098,743268",
+ "endLines": "1800,1838,1875,11338,11342",
+ "endColumns": "56,64,63,24,24",
+ "endOffsets": "120807,122759,124669,743263,743412"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/07ba96a5bb88c0245ec3c58dfbf13b7b/transformed/jetified-appcompat-resources-1.6.1/res/values/values.xml",
+ "from": {
+ "startLines": "2,18,24,34,50",
+ "startColumns": "4,4,4,4,4",
+ "startOffsets": "55,480,658,942,1353",
+ "endLines": "17,23,33,49,53",
+ "endColumns": "24,24,24,24,24",
+ "endOffsets": "475,653,937,1348,1475"
+ },
+ "to": {
+ "startLines": "9796,9812,9818,12679,12695",
+ "startColumns": "4,4,4,4,4",
+ "startOffsets": "675823,676248,676426,797634,798045",
+ "endLines": "9811,9817,9827,12694,12698",
+ "endColumns": "24,24,24,24,24",
+ "endOffsets": "676243,676421,676705,798040,798167"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/8b23fe5f41d4e2f787827edd6cd782ee/transformed/drawerlayout-1.1.1/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,111,159,211",
+ "endLines": "2,3,4,8",
+ "endColumns": "55,47,51,24",
+ "endOffsets": "106,154,206,426"
+ },
+ "to": {
+ "startLines": "158,161,1041,11183",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7852,8016,62716,737811",
+ "endLines": "158,161,1041,11186",
+ "endColumns": "55,47,51,24",
+ "endOffsets": "7903,8059,62763,737917"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/a33695dde8a169e607a8ae6f38de7bcf/transformed/cardview-1.0.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,35,36,37,38,45,47,50,7",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,107,168,230,292,2179,2238,2295,2349,2763,2827,2953,356",
+ "endLines": "2,3,4,5,6,35,36,37,44,46,49,52,34",
+ "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24",
+ "endOffsets": "102,163,225,287,351,2233,2290,2344,2758,2822,2948,3076,2174"
+ },
+ "to": {
+ "startLines": "63,622,623,624,625,1030,1031,1032,2461,5828,5830,5833,10652",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "2957,32355,32416,32478,32540,62003,62062,62119,177566,412795,412859,412985,705289",
+ "endLines": "63,622,623,624,625,1030,1031,1032,2467,5829,5832,5835,10679",
+ "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24",
+ "endOffsets": "3004,32411,32473,32535,32599,62057,62114,62168,177975,412854,412980,413108,706208"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e608070d69755e6e0f122901919553cb/transformed/transition-1.4.1/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,95,142,185,240,287,341,393,442,503",
+ "endColumns": "39,46,42,54,46,53,51,48,60,49",
+ "endOffsets": "90,137,180,235,282,336,388,437,498,548"
+ },
+ "to": {
+ "startLines": "1801,1802,1825,1833,1834,1864,1865,1866,1867,1868",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "120812,120852,122084,122465,122520,124057,124111,124163,124212,124273",
+ "endColumns": "39,46,42,54,46,53,51,48,60,49",
+ "endOffsets": "120847,120894,122122,122515,122562,124106,124158,124207,124268,124318"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,221,222,226,230,234,239,245,252,256,260,265,269,273,277,281,285,289,295,299,305,309,315,319,324,328,331,335,341,345,351,355,361,364,368,372,376,380,384,385,386,387,390,393,396,399,403,404,405,406,407,410,412,414,416,421,422,426,432,436,437,439,451,452,456,462,466,467,468,472,499,503,504,508,536,708,734,905,931,962,970,976,992,1014,1019,1024,1034,1043,1052,1056,1063,1082,1089,1090,1099,1102,1105,1109,1113,1117,1120,1121,1126,1131,1141,1146,1153,1159,1160,1163,1167,1172,1174,1176,1179,1182,1184,1188,1191,1198,1201,1204,1208,1210,1214,1216,1218,1220,1224,1232,1240,1252,1258,1267,1270,1281,1284,1285,1290,1291,1296,1365,1435,1436,1446,1455,1456,1458,1462,1465,1468,1471,1474,1477,1480,1483,1487,1490,1493,1496,1500,1503,1507,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1533,1535,1536,1537,1538,1539,1540,1541,1542,1544,1545,1547,1548,1550,1552,1553,1555,1556,1557,1558,1559,1560,1562,1563,1564,1565,1566,1567,1569,1571,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1587,1588,1589,1590,1591,1592,1593,1595,1599,1603,1604,1605,1606,1607,1608,1612,1613,1614,1615,1617,1619,1621,1623,1625,1626,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1648,1649,1650,1651,1653,1655,1656,1658,1659,1661,1663,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1678,1679,1680,1681,1683,1684,1685,1686,1687,1689,1691,1693,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1785,1788,1791,1794,1808,1814,1824,1827,1856,1883,1892,1956,2319,2323,2351,2379,2397,2421,2427,2433,2454,2578,2598,2604,2608,2649,2661,2727,2747,2802,2814,2840",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,160,205,254,295,350,412,476,546,607,682,758,835,913,998,1080,1156,1232,1309,1387,1493,1599,1678,1758,1815,1873,1947,2022,2087,2153,2213,2274,2346,2419,2486,2554,2613,2672,2731,2790,2849,2903,2957,3010,3064,3118,3172,3226,3300,3379,3452,3526,3597,3669,3741,3814,3871,3929,4002,4076,4150,4225,4297,4370,4440,4511,4571,4632,4701,4770,4840,4914,4990,5054,5131,5207,5284,5349,5418,5495,5570,5639,5707,5784,5850,5911,6008,6073,6142,6241,6312,6371,6429,6486,6545,6609,6680,6752,6824,6896,6968,7035,7103,7171,7230,7293,7357,7447,7538,7598,7664,7731,7797,7867,7931,7984,8051,8112,8179,8292,8350,8413,8478,8543,8618,8691,8763,8807,8854,8900,8949,9010,9071,9132,9194,9258,9322,9386,9451,9514,9574,9635,9701,9760,9820,9882,9953,10013,10081,10167,10254,10344,10431,10519,10601,10684,10774,10865,10917,10975,11020,11086,11150,11207,11264,11318,11375,11423,11472,11523,11557,11604,11653,11699,11731,11795,11857,11917,11974,12048,12118,12196,12250,12320,12405,12453,12499,12560,12623,12689,12753,12824,12887,12952,13016,13077,13138,13190,13263,13337,13406,13481,13555,13629,13770,13840,13893,13971,14061,14149,14245,14335,14917,15006,15253,15534,15786,16071,16464,16941,17163,17385,17661,17888,18118,18348,18578,18808,19035,19454,19680,20105,20335,20763,20982,21265,21473,21604,21831,22257,22482,22909,23130,23555,23675,23951,24252,24576,24867,25181,25318,25449,25554,25796,25963,26167,26375,26646,26758,26870,26975,27092,27306,27452,27592,27678,28026,28114,28360,28778,29027,29109,29207,29864,29964,30216,30640,30895,30989,31078,31315,33339,33581,33683,33936,36092,46773,48289,58984,60512,62269,62895,63315,64576,65841,66097,66333,66880,67374,67979,68177,68757,70125,70500,70618,71156,71313,71509,71782,72038,72208,72349,72413,72778,73145,73821,74085,74423,74776,74870,75056,75362,75624,75749,75876,76115,76326,76445,76638,76815,77270,77451,77573,77832,77945,78132,78234,78341,78470,78745,79253,79749,80626,80920,81490,81639,82371,82543,82627,82963,83055,83333,88564,93935,93997,94575,95159,95250,95363,95592,95752,95904,96075,96241,96410,96577,96740,96983,97153,97326,97497,97771,97970,98175,98505,98589,98685,98781,98879,98979,99081,99183,99285,99387,99489,99589,99685,99797,99926,100049,100180,100311,100409,100523,100617,100757,100891,100987,101099,101199,101315,101411,101523,101623,101763,101899,102063,102193,102351,102501,102642,102786,102921,103033,103183,103311,103439,103575,103707,103837,103967,104079,104219,104365,104509,104647,104713,104803,104879,104983,105073,105175,105283,105391,105491,105571,105663,105761,105871,105923,106001,106107,106199,106303,106413,106535,106698,106855,106935,107035,107125,107235,107325,107566,107660,107766,107858,107958,108070,108184,108300,108416,108510,108624,108736,108838,108958,109080,109162,109266,109386,109512,109610,109704,109792,109904,110020,110142,110254,110429,110545,110631,110723,110835,110959,111026,111152,111220,111348,111492,111620,111689,111784,111899,112012,112111,112220,112331,112442,112543,112648,112748,112878,112969,113092,113186,113298,113384,113488,113584,113672,113790,113894,113998,114124,114212,114320,114420,114510,114620,114704,114806,114890,114944,115008,115114,115200,115310,115394,115514,118130,118248,118363,118443,118804,119037,119554,119632,120976,122337,122725,125568,135621,135756,137126,138483,139055,139806,140068,140268,140647,144925,145531,145760,145911,147209,147521,150547,151291,153422,153762,155073",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,220,221,225,229,233,238,244,251,255,259,264,268,272,276,280,284,288,294,298,304,308,314,318,323,327,330,334,340,344,350,354,360,363,367,371,375,379,383,384,385,386,389,392,395,398,402,403,404,405,406,409,411,413,415,420,421,425,431,435,436,438,450,451,455,461,465,466,467,471,498,502,503,507,535,707,733,904,930,961,969,975,991,1013,1018,1023,1033,1042,1051,1055,1062,1081,1088,1089,1098,1101,1104,1108,1112,1116,1119,1120,1125,1130,1140,1145,1152,1158,1159,1162,1166,1171,1173,1175,1178,1181,1183,1187,1190,1197,1200,1203,1207,1209,1213,1215,1217,1219,1223,1231,1239,1251,1257,1266,1269,1280,1283,1284,1289,1290,1295,1364,1434,1435,1445,1454,1455,1457,1461,1464,1467,1470,1473,1476,1479,1482,1486,1489,1492,1495,1499,1502,1506,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1532,1534,1535,1536,1537,1538,1539,1540,1541,1543,1544,1546,1547,1549,1551,1552,1554,1555,1556,1557,1558,1559,1561,1562,1563,1564,1565,1566,1568,1570,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1586,1587,1588,1589,1590,1591,1592,1594,1598,1602,1603,1604,1605,1606,1607,1611,1612,1613,1614,1616,1618,1620,1622,1624,1625,1626,1627,1629,1631,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1647,1648,1649,1650,1652,1654,1655,1657,1658,1660,1662,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1677,1678,1679,1680,1682,1683,1684,1685,1686,1688,1690,1692,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1784,1787,1790,1793,1807,1813,1823,1826,1855,1882,1891,1955,2318,2322,2350,2378,2396,2420,2426,2432,2453,2577,2597,2603,2607,2613,2660,2726,2746,2801,2813,2839,2846",
+ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24",
+ "endOffsets": "155,200,249,290,345,407,471,541,602,677,753,830,908,993,1075,1151,1227,1304,1382,1488,1594,1673,1753,1810,1868,1942,2017,2082,2148,2208,2269,2341,2414,2481,2549,2608,2667,2726,2785,2844,2898,2952,3005,3059,3113,3167,3221,3295,3374,3447,3521,3592,3664,3736,3809,3866,3924,3997,4071,4145,4220,4292,4365,4435,4506,4566,4627,4696,4765,4835,4909,4985,5049,5126,5202,5279,5344,5413,5490,5565,5634,5702,5779,5845,5906,6003,6068,6137,6236,6307,6366,6424,6481,6540,6604,6675,6747,6819,6891,6963,7030,7098,7166,7225,7288,7352,7442,7533,7593,7659,7726,7792,7862,7926,7979,8046,8107,8174,8287,8345,8408,8473,8538,8613,8686,8758,8802,8849,8895,8944,9005,9066,9127,9189,9253,9317,9381,9446,9509,9569,9630,9696,9755,9815,9877,9948,10008,10076,10162,10249,10339,10426,10514,10596,10679,10769,10860,10912,10970,11015,11081,11145,11202,11259,11313,11370,11418,11467,11518,11552,11599,11648,11694,11726,11790,11852,11912,11969,12043,12113,12191,12245,12315,12400,12448,12494,12555,12618,12684,12748,12819,12882,12947,13011,13072,13133,13185,13258,13332,13401,13476,13550,13624,13765,13835,13888,13966,14056,14144,14240,14330,14912,15001,15248,15529,15781,16066,16459,16936,17158,17380,17656,17883,18113,18343,18573,18803,19030,19449,19675,20100,20330,20758,20977,21260,21468,21599,21826,22252,22477,22904,23125,23550,23670,23946,24247,24571,24862,25176,25313,25444,25549,25791,25958,26162,26370,26641,26753,26865,26970,27087,27301,27447,27587,27673,28021,28109,28355,28773,29022,29104,29202,29859,29959,30211,30635,30890,30984,31073,31310,33334,33576,33678,33931,36087,46768,48284,58979,60507,62264,62890,63310,64571,65836,66092,66328,66875,67369,67974,68172,68752,70120,70495,70613,71151,71308,71504,71777,72033,72203,72344,72408,72773,73140,73816,74080,74418,74771,74865,75051,75357,75619,75744,75871,76110,76321,76440,76633,76810,77265,77446,77568,77827,77940,78127,78229,78336,78465,78740,79248,79744,80621,80915,81485,81634,82366,82538,82622,82958,83050,83328,88559,93930,93992,94570,95154,95245,95358,95587,95747,95899,96070,96236,96405,96572,96735,96978,97148,97321,97492,97766,97965,98170,98500,98584,98680,98776,98874,98974,99076,99178,99280,99382,99484,99584,99680,99792,99921,100044,100175,100306,100404,100518,100612,100752,100886,100982,101094,101194,101310,101406,101518,101618,101758,101894,102058,102188,102346,102496,102637,102781,102916,103028,103178,103306,103434,103570,103702,103832,103962,104074,104214,104360,104504,104642,104708,104798,104874,104978,105068,105170,105278,105386,105486,105566,105658,105756,105866,105918,105996,106102,106194,106298,106408,106530,106693,106850,106930,107030,107120,107230,107320,107561,107655,107761,107853,107953,108065,108179,108295,108411,108505,108619,108731,108833,108953,109075,109157,109261,109381,109507,109605,109699,109787,109899,110015,110137,110249,110424,110540,110626,110718,110830,110954,111021,111147,111215,111343,111487,111615,111684,111779,111894,112007,112106,112215,112326,112437,112538,112643,112743,112873,112964,113087,113181,113293,113379,113483,113579,113667,113785,113889,113993,114119,114207,114315,114415,114505,114615,114699,114801,114885,114939,115003,115109,115195,115305,115389,115509,118125,118243,118358,118438,118799,119032,119549,119627,120971,122332,122720,125563,135616,135751,137121,138478,139050,139801,140063,140263,140642,144920,145526,145755,145906,146121,147516,150542,151286,153417,153757,155068,155271"
+ },
+ "to": {
+ "startLines": "157,245,248,546,589,590,595,596,597,598,599,600,601,604,605,606,607,608,609,610,611,612,613,618,619,673,674,675,676,677,678,679,680,681,682,855,856,857,858,859,860,861,862,863,864,865,866,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1090,1091,1095,1096,1097,1098,1099,1100,1101,1748,1749,1750,1751,1752,1753,1754,1755,1794,1795,1796,1797,1803,1829,1830,1839,1869,1876,1877,1880,1881,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2254,2390,2391,2392,2393,2394,2440,2448,2449,2453,2457,2468,2473,2502,2509,2513,2517,2522,2526,2530,2534,2538,2542,2546,2552,2556,2562,2566,2572,2576,2581,2585,2588,2592,2598,2602,2608,2612,2618,2621,2625,2629,2633,2637,2641,2642,2643,2644,2647,2650,2653,2656,2660,2661,2662,2663,2704,2707,2709,2711,2713,2718,2719,2723,2729,2733,2734,2736,2748,2749,2753,2759,2763,2840,2841,2845,2872,2876,2877,2881,4678,4850,4876,5047,5073,5104,5112,5118,5134,5156,5161,5166,5176,5185,5194,5198,5205,5224,5231,5232,5241,5244,5247,5251,5255,5259,5262,5263,5268,5273,5283,5288,5295,5301,5302,5305,5309,5314,5316,5318,5321,5324,5326,5330,5333,5340,5343,5346,5350,5352,5356,5358,5360,5362,5366,5374,5382,5394,5400,5409,5412,5423,5426,5427,5432,5433,5930,5999,6073,6074,6084,6093,6266,6268,6272,6275,6278,6281,6284,6287,6290,6293,6297,6300,6303,6306,6310,6313,6317,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6487,6489,6490,6491,6492,6493,6494,6495,6496,6498,6499,6501,6502,6504,6506,6507,6509,6510,6511,6512,6513,6514,6516,6517,6518,6519,6520,6805,6807,6809,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6825,6826,6827,6828,6829,6830,6831,6833,6837,6999,7000,7001,7002,7003,7004,7008,7009,7010,7551,7553,7555,7557,7559,7561,7562,7563,7564,7566,7568,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7584,7585,7586,7587,7589,7591,7592,7594,7595,7597,7599,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7614,7615,7616,7617,7619,7620,7621,7622,7623,7625,7627,7629,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,9672,9747,9750,9753,9756,9770,9786,9902,9905,9934,9961,9970,10034,10642,10700,11022,11165,11407,11431,11469,11839,11860,11984,12197,12203,12359,12638,12704,12909,13224,13308,13320,13349",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "7797,12251,12404,28270,30026,30081,30354,30418,30488,30549,30624,30700,30777,31015,31100,31182,31258,31334,31411,31489,31595,31701,31780,32109,32166,35915,35989,36064,36129,36195,36255,36316,36388,36461,36528,49742,49801,49860,49919,49978,50037,50091,50145,50198,50252,50306,50360,54940,55014,55093,55166,55240,55311,55383,55455,55528,55585,55643,55716,55790,55864,55939,56011,56084,56154,56225,56285,56346,56415,56484,56554,56628,56704,56768,56845,56921,56998,57063,57132,57209,57284,57353,57421,57498,57564,57625,57722,57787,57856,57955,58026,58085,58143,58200,58259,58323,58394,58466,58538,58610,58682,58749,58817,58885,58944,59007,59071,59161,59252,59312,59378,59445,59511,59581,59645,59698,59765,59826,59893,60006,60064,60127,60192,60257,60332,60405,60477,60521,60568,60614,60663,60724,60785,60846,60908,60972,61036,61100,61165,61228,61288,61349,61415,61474,61534,61596,61667,61727,65868,65954,66204,66294,66381,66469,66551,66634,66724,117548,117600,117658,117703,117769,117833,117890,117947,120449,120506,120554,120603,120899,122284,122331,122764,124323,124674,124738,124928,124988,131287,131361,131431,131509,131563,131633,131718,131766,131812,131873,131936,132002,132066,132137,132200,132265,132329,132390,132451,132503,132576,132650,132719,132794,132868,132942,133083,162052,172898,172976,173066,173154,173250,176115,176697,176786,177033,177314,177980,178265,180074,180551,180773,180995,181271,181498,181728,181958,182188,182418,182645,183064,183290,183715,183945,184373,184592,184875,185083,185214,185441,185867,186092,186519,186740,187165,187285,187561,187862,188186,188477,188791,188928,189059,189164,189406,189573,189777,189985,190256,190368,190480,190585,192678,192892,193038,193178,193264,193612,193700,193946,194364,194613,194695,194793,195450,195550,195802,196226,196481,202371,202460,202697,204721,204963,205065,205318,340398,351079,352595,363290,364818,366575,367201,367621,368882,370147,370403,370639,371186,371680,372285,372483,373063,374431,374806,374924,375462,375619,375815,376088,376344,376514,376655,376719,377084,377451,378127,378391,378729,379082,379176,379362,379668,379930,380055,380182,380421,380632,380751,380944,381121,381576,381757,381879,382138,382251,382438,382540,382647,382776,383051,383559,384055,384932,385226,385796,385945,386677,386849,386933,387269,387361,419537,424768,430483,430545,431123,431707,440764,440877,441106,441266,441418,441589,441755,441924,442091,442254,442497,442667,442840,443011,443285,443484,443689,453055,453139,453235,453331,453429,453529,453631,453733,453835,453937,454039,454139,454235,454347,454476,454599,454730,454861,454959,455073,455167,455307,455441,455537,455649,455749,455865,455961,456073,456173,456313,456449,456613,456743,456901,457051,457192,457336,457471,457583,457733,457861,457989,458125,458257,458387,458517,458629,476287,476433,476577,476715,476781,476871,476947,477051,477141,477243,477351,477459,477559,477639,477731,477829,477939,477991,478069,478175,478267,478371,478481,478603,478766,491380,491460,491560,491650,491760,491850,492091,492185,492291,532170,532270,532382,532496,532612,532728,532822,532936,533048,533150,533270,533392,533474,533578,533698,533824,533922,534016,534104,534216,534332,534454,534566,534741,534857,534943,535035,535147,535271,535338,535464,535532,535660,535804,535932,536001,536096,536211,536324,536423,536532,536643,536754,536855,536960,537060,537190,537281,537404,537498,537610,537696,537800,537896,537984,538102,538206,538310,538436,538524,538632,538732,538822,538932,539016,539118,539202,539256,539320,539426,539512,539622,539706,671457,674073,674191,674306,674386,674747,675306,679884,679962,681306,682667,683055,685898,704951,706855,717649,737239,751358,752109,753623,767542,767921,772199,780876,781105,786230,796164,798449,806079,818224,822635,822975,824396",
+ "endLines": "157,245,248,546,589,590,595,596,597,598,599,600,601,604,605,606,607,608,609,610,611,612,613,618,619,673,674,675,676,677,678,679,680,681,682,855,856,857,858,859,860,861,862,863,864,865,866,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1090,1091,1095,1096,1097,1098,1099,1100,1101,1748,1749,1750,1751,1752,1753,1754,1755,1794,1795,1796,1797,1803,1829,1830,1839,1869,1876,1877,1880,1881,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2254,2390,2391,2392,2393,2394,2447,2448,2452,2456,2460,2472,2478,2508,2512,2516,2521,2525,2529,2533,2537,2541,2545,2551,2555,2561,2565,2571,2575,2580,2584,2587,2591,2597,2601,2607,2611,2617,2620,2624,2628,2632,2636,2640,2641,2642,2643,2646,2649,2652,2655,2659,2660,2661,2662,2663,2706,2708,2710,2712,2717,2718,2722,2728,2732,2733,2735,2747,2748,2752,2758,2762,2763,2840,2844,2871,2875,2876,2880,2908,4849,4875,5046,5072,5103,5111,5117,5133,5155,5160,5165,5175,5184,5193,5197,5204,5223,5230,5231,5240,5243,5246,5250,5254,5258,5261,5262,5267,5272,5282,5287,5294,5300,5301,5304,5308,5313,5315,5317,5320,5323,5325,5329,5332,5339,5342,5345,5349,5351,5355,5357,5359,5361,5365,5373,5381,5393,5399,5408,5411,5422,5425,5426,5431,5432,5437,5998,6068,6073,6083,6092,6093,6267,6271,6274,6277,6280,6283,6286,6289,6292,6296,6299,6302,6305,6309,6312,6316,6320,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6486,6488,6489,6490,6491,6492,6493,6494,6495,6497,6498,6500,6501,6503,6505,6506,6508,6509,6510,6511,6512,6513,6515,6516,6517,6518,6519,6520,6806,6808,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6824,6825,6826,6827,6828,6829,6830,6832,6836,6840,6999,7000,7001,7002,7003,7007,7008,7009,7010,7552,7554,7556,7558,7560,7561,7562,7563,7565,7567,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7583,7584,7585,7586,7588,7590,7591,7593,7594,7596,7598,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7613,7614,7615,7616,7618,7619,7620,7621,7622,7624,7626,7628,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,9746,9749,9752,9755,9769,9775,9795,9904,9933,9960,9969,10033,10396,10645,10727,11049,11182,11430,11436,11474,11859,11983,12003,12202,12206,12364,12649,12769,12928,13278,13319,13345,13355",
+ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24",
+ "endOffsets": "7847,12291,12448,28306,30076,30138,30413,30483,30544,30619,30695,30772,30850,31095,31177,31253,31329,31406,31484,31590,31696,31775,31855,32161,32219,35984,36059,36124,36190,36250,36311,36383,36456,36523,36591,49796,49855,49914,49973,50032,50086,50140,50193,50247,50301,50355,50409,55009,55088,55161,55235,55306,55378,55450,55523,55580,55638,55711,55785,55859,55934,56006,56079,56149,56220,56280,56341,56410,56479,56549,56623,56699,56763,56840,56916,56993,57058,57127,57204,57279,57348,57416,57493,57559,57620,57717,57782,57851,57950,58021,58080,58138,58195,58254,58318,58389,58461,58533,58605,58677,58744,58812,58880,58939,59002,59066,59156,59247,59307,59373,59440,59506,59576,59640,59693,59760,59821,59888,60001,60059,60122,60187,60252,60327,60400,60472,60516,60563,60609,60658,60719,60780,60841,60903,60967,61031,61095,61160,61223,61283,61344,61410,61469,61529,61591,61662,61722,61790,65949,66036,66289,66376,66464,66546,66629,66719,66810,117595,117653,117698,117764,117828,117885,117942,117996,120501,120549,120598,120649,120928,122326,122375,122805,124350,124733,124795,124983,125040,131356,131426,131504,131558,131628,131713,131761,131807,131868,131931,131997,132061,132132,132195,132260,132324,132385,132446,132498,132571,132645,132714,132789,132863,132937,133078,133148,162100,172971,173061,173149,173245,173335,176692,176781,177028,177309,177561,178260,178653,180546,180768,180990,181266,181493,181723,181953,182183,182413,182640,183059,183285,183710,183940,184368,184587,184870,185078,185209,185436,185862,186087,186514,186735,187160,187280,187556,187857,188181,188472,188786,188923,189054,189159,189401,189568,189772,189980,190251,190363,190475,190580,190697,192887,193033,193173,193259,193607,193695,193941,194359,194608,194690,194788,195445,195545,195797,196221,196476,196570,202455,202692,204716,204958,205060,205313,207469,351074,352590,363285,364813,366570,367196,367616,368877,370142,370398,370634,371181,371675,372280,372478,373058,374426,374801,374919,375457,375614,375810,376083,376339,376509,376650,376714,377079,377446,378122,378386,378724,379077,379171,379357,379663,379925,380050,380177,380416,380627,380746,380939,381116,381571,381752,381874,382133,382246,382433,382535,382642,382771,383046,383554,384050,384927,385221,385791,385940,386672,386844,386928,387264,387356,387634,424763,430134,430540,431118,431702,431793,440872,441101,441261,441413,441584,441750,441919,442086,442249,442492,442662,442835,443006,443280,443479,443684,444014,453134,453230,453326,453424,453524,453626,453728,453830,453932,454034,454134,454230,454342,454471,454594,454725,454856,454954,455068,455162,455302,455436,455532,455644,455744,455860,455956,456068,456168,456308,456444,456608,456738,456896,457046,457187,457331,457466,457578,457728,457856,457984,458120,458252,458382,458512,458624,458764,476428,476572,476710,476776,476866,476942,477046,477136,477238,477346,477454,477554,477634,477726,477824,477934,477986,478064,478170,478262,478366,478476,478598,478761,478918,491455,491555,491645,491755,491845,492086,492180,492286,492378,532265,532377,532491,532607,532723,532817,532931,533043,533145,533265,533387,533469,533573,533693,533819,533917,534011,534099,534211,534327,534449,534561,534736,534852,534938,535030,535142,535266,535333,535459,535527,535655,535799,535927,535996,536091,536206,536319,536418,536527,536638,536749,536850,536955,537055,537185,537276,537399,537493,537605,537691,537795,537891,537979,538097,538201,538305,538431,538519,538627,538727,538817,538927,539011,539113,539197,539251,539315,539421,539507,539617,539701,539821,674068,674186,674301,674381,674742,674975,675818,679957,681301,682662,683050,685893,695946,705081,708220,719001,737806,752104,752366,753818,767916,772194,772800,781100,781251,786440,796471,801470,806818,820350,822970,824281,824594"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values/bools.xml",
+ "from": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,95",
+ "endColumns": "39,35",
+ "endOffsets": "90,126"
+ },
+ "to": {
+ "startLines": "591,593",
+ "startColumns": "4,4",
+ "startOffsets": "30143,30256",
+ "endColumns": "39,35",
+ "endOffsets": "30178,30287"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/eec92cb44c58adbd0a1c3325c5763359/transformed/jetified-window-1.0.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,19,23,34,51",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,234,294,346,391,451,869,1066,1790,2904",
+ "endLines": "6,7,8,9,10,18,22,33,50,58",
+ "endColumns": "11,59,51,44,59,24,24,24,24,24",
+ "endOffsets": "229,289,341,386,446,864,1061,1785,2899,3292"
+ },
+ "to": {
+ "startLines": "496,501,502,503,1798,9776,9782,12650,12658,12670",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "25353,25532,25592,25644,120654,674980,675175,796476,796758,797198",
+ "endLines": "500,501,502,503,1798,9781,9785,12657,12669,12677",
+ "endColumns": "11,59,51,44,59,24,24,24,24,24",
+ "endOffsets": "25527,25587,25639,25684,120709,675170,675301,796753,797193,797502"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values/arrays.xml",
+ "from": {
+ "startLines": "30,36,8,13,19,24,2",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "1275,1613,359,655,851,1112,102",
+ "endLines": "35,41,12,17,23,28,6",
+ "endColumns": "19,19,19,19,19,19,19",
+ "endOffsets": "1608,1807,650,845,1107,1269,353"
+ },
+ "to": {
+ "startLines": "2,8,14,19,24,29,34",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "150,488,687,981,1174,1435,1597",
+ "endLines": "7,13,18,23,28,33,38",
+ "endColumns": "19,19,19,19,19,19,19",
+ "endOffsets": "483,682,976,1169,1430,1592,1848"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values/styles.xml",
+ "from": {
+ "startLines": "2,15,19,24,39,49,44,32,53",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "64,866,1014,1345,2105,2609,2390,1718,2768",
+ "endLines": "14,18,21,31,43,52,48,38,59",
+ "endColumns": "12,12,12,12,12,12,12,12,12",
+ "endOffsets": "861,1009,1229,1713,2385,2763,2604,2100,3143"
+ },
+ "to": {
+ "startLines": "2420,2433,2437,9636,9644,9649,9653,9658,9665",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "174997,175747,175895,669654,670027,670312,670471,670690,671077",
+ "endLines": "2432,2436,2439,9643,9648,9652,9657,9664,9671",
+ "endColumns": "12,12,12,12,12,12,12,12,12",
+ "endOffsets": "175742,175890,176110,670022,670307,670466,670685,671072,671452"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1350,1353,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1414,1415,1416,1417,1418,1422,1426,1430,1434,1435,1439,1447,1454,1462,1465,1475,1484,1493,1502,1503,1504,1505,1511,1512,1513,1514,1515,1516,1522,1523,1524,1525,1526,1531,1532,1536,1537,1543,1547,1548,1549,1550,1560,1561,1562,1566,1567,1573,1577,1578,1581,1582,1586,1587,1590,1591,1592,1593,1856,1863,2123,2129,2392,2399,2659,2665,2728,2810,2862,2944,3006,3088,3152,3204,3286,3294,3300,3311,3315,3319,3332,3347,3363,3370,3376,3393,3406,3426,3443,3452,3457,3464,3484,3497,3514,3520,3526,3533,3537,3543,3557,3560,3570,3571,3572,3620,3624,3628,3632,3633,3634,3637,3653,3660,3674,3719,3720,3726,3730,3734,3739,3746,3752,3753,3756,3760,3765,3778,3782,3787,3792,3797,3800,3803,3806,3810,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3840,3844,3848,3852,3856,3860,3864,3865,3866,3867,3868,3869,3870,3871,3875,3879,3880,3884,3885,3888,3892,3895,3898,3901,3905,3908,3911,3915,3919,3923,3927,3930,3931,3932,3933,3936,3940,3943,3946,3949,3952,3955,3958,3962,3965,3966,3969,3972,3973,3976,3977,3978,3982,3983,3988,3995,4002,4009,4016,4023,4030,4037,4044,4051,4060,4069,4078,4085,4094,4103,4106,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4125,4130,4135,4138,4139,4140,4141,4142,4150,4158,4159,4167,4171,4179,4187,4195,4203,4211,4212,4220,4228,4229,4232,4235,4237,4242,4244,4249,4253,4257,4258,4259,4260,4264,4268,4269,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4292,4296,4297,4301,4302,4303,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4332,4333,4334,4340,4341,4345,4347,4348,4353,4354,4355,4356,4357,4358,4362,4363,4364,4370,4371,4375,4377,4381,4385,4389,4393,4394,4395,4396,4399,4402,4405,4408,4411,4416,4420,4423,4424,4429,4433,4438,4444,4450,4455,4459,4464,4468,4472,4513,4514,4515,4516,4517,4521,4522,4523,4524,4528,4532,4536,4540,4544,4548,4552,4556,4562,4563,4604,4618,4623,4649,4656,4659,4670,4675,4678,4681,4736,4742,4743,4746,4749,4752,4755,4758,4761,4764,4768,4771,4772,4773,4781,4789,4792,4797,4802,4807,4812,4816,4820,4821,4829,4830,4831,4832,4833,4841,4846,4851,4852,4853,4854,4879,4885,4890,4893,4897,4900,4904,4914,4917,4922,4925,4929,4933,4941,4955,4968,4972,4987,4998,5001,5012,5017,5021,5056,5057,5058,5070,5078,5086,5094,5102,5122,5125,5152,5157,5177,5180,5183,5190,5203,5212,5215,5235,5245,5249,5253,5266,5270,5274,5278,5284,5288,5305,5313,5317,5321,5325,5328,5332,5336,5340,5350,5357,5364,5368,5394,5404,5429,5438,5458,5468,5472,5482,5507,5517,5520,5524,5525,5526,5527,5531,5537,5543,5544,5557,5558,5559,5562,5565,5568,5571,5574,5577,5580,5583,5586,5589,5592,5595,5598,5601,5604,5607,5610,5613,5616,5619,5622,5623,5628,5629,5642,5652,5656,5661,5666,5670,5673,5677,5681,5684,5688,5691,5695,5700,5705,5708,5715,5719,5723,5732,5737,5742,5743,5747,5750,5754,5767,5772,5780,5784,5788,5805,5809,5814,5832,5839,5843,5873,5876,5879,5882,5885,5888,5891,5910,5916,5924,5931,5943,5951,5956,5961,5965,5976,5980,5988,5991,5996,5997,5998,5999,6003,6007,6011,6015,6050,6053,6057,6061,6095,6098,6102,6106,6115,6121,6124,6134,6138,6139,6146,6150,6157,6158,6159,6162,6167,6172,6173,6177,6192,6211,6215,6216,6228,6238,6239,6251,6256,6280,6283,6289,6292,6301,6309,6313,6316,6319,6322,6326,6329,6346,6350,6353,6368,6371,6379,6384,6391,6396,6397,6402,6403,6409,6415,6421,6453,6464,6481,6488,6492,6495,6508,6517,6521,6526,6530,6534,6538,6542,6546,6550,6554,6559,6562,6574,6579,6588,6591,6598,6599,6603,6612,6618,6622,6623,6627,6648,6654,6658,6662,6663,6681,6682,6683,6684,6685,6690,6693,6694,6700,6701,6713,6725,6732,6733,6738,6743,6744,6748,6762,6767,6773,6779,6785,6790,6796,6802,6803,6809,6824,6829,6838,6847,6850,6864,6869,6880,6884,6893,6902,6903,6910,6918,6935,6945,6992,7059,7105,7162,7174,7232,7241,7350,7370,7391,7397,7405,7511,7525,7548,7554,7598,7602,7608,7614,7625,7657,7664,7672,7687,7743,7754,7767,7779,7817,7864,7870,7882,7888,7894,7946,7951,7956,7963,7998,8010,8056,8085,8148,8153,8159,8162,8166,8220,8258,8276,8294,8351,8359,8383,8387,8395,8488,8492,8771,8779,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,206,255,310,366,426,487,552,607,657,707,760,818,866,935,983,1054,1126,1198,1271,1338,1387,1441,1478,1529,1589,1636,1692,1741,1799,1853,1914,1970,2021,2081,2137,2200,2249,2305,2361,2411,2470,2525,2587,2634,2688,2744,2796,2851,2905,2959,3013,3062,3120,3174,3231,3287,3334,3387,3443,3503,3566,3625,3687,3737,3791,3845,3893,3950,4003,4059,4113,4169,4232,4294,4350,4410,4463,4524,4603,4684,4756,4835,4915,4991,5069,5138,5214,5291,5362,5435,5511,5589,5658,5734,5811,5875,5946,6018,6069,6122,6177,6244,6297,6349,6399,6457,6522,6570,6621,6688,6754,6812,6881,6939,7008,7078,7151,7225,7293,7360,7430,7496,7569,7629,7705,7765,7825,7900,7968,8034,8102,8162,8221,8278,8344,8406,8463,8531,8604,8674,8736,8797,8865,8927,8997,9066,9122,9181,9243,9305,9372,9429,9490,9551,9612,9673,9729,9785,9841,9897,9955,10013,10071,10129,10186,10243,10300,10357,10416,10475,10533,10616,10699,10772,10826,10895,10951,11032,11113,11184,11313,11366,11424,11482,11540,11586,11646,11700,11770,11840,11905,11971,12036,12104,12173,12241,12371,12424,12483,12541,12593,12643,12695,12741,12791,12847,12894,12952,13010,13072,13135,13197,13256,13316,13381,13447,13512,13574,13636,13698,13760,13822,13884,13950,14017,14083,14146,14210,14273,14341,14402,14464,14526,14589,14653,14716,14780,14858,14917,14983,15063,15124,15177,15235,15286,15331,15395,15454,15516,15590,15661,15727,15801,15870,15941,16014,16085,16153,16226,16302,16372,16450,16518,16584,16645,16714,16778,16844,16912,16978,17041,17109,17180,17245,17318,17381,17462,17526,17592,17662,17732,17802,17872,17939,17996,18054,18113,18173,18232,18291,18350,18409,18468,18527,18586,18645,18704,18763,18823,18884,18946,19007,19068,19129,19190,19251,19312,19372,19433,19494,19554,19615,19676,19737,19798,19859,19920,19981,20042,20103,20164,20225,20293,20362,20432,20501,20570,20639,20708,20777,20846,20915,20984,21053,21122,21182,21243,21305,21366,21427,21488,21549,21610,21671,21732,21793,21854,21915,21977,22040,22104,22167,22230,22293,22356,22419,22482,22545,22608,22671,22734,22795,22857,22920,22982,23044,23106,23168,23230,23292,23354,23416,23478,23540,23597,23683,23763,23853,23948,24040,24132,24222,24305,24398,24485,24582,24673,24774,24861,24964,25053,25152,25244,25344,25428,25522,25610,25708,25791,25882,25976,26075,26177,26275,26375,26462,26562,26648,26744,26832,26913,27004,27100,27193,27286,27377,27462,27556,27645,27743,27836,27938,28026,28130,28221,28321,28414,28515,28600,28695,28784,28883,28968,29060,29155,29255,29358,29457,29560,29649,29750,29837,29934,30022,30118,30210,30310,30400,30498,30583,30672,30761,30854,30941,31032,31098,31174,31243,31322,31395,31475,31555,31632,31700,31778,31854,31925,32006,32079,32162,32237,32322,32395,32476,32557,32631,32715,32785,32863,32933,33013,33091,33163,33245,33315,33392,33472,33557,33645,33729,33816,33890,33968,34046,34117,34198,34289,34372,34468,34566,34673,34738,34804,34857,34933,34999,35086,35162,35238,35303,35358,35412,35491,35569,35642,35707,35770,35836,35907,35978,36048,36110,36179,36245,36305,36372,36439,36495,36546,36599,36651,36705,36776,36839,36898,36960,37019,37092,37159,37229,37289,37352,37427,37499,37595,37666,37722,37793,37850,37907,37973,38037,38108,38165,38218,38281,38333,38391,38458,38527,38593,38652,38735,38794,38851,38918,38988,39062,39124,39193,39263,39362,39459,39558,39644,39730,39811,39886,39975,40066,40150,40209,40255,40321,40378,40445,40502,40584,40649,40715,40838,40922,41043,41108,41170,41268,41342,41425,41514,41578,41657,41731,41793,41889,41954,42013,42069,42125,42185,42292,42339,42399,42460,42524,42585,42645,42703,42746,42795,42847,42898,42950,42999,43048,43113,43179,43239,43300,43356,43415,43464,43512,43570,43627,43729,43786,43861,43909,43960,44022,44087,44139,44213,44276,44339,44407,44457,44519,44579,44636,44696,44745,44813,44919,45021,45090,45161,45217,45266,45366,45437,45547,45636,45727,45809,45907,45963,46064,46174,46273,46336,46442,46519,46631,46758,46870,46997,47067,47181,47312,47409,47477,47595,47698,47816,47877,47951,48018,48123,48245,48319,48386,48496,48595,48668,48765,48887,49005,49123,49184,49306,49423,49491,49597,49699,49779,49850,49946,50013,50087,50161,50247,50335,50425,50503,50580,50680,50751,50872,50993,51057,51182,51256,51380,51504,51571,51680,51808,51920,51999,52077,52178,52249,52371,52493,52558,52684,52796,52902,52970,53069,53173,53236,53302,53386,53499,53612,53730,53808,53880,54016,54152,54237,54377,54515,54653,54795,54877,54986,55097,55225,55353,55485,55615,55745,55879,55941,56037,56104,56221,56342,56439,56521,56608,56695,56826,56957,57092,57169,57246,57357,57471,57545,57654,57766,57868,57964,58068,58135,58229,58301,58411,58517,58590,58681,58783,58886,58981,59088,59193,59315,59437,59563,59622,59680,59804,59928,60056,60174,60292,60414,60500,60597,60731,60865,60945,61083,61215,61347,61483,61558,61634,61737,61811,61924,62005,62062,62123,62182,62242,62300,62361,62419,62469,62518,62585,62644,62703,62752,62823,62907,62977,63048,63128,63197,63260,63328,63394,63462,63527,63593,63670,63748,63854,63960,64056,64185,64274,64401,64467,64536,64622,64688,64771,64869,64965,65061,65159,65268,65363,65452,65514,65574,65639,65696,65777,65831,65888,65985,66095,66156,66271,66392,66487,66579,66672,66774,66830,66889,66938,67030,67079,67133,67187,67241,67295,67349,67404,67514,67624,67732,67842,67952,68062,68172,68280,68386,68490,68594,68698,68793,68888,68981,69074,69178,69284,69388,69492,69585,69678,69771,69864,69972,70078,70184,70290,70387,70482,70577,70672,70778,70884,70990,71096,71194,71290,71386,71484,71549,71653,71711,71775,71836,71898,71958,72023,72085,72153,72211,72274,72337,72404,72479,72552,72618,72670,72723,72775,72832,72916,73011,73096,73177,73257,73334,73413,73490,73564,73638,73709,73789,73861,73936,74001,74062,74122,74197,74271,74344,74414,74486,74556,74629,74693,74763,74809,74878,74930,75015,75098,75155,75221,75288,75354,75435,75510,75566,75619,75680,75738,75788,75837,75886,75935,75997,76049,76094,76175,76226,76280,76333,76387,76438,76487,76553,76604,76665,76726,76788,76838,76879,76956,77015,77074,77133,77194,77250,77306,77373,77434,77499,77554,77619,77688,77756,77834,77903,77963,78034,78108,78173,78245,78315,78382,78466,78535,78602,78672,78735,78802,78870,78953,79032,79122,79199,79267,79334,79412,79469,79526,79594,79660,79716,79776,79835,79889,79939,79989,80037,80099,80150,80223,80303,80383,80447,80514,80585,80643,80704,80770,80829,80896,80956,81016,81079,81147,81208,81275,81353,81423,81472,81529,81598,81659,81747,81835,81923,82011,82098,82185,82272,82359,82417,82491,82561,82617,82688,82753,82815,82890,82963,83053,83119,83185,83246,83310,83372,83430,83501,83584,83643,83714,83780,83845,83906,83965,84036,84102,84167,84250,84326,84401,84482,84542,84611,84681,84750,84805,84861,84917,84978,85036,85092,85146,85201,85263,85320,85414,85483,85584,85635,85705,85768,85824,85882,85941,85995,86081,86165,86235,86304,86374,86489,86610,86677,86744,86819,86886,86945,86999,87053,87107,87160,87212,87286,87423,87563,87612,87662,87712,87760,87816,87874,87936,87991,88049,88120,88184,88243,88305,88371,88437,88480,88524,88569,88612,88663,88710,88755,88806,88857,88908,88959,89007,89073,89135,89198,89270,89327,89381,89436,89494,89549,89608,89664,89733,89802,89871,89941,90004,90067,90130,90193,90258,90323,90388,90453,90516,90580,90644,90708,90759,90837,90915,90986,91058,91131,91203,91269,91335,91403,91471,91537,91604,91678,91741,91798,91858,91923,91990,92055,92112,92173,92231,92335,92445,92554,92658,92736,92801,92868,92934,93004,93051,93103,93153,93210,93530,93680,93811,93995,94173,94411,94600,94769,94867,94982,95067,95146,95306,95371,95460,95617,95774,95927,96081,96140,96327,96423,96513,96609,96699,96865,96988,97111,97281,97387,97502,97617,97719,97825,97942,98057,98139,98312,98480,98628,98787,98942,99115,99232,99349,99517,99629,99743,99915,100091,100249,100382,100494,100640,100792,100924,101067,101189,101367,101503,101599,101735,101830,101997,102090,102182,102369,102525,102703,102867,103049,103366,103548,103730,103920,104152,104342,104519,104681,104838,104948,105131,105268,105472,105656,105840,106000,106158,106342,106569,106772,106943,107163,107385,107540,107740,107924,108027,108217,108358,108523,108694,108894,109098,109300,109465,109670,109869,110068,110265,110356,110505,110655,110739,110888,111033,111185,111326,111492,111653,111731,112032,112198,112353,112455,112613,112777,112963,113186,113311,113588,113860,114138,114383,114445,114730,115181,115637,116146,116294,116808,117245,117679,118122,118207,118328,118427,118832,118929,119046,119133,119256,119357,119763,119862,119981,120074,120181,120524,120631,120876,120997,121406,121654,121754,121859,121978,122487,122634,122753,123004,123137,123552,123806,123918,124165,124290,124607,124728,124956,125077,125210,125357,145988,146480,166860,167284,187960,188454,208879,209305,214146,219563,223654,229085,233827,239204,243188,247180,252571,253118,253551,254307,254537,254780,255913,256842,257746,258330,258803,260233,260977,262170,263224,263702,263995,264378,265893,266658,267801,268242,268683,269279,269553,269964,270980,271158,271911,272048,272139,274333,274599,274921,275131,275240,275359,275543,276661,277131,277882,280465,280560,280936,281164,281420,281679,282255,282609,282731,282870,283162,283422,284350,284636,285039,285441,285784,285996,286197,286410,286699,286984,287057,287144,287229,287328,287440,287546,287669,287801,287924,288054,288178,288311,288442,288567,288684,288804,288936,289064,289178,289296,289409,289530,289718,289905,290086,290269,290453,290618,290800,290920,291040,291148,291258,291370,291478,291588,291753,291919,292071,292236,292337,292457,292628,292789,292952,293113,293280,293399,293516,293696,293878,294059,294242,294397,294542,294664,294799,294962,295155,295281,295433,295575,295745,295901,296073,296364,296559,296651,296824,296986,297081,297250,297344,297433,297676,297765,298058,298474,298894,299315,299741,300158,300574,300991,301409,301823,302293,302766,303238,303649,304120,304592,304782,304988,305094,305202,305308,305420,305534,305646,305760,305876,305990,306098,306208,306316,306578,306957,307361,307508,307616,307726,307834,307948,308357,308771,308887,309305,309546,309976,310411,310821,311243,311653,311775,312184,312600,312722,312940,313124,313192,313536,313616,313972,314122,314266,314342,314454,314544,314806,315071,315179,315331,315439,315515,315627,315717,315819,315927,316035,316135,316243,316328,316432,316519,316597,316711,316803,317067,317334,317444,317597,317707,317791,318180,318278,318386,318480,318610,318718,318840,318976,319084,319204,319338,319460,319588,319730,319856,319996,320122,320240,320372,320470,320580,320880,320992,321110,321574,321690,321993,322119,322215,322616,322726,322850,322988,323098,323220,323532,323656,323786,324262,324390,324705,324843,325005,325221,325377,325581,325649,325733,325837,326040,326229,326430,326623,326828,327141,327353,327519,327635,327881,328097,328410,328836,329298,329535,329687,329947,330091,330233,333465,333579,333699,333815,333909,334230,334329,334447,334548,334827,335112,335391,335673,335926,336185,336438,336694,337118,337194,340444,341799,342243,344097,344672,344880,345890,346270,346436,346577,351597,352023,352135,352270,352423,352620,352791,352974,353149,353336,353608,353766,353850,353954,354441,354997,355155,355374,355605,355828,356063,356285,356551,356689,357288,357402,357540,357652,357776,358347,358842,359388,359533,359626,359718,361645,362215,362513,362702,362908,363101,363311,364195,364340,364732,364890,365107,365368,365800,366675,367295,367492,368440,369205,369328,370101,370322,370522,372499,372599,372689,373375,374128,374893,375656,376431,377644,377809,379422,379743,380806,381016,381186,381756,382651,383284,383450,384936,385552,385788,386009,386967,387232,387497,387744,388158,388394,389679,390128,390315,390564,390806,390982,391223,391456,391681,392276,392751,393275,393536,394887,395362,396588,397058,398106,398558,398802,399259,400504,400987,401137,401481,401627,401765,401901,402189,402693,403202,403318,404220,404342,404454,404631,404897,405167,405433,405701,405957,406217,406473,406731,406983,407239,407491,407745,407977,408213,408465,408721,408973,409227,409459,409693,409805,410230,410354,411446,412261,412457,412781,413170,413522,413763,413977,414276,414468,414783,414990,415336,415636,416037,416256,416669,416906,417276,418000,418355,418624,418764,419018,419162,419439,420431,420840,421472,421818,422186,423260,423623,424023,425531,426116,426434,428969,429163,429381,429607,429819,430018,430225,431429,431724,432281,432671,433303,433780,434025,434376,434622,435382,435646,436069,436260,436639,436727,436835,436943,437256,437581,437900,438231,440934,441122,441383,441632,444216,444408,444673,444926,445458,445866,446065,446649,446884,447008,447420,447634,448036,448139,448269,448444,448696,448892,449032,449226,450237,451306,451594,451724,452501,453158,453304,454010,454248,455788,455938,456355,456520,457206,457676,457872,457963,458047,458191,458425,458592,459520,459806,459966,460581,460740,461068,461295,461807,462169,462248,462587,462692,463057,463428,463789,465663,466292,467368,467792,468045,468197,469245,469982,470185,470431,470678,470896,471138,471459,471723,472028,472251,472562,472751,473466,473735,474229,474455,474895,475054,475338,476083,476448,476753,476911,477149,478468,478866,479094,479314,479456,480746,480852,480982,481120,481244,481532,481701,481801,482086,482200,483083,483838,484277,484401,484647,484840,484974,485165,485944,486162,486453,486732,487049,487271,487566,487849,487953,488294,489110,489426,489987,490493,490698,491484,491889,492550,492739,493290,493856,493976,494378,494912,495442,495741,498086,500528,502122,504129,504468,506901,507142,509437,509877,510629,510813,511024,515682,516265,516993,517195,518330,518480,518655,518880,519474,520726,521067,521575,522086,523880,524140,524756,525251,526288,528154,528345,528678,528834,529027,531419,531648,531856,532026,533798,534096,535439,536449,538414,538530,538699,538836,538982,540333,541471,542002,542428,544161,544409,545179,545295,545470,548685,548832,559704,559947,560318,560413,560506,560569,560651,560744,560837,560924,561022,561113,561204,561292,561376,561472,561576,561676,561782,561885,561986,562090,562196,562295,562401,562503,562610,562719,562830,562961,563081,563197,563315,563414,563521,563637,563756,563884,563973,564068,564145,564234,564325,564418,564492,564589,564684,564782,564881,564985,565081,565183,565286,565386,565489,565574,565675,565773,565863,565958,566045,566151,566253,566347,566438,566532,566608,566700,566789,566892,567003,567086,567172,567267,567364,567460,567548,567649,567750,567853,567959,568057,568154,568249,568347,568450,568550,568653,568758,568876,568992,569087,569180,569265,569361,569455,569547,569649,569756,569839,569943,570048,570148,570249,570354,570454,570555,570654,570756,570850,570957,571059,571162,571255,571351,571453,571556,571652,571754,571857,571954,572057,572155,572259,572364,572461,572569,572683,572798,572906,573020,573135,573237,573342,573450,573560,573676,573793,573888,573985,574084,574189,574295,574394,574499,574605,574705,574811,574912,575019,575138,575237,575342,575444,575546,575646,575749,575844,575948,576033,576137,576241,576339,576443,576549,576647,576752,576850,576963,577057,577146,577235,577318,577409,577492,577590,577680,577776,577865,577959,578047,578143,578228,578336,578437,578538,578636,578742,578833,578932,579029,579127,579223,579316,579426,579524,579619,579729,579821,579921,580020,580107,580211,580316,580415,580522,580629,580728,580837,580929,581040,581151,581262,581366,581481,581597,581724,581844,581941,582040,582132,582231,582323,582422,582508,582602,582705,582801,582904,583000,583103,583200,583298,583401,583494,583584,583685,583768,583859,583944,584036,584139,584234,584330,584423,584517,584596,584703,584794,584893,584986,585089,585193,585294,585395,585499,585593,585697,585801,585914,586020,586126,586234,586351,586452,586560,586660,586763,586868,586975,587071,587150,587240,587324,587416,587489,587586,587668,587753,587838,587935,588028,588123,588222,588319,588410,588501,588593,588688,588795,588903,589005,589102,589199,589292,589379,589463,589560,589657,589750,589837,589928,590027,590126,590221,590310,590391,590490,590594,590691,590796,590893,590977,591076,591180,591277,591382,591479,591577,591678,591784,591883,591990,592089,592188,592279,592368,592457,592539,592632,592723,592834,592935,593035,593147,593260,593358,593466,593560,593660,593749,593841,593952,594062,594157,594273,594399,594525,594644,594772,594897,595022,595140,595267,595376,595485,595598,595721,595844,595960,596085,596182,596290,596412,596528,596644,596753,596841,596942,597031,597132,597219,597307,597404,597496,597602,597702,597778",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1349,1352,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1413,1414,1415,1416,1417,1421,1425,1429,1433,1434,1438,1446,1453,1461,1464,1474,1483,1492,1501,1502,1503,1504,1510,1511,1512,1513,1514,1515,1521,1522,1523,1524,1525,1530,1531,1535,1536,1542,1546,1547,1548,1549,1559,1560,1561,1565,1566,1572,1576,1577,1580,1581,1585,1586,1589,1590,1591,1592,1855,1862,2122,2128,2391,2398,2658,2664,2727,2809,2861,2943,3005,3087,3151,3203,3285,3293,3299,3310,3314,3318,3331,3346,3362,3369,3375,3392,3405,3425,3442,3451,3456,3463,3483,3496,3513,3519,3525,3532,3536,3542,3556,3559,3569,3570,3571,3619,3623,3627,3631,3632,3633,3636,3652,3659,3673,3718,3719,3725,3729,3733,3738,3745,3751,3752,3755,3759,3764,3777,3781,3786,3791,3796,3799,3802,3805,3809,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3839,3843,3847,3851,3855,3859,3863,3864,3865,3866,3867,3868,3869,3870,3874,3878,3879,3883,3884,3887,3891,3894,3897,3900,3904,3907,3910,3914,3918,3922,3926,3929,3930,3931,3932,3935,3939,3942,3945,3948,3951,3954,3957,3961,3964,3965,3968,3971,3972,3975,3976,3977,3981,3982,3987,3994,4001,4008,4015,4022,4029,4036,4043,4050,4059,4068,4077,4084,4093,4102,4105,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4124,4129,4134,4137,4138,4139,4140,4141,4149,4157,4158,4166,4170,4178,4186,4194,4202,4210,4211,4219,4227,4228,4231,4234,4236,4241,4243,4248,4252,4256,4257,4258,4259,4263,4267,4268,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4291,4295,4296,4300,4301,4302,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4331,4332,4333,4339,4340,4344,4346,4347,4352,4353,4354,4355,4356,4357,4361,4362,4363,4369,4370,4374,4376,4380,4384,4388,4392,4393,4394,4395,4398,4401,4404,4407,4410,4415,4419,4422,4423,4428,4432,4437,4443,4449,4454,4458,4463,4467,4471,4512,4513,4514,4515,4516,4520,4521,4522,4523,4527,4531,4535,4539,4543,4547,4551,4555,4561,4562,4603,4617,4622,4648,4655,4658,4669,4674,4677,4680,4735,4741,4742,4745,4748,4751,4754,4757,4760,4763,4767,4770,4771,4772,4780,4788,4791,4796,4801,4806,4811,4815,4819,4820,4828,4829,4830,4831,4832,4840,4845,4850,4851,4852,4853,4878,4884,4889,4892,4896,4899,4903,4913,4916,4921,4924,4928,4932,4940,4954,4967,4971,4986,4997,5000,5011,5016,5020,5055,5056,5057,5069,5077,5085,5093,5101,5121,5124,5151,5156,5176,5179,5182,5189,5202,5211,5214,5234,5244,5248,5252,5265,5269,5273,5277,5283,5287,5304,5312,5316,5320,5324,5327,5331,5335,5339,5349,5356,5363,5367,5393,5403,5428,5437,5457,5467,5471,5481,5506,5516,5519,5523,5524,5525,5526,5530,5536,5542,5543,5556,5557,5558,5561,5564,5567,5570,5573,5576,5579,5582,5585,5588,5591,5594,5597,5600,5603,5606,5609,5612,5615,5618,5621,5622,5627,5628,5641,5651,5655,5660,5665,5669,5672,5676,5680,5683,5687,5690,5694,5699,5704,5707,5714,5718,5722,5731,5736,5741,5742,5746,5749,5753,5766,5771,5779,5783,5787,5804,5808,5813,5831,5838,5842,5872,5875,5878,5881,5884,5887,5890,5909,5915,5923,5930,5942,5950,5955,5960,5964,5975,5979,5987,5990,5995,5996,5997,5998,6002,6006,6010,6014,6049,6052,6056,6060,6094,6097,6101,6105,6114,6120,6123,6133,6137,6138,6145,6149,6156,6157,6158,6161,6166,6171,6172,6176,6191,6210,6214,6215,6227,6237,6238,6250,6255,6279,6282,6288,6291,6300,6308,6312,6315,6318,6321,6325,6328,6345,6349,6352,6367,6370,6378,6383,6390,6395,6396,6401,6402,6408,6414,6420,6452,6463,6480,6487,6491,6494,6507,6516,6520,6525,6529,6533,6537,6541,6545,6549,6553,6558,6561,6573,6578,6587,6590,6597,6598,6602,6611,6617,6621,6622,6626,6647,6653,6657,6661,6662,6680,6681,6682,6683,6684,6689,6692,6693,6699,6700,6712,6724,6731,6732,6737,6742,6743,6747,6761,6766,6772,6778,6784,6789,6795,6801,6802,6808,6823,6828,6837,6846,6849,6863,6868,6879,6883,6892,6901,6902,6909,6917,6934,6944,6991,7058,7104,7161,7173,7231,7240,7349,7369,7390,7396,7404,7510,7524,7547,7553,7597,7601,7607,7613,7624,7656,7663,7671,7686,7742,7753,7766,7778,7816,7863,7869,7881,7887,7893,7945,7950,7955,7962,7997,8009,8055,8084,8147,8152,8158,8161,8165,8193,8257,8275,8293,8350,8358,8382,8386,8394,8487,8491,8770,8778,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164",
+ "endColumns": "55,48,54,55,59,60,64,54,49,49,52,57,47,68,47,70,71,71,72,66,48,53,36,50,59,46,55,48,57,53,60,55,50,59,55,62,48,55,55,49,58,54,61,46,53,55,51,54,53,53,53,48,57,53,56,55,46,52,55,59,62,58,61,49,53,53,47,56,52,55,53,55,62,61,55,59,52,60,78,80,71,78,79,75,77,68,75,76,70,72,75,77,68,75,76,63,70,71,50,52,54,66,52,51,49,57,64,47,50,66,65,57,68,57,68,69,72,73,67,66,69,65,72,59,75,59,59,74,67,65,67,59,58,56,65,61,56,67,72,69,61,60,67,61,69,68,55,58,61,61,66,56,60,60,60,60,55,55,55,55,57,57,57,57,56,56,56,56,58,58,57,82,82,72,53,68,55,80,80,70,9,52,57,57,57,45,59,53,69,69,64,65,64,67,68,67,9,52,58,57,51,49,51,45,49,55,46,57,57,61,62,61,58,59,64,65,64,61,61,61,61,61,61,65,66,65,62,63,62,67,60,61,61,62,63,62,63,77,58,65,79,60,52,57,50,44,63,58,61,73,70,65,73,68,70,72,70,67,72,75,69,77,67,65,60,68,63,65,67,65,62,67,70,64,72,62,80,63,65,69,69,69,69,66,56,57,58,59,58,58,58,58,58,58,58,58,58,58,59,60,61,60,60,60,60,60,60,59,60,60,59,60,60,60,60,60,60,60,60,60,60,60,67,68,69,68,68,68,68,68,68,68,68,68,68,59,60,61,60,60,60,60,60,60,60,60,60,60,61,62,63,62,62,62,62,62,62,62,62,62,62,60,61,62,61,61,61,61,61,61,61,61,61,61,56,85,79,89,94,91,91,89,82,92,86,96,90,100,86,102,88,98,91,99,83,93,87,97,82,90,93,98,101,97,99,86,99,85,95,87,80,90,95,92,92,90,84,93,88,97,92,101,87,103,90,99,92,100,84,94,88,98,84,91,94,99,102,98,102,88,100,86,96,87,95,91,99,89,97,84,88,88,92,86,90,65,75,68,78,72,79,79,76,67,77,75,70,80,72,82,74,84,72,80,80,73,83,69,77,69,79,77,71,81,69,76,79,84,87,83,86,73,77,77,70,80,90,82,95,97,106,64,65,52,75,65,86,75,75,64,54,53,78,77,72,64,62,65,70,70,69,61,68,65,59,66,66,55,50,52,51,53,70,62,58,61,58,72,66,69,59,62,74,71,95,70,55,70,56,56,65,63,70,56,52,62,51,57,66,68,65,58,82,58,56,66,69,73,61,68,69,98,96,98,85,85,80,74,88,90,83,58,45,65,56,66,56,81,64,65,122,83,120,64,61,97,73,82,88,63,78,73,61,95,64,58,55,55,59,106,46,59,60,63,60,59,57,42,48,51,50,51,48,48,64,65,59,60,55,58,48,47,57,56,101,56,74,47,50,61,64,51,73,62,62,67,49,61,59,56,59,48,67,105,101,68,70,55,48,99,70,109,88,90,81,97,55,100,109,98,62,105,76,111,126,111,126,69,113,130,96,67,117,102,117,60,73,66,104,121,73,66,109,98,72,96,121,117,117,60,121,116,67,105,101,79,70,95,66,73,73,85,87,89,77,76,99,70,120,120,63,124,73,123,123,66,108,127,111,78,77,100,70,121,121,64,125,111,105,67,98,103,62,65,83,112,112,117,77,71,135,135,84,139,137,137,141,81,108,110,127,127,131,129,129,133,61,95,66,116,120,96,81,86,86,130,130,134,76,76,110,113,73,108,111,101,95,103,66,93,71,109,105,72,90,101,102,94,106,104,121,121,125,58,57,123,123,127,117,117,121,85,96,133,133,79,137,131,131,135,74,75,102,73,112,80,56,60,58,59,57,60,57,49,48,66,58,58,48,70,83,69,70,79,68,62,67,65,67,64,65,76,77,105,105,95,128,88,126,65,68,85,65,82,97,95,95,97,108,94,88,61,59,64,56,80,53,56,96,109,60,114,120,94,91,92,101,55,58,48,91,48,53,53,53,53,53,54,109,109,107,109,109,109,109,107,105,103,103,103,94,94,92,92,103,105,103,103,92,92,92,92,107,105,105,105,96,94,94,94,105,105,105,105,97,95,95,97,64,103,57,63,60,61,59,64,61,67,57,62,62,66,74,72,65,51,52,51,56,83,94,84,80,79,76,78,76,73,73,70,79,71,74,64,60,59,74,73,72,69,71,69,72,63,69,45,68,51,84,82,56,65,66,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,50,53,52,53,50,48,65,50,60,60,61,49,40,76,58,58,58,60,55,55,66,60,64,54,64,68,67,77,68,59,70,73,64,71,69,66,83,68,66,69,62,66,67,82,78,89,76,67,66,77,56,56,67,65,55,59,58,53,49,49,47,61,50,72,79,79,63,66,70,57,60,65,58,66,59,59,62,67,60,66,77,69,48,56,68,60,87,87,87,87,86,86,86,86,57,73,69,55,70,64,61,74,72,89,65,65,60,63,61,57,70,82,58,70,65,64,60,58,70,65,64,82,75,74,80,59,68,69,68,54,55,55,60,57,55,53,54,61,56,93,68,100,50,69,62,55,57,58,53,85,83,69,68,69,114,120,66,66,74,66,58,53,53,53,52,51,73,136,139,48,49,49,47,55,57,61,54,57,70,63,58,61,65,65,42,43,44,42,50,46,44,50,50,50,50,47,65,61,62,71,56,53,54,57,54,58,55,68,68,68,69,62,62,62,62,64,64,64,64,62,63,63,63,50,77,77,70,71,72,71,65,65,67,67,65,66,73,62,56,59,64,66,64,56,60,57,103,109,108,103,77,64,66,65,69,46,51,49,56,12,149,130,183,177,237,188,168,97,114,84,78,11,64,88,156,156,152,153,58,186,95,89,95,89,165,122,122,169,105,114,114,101,105,116,114,81,172,167,147,158,154,172,116,116,167,111,113,171,175,157,132,111,145,151,131,142,121,177,135,95,135,94,166,92,91,186,11,11,11,181,316,181,181,189,231,189,176,161,156,109,182,136,203,183,183,159,157,183,226,202,170,219,221,154,199,183,102,189,140,164,170,199,203,201,164,204,198,198,196,90,148,149,83,148,144,151,140,165,160,77,300,165,154,101,11,163,185,222,124,10,10,10,10,61,10,10,10,10,10,10,10,10,10,84,120,98,10,96,116,86,122,100,10,98,118,92,106,10,106,10,120,10,10,99,104,118,10,146,118,10,132,10,10,111,10,124,10,120,10,120,132,146,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,136,90,10,10,10,10,108,118,10,10,10,10,10,94,10,10,10,10,10,10,121,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,111,105,122,131,122,129,123,132,130,124,116,119,131,127,113,117,112,120,10,10,10,10,10,10,10,119,119,107,109,111,107,109,10,10,151,10,100,10,10,10,10,10,10,10,10,10,10,10,10,10,144,121,134,10,10,10,10,10,10,10,10,10,10,91,10,10,94,10,93,88,10,88,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,105,107,105,111,113,111,113,115,113,107,109,107,10,10,10,10,107,109,107,113,10,10,115,10,10,10,10,10,10,10,121,10,10,121,10,10,10,10,10,10,10,10,75,111,89,10,10,107,10,107,75,111,89,101,107,107,99,107,84,103,86,77,113,91,10,10,109,10,109,83,10,97,107,93,129,107,121,135,107,119,133,121,127,141,125,139,125,117,131,97,109,10,111,117,10,115,10,10,95,10,109,123,137,109,121,10,123,129,10,127,10,10,10,10,10,10,67,83,103,10,10,10,10,10,10,10,10,115,10,10,10,10,10,10,10,10,10,10,10,113,119,115,93,10,98,117,100,10,10,10,10,10,10,10,10,10,75,10,10,10,10,10,10,10,10,10,10,10,10,111,10,10,10,10,10,10,10,10,10,83,103,10,10,10,10,10,10,10,10,10,137,10,113,137,111,123,10,10,10,144,92,91,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,99,89,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,145,137,135,10,10,10,115,10,121,111,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,111,10,123,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,139,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,87,107,107,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,123,10,10,10,102,129,10,10,10,139,10,10,10,10,129,10,10,145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,78,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,158,10,10,10,10,157,10,10,10,10,10,141,10,105,129,137,123,10,10,99,10,113,10,10,10,123,10,10,133,10,10,10,10,10,10,10,10,10,103,10,10,10,10,10,10,10,10,10,10,10,10,119,10,10,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,94,92,62,81,92,92,86,97,90,90,87,83,95,103,99,105,102,100,103,105,98,105,101,106,108,110,130,119,115,117,98,106,115,118,127,88,94,76,88,90,92,73,96,94,97,98,103,95,101,102,99,102,84,100,97,89,94,86,105,101,93,90,93,75,91,88,102,110,82,85,94,96,95,87,100,100,102,105,97,96,94,97,102,99,102,104,117,115,94,92,84,95,93,91,101,106,82,103,104,99,100,104,99,100,98,101,93,106,101,102,92,95,101,102,95,101,102,96,102,97,103,104,96,107,113,114,107,113,114,101,104,107,109,115,116,94,96,98,104,105,98,104,105,99,105,100,106,118,98,104,101,101,99,102,94,103,84,103,103,97,103,105,97,104,97,112,93,88,88,82,90,82,97,89,95,88,93,87,95,84,107,100,100,97,105,90,98,96,97,95,92,109,97,94,109,91,99,98,86,103,104,98,106,106,98,108,91,110,110,110,103,114,115,126,119,96,98,91,98,91,98,85,93,102,95,102,95,102,96,97,102,92,89,100,82,90,84,91,102,94,95,92,93,78,106,90,98,92,102,103,100,100,103,93,103,103,112,105,105,107,116,100,107,99,102,104,106,95,78,89,83,91,72,96,81,84,84,96,92,94,98,96,90,90,91,94,106,107,101,96,96,92,86,83,96,96,92,86,90,98,98,94,88,80,98,103,96,104,96,83,98,103,96,104,96,97,100,105,98,106,98,98,90,88,88,81,92,90,110,100,99,111,112,97,107,93,99,88,91,110,109,94,115,125,125,118,127,124,124,117,126,108,108,112,122,122,115,124,96,107,121,115,115,108,87,100,88,100,86,87,96,91,105,99,75,76",
+ "endOffsets": "201,250,305,361,421,482,547,602,652,702,755,813,861,930,978,1049,1121,1193,1266,1333,1382,1436,1473,1524,1584,1631,1687,1736,1794,1848,1909,1965,2016,2076,2132,2195,2244,2300,2356,2406,2465,2520,2582,2629,2683,2739,2791,2846,2900,2954,3008,3057,3115,3169,3226,3282,3329,3382,3438,3498,3561,3620,3682,3732,3786,3840,3888,3945,3998,4054,4108,4164,4227,4289,4345,4405,4458,4519,4598,4679,4751,4830,4910,4986,5064,5133,5209,5286,5357,5430,5506,5584,5653,5729,5806,5870,5941,6013,6064,6117,6172,6239,6292,6344,6394,6452,6517,6565,6616,6683,6749,6807,6876,6934,7003,7073,7146,7220,7288,7355,7425,7491,7564,7624,7700,7760,7820,7895,7963,8029,8097,8157,8216,8273,8339,8401,8458,8526,8599,8669,8731,8792,8860,8922,8992,9061,9117,9176,9238,9300,9367,9424,9485,9546,9607,9668,9724,9780,9836,9892,9950,10008,10066,10124,10181,10238,10295,10352,10411,10470,10528,10611,10694,10767,10821,10890,10946,11027,11108,11179,11308,11361,11419,11477,11535,11581,11641,11695,11765,11835,11900,11966,12031,12099,12168,12236,12366,12419,12478,12536,12588,12638,12690,12736,12786,12842,12889,12947,13005,13067,13130,13192,13251,13311,13376,13442,13507,13569,13631,13693,13755,13817,13879,13945,14012,14078,14141,14205,14268,14336,14397,14459,14521,14584,14648,14711,14775,14853,14912,14978,15058,15119,15172,15230,15281,15326,15390,15449,15511,15585,15656,15722,15796,15865,15936,16009,16080,16148,16221,16297,16367,16445,16513,16579,16640,16709,16773,16839,16907,16973,17036,17104,17175,17240,17313,17376,17457,17521,17587,17657,17727,17797,17867,17934,17991,18049,18108,18168,18227,18286,18345,18404,18463,18522,18581,18640,18699,18758,18818,18879,18941,19002,19063,19124,19185,19246,19307,19367,19428,19489,19549,19610,19671,19732,19793,19854,19915,19976,20037,20098,20159,20220,20288,20357,20427,20496,20565,20634,20703,20772,20841,20910,20979,21048,21117,21177,21238,21300,21361,21422,21483,21544,21605,21666,21727,21788,21849,21910,21972,22035,22099,22162,22225,22288,22351,22414,22477,22540,22603,22666,22729,22790,22852,22915,22977,23039,23101,23163,23225,23287,23349,23411,23473,23535,23592,23678,23758,23848,23943,24035,24127,24217,24300,24393,24480,24577,24668,24769,24856,24959,25048,25147,25239,25339,25423,25517,25605,25703,25786,25877,25971,26070,26172,26270,26370,26457,26557,26643,26739,26827,26908,26999,27095,27188,27281,27372,27457,27551,27640,27738,27831,27933,28021,28125,28216,28316,28409,28510,28595,28690,28779,28878,28963,29055,29150,29250,29353,29452,29555,29644,29745,29832,29929,30017,30113,30205,30305,30395,30493,30578,30667,30756,30849,30936,31027,31093,31169,31238,31317,31390,31470,31550,31627,31695,31773,31849,31920,32001,32074,32157,32232,32317,32390,32471,32552,32626,32710,32780,32858,32928,33008,33086,33158,33240,33310,33387,33467,33552,33640,33724,33811,33885,33963,34041,34112,34193,34284,34367,34463,34561,34668,34733,34799,34852,34928,34994,35081,35157,35233,35298,35353,35407,35486,35564,35637,35702,35765,35831,35902,35973,36043,36105,36174,36240,36300,36367,36434,36490,36541,36594,36646,36700,36771,36834,36893,36955,37014,37087,37154,37224,37284,37347,37422,37494,37590,37661,37717,37788,37845,37902,37968,38032,38103,38160,38213,38276,38328,38386,38453,38522,38588,38647,38730,38789,38846,38913,38983,39057,39119,39188,39258,39357,39454,39553,39639,39725,39806,39881,39970,40061,40145,40204,40250,40316,40373,40440,40497,40579,40644,40710,40833,40917,41038,41103,41165,41263,41337,41420,41509,41573,41652,41726,41788,41884,41949,42008,42064,42120,42180,42287,42334,42394,42455,42519,42580,42640,42698,42741,42790,42842,42893,42945,42994,43043,43108,43174,43234,43295,43351,43410,43459,43507,43565,43622,43724,43781,43856,43904,43955,44017,44082,44134,44208,44271,44334,44402,44452,44514,44574,44631,44691,44740,44808,44914,45016,45085,45156,45212,45261,45361,45432,45542,45631,45722,45804,45902,45958,46059,46169,46268,46331,46437,46514,46626,46753,46865,46992,47062,47176,47307,47404,47472,47590,47693,47811,47872,47946,48013,48118,48240,48314,48381,48491,48590,48663,48760,48882,49000,49118,49179,49301,49418,49486,49592,49694,49774,49845,49941,50008,50082,50156,50242,50330,50420,50498,50575,50675,50746,50867,50988,51052,51177,51251,51375,51499,51566,51675,51803,51915,51994,52072,52173,52244,52366,52488,52553,52679,52791,52897,52965,53064,53168,53231,53297,53381,53494,53607,53725,53803,53875,54011,54147,54232,54372,54510,54648,54790,54872,54981,55092,55220,55348,55480,55610,55740,55874,55936,56032,56099,56216,56337,56434,56516,56603,56690,56821,56952,57087,57164,57241,57352,57466,57540,57649,57761,57863,57959,58063,58130,58224,58296,58406,58512,58585,58676,58778,58881,58976,59083,59188,59310,59432,59558,59617,59675,59799,59923,60051,60169,60287,60409,60495,60592,60726,60860,60940,61078,61210,61342,61478,61553,61629,61732,61806,61919,62000,62057,62118,62177,62237,62295,62356,62414,62464,62513,62580,62639,62698,62747,62818,62902,62972,63043,63123,63192,63255,63323,63389,63457,63522,63588,63665,63743,63849,63955,64051,64180,64269,64396,64462,64531,64617,64683,64766,64864,64960,65056,65154,65263,65358,65447,65509,65569,65634,65691,65772,65826,65883,65980,66090,66151,66266,66387,66482,66574,66667,66769,66825,66884,66933,67025,67074,67128,67182,67236,67290,67344,67399,67509,67619,67727,67837,67947,68057,68167,68275,68381,68485,68589,68693,68788,68883,68976,69069,69173,69279,69383,69487,69580,69673,69766,69859,69967,70073,70179,70285,70382,70477,70572,70667,70773,70879,70985,71091,71189,71285,71381,71479,71544,71648,71706,71770,71831,71893,71953,72018,72080,72148,72206,72269,72332,72399,72474,72547,72613,72665,72718,72770,72827,72911,73006,73091,73172,73252,73329,73408,73485,73559,73633,73704,73784,73856,73931,73996,74057,74117,74192,74266,74339,74409,74481,74551,74624,74688,74758,74804,74873,74925,75010,75093,75150,75216,75283,75349,75430,75505,75561,75614,75675,75733,75783,75832,75881,75930,75992,76044,76089,76170,76221,76275,76328,76382,76433,76482,76548,76599,76660,76721,76783,76833,76874,76951,77010,77069,77128,77189,77245,77301,77368,77429,77494,77549,77614,77683,77751,77829,77898,77958,78029,78103,78168,78240,78310,78377,78461,78530,78597,78667,78730,78797,78865,78948,79027,79117,79194,79262,79329,79407,79464,79521,79589,79655,79711,79771,79830,79884,79934,79984,80032,80094,80145,80218,80298,80378,80442,80509,80580,80638,80699,80765,80824,80891,80951,81011,81074,81142,81203,81270,81348,81418,81467,81524,81593,81654,81742,81830,81918,82006,82093,82180,82267,82354,82412,82486,82556,82612,82683,82748,82810,82885,82958,83048,83114,83180,83241,83305,83367,83425,83496,83579,83638,83709,83775,83840,83901,83960,84031,84097,84162,84245,84321,84396,84477,84537,84606,84676,84745,84800,84856,84912,84973,85031,85087,85141,85196,85258,85315,85409,85478,85579,85630,85700,85763,85819,85877,85936,85990,86076,86160,86230,86299,86369,86484,86605,86672,86739,86814,86881,86940,86994,87048,87102,87155,87207,87281,87418,87558,87607,87657,87707,87755,87811,87869,87931,87986,88044,88115,88179,88238,88300,88366,88432,88475,88519,88564,88607,88658,88705,88750,88801,88852,88903,88954,89002,89068,89130,89193,89265,89322,89376,89431,89489,89544,89603,89659,89728,89797,89866,89936,89999,90062,90125,90188,90253,90318,90383,90448,90511,90575,90639,90703,90754,90832,90910,90981,91053,91126,91198,91264,91330,91398,91466,91532,91599,91673,91736,91793,91853,91918,91985,92050,92107,92168,92226,92330,92440,92549,92653,92731,92796,92863,92929,92999,93046,93098,93148,93205,93525,93675,93806,93990,94168,94406,94595,94764,94862,94977,95062,95141,95301,95366,95455,95612,95769,95922,96076,96135,96322,96418,96508,96604,96694,96860,96983,97106,97276,97382,97497,97612,97714,97820,97937,98052,98134,98307,98475,98623,98782,98937,99110,99227,99344,99512,99624,99738,99910,100086,100244,100377,100489,100635,100787,100919,101062,101184,101362,101498,101594,101730,101825,101992,102085,102177,102364,102520,102698,102862,103044,103361,103543,103725,103915,104147,104337,104514,104676,104833,104943,105126,105263,105467,105651,105835,105995,106153,106337,106564,106767,106938,107158,107380,107535,107735,107919,108022,108212,108353,108518,108689,108889,109093,109295,109460,109665,109864,110063,110260,110351,110500,110650,110734,110883,111028,111180,111321,111487,111648,111726,112027,112193,112348,112450,112608,112772,112958,113181,113306,113583,113855,114133,114378,114440,114725,115176,115632,116141,116289,116803,117240,117674,118117,118202,118323,118422,118827,118924,119041,119128,119251,119352,119758,119857,119976,120069,120176,120519,120626,120871,120992,121401,121649,121749,121854,121973,122482,122629,122748,122999,123132,123547,123801,123913,124160,124285,124602,124723,124951,125072,125205,125352,145983,146475,166855,167279,187955,188449,208874,209300,214141,219558,223649,229080,233822,239199,243183,247175,252566,253113,253546,254302,254532,254775,255908,256837,257741,258325,258798,260228,260972,262165,263219,263697,263990,264373,265888,266653,267796,268237,268678,269274,269548,269959,270975,271153,271906,272043,272134,274328,274594,274916,275126,275235,275354,275538,276656,277126,277877,280460,280555,280931,281159,281415,281674,282250,282604,282726,282865,283157,283417,284345,284631,285034,285436,285779,285991,286192,286405,286694,286979,287052,287139,287224,287323,287435,287541,287664,287796,287919,288049,288173,288306,288437,288562,288679,288799,288931,289059,289173,289291,289404,289525,289713,289900,290081,290264,290448,290613,290795,290915,291035,291143,291253,291365,291473,291583,291748,291914,292066,292231,292332,292452,292623,292784,292947,293108,293275,293394,293511,293691,293873,294054,294237,294392,294537,294659,294794,294957,295150,295276,295428,295570,295740,295896,296068,296359,296554,296646,296819,296981,297076,297245,297339,297428,297671,297760,298053,298469,298889,299310,299736,300153,300569,300986,301404,301818,302288,302761,303233,303644,304115,304587,304777,304983,305089,305197,305303,305415,305529,305641,305755,305871,305985,306093,306203,306311,306573,306952,307356,307503,307611,307721,307829,307943,308352,308766,308882,309300,309541,309971,310406,310816,311238,311648,311770,312179,312595,312717,312935,313119,313187,313531,313611,313967,314117,314261,314337,314449,314539,314801,315066,315174,315326,315434,315510,315622,315712,315814,315922,316030,316130,316238,316323,316427,316514,316592,316706,316798,317062,317329,317439,317592,317702,317786,318175,318273,318381,318475,318605,318713,318835,318971,319079,319199,319333,319455,319583,319725,319851,319991,320117,320235,320367,320465,320575,320875,320987,321105,321569,321685,321988,322114,322210,322611,322721,322845,322983,323093,323215,323527,323651,323781,324257,324385,324700,324838,325000,325216,325372,325576,325644,325728,325832,326035,326224,326425,326618,326823,327136,327348,327514,327630,327876,328092,328405,328831,329293,329530,329682,329942,330086,330228,333460,333574,333694,333810,333904,334225,334324,334442,334543,334822,335107,335386,335668,335921,336180,336433,336689,337113,337189,340439,341794,342238,344092,344667,344875,345885,346265,346431,346572,351592,352018,352130,352265,352418,352615,352786,352969,353144,353331,353603,353761,353845,353949,354436,354992,355150,355369,355600,355823,356058,356280,356546,356684,357283,357397,357535,357647,357771,358342,358837,359383,359528,359621,359713,361640,362210,362508,362697,362903,363096,363306,364190,364335,364727,364885,365102,365363,365795,366670,367290,367487,368435,369200,369323,370096,370317,370517,372494,372594,372684,373370,374123,374888,375651,376426,377639,377804,379417,379738,380801,381011,381181,381751,382646,383279,383445,384931,385547,385783,386004,386962,387227,387492,387739,388153,388389,389674,390123,390310,390559,390801,390977,391218,391451,391676,392271,392746,393270,393531,394882,395357,396583,397053,398101,398553,398797,399254,400499,400982,401132,401476,401622,401760,401896,402184,402688,403197,403313,404215,404337,404449,404626,404892,405162,405428,405696,405952,406212,406468,406726,406978,407234,407486,407740,407972,408208,408460,408716,408968,409222,409454,409688,409800,410225,410349,411441,412256,412452,412776,413165,413517,413758,413972,414271,414463,414778,414985,415331,415631,416032,416251,416664,416901,417271,417995,418350,418619,418759,419013,419157,419434,420426,420835,421467,421813,422181,423255,423618,424018,425526,426111,426429,428964,429158,429376,429602,429814,430013,430220,431424,431719,432276,432666,433298,433775,434020,434371,434617,435377,435641,436064,436255,436634,436722,436830,436938,437251,437576,437895,438226,440929,441117,441378,441627,444211,444403,444668,444921,445453,445861,446060,446644,446879,447003,447415,447629,448031,448134,448264,448439,448691,448887,449027,449221,450232,451301,451589,451719,452496,453153,453299,454005,454243,455783,455933,456350,456515,457201,457671,457867,457958,458042,458186,458420,458587,459515,459801,459961,460576,460735,461063,461290,461802,462164,462243,462582,462687,463052,463423,463784,465658,466287,467363,467787,468040,468192,469240,469977,470180,470426,470673,470891,471133,471454,471718,472023,472246,472557,472746,473461,473730,474224,474450,474890,475049,475333,476078,476443,476748,476906,477144,478463,478861,479089,479309,479451,480741,480847,480977,481115,481239,481527,481696,481796,482081,482195,483078,483833,484272,484396,484642,484835,484969,485160,485939,486157,486448,486727,487044,487266,487561,487844,487948,488289,489105,489421,489982,490488,490693,491479,491884,492545,492734,493285,493851,493971,494373,494907,495437,495736,498081,500523,502117,504124,504463,506896,507137,509432,509872,510624,510808,511019,515677,516260,516988,517190,518325,518475,518650,518875,519469,520721,521062,521570,522081,523875,524135,524751,525246,526283,528149,528340,528673,528829,529022,531414,531643,531851,532021,533793,534091,535434,536444,538409,538525,538694,538831,538977,539662,541466,541997,542423,544156,544404,545174,545290,545465,548680,548827,559699,559942,560313,560408,560501,560564,560646,560739,560832,560919,561017,561108,561199,561287,561371,561467,561571,561671,561777,561880,561981,562085,562191,562290,562396,562498,562605,562714,562825,562956,563076,563192,563310,563409,563516,563632,563751,563879,563968,564063,564140,564229,564320,564413,564487,564584,564679,564777,564876,564980,565076,565178,565281,565381,565484,565569,565670,565768,565858,565953,566040,566146,566248,566342,566433,566527,566603,566695,566784,566887,566998,567081,567167,567262,567359,567455,567543,567644,567745,567848,567954,568052,568149,568244,568342,568445,568545,568648,568753,568871,568987,569082,569175,569260,569356,569450,569542,569644,569751,569834,569938,570043,570143,570244,570349,570449,570550,570649,570751,570845,570952,571054,571157,571250,571346,571448,571551,571647,571749,571852,571949,572052,572150,572254,572359,572456,572564,572678,572793,572901,573015,573130,573232,573337,573445,573555,573671,573788,573883,573980,574079,574184,574290,574389,574494,574600,574700,574806,574907,575014,575133,575232,575337,575439,575541,575641,575744,575839,575943,576028,576132,576236,576334,576438,576544,576642,576747,576845,576958,577052,577141,577230,577313,577404,577487,577585,577675,577771,577860,577954,578042,578138,578223,578331,578432,578533,578631,578737,578828,578927,579024,579122,579218,579311,579421,579519,579614,579724,579816,579916,580015,580102,580206,580311,580410,580517,580624,580723,580832,580924,581035,581146,581257,581361,581476,581592,581719,581839,581936,582035,582127,582226,582318,582417,582503,582597,582700,582796,582899,582995,583098,583195,583293,583396,583489,583579,583680,583763,583854,583939,584031,584134,584229,584325,584418,584512,584591,584698,584789,584888,584981,585084,585188,585289,585390,585494,585588,585692,585796,585909,586015,586121,586229,586346,586447,586555,586655,586758,586863,586970,587066,587145,587235,587319,587411,587484,587581,587663,587748,587833,587930,588023,588118,588217,588314,588405,588496,588588,588683,588790,588898,589000,589097,589194,589287,589374,589458,589555,589652,589745,589832,589923,590022,590121,590216,590305,590386,590485,590589,590686,590791,590888,590972,591071,591175,591272,591377,591474,591572,591673,591779,591878,591985,592084,592183,592274,592363,592452,592534,592627,592718,592829,592930,593030,593142,593255,593353,593461,593555,593655,593744,593836,593947,594057,594152,594268,594394,594520,594639,594767,594892,595017,595135,595262,595371,595480,595593,595716,595839,595955,596080,596177,596285,596407,596523,596639,596748,596836,596937,597026,597127,597214,597302,597399,597491,597597,597697,597773,597850"
+ },
+ "to": {
+ "startLines": "40,46,57,58,59,60,61,62,65,66,67,68,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,139,140,160,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,244,246,247,249,250,251,252,253,254,255,256,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,453,454,455,473,475,476,477,478,479,480,481,482,483,484,485,486,490,491,492,493,495,504,505,506,507,508,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,547,548,559,567,568,594,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,1027,1033,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1757,1758,1807,1808,1809,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1832,1835,1836,1837,1856,1857,1858,1859,1860,1861,1862,1870,1878,1879,1882,1883,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1945,1960,2013,2014,2015,2016,2017,2018,2019,2027,2028,2029,2030,2077,2080,2083,2084,2085,2096,2097,2098,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2152,2155,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2216,2217,2218,2219,2220,2255,2258,2259,2314,2315,2395,2399,2403,2407,2411,2412,2479,2487,2494,2664,2667,2677,2686,2695,2764,2765,2766,2767,2773,2774,2775,2776,2777,2778,2784,2785,2786,2787,2788,2793,2794,2798,2799,2805,2809,2810,2811,2812,2822,2823,2824,2828,2829,2835,2839,2909,2912,2913,2917,2918,2921,2922,2923,2924,3187,3194,3454,3460,3723,3730,3990,3996,4059,4141,4193,4275,4337,4419,4483,4535,4617,4625,4631,4642,4646,4650,4663,5438,5454,5461,5467,5484,5497,5517,5534,5543,5548,5555,5575,5588,5605,5611,5617,5624,5628,5634,5648,5651,5661,5662,5663,5711,5715,5719,5723,5724,5725,5728,5744,5751,5765,5810,5836,5842,5846,5850,5855,5862,5868,5869,5872,5876,5881,5894,5898,5903,5908,5913,5916,5919,5922,5926,6069,6070,6071,6072,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6343,6347,6351,6355,6359,6363,6367,6368,6369,6370,6371,6372,6373,6374,6378,6382,6383,6387,6388,6391,6395,6398,6401,6404,6408,6411,6414,6418,6422,6426,6430,6433,6434,6435,6436,6439,6443,6446,6449,6452,6455,6458,6461,6532,6535,6536,6539,6542,6543,6546,6547,6548,6552,6553,6558,6565,6572,6579,6586,6593,6600,6607,6614,6621,6630,6639,6648,6655,6664,6673,6676,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6695,6700,6705,6708,6709,6710,6711,6712,6720,6728,6729,6737,6741,6749,6757,6765,6773,6781,6782,6790,6798,6799,6802,6841,6843,6848,6850,6855,6859,6863,6864,6865,6866,6870,6874,6875,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6898,6902,6903,6907,6908,6909,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6938,6939,6940,6946,6947,6951,6953,6954,6959,6960,6961,6962,6963,6964,6968,6969,6970,6976,6977,6981,6983,6987,6991,6995,7011,7012,7013,7014,7017,7020,7023,7026,7029,7034,7038,7041,7042,7047,7051,7056,7062,7068,7073,7077,7082,7086,7090,7131,7132,7133,7134,7135,7139,7140,7141,7142,7146,7150,7154,7158,7162,7166,7170,7174,7180,7181,7222,7236,7241,7267,7274,7277,7288,7293,7296,7299,7354,7360,7361,7364,7367,7370,7373,7376,7379,7382,7386,7389,7390,7391,7399,7407,7410,7415,7420,7425,7430,7434,7438,7439,7447,7448,7449,7450,7451,7459,7464,7469,7470,7471,7472,7497,7503,7508,7511,7515,7518,7522,7532,7535,7540,7543,7547,7648,7656,7670,7683,7687,7702,7713,7716,7727,7732,7736,7771,7772,7773,7785,7793,7801,7809,7817,7837,7840,7867,7872,7892,7895,7898,7905,7918,7927,7930,7950,7960,7964,7968,7981,7985,7989,7993,7999,8003,8020,8028,8032,8036,8040,8043,8047,8051,8055,8065,8072,8079,8083,8109,8119,8144,8153,8173,8183,8187,8197,8222,8232,8235,8239,8240,8241,8242,8246,8252,8258,8259,8272,8273,8274,8277,8280,8283,8286,8289,8292,8295,8298,8301,8304,8307,8310,8313,8316,8319,8322,8325,8328,8331,8334,8337,8338,8343,8344,8357,8367,8371,8376,8381,8385,8388,8392,8396,8399,8403,8406,8410,8415,8420,8423,8430,8434,8438,8447,8452,8457,8458,8462,8465,8469,8482,8487,8495,8499,8503,8520,8524,8529,8547,8554,8558,8588,8591,8594,8597,8600,8603,8606,8625,8631,8639,8646,8658,8666,8671,8676,8680,8691,8695,8703,8706,8711,8712,8713,8714,8718,8722,8726,8730,8765,8768,8772,8776,8810,8813,8817,8821,8830,8836,8839,8849,8853,8854,8861,8865,8872,8873,8874,8877,8882,8887,8888,8892,8907,8926,8930,8931,8943,8953,8954,8966,8971,8995,8998,9004,9007,9016,9024,9028,9031,9034,9037,9041,9044,9061,9065,9068,9083,9086,9094,9099,9106,9111,9112,9117,9118,9124,9130,9136,9168,9179,9196,9203,9207,9210,9223,9232,9236,9241,9245,9249,9253,9257,9261,9265,9269,9274,9277,9289,9294,9303,9306,9313,9314,9318,9327,9333,9337,9338,9342,9363,9369,9373,9377,9378,9396,9397,9398,9399,9400,9405,9408,9409,9415,9416,9428,9440,9447,9448,9453,9458,9459,9463,9477,9482,9488,9494,9500,9505,9511,9517,9518,9524,9539,9544,9553,9562,9565,9579,9584,9595,9599,9608,9617,9618,9625,9828,9845,9855,10402,10469,10515,10572,10584,10680,10728,10837,10857,10878,10884,10892,10998,11191,11214,11220,11264,11268,11328,11383,11437,11498,11505,11513,11528,11584,11595,11608,11620,11658,11705,11711,11723,11729,11735,11787,11792,11797,11804,12028,12040,12086,12115,12348,12353,12386,12389,12393,12435,12473,12491,12549,12606,12614,12770,12808,12816,12929,12933,13216,13279,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "1910,2152,2605,2660,2716,2776,2837,2902,3057,3107,3157,3210,3268,3367,3436,3484,3555,3627,3699,3772,3839,3888,3942,3979,4030,4090,4137,4193,4242,4300,4354,4415,4471,4522,4582,4638,4701,4750,4806,4862,4912,4971,5026,5088,5135,5189,5245,5297,5352,5406,5460,5514,5563,5621,5675,5732,5788,5835,5888,5944,6004,6067,6126,6188,6238,6292,6346,6394,6451,6504,7066,7120,7953,8064,8126,8182,8242,8295,8356,8435,8516,8588,8667,8747,8823,8901,8970,9046,9123,9194,9267,9343,9421,9490,9566,9643,9707,9778,12200,12296,12349,12453,12520,12573,12625,12675,12733,12798,12846,18340,18407,18473,18531,18600,18658,18727,18797,18870,18944,19012,19079,19149,19215,19288,19348,19424,19484,19544,19619,19687,19753,19821,19881,19940,19997,20063,20125,20182,20250,20323,20393,20455,20516,20584,20646,20716,20785,20841,20900,20962,21024,21091,21148,21209,21270,21331,21392,21448,21504,21560,21616,21674,21732,21790,21848,21905,21962,22019,22076,22135,22194,22252,22335,22418,22491,22545,22614,22670,22751,22832,22903,23238,23291,23349,24090,24204,24250,24310,24364,24434,24504,24569,24635,24700,24768,24837,24905,25035,25088,25147,25205,25303,25689,25741,25787,25837,25893,25987,26045,26103,26165,26228,26290,26349,26409,26474,26540,26605,26667,26729,26791,26853,26915,26977,27043,27110,27176,27239,27303,27366,27434,27495,27557,27619,27682,27746,27809,27873,27951,28010,28076,28156,28217,28311,28369,28802,29140,29204,30292,33492,33566,33637,33703,33777,33846,33917,33990,34061,34129,34202,34278,34348,34426,34494,34560,34621,34690,34754,34820,34888,34954,35017,35085,35156,35221,35294,35357,35438,35502,35568,35638,35708,35778,35848,36649,36706,36764,36823,36883,36942,37001,37060,37119,37178,37237,37296,37355,37414,37473,37533,37594,37656,37717,37778,37839,37900,37961,38022,38082,38143,38204,38264,38325,38386,38447,38508,38569,38630,38691,38752,38813,38874,38935,39003,39072,39142,39211,39280,39349,39418,39487,39556,39625,39694,39763,39832,39892,39953,40015,40076,40137,40198,40259,40320,40381,40442,40503,40564,40625,40687,40750,40814,40877,40940,41003,41066,41129,41192,41255,41318,41381,41444,41505,41567,41630,41692,41754,41816,41878,41940,42002,42064,42126,42188,42250,42307,42393,42473,42563,42658,42750,42842,42932,43015,43108,43195,43292,43383,43484,43571,43674,43763,43862,43954,44054,44138,44232,44320,44418,44501,44592,44686,44785,44887,44985,45085,45172,45272,45358,45454,45542,45623,45714,45810,45903,45996,46087,46172,46266,46355,46453,46546,46648,46736,46840,46931,47031,47124,47225,47310,47405,47494,47593,47678,47770,47865,47965,48068,48167,48270,48359,48460,48547,48644,48732,48828,48920,49020,49110,49208,49293,49382,49471,49564,49651,50414,50480,50556,50625,50704,50777,50857,50937,51014,51082,51160,51236,51307,51388,51461,51544,51619,51704,51777,51858,51939,52013,52097,52167,52245,52315,52395,52473,52545,52627,52697,52774,52854,52939,53027,53111,53198,53272,53350,53428,53499,53580,53671,53754,53850,53948,54055,54120,54186,54239,54315,54381,54468,54544,61795,62173,62768,62822,62901,62979,63052,63117,63180,63246,63317,63388,63458,63520,63589,63655,63715,63782,63849,63905,63956,64009,64061,64115,64186,64249,64308,64370,64429,64502,64569,64639,64699,64762,64837,64909,65005,65076,65132,65203,65260,65317,65383,65447,65518,65575,65628,65691,65743,65801,67106,67175,67241,67300,67383,67442,67499,67566,67636,67710,67772,67841,67911,68010,68107,68206,68292,68378,68459,68534,68623,68714,68798,68857,68903,68969,69026,69093,69150,69232,69297,69363,69486,69570,69691,69756,69818,69916,69990,70073,70162,70226,70305,70379,70441,70537,70602,70661,70717,70773,70833,70940,70987,71047,71108,71172,71233,71293,71351,71394,71443,71495,71546,71598,71647,71696,71761,71827,71887,71948,72004,72063,72112,72160,72218,72275,72377,72434,72509,72557,72608,72670,72735,72787,72861,72924,72987,73055,73105,73167,73227,73284,73344,73393,73461,73567,73669,73738,73809,73865,73914,74014,74085,74195,74284,74375,74457,74555,74611,74712,74822,74921,74984,75090,75167,75279,75406,75518,75645,75715,75829,75960,76057,76125,76243,76346,76464,76525,76599,76666,76771,76893,76967,77034,77144,77243,77316,77413,77535,77653,77771,77832,77954,78071,78139,78245,78347,78427,78498,78594,78661,78735,78809,78895,78983,79073,79151,79228,79328,79399,79520,79641,79705,79830,79904,80028,80152,80219,80328,80456,80568,80647,80725,80826,80897,81019,81141,81206,81332,81444,81550,81618,81717,81821,81884,81950,82034,82147,82260,82378,82456,82528,82664,82800,82885,83025,83163,83301,83443,83525,83634,83745,83873,84001,84133,84263,84393,84527,84589,84685,84752,84869,84990,85087,85169,85256,85343,85474,85605,85740,85817,85894,86005,86119,86193,86302,86414,86516,86612,86716,86783,86877,86949,87059,87165,87238,87329,87431,87534,87629,87736,87841,87963,88085,88211,88270,88328,88452,88576,88704,88822,88940,89062,89148,89245,89379,89513,89593,89731,89863,89995,90131,90206,90282,90385,90459,90572,90653,90710,90771,90830,90890,90948,91009,91067,91117,91166,91233,91292,91351,91400,91471,91555,91625,91696,91776,91845,91908,91976,92042,92110,92175,92241,92318,92396,92502,92608,92704,92833,92922,93049,93115,93184,93270,93336,93419,93517,93613,93709,93807,93916,94011,94100,94162,94222,94287,94344,94425,94479,94536,94633,94743,94804,94919,95040,95135,95227,95320,95422,95478,95537,95586,95678,95727,95781,95835,95889,95943,95997,96052,96162,96272,96380,96490,96600,96710,96820,96928,97034,97138,97242,97346,97441,97536,97629,97722,97826,97932,98036,98140,98233,98326,98419,98512,98620,98726,98832,98938,99035,99130,99225,99320,99426,99532,99638,99744,99842,99938,100034,100132,100197,100301,100359,100423,100484,100546,100606,100671,100733,100801,100859,100922,100985,101052,101127,101200,101266,101318,101371,101423,101480,101564,101659,101744,101825,101905,101982,102061,102138,102212,102286,102357,102437,102509,102584,102649,102710,102770,102845,102919,102992,103062,103134,103204,103277,103341,103411,103457,103526,103578,103663,103746,103803,103869,103936,104002,104083,104158,104214,104267,104328,104386,104436,104485,104534,104583,104645,104697,104742,104823,104874,104928,104981,105035,105086,105135,105201,105252,105313,105374,105436,105486,105527,105604,105663,105722,105781,105842,105898,105954,106021,106082,106147,106202,106267,106336,106404,106482,106551,106611,106682,106756,106821,106893,106963,107030,107114,107183,107250,107320,107383,107450,107518,107601,107680,107770,107847,107915,107982,108060,108117,108174,108242,108308,108364,108424,108483,108537,108587,108637,108685,108747,108798,108871,108951,109031,109095,109162,109233,109291,109352,109418,109477,109544,109604,109664,109727,109795,109856,109923,110001,110071,110120,110177,110246,110307,110395,110483,110571,110659,110746,110833,110920,111007,111065,111139,111209,111265,111336,111401,111463,111538,111611,111701,111767,111833,111894,111958,112020,112078,112149,112232,112291,112362,112428,112493,112554,112613,112684,112750,112815,112898,112974,113049,113130,113190,113259,113329,113398,113453,113509,113565,113626,113684,113740,113794,113849,113911,113968,114062,114131,114232,114283,114353,114416,114472,114530,114589,114643,114729,114813,114883,114952,115022,115137,115258,115325,115392,115467,115534,115593,115647,115701,115755,115808,115860,118049,118186,121069,121118,121168,121259,121307,121363,121421,121483,121538,121596,121667,121731,121790,121852,121918,122422,122567,122611,122656,123675,123726,123773,123818,123869,123920,123971,124355,124800,124866,125045,125108,125248,125305,125359,125414,125472,125527,125586,125642,125711,125780,125849,125919,125982,126045,126108,126171,126236,126301,126366,126431,126494,126558,126622,126686,126737,126815,126893,126964,127036,127109,127181,127247,127313,127381,127449,127515,127582,127656,127719,127776,127836,127901,127968,128033,128090,128151,128209,128313,128423,128532,128636,128714,128779,128846,128912,128982,129029,129081,129257,129996,133289,133439,133570,133754,133932,134170,134359,135039,135137,135252,135337,140154,140314,140532,140621,140778,141831,141984,142138,142445,142632,142728,142818,142914,143004,143170,143293,143416,143586,143692,143807,143922,144024,144130,144247,144362,144444,144617,144785,144933,145092,145247,145420,145537,145654,145822,145934,146048,146220,146396,146554,146687,146799,146945,147097,147229,147372,147494,147672,147808,147904,148040,148135,148302,148395,148487,148674,148830,149008,149172,149354,149671,149853,150035,150225,150457,150647,150824,150986,151143,151253,151436,151573,151777,151961,152145,152305,152463,152647,152874,153077,153248,153468,153690,153845,154045,154229,154332,154522,154663,154828,154999,155199,155403,155605,155770,155975,156174,156373,156570,156661,156810,156960,157044,157193,157338,157490,157631,157797,158582,158660,158961,159127,159282,162105,162263,162427,166893,167116,173340,173617,173889,174167,174412,174474,178658,179109,179565,190702,190850,191364,191801,192235,196575,196660,196781,196880,197285,197382,197499,197586,197709,197810,198216,198315,198434,198527,198634,198977,199084,199329,199450,199859,200107,200207,200312,200431,200940,201087,201206,201457,201590,202005,202259,207474,207721,207846,208163,208284,208512,208633,208766,208913,229544,230036,250416,250840,271516,272010,292435,292861,297702,303119,307210,312641,317383,322760,326744,330736,336127,336674,337107,337863,338093,338336,339469,387639,388543,389127,389600,391030,391774,392967,394021,394499,394792,395175,396690,397455,398598,399039,399480,400076,400350,400761,401777,401955,402708,402845,402936,405130,405396,405718,405928,406037,406156,406340,407458,407928,408679,411262,413113,413489,413717,413973,414232,414808,415162,415284,415423,415715,415975,416903,417189,417592,417994,418337,418549,418750,418963,419252,430139,430212,430299,430384,444019,444131,444237,444360,444492,444615,444745,444869,445002,445133,445258,445375,445495,445627,445755,445869,445987,446100,446221,446409,446596,446777,446960,447144,447309,447491,447611,447731,447839,447949,448061,448169,448279,448444,448610,448762,448927,449028,449148,449319,449480,449643,449804,449971,450090,450207,450387,450569,450750,450933,451088,451233,451355,451490,451653,451846,451972,452124,452266,452436,452592,452764,459527,459722,459814,459987,460149,460244,460413,460507,460596,460839,460928,461221,461637,462057,462478,462904,463321,463737,464154,464572,464986,465456,465929,466401,466812,467283,467755,467945,468151,468257,468365,468471,468583,468697,468809,468923,469039,469153,469261,469371,469479,469741,470120,470524,470671,470779,470889,470997,471111,471520,471934,472050,472468,472709,473139,473574,473984,474406,474816,474938,475347,475763,475885,476103,478923,478991,479335,479415,479771,479921,480065,480141,480253,480343,480605,480870,480978,481130,481238,481314,481426,481516,481618,481726,481834,481934,482042,482127,482231,482318,482396,482510,482602,482866,483133,483243,483396,483506,483590,483979,484077,484185,484279,484409,484517,484639,484775,484883,485003,485137,485259,485387,485529,485655,485795,485921,486039,486171,486269,486379,486679,486791,486909,487373,487489,487792,487918,488014,488415,488525,488649,488787,488897,489019,489331,489455,489585,490061,490189,490504,490642,490804,491020,491176,492383,492451,492535,492639,492842,493031,493232,493425,493630,493943,494155,494321,494437,494683,494899,495212,495638,496100,496337,496489,496749,496893,497035,500267,500381,500501,500617,500711,501032,501131,501249,501350,501629,501914,502193,502475,502728,502987,503240,503496,503920,503996,507246,508601,509045,510899,511474,511682,512692,513072,513238,513379,518399,518825,518937,519072,519225,519422,519593,519776,519951,520138,520410,520568,520652,520756,521243,521799,521957,522176,522407,522630,522865,523087,523353,523491,524090,524204,524342,524454,524578,525149,525644,526190,526335,526428,526520,528447,529017,529315,529504,529710,529903,530113,530997,531142,531534,531692,531909,539965,540397,541272,541892,542089,543037,543802,543925,544698,544919,545119,547096,547196,547286,547972,548725,549490,550253,551028,552241,552406,554019,554340,555403,555613,555783,556353,557248,557881,558047,559533,560149,560385,560606,561564,561829,562094,562341,562755,562991,564276,564725,564912,565161,565403,565579,565820,566053,566278,566873,567348,567872,568133,569484,569959,571185,571655,572703,573155,573399,573856,575101,575584,575734,576078,576224,576362,576498,576786,577290,577799,577915,578817,578939,579051,579228,579494,579764,580030,580298,580554,580814,581070,581328,581580,581836,582088,582342,582574,582810,583062,583318,583570,583824,584056,584290,584402,584827,584951,586043,586858,587054,587378,587767,588119,588360,588574,588873,589065,589380,589587,589933,590233,590634,590853,591266,591503,591873,592597,592952,593221,593361,593615,593759,594036,595028,595437,596069,596415,596783,597857,598220,598620,600128,600713,601031,603566,603760,603978,604204,604416,604615,604822,606026,606321,606878,607268,607900,608377,608622,608973,609219,609979,610243,610666,610857,611236,611324,611432,611540,611853,612178,612497,612828,615531,615719,615980,616229,618813,619005,619270,619523,620055,620463,620662,621246,621481,621605,622017,622231,622633,622736,622866,623041,623293,623489,623629,623823,624834,625903,626191,626321,627098,627755,627901,628607,628845,630385,630535,630952,631117,631803,632273,632469,632560,632644,632788,633022,633189,634117,634403,634563,635178,635337,635665,635892,636404,636766,636845,637184,637289,637654,638025,638386,640260,640889,641965,642389,642642,642794,643842,644579,644782,645028,645275,645493,645735,646056,646320,646625,646848,647159,647348,648063,648332,648826,649052,649492,649651,649935,650680,651045,651350,651508,651746,653065,653463,653691,653911,654053,655343,655449,655579,655717,655841,656129,656298,656398,656683,656797,657680,658435,658874,658998,659244,659437,659571,659762,660541,660759,661050,661329,661646,661868,662163,662446,662550,662891,663707,664023,664584,665090,665295,666081,666486,667147,667336,667887,668453,668573,668975,676710,677240,677539,696136,698578,700172,702179,702518,706213,708225,710520,710960,711712,711896,712107,716765,738071,738799,739001,740136,740286,742873,744686,752371,754470,754811,755319,755830,757624,757884,758500,758995,760032,761898,762089,762422,762578,762771,765163,765392,765600,765770,774833,775131,776474,777484,785945,786061,787285,787422,787568,789967,791105,791636,793413,795146,795394,801475,802689,802864,806823,806970,817981,820355,824599,824694,824787,824850,824932,825025,825118,825205,825303,825394,825485,825573,825657,825753,825857,825957,826063,826166,826267,826371,826477,826576,826682,826784,826891,827000,827111,827242,827362,827478,827596,827695,827802,827918,828037,828165,828254,828349,828426,828515,828606,828699,828773,828870,828965,829063,829162,829266,829362,829464,829567,829667,829770,829855,829956,830054,830144,830239,830326,830432,830534,830628,830719,830813,830889,830981,831070,831173,831284,831367,831453,831548,831645,831741,831829,831930,832031,832134,832240,832338,832435,832530,832628,832731,832831,832934,833039,833157,833273,833368,833461,833546,833642,833736,833828,833930,834037,834120,834224,834329,834429,834530,834635,834735,834836,834935,835037,835131,835238,835340,835443,835536,835632,835734,835837,835933,836035,836138,836235,836338,836436,836540,836645,836742,836850,836964,837079,837187,837301,837416,837518,837623,837731,837841,837957,838074,838169,838266,838365,838470,838576,838675,838780,838886,838986,839092,839193,839300,839419,839518,839623,839725,839827,839927,840030,840125,840229,840314,840418,840522,840620,840724,840830,840928,841033,841131,841244,841338,841427,841516,841599,841690,841773,841871,841961,842057,842146,842240,842328,842424,842509,842617,842718,842819,842917,843023,843114,843213,843310,843408,843504,843597,843707,843805,843900,844010,844102,844202,844301,844388,844492,844597,844696,844803,844910,845009,845118,845210,845321,845432,845543,845647,845762,845878,846005,846125,846222,846321,846413,846512,846604,846703,846789,846883,846986,847082,847185,847281,847384,847481,847579,847682,847775,847865,847966,848049,848140,848225,848317,848420,848515,848611,848704,848798,848877,848984,849075,849174,849267,849370,849474,849575,849676,849780,849874,849978,850082,850195,850301,850407,850515,850632,850733,850841,850941,851044,851149,851256,851352,851431,851521,851605,851697,851770,851867,851949,852034,852119,852216,852309,852404,852503,852600,852691,852782,852874,852969,853076,853184,853286,853383,853480,853573,853660,853744,853841,853938,854031,854118,854209,854308,854407,854502,854591,854672,854771,854875,854972,855077,855174,855258,855357,855461,855558,855663,855760,855858,855959,856065,856164,856271,856370,856469,856560,856649,856738,856820,856913,857004,857115,857216,857316,857428,857541,857639,857747,857841,857941,858030,858122,858233,858343,858438,858554,858680,858806,858925,859053,859178,859303,859421,859548,859657,859766,859879,860002,860125,860241,860366,860463,860571,860693,860809,860925,861034,861122,861223,861312,861413,861500,861588,861685,861777,861883,861983,862059",
+ "endLines": "40,46,57,58,59,60,61,62,65,66,67,68,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,139,140,160,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,244,246,247,249,250,251,252,253,254,255,256,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,448,453,454,455,473,475,476,477,478,479,480,481,482,483,484,485,489,490,491,492,493,495,504,505,506,507,508,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,547,548,559,567,568,594,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,1027,1033,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1757,1758,1807,1808,1809,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1832,1835,1836,1837,1856,1857,1858,1859,1860,1861,1862,1870,1878,1879,1882,1883,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1945,1963,2013,2014,2015,2016,2017,2018,2019,2027,2028,2029,2030,2079,2080,2083,2084,2085,2096,2097,2098,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2151,2154,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2216,2217,2218,2219,2220,2257,2258,2259,2314,2315,2398,2402,2406,2410,2411,2415,2486,2493,2501,2666,2676,2685,2694,2703,2764,2765,2766,2772,2773,2774,2775,2776,2777,2783,2784,2785,2786,2787,2792,2793,2797,2798,2804,2808,2809,2810,2811,2821,2822,2823,2827,2828,2834,2838,2839,2911,2912,2916,2917,2920,2921,2922,2923,3186,3193,3453,3459,3722,3729,3989,3995,4058,4140,4192,4274,4336,4418,4482,4534,4616,4624,4630,4641,4645,4649,4662,4677,5453,5460,5466,5483,5496,5516,5533,5542,5547,5554,5574,5587,5604,5610,5616,5623,5627,5633,5647,5650,5660,5661,5662,5710,5714,5718,5722,5723,5724,5727,5743,5750,5764,5809,5810,5841,5845,5849,5854,5861,5867,5868,5871,5875,5880,5893,5897,5902,5907,5912,5915,5918,5921,5925,5929,6069,6070,6071,6072,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6342,6346,6350,6354,6358,6362,6366,6367,6368,6369,6370,6371,6372,6373,6377,6381,6382,6386,6387,6390,6394,6397,6400,6403,6407,6410,6413,6417,6421,6425,6429,6432,6433,6434,6435,6438,6442,6445,6448,6451,6454,6457,6460,6464,6534,6535,6538,6541,6542,6545,6546,6547,6551,6552,6557,6564,6571,6578,6585,6592,6599,6606,6613,6620,6629,6638,6647,6654,6663,6672,6675,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6694,6699,6704,6707,6708,6709,6710,6711,6719,6727,6728,6736,6740,6748,6756,6764,6772,6780,6781,6789,6797,6798,6801,6804,6842,6847,6849,6854,6858,6862,6863,6864,6865,6869,6873,6874,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6897,6901,6902,6906,6907,6908,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6937,6938,6939,6945,6946,6950,6952,6953,6958,6959,6960,6961,6962,6963,6967,6968,6969,6975,6976,6980,6982,6986,6990,6994,6998,7011,7012,7013,7016,7019,7022,7025,7028,7033,7037,7040,7041,7046,7050,7055,7061,7067,7072,7076,7081,7085,7089,7130,7131,7132,7133,7134,7138,7139,7140,7141,7145,7149,7153,7157,7161,7165,7169,7173,7179,7180,7221,7235,7240,7266,7273,7276,7287,7292,7295,7298,7353,7359,7360,7363,7366,7369,7372,7375,7378,7381,7385,7388,7389,7390,7398,7406,7409,7414,7419,7424,7429,7433,7437,7438,7446,7447,7448,7449,7450,7458,7463,7468,7469,7470,7471,7496,7502,7507,7510,7514,7517,7521,7531,7534,7539,7542,7546,7550,7655,7669,7682,7686,7701,7712,7715,7726,7731,7735,7770,7771,7772,7784,7792,7800,7808,7816,7836,7839,7866,7871,7891,7894,7897,7904,7917,7926,7929,7949,7959,7963,7967,7980,7984,7988,7992,7998,8002,8019,8027,8031,8035,8039,8042,8046,8050,8054,8064,8071,8078,8082,8108,8118,8143,8152,8172,8182,8186,8196,8221,8231,8234,8238,8239,8240,8241,8245,8251,8257,8258,8271,8272,8273,8276,8279,8282,8285,8288,8291,8294,8297,8300,8303,8306,8309,8312,8315,8318,8321,8324,8327,8330,8333,8336,8337,8342,8343,8356,8366,8370,8375,8380,8384,8387,8391,8395,8398,8402,8405,8409,8414,8419,8422,8429,8433,8437,8446,8451,8456,8457,8461,8464,8468,8481,8486,8494,8498,8502,8519,8523,8528,8546,8553,8557,8587,8590,8593,8596,8599,8602,8605,8624,8630,8638,8645,8657,8665,8670,8675,8679,8690,8694,8702,8705,8710,8711,8712,8713,8717,8721,8725,8729,8764,8767,8771,8775,8809,8812,8816,8820,8829,8835,8838,8848,8852,8853,8860,8864,8871,8872,8873,8876,8881,8886,8887,8891,8906,8925,8929,8930,8942,8952,8953,8965,8970,8994,8997,9003,9006,9015,9023,9027,9030,9033,9036,9040,9043,9060,9064,9067,9082,9085,9093,9098,9105,9110,9111,9116,9117,9123,9129,9135,9167,9178,9195,9202,9206,9209,9222,9231,9235,9240,9244,9248,9252,9256,9260,9264,9268,9273,9276,9288,9293,9302,9305,9312,9313,9317,9326,9332,9336,9337,9341,9362,9368,9372,9376,9377,9395,9396,9397,9398,9399,9404,9407,9408,9414,9415,9427,9439,9446,9447,9452,9457,9458,9462,9476,9481,9487,9493,9499,9504,9510,9516,9517,9523,9538,9543,9552,9561,9564,9578,9583,9594,9598,9607,9616,9617,9624,9632,9844,9854,9901,10468,10514,10571,10583,10641,10688,10836,10856,10877,10883,10891,10997,11011,11213,11219,11263,11267,11273,11333,11393,11468,11504,11512,11527,11583,11594,11607,11619,11657,11704,11710,11722,11728,11734,11786,11791,11796,11803,11838,12039,12085,12114,12177,12352,12358,12388,12392,12420,12472,12490,12508,12605,12613,12637,12773,12815,12908,12932,13211,13223,13288,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731",
+ "endColumns": "55,48,54,55,59,60,64,54,49,49,52,57,47,68,47,70,71,71,72,66,48,53,36,50,59,46,55,48,57,53,60,55,50,59,55,62,48,55,55,49,58,54,61,46,53,55,51,54,53,53,53,48,57,53,56,55,46,52,55,59,62,58,61,49,53,53,47,56,52,55,53,55,62,61,55,59,52,60,78,80,71,78,79,75,77,68,75,76,70,72,75,77,68,75,76,63,70,71,50,52,54,66,52,51,49,57,64,47,50,66,65,57,68,57,68,69,72,73,67,66,69,65,72,59,75,59,59,74,67,65,67,59,58,56,65,61,56,67,72,69,61,60,67,61,69,68,55,58,61,61,66,56,60,60,60,60,55,55,55,55,57,57,57,57,56,56,56,56,58,58,57,82,82,72,53,68,55,80,80,70,9,52,57,57,57,45,59,53,69,69,64,65,64,67,68,67,9,52,58,57,51,49,51,45,49,55,46,57,57,61,62,61,58,59,64,65,64,61,61,61,61,61,61,65,66,65,62,63,62,67,60,61,61,62,63,62,63,77,58,65,79,60,52,57,50,44,63,58,61,73,70,65,73,68,70,72,70,67,72,75,69,77,67,65,60,68,63,65,67,65,62,67,70,64,72,62,80,63,65,69,69,69,69,66,56,57,58,59,58,58,58,58,58,58,58,58,58,58,59,60,61,60,60,60,60,60,60,59,60,60,59,60,60,60,60,60,60,60,60,60,60,60,67,68,69,68,68,68,68,68,68,68,68,68,68,59,60,61,60,60,60,60,60,60,60,60,60,60,61,62,63,62,62,62,62,62,62,62,62,62,62,60,61,62,61,61,61,61,61,61,61,61,61,61,56,85,79,89,94,91,91,89,82,92,86,96,90,100,86,102,88,98,91,99,83,93,87,97,82,90,93,98,101,97,99,86,99,85,95,87,80,90,95,92,92,90,84,93,88,97,92,101,87,103,90,99,92,100,84,94,88,98,84,91,94,99,102,98,102,88,100,86,96,87,95,91,99,89,97,84,88,88,92,86,90,65,75,68,78,72,79,79,76,67,77,75,70,80,72,82,74,84,72,80,80,73,83,69,77,69,79,77,71,81,69,76,79,84,87,83,86,73,77,77,70,80,90,82,95,97,106,64,65,52,75,65,86,75,75,64,54,53,78,77,72,64,62,65,70,70,69,61,68,65,59,66,66,55,50,52,51,53,70,62,58,61,58,72,66,69,59,62,74,71,95,70,55,70,56,56,65,63,70,56,52,62,51,57,66,68,65,58,82,58,56,66,69,73,61,68,69,98,96,98,85,85,80,74,88,90,83,58,45,65,56,66,56,81,64,65,122,83,120,64,61,97,73,82,88,63,78,73,61,95,64,58,55,55,59,106,46,59,60,63,60,59,57,42,48,51,50,51,48,48,64,65,59,60,55,58,48,47,57,56,101,56,74,47,50,61,64,51,73,62,62,67,49,61,59,56,59,48,67,105,101,68,70,55,48,99,70,109,88,90,81,97,55,100,109,98,62,105,76,111,126,111,126,69,113,130,96,67,117,102,117,60,73,66,104,121,73,66,109,98,72,96,121,117,117,60,121,116,67,105,101,79,70,95,66,73,73,85,87,89,77,76,99,70,120,120,63,124,73,123,123,66,108,127,111,78,77,100,70,121,121,64,125,111,105,67,98,103,62,65,83,112,112,117,77,71,135,135,84,139,137,137,141,81,108,110,127,127,131,129,129,133,61,95,66,116,120,96,81,86,86,130,130,134,76,76,110,113,73,108,111,101,95,103,66,93,71,109,105,72,90,101,102,94,106,104,121,121,125,58,57,123,123,127,117,117,121,85,96,133,133,79,137,131,131,135,74,75,102,73,112,80,56,60,58,59,57,60,57,49,48,66,58,58,48,70,83,69,70,79,68,62,67,65,67,64,65,76,77,105,105,95,128,88,126,65,68,85,65,82,97,95,95,97,108,94,88,61,59,64,56,80,53,56,96,109,60,114,120,94,91,92,101,55,58,48,91,48,53,53,53,53,53,54,109,109,107,109,109,109,109,107,105,103,103,103,94,94,92,92,103,105,103,103,92,92,92,92,107,105,105,105,96,94,94,94,105,105,105,105,97,95,95,97,64,103,57,63,60,61,59,64,61,67,57,62,62,66,74,72,65,51,52,51,56,83,94,84,80,79,76,78,76,73,73,70,79,71,74,64,60,59,74,73,72,69,71,69,72,63,69,45,68,51,84,82,56,65,66,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,50,53,52,53,50,48,65,50,60,60,61,49,40,76,58,58,58,60,55,55,66,60,64,54,64,68,67,77,68,59,70,73,64,71,69,66,83,68,66,69,62,66,67,82,78,89,76,67,66,77,56,56,67,65,55,59,58,53,49,49,47,61,50,72,79,79,63,66,70,57,60,65,58,66,59,59,62,67,60,66,77,69,48,56,68,60,87,87,87,87,86,86,86,86,57,73,69,55,70,64,61,74,72,89,65,65,60,63,61,57,70,82,58,70,65,64,60,58,70,65,64,82,75,74,80,59,68,69,68,54,55,55,60,57,55,53,54,61,56,93,68,100,50,69,62,55,57,58,53,85,83,69,68,69,114,120,66,66,74,66,58,53,53,53,52,51,73,136,139,48,49,49,47,55,57,61,54,57,70,63,58,61,65,65,42,43,44,42,50,46,44,50,50,50,50,47,65,61,62,71,56,53,54,57,54,58,55,68,68,68,69,62,62,62,62,64,64,64,64,62,63,63,63,50,77,77,70,71,72,71,65,65,67,67,65,66,73,62,56,59,64,66,64,56,60,57,103,109,108,103,77,64,66,65,69,46,51,49,56,12,149,130,183,177,237,188,168,97,114,84,78,11,64,88,156,156,152,153,58,186,95,89,95,89,165,122,122,169,105,114,114,101,105,116,114,81,172,167,147,158,154,172,116,116,167,111,113,171,175,157,132,111,145,151,131,142,121,177,135,95,135,94,166,92,91,186,11,11,11,181,316,181,181,189,231,189,176,161,156,109,182,136,203,183,183,159,157,183,226,202,170,219,221,154,199,183,102,189,140,164,170,199,203,201,164,204,198,198,196,90,148,149,83,148,144,151,140,165,160,77,300,165,154,101,11,163,185,222,124,10,10,10,10,61,10,10,10,10,10,10,10,10,10,84,120,98,10,96,116,86,122,100,10,98,118,92,106,10,106,10,120,10,10,99,104,118,10,146,118,10,132,10,10,111,10,124,10,120,10,120,132,146,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,136,90,10,10,10,10,108,118,10,10,10,10,10,94,10,10,10,10,10,10,121,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,111,105,122,131,122,129,123,132,130,124,116,119,131,127,113,117,112,120,10,10,10,10,10,10,10,119,119,107,109,111,107,109,10,10,151,10,100,10,10,10,10,10,10,10,10,10,10,10,10,10,144,121,134,10,10,10,10,10,10,10,10,10,10,91,10,10,94,10,93,88,10,88,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,105,107,105,111,113,111,113,115,113,107,109,107,10,10,10,10,107,109,107,113,10,10,115,10,10,10,10,10,10,10,121,10,10,121,10,10,10,10,10,10,10,10,75,111,89,10,10,107,10,107,75,111,89,101,107,107,99,107,84,103,86,77,113,91,10,10,109,10,109,83,10,97,107,93,129,107,121,135,107,119,133,121,127,141,125,139,125,117,131,97,109,10,111,117,10,115,10,10,95,10,109,123,137,109,121,10,123,129,10,127,10,10,10,10,10,10,67,83,103,10,10,10,10,10,10,10,10,115,10,10,10,10,10,10,10,10,10,10,10,113,119,115,93,10,98,117,100,10,10,10,10,10,10,10,10,10,75,10,10,10,10,10,10,10,10,10,10,10,10,111,10,10,10,10,10,10,10,10,10,83,103,10,10,10,10,10,10,10,10,10,137,10,113,137,111,123,10,10,10,144,92,91,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,99,89,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,145,137,135,10,10,10,115,10,121,111,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,111,10,123,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,139,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,87,107,107,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,123,10,10,10,102,129,10,10,10,139,10,10,10,10,129,10,10,145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,78,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,158,10,10,10,10,157,10,10,10,10,10,141,10,105,129,137,123,10,10,99,10,113,10,10,10,123,10,10,133,10,10,10,10,10,10,10,10,10,103,10,10,10,10,10,10,10,10,10,10,10,10,119,10,10,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,94,92,62,81,92,92,86,97,90,90,87,83,95,103,99,105,102,100,103,105,98,105,101,106,108,110,130,119,115,117,98,106,115,118,127,88,94,76,88,90,92,73,96,94,97,98,103,95,101,102,99,102,84,100,97,89,94,86,105,101,93,90,93,75,91,88,102,110,82,85,94,96,95,87,100,100,102,105,97,96,94,97,102,99,102,104,117,115,94,92,84,95,93,91,101,106,82,103,104,99,100,104,99,100,98,101,93,106,101,102,92,95,101,102,95,101,102,96,102,97,103,104,96,107,113,114,107,113,114,101,104,107,109,115,116,94,96,98,104,105,98,104,105,99,105,100,106,118,98,104,101,101,99,102,94,103,84,103,103,97,103,105,97,104,97,112,93,88,88,82,90,82,97,89,95,88,93,87,95,84,107,100,100,97,105,90,98,96,97,95,92,109,97,94,109,91,99,98,86,103,104,98,106,106,98,108,91,110,110,110,103,114,115,126,119,96,98,91,98,91,98,85,93,102,95,102,95,102,96,97,102,92,89,100,82,90,84,91,102,94,95,92,93,78,106,90,98,92,102,103,100,100,103,93,103,103,112,105,105,107,116,100,107,99,102,104,106,95,78,89,83,91,72,96,81,84,84,96,92,94,98,96,90,90,91,94,106,107,101,96,96,92,86,83,96,96,92,86,90,98,98,94,88,80,98,103,96,104,96,83,98,103,96,104,96,97,100,105,98,106,98,98,90,88,88,81,92,90,110,100,99,111,112,97,107,93,99,88,91,110,109,94,115,125,125,118,127,124,124,117,126,108,108,112,122,122,115,124,96,107,121,115,115,108,87,100,88,100,86,87,96,91,105,99,75,76",
+ "endOffsets": "1961,2196,2655,2711,2771,2832,2897,2952,3102,3152,3205,3263,3311,3431,3479,3550,3622,3694,3767,3834,3883,3937,3974,4025,4085,4132,4188,4237,4295,4349,4410,4466,4517,4577,4633,4696,4745,4801,4857,4907,4966,5021,5083,5130,5184,5240,5292,5347,5401,5455,5509,5558,5616,5670,5727,5783,5830,5883,5939,5999,6062,6121,6183,6233,6287,6341,6389,6446,6499,6555,7115,7171,8011,8121,8177,8237,8290,8351,8430,8511,8583,8662,8742,8818,8896,8965,9041,9118,9189,9262,9338,9416,9485,9561,9638,9702,9773,9845,12246,12344,12399,12515,12568,12620,12670,12728,12793,12841,12892,18402,18468,18526,18595,18653,18722,18792,18865,18939,19007,19074,19144,19210,19283,19343,19419,19479,19539,19614,19682,19748,19816,19876,19935,19992,20058,20120,20177,20245,20318,20388,20450,20511,20579,20641,20711,20780,20836,20895,20957,21019,21086,21143,21204,21265,21326,21387,21443,21499,21555,21611,21669,21727,21785,21843,21900,21957,22014,22071,22130,22189,22247,22330,22413,22486,22540,22609,22665,22746,22827,22898,23027,23286,23344,23402,24143,24245,24305,24359,24429,24499,24564,24630,24695,24763,24832,24900,25030,25083,25142,25200,25252,25348,25736,25782,25832,25888,25935,26040,26098,26160,26223,26285,26344,26404,26469,26535,26600,26662,26724,26786,26848,26910,26972,27038,27105,27171,27234,27298,27361,27429,27490,27552,27614,27677,27741,27804,27868,27946,28005,28071,28151,28212,28265,28364,28415,28842,29199,29258,30349,33561,33632,33698,33772,33841,33912,33985,34056,34124,34197,34273,34343,34421,34489,34555,34616,34685,34749,34815,34883,34949,35012,35080,35151,35216,35289,35352,35433,35497,35563,35633,35703,35773,35843,35910,36701,36759,36818,36878,36937,36996,37055,37114,37173,37232,37291,37350,37409,37468,37528,37589,37651,37712,37773,37834,37895,37956,38017,38077,38138,38199,38259,38320,38381,38442,38503,38564,38625,38686,38747,38808,38869,38930,38998,39067,39137,39206,39275,39344,39413,39482,39551,39620,39689,39758,39827,39887,39948,40010,40071,40132,40193,40254,40315,40376,40437,40498,40559,40620,40682,40745,40809,40872,40935,40998,41061,41124,41187,41250,41313,41376,41439,41500,41562,41625,41687,41749,41811,41873,41935,41997,42059,42121,42183,42245,42302,42388,42468,42558,42653,42745,42837,42927,43010,43103,43190,43287,43378,43479,43566,43669,43758,43857,43949,44049,44133,44227,44315,44413,44496,44587,44681,44780,44882,44980,45080,45167,45267,45353,45449,45537,45618,45709,45805,45898,45991,46082,46167,46261,46350,46448,46541,46643,46731,46835,46926,47026,47119,47220,47305,47400,47489,47588,47673,47765,47860,47960,48063,48162,48265,48354,48455,48542,48639,48727,48823,48915,49015,49105,49203,49288,49377,49466,49559,49646,49737,50475,50551,50620,50699,50772,50852,50932,51009,51077,51155,51231,51302,51383,51456,51539,51614,51699,51772,51853,51934,52008,52092,52162,52240,52310,52390,52468,52540,52622,52692,52769,52849,52934,53022,53106,53193,53267,53345,53423,53494,53575,53666,53749,53845,53943,54050,54115,54181,54234,54310,54376,54463,54539,54615,61855,62223,62817,62896,62974,63047,63112,63175,63241,63312,63383,63453,63515,63584,63650,63710,63777,63844,63900,63951,64004,64056,64110,64181,64244,64303,64365,64424,64497,64564,64634,64694,64757,64832,64904,65000,65071,65127,65198,65255,65312,65378,65442,65513,65570,65623,65686,65738,65796,65863,67170,67236,67295,67378,67437,67494,67561,67631,67705,67767,67836,67906,68005,68102,68201,68287,68373,68454,68529,68618,68709,68793,68852,68898,68964,69021,69088,69145,69227,69292,69358,69481,69565,69686,69751,69813,69911,69985,70068,70157,70221,70300,70374,70436,70532,70597,70656,70712,70768,70828,70935,70982,71042,71103,71167,71228,71288,71346,71389,71438,71490,71541,71593,71642,71691,71756,71822,71882,71943,71999,72058,72107,72155,72213,72270,72372,72429,72504,72552,72603,72665,72730,72782,72856,72919,72982,73050,73100,73162,73222,73279,73339,73388,73456,73562,73664,73733,73804,73860,73909,74009,74080,74190,74279,74370,74452,74550,74606,74707,74817,74916,74979,75085,75162,75274,75401,75513,75640,75710,75824,75955,76052,76120,76238,76341,76459,76520,76594,76661,76766,76888,76962,77029,77139,77238,77311,77408,77530,77648,77766,77827,77949,78066,78134,78240,78342,78422,78493,78589,78656,78730,78804,78890,78978,79068,79146,79223,79323,79394,79515,79636,79700,79825,79899,80023,80147,80214,80323,80451,80563,80642,80720,80821,80892,81014,81136,81201,81327,81439,81545,81613,81712,81816,81879,81945,82029,82142,82255,82373,82451,82523,82659,82795,82880,83020,83158,83296,83438,83520,83629,83740,83868,83996,84128,84258,84388,84522,84584,84680,84747,84864,84985,85082,85164,85251,85338,85469,85600,85735,85812,85889,86000,86114,86188,86297,86409,86511,86607,86711,86778,86872,86944,87054,87160,87233,87324,87426,87529,87624,87731,87836,87958,88080,88206,88265,88323,88447,88571,88699,88817,88935,89057,89143,89240,89374,89508,89588,89726,89858,89990,90126,90201,90277,90380,90454,90567,90648,90705,90766,90825,90885,90943,91004,91062,91112,91161,91228,91287,91346,91395,91466,91550,91620,91691,91771,91840,91903,91971,92037,92105,92170,92236,92313,92391,92497,92603,92699,92828,92917,93044,93110,93179,93265,93331,93414,93512,93608,93704,93802,93911,94006,94095,94157,94217,94282,94339,94420,94474,94531,94628,94738,94799,94914,95035,95130,95222,95315,95417,95473,95532,95581,95673,95722,95776,95830,95884,95938,95992,96047,96157,96267,96375,96485,96595,96705,96815,96923,97029,97133,97237,97341,97436,97531,97624,97717,97821,97927,98031,98135,98228,98321,98414,98507,98615,98721,98827,98933,99030,99125,99220,99315,99421,99527,99633,99739,99837,99933,100029,100127,100192,100296,100354,100418,100479,100541,100601,100666,100728,100796,100854,100917,100980,101047,101122,101195,101261,101313,101366,101418,101475,101559,101654,101739,101820,101900,101977,102056,102133,102207,102281,102352,102432,102504,102579,102644,102705,102765,102840,102914,102987,103057,103129,103199,103272,103336,103406,103452,103521,103573,103658,103741,103798,103864,103931,103997,104078,104153,104209,104262,104323,104381,104431,104480,104529,104578,104640,104692,104737,104818,104869,104923,104976,105030,105081,105130,105196,105247,105308,105369,105431,105481,105522,105599,105658,105717,105776,105837,105893,105949,106016,106077,106142,106197,106262,106331,106399,106477,106546,106606,106677,106751,106816,106888,106958,107025,107109,107178,107245,107315,107378,107445,107513,107596,107675,107765,107842,107910,107977,108055,108112,108169,108237,108303,108359,108419,108478,108532,108582,108632,108680,108742,108793,108866,108946,109026,109090,109157,109228,109286,109347,109413,109472,109539,109599,109659,109722,109790,109851,109918,109996,110066,110115,110172,110241,110302,110390,110478,110566,110654,110741,110828,110915,111002,111060,111134,111204,111260,111331,111396,111458,111533,111606,111696,111762,111828,111889,111953,112015,112073,112144,112227,112286,112357,112423,112488,112549,112608,112679,112745,112810,112893,112969,113044,113125,113185,113254,113324,113393,113448,113504,113560,113621,113679,113735,113789,113844,113906,113963,114057,114126,114227,114278,114348,114411,114467,114525,114584,114638,114724,114808,114878,114947,115017,115132,115253,115320,115387,115462,115529,115588,115642,115696,115750,115803,115855,115929,118181,118321,121113,121163,121213,121302,121358,121416,121478,121533,121591,121662,121726,121785,121847,121913,121979,122460,122606,122651,122694,123721,123768,123813,123864,123915,123966,124017,124398,124861,124923,125103,125175,125300,125354,125409,125467,125522,125581,125637,125706,125775,125844,125914,125977,126040,126103,126166,126231,126296,126361,126426,126489,126553,126617,126681,126732,126810,126888,126959,127031,127104,127176,127242,127308,127376,127444,127510,127577,127651,127714,127771,127831,127896,127963,128028,128085,128146,128204,128308,128418,128527,128631,128709,128774,128841,128907,128977,129024,129076,129126,129309,130311,133434,133565,133749,133927,134165,134354,134523,135132,135247,135332,135411,140309,140374,140616,140773,140930,141979,142133,142192,142627,142723,142813,142909,142999,143165,143288,143411,143581,143687,143802,143917,144019,144125,144242,144357,144439,144612,144780,144928,145087,145242,145415,145532,145649,145817,145929,146043,146215,146391,146549,146682,146794,146940,147092,147224,147367,147489,147667,147803,147899,148035,148130,148297,148390,148482,148669,148825,149003,149167,149349,149666,149848,150030,150220,150452,150642,150819,150981,151138,151248,151431,151568,151772,151956,152140,152300,152458,152642,152869,153072,153243,153463,153685,153840,154040,154224,154327,154517,154658,154823,154994,155194,155398,155600,155765,155970,156169,156368,156565,156656,156805,156955,157039,157188,157333,157485,157626,157792,157953,158655,158956,159122,159277,159379,162258,162422,162608,167111,167236,173612,173884,174162,174407,174469,174754,179104,179560,180069,190845,191359,191796,192230,192673,196655,196776,196875,197280,197377,197494,197581,197704,197805,198211,198310,198429,198522,198629,198972,199079,199324,199445,199854,200102,200202,200307,200426,200935,201082,201201,201452,201585,202000,202254,202366,207716,207841,208158,208279,208507,208628,208761,208908,229539,230031,250411,250835,271511,272005,292430,292856,297697,303114,307205,312636,317378,322755,326739,330731,336122,336669,337102,337858,338088,338331,339464,340393,388538,389122,389595,391025,391769,392962,394016,394494,394787,395170,396685,397450,398593,399034,399475,400071,400345,400756,401772,401950,402703,402840,402931,405125,405391,405713,405923,406032,406151,406335,407453,407923,408674,411257,411352,413484,413712,413968,414227,414803,415157,415279,415418,415710,415970,416898,417184,417587,417989,418332,418544,418745,418958,419247,419532,430207,430294,430379,430478,444126,444232,444355,444487,444610,444740,444864,444997,445128,445253,445370,445490,445622,445750,445864,445982,446095,446216,446404,446591,446772,446955,447139,447304,447486,447606,447726,447834,447944,448056,448164,448274,448439,448605,448757,448922,449023,449143,449314,449475,449638,449799,449966,450085,450202,450382,450564,450745,450928,451083,451228,451350,451485,451648,451841,451967,452119,452261,452431,452587,452759,453050,459717,459809,459982,460144,460239,460408,460502,460591,460834,460923,461216,461632,462052,462473,462899,463316,463732,464149,464567,464981,465451,465924,466396,466807,467278,467750,467940,468146,468252,468360,468466,468578,468692,468804,468918,469034,469148,469256,469366,469474,469736,470115,470519,470666,470774,470884,470992,471106,471515,471929,472045,472463,472704,473134,473569,473979,474401,474811,474933,475342,475758,475880,476098,476282,478986,479330,479410,479766,479916,480060,480136,480248,480338,480600,480865,480973,481125,481233,481309,481421,481511,481613,481721,481829,481929,482037,482122,482226,482313,482391,482505,482597,482861,483128,483238,483391,483501,483585,483974,484072,484180,484274,484404,484512,484634,484770,484878,484998,485132,485254,485382,485524,485650,485790,485916,486034,486166,486264,486374,486674,486786,486904,487368,487484,487787,487913,488009,488410,488520,488644,488782,488892,489014,489326,489450,489580,490056,490184,490499,490637,490799,491015,491171,491375,492446,492530,492634,492837,493026,493227,493420,493625,493938,494150,494316,494432,494678,494894,495207,495633,496095,496332,496484,496744,496888,497030,500262,500376,500496,500612,500706,501027,501126,501244,501345,501624,501909,502188,502470,502723,502982,503235,503491,503915,503991,507241,508596,509040,510894,511469,511677,512687,513067,513233,513374,518394,518820,518932,519067,519220,519417,519588,519771,519946,520133,520405,520563,520647,520751,521238,521794,521952,522171,522402,522625,522860,523082,523348,523486,524085,524199,524337,524449,524573,525144,525639,526185,526330,526423,526515,528442,529012,529310,529499,529705,529898,530108,530992,531137,531529,531687,531904,532165,540392,541267,541887,542084,543032,543797,543920,544693,544914,545114,547091,547191,547281,547967,548720,549485,550248,551023,552236,552401,554014,554335,555398,555608,555778,556348,557243,557876,558042,559528,560144,560380,560601,561559,561824,562089,562336,562750,562986,564271,564720,564907,565156,565398,565574,565815,566048,566273,566868,567343,567867,568128,569479,569954,571180,571650,572698,573150,573394,573851,575096,575579,575729,576073,576219,576357,576493,576781,577285,577794,577910,578812,578934,579046,579223,579489,579759,580025,580293,580549,580809,581065,581323,581575,581831,582083,582337,582569,582805,583057,583313,583565,583819,584051,584285,584397,584822,584946,586038,586853,587049,587373,587762,588114,588355,588569,588868,589060,589375,589582,589928,590228,590629,590848,591261,591498,591868,592592,592947,593216,593356,593610,593754,594031,595023,595432,596064,596410,596778,597852,598215,598615,600123,600708,601026,603561,603755,603973,604199,604411,604610,604817,606021,606316,606873,607263,607895,608372,608617,608968,609214,609974,610238,610661,610852,611231,611319,611427,611535,611848,612173,612492,612823,615526,615714,615975,616224,618808,619000,619265,619518,620050,620458,620657,621241,621476,621600,622012,622226,622628,622731,622861,623036,623288,623484,623624,623818,624829,625898,626186,626316,627093,627750,627896,628602,628840,630380,630530,630947,631112,631798,632268,632464,632555,632639,632783,633017,633184,634112,634398,634558,635173,635332,635660,635887,636399,636761,636840,637179,637284,637649,638020,638381,640255,640884,641960,642384,642637,642789,643837,644574,644777,645023,645270,645488,645730,646051,646315,646620,646843,647154,647343,648058,648327,648821,649047,649487,649646,649930,650675,651040,651345,651503,651741,653060,653458,653686,653906,654048,655338,655444,655574,655712,655836,656124,656293,656393,656678,656792,657675,658430,658869,658993,659239,659432,659566,659757,660536,660754,661045,661324,661641,661863,662158,662441,662545,662886,663702,664018,664579,665085,665290,666076,666481,667142,667331,667882,668448,668568,668970,669504,677235,677534,679879,698573,700167,702174,702513,704946,706449,710515,710955,711707,711891,712102,716760,717343,738794,738996,740131,740281,740456,743093,745275,753618,754806,755314,755825,757619,757879,758495,758990,760027,761893,762084,762417,762573,762766,765158,765387,765595,765765,767537,775126,776469,777479,779444,786056,786225,787417,787563,788248,791100,791631,792057,795141,795389,796159,801586,802859,806074,806965,817837,818219,820721,824689,824782,824845,824927,825020,825113,825200,825298,825389,825480,825568,825652,825748,825852,825952,826058,826161,826262,826366,826472,826571,826677,826779,826886,826995,827106,827237,827357,827473,827591,827690,827797,827913,828032,828160,828249,828344,828421,828510,828601,828694,828768,828865,828960,829058,829157,829261,829357,829459,829562,829662,829765,829850,829951,830049,830139,830234,830321,830427,830529,830623,830714,830808,830884,830976,831065,831168,831279,831362,831448,831543,831640,831736,831824,831925,832026,832129,832235,832333,832430,832525,832623,832726,832826,832929,833034,833152,833268,833363,833456,833541,833637,833731,833823,833925,834032,834115,834219,834324,834424,834525,834630,834730,834831,834930,835032,835126,835233,835335,835438,835531,835627,835729,835832,835928,836030,836133,836230,836333,836431,836535,836640,836737,836845,836959,837074,837182,837296,837411,837513,837618,837726,837836,837952,838069,838164,838261,838360,838465,838571,838670,838775,838881,838981,839087,839188,839295,839414,839513,839618,839720,839822,839922,840025,840120,840224,840309,840413,840517,840615,840719,840825,840923,841028,841126,841239,841333,841422,841511,841594,841685,841768,841866,841956,842052,842141,842235,842323,842419,842504,842612,842713,842814,842912,843018,843109,843208,843305,843403,843499,843592,843702,843800,843895,844005,844097,844197,844296,844383,844487,844592,844691,844798,844905,845004,845113,845205,845316,845427,845538,845642,845757,845873,846000,846120,846217,846316,846408,846507,846599,846698,846784,846878,846981,847077,847180,847276,847379,847476,847574,847677,847770,847860,847961,848044,848135,848220,848312,848415,848510,848606,848699,848793,848872,848979,849070,849169,849262,849365,849469,849570,849671,849775,849869,849973,850077,850190,850296,850402,850510,850627,850728,850836,850936,851039,851144,851251,851347,851426,851516,851600,851692,851765,851862,851944,852029,852114,852211,852304,852399,852498,852595,852686,852777,852869,852964,853071,853179,853281,853378,853475,853568,853655,853739,853836,853933,854026,854113,854204,854303,854402,854497,854586,854667,854766,854870,854967,855072,855169,855253,855352,855456,855553,855658,855755,855853,855954,856060,856159,856266,856365,856464,856555,856644,856733,856815,856908,856999,857110,857211,857311,857423,857536,857634,857742,857836,857936,858025,858117,858228,858338,858433,858549,858675,858801,858920,859048,859173,859298,859416,859543,859652,859761,859874,859997,860120,860236,860361,860458,860566,860688,860804,860920,861029,861117,861218,861307,861408,861495,861583,861680,861772,861878,861978,862054,862131"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/af29352e176ea3b8abedc6c07df19817/transformed/lifecycle-runtime-2.6.2/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "42",
+ "endOffsets": "93"
+ },
+ "to": {
+ "startLines": "1871",
+ "startColumns": "4",
+ "startOffsets": "124403",
+ "endColumns": "42",
+ "endOffsets": "124441"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/b73c48e7945b65b0f2e33750a3e043ff/transformed/jetified-startup-runtime-1.1.1/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "82",
+ "endOffsets": "133"
+ },
+ "to": {
+ "startLines": "2011",
+ "startColumns": "4",
+ "startOffsets": "133153",
+ "endColumns": "82",
+ "endOffsets": "133231"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/96596d913bdc5ef7499b36edf6e5d946/transformed/jetified-preferencex-simplemenu-1.1.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,11,15,32,50,53",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,123,184,234,282,336,574,836,1684,2539,2674",
+ "endLines": "2,3,4,5,6,10,14,31,49,52,56",
+ "endColumns": "67,60,49,47,53,12,12,12,24,24,24",
+ "endOffsets": "118,179,229,277,331,569,831,1679,2534,2669,2859"
+ },
+ "to": {
+ "startLines": "925,1745,1746,1747,1946,2416,6186,6190,12528,12546,13212",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "54872,117389,117450,117500,129314,174759,436554,436816,792479,793278,817842",
+ "endLines": "925,1745,1746,1747,1946,2419,6189,6206,12545,12548,13215",
+ "endColumns": "67,60,49,47,53,12,12,12,24,24,24",
+ "endOffsets": "54935,117445,117495,117543,129363,174992,436811,437659,793273,793408,817976"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/b9781f640fb34cbb0ce36e1194115f38/transformed/databinding-runtime-8.2.0/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "40",
+ "endOffsets": "91"
+ },
+ "to": {
+ "startLines": "1799",
+ "startColumns": "4",
+ "startOffsets": "120714",
+ "endColumns": "40",
+ "endOffsets": "120750"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/96f28d80a8df0531564877dc46411590/transformed/jetified-savedstate-1.2.1/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "53",
+ "endOffsets": "104"
+ },
+ "to": {
+ "startLines": "1873",
+ "startColumns": "4",
+ "startOffsets": "124506",
+ "endColumns": "53",
+ "endOffsets": "124555"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,23,24,25,42,45,51,57,60,66,70,73,80,86,89,95,100,105,112,114,120,126,134,139,146,151,157,161,168,172,178,184,187,192,193,194,199,215,238,243,257,268,348,358,368,386,392,439,461,485",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,178,247,311,366,434,501,566,623,680,728,776,837,900,963,1001,1058,1102,1242,1381,1431,1479,2917,3022,3378,3716,3862,4202,4414,4577,4984,5322,5445,5784,6023,6280,6651,6711,7049,7335,7784,8076,8464,8769,9113,9358,9688,9895,10163,10436,10580,10949,10996,11052,11308,12367,13788,14126,15012,15622,20168,20687,21229,22503,22763,25467,26989,28470",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,22,23,24,41,44,50,56,59,65,69,72,79,85,88,94,99,104,111,113,119,125,133,138,145,150,156,160,167,171,177,183,186,191,192,193,198,214,237,242,256,267,347,357,367,385,391,438,460,484,508",
+ "endColumns": "72,68,63,54,67,66,64,56,56,47,47,60,62,62,37,56,43,13,138,49,47,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,46,55,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24",
+ "endOffsets": "173,242,306,361,429,496,561,618,675,723,771,832,895,958,996,1053,1097,1237,1376,1426,1474,2912,3017,3373,3711,3857,4197,4409,4572,4979,5317,5440,5779,6018,6275,6646,6706,7044,7330,7779,8071,8459,8764,9108,9353,9683,9890,10158,10431,10575,10944,10991,11047,11303,12362,13783,14121,15007,15617,20163,20682,21224,22498,22758,25462,26984,28465,29984"
+ },
+ "to": {
+ "startLines": "592,924,1737,1738,1739,1740,1741,1742,1743,1826,1827,1828,1943,1944,2066,2082,2210,2222,2317,2354,2355,5811,6094,6097,6103,6109,6112,6118,6122,6125,6132,6138,6141,6147,6152,6157,6164,6166,6172,6178,6207,6212,6219,6224,6230,6234,6241,6245,6251,6257,6260,6264,6265,10397,10689,11145,11187,11475,12020,12207,12271,12281,12291,12298,12304,12422,12774,12791",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "30183,54803,116912,116976,117031,117099,117166,117231,117288,122127,122175,122223,129131,129194,139101,140475,158160,159450,167312,170277,170327,411357,431798,431903,432148,432486,432632,432972,433184,433347,433754,434092,434215,434554,434793,435050,435421,435481,435819,436105,437664,437956,438344,438649,438993,439238,439568,439775,440043,440316,440460,440661,440708,695951,706454,736510,737922,753823,774585,781256,783181,783463,783768,784030,784290,789515,801591,802121",
+ "endLines": "592,924,1737,1738,1739,1740,1741,1742,1743,1826,1827,1828,1943,1944,2066,2082,2210,2224,2317,2354,2355,5827,6096,6102,6108,6111,6117,6121,6124,6131,6137,6140,6146,6151,6156,6163,6165,6171,6177,6185,6211,6218,6223,6229,6233,6240,6244,6250,6256,6259,6263,6264,6265,10401,10699,11164,11190,11484,12027,12270,12280,12290,12297,12303,12346,12434,12790,12807",
+ "endColumns": "72,68,63,54,67,66,64,56,56,47,47,60,62,62,37,56,43,13,138,49,47,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,46,55,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24",
+ "endOffsets": "30251,54867,116971,117026,117094,117161,117226,117283,117340,122170,122218,122279,129189,129252,139134,140527,158199,159585,167446,170322,170370,412790,431898,432143,432481,432627,432967,433179,433342,433749,434087,434210,434549,434788,435045,435416,435476,435814,436100,436549,437951,438339,438644,438988,439233,439563,439770,440038,440311,440455,440656,440703,440759,696131,706850,737234,738066,754150,774828,783176,783458,783763,784025,784285,785708,789962,802116,802684"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,113,179,242,304,375,447,515,582,661",
+ "endColumns": "57,65,62,61,70,71,67,66,78,68",
+ "endOffsets": "108,174,237,299,370,442,510,577,656,725"
+ },
+ "to": {
+ "startLines": "614,615,616,617,1028,1029,2067,2087,2088,2089",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "31860,31918,31984,32047,61860,61931,139139,140998,141065,141144",
+ "endColumns": "57,65,62,61,70,71,67,66,78,68",
+ "endOffsets": "31913,31979,32042,32104,61926,61998,139202,141060,141139,141208"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values/colors.xml",
+ "from": {
+ "startLines": "5,6,7,3,2,8",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "161,226,277,108,55,326",
+ "endColumns": "64,50,48,51,52,50",
+ "endOffsets": "221,272,321,155,103,372"
+ },
+ "to": {
+ "startLines": "626,627,628,637,683,921",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "32604,32669,32720,33440,36596,54620",
+ "endColumns": "64,50,48,51,52,50",
+ "endOffsets": "32664,32715,32764,33487,36644,54666"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values/strings.xml",
+ "from": {
+ "startLines": "110,114,118,181,185,190,79,83,18,106,108,107,102,103,101,105,104,109,201,203,202,200,99,97,98,240,241,242,244,245,243,246,247,196,195,197,180,179,189,178,198,25,34,33,38,48,44,46,45,47,51,53,49,36,37,39,40,41,42,26,28,27,32,31,29,124,176,167,166,172,174,173,168,169,170,171,175,131,132,161,162,159,160,129,130,148,149,150,151,152,125,128,126,127,134,135,137,139,140,155,156,153,154,142,144,145,146,147,143,164,165,123,157,158,56,66,71,72,73,67,69,70,94,95,88,89,90,91,92,74,77,75,93,87,63,64,55,57,59,60,58,61,21,19,22,20,23,221,220,226,213,212,225,231,224,222,218,214,215,216,219,211,208,217,209,232,210,233,234,227,230,228,229,223,207,237,206,204,205,235,236",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "7280,7474,7652,12357,12551,12786,5179,5431,821,6976,7144,7077,6688,6742,6627,6921,6863,7219,13370,13517,13451,13298,6565,6429,6500,16311,16369,16522,16754,16855,16601,16938,17014,13032,12969,13128,12272,12191,12712,12120,13231,1131,1794,1686,2076,2949,2584,2755,2657,2853,3176,3351,3044,1900,2009,2174,2272,2378,2475,1210,1330,1266,1604,1532,1394,7894,12068,11383,11336,11763,11889,11819,11430,11504,11582,11658,11974,8447,8523,10908,10987,10707,10791,8246,8327,9789,9873,9953,10048,10114,7953,8164,8028,8094,8668,8751,8922,9059,9175,10366,10447,10195,10275,9315,9467,9530,9617,9705,9392,11141,11232,7839,10529,10612,3502,4181,4552,4627,4700,4251,4420,4483,6276,6360,5707,5796,5893,5997,6095,4769,5018,4859,6209,5613,4056,4111,3422,3601,3778,3859,3697,3954,980,874,1030,926,1082,14850,14778,15254,14225,14164,15184,15609,15094,14960,14622,14282,14367,14450,14699,14101,13845,14533,13956,15737,14022,15834,15900,15324,15528,15394,15455,15023,13794,16104,13743,13624,13675,15966,16039",
+ "endLines": "113,117,121,184,188,193,82,86,18,106,108,107,102,103,101,105,104,109,201,203,202,200,99,97,98,240,241,242,244,245,243,246,247,196,195,197,180,179,189,178,198,25,34,33,38,48,44,46,45,47,52,53,50,36,37,39,40,41,42,26,28,27,32,31,30,124,176,167,166,172,174,173,168,169,170,171,175,131,133,161,163,159,160,129,130,148,149,150,151,152,125,128,126,127,134,136,138,139,141,155,156,153,154,142,144,145,146,147,143,164,165,123,157,158,56,66,71,72,73,68,69,70,94,95,88,89,90,91,92,74,78,76,93,87,63,64,55,57,59,60,58,61,21,19,22,20,23,221,220,226,213,212,225,231,224,222,218,214,215,216,219,211,208,217,209,232,210,233,234,227,230,228,229,223,207,237,206,204,205,235,236",
+ "endColumns": "14,14,14,14,14,14,14,14,52,100,74,66,53,120,60,54,57,60,80,106,65,71,60,70,64,57,152,78,100,82,152,75,100,95,62,102,84,80,73,70,65,78,104,107,97,94,72,97,97,95,53,69,25,108,66,97,105,96,107,55,63,63,81,71,24,58,50,46,46,55,84,69,73,77,75,104,93,75,23,78,33,83,116,80,119,83,79,94,65,80,74,81,65,69,82,51,22,115,24,80,81,79,90,76,62,86,87,83,74,90,103,54,82,94,98,69,74,72,68,48,62,68,83,67,88,96,103,97,113,89,50,49,66,93,54,68,79,95,80,94,80,100,49,51,51,53,47,109,71,69,56,60,69,127,89,62,76,84,82,82,78,62,110,88,65,96,78,65,65,69,80,60,72,70,50,42,50,50,67,72,64",
+ "endOffsets": "7469,7647,7833,12546,12707,12963,5426,5608,869,7072,7214,7139,6737,6858,6683,6971,6916,7275,13446,13619,13512,13365,6621,6495,6560,16364,16517,16596,16850,16933,16749,17009,17110,13123,13027,13226,12352,12267,12781,12186,13292,1205,1894,1789,2169,3039,2652,2848,2750,2944,3346,3416,3171,2004,2071,2267,2373,2470,2578,1261,1389,1325,1681,1599,1527,7948,12114,11425,11378,11814,11969,11884,11499,11577,11653,11758,12063,8518,8663,10982,11136,10786,10903,8322,8442,9868,9948,10043,10109,10190,8023,8241,8089,8159,8746,8917,9054,9170,9310,10442,10524,10270,10361,9387,9525,9612,9700,9784,9462,11227,11331,7889,10607,10702,3596,4246,4622,4695,4764,4415,4478,4547,6355,6423,5791,5888,5992,6090,6204,4854,5174,5013,6271,5702,4106,4175,3497,3692,3854,3949,3773,4050,1025,921,1077,975,1125,14955,14845,15319,14277,14220,15249,15732,15179,15018,14694,14362,14445,14528,14773,14159,13951,14617,14017,15829,14096,15895,15961,15389,15604,15450,15523,15089,13840,16142,13789,13670,13738,16034,16099"
+ },
+ "to": {
+ "startLines": "1948,1952,1956,1964,1968,1972,1976,1980,2012,2031,2032,2033,2034,2035,2036,2037,2038,2039,2059,2060,2061,2062,2063,2064,2065,2069,2070,2071,2072,2073,2074,2075,2076,2081,2086,2209,2211,2212,2213,2214,2221,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2238,2239,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2275,2276,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2294,2296,2297,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2318,2319,2320,2321,2322,2323,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2337,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "129438,129632,129810,130316,130510,130671,130853,131105,133236,135416,135517,135592,135659,135713,135834,135895,135950,136008,138578,138659,138766,138832,138904,138965,139036,139350,139408,139561,139640,139741,139824,139977,140053,140379,140935,158057,158204,158289,158370,158444,159384,159764,159843,159948,160056,160154,160249,160322,160420,160518,160614,160789,160859,160991,161100,161167,161265,161371,161468,161576,161632,161696,161760,161842,161914,162613,162672,162723,162770,162817,162873,162958,163028,163102,163180,163256,163361,163455,163531,163676,163755,163909,163993,164110,164191,164311,164395,164475,164570,164636,164717,164792,164874,164940,165010,165093,165264,165401,165517,165657,165738,165820,165900,165991,166068,166131,166218,166306,166390,166465,166556,166660,166715,166798,167451,167550,167620,167695,167768,167837,168006,168069,168138,168222,168290,168379,168476,168580,168678,168792,168882,169043,169202,169269,169363,169418,169487,169567,169663,169744,169839,169920,170021,170071,170123,170175,170229,170375,170485,170557,170627,170684,170745,170815,170943,171033,171096,171173,171258,171341,171424,171503,171566,171677,171766,171832,171929,172008,172074,172140,172210,172291,172352,172425,172496,172547,172590,172641,172692,172760,172833",
+ "endLines": "1951,1955,1959,1967,1971,1975,1979,1983,2012,2031,2032,2033,2034,2035,2036,2037,2038,2039,2059,2060,2061,2062,2063,2064,2065,2069,2070,2071,2072,2073,2074,2075,2076,2081,2086,2209,2211,2212,2213,2214,2221,2227,2228,2229,2230,2231,2232,2233,2234,2235,2237,2238,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2253,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2274,2275,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2293,2295,2296,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2318,2319,2320,2321,2322,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2336,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389",
+ "endColumns": "14,14,14,14,14,14,14,14,52,100,74,66,53,120,60,54,57,60,80,106,65,71,60,70,64,57,152,78,100,82,152,75,100,95,62,102,84,80,73,70,65,78,104,107,97,94,72,97,97,95,53,69,25,108,66,97,105,96,107,55,63,63,81,71,24,58,50,46,46,55,84,69,73,77,75,104,93,75,23,78,33,83,116,80,119,83,79,94,65,80,74,81,65,69,82,51,22,115,24,80,81,79,90,76,62,86,87,83,74,90,103,54,82,94,98,69,74,72,68,48,62,68,83,67,88,96,103,97,113,89,50,49,66,93,54,68,79,95,80,94,80,100,49,51,51,53,47,109,71,69,56,60,69,127,89,62,76,84,82,82,78,62,110,88,65,96,78,65,65,69,80,60,72,70,50,42,50,50,67,72,64",
+ "endOffsets": "129627,129805,129991,130505,130666,130848,131100,131282,133284,135512,135587,135654,135708,135829,135890,135945,136003,136064,138654,138761,138827,138899,138960,139031,139096,139403,139556,139635,139736,139819,139972,140048,140149,140470,140993,158155,158284,158365,158439,158510,159445,159838,159943,160051,160149,160244,160317,160415,160513,160609,160784,160854,160986,161095,161162,161260,161366,161463,161571,161627,161691,161755,161837,161909,162047,162667,162718,162765,162812,162868,162953,163023,163097,163175,163251,163356,163450,163526,163671,163750,163904,163988,164105,164186,164306,164390,164470,164565,164631,164712,164787,164869,164935,165005,165088,165259,165396,165512,165652,165733,165815,165895,165986,166063,166126,166213,166301,166385,166460,166551,166655,166710,166793,166888,167545,167615,167690,167763,167832,168001,168064,168133,168217,168285,168374,168471,168575,168673,168787,168877,169038,169197,169264,169358,169413,169482,169562,169658,169739,169834,169915,170016,170066,170118,170170,170224,170272,170480,170552,170622,170679,170740,170810,170938,171028,171091,171168,171253,171336,171419,171498,171561,171672,171761,171827,171924,172003,172069,172135,172205,172286,172347,172420,172491,172542,172585,172636,172687,172755,172828,172893"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/build/generated/crashlytics/res/freedom/debug/values/com_google_firebase_crashlytics_mappingfileid.xml",
+ "from": {
+ "startLines": "8",
+ "startColumns": "0",
+ "startOffsets": "278",
+ "endColumns": "173",
+ "endOffsets": "451"
+ },
+ "to": {
+ "startLines": "2040",
+ "startColumns": "4",
+ "startOffsets": "136069",
+ "endColumns": "175",
+ "endOffsets": "136240"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/ec5ff7c3ed671d28e624de1bf91058ca/transformed/lifecycle-viewmodel-2.6.2/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "49",
+ "endOffsets": "100"
+ },
+ "to": {
+ "startLines": "1874",
+ "startColumns": "4",
+ "startOffsets": "124560",
+ "endColumns": "49",
+ "endOffsets": "124605"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,98,99,103,104,105,106,112,122,155,176,209",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,115,187,275,340,406,475,538,608,676,748,818,879,953,1026,1087,1148,1210,1274,1336,1397,1465,1565,1625,1691,1764,1833,1890,1942,2004,2076,2152,2217,2276,2335,2395,2455,2515,2575,2635,2695,2755,2815,2875,2935,2994,3054,3114,3174,3234,3294,3354,3414,3474,3534,3594,3653,3713,3773,3832,3891,3950,4009,4068,4127,4162,4197,4252,4315,4370,4428,4486,4547,4610,4667,4718,4768,4829,4886,4952,4986,5021,5056,5126,5193,5265,5334,5403,5477,5549,5637,5708,5825,6026,6136,6337,6466,6538,6605,6808,7109,8840,9521,10203",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,97,98,102,103,104,105,111,121,154,175,208,214",
+ "endColumns": "59,71,87,64,65,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,66,71,68,68,73,71,87,70,116,12,109,12,128,71,66,24,24,24,24,24,24",
+ "endOffsets": "110,182,270,335,401,470,533,603,671,743,813,874,948,1021,1082,1143,1205,1269,1331,1392,1460,1560,1620,1686,1759,1828,1885,1937,1999,2071,2147,2212,2271,2330,2390,2450,2510,2570,2630,2690,2750,2810,2870,2930,2989,3049,3109,3169,3229,3289,3349,3409,3469,3529,3589,3648,3708,3768,3827,3886,3945,4004,4063,4122,4157,4192,4247,4310,4365,4423,4481,4542,4605,4662,4713,4763,4824,4881,4947,4981,5016,5051,5121,5188,5260,5329,5398,5472,5544,5632,5703,5820,6021,6131,6332,6461,6533,6600,6803,7104,8835,9516,10198,10365"
+ },
+ "to": {
+ "startLines": "456,602,603,620,621,922,923,1034,1035,1036,1037,1038,1039,1040,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1805,1806,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1863,1947,2020,2021,2022,2023,2024,2025,2026,2316,6521,6522,6526,6527,6531,7646,7647,10646,11012,11274,11307,11343,11376",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "23407,30855,30927,32224,32289,54671,54740,62228,62298,62366,62438,62508,62569,62643,115934,115995,116056,116118,116182,116244,116305,116373,116473,116533,116599,116672,116741,116798,116850,118326,118398,118474,118539,118598,118657,118717,118777,118837,118897,118957,119017,119077,119137,119197,119257,119316,119376,119436,119496,119556,119616,119676,119736,119796,119856,119916,119975,120035,120095,120154,120213,120272,120331,120390,120999,121034,122810,122865,122928,122983,123041,123099,123160,123223,123280,123331,123381,123442,123499,123565,123599,124022,129368,134528,134595,134667,134736,134805,134879,134951,167241,458769,458886,459087,459197,459398,539826,539898,705086,717348,740461,742192,743417,744099",
+ "endLines": "456,602,603,620,621,922,923,1034,1035,1036,1037,1038,1039,1040,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1805,1806,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1863,1947,2020,2021,2022,2023,2024,2025,2026,2316,6521,6525,6526,6530,6531,7646,7647,10651,11021,11306,11327,11375,11381",
+ "endColumns": "59,71,87,64,65,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,66,71,68,68,73,71,87,70,116,12,109,12,128,71,66,24,24,24,24,24,24",
+ "endOffsets": "23462,30922,31010,32284,32350,54735,54798,62293,62361,62433,62503,62564,62638,62711,115990,116051,116113,116177,116239,116300,116368,116468,116528,116594,116667,116736,116793,116845,116907,118393,118469,118534,118593,118652,118712,118772,118832,118892,118952,119012,119072,119132,119192,119252,119311,119371,119431,119491,119551,119611,119671,119731,119791,119851,119911,119970,120030,120090,120149,120208,120267,120326,120385,120444,121029,121064,122860,122923,122978,123036,123094,123155,123218,123275,123326,123376,123437,123494,123560,123594,123629,124052,129433,134590,134662,134731,134800,134874,134946,135034,167307,458881,459082,459192,459393,459522,539893,539960,705284,717644,742187,742868,744094,744261"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/2f2d8db9ce5a92716a7b278131d3edc4/transformed/coordinatorlayout-1.1.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,6,16",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,116,261,869",
+ "endLines": "2,5,15,104",
+ "endColumns": "60,12,24,24",
+ "endOffsets": "111,256,864,6075"
+ },
+ "to": {
+ "startLines": "131,9633,11054,11060",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6719,669509,731280,731491",
+ "endLines": "131,9635,11059,11143",
+ "endColumns": "60,12,24,24",
+ "endOffsets": "6775,669649,731486,736002"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e0a8b88020286343a0b41a7733e08913/transformed/jetified-play-services-oss-licenses-17.0.1/res/values/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9",
+ "startColumns": "0,0,0,0,0,0",
+ "startOffsets": "172,267,335,408,503,566",
+ "endColumns": "94,67,72,94,62,92",
+ "endOffsets": "266,334,407,502,565,658"
+ },
+ "to": {
+ "startLines": "2099,2100,2101,2208,2215,2225",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "142197,142296,142368,157958,158515,159590",
+ "endColumns": "98,71,76,98,66,96",
+ "endOffsets": "142291,142363,142440,158052,158577,159682"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/build/generated/res/processFreedomDebugGoogleServices/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,198,309,390,494,596,716,816",
+ "endColumns": "142,110,80,103,101,119,99,76",
+ "endOffsets": "193,304,385,489,591,711,811,888"
+ },
+ "to": {
+ "startLines": "2068,2090,2091,2092,2093,2094,2095,2226",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "139207,141213,141324,141405,141509,141611,141731,159687",
+ "endColumns": "142,110,80,103,101,119,99,76",
+ "endOffsets": "139345,141319,141400,141504,141606,141726,141826,159759"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1a93693452ed0f01a93593682cd1380b/transformed/swiperefreshlayout-1.1.0/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "5",
+ "endColumns": "24",
+ "endOffsets": "287"
+ },
+ "to": {
+ "startLines": "12700",
+ "startColumns": "4",
+ "startOffsets": "798278",
+ "endLines": "12703",
+ "endColumns": "24",
+ "endOffsets": "798444"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/4cc022fbce7c02763a5fa4ea0cc4c6ef/transformed/recyclerview-1.1.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,111,170,218,274,349,425,497,563",
+ "endLines": "2,3,4,5,6,7,8,9,38",
+ "endColumns": "55,58,47,55,74,75,71,65,24",
+ "endOffsets": "106,165,213,269,344,420,492,558,2084"
+ },
+ "to": {
+ "startLines": "474,1092,1093,1094,1102,1103,1104,1804,12365",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "24148,66041,66100,66148,66815,66890,66966,120933,786445",
+ "endLines": "474,1092,1093,1094,1102,1103,1104,1804,12385",
+ "endColumns": "55,58,47,55,74,75,71,65,24",
+ "endOffsets": "24199,66095,66143,66199,66885,66961,67033,120994,787280"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/05e1501b39d811203dff176d82853387/transformed/constraintlayout-2.0.1/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,8,9,17,18,19,20,21,22,23,27,28,29,30,38,46,47,48,53,54,59,64,65,66,71,72,77,78,83,84,85,91,92,93,98,103,104,105,109,110,111,112,115,116,119,122,123,124,125,126,129,132,133,134,135,140,143,146,147,148,153,154,155,158,161,162,165,168,171,174,175,176,179,182,183,188,189,194,197,200,201,202,203,204,205,206,207,208,209,221,222,223,224,225,231,232,233,236,241,242,243,244,253,259,260,264,265,266,267,276,356,280,281,282,283,284,285,286,287,288,289,290,291,296,297,298,299,300,301,302,308,309,315,322,334,335,336,337,338,355",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,112,298,359,650,702,750,801,853,914,960,1093,1145,1195,1246,1555,1867,1912,1971,2168,2225,2420,2602,2656,2713,2905,2963,3159,3215,3409,3466,3517,3739,3791,3846,4036,4212,4262,4318,4478,4539,4599,4669,4802,4870,4999,5125,5187,5252,5320,5387,5510,5635,5702,5767,5832,6013,6134,6255,6321,6388,6598,6667,6733,6858,6984,7051,7177,7304,7429,7556,7612,7677,7803,7926,7991,8199,8266,8446,8566,8686,8751,8813,8875,8937,8996,9056,9117,9178,9237,9738,9789,9838,9886,9944,10174,10221,10281,10387,10567,10613,10660,10712,11042,11280,11335,11474,11520,11575,11620,11961,36954,12098,16317,19922,20066,24372,24875,25295,25926,26578,26619,26673,26723,27345,27998,28496,31373,31719,31951,32091,32596,32726,33153,33548,34580,34812,34939,35045,35529,36651",
+ "endLines": "2,7,8,16,17,18,19,20,21,22,26,27,28,29,37,45,46,47,52,53,58,63,64,65,70,71,76,77,82,83,84,90,91,92,97,102,103,104,108,109,110,111,114,115,118,121,122,123,124,125,128,131,132,133,134,139,142,145,146,147,152,153,154,157,160,161,164,167,170,173,174,175,178,181,182,187,188,193,196,199,200,201,202,203,204,205,206,207,208,220,221,222,223,224,230,231,232,235,240,241,242,243,252,258,259,263,264,265,266,275,279,356,280,281,282,283,284,285,286,287,288,289,290,295,296,297,298,299,300,301,307,308,314,321,333,334,335,336,337,354,355",
+ "endColumns": "56,11,60,11,51,47,50,51,60,45,11,51,49,50,11,11,44,58,11,56,11,11,53,56,11,57,11,55,11,56,50,11,51,54,11,11,49,55,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,55,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11,50,48,47,57,11,46,59,11,11,45,46,51,11,11,54,11,45,54,44,11,11,40,4218,3604,143,4305,502,419,630,651,40,53,49,382,652,497,2876,345,231,139,35,129,133,35,35,231,126,105,483,35,302",
+ "endOffsets": "107,293,354,645,697,745,796,848,909,955,1088,1140,1190,1241,1550,1862,1907,1966,2163,2220,2415,2597,2651,2708,2900,2958,3154,3210,3404,3461,3512,3734,3786,3841,4031,4207,4257,4313,4473,4534,4594,4664,4797,4865,4994,5120,5182,5247,5315,5382,5505,5630,5697,5762,5827,6008,6129,6250,6316,6383,6593,6662,6728,6853,6979,7046,7172,7299,7424,7551,7607,7672,7798,7921,7986,8194,8261,8441,8561,8681,8746,8808,8870,8932,8991,9051,9112,9173,9232,9733,9784,9833,9881,9939,10169,10216,10276,10382,10562,10608,10655,10707,11037,11275,11330,11469,11515,11570,11615,11956,12093,36990,16312,19917,20061,24367,24870,25290,25921,26573,26614,26668,26718,27340,27993,28491,31368,31714,31946,32086,32591,32721,33148,33543,34575,34807,34934,35040,35524,36646,36949"
+ },
+ "to": {
+ "startLines": "39,41,47,48,56,64,70,128,129,130,132,136,137,138,141,149,159,187,188,193,194,199,204,205,206,211,212,217,218,223,224,225,231,232,233,238,243,257,258,262,263,264,265,268,269,272,275,276,277,278,279,282,285,286,287,288,293,296,299,300,301,306,307,308,311,314,315,318,321,324,327,328,329,332,335,336,341,342,347,350,353,354,355,356,357,358,359,360,361,362,449,450,451,452,457,463,464,465,468,494,509,549,550,560,566,569,573,574,575,576,585,1810,11050,11051,11052,11053,11144,11382,11394,11395,11396,11397,11398,11399,11404,11405,11406,12004,12005,12006,12007,12013,12014,12178,12185,12347,12678,12699,13289,13290,13307",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "1853,1966,2201,2262,2553,3009,3316,6560,6612,6673,6780,6913,6965,7015,7176,7485,7908,9850,9909,10106,10163,10358,10540,10594,10651,10843,10901,11097,11153,11347,11404,11455,11677,11729,11784,11974,12150,12897,12953,13113,13174,13234,13304,13437,13505,13634,13760,13822,13887,13955,14022,14145,14270,14337,14402,14467,14648,14769,14890,14956,15023,15233,15302,15368,15493,15619,15686,15812,15939,16064,16191,16247,16312,16438,16561,16626,16834,16901,17081,17201,17321,17386,17448,17510,17572,17631,17691,17752,17813,17872,23032,23083,23132,23180,23467,23697,23744,23804,23910,25257,25940,28420,28472,28847,29085,29263,29402,29448,29503,29548,29889,121218,719006,723225,726830,726974,736007,744266,745280,745911,746563,746604,746658,746708,747330,747983,748481,772805,773151,773383,773523,774028,774158,779449,779844,785713,797507,798172,820726,821210,822332",
+ "endLines": "39,45,47,55,56,64,70,128,129,130,135,136,137,138,148,156,159,187,192,193,198,203,204,205,210,211,216,217,222,223,224,230,231,232,237,242,243,257,261,262,263,264,267,268,271,274,275,276,277,278,281,284,285,286,287,292,295,298,299,300,305,306,307,310,313,314,317,320,323,326,327,328,331,334,335,340,341,346,349,352,353,354,355,356,357,358,359,360,361,373,449,450,451,452,462,463,464,467,472,494,509,549,558,565,566,572,573,574,575,584,588,1810,11050,11051,11052,11053,11144,11382,11394,11395,11396,11397,11398,11403,11404,11405,11406,12004,12005,12006,12012,12013,12019,12184,12196,12347,12678,12699,13289,13306,13307",
+ "endColumns": "56,11,60,11,51,47,50,51,60,45,11,51,49,50,11,11,44,58,11,56,11,11,53,56,11,57,11,55,11,56,50,11,51,54,11,11,49,55,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,55,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11,50,48,47,57,11,46,59,11,11,45,46,51,11,11,54,11,45,54,44,11,11,40,4218,3604,143,4305,502,419,630,651,40,53,49,382,652,497,2876,345,231,139,35,129,133,35,35,231,126,105,483,35,302",
+ "endOffsets": "1905,2147,2257,2548,2600,3052,3362,6607,6668,6714,6908,6960,7010,7061,7480,7792,7948,9904,10101,10158,10353,10535,10589,10646,10838,10896,11092,11148,11342,11399,11450,11672,11724,11779,11969,12145,12195,12948,13108,13169,13229,13299,13432,13500,13629,13755,13817,13882,13950,14017,14140,14265,14332,14397,14462,14643,14764,14885,14951,15018,15228,15297,15363,15488,15614,15681,15807,15934,16059,16186,16242,16307,16433,16556,16621,16829,16896,17076,17196,17316,17381,17443,17505,17567,17626,17686,17747,17808,17867,18335,23078,23127,23175,23233,23692,23739,23799,23905,24085,25298,25982,28467,28797,29080,29135,29397,29443,29498,29543,29884,30021,121254,723220,726825,726969,731275,736505,744681,745906,746558,746599,746653,746703,747325,747978,748476,751353,773146,773378,773518,774023,774153,774580,779839,780871,785940,797629,798273,821205,822327,822630"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values/values.xml",
+ "from": {
+ "startLines": "4,7",
+ "startColumns": "0,0",
+ "startOffsets": "243,406",
+ "endColumns": "63,166",
+ "endOffsets": "306,572"
+ },
+ "to": {
+ "startLines": "1884,2049",
+ "startColumns": "4,4",
+ "startOffsets": "125180,137285",
+ "endColumns": "67,166",
+ "endOffsets": "125243,137447"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,33,46",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "215,301,377,463,549,625,702,778,951,1052,1233,1354,1457,1637,1756,1868,1967,2155,2256,2437,2558,2733,2877,2936,2994,3164,3475",
+ "endLines": "4,5,6,7,8,9,10,11,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,45,64",
+ "endColumns": "85,75,85,85,75,76,75,75,100,180,120,102,179,118,111,98,187,100,180,120,174,143,58,57,74,20,20",
+ "endOffsets": "300,376,462,548,624,701,777,853,1051,1232,1353,1456,1636,1755,1867,1966,2154,2255,2436,2557,2732,2876,2935,2993,3068,3474,3887"
+ },
+ "to": {
+ "startLines": "629,630,631,632,633,634,635,636,2041,2042,2043,2044,2045,2046,2047,2048,2050,2051,2052,2053,2054,2055,2056,2057,2058,11485,12509",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "32769,32859,32939,33029,33119,33199,33280,33360,136245,136350,136531,136656,136763,136943,137066,137182,137452,137640,137745,137926,138051,138226,138374,138437,138499,754155,792062",
+ "endLines": "629,630,631,632,633,634,635,636,2041,2042,2043,2044,2045,2046,2047,2048,2050,2051,2052,2053,2054,2055,2056,2057,2058,11497,12527",
+ "endColumns": "89,79,89,89,79,80,79,79,104,180,124,106,179,122,115,102,187,104,180,124,174,147,62,61,78,20,20",
+ "endOffsets": "32854,32934,33024,33114,33194,33275,33355,33435,136345,136526,136651,136758,136938,137061,137177,137280,137635,137740,137921,138046,138221,138369,138432,138494,138573,754465,792474"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/622b253a2e7965522a66ea0393a411dd/transformed/jetified-activity-1.8.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,97",
+ "endColumns": "41,59",
+ "endOffsets": "92,152"
+ },
+ "to": {
+ "startLines": "1831,1872",
+ "startColumns": "4,4",
+ "startOffsets": "122380,124446",
+ "endColumns": "41,59",
+ "endOffsets": "122417,124501"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/66a888bdcfe85efcb169e9a3ffc92699/transformed/jetified-viewpager2-1.0.0/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "4",
+ "endColumns": "24",
+ "endOffsets": "160"
+ },
+ "to": {
+ "startLines": "13346",
+ "startColumns": "4",
+ "startOffsets": "824286",
+ "endLines": "13348",
+ "endColumns": "24",
+ "endOffsets": "824391"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ka_values-ka.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ka/values-ka.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,352,451,557,661,779",
+ "endColumns": "95,101,98,98,105,103,117,100",
+ "endOffsets": "146,248,347,446,552,656,774,875"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3449,3545,3647,3746,3845,3951,4055,12383",
+ "endColumns": "95,101,98,98,105,103,117,100",
+ "endOffsets": "3540,3642,3741,3840,3946,4050,4168,12479"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ka/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "138",
+ "endOffsets": "333"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5495",
+ "endColumns": "142",
+ "endOffsets": "5633"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ka/values-ka.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,316,427,513,618,731,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1912,2025,2131,2229,2342,2447,2551,2709,2808",
+ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81",
+ "endOffsets": "208,311,422,508,613,726,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1907,2020,2126,2224,2337,2442,2546,2704,2803,2885"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "323,431,534,645,731,836,949,1032,1111,1202,1295,1390,1484,1584,1677,1772,1867,1958,2049,2130,2243,2349,2447,2560,2665,2769,2927,12301",
+ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81",
+ "endOffsets": "426,529,640,726,831,944,1027,1106,1197,1290,1385,1479,1579,1672,1767,1862,1953,2044,2125,2238,2344,2442,2555,2660,2764,2922,3021,12378"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ka/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,294,439,563,669,819,949,1067,1171,1340,1444,1595,1719,1876,2011,2073,2130",
+ "endColumns": "100,144,123,105,149,129,117,103,168,103,150,123,156,134,61,56,71",
+ "endOffsets": "293,438,562,668,818,948,1066,1170,1339,1443,1594,1718,1875,2010,2072,2129,2201"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4485,4590,4739,4867,4977,5131,5265,5387,5638,5811,5919,6074,6202,6363,6502,6568,6629",
+ "endColumns": "104,148,127,109,153,133,121,107,172,107,154,127,160,138,65,60,75",
+ "endOffsets": "4585,4734,4862,4972,5126,5260,5382,5490,5806,5914,6069,6197,6358,6497,6563,6624,6700"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ka/values-ka.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,273,351,425,509,602,696,795,920,1008,1075,1172,1241,1304,1391,1455,1521,1581,1650,1711,1765,1880,1939,1999,2053,2125,2255,2343,2427,2565,2643,2719,2858,2952,3032,3088,3142,3208,3281,3359,3445,3529,3602,3680,3758,3833,3943,4033,4108,4202,4300,4374,4451,4551,4604,4688,4756,4845,4934,4996,5061,5124,5194,5301,5401,5501,5597,5657,5715",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,73,83,92,93,98,124,87,66,96,68,62,86,63,65,59,68,60,53,114,58,59,53,71,129,87,83,137,77,75,138,93,79,55,53,65,72,77,85,83,72,77,77,74,109,89,74,93,97,73,76,99,52,83,67,88,88,61,64,62,69,106,99,99,95,59,57,79",
+ "endOffsets": "268,346,420,504,597,691,790,915,1003,1070,1167,1236,1299,1386,1450,1516,1576,1645,1706,1760,1875,1934,1994,2048,2120,2250,2338,2422,2560,2638,2714,2853,2947,3027,3083,3137,3203,3276,3354,3440,3524,3597,3675,3753,3828,3938,4028,4103,4197,4295,4369,4446,4546,4599,4683,4751,4840,4929,4991,5056,5119,5189,5296,5396,5496,5592,5652,5710,5790"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3026,3104,3178,3262,3355,4173,4272,4397,6883,7038,7453,7522,7585,7672,7736,7802,7862,7931,7992,8046,8161,8220,8280,8334,8406,8536,8624,8708,8846,8924,9000,9139,9233,9313,9369,9423,9489,9562,9640,9726,9810,9883,9961,10039,10114,10224,10314,10389,10483,10581,10655,10732,10832,10885,10969,11037,11126,11215,11277,11342,11405,11475,11582,11682,11782,11878,11938,12081",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,73,83,92,93,98,124,87,66,96,68,62,86,63,65,59,68,60,53,114,58,59,53,71,129,87,83,137,77,75,138,93,79,55,53,65,72,77,85,83,72,77,77,74,109,89,74,93,97,73,76,99,52,83,67,88,88,61,64,62,69,106,99,99,95,59,57,79",
+ "endOffsets": "318,3099,3173,3257,3350,3444,4267,4392,4480,6945,7130,7517,7580,7667,7731,7797,7857,7926,7987,8041,8156,8215,8275,8329,8401,8531,8619,8703,8841,8919,8995,9134,9228,9308,9364,9418,9484,9557,9635,9721,9805,9878,9956,10034,10109,10219,10309,10384,10478,10576,10650,10727,10827,10880,10964,11032,11121,11210,11272,11337,11400,11470,11577,11677,11777,11873,11933,11991,12156"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ka/values-ka.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,161,264,374",
+ "endColumns": "105,102,109,104",
+ "endOffsets": "156,259,369,474"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6777,7135,7238,7348",
+ "endColumns": "105,102,109,104",
+ "endOffsets": "6878,7233,7343,7448"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ka/values-ka.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,265,350,490,659,745",
+ "endColumns": "71,87,84,139,168,85,80",
+ "endOffsets": "172,260,345,485,654,740,821"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6705,6950,11996,12161,12484,12653,12739",
+ "endColumns": "71,87,84,139,168,85,80",
+ "endOffsets": "6772,7033,12076,12296,12648,12734,12815"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-w320dp-land-v13/values-w320dp-land-v13.xml",
+ "from": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,110",
+ "endColumns": "54,61",
+ "endOffsets": "105,167"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-zh-rTW_values-zh-rTW.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-zh-rTW/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,294,418,529,627,730,842,938,1029,1135,1232,1357,1468,1566,1670,1722,1775",
+ "endColumns": "96,123,110,97,102,111,95,90,105,96,124,110,97,103,51,52,69",
+ "endOffsets": "293,417,528,626,729,841,937,1028,1134,1231,1356,1467,1565,1669,1721,1774,1844"
+ },
+ "to": {
+ "startLines": "82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "5698,5799,5927,6042,6144,6251,6367,6467,6665,6775,6876,7005,7120,7222,7330,7386,7443",
+ "endColumns": "100,127,114,101,106,115,99,94,109,100,128,114,101,107,55,56,73",
+ "endOffsets": "5794,5922,6037,6139,6246,6362,6462,6557,6770,6871,7000,7115,7217,7325,7381,7438,7512"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-zh-rTW/strings.xml",
+ "from": {
+ "startLines": "104,107,110,165,168,172,76,79,12,100,102,101,96,97,95,99,98,103,183,182,181,93,91,92,209,215,210,216,212,211,213,214,177,176,178,164,163,171,162,179,19,27,26,31,40,36,38,37,39,42,43,41,29,30,32,33,34,20,22,21,25,24,23,115,160,151,150,156,158,157,152,153,154,155,159,122,123,144,145,146,147,120,121,133,134,135,136,137,116,119,117,118,124,125,126,140,141,138,139,127,129,130,131,132,128,148,149,114,142,143,46,56,68,69,70,57,66,67,88,89,83,84,85,86,71,74,72,87,82,53,54,45,47,49,50,48,51,15,13,16,14,17,195,200,192,191,199,202,198,196,193,194,190,187,188,189,203,204,201,197,186,206,185,184,205",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "6031,6149,6264,9883,10002,10174,4393,4531,540,5768,5905,5848,5530,5582,5475,5716,5660,5977,10669,10607,10546,5417,5299,5361,12487,12936,12542,13022,12718,12618,12797,12869,10365,10307,10434,9817,9746,10107,9676,10493,820,1350,1278,1581,2204,1890,2043,1953,2123,2353,2432,2274,1428,1518,1659,1737,1820,888,1001,938,1211,1147,1060,6429,9626,9040,8995,9370,9484,9422,9085,9141,9213,9276,9559,6903,6966,8523,8586,8680,8754,6750,6819,7737,7802,7877,7964,8028,6480,6673,6544,6607,7054,7125,7224,8256,8317,8104,8173,7317,7454,7517,7588,7664,7389,8846,8914,6380,8390,8452,2567,3136,3824,3886,3978,3191,3699,3757,5153,5232,4725,4814,4904,4991,4042,4258,4122,5089,4646,3022,3072,2496,2625,2777,2849,2702,2933,683,587,729,634,775,11531,11880,11313,11258,11828,11994,11765,11628,11396,11463,11169,10969,11043,11101,12074,12136,11932,11711,10896,12251,10822,10751,12198",
+ "endLines": "106,109,112,167,170,174,78,81,12,100,102,101,96,97,95,99,98,103,183,182,181,93,91,92,209,215,210,216,212,211,213,214,177,176,178,164,163,171,162,179,19,27,26,31,40,36,38,37,39,42,43,41,29,30,32,33,34,20,22,21,25,24,23,115,160,151,150,156,158,157,152,153,154,155,159,122,123,144,145,146,147,120,121,133,134,135,136,137,116,119,117,118,124,125,126,140,141,138,139,127,129,130,131,132,128,148,149,114,142,143,46,56,68,69,70,57,66,67,88,89,83,84,85,86,71,75,73,87,82,53,54,45,47,49,50,48,51,15,13,16,14,17,195,200,192,191,199,202,198,196,193,194,190,187,188,189,203,204,201,197,186,206,185,184,205",
+ "endColumns": "14,14,14,14,14,14,14,14,46,79,71,56,51,77,54,51,55,53,81,61,60,56,61,55,54,85,75,91,78,99,71,66,68,57,58,65,70,66,69,51,67,76,71,77,69,62,79,89,80,78,62,78,89,62,77,82,68,49,58,62,66,63,86,50,48,44,44,51,74,61,55,71,62,93,66,62,87,62,93,73,91,68,83,64,74,86,63,75,63,76,62,65,70,98,92,60,72,68,82,71,62,70,75,72,64,67,80,48,61,70,57,54,61,91,63,100,57,66,78,65,88,89,86,97,79,24,26,63,78,49,62,70,76,71,83,74,87,45,46,45,48,43,96,51,82,54,51,79,62,82,66,67,88,73,57,67,61,61,61,53,72,68,73,70,52",
+ "endOffsets": "6144,6259,6374,9997,10102,10301,4526,4641,582,5843,5972,5900,5577,5655,5525,5763,5711,6026,10746,10664,10602,5469,5356,5412,12537,13017,12613,13109,12792,12713,12864,12931,10429,10360,10488,9878,9812,10169,9741,10540,883,1422,1345,1654,2269,1948,2118,2038,2199,2427,2490,2348,1513,1576,1732,1815,1884,933,1055,996,1273,1206,1142,6475,9670,9080,9035,9417,9554,9479,9136,9208,9271,9365,9621,6961,7049,8581,8675,8749,8841,6814,6898,7797,7872,7959,8023,8099,6539,6745,6602,6668,7120,7219,7312,8312,8385,8168,8251,7384,7512,7583,7659,7732,7449,8909,8990,6424,8447,8518,2620,3186,3881,3973,4037,3287,3752,3819,5227,5293,4809,4899,4986,5084,4117,4388,4253,5148,4720,3067,3130,2562,2697,2844,2928,2772,3016,724,629,770,678,814,11623,11927,11391,11308,11875,12069,11823,11706,11458,11526,11253,11038,11096,11164,12131,12193,11989,11760,10964,12315,10891,10817,12246"
+ },
+ "to": {
+ "startLines": "2,5,8,15,18,21,24,27,57,73,74,75,76,77,78,79,80,81,100,101,102,103,104,105,108,109,110,111,112,113,114,115,117,120,181,183,184,185,186,188,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,280,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,268,383,645,764,869,1001,1139,3820,5142,5222,5294,5351,5403,5481,5536,5588,5644,7517,7599,7661,7722,7779,7841,8047,8102,8188,8264,8356,8435,8535,8607,8736,8964,13247,13376,13442,13513,13580,13719,13891,13959,14036,14108,14186,14256,14319,14399,14489,14570,14649,14712,14791,14881,14944,15022,15105,15174,15224,15283,15346,15413,15477,15643,15694,15743,15788,15833,15885,15960,16022,16078,16150,16213,16307,16374,16437,16525,16588,16682,16756,16848,16917,17001,17066,17141,17228,17292,17368,17432,17509,17572,17638,17709,17808,17901,17962,18035,18104,18187,18259,18322,18393,18469,18542,18607,18675,18756,18805,18867,19207,19265,19320,19382,19474,19538,19639,19697,19764,19843,19909,19998,20088,20175,20273,20353,20488,20624,20688,20767,20817,20880,20951,21028,21100,21184,21259,21347,21393,21440,21486,21535,21734,21831,21883,21966,22021,22073,22153,22216,22299,22366,22434,22523,22597,22655,22723,22785,22847,22909,22963,23036,23105,23179,23250",
+ "endLines": "4,7,10,17,20,23,26,29,57,73,74,75,76,77,78,79,80,81,100,101,102,103,104,105,108,109,110,111,112,113,114,115,117,120,181,183,184,185,186,188,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,279,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321",
+ "endColumns": "14,14,14,14,14,14,14,14,46,79,71,56,51,77,54,51,55,53,81,61,60,56,61,55,54,85,75,91,78,99,71,66,68,57,58,65,70,66,69,51,67,76,71,77,69,62,79,89,80,78,62,78,89,62,77,82,68,49,58,62,66,63,86,50,48,44,44,51,74,61,55,71,62,93,66,62,87,62,93,73,91,68,83,64,74,86,63,75,63,76,62,65,70,98,92,60,72,68,82,71,62,70,75,72,64,67,80,48,61,70,57,54,61,91,63,100,57,66,78,65,88,89,86,97,79,24,26,63,78,49,62,70,76,71,83,74,87,45,46,45,48,43,96,51,82,54,51,79,62,82,66,67,88,73,57,67,61,61,61,53,72,68,73,70,52",
+ "endOffsets": "263,378,493,759,864,996,1134,1249,3862,5217,5289,5346,5398,5476,5531,5583,5639,5693,7594,7656,7717,7774,7836,7892,8097,8183,8259,8351,8430,8530,8602,8669,8800,9017,13301,13437,13508,13575,13645,13766,13954,14031,14103,14181,14251,14314,14394,14484,14565,14644,14707,14786,14876,14939,15017,15100,15169,15219,15278,15341,15408,15472,15559,15689,15738,15783,15828,15880,15955,16017,16073,16145,16208,16302,16369,16432,16520,16583,16677,16751,16843,16912,16996,17061,17136,17223,17287,17363,17427,17504,17567,17633,17704,17803,17896,17957,18030,18099,18182,18254,18317,18388,18464,18537,18602,18670,18751,18800,18862,18933,19260,19315,19377,19469,19533,19634,19692,19759,19838,19904,19993,20083,20170,20268,20348,20483,20619,20683,20762,20812,20875,20946,21023,21095,21179,21254,21342,21388,21435,21481,21530,21574,21826,21878,21961,22016,22068,22148,22211,22294,22361,22429,22518,22592,22650,22718,22780,22842,22904,22958,23031,23100,23174,23245,23298"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-zh-rTW/values-zh-rTW.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,247,311,373,440,510,587,681,788,861,923,1001,1061,1121,1199,1260,1318,1374,1434,1492,1546,1631,1687,1745,1799,1864,1956,2030,2107,2227,2290,2353,2452,2529,2603,2653,2704,2770,2833,2901,2979,3050,3111,3182,3249,3311,3398,3477,3542,3625,3710,3784,3848,3924,3972,4045,4109,4185,4263,4325,4389,4452,4518,4598,4676,4752,4831,4885,4940",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,63,61,66,69,76,93,106,72,61,77,59,59,77,60,57,55,59,57,53,84,55,57,53,64,91,73,76,119,62,62,98,76,73,49,50,65,62,67,77,70,60,70,66,61,86,78,64,82,84,73,63,75,47,72,63,75,77,61,63,62,65,79,77,75,78,53,54,68",
+ "endOffsets": "242,306,368,435,505,582,676,783,856,918,996,1056,1116,1194,1255,1313,1369,1429,1487,1541,1626,1682,1740,1794,1859,1951,2025,2102,2222,2285,2348,2447,2524,2598,2648,2699,2765,2828,2896,2974,3045,3106,3177,3244,3306,3393,3472,3537,3620,3705,3779,3843,3919,3967,4040,4104,4180,4258,4320,4384,4447,4513,4593,4671,4747,4826,4880,4935,5004"
+ },
+ "to": {
+ "startLines": "11,58,59,60,61,62,70,71,72,116,119,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,187",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "498,3867,3931,3993,4060,4130,4868,4962,5069,8674,8886,9308,9368,9428,9506,9567,9625,9681,9741,9799,9853,9938,9994,10052,10106,10171,10263,10337,10414,10534,10597,10660,10759,10836,10910,10960,11011,11077,11140,11208,11286,11357,11418,11489,11556,11618,11705,11784,11849,11932,12017,12091,12155,12231,12279,12352,12416,12492,12570,12632,12696,12759,12825,12905,12983,13059,13138,13192,13650",
+ "endLines": "14,58,59,60,61,62,70,71,72,116,119,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,187",
+ "endColumns": "12,63,61,66,69,76,93,106,72,61,77,59,59,77,60,57,55,59,57,53,84,55,57,53,64,91,73,76,119,62,62,98,76,73,49,50,65,62,67,77,70,60,70,66,61,86,78,64,82,84,73,63,75,47,72,63,75,77,61,63,62,65,79,77,75,78,53,54,68",
+ "endOffsets": "640,3926,3988,4055,4125,4202,4957,5064,5137,8731,8959,9363,9423,9501,9562,9620,9676,9736,9794,9848,9933,9989,10047,10101,10166,10258,10332,10409,10529,10592,10655,10754,10831,10905,10955,11006,11072,11135,11203,11281,11352,11413,11484,11551,11613,11700,11779,11844,11927,12012,12086,12150,12226,12274,12347,12411,12487,12565,12627,12691,12754,12820,12900,12978,13054,13133,13187,13242,13714"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1115,1211,1306,1400,1496,1588,1680,1772,1850,1946,2041,2136,2233,2329,2427,2577,2671",
+ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78",
+ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1110,1206,1301,1395,1491,1583,1675,1767,1845,1941,2036,2131,2228,2324,2422,2572,2666,2745"
+ },
+ "to": {
+ "startLines": "30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,213",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "1254,1349,1442,1542,1624,1721,1829,1906,1981,2073,2167,2264,2360,2455,2549,2645,2737,2829,2921,2999,3095,3190,3285,3382,3478,3576,3726,15564",
+ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78",
+ "endOffsets": "1344,1437,1537,1619,1716,1824,1901,1976,2068,2162,2259,2355,2450,2544,2640,2732,2824,2916,2994,3090,3185,3280,3377,3473,3571,3721,3815,15638"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,171,252,322,442,610,689",
+ "endColumns": "65,80,69,119,167,78,75",
+ "endOffsets": "166,247,317,437,605,684,760"
+ },
+ "to": {
+ "startLines": "106,118,182,189,262,297,298",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "7897,8805,13306,13771,19039,21579,21658",
+ "endColumns": "65,80,69,119,167,78,75",
+ "endOffsets": "7958,8881,13371,13886,19202,21653,21729"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-zh-rTW/values-zh-rTW.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,139,231,332",
+ "endColumns": "83,91,100,92",
+ "endOffsets": "134,226,327,420"
+ },
+ "to": {
+ "startLines": "107,121,122,123",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7963,9022,9114,9215",
+ "endColumns": "83,91,100,92",
+ "endOffsets": "8042,9109,9210,9303"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-zh-rTW/values-zh-rTW.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,147,246,340,434,527,620,716",
+ "endColumns": "91,98,93,93,92,92,95,100",
+ "endOffsets": "142,241,335,429,522,615,711,812"
+ },
+ "to": {
+ "startLines": "63,64,65,66,67,68,69,261",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "4207,4299,4398,4492,4586,4679,4772,18938",
+ "endColumns": "91,98,93,93,92,92,95,100",
+ "endOffsets": "4294,4393,4487,4581,4674,4767,4863,19034"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-zh-rTW/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "98",
+ "endOffsets": "297"
+ },
+ "to": {
+ "startLines": "90",
+ "startColumns": "4",
+ "startOffsets": "6562",
+ "endColumns": "102",
+ "endOffsets": "6660"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v23_values-v23.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/a33695dde8a169e607a8ae6f38de7bcf/transformed/cardview-1.0.0/res/values-v23/values-v23.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "4",
+ "endColumns": "12",
+ "endOffsets": "200"
+ },
+ "to": {
+ "startLines": "50",
+ "startColumns": "4",
+ "startOffsets": "3232",
+ "endLines": "52",
+ "endColumns": "12",
+ "endOffsets": "3377"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-v23/values-v23.xml",
+ "from": {
+ "startLines": "2,5,9,13,16,19,22,25,28,32",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,271,413,574,784,991,1198,1401,1603,1868",
+ "endLines": "4,8,12,15,18,21,24,27,31,35",
+ "endColumns": "10,10,10,10,10,10,10,10,10,10",
+ "endOffsets": "266,408,569,779,986,1193,1396,1598,1863,2136"
+ },
+ "to": {
+ "startLines": "53,56,60,64,67,70,73,76,79,83",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "3382,3598,3740,3901,4111,4318,4525,4728,4930,5195",
+ "endLines": "55,59,63,66,69,72,75,78,82,86",
+ "endColumns": "10,10,10,10,10,10,10,10,10,10",
+ "endOffsets": "3593,3735,3896,4106,4313,4520,4723,4925,5190,5463"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v23/values-v23.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,190,325,400,487,1225,1975,2094,2221,2443,2667,2782,2889,3002",
+ "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49",
+ "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12",
+ "endOffsets": "185,320,395,482,1220,1970,2089,2216,2438,2662,2777,2884,2997,3227"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-hu_values-hu.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-hu/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "172",
+ "endOffsets": "367"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5575",
+ "endColumns": "176",
+ "endOffsets": "5747"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-hu/values-hu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,264,346,483,652,731",
+ "endColumns": "70,87,81,136,168,78,75",
+ "endOffsets": "171,259,341,478,647,726,802"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6923,7154,12221,12388,12710,12879,12958",
+ "endColumns": "70,87,81,136,168,78,75",
+ "endOffsets": "6989,7237,12298,12520,12874,12953,13029"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-hu/values-hu.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,151,252,367",
+ "endColumns": "95,100,114,103",
+ "endOffsets": "146,247,362,466"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6994,7341,7442,7557",
+ "endColumns": "95,100,114,103",
+ "endOffsets": "7085,7437,7552,7656"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-hu/values-hu.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,263,344,420,497,587,667,766,886,969,1033,1132,1207,1266,1376,1438,1507,1565,1637,1698,1753,1856,1913,1973,2028,2109,2229,2312,2400,2535,2618,2698,2838,2932,3014,3067,3118,3184,3260,3342,3428,3512,3589,3664,3743,3820,3925,4021,4098,4190,4287,4361,4446,4543,4595,4678,4745,4833,4920,4982,5046,5109,5175,5273,5379,5473,5580,5637,5692",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,75,76,89,79,98,119,82,63,98,74,58,109,61,68,57,71,60,54,102,56,59,54,80,119,82,87,134,82,79,139,93,81,52,50,65,75,81,85,83,76,74,78,76,104,95,76,91,96,73,84,96,51,82,66,87,86,61,63,62,65,97,105,93,106,56,54,84",
+ "endOffsets": "258,339,415,492,582,662,761,881,964,1028,1127,1202,1261,1371,1433,1502,1560,1632,1693,1748,1851,1908,1968,2023,2104,2224,2307,2395,2530,2613,2693,2833,2927,3009,3062,3113,3179,3255,3337,3423,3507,3584,3659,3738,3815,3920,4016,4093,4185,4282,4356,4441,4538,4590,4673,4740,4828,4915,4977,5041,5104,5170,5268,5374,5468,5575,5632,5687,5772"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3067,3148,3224,3301,3391,4193,4292,4412,7090,7242,7661,7736,7795,7905,7967,8036,8094,8166,8227,8282,8385,8442,8502,8557,8638,8758,8841,8929,9064,9147,9227,9367,9461,9543,9596,9647,9713,9789,9871,9957,10041,10118,10193,10272,10349,10454,10550,10627,10719,10816,10890,10975,11072,11124,11207,11274,11362,11449,11511,11575,11638,11704,11802,11908,12002,12109,12166,12303",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,75,76,89,79,98,119,82,63,98,74,58,109,61,68,57,71,60,54,102,56,59,54,80,119,82,87,134,82,79,139,93,81,52,50,65,75,81,85,83,76,74,78,76,104,95,76,91,96,73,84,96,51,82,66,87,86,61,63,62,65,97,105,93,106,56,54,84",
+ "endOffsets": "308,3143,3219,3296,3386,3466,4287,4407,4490,7149,7336,7731,7790,7900,7962,8031,8089,8161,8222,8277,8380,8437,8497,8552,8633,8753,8836,8924,9059,9142,9222,9362,9456,9538,9591,9642,9708,9784,9866,9952,10036,10113,10188,10267,10344,10449,10545,10622,10714,10811,10885,10970,11067,11119,11202,11269,11357,11444,11506,11570,11633,11699,11797,11903,11997,12104,12161,12216,12383"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-hu/values-hu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,305,420,504,619,742,819,894,985,1078,1173,1267,1367,1460,1555,1650,1741,1832,1915,2025,2135,2235,2346,2455,2574,2756,2859",
+ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83",
+ "endOffsets": "208,300,415,499,614,737,814,889,980,1073,1168,1262,1362,1455,1550,1645,1736,1827,1910,2020,2130,2230,2341,2450,2569,2751,2854,2938"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "313,421,513,628,712,827,950,1027,1102,1193,1286,1381,1475,1575,1668,1763,1858,1949,2040,2123,2233,2343,2443,2554,2663,2782,2964,12525",
+ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83",
+ "endOffsets": "416,508,623,707,822,945,1022,1097,1188,1281,1376,1470,1570,1663,1758,1853,1944,2035,2118,2228,2338,2438,2549,2658,2777,2959,3062,12604"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-hu/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,480,614,719,883,1017,1135,1241,1407,1511,1692,1825,1993,2161,2228,2292",
+ "endColumns": "106,179,133,104,163,133,117,105,165,103,180,132,167,167,66,63,83",
+ "endOffsets": "299,479,613,718,882,1016,1134,1240,1406,1510,1691,1824,1992,2160,2227,2291,2375"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4495,4606,4790,4928,5037,5205,5343,5465,5752,5922,6030,6215,6352,6524,6696,6767,6835",
+ "endColumns": "110,183,137,108,167,137,121,109,169,107,184,136,171,171,70,67,87",
+ "endOffsets": "4601,4785,4923,5032,5200,5338,5460,5570,5917,6025,6210,6347,6519,6691,6762,6830,6918"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-hu/values-hu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,356,457,560,667,777",
+ "endColumns": "96,101,101,100,102,106,109,100",
+ "endOffsets": "147,249,351,452,555,662,772,873"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3471,3568,3670,3772,3873,3976,4083,12609",
+ "endColumns": "96,101,101,100,102,106,109,100",
+ "endOffsets": "3563,3665,3767,3868,3971,4078,4188,12705"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ko_values-ko.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ko/values-ko.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,249,314,378,447,521,600,683,789,864,926,1007,1069,1126,1213,1273,1331,1389,1448,1505,1559,1654,1710,1767,1821,1887,1991,2066,2143,2264,2329,2394,2494,2573,2648,2698,2749,2815,2879,2949,3026,3097,3165,3236,3303,3373,3466,3546,3620,3700,3782,3854,3919,3991,4039,4112,4176,4251,4328,4390,4454,4517,4584,4668,4746,4826,4904,4958,5013",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,64,63,68,73,78,82,105,74,61,80,61,56,86,59,57,57,58,56,53,94,55,56,53,65,103,74,76,120,64,64,99,78,74,49,50,65,63,69,76,70,67,70,66,69,92,79,73,79,81,71,64,71,47,72,63,74,76,61,63,62,66,83,77,79,77,53,54,71",
+ "endOffsets": "244,309,373,442,516,595,678,784,859,921,1002,1064,1121,1208,1268,1326,1384,1443,1500,1554,1649,1705,1762,1816,1882,1986,2061,2138,2259,2324,2389,2489,2568,2643,2693,2744,2810,2874,2944,3021,3092,3160,3231,3298,3368,3461,3541,3615,3695,3777,3849,3914,3986,4034,4107,4171,4246,4323,4385,4449,4512,4579,4663,4741,4821,4899,4953,5008,5080"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2879,2944,3008,3077,3151,3907,3990,4096,6270,6413,6784,6846,6903,6990,7050,7108,7166,7225,7282,7336,7431,7487,7544,7598,7664,7768,7843,7920,8041,8106,8171,8271,8350,8425,8475,8526,8592,8656,8726,8803,8874,8942,9013,9080,9150,9243,9323,9397,9477,9559,9631,9696,9768,9816,9889,9953,10028,10105,10167,10231,10294,10361,10445,10523,10603,10681,10735,10864",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,64,63,68,73,78,82,105,74,61,80,61,56,86,59,57,57,58,56,53,94,55,56,53,65,103,74,76,120,64,64,99,78,74,49,50,65,63,69,76,70,67,70,66,69,92,79,73,79,81,71,64,71,47,72,63,74,76,61,63,62,66,83,77,79,77,53,54,71",
+ "endOffsets": "294,2939,3003,3072,3146,3225,3985,4091,4166,6327,6489,6841,6898,6985,7045,7103,7161,7220,7277,7331,7426,7482,7539,7593,7659,7763,7838,7915,8036,8101,8166,8266,8345,8420,8470,8521,8587,8651,8721,8798,8869,8937,9008,9075,9145,9238,9318,9392,9472,9554,9626,9691,9763,9811,9884,9948,10023,10100,10162,10226,10289,10356,10440,10518,10598,10676,10730,10785,10931"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ko/values-ko.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,141,234,337",
+ "endColumns": "85,92,102,93",
+ "endOffsets": "136,229,332,426"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6184,6494,6587,6690",
+ "endColumns": "85,92,102,93",
+ "endOffsets": "6265,6582,6685,6779"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ko/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "116",
+ "endOffsets": "311"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5066",
+ "endColumns": "120",
+ "endOffsets": "5182"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ko/values-ko.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,147,247,341,438,534,632,732",
+ "endColumns": "91,99,93,96,95,97,99,100",
+ "endOffsets": "142,242,336,433,529,627,727,828"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3230,3322,3422,3516,3613,3709,3807,11147",
+ "endColumns": "91,99,93,96,95,97,99,100",
+ "endOffsets": "3317,3417,3511,3608,3704,3802,3902,11243"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ko/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,293,428,540,638,749,862,965,1056,1197,1296,1428,1542,1656,1771,1826,1880",
+ "endColumns": "99,134,111,97,110,112,102,90,140,98,131,113,113,114,54,53,70",
+ "endOffsets": "292,427,539,637,748,861,964,1055,1196,1295,1427,1541,1655,1770,1825,1879,1950"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4171,4275,4414,4530,4632,4747,4864,4971,5187,5332,5435,5571,5689,5807,5926,5985,6043",
+ "endColumns": "103,138,115,101,114,116,106,94,144,102,135,117,117,118,58,57,74",
+ "endOffsets": "4270,4409,4525,4627,4742,4859,4966,5061,5327,5430,5566,5684,5802,5921,5980,6038,6113"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ko/values-ko.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,202,296,397,479,577,683,763,838,929,1022,1117,1211,1311,1404,1499,1593,1684,1775,1855,1953,2047,2142,2242,2339,2439,2591,2685",
+ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78",
+ "endOffsets": "197,291,392,474,572,678,758,833,924,1017,1112,1206,1306,1399,1494,1588,1679,1770,1850,1948,2042,2137,2237,2334,2434,2586,2680,2759"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "299,396,490,591,673,771,877,957,1032,1123,1216,1311,1405,1505,1598,1693,1787,1878,1969,2049,2147,2241,2336,2436,2533,2633,2785,11068",
+ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78",
+ "endOffsets": "391,485,586,668,766,872,952,1027,1118,1211,1306,1400,1500,1593,1688,1782,1873,1964,2044,2142,2236,2331,2431,2528,2628,2780,2874,11142"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ko/values-ko.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,171,252,326,458,627,709",
+ "endColumns": "65,80,73,131,168,81,75",
+ "endOffsets": "166,247,321,453,622,704,780"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6118,6332,10790,10936,11248,11417,11499",
+ "endColumns": "65,80,73,131,168,81,75",
+ "endOffsets": "6179,6408,10859,11063,11412,11494,11570"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v21_values-v21.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-v21/values-v21.xml",
+ "from": {
+ "startLines": "2,3,6",
+ "startColumns": "4,4,4",
+ "startOffsets": "55,120,276",
+ "endLines": "2,5,8",
+ "endColumns": "64,12,12",
+ "endOffsets": "115,271,449"
+ },
+ "to": {
+ "startLines": "20,348,351",
+ "startColumns": "4,4,4",
+ "startOffsets": "1603,25623,25779",
+ "endLines": "20,350,353",
+ "endColumns": "64,12,12",
+ "endOffsets": "1663,25774,25952"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v21/values-v21.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,106,109,152,155,158,160,162,164,167,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,220,222,223,224,234,235,236,248",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4213,4362,4511,4623,4770,4923,5070,5145,5234,5321,5422,5525,8283,8468,11238,11435,11634,11757,11880,11993,12176,12431,12632,12721,12832,13065,13166,13261,13384,13513,13630,13807,13906,14041,14184,14319,14438,14639,14758,14851,14962,15018,15125,15320,15431,15564,15659,15750,15841,15934,16051,16190,16261,16344,16967,17024,17082,17706",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,105,108,151,154,157,159,161,163,166,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,219,221,222,223,233,234,235,247,259",
+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12",
+ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4208,4357,4506,4618,4765,4918,5065,5140,5229,5316,5417,5520,8278,8463,11233,11430,11629,11752,11875,11988,12171,12426,12627,12716,12827,13060,13161,13256,13379,13508,13625,13802,13901,14036,14179,14314,14433,14634,14753,14846,14957,15013,15120,15315,15426,15559,15654,15745,15836,15929,16046,16185,16256,16339,16962,17019,17077,17701,18337"
+ },
+ "to": {
+ "startLines": "25,26,27,28,29,30,31,32,33,34,35,36,37,38,40,42,43,44,45,47,49,50,51,52,53,55,57,59,61,63,65,66,71,73,75,76,77,79,81,82,83,84,89,101,144,147,190,205,217,219,221,223,226,230,233,234,235,238,239,240,241,242,243,246,247,249,251,253,255,259,261,262,263,264,266,270,272,274,275,276,277,278,279,310,311,312,322,323,324,336",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "2040,2131,2234,2337,2442,2549,2658,2767,2876,2985,3094,3201,3304,3423,3578,3733,3838,3959,4060,4207,4348,4451,4570,4677,4780,4935,5106,5255,5420,5577,5728,5847,6198,6347,6496,6608,6755,6908,7055,7130,7219,7306,7831,8923,11681,11866,14636,15769,16621,16744,16867,16980,17163,17418,17619,17708,17819,18052,18153,18248,18371,18500,18617,18794,18893,19028,19171,19306,19425,19626,19745,19838,19949,20005,20112,20307,20418,20551,20646,20737,20828,20921,21038,23471,23542,23625,24248,24305,24363,24987",
+ "endLines": "25,26,27,28,29,30,31,32,33,34,35,36,37,39,41,42,43,44,46,48,49,50,51,52,54,56,58,60,62,64,65,70,72,74,75,76,78,80,81,82,83,84,89,143,146,189,192,207,218,220,222,225,229,232,233,234,237,238,239,240,241,242,245,246,248,250,252,254,258,260,261,262,263,265,269,271,273,274,275,276,277,278,280,310,311,321,322,323,335,347",
+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12",
+ "endOffsets": "2126,2229,2332,2437,2544,2653,2762,2871,2980,3089,3196,3299,3418,3573,3728,3833,3954,4055,4202,4343,4446,4565,4672,4775,4930,5101,5250,5415,5572,5723,5842,6193,6342,6491,6603,6750,6903,7050,7125,7214,7301,7402,7929,11676,11861,14631,14828,15963,16739,16862,16975,17158,17413,17614,17703,17814,18047,18148,18243,18366,18495,18612,18789,18888,19023,19166,19301,19420,19621,19740,19833,19944,20000,20107,20302,20413,20546,20641,20732,20823,20916,21033,21172,23537,23620,24243,24300,24358,24982,25618"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-v21/values-v21.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,13",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,173,237,304,368,484,610,736,864,1036",
+ "endLines": "2,3,4,5,6,7,8,9,12,17",
+ "endColumns": "117,63,66,63,115,125,125,127,12,12",
+ "endOffsets": "168,232,299,363,479,605,731,859,1031,1383"
+ },
+ "to": {
+ "startLines": "2,17,18,19,354,355,356,357,544,547",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,1408,1472,1539,25957,26073,26199,26325,37616,37788",
+ "endLines": "2,17,18,19,354,355,356,357,546,551",
+ "endColumns": "117,63,66,63,115,125,125,127,12,12",
+ "endOffsets": "168,1467,1534,1598,26068,26194,26320,26448,37783,38135"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-v21/values-v21.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,29,32,35,38,41,44,47,50,53,56,59,60,63,68,79,85,94,103,112,121,130,139,148,157,166,175,184,193,202,211,220,226,232,238,244,248,252,253,254,255,259,262,265,268,271,272,275,278,282,286",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,249,345,443,511,590,678,766,854,942,1029,1116,1203,1290,1386,1476,1572,1662,1755,1862,1967,2086,2211,2332,2545,2804,3075,3293,3525,3761,4011,4224,4433,4664,4865,4981,5151,5472,6501,6958,7462,7970,8479,8993,9498,10002,10507,11013,11515,12021,12530,13038,13537,14044,14552,14844,15138,15438,15738,16067,16408,16546,16690,16846,17239,17457,17679,17905,18121,18231,18401,18591,18832,19091",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,28,31,34,37,40,43,46,49,52,55,58,59,62,67,78,84,93,102,111,120,129,138,147,156,165,174,183,192,201,210,219,225,231,237,243,247,251,252,253,254,258,261,264,267,270,271,274,277,281,285,288",
+ "endColumns": "97,95,95,97,67,78,87,87,87,87,86,86,86,86,95,89,95,89,92,106,104,118,124,120,10,10,10,10,10,10,10,10,10,10,10,115,10,12,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,137,143,155,10,10,10,10,10,109,10,10,10,10,10",
+ "endOffsets": "148,244,340,438,506,585,673,761,849,937,1024,1111,1198,1285,1381,1471,1567,1657,1750,1857,1962,2081,2206,2327,2540,2799,3070,3288,3520,3756,4006,4219,4428,4659,4860,4976,5146,5467,6496,6953,7457,7965,8474,8988,9493,9997,10502,11008,11510,12016,12525,13033,13532,14039,14547,14839,15133,15433,15733,16062,16403,16541,16685,16841,17234,17452,17674,17900,18116,18226,18396,18586,18827,19086,19263"
+ },
+ "to": {
+ "startLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,21,22,23,24,85,86,87,88,90,91,92,95,98,193,196,199,202,208,211,214,281,284,285,288,293,304,358,367,376,385,394,403,412,421,430,439,448,457,466,475,484,493,499,505,511,517,521,525,526,527,528,532,535,538,541,552,553,556,559,563,567",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "173,271,367,463,561,629,708,796,884,972,1060,1147,1234,1321,1668,1764,1854,1950,7407,7500,7607,7712,7934,8059,8180,8393,8652,14833,15051,15283,15519,15968,16181,16390,21177,21378,21494,21664,21985,23014,26453,26957,27465,27974,28488,28993,29497,30002,30508,31010,31516,32025,32533,33032,33539,34047,34339,34633,34933,35233,35562,35903,36041,36185,36341,36734,36952,37174,37400,38140,38250,38420,38610,38851,39110",
+ "endLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,21,22,23,24,85,86,87,88,90,91,94,97,100,195,198,201,204,210,213,216,283,284,287,292,303,309,366,375,384,393,402,411,420,429,438,447,456,465,474,483,492,498,504,510,516,520,524,525,526,527,531,534,537,540,543,552,555,558,562,566,569",
+ "endColumns": "97,95,95,97,67,78,87,87,87,87,86,86,86,86,95,89,95,89,92,106,104,118,124,120,10,10,10,10,10,10,10,10,10,10,10,115,10,12,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,137,143,155,10,10,10,10,10,109,10,10,10,10,10",
+ "endOffsets": "266,362,458,556,624,703,791,879,967,1055,1142,1229,1316,1403,1759,1849,1945,2035,7495,7602,7707,7826,8054,8175,8388,8647,8918,15046,15278,15514,15764,16176,16385,16616,21373,21489,21659,21980,23009,23466,26952,27460,27969,28483,28988,29492,29997,30503,31005,31511,32020,32528,33027,33534,34042,34334,34628,34928,35228,35557,35898,36036,36180,36336,36729,36947,37169,37395,37611,38245,38415,38605,38846,39105,39282"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-vi_values-vi.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-vi/values-vi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,353,453,556,669,785",
+ "endColumns": "96,101,98,99,102,112,115,100",
+ "endOffsets": "147,249,348,448,551,664,780,881"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3402,3499,3601,3700,3800,3903,4016,12252",
+ "endColumns": "96,101,98,99,102,112,115,100",
+ "endOffsets": "3494,3596,3695,3795,3898,4011,4127,12348"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-vi/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "123",
+ "endOffsets": "318"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5441",
+ "endColumns": "127",
+ "endOffsets": "5564"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-vi/values-vi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,314,423,507,610,729,807,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1904,2008,2116,2217,2322,2437,2542,2699,2798",
+ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84",
+ "endOffsets": "207,309,418,502,605,724,802,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1899,2003,2111,2212,2317,2432,2537,2694,2793,2878"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,422,524,633,717,820,939,1017,1093,1184,1277,1372,1466,1566,1659,1754,1848,1939,2030,2114,2218,2326,2427,2532,2647,2752,2909,12167",
+ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84",
+ "endOffsets": "417,519,628,712,815,934,1012,1088,1179,1272,1367,1461,1561,1654,1749,1843,1934,2025,2109,2213,2321,2422,2527,2642,2747,2904,3003,12247"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-vi/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,291,449,570,675,836,962,1077,1177,1346,1449,1602,1728,1883,2028,2092,2152",
+ "endColumns": "97,157,120,104,160,125,114,99,168,102,152,125,154,144,63,59,78",
+ "endOffsets": "290,448,569,674,835,961,1076,1176,1345,1448,1601,1727,1882,2027,2091,2151,2230"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4425,4527,4689,4814,4923,5088,5218,5337,5569,5742,5849,6006,6136,6295,6444,6512,6576",
+ "endColumns": "101,161,124,108,164,129,118,103,172,106,156,129,158,148,67,63,82",
+ "endOffsets": "4522,4684,4809,4918,5083,5213,5332,5436,5737,5844,6001,6131,6290,6439,6507,6571,6654"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-vi/values-vi.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,344,421,499,579,659,758,872,952,1015,1109,1183,1242,1328,1390,1451,1509,1573,1634,1688,1805,1862,1922,1976,2051,2178,2262,2340,2470,2554,2632,2766,2857,2938,2989,3040,3106,3174,3250,3331,3411,3490,3565,3638,3714,3820,3909,3986,4077,4171,4245,4315,4408,4457,4538,4604,4689,4775,4837,4901,4964,5035,5134,5239,5337,5442,5497,5552",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,78,76,77,79,79,98,113,79,62,93,73,58,85,61,60,57,63,60,53,116,56,59,53,74,126,83,77,129,83,77,133,90,80,50,50,65,67,75,80,79,78,74,72,75,105,88,76,90,93,73,69,92,48,80,65,84,85,61,63,62,70,98,104,97,104,54,54,77",
+ "endOffsets": "260,339,416,494,574,654,753,867,947,1010,1104,1178,1237,1323,1385,1446,1504,1568,1629,1683,1800,1857,1917,1971,2046,2173,2257,2335,2465,2549,2627,2761,2852,2933,2984,3035,3101,3169,3245,3326,3406,3485,3560,3633,3709,3815,3904,3981,4072,4166,4240,4310,4403,4452,4533,4599,4684,4770,4832,4896,4959,5030,5129,5234,5332,5437,5492,5547,5625"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3008,3087,3164,3242,3322,4132,4231,4345,6848,6998,7428,7502,7561,7647,7709,7770,7828,7892,7953,8007,8124,8181,8241,8295,8370,8497,8581,8659,8789,8873,8951,9085,9176,9257,9308,9359,9425,9493,9569,9650,9730,9809,9884,9957,10033,10139,10228,10305,10396,10490,10564,10634,10727,10776,10857,10923,11008,11094,11156,11220,11283,11354,11453,11558,11656,11761,11816,11946",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,78,76,77,79,79,98,113,79,62,93,73,58,85,61,60,57,63,60,53,116,56,59,53,74,126,83,77,129,83,77,133,90,80,50,50,65,67,75,80,79,78,74,72,75,105,88,76,90,93,73,69,92,48,80,65,84,85,61,63,62,70,98,104,97,104,54,54,77",
+ "endOffsets": "310,3082,3159,3237,3317,3397,4226,4340,4420,6906,7087,7497,7556,7642,7704,7765,7823,7887,7948,8002,8119,8176,8236,8290,8365,8492,8576,8654,8784,8868,8946,9080,9171,9252,9303,9354,9420,9488,9564,9645,9725,9804,9879,9952,10028,10134,10223,10300,10391,10485,10559,10629,10722,10771,10852,10918,11003,11089,11151,11215,11278,11349,11448,11553,11651,11756,11811,11866,12019"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-vi/values-vi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,264,339,482,651,731",
+ "endColumns": "71,86,74,142,168,79,76",
+ "endOffsets": "172,259,334,477,646,726,803"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6659,6911,11871,12024,12353,12522,12602",
+ "endColumns": "71,86,74,142,168,79,76",
+ "endOffsets": "6726,6993,11941,12162,12517,12597,12674"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-vi/values-vi.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,172,283,397",
+ "endColumns": "116,110,113,110",
+ "endOffsets": "167,278,392,503"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6731,7092,7203,7317",
+ "endColumns": "116,110,113,110",
+ "endOffsets": "6843,7198,7312,7423"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-am_values-am.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-am/values-am.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,151,246,352",
+ "endColumns": "95,94,105,96",
+ "endOffsets": "146,241,347,444"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6333,6660,6755,6861",
+ "endColumns": "95,94,105,96",
+ "endOffsets": "6424,6750,6856,6953"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-am/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,291,426,544,642,765,884,988,1086,1210,1309,1450,1569,1700,1823,1879,1932",
+ "endColumns": "97,134,117,97,122,118,103,97,123,98,140,118,130,122,55,52,66",
+ "endOffsets": "290,425,543,641,764,883,987,1085,1209,1308,1449,1568,1699,1822,1878,1931,1998"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4261,4363,4502,4624,4726,4853,4976,5084,5318,5446,5549,5694,5817,5952,6079,6139,6196",
+ "endColumns": "101,138,121,101,126,122,107,101,127,102,144,122,134,126,59,56,70",
+ "endOffsets": "4358,4497,4619,4721,4848,4971,5079,5181,5441,5544,5689,5812,5947,6074,6134,6191,6262"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-am/values-am.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,148,248,345,444,540,642,742",
+ "endColumns": "92,99,96,98,95,101,99,100",
+ "endOffsets": "143,243,340,439,535,637,737,838"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3306,3399,3499,3596,3695,3791,3893,11516",
+ "endColumns": "92,99,96,98,95,101,99,100",
+ "endOffsets": "3394,3494,3591,3690,3786,3888,3988,11612"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-am/values-am.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,171,253,327,458,627,708",
+ "endColumns": "65,81,73,130,168,80,77",
+ "endOffsets": "166,248,322,453,622,703,781"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6267,6493,11155,11305,11617,11786,11867",
+ "endColumns": "65,81,73,130,168,80,77",
+ "endOffsets": "6328,6570,11224,11431,11781,11862,11940"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-am/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "127",
+ "endOffsets": "322"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5186",
+ "endColumns": "131",
+ "endOffsets": "5313"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-am/values-am.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,261,332,400,475,557,638,727,829,906,970,1055,1117,1175,1260,1323,1385,1443,1509,1571,1626,1722,1779,1838,1894,1961,2066,2146,2227,2356,2429,2500,2614,2696,2772,2823,2874,2940,3006,3079,3160,3235,3303,3376,3447,3514,3612,3697,3764,3851,3939,4013,4081,4166,4217,4295,4359,4439,4521,4583,4647,4710,4776,4871,4966,5051,5142,5197,5252",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,70,67,74,81,80,88,101,76,63,84,61,57,84,62,61,57,65,61,54,95,56,58,55,66,104,79,80,128,72,70,113,81,75,50,50,65,65,72,80,74,67,72,70,66,97,84,66,86,87,73,67,84,50,77,63,79,81,61,63,62,65,94,94,84,90,54,54,75",
+ "endOffsets": "256,327,395,470,552,633,722,824,901,965,1050,1112,1170,1255,1318,1380,1438,1504,1566,1621,1717,1774,1833,1889,1956,2061,2141,2222,2351,2424,2495,2609,2691,2767,2818,2869,2935,3001,3074,3155,3230,3298,3371,3442,3509,3607,3692,3759,3846,3934,4008,4076,4161,4212,4290,4354,4434,4516,4578,4642,4705,4771,4866,4961,5046,5137,5192,5247,5323"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2929,3000,3068,3143,3225,3993,4082,4184,6429,6575,6958,7020,7078,7163,7226,7288,7346,7412,7474,7529,7625,7682,7741,7797,7864,7969,8049,8130,8259,8332,8403,8517,8599,8675,8726,8777,8843,8909,8982,9063,9138,9206,9279,9350,9417,9515,9600,9667,9754,9842,9916,9984,10069,10120,10198,10262,10342,10424,10486,10550,10613,10679,10774,10869,10954,11045,11100,11229",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,70,67,74,81,80,88,101,76,63,84,61,57,84,62,61,57,65,61,54,95,56,58,55,66,104,79,80,128,72,70,113,81,75,50,50,65,65,72,80,74,67,72,70,66,97,84,66,86,87,73,67,84,50,77,63,79,81,61,63,62,65,94,94,84,90,54,54,75",
+ "endOffsets": "306,2995,3063,3138,3220,3301,4077,4179,4256,6488,6655,7015,7073,7158,7221,7283,7341,7407,7469,7524,7620,7677,7736,7792,7859,7964,8044,8125,8254,8327,8398,8512,8594,8670,8721,8772,8838,8904,8977,9058,9133,9201,9274,9345,9412,9510,9595,9662,9749,9837,9911,9979,10064,10115,10193,10257,10337,10419,10481,10545,10608,10674,10769,10864,10949,11040,11095,11150,11300"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-am/values-am.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,203,301,407,493,596,713,791,867,958,1051,1143,1237,1337,1430,1525,1618,1709,1800,1880,1980,2080,2176,2278,2378,2477,2627,2723",
+ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79",
+ "endOffsets": "198,296,402,488,591,708,786,862,953,1046,1138,1232,1332,1425,1520,1613,1704,1795,1875,1975,2075,2171,2273,2373,2472,2622,2718,2798"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "311,409,507,613,699,802,919,997,1073,1164,1257,1349,1443,1543,1636,1731,1824,1915,2006,2086,2186,2286,2382,2484,2584,2683,2833,11436",
+ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79",
+ "endOffsets": "404,502,608,694,797,914,992,1068,1159,1252,1344,1438,1538,1631,1726,1819,1910,2001,2081,2181,2281,2377,2479,2579,2678,2828,2924,11511"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-night-v8_values-night-v8.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/96596d913bdc5ef7499b36edf6e5d946/transformed/jetified-preferencex-simplemenu-1.1.0/res/values-night-v8/values-night-v8.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "67",
+ "endOffsets": "118"
+ },
+ "to": {
+ "startLines": "6",
+ "startColumns": "4",
+ "startOffsets": "256",
+ "endColumns": "67",
+ "endOffsets": "319"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-night-v8/values-night-v8.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,130,241,330,431,538,645,744,851,954,1042,1166,1268,1370,1486,1588,1702,1830,1946,2068,2204,2324,2458,2578,2690,2816,2933,3057,3187,3309,3447,3581,3697",
+ "endColumns": "74,110,88,100,106,106,98,106,102,87,123,101,101,115,101,113,127,115,121,135,119,133,119,111,125,116,123,129,121,137,133,115,119",
+ "endOffsets": "125,236,325,426,533,640,739,846,949,1037,1161,1263,1365,1481,1583,1697,1825,1941,2063,2199,2319,2453,2573,2685,2811,2928,3052,3182,3304,3442,3576,3692,3812"
+ },
+ "to": {
+ "startLines": "14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,40,41,42,43,44,45,46,47",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "956,1031,1142,1231,1332,1439,1546,1645,1752,1855,1943,2067,2169,2271,2387,2489,2603,2731,2847,2969,3105,3225,3359,3479,3591,3806,3923,4047,4177,4299,4437,4571,4687",
+ "endColumns": "74,110,88,100,106,106,98,106,102,87,123,101,101,115,101,113,127,115,121,135,119,133,119,111,125,116,123,129,121,137,133,115,119",
+ "endOffsets": "1026,1137,1226,1327,1434,1541,1640,1747,1850,1938,2062,2164,2266,2382,2484,2598,2726,2842,2964,3100,3220,3354,3474,3586,3712,3918,4042,4172,4294,4432,4566,4682,4802"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-night/colors.xml",
+ "from": {
+ "startLines": "2,3,4",
+ "startColumns": "4,4,4",
+ "startOffsets": "55,119,170",
+ "endColumns": "63,50,48",
+ "endOffsets": "114,165,214"
+ },
+ "to": {
+ "startLines": "3,4,5",
+ "startColumns": "4,4,4",
+ "startOffsets": "92,156,207",
+ "endColumns": "63,50,48",
+ "endOffsets": "151,202,251"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-night/bools.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "36",
+ "endOffsets": "87"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-night-v8/values-night-v8.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,125,209,293,389,491,593,687",
+ "endColumns": "69,83,83,95,101,101,93,88",
+ "endOffsets": "120,204,288,384,486,588,682,771"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,39",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "324,394,478,562,658,760,862,3717",
+ "endColumns": "69,83,83,95,101,101,93,88",
+ "endOffsets": "389,473,557,653,755,857,951,3801"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-uz_values-uz.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-uz/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,294,440,565,670,811,940,1056,1158,1326,1430,1585,1713,1863,2021,2083,2140",
+ "endColumns": "100,145,124,104,140,128,115,101,167,103,154,127,149,157,61,56,75",
+ "endOffsets": "293,439,564,669,810,939,1055,1157,1325,1429,1584,1712,1862,2020,2082,2139,2215"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4467,4572,4722,4851,4960,5105,5238,5358,5614,5786,5894,6053,6185,6339,6501,6567,6628",
+ "endColumns": "104,149,128,108,144,132,119,105,171,107,158,131,153,161,65,60,79",
+ "endOffsets": "4567,4717,4846,4955,5100,5233,5353,5459,5781,5889,6048,6180,6334,6496,6562,6623,6703"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-uz/values-uz.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,180,273,353,498,667,754",
+ "endColumns": "74,92,79,144,168,86,78",
+ "endOffsets": "175,268,348,493,662,749,828"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6708,6965,12047,12210,12540,12709,12796",
+ "endColumns": "74,92,79,144,168,86,78",
+ "endOffsets": "6778,7053,12122,12350,12704,12791,12870"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-uz/values-uz.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,283,360,440,523,617,704,799,926,1010,1074,1177,1247,1314,1423,1486,1553,1612,1686,1749,1803,1918,1976,2038,2092,2167,2296,2386,2475,2616,2698,2780,2919,3005,3089,3149,3200,3266,3339,3417,3503,3584,3656,3733,3808,3879,3980,4074,4153,4249,4343,4417,4493,4579,4632,4719,4785,4870,4961,5023,5087,5150,5219,5321,5422,5518,5619,5683,5738",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,76,79,82,93,86,94,126,83,63,102,69,66,108,62,66,58,73,62,53,114,57,61,53,74,128,89,88,140,81,81,138,85,83,59,50,65,72,77,85,80,71,76,74,70,100,93,78,95,93,73,75,85,52,86,65,84,90,61,63,62,68,101,100,95,100,63,54,82",
+ "endOffsets": "278,355,435,518,612,699,794,921,1005,1069,1172,1242,1309,1418,1481,1548,1607,1681,1744,1798,1913,1971,2033,2087,2162,2291,2381,2470,2611,2693,2775,2914,3000,3084,3144,3195,3261,3334,3412,3498,3579,3651,3728,3803,3874,3975,4069,4148,4244,4338,4412,4488,4574,4627,4714,4780,4865,4956,5018,5082,5145,5214,5316,5417,5513,5614,5678,5733,5816"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3004,3081,3161,3244,3338,4161,4256,4383,6901,7058,7486,7556,7623,7732,7795,7862,7921,7995,8058,8112,8227,8285,8347,8401,8476,8605,8695,8784,8925,9007,9089,9228,9314,9398,9458,9509,9575,9648,9726,9812,9893,9965,10042,10117,10188,10289,10383,10462,10558,10652,10726,10802,10888,10941,11028,11094,11179,11270,11332,11396,11459,11528,11630,11731,11827,11928,11992,12127",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,76,79,82,93,86,94,126,83,63,102,69,66,108,62,66,58,73,62,53,114,57,61,53,74,128,89,88,140,81,81,138,85,83,59,50,65,72,77,85,80,71,76,74,70,100,93,78,95,93,73,75,85,52,86,65,84,90,61,63,62,68,101,100,95,100,63,54,82",
+ "endOffsets": "328,3076,3156,3239,3333,3420,4251,4378,4462,6960,7156,7551,7618,7727,7790,7857,7916,7990,8053,8107,8222,8280,8342,8396,8471,8600,8690,8779,8920,9002,9084,9223,9309,9393,9453,9504,9570,9643,9721,9807,9888,9960,10037,10112,10183,10284,10378,10457,10553,10647,10721,10797,10883,10936,11023,11089,11174,11265,11327,11391,11454,11523,11625,11726,11822,11923,11987,12042,12205"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-uz/values-uz.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,210,305,405,487,587,704,789,867,958,1051,1146,1240,1334,1427,1522,1617,1708,1800,1884,1994,2100,2200,2308,2414,2516,2677,2776",
+ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83",
+ "endOffsets": "205,300,400,482,582,699,784,862,953,1046,1141,1235,1329,1422,1517,1612,1703,1795,1879,1989,2095,2195,2303,2409,2511,2672,2771,2855"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "333,438,533,633,715,815,932,1017,1095,1186,1279,1374,1468,1562,1655,1750,1845,1936,2028,2112,2222,2328,2428,2536,2642,2744,2905,12355",
+ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83",
+ "endOffsets": "433,528,628,710,810,927,1012,1090,1181,1274,1369,1463,1557,1650,1745,1840,1931,2023,2107,2217,2323,2423,2531,2637,2739,2900,2999,12434"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-uz/values-uz.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,173,282,392",
+ "endColumns": "117,108,109,105",
+ "endOffsets": "168,277,387,493"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6783,7161,7270,7380",
+ "endColumns": "117,108,109,105",
+ "endOffsets": "6896,7265,7375,7481"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-uz/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "145",
+ "endOffsets": "340"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5464",
+ "endColumns": "149",
+ "endOffsets": "5609"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-uz/values-uz.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,157,259,360,460,568,672,791",
+ "endColumns": "101,101,100,99,107,103,118,100",
+ "endOffsets": "152,254,355,455,563,667,786,887"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3425,3527,3629,3730,3830,3938,4042,12439",
+ "endColumns": "101,101,100,99,107,103,118,100",
+ "endOffsets": "3522,3624,3725,3825,3933,4037,4156,12535"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-is_values-is.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-is/values-is.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,257,354,454,557,661,772",
+ "endColumns": "94,106,96,99,102,103,110,100",
+ "endOffsets": "145,252,349,449,552,656,767,868"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3381,3476,3583,3680,3780,3883,3987,12102",
+ "endColumns": "94,106,96,99,102,103,110,100",
+ "endOffsets": "3471,3578,3675,3775,3878,3982,4093,12198"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-is/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,445,566,671,808,929,1034,1135,1285,1387,1540,1662,1800,1950,2010,2069",
+ "endColumns": "101,149,120,104,136,120,104,100,149,101,152,121,137,149,59,58,74",
+ "endOffsets": "294,444,565,670,807,928,1033,1134,1284,1386,1539,1661,1799,1949,2009,2068,2143"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4392,4498,4652,4777,4886,5027,5152,5261,5495,5649,5755,5912,6038,6180,6334,6398,6461",
+ "endColumns": "105,153,124,108,140,124,108,104,153,105,156,125,141,153,63,62,78",
+ "endOffsets": "4493,4647,4772,4881,5022,5147,5256,5361,5644,5750,5907,6033,6175,6329,6393,6456,6535"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-is/values-is.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,270,344,416,495,577,657,754,869,951,1016,1104,1168,1229,1319,1383,1446,1508,1576,1640,1696,1819,1884,1946,2002,2073,2200,2284,2368,2504,2581,2658,2774,2861,2940,2997,3052,3118,3194,3274,3363,3439,3506,3580,3650,3716,3818,3904,3974,4065,4155,4229,4302,4391,4442,4523,4595,4676,4762,4824,4888,4951,5020,5134,5240,5348,5450,5511,5570",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,73,71,78,81,79,96,114,81,64,87,63,60,89,63,62,61,67,63,55,122,64,61,55,70,126,83,83,135,76,76,115,86,78,56,54,65,75,79,88,75,66,73,69,65,101,85,69,90,89,73,72,88,50,80,71,80,85,61,63,62,68,113,105,107,101,60,58,79",
+ "endOffsets": "265,339,411,490,572,652,749,864,946,1011,1099,1163,1224,1314,1378,1441,1503,1571,1635,1691,1814,1879,1941,1997,2068,2195,2279,2363,2499,2576,2653,2769,2856,2935,2992,3047,3113,3189,3269,3358,3434,3501,3575,3645,3711,3813,3899,3969,4060,4150,4224,4297,4386,4437,4518,4590,4671,4757,4819,4883,4946,5015,5129,5235,5343,5445,5506,5565,5645"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2994,3068,3140,3219,3301,4098,4195,4310,6714,6866,7262,7326,7387,7477,7541,7604,7666,7734,7798,7854,7977,8042,8104,8160,8231,8358,8442,8526,8662,8739,8816,8932,9019,9098,9155,9210,9276,9352,9432,9521,9597,9664,9738,9808,9874,9976,10062,10132,10223,10313,10387,10460,10549,10600,10681,10753,10834,10920,10982,11046,11109,11178,11292,11398,11506,11608,11669,11806",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,73,71,78,81,79,96,114,81,64,87,63,60,89,63,62,61,67,63,55,122,64,61,55,70,126,83,83,135,76,76,115,86,78,56,54,65,75,79,88,75,66,73,69,65,101,85,69,90,89,73,72,88,50,80,71,80,85,61,63,62,68,113,105,107,101,60,58,79",
+ "endOffsets": "315,3063,3135,3214,3296,3376,4190,4305,4387,6774,6949,7321,7382,7472,7536,7599,7661,7729,7793,7849,7972,8037,8099,8155,8226,8353,8437,8521,8657,8734,8811,8927,9014,9093,9150,9205,9271,9347,9427,9516,9592,9659,9733,9803,9869,9971,10057,10127,10218,10308,10382,10455,10544,10595,10676,10748,10829,10915,10977,11041,11104,11173,11287,11393,11501,11603,11664,11723,11881"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-is/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "124",
+ "endOffsets": "319"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5366",
+ "endColumns": "128",
+ "endOffsets": "5490"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-is/values-is.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,205,302,414,499,600,714,795,874,965,1058,1151,1245,1351,1444,1539,1634,1725,1819,1900,2010,2117,2214,2323,2423,2526,2681,2779",
+ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80",
+ "endOffsets": "200,297,409,494,595,709,790,869,960,1053,1146,1240,1346,1439,1534,1629,1720,1814,1895,2005,2112,2209,2318,2418,2521,2676,2774,2855"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "320,420,517,629,714,815,929,1010,1089,1180,1273,1366,1460,1566,1659,1754,1849,1940,2034,2115,2225,2332,2429,2538,2638,2741,2896,12021",
+ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80",
+ "endOffsets": "415,512,624,709,810,924,1005,1084,1175,1268,1361,1455,1561,1654,1749,1844,1935,2029,2110,2220,2327,2424,2533,2633,2736,2891,2989,12097"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-is/values-is.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,262,340,475,644,727",
+ "endColumns": "69,86,77,134,168,82,79",
+ "endOffsets": "170,257,335,470,639,722,802"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6540,6779,11728,11886,12203,12372,12455",
+ "endColumns": "69,86,77,134,168,82,79",
+ "endOffsets": "6605,6861,11801,12016,12367,12450,12530"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-is/values-is.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,159,260,366",
+ "endColumns": "103,100,105,100",
+ "endOffsets": "154,255,361,462"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6610,6954,7055,7161",
+ "endColumns": "103,100,105,100",
+ "endOffsets": "6709,7050,7156,7257"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-lv_values-lv.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-lv/values-lv.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,272,352,498,667,752",
+ "endColumns": "68,97,79,145,168,84,81",
+ "endOffsets": "169,267,347,493,662,747,829"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "7057,7294,12395,12552,12882,13051,13136",
+ "endColumns": "68,97,79,145,168,84,81",
+ "endOffsets": "7121,7387,12470,12693,13046,13131,13213"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-lv/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,453,582,686,824,951,1064,1166,1337,1442,1607,1738,1903,2054,2114,2178",
+ "endColumns": "102,156,128,103,137,126,112,101,170,104,164,130,164,150,59,63,84",
+ "endOffsets": "295,452,581,685,823,950,1063,1165,1336,1441,1606,1737,1902,2053,2113,2177,2262"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4753,4860,5021,5154,5262,5404,5535,5652,5924,6099,6208,6377,6512,6681,6836,6900,6968",
+ "endColumns": "106,160,132,107,141,130,116,105,174,108,168,134,168,154,63,67,88",
+ "endOffsets": "4855,5016,5149,5257,5399,5530,5647,5753,6094,6203,6372,6507,6676,6831,6895,6963,7052"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-lv/values-lv.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,355,456,563,671,786",
+ "endColumns": "97,101,99,100,106,107,114,100",
+ "endOffsets": "148,250,350,451,558,666,781,882"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3704,3802,3904,4004,4105,4212,4320,12781",
+ "endColumns": "97,101,99,100,106,107,114,100",
+ "endOffsets": "3797,3899,3999,4100,4207,4315,4430,12877"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-lv/values-lv.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,335,444,530,634,756,838,918,1028,1136,1242,1351,1462,1565,1677,1784,1889,1989,2074,2183,2294,2393,2504,2611,2716,2890,2989",
+ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82",
+ "endOffsets": "220,330,439,525,629,751,833,913,1023,1131,1237,1346,1457,1560,1672,1779,1884,1984,2069,2178,2289,2388,2499,2606,2711,2885,2984,3067"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "374,494,604,713,799,903,1025,1107,1187,1297,1405,1511,1620,1731,1834,1946,2053,2158,2258,2343,2452,2563,2662,2773,2880,2985,3159,12698",
+ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82",
+ "endOffsets": "489,599,708,794,898,1020,1102,1182,1292,1400,1506,1615,1726,1829,1941,2048,2153,2253,2338,2447,2558,2657,2768,2875,2980,3154,3253,12776"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-lv/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "161",
+ "endOffsets": "356"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5758",
+ "endColumns": "165",
+ "endOffsets": "5919"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-lv/values-lv.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,158,257,373",
+ "endColumns": "102,98,115,101",
+ "endOffsets": "153,252,368,470"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7126,7486,7585,7701",
+ "endColumns": "102,98,115,101",
+ "endOffsets": "7224,7580,7696,7798"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-lv/values-lv.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,324,411,496,577,682,770,871,1005,1088,1153,1247,1320,1381,1506,1572,1640,1701,1773,1833,1887,2007,2067,2129,2183,2260,2390,2477,2559,2700,2780,2865,2992,3083,3159,3213,3266,3332,3406,3487,3571,3651,3724,3801,3878,3952,4062,4155,4230,4320,4411,4483,4561,4652,4706,4789,4857,4941,5028,5090,5154,5217,5289,5399,5512,5615,5724,5782,5839",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,86,84,80,104,87,100,133,82,64,93,72,60,124,65,67,60,71,59,53,119,59,61,53,76,129,86,81,140,79,84,126,90,75,53,52,65,73,80,83,79,72,76,76,73,109,92,74,89,90,71,77,90,53,82,67,83,86,61,63,62,71,109,112,102,108,57,56,76",
+ "endOffsets": "319,406,491,572,677,765,866,1000,1083,1148,1242,1315,1376,1501,1567,1635,1696,1768,1828,1882,2002,2062,2124,2178,2255,2385,2472,2554,2695,2775,2860,2987,3078,3154,3208,3261,3327,3401,3482,3566,3646,3719,3796,3873,3947,4057,4150,4225,4315,4406,4478,4556,4647,4701,4784,4852,4936,5023,5085,5149,5212,5284,5394,5507,5610,5719,5777,5834,5911"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3258,3345,3430,3511,3616,4435,4536,4670,7229,7392,7803,7876,7937,8062,8128,8196,8257,8329,8389,8443,8563,8623,8685,8739,8816,8946,9033,9115,9256,9336,9421,9548,9639,9715,9769,9822,9888,9962,10043,10127,10207,10280,10357,10434,10508,10618,10711,10786,10876,10967,11039,11117,11208,11262,11345,11413,11497,11584,11646,11710,11773,11845,11955,12068,12171,12280,12338,12475",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,86,84,80,104,87,100,133,82,64,93,72,60,124,65,67,60,71,59,53,119,59,61,53,76,129,86,81,140,79,84,126,90,75,53,52,65,73,80,83,79,72,76,76,73,109,92,74,89,90,71,77,90,53,82,67,83,86,61,63,62,71,109,112,102,108,57,56,76",
+ "endOffsets": "369,3340,3425,3506,3611,3699,4531,4665,4748,7289,7481,7871,7932,8057,8123,8191,8252,8324,8384,8438,8558,8618,8680,8734,8811,8941,9028,9110,9251,9331,9416,9543,9634,9710,9764,9817,9883,9957,10038,10122,10202,10275,10352,10429,10503,10613,10706,10781,10871,10962,11034,11112,11203,11257,11340,11408,11492,11579,11641,11705,11768,11840,11950,12063,12166,12275,12333,12390,12547"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-h480dp-land-v13/values-h480dp-land-v13.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,114,170,226,293,358,413,478,547",
+ "endColumns": "58,55,55,66,64,54,64,68,68",
+ "endOffsets": "109,165,221,288,353,408,473,542,611"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v31_values-v31.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-v31/values-v31.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,277,342,408",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,149,243,336,430,524,618,712,806,900,994,1088,1181,1274,1376,1478,1579,1681,1783,1885,1987,2089,2191,2293,2395,2496,2597,2690,2783,2875,2968,3061,3154,3247,3340,3433,3526,3619,3711,3803,3898,3993,4087,4182,4277,4372,4467,4562,4657,4752,4847,4941,5035,5129,5223,5316,5410,5504,5598,5692,5786,5880,5974,6068,6161,6254,6364,6475,6583,6691,6797,6900,7013,7120,7237,7340,7459,7564,7679,7787,7903,8003,8113,8217,8331,8438,8553,8671,8794,8920,9042,9166,9277,9393,9495,9607,9719,9831,9940,10049,10156,10261,10375,10484,10602,10706,10826,10933,11049,11158,11275,11376,11487,11592,11707,11816,11932,12051,12175,12302,12425,12552,12665,12782,12885,12998,13102,13214,13322,13438,13544,13658,13759,13864,13969,14078,14181,14288,14379,14490,14587,14704,14797,14910,15009,15128,15219,15312,15407,15500,15593,15686,15779,15872,15965,16058,16151,16244,16337,16444,16553,16664,16773,16882,16991,17100,17209,17318,17427,17536,17645,17754,17845,17938,18033,18126,18219,18312,18405,18498,18591,18684,18777,18870,18963,19058,19155,19254,19351,19448,19545,19642,19739,19836,19933,20030,20127,20224,20317,20412,20509,20604,20699,20794,20889,20984,21079,21174,21269,21364,21459,27071,32713,38445",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,276,341,407,473",
+ "endColumns": "93,93,92,93,93,93,93,93,93,93,93,92,92,101,101,100,101,101,101,101,101,101,101,101,100,100,92,92,91,92,92,92,92,92,92,92,92,91,91,94,94,93,94,94,94,94,94,94,94,94,93,93,93,93,92,93,93,93,93,93,93,93,93,92,92,109,110,107,107,105,102,112,106,116,102,118,104,114,107,115,99,109,103,113,106,114,117,122,125,121,123,110,115,101,111,111,111,108,108,106,104,113,108,117,103,119,106,115,108,116,100,110,104,114,108,115,118,123,126,122,126,112,116,102,112,103,111,107,115,105,113,100,104,104,108,102,106,90,110,96,116,92,112,98,118,90,92,94,92,92,92,92,92,92,92,92,92,92,106,108,110,108,108,108,108,108,108,108,108,108,108,90,92,94,92,92,92,92,92,92,92,92,92,92,94,96,98,96,96,96,96,96,96,96,96,96,96,92,94,96,94,94,94,94,94,94,94,94,94,94,10,10,10,10",
+ "endOffsets": "144,238,331,425,519,613,707,801,895,989,1083,1176,1269,1371,1473,1574,1676,1778,1880,1982,2084,2186,2288,2390,2491,2592,2685,2778,2870,2963,3056,3149,3242,3335,3428,3521,3614,3706,3798,3893,3988,4082,4177,4272,4367,4462,4557,4652,4747,4842,4936,5030,5124,5218,5311,5405,5499,5593,5687,5781,5875,5969,6063,6156,6249,6359,6470,6578,6686,6792,6895,7008,7115,7232,7335,7454,7559,7674,7782,7898,7998,8108,8212,8326,8433,8548,8666,8789,8915,9037,9161,9272,9388,9490,9602,9714,9826,9935,10044,10151,10256,10370,10479,10597,10701,10821,10928,11044,11153,11270,11371,11482,11587,11702,11811,11927,12046,12170,12297,12420,12547,12660,12777,12880,12993,13097,13209,13317,13433,13539,13653,13754,13859,13964,14073,14176,14283,14374,14485,14582,14699,14792,14905,15004,15123,15214,15307,15402,15495,15588,15681,15774,15867,15960,16053,16146,16239,16332,16439,16548,16659,16768,16877,16986,17095,17204,17313,17422,17531,17640,17749,17840,17933,18028,18121,18214,18307,18400,18493,18586,18679,18772,18865,18958,19053,19150,19249,19346,19443,19540,19637,19734,19831,19928,20025,20122,20219,20312,20407,20504,20599,20694,20789,20884,20979,21074,21169,21264,21359,21454,27066,32708,38440,44202"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-nl_values-nl.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-nl/values-nl.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,269,355,437,514,612,706,803,925,1006,1070,1159,1238,1301,1394,1456,1522,1580,1653,1717,1773,1895,1952,2014,2070,2146,2280,2365,2451,2589,2670,2749,2873,2963,3040,3097,3148,3214,3292,3375,3463,3539,3614,3693,3766,3837,3946,4040,4118,4207,4297,4371,4452,4539,4592,4671,4738,4819,4903,4965,5029,5092,5163,5271,5383,5485,5596,5657,5712",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,85,81,76,97,93,96,121,80,63,88,78,62,92,61,65,57,72,63,55,121,56,61,55,75,133,84,85,137,80,78,123,89,76,56,50,65,77,82,87,75,74,78,72,70,108,93,77,88,89,73,80,86,52,78,66,80,83,61,63,62,70,107,111,101,110,60,54,80",
+ "endOffsets": "264,350,432,509,607,701,798,920,1001,1065,1154,1233,1296,1389,1451,1517,1575,1648,1712,1768,1890,1947,2009,2065,2141,2275,2360,2446,2584,2665,2744,2868,2958,3035,3092,3143,3209,3287,3370,3458,3534,3609,3688,3761,3832,3941,4035,4113,4202,4292,4366,4447,4534,4587,4666,4733,4814,4898,4960,5024,5087,5158,5266,5378,5480,5591,5652,5707,5788"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3041,3127,3209,3286,3384,4212,4309,4431,6985,7139,7539,7618,7681,7774,7836,7902,7960,8033,8097,8153,8275,8332,8394,8450,8526,8660,8745,8831,8969,9050,9129,9253,9343,9420,9477,9528,9594,9672,9755,9843,9919,9994,10073,10146,10217,10326,10420,10498,10587,10677,10751,10832,10919,10972,11051,11118,11199,11283,11345,11409,11472,11543,11651,11763,11865,11976,12037,12173",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,85,81,76,97,93,96,121,80,63,88,78,62,92,61,65,57,72,63,55,121,56,61,55,75,133,84,85,137,80,78,123,89,76,56,50,65,77,82,87,75,74,78,72,70,108,93,77,88,89,73,80,86,52,78,66,80,83,61,63,62,70,107,111,101,110,60,54,80",
+ "endOffsets": "314,3122,3204,3281,3379,3473,4304,4426,4507,7044,7223,7613,7676,7769,7831,7897,7955,8028,8092,8148,8270,8327,8389,8445,8521,8655,8740,8826,8964,9045,9124,9248,9338,9415,9472,9523,9589,9667,9750,9838,9914,9989,10068,10141,10212,10321,10415,10493,10582,10672,10746,10827,10914,10967,11046,11113,11194,11278,11340,11404,11467,11538,11646,11758,11860,11971,12032,12087,12249"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-nl/values-nl.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,158,259,370",
+ "endColumns": "102,100,110,98",
+ "endOffsets": "153,254,365,464"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6882,7228,7329,7440",
+ "endColumns": "102,100,110,98",
+ "endOffsets": "6980,7324,7435,7534"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-nl/values-nl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,267,348,494,663,743",
+ "endColumns": "71,89,80,145,168,79,76",
+ "endOffsets": "172,262,343,489,658,738,815"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6810,7049,12092,12254,12584,12753,12833",
+ "endColumns": "71,89,80,145,168,79,76",
+ "endOffsets": "6877,7134,12168,12395,12748,12828,12905"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-nl/values-nl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,223,328,435,520,624,744,822,898,990,1084,1179,1273,1373,1467,1563,1658,1750,1842,1924,2035,2138,2237,2352,2466,2569,2724,2827",
+ "endColumns": "117,104,106,84,103,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82",
+ "endOffsets": "218,323,430,515,619,739,817,893,985,1079,1174,1268,1368,1462,1558,1653,1745,1837,1919,2030,2133,2232,2347,2461,2564,2719,2822,2905"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "319,437,542,649,734,838,958,1036,1112,1204,1298,1393,1487,1587,1681,1777,1872,1964,2056,2138,2249,2352,2451,2566,2680,2783,2938,12400",
+ "endColumns": "117,104,106,84,103,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82",
+ "endOffsets": "432,537,644,729,833,953,1031,1107,1199,1293,1388,1482,1582,1676,1772,1867,1959,2051,2133,2244,2347,2446,2561,2675,2778,2933,3036,12478"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-nl/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,444,568,675,838,961,1080,1182,1356,1458,1623,1745,1904,2082,2146,2205",
+ "endColumns": "103,146,123,106,162,122,118,101,173,101,164,121,158,177,63,58,74",
+ "endOffsets": "296,443,567,674,837,960,1079,1181,1355,1457,1622,1744,1903,2081,2145,2204,2279"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4512,4620,4771,4899,5010,5177,5304,5427,5676,5854,5960,6129,6255,6418,6600,6668,6731",
+ "endColumns": "107,150,127,110,166,126,122,105,177,105,168,125,162,181,67,62,78",
+ "endOffsets": "4615,4766,4894,5005,5172,5299,5422,5528,5849,5955,6124,6250,6413,6595,6663,6726,6805"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-nl/values-nl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,157,259,359,459,566,670,789",
+ "endColumns": "101,101,99,99,106,103,118,100",
+ "endOffsets": "152,254,354,454,561,665,784,885"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3478,3580,3682,3782,3882,3989,4093,12483",
+ "endColumns": "101,101,99,99,106,103,118,100",
+ "endOffsets": "3575,3677,3777,3877,3984,4088,4207,12579"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-nl/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "138",
+ "endOffsets": "333"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5533",
+ "endColumns": "142",
+ "endOffsets": "5671"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-large-v4_values-large-v4.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-large-v4/values-large-v4.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,114,185,256,326,396,464,532,636",
+ "endColumns": "58,70,70,69,69,67,67,103,115",
+ "endOffsets": "109,180,251,321,391,459,527,631,747"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-large-v4/values-large-v4.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,169,285,407",
+ "endColumns": "113,115,121,133",
+ "endOffsets": "164,280,402,536"
+ },
+ "to": {
+ "startLines": "11,12,13,14",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "752,866,982,1104",
+ "endColumns": "113,115,121,133",
+ "endOffsets": "861,977,1099,1233"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ur_values-ur.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ur/values-ur.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,357,461,564,662,776",
+ "endColumns": "97,101,101,103,102,97,113,100",
+ "endOffsets": "148,250,352,456,559,657,771,872"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3457,3555,3657,3759,3863,3966,4064,12317",
+ "endColumns": "97,101,101,103,102,97,113,100",
+ "endOffsets": "3550,3652,3754,3858,3961,4059,4173,12413"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ur/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,457,579,686,822,945,1053,1153,1301,1407,1575,1699,1841,2006,2065,2128",
+ "endColumns": "103,159,121,106,135,122,107,99,147,105,167,123,141,164,58,62,83",
+ "endOffsets": "296,456,578,685,821,944,1052,1152,1300,1406,1574,1698,1840,2005,2064,2127,2211"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4480,4588,4752,4878,4989,5129,5256,5368,5624,5776,5886,6058,6186,6332,6501,6564,6631",
+ "endColumns": "107,163,125,110,139,126,111,103,151,109,171,127,145,168,62,66,87",
+ "endOffsets": "4583,4747,4873,4984,5124,5251,5363,5467,5771,5881,6053,6181,6327,6496,6559,6626,6714"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ur/values-ur.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,266,344,483,652,734",
+ "endColumns": "72,87,77,138,168,81,75",
+ "endOffsets": "173,261,339,478,647,729,805"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6719,6958,11934,12092,12418,12587,12669",
+ "endColumns": "72,87,77,138,168,81,75",
+ "endOffsets": "6787,7041,12007,12226,12582,12664,12740"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ur/values-ur.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,156,257,368",
+ "endColumns": "100,100,110,106",
+ "endOffsets": "151,252,363,470"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6792,7139,7240,7351",
+ "endColumns": "100,100,110,106",
+ "endOffsets": "6888,7235,7346,7453"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ur/values-ur.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,219,325,434,520,624,744,821,896,988,1082,1177,1271,1372,1466,1562,1656,1748,1840,1925,2033,2139,2241,2352,2453,2569,2734,2832",
+ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85",
+ "endOffsets": "214,320,429,515,619,739,816,891,983,1077,1172,1266,1367,1461,1557,1651,1743,1835,1920,2028,2134,2236,2347,2448,2564,2729,2827,2913"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "309,423,529,638,724,828,948,1025,1100,1192,1286,1381,1475,1576,1670,1766,1860,1952,2044,2129,2237,2343,2445,2556,2657,2773,2938,12231",
+ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85",
+ "endOffsets": "418,524,633,719,823,943,1020,1095,1187,1281,1376,1470,1571,1665,1761,1855,1947,2039,2124,2232,2338,2440,2551,2652,2768,2933,3031,12312"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ur/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "147",
+ "endOffsets": "342"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5472",
+ "endColumns": "151",
+ "endOffsets": "5619"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ur/values-ur.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,259,337,415,493,591,680,780,899,982,1047,1140,1210,1269,1359,1423,1492,1550,1619,1679,1743,1855,1914,1973,2028,2103,2226,2306,2390,2523,2605,2686,2817,2904,2986,3044,3100,3166,3241,3321,3406,3485,3552,3627,3704,3768,3875,3969,4039,4128,4221,4295,4370,4460,4516,4595,4662,4746,4830,4892,4956,5019,5085,5185,5292,5386,5494,5556,5616",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,77,77,97,88,99,118,82,64,92,69,58,89,63,68,57,68,59,63,111,58,58,54,74,122,79,83,132,81,80,130,86,81,57,55,65,74,79,84,78,66,74,76,63,106,93,69,88,92,73,74,89,55,78,66,83,83,61,63,62,65,99,106,93,107,61,59,79",
+ "endOffsets": "254,332,410,488,586,675,775,894,977,1042,1135,1205,1264,1354,1418,1487,1545,1614,1674,1738,1850,1909,1968,2023,2098,2221,2301,2385,2518,2600,2681,2812,2899,2981,3039,3095,3161,3236,3316,3401,3480,3547,3622,3699,3763,3870,3964,4034,4123,4216,4290,4365,4455,4511,4590,4657,4741,4825,4887,4951,5014,5080,5180,5287,5381,5489,5551,5611,5691"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3036,3114,3192,3270,3368,4178,4278,4397,6893,7046,7458,7528,7587,7677,7741,7810,7868,7937,7997,8061,8173,8232,8291,8346,8421,8544,8624,8708,8841,8923,9004,9135,9222,9304,9362,9418,9484,9559,9639,9724,9803,9870,9945,10022,10086,10193,10287,10357,10446,10539,10613,10688,10778,10834,10913,10980,11064,11148,11210,11274,11337,11403,11503,11610,11704,11812,11874,12012",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,77,77,97,88,99,118,82,64,92,69,58,89,63,68,57,68,59,63,111,58,58,54,74,122,79,83,132,81,80,130,86,81,57,55,65,74,79,84,78,66,74,76,63,106,93,69,88,92,73,74,89,55,78,66,83,83,61,63,62,65,99,106,93,107,61,59,79",
+ "endOffsets": "304,3109,3187,3265,3363,3452,4273,4392,4475,6953,7134,7523,7582,7672,7736,7805,7863,7932,7992,8056,8168,8227,8286,8341,8416,8539,8619,8703,8836,8918,8999,9130,9217,9299,9357,9413,9479,9554,9634,9719,9798,9865,9940,10017,10081,10188,10282,10352,10441,10534,10608,10683,10773,10829,10908,10975,11059,11143,11205,11269,11332,11398,11498,11605,11699,11807,11869,11929,12087"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-my_values-my.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-my/values-my.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,218,325,441,528,637,760,839,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1854,1939,2054,2163,2262,2388,2495,2603,2763,2866",
+ "endColumns": "112,106,115,86,108,122,78,77,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85",
+ "endOffsets": "213,320,436,523,632,755,834,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1849,1934,2049,2158,2257,2383,2490,2598,2758,2861,2947"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "335,448,555,671,758,867,990,1069,1147,1238,1331,1426,1520,1620,1713,1808,1902,1993,2084,2169,2284,2393,2492,2618,2725,2833,2993,12569",
+ "endColumns": "112,106,115,86,108,122,78,77,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85",
+ "endOffsets": "443,550,666,753,862,985,1064,1142,1233,1326,1421,1515,1615,1708,1803,1897,1988,2079,2164,2279,2388,2487,2613,2720,2828,2988,3091,12650"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-my/values-my.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,164,270,385",
+ "endColumns": "108,105,114,106",
+ "endOffsets": "159,265,380,487"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7039,7392,7498,7613",
+ "endColumns": "108,105,114,106",
+ "endOffsets": "7143,7493,7608,7715"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-my/values-my.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,262,365,467,572,678,797",
+ "endColumns": "102,103,102,101,104,105,118,100",
+ "endOffsets": "153,257,360,462,567,673,792,893"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3547,3650,3754,3857,3959,4064,4170,12655",
+ "endColumns": "102,103,102,101,104,105,118,100",
+ "endOffsets": "3645,3749,3852,3954,4059,4165,4284,12751"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-my/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "149",
+ "endOffsets": "344"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5637",
+ "endColumns": "153",
+ "endOffsets": "5786"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-my/values-my.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,181,270,350,502,671,752",
+ "endColumns": "75,88,79,151,168,80,78",
+ "endOffsets": "176,265,345,497,666,747,826"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6963,7213,12255,12417,12756,12925,13006",
+ "endColumns": "75,88,79,151,168,80,78",
+ "endOffsets": "7034,7297,12330,12564,12920,13001,13080"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-my/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,456,586,693,836,964,1083,1189,1361,1463,1629,1768,1922,2105,2171,2240",
+ "endColumns": "102,159,129,106,142,127,118,105,171,101,165,138,153,182,65,68,84",
+ "endOffsets": "295,455,585,692,835,963,1082,1188,1360,1462,1628,1767,1921,2104,2170,2239,2324"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4609,4716,4880,5014,5125,5272,5404,5527,5791,5967,6073,6243,6386,6544,6731,6801,6874",
+ "endColumns": "106,163,133,110,146,131,122,109,175,105,169,142,157,186,69,72,88",
+ "endOffsets": "4711,4875,5009,5120,5267,5399,5522,5632,5962,6068,6238,6381,6539,6726,6796,6869,6958"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-my/values-my.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,285,386,485,561,652,736,842,971,1056,1121,1211,1286,1345,1436,1499,1564,1623,1694,1756,1813,1932,1990,2051,2106,2179,2311,2402,2491,2632,2710,2787,2910,3002,3079,3137,3188,3254,3326,3408,3490,3568,3643,3717,3789,3868,3976,4073,4154,4240,4332,4406,4485,4571,4625,4701,4769,4852,4933,4995,5059,5122,5190,5302,5413,5517,5630,5691,5746",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,100,98,75,90,83,105,128,84,64,89,74,58,90,62,64,58,70,61,56,118,57,60,54,72,131,90,88,140,77,76,122,91,76,57,50,65,71,81,81,77,74,73,71,78,107,96,80,85,91,73,78,85,53,75,67,82,80,61,63,62,67,111,110,103,112,60,54,81",
+ "endOffsets": "280,381,480,556,647,731,837,966,1051,1116,1206,1281,1340,1431,1494,1559,1618,1689,1751,1808,1927,1985,2046,2101,2174,2306,2397,2486,2627,2705,2782,2905,2997,3074,3132,3183,3249,3321,3403,3485,3563,3638,3712,3784,3863,3971,4068,4149,4235,4327,4401,4480,4566,4620,4696,4764,4847,4928,4990,5054,5117,5185,5297,5408,5512,5625,5686,5741,5823"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3096,3197,3296,3372,3463,4289,4395,4524,7148,7302,7720,7795,7854,7945,8008,8073,8132,8203,8265,8322,8441,8499,8560,8615,8688,8820,8911,9000,9141,9219,9296,9419,9511,9588,9646,9697,9763,9835,9917,9999,10077,10152,10226,10298,10377,10485,10582,10663,10749,10841,10915,10994,11080,11134,11210,11278,11361,11442,11504,11568,11631,11699,11811,11922,12026,12139,12200,12335",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,100,98,75,90,83,105,128,84,64,89,74,58,90,62,64,58,70,61,56,118,57,60,54,72,131,90,88,140,77,76,122,91,76,57,50,65,71,81,81,77,74,73,71,78,107,96,80,85,91,73,78,85,53,75,67,82,80,61,63,62,67,111,110,103,112,60,54,81",
+ "endOffsets": "330,3192,3291,3367,3458,3542,4390,4519,4604,7208,7387,7790,7849,7940,8003,8068,8127,8198,8260,8317,8436,8494,8555,8610,8683,8815,8906,8995,9136,9214,9291,9414,9506,9583,9641,9692,9758,9830,9912,9994,10072,10147,10221,10293,10372,10480,10577,10658,10744,10836,10910,10989,11075,11129,11205,11273,11356,11437,11499,11563,11626,11694,11806,11917,12021,12134,12195,12250,12412"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ar_values-ar.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ar/values-ar.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,172,265,351,484,653,735",
+ "endColumns": "66,92,85,132,168,81,79",
+ "endOffsets": "167,260,346,479,648,730,810"
+ },
+ "to": {
+ "startLines": "70,73,135,137,140,141,142",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6687,6917,11925,12091,12407,12576,12658",
+ "endColumns": "66,92,85,132,168,81,79",
+ "endOffsets": "6749,7005,12006,12219,12571,12653,12733"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ar/values-ar.xml",
+ "from": {
+ "startLines": "2,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,465,543,619,703,795,878,979,1098,1175,1238,1329,1398,1465,1565,1628,1693,1754,1822,1884,1942,2056,2116,2177,2234,2307,2430,2511,2591,2739,2820,2901,3029,3118,3194,3247,3301,3367,3445,3525,3609,3691,3763,3837,3910,3980,4089,4180,4251,4341,4436,4510,4593,4686,4735,4816,4885,4971,5056,5118,5182,5245,5314,5423,5533,5630,5730,5787,5845",
+ "endLines": "9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77",
+ "endColumns": "12,77,75,83,91,82,100,118,76,62,90,68,66,99,62,64,60,67,61,57,113,59,60,56,72,122,80,79,147,80,80,127,88,75,52,53,65,77,79,83,81,71,73,72,69,108,90,70,89,94,73,82,92,48,80,68,85,84,61,63,62,68,108,109,96,99,56,57,79",
+ "endOffsets": "460,538,614,698,790,873,974,1093,1170,1233,1324,1393,1460,1560,1623,1688,1749,1817,1879,1937,2051,2111,2172,2229,2302,2425,2506,2586,2734,2815,2896,3024,3113,3189,3242,3296,3362,3440,3520,3604,3686,3758,3832,3905,3975,4084,4175,4246,4336,4431,4505,4588,4681,4730,4811,4880,4966,5051,5113,5177,5240,5309,5418,5528,5625,5725,5782,5840,5920"
+ },
+ "to": {
+ "startLines": "2,37,38,39,40,41,49,50,51,72,74,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3169,3247,3323,3407,3499,4294,4395,4514,6854,7010,7409,7478,7545,7645,7708,7773,7834,7902,7964,8022,8136,8196,8257,8314,8387,8510,8591,8671,8819,8900,8981,9109,9198,9274,9327,9381,9447,9525,9605,9689,9771,9843,9917,9990,10060,10169,10260,10331,10421,10516,10590,10673,10766,10815,10896,10965,11051,11136,11198,11262,11325,11394,11503,11613,11710,11810,11867,12011",
+ "endLines": "9,37,38,39,40,41,49,50,51,72,74,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136",
+ "endColumns": "12,77,75,83,91,82,100,118,76,62,90,68,66,99,62,64,60,67,61,57,113,59,60,56,72,122,80,79,147,80,80,127,88,75,52,53,65,77,79,83,81,71,73,72,69,108,90,70,89,94,73,82,92,48,80,68,85,84,61,63,62,68,108,109,96,99,56,57,79",
+ "endOffsets": "510,3242,3318,3402,3494,3577,4390,4509,4586,6912,7096,7473,7540,7640,7703,7768,7829,7897,7959,8017,8131,8191,8252,8309,8382,8505,8586,8666,8814,8895,8976,9104,9193,9269,9322,9376,9442,9520,9600,9684,9766,9838,9912,9985,10055,10164,10255,10326,10416,10511,10585,10668,10761,10810,10891,10960,11046,11131,11193,11257,11320,11389,11498,11608,11705,11805,11862,11920,12086"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ar/values-ar.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,317,424,506,607,721,801,880,971,1064,1156,1250,1350,1443,1538,1631,1722,1816,1895,2000,2098,2196,2304,2404,2507,2662,2759",
+ "endColumns": "107,103,106,81,100,113,79,78,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81",
+ "endOffsets": "208,312,419,501,602,716,796,875,966,1059,1151,1245,1345,1438,1533,1626,1717,1811,1890,1995,2093,2191,2299,2399,2502,2657,2754,2836"
+ },
+ "to": {
+ "startLines": "10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,138",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "515,623,727,834,916,1017,1131,1211,1290,1381,1474,1566,1660,1760,1853,1948,2041,2132,2226,2305,2410,2508,2606,2714,2814,2917,3072,12224",
+ "endColumns": "107,103,106,81,100,113,79,78,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81",
+ "endOffsets": "618,722,829,911,1012,1126,1206,1285,1376,1469,1561,1655,1755,1848,1943,2036,2127,2221,2300,2405,2503,2601,2709,2809,2912,3067,3164,12301"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ar/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,293,433,551,652,786,910,1017,1115,1248,1348,1494,1612,1747,1889,1949,2011",
+ "endColumns": "99,139,117,100,133,123,106,97,132,99,145,117,134,141,59,61,79",
+ "endOffsets": "292,432,550,651,785,909,1016,1114,1247,1347,1493,1611,1746,1888,1948,2010,2090"
+ },
+ "to": {
+ "startLines": "52,53,54,55,56,57,58,59,61,62,63,64,65,66,67,68,69",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4591,4695,4839,4961,5066,5204,5332,5443,5675,5812,5916,6066,6188,6327,6473,6537,6603",
+ "endColumns": "103,143,121,104,137,127,110,101,136,103,149,121,138,145,63,65,83",
+ "endOffsets": "4690,4834,4956,5061,5199,5327,5438,5540,5807,5911,6061,6183,6322,6468,6532,6598,6682"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ar/values-ar.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,253,361",
+ "endColumns": "99,97,107,101",
+ "endOffsets": "150,248,356,458"
+ },
+ "to": {
+ "startLines": "71,75,76,77",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6754,7101,7199,7307",
+ "endColumns": "99,97,107,101",
+ "endOffsets": "6849,7194,7302,7404"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ar/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "125",
+ "endOffsets": "320"
+ },
+ "to": {
+ "startLines": "60",
+ "startColumns": "4",
+ "startOffsets": "5545",
+ "endColumns": "129",
+ "endOffsets": "5670"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ar/values-ar.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,148,250,345,448,551,653,767",
+ "endColumns": "92,101,94,102,102,101,113,100",
+ "endOffsets": "143,245,340,443,546,648,762,863"
+ },
+ "to": {
+ "startLines": "42,43,44,45,46,47,48,139",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3582,3675,3777,3872,3975,4078,4180,12306",
+ "endColumns": "92,101,94,102,102,101,113,100",
+ "endOffsets": "3670,3772,3867,3970,4073,4175,4289,12402"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-land_values-land.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-land/values-land.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,26,35,40",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,130,204,277,347,419,489,554,621,691,763,832,901,983,1073,1149,1217,1284,1362,1427,1494,1666,2235,2504",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,25,34,39,42",
+ "endColumns": "74,73,72,69,71,69,64,66,69,71,68,68,81,89,75,67,66,77,64,66,10,10,10,10",
+ "endOffsets": "125,199,272,342,414,484,549,616,686,758,827,896,978,1068,1144,1212,1279,1357,1422,1489,1661,2230,2499,2727"
+ },
+ "to": {
+ "startLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,29,38,43",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "264,339,413,486,556,628,698,763,830,900,972,1041,1110,1192,1282,1358,1426,1493,1571,1636,1703,1875,2444,2713",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,28,37,42,45",
+ "endColumns": "74,73,72,69,71,69,64,66,69,71,68,68,81,89,75,67,66,77,64,66,10,10,10,10",
+ "endOffsets": "334,408,481,551,623,693,758,825,895,967,1036,1105,1187,1277,1353,1421,1488,1566,1631,1698,1870,2439,2708,2936"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-land/values-land.xml",
+ "from": {
+ "startLines": "2,3,4",
+ "startColumns": "4,4,4",
+ "startOffsets": "55,125,196",
+ "endColumns": "69,70,67",
+ "endOffsets": "120,191,259"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-en-rGB_values-en-rGB.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-en-rGB/values-en-rGB.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,272,354,432,509,595,679,777,892,971,1036,1126,1193,1252,1342,1406,1470,1533,1602,1666,1720,1832,1890,1952,2006,2078,2200,2287,2368,2508,2585,2666,2793,2884,2961,3015,3066,3132,3202,3279,3366,3441,3512,3589,3658,3727,3834,3925,3997,4086,4175,4249,4321,4407,4457,4536,4602,4682,4766,4828,4892,4955,5024,5124,5219,5311,5403,5461,5516",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,81,77,76,85,83,97,114,78,64,89,66,58,89,63,63,62,68,63,53,111,57,61,53,71,121,86,80,139,76,80,126,90,76,53,50,65,69,76,86,74,70,76,68,68,106,90,71,88,88,73,71,85,49,78,65,79,83,61,63,62,68,99,94,91,91,57,54,77",
+ "endOffsets": "267,349,427,504,590,674,772,887,966,1031,1121,1188,1247,1337,1401,1465,1528,1597,1661,1715,1827,1885,1947,2001,2073,2195,2282,2363,2503,2580,2661,2788,2879,2956,3010,3061,3127,3197,3274,3361,3436,3507,3584,3653,3722,3829,3920,3992,4081,4170,4244,4316,4402,4452,4531,4597,4677,4761,4823,4887,4950,5019,5119,5214,5306,5398,5456,5511,5589"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2979,3061,3139,3216,3302,4105,4203,4318,6722,6874,7269,7336,7395,7485,7549,7613,7676,7745,7809,7863,7975,8033,8095,8149,8221,8343,8430,8511,8651,8728,8809,8936,9027,9104,9158,9209,9275,9345,9422,9509,9584,9655,9732,9801,9870,9977,10068,10140,10229,10318,10392,10464,10550,10600,10679,10745,10825,10909,10971,11035,11098,11167,11267,11362,11454,11546,11604,11733",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,81,77,76,85,83,97,114,78,64,89,66,58,89,63,63,62,68,63,53,111,57,61,53,71,121,86,80,139,76,80,126,90,76,53,50,65,69,76,86,74,70,76,68,68,106,90,71,88,88,73,71,85,49,78,65,79,83,61,63,62,68,99,94,91,91,57,54,77",
+ "endOffsets": "317,3056,3134,3211,3297,3381,4198,4313,4392,6782,6959,7331,7390,7480,7544,7608,7671,7740,7804,7858,7970,8028,8090,8144,8216,8338,8425,8506,8646,8723,8804,8931,9022,9099,9153,9204,9270,9340,9417,9504,9579,9650,9727,9796,9865,9972,10063,10135,10224,10313,10387,10459,10545,10595,10674,10740,10820,10904,10966,11030,11093,11162,11262,11357,11449,11541,11599,11654,11806"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-en-rGB/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "133",
+ "endOffsets": "332"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5379",
+ "endColumns": "137",
+ "endOffsets": "5512"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-en-rGB/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,298,446,567,670,817,936,1048,1147,1302,1403,1551,1672,1814,1958,2017,2075",
+ "endColumns": "100,147,120,102,146,118,111,98,154,100,147,120,141,143,58,57,74",
+ "endOffsets": "297,445,566,669,816,935,1047,1146,1301,1402,1550,1671,1813,1957,2016,2074,2149"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4397,4502,4654,4779,4886,5037,5160,5276,5517,5676,5781,5933,6058,6204,6352,6415,6477",
+ "endColumns": "104,151,124,106,150,122,115,102,158,104,151,124,145,147,62,61,78",
+ "endOffsets": "4497,4649,4774,4881,5032,5155,5271,5374,5671,5776,5928,6053,6199,6347,6410,6472,6551"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-en-rGB/values-en-rGB.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,173,260,334,468,637,717",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "168,255,329,463,632,712,788"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6556,6787,11659,11811,12129,12298,12378",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "6619,6869,11728,11940,12293,12373,12449"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-en-rGB/values-en-rGB.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,153,250,359",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "148,245,354,453"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6624,6964,7061,7170",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "6717,7056,7165,7264"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-en-rGB/values-en-rGB.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "322,426,526,634,718,818,933,1011,1086,1177,1270,1365,1459,1559,1652,1747,1841,1932,2023,2105,2208,2311,2410,2515,2619,2723,2879,11945",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "421,521,629,713,813,928,1006,1081,1172,1265,1360,1454,1554,1647,1742,1836,1927,2018,2100,2203,2306,2405,2510,2614,2718,2874,2974,12023"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-en-rGB/values-en-rGB.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,352,451,555,658,774",
+ "endColumns": "95,101,98,98,103,102,115,100",
+ "endOffsets": "146,248,347,446,550,653,769,870"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3386,3482,3584,3683,3782,3886,3989,12028",
+ "endColumns": "95,101,98,98,103,102,115,100",
+ "endOffsets": "3477,3579,3678,3777,3881,3984,4100,12124"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-h720dp-v13_values-h720dp-v13.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-h720dp-v13/values-h720dp-v13.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "66",
+ "endOffsets": "117"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-pt-rPT_values-pt-rPT.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-pt-rPT/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "140",
+ "endOffsets": "339"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5559",
+ "endColumns": "144",
+ "endOffsets": "5699"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-pt-rPT/values-pt-rPT.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,273,354,434,516,615,711,814,934,1015,1079,1171,1250,1315,1405,1469,1537,1599,1672,1736,1790,1916,1974,2036,2090,2166,2309,2396,2478,2617,2699,2781,2917,3004,3084,3140,3191,3257,3332,3412,3499,3578,3651,3728,3801,3875,3982,4075,4152,4245,4343,4417,4498,4597,4650,4734,4800,4889,4977,5039,5103,5166,5234,5350,5458,5565,5667,5727,5782",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,79,81,98,95,102,119,80,63,91,78,64,89,63,67,61,72,63,53,125,57,61,53,75,142,86,81,138,81,81,135,86,79,55,50,65,74,79,86,78,72,76,72,73,106,92,76,92,97,73,80,98,52,83,65,88,87,61,63,62,67,115,107,106,101,59,54,85",
+ "endOffsets": "268,349,429,511,610,706,809,929,1010,1074,1166,1245,1310,1400,1464,1532,1594,1667,1731,1785,1911,1969,2031,2085,2161,2304,2391,2473,2612,2694,2776,2912,2999,3079,3135,3186,3252,3327,3407,3494,3573,3646,3723,3796,3870,3977,4070,4147,4240,4338,4412,4493,4592,4645,4729,4795,4884,4972,5034,5098,5161,5229,5345,5453,5560,5662,5722,5777,5863"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3054,3135,3215,3297,3396,4224,4327,4447,7048,7200,7606,7685,7750,7840,7904,7972,8034,8107,8171,8225,8351,8409,8471,8525,8601,8744,8831,8913,9052,9134,9216,9352,9439,9519,9575,9626,9692,9767,9847,9934,10013,10086,10163,10236,10310,10417,10510,10587,10680,10778,10852,10933,11032,11085,11169,11235,11324,11412,11474,11538,11601,11669,11785,11893,12000,12102,12162,12296",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,79,81,98,95,102,119,80,63,91,78,64,89,63,67,61,72,63,53,125,57,61,53,75,142,86,81,138,81,81,135,86,79,55,50,65,74,79,86,78,72,76,72,73,106,92,76,92,97,73,80,98,52,83,65,88,87,61,63,62,67,115,107,106,101,59,54,85",
+ "endOffsets": "318,3130,3210,3292,3391,3487,4322,4442,4523,7107,7287,7680,7745,7835,7899,7967,8029,8102,8166,8220,8346,8404,8466,8520,8596,8739,8826,8908,9047,9129,9211,9347,9434,9514,9570,9621,9687,9762,9842,9929,10008,10081,10158,10231,10305,10412,10505,10582,10675,10773,10847,10928,11027,11080,11164,11230,11319,11407,11469,11533,11596,11664,11780,11888,11995,12097,12157,12212,12377"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-pt-rPT/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,298,457,581,685,849,973,1091,1196,1380,1484,1650,1777,1932,2106,2170,2235",
+ "endColumns": "100,158,123,103,163,123,117,104,183,103,165,126,154,173,63,64,82",
+ "endOffsets": "297,456,580,684,848,972,1090,1195,1379,1483,1649,1776,1931,2105,2169,2234,2317"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4528,4633,4796,4924,5032,5200,5328,5450,5704,5892,6000,6170,6301,6460,6638,6706,6775",
+ "endColumns": "104,162,127,107,167,127,121,108,187,107,169,130,158,177,67,68,86",
+ "endOffsets": "4628,4791,4919,5027,5195,5323,5445,5554,5887,5995,6165,6296,6455,6633,6701,6770,6857"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,319,426,515,616,734,819,899,991,1085,1182,1276,1375,1469,1565,1660,1752,1844,1929,2036,2147,2249,2357,2465,2572,2737,2836",
+ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85",
+ "endOffsets": "208,314,421,510,611,729,814,894,986,1080,1177,1271,1370,1464,1560,1655,1747,1839,1924,2031,2142,2244,2352,2460,2567,2732,2831,2917"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "323,431,537,644,733,834,952,1037,1117,1209,1303,1400,1494,1593,1687,1783,1878,1970,2062,2147,2254,2365,2467,2575,2683,2790,2955,12533",
+ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85",
+ "endOffsets": "426,532,639,728,829,947,1032,1112,1204,1298,1395,1489,1588,1682,1778,1873,1965,2057,2142,2249,2360,2462,2570,2678,2785,2950,3049,12614"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-pt-rPT/values-pt-rPT.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,171,270,382",
+ "endColumns": "115,98,111,102",
+ "endOffsets": "166,265,377,480"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6932,7292,7391,7503",
+ "endColumns": "115,98,111,102",
+ "endOffsets": "7043,7386,7498,7601"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-pt-rPT/values-pt-rPT.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,353,453,560,666,787",
+ "endColumns": "96,101,98,99,106,105,120,100",
+ "endOffsets": "147,249,348,448,555,661,782,883"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3492,3589,3691,3790,3890,3997,4103,12619",
+ "endColumns": "96,101,98,99,106,105,120,100",
+ "endOffsets": "3584,3686,3785,3885,3992,4098,4219,12715"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,263,342,493,662,749",
+ "endColumns": "69,87,78,150,168,86,80",
+ "endOffsets": "170,258,337,488,657,744,825"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6862,7112,12217,12382,12720,12889,12976",
+ "endColumns": "69,87,78,150,168,86,80",
+ "endOffsets": "6927,7195,12291,12528,12884,12971,13052"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v29_values-v29.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-v29/arrays.xml",
+ "from": {
+ "startLines": "2,7",
+ "startColumns": "4,4",
+ "startOffsets": "55,327",
+ "endLines": "6,11",
+ "endColumns": "19,19",
+ "endOffsets": "322,490"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-v29/colors.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "71",
+ "endOffsets": "122"
+ },
+ "to": {
+ "startLines": "12",
+ "startColumns": "4",
+ "startOffsets": "495",
+ "endColumns": "71",
+ "endOffsets": "562"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ml_values-ml.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ml/values-ml.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,164,267,378",
+ "endColumns": "108,102,110,103",
+ "endOffsets": "159,262,373,477"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6991,7353,7456,7567",
+ "endColumns": "108,102,110,103",
+ "endOffsets": "7095,7451,7562,7666"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ml/values-ml.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,271,351,434,521,627,726,820,930,1022,1087,1186,1252,1312,1414,1476,1552,1610,1688,1753,1807,1924,1988,2052,2106,2186,2320,2406,2495,2631,2716,2804,2956,3051,3134,3192,3244,3310,3389,3471,3562,3649,3725,3802,3879,3950,4060,4167,4247,4344,4444,4518,4599,4704,4762,4850,4917,5008,5100,5162,5226,5289,5358,5461,5568,5673,5778,5840,5896",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,79,82,86,105,98,93,109,91,64,98,65,59,101,61,75,57,77,64,53,116,63,63,53,79,133,85,88,135,84,87,151,94,82,57,51,65,78,81,90,86,75,76,76,70,109,106,79,96,99,73,80,104,57,87,66,90,91,61,63,62,68,102,106,104,104,61,55,83",
+ "endOffsets": "266,346,429,516,622,721,815,925,1017,1082,1181,1247,1307,1409,1471,1547,1605,1683,1748,1802,1919,1983,2047,2101,2181,2315,2401,2490,2626,2711,2799,2951,3046,3129,3187,3239,3305,3384,3466,3557,3644,3720,3797,3874,3945,4055,4162,4242,4339,4439,4513,4594,4699,4757,4845,4912,5003,5095,5157,5221,5284,5353,5456,5563,5668,5773,5835,5891,5975"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3070,3150,3233,3320,3426,4262,4356,4466,7100,7254,7671,7737,7797,7899,7961,8037,8095,8173,8238,8292,8409,8473,8537,8591,8671,8805,8891,8980,9116,9201,9289,9441,9536,9619,9677,9729,9795,9874,9956,10047,10134,10210,10287,10364,10435,10545,10652,10732,10829,10929,11003,11084,11189,11247,11335,11402,11493,11585,11647,11711,11774,11843,11946,12053,12158,12263,12325,12467",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,79,82,86,105,98,93,109,91,64,98,65,59,101,61,75,57,77,64,53,116,63,63,53,79,133,85,88,135,84,87,151,94,82,57,51,65,78,81,90,86,75,76,76,70,109,106,79,96,99,73,80,104,57,87,66,90,91,61,63,62,68,102,106,104,104,61,55,83",
+ "endOffsets": "316,3145,3228,3315,3421,3520,4351,4461,4553,7160,7348,7732,7792,7894,7956,8032,8090,8168,8233,8287,8404,8468,8532,8586,8666,8800,8886,8975,9111,9196,9284,9436,9531,9614,9672,9724,9790,9869,9951,10042,10129,10205,10282,10359,10430,10540,10647,10727,10824,10924,10998,11079,11184,11242,11330,11397,11488,11580,11642,11706,11769,11838,11941,12048,12153,12258,12320,12376,12546"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ml/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "155",
+ "endOffsets": "350"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5616",
+ "endColumns": "159",
+ "endOffsets": "5771"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ml/values-ml.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,318,429,520,625,747,825,900,991,1084,1185,1279,1379,1473,1568,1667,1758,1849,1931,2040,2144,2243,2355,2467,2588,2753,2854",
+ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82",
+ "endOffsets": "207,313,424,515,620,742,820,895,986,1079,1180,1274,1374,1468,1563,1662,1753,1844,1926,2035,2139,2238,2350,2462,2583,2748,2849,2932"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "321,428,534,645,736,841,963,1041,1116,1207,1300,1401,1495,1595,1689,1784,1883,1974,2065,2147,2256,2360,2459,2571,2683,2804,2969,12692",
+ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82",
+ "endOffsets": "423,529,640,731,836,958,1036,1111,1202,1295,1396,1490,1590,1684,1779,1878,1969,2060,2142,2251,2355,2454,2566,2678,2799,2964,3065,12770"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ml/values-ml.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,266,352,493,662,744",
+ "endColumns": "71,88,85,140,168,81,75",
+ "endOffsets": "172,261,347,488,657,739,815"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6919,7165,12381,12551,12876,13045,13127",
+ "endColumns": "71,88,85,140,168,81,75",
+ "endOffsets": "6986,7249,12462,12687,13040,13122,13198"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ml/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,308,483,618,735,895,1016,1117,1219,1397,1509,1679,1811,1956,2113,2173,2238",
+ "endColumns": "114,174,134,116,159,120,100,101,177,111,169,131,144,156,59,64,87",
+ "endOffsets": "307,482,617,734,894,1015,1116,1218,1396,1508,1678,1810,1955,2112,2172,2237,2325"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4558,4677,4856,4995,5116,5280,5405,5510,5776,5958,6074,6248,6384,6533,6694,6758,6827",
+ "endColumns": "118,178,138,120,163,124,104,105,181,115,173,135,148,160,63,68,91",
+ "endOffsets": "4672,4851,4990,5111,5275,5400,5505,5611,5953,6069,6243,6379,6528,6689,6753,6822,6914"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ml/values-ml.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,157,260,362,466,569,670,792",
+ "endColumns": "101,102,101,103,102,100,121,100",
+ "endOffsets": "152,255,357,461,564,665,787,888"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3525,3627,3730,3832,3936,4039,4140,12775",
+ "endColumns": "101,102,101,103,102,100,121,100",
+ "endOffsets": "3622,3725,3827,3931,4034,4135,4257,12871"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-be_values-be.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-be/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "141",
+ "endOffsets": "336"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5634",
+ "endColumns": "145",
+ "endOffsets": "5775"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-be/values-be.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,355,456,562,665,786",
+ "endColumns": "97,101,99,100,105,102,120,100",
+ "endOffsets": "148,250,350,451,557,660,781,882"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3587,3685,3787,3887,3988,4094,4197,12636",
+ "endColumns": "97,101,99,100,105,102,120,100",
+ "endOffsets": "3680,3782,3882,3983,4089,4192,4313,12732"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-be/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,454,575,681,832,954,1065,1165,1323,1426,1585,1709,1858,2013,2078,2136",
+ "endColumns": "102,157,120,105,150,121,110,99,157,102,158,123,148,154,64,57,74",
+ "endOffsets": "295,453,574,680,831,953,1064,1164,1322,1425,1584,1708,1857,2012,2077,2135,2210"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4630,4737,4899,5024,5134,5289,5415,5530,5780,5942,6049,6212,6340,6493,6652,6721,6783",
+ "endColumns": "106,161,124,109,154,125,114,103,161,106,162,127,152,158,68,61,78",
+ "endOffsets": "4732,4894,5019,5129,5284,5410,5525,5629,5937,6044,6207,6335,6488,6647,6716,6778,6857"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-be/values-be.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,164,272,384",
+ "endColumns": "108,107,111,106",
+ "endOffsets": "159,267,379,486"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6936,7300,7408,7520",
+ "endColumns": "108,107,111,106",
+ "endOffsets": "7040,7403,7515,7622"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-be/values-be.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,382,459,536,618,715,807,904,1036,1119,1186,1279,1356,1419,1535,1598,1667,1726,1797,1856,1910,2031,2092,2155,2209,2282,2404,2492,2575,2727,2813,2900,3033,3124,3207,3264,3315,3381,3453,3530,3614,3697,3772,3849,3931,4007,4115,4204,4286,4377,4473,4547,4628,4723,4777,4859,4925,5012,5098,5160,5224,5287,5356,5466,5579,5682,5789,5850,5905",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,76,76,81,96,91,96,131,82,66,92,76,62,115,62,68,58,70,58,53,120,60,62,53,72,121,87,82,151,85,86,132,90,82,56,50,65,71,76,83,82,74,76,81,75,107,88,81,90,95,73,80,94,53,81,65,86,85,61,63,62,68,109,112,102,106,60,54,79",
+ "endOffsets": "377,454,531,613,710,802,899,1031,1114,1181,1274,1351,1414,1530,1593,1662,1721,1792,1851,1905,2026,2087,2150,2204,2277,2399,2487,2570,2722,2808,2895,3028,3119,3202,3259,3310,3376,3448,3525,3609,3692,3767,3844,3926,4002,4110,4199,4281,4372,4468,4542,4623,4718,4772,4854,4920,5007,5093,5155,5219,5282,5351,5461,5574,5677,5784,5845,5900,5980"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3162,3239,3316,3398,3495,4318,4415,4547,7045,7207,7627,7704,7767,7883,7946,8015,8074,8145,8204,8258,8379,8440,8503,8557,8630,8752,8840,8923,9075,9161,9248,9381,9472,9555,9612,9663,9729,9801,9878,9962,10045,10120,10197,10279,10355,10463,10552,10634,10725,10821,10895,10976,11071,11125,11207,11273,11360,11446,11508,11572,11635,11704,11814,11927,12030,12137,12198,12332",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,76,76,81,96,91,96,131,82,66,92,76,62,115,62,68,58,70,58,53,120,60,62,53,72,121,87,82,151,85,86,132,90,82,56,50,65,71,76,83,82,74,76,81,75,107,88,81,90,95,73,80,94,53,81,65,86,85,61,63,62,68,109,112,102,106,60,54,79",
+ "endOffsets": "427,3234,3311,3393,3490,3582,4410,4542,4625,7107,7295,7699,7762,7878,7941,8010,8069,8140,8199,8253,8374,8435,8498,8552,8625,8747,8835,8918,9070,9156,9243,9376,9467,9550,9607,9658,9724,9796,9873,9957,10040,10115,10192,10274,10350,10458,10547,10629,10720,10816,10890,10971,11066,11120,11202,11268,11355,11441,11503,11567,11630,11699,11809,11922,12025,12132,12193,12248,12407"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-be/values-be.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,328,444,530,635,754,834,911,1003,1097,1192,1286,1381,1475,1571,1666,1758,1850,1931,2037,2142,2240,2348,2454,2562,2735,2835",
+ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81",
+ "endOffsets": "220,323,439,525,630,749,829,906,998,1092,1187,1281,1376,1470,1566,1661,1753,1845,1926,2032,2137,2235,2343,2449,2557,2730,2830,2912"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "432,552,655,771,857,962,1081,1161,1238,1330,1424,1519,1613,1708,1802,1898,1993,2085,2177,2258,2364,2469,2567,2675,2781,2889,3062,12554",
+ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81",
+ "endOffsets": "547,650,766,852,957,1076,1156,1233,1325,1419,1514,1608,1703,1797,1893,1988,2080,2172,2253,2359,2464,2562,2670,2776,2884,3057,3157,12631"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-be/values-be.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,179,274,353,495,664,746",
+ "endColumns": "73,94,78,141,168,81,77",
+ "endOffsets": "174,269,348,490,659,741,819"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6862,7112,12253,12412,12737,12906,12988",
+ "endColumns": "73,94,78,141,168,81,77",
+ "endOffsets": "6931,7202,12327,12549,12901,12983,13061"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-da_values-da.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-da/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,451,574,679,818,939,1055,1156,1308,1410,1568,1691,1832,2006,2068,2126",
+ "endColumns": "101,155,122,104,138,120,115,100,151,101,157,122,140,173,61,57,73",
+ "endOffsets": "294,450,573,678,817,938,1054,1155,1307,1409,1567,1690,1831,2005,2067,2125,2199"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4437,4543,4703,4830,4939,5082,5207,5327,5559,5715,5821,5983,6110,6255,6433,6499,6561",
+ "endColumns": "105,159,126,108,142,124,119,104,155,105,161,126,144,177,65,61,77",
+ "endOffsets": "4538,4698,4825,4934,5077,5202,5322,5427,5710,5816,5978,6105,6250,6428,6494,6556,6634"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-da/values-da.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,205,299,415,500,600,713,791,867,958,1051,1144,1238,1332,1425,1520,1618,1709,1800,1879,1987,2094,2190,2303,2406,2507,2660,2757",
+ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79",
+ "endOffsets": "200,294,410,495,595,708,786,862,953,1046,1139,1233,1327,1420,1515,1613,1704,1795,1874,1982,2089,2185,2298,2401,2502,2655,2752,2832"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "322,422,516,632,717,817,930,1008,1084,1175,1268,1361,1455,1549,1642,1737,1835,1926,2017,2096,2204,2311,2407,2520,2623,2724,2877,12097",
+ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79",
+ "endOffsets": "417,511,627,712,812,925,1003,1079,1170,1263,1356,1450,1544,1637,1732,1830,1921,2012,2091,2199,2306,2402,2515,2618,2719,2872,2969,12172"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-da/values-da.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,167,266,373",
+ "endColumns": "111,98,106,96",
+ "endOffsets": "162,261,368,465"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6709,7059,7158,7265",
+ "endColumns": "111,98,106,96",
+ "endOffsets": "6816,7153,7260,7357"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-da/values-da.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,350,448,555,664,782",
+ "endColumns": "95,101,96,97,106,108,117,100",
+ "endOffsets": "146,248,345,443,550,659,777,878"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3383,3479,3581,3678,3776,3883,3992,12177",
+ "endColumns": "95,101,96,97,106,108,117,100",
+ "endOffsets": "3474,3576,3673,3771,3878,3987,4105,12273"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-da/values-da.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,263,342,490,659,739",
+ "endColumns": "69,87,78,147,168,79,76",
+ "endOffsets": "170,258,337,485,654,734,811"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6639,6885,11790,11949,12278,12447,12527",
+ "endColumns": "69,87,78,147,168,79,76",
+ "endOffsets": "6704,6968,11864,12092,12442,12522,12599"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-da/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "122",
+ "endOffsets": "317"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5432",
+ "endColumns": "126",
+ "endOffsets": "5554"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-da/values-da.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,272,350,426,504,601,681,781,930,1008,1072,1158,1231,1291,1378,1442,1504,1566,1634,1699,1755,1873,1931,1992,2048,2123,2249,2335,2415,2556,2634,2714,2836,2922,3000,3056,3107,3173,3241,3315,3404,3479,3551,3629,3699,3772,3876,3960,4037,4125,4214,4288,4361,4446,4495,4573,4639,4719,4802,4864,4928,4991,5060,5168,5271,5372,5471,5531,5586",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,75,77,96,79,99,148,77,63,85,72,59,86,63,61,61,67,64,55,117,57,60,55,74,125,85,79,140,77,79,121,85,77,55,50,65,67,73,88,74,71,77,69,72,103,83,76,87,88,73,72,84,48,77,65,79,82,61,63,62,68,107,102,100,98,59,54,79",
+ "endOffsets": "267,345,421,499,596,676,776,925,1003,1067,1153,1226,1286,1373,1437,1499,1561,1629,1694,1750,1868,1926,1987,2043,2118,2244,2330,2410,2551,2629,2709,2831,2917,2995,3051,3102,3168,3236,3310,3399,3474,3546,3624,3694,3767,3871,3955,4032,4120,4209,4283,4356,4441,4490,4568,4634,4714,4797,4859,4923,4986,5055,5163,5266,5367,5466,5526,5581,5661"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2974,3052,3128,3206,3303,4110,4210,4359,6821,6973,7362,7435,7495,7582,7646,7708,7770,7838,7903,7959,8077,8135,8196,8252,8327,8453,8539,8619,8760,8838,8918,9040,9126,9204,9260,9311,9377,9445,9519,9608,9683,9755,9833,9903,9976,10080,10164,10241,10329,10418,10492,10565,10650,10699,10777,10843,10923,11006,11068,11132,11195,11264,11372,11475,11576,11675,11735,11869",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,75,77,96,79,99,148,77,63,85,72,59,86,63,61,61,67,64,55,117,57,60,55,74,125,85,79,140,77,79,121,85,77,55,50,65,67,73,88,74,71,77,69,72,103,83,76,87,88,73,72,84,48,77,65,79,82,61,63,62,68,107,102,100,98,59,54,79",
+ "endOffsets": "317,3047,3123,3201,3298,3378,4205,4354,4432,6880,7054,7430,7490,7577,7641,7703,7765,7833,7898,7954,8072,8130,8191,8247,8322,8448,8534,8614,8755,8833,8913,9035,9121,9199,9255,9306,9372,9440,9514,9603,9678,9750,9828,9898,9971,10075,10159,10236,10324,10413,10487,10560,10645,10694,10772,10838,10918,11001,11063,11127,11190,11259,11367,11470,11571,11670,11730,11785,11944"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ky_values-ky.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ky/values-ky.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,155,257,360,467,571,675,786",
+ "endColumns": "99,101,102,106,103,103,110,100",
+ "endOffsets": "150,252,355,462,566,670,781,882"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3505,3605,3707,3810,3917,4021,4125,12424",
+ "endColumns": "99,101,102,106,103,103,110,100",
+ "endOffsets": "3600,3702,3805,3912,4016,4120,4231,12520"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ky/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "153",
+ "endOffsets": "348"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5549",
+ "endColumns": "157",
+ "endOffsets": "5702"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ky/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,440,565,668,809,932,1043,1148,1313,1416,1562,1688,1821,1981,2041,2097",
+ "endColumns": "101,144,124,102,140,122,110,104,164,102,145,125,132,159,59,55,73",
+ "endOffsets": "294,439,564,667,808,931,1042,1147,1312,1415,1561,1687,1820,1980,2040,2096,2170"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4562,4668,4817,4946,5053,5198,5325,5440,5707,5876,5983,6133,6263,6400,6564,6628,6688",
+ "endColumns": "105,148,128,106,144,126,114,108,168,106,149,129,136,163,63,59,77",
+ "endOffsets": "4663,4812,4941,5048,5193,5320,5435,5544,5871,5978,6128,6258,6395,6559,6623,6683,6761"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ky/values-ky.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,348,433,518,633,743,844,985,1069,1133,1227,1297,1358,1445,1508,1572,1631,1705,1767,1821,1938,1996,2057,2111,2185,2307,2391,2487,2619,2697,2775,2904,2993,3073,3134,3189,3255,3324,3401,3488,3569,3643,3719,3809,3882,3984,4069,4148,4238,4330,4404,4489,4579,4631,4715,4780,4865,4950,5012,5076,5139,5208,5325,5433,5533,5637,5702,5761",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,82,84,84,114,109,100,140,83,63,93,69,60,86,62,63,58,73,61,53,116,57,60,53,73,121,83,95,131,77,77,128,88,79,60,54,65,68,76,86,80,73,75,89,72,101,84,78,89,91,73,84,89,51,83,64,84,84,61,63,62,68,116,107,99,103,64,58,81",
+ "endOffsets": "260,343,428,513,628,738,839,980,1064,1128,1222,1292,1353,1440,1503,1567,1626,1700,1762,1816,1933,1991,2052,2106,2180,2302,2386,2482,2614,2692,2770,2899,2988,3068,3129,3184,3250,3319,3396,3483,3564,3638,3714,3804,3877,3979,4064,4143,4233,4325,4399,4484,4574,4626,4710,4775,4860,4945,5007,5071,5134,5203,5320,5428,5528,5632,5697,5756,5838"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3027,3110,3195,3280,3395,4236,4337,4478,6936,7092,7506,7576,7637,7724,7787,7851,7910,7984,8046,8100,8217,8275,8336,8390,8464,8586,8670,8766,8898,8976,9054,9183,9272,9352,9413,9468,9534,9603,9680,9767,9848,9922,9998,10088,10161,10263,10348,10427,10517,10609,10683,10768,10858,10910,10994,11059,11144,11229,11291,11355,11418,11487,11604,11712,11812,11916,11981,12119",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,82,84,84,114,109,100,140,83,63,93,69,60,86,62,63,58,73,61,53,116,57,60,53,73,121,83,95,131,77,77,128,88,79,60,54,65,68,76,86,80,73,75,89,72,101,84,78,89,91,73,84,89,51,83,64,84,84,61,63,62,68,116,107,99,103,64,58,81",
+ "endOffsets": "310,3105,3190,3275,3390,3500,4332,4473,4557,6995,7181,7571,7632,7719,7782,7846,7905,7979,8041,8095,8212,8270,8331,8385,8459,8581,8665,8761,8893,8971,9049,9178,9267,9347,9408,9463,9529,9598,9675,9762,9843,9917,9993,10083,10156,10258,10343,10422,10512,10604,10678,10763,10853,10905,10989,11054,11139,11224,11286,11350,11413,11482,11599,11707,11807,11911,11976,12035,12196"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ky/values-ky.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,268,347,488,657,738",
+ "endColumns": "70,91,78,140,168,80,78",
+ "endOffsets": "171,263,342,483,652,733,812"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6766,7000,12040,12201,12525,12694,12775",
+ "endColumns": "70,91,78,140,168,80,78",
+ "endOffsets": "6832,7087,12114,12337,12689,12770,12849"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ky/values-ky.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,216,325,437,522,627,744,823,901,992,1085,1180,1274,1374,1467,1562,1657,1748,1839,1920,2026,2131,2229,2336,2439,2554,2715,2817",
+ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81",
+ "endOffsets": "211,320,432,517,622,739,818,896,987,1080,1175,1269,1369,1462,1557,1652,1743,1834,1915,2021,2126,2224,2331,2434,2549,2710,2812,2894"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,426,535,647,732,837,954,1033,1111,1202,1295,1390,1484,1584,1677,1772,1867,1958,2049,2130,2236,2341,2439,2546,2649,2764,2925,12342",
+ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81",
+ "endOffsets": "421,530,642,727,832,949,1028,1106,1197,1290,1385,1479,1579,1672,1767,1862,1953,2044,2125,2231,2336,2434,2541,2644,2759,2920,3022,12419"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ky/values-ky.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,154,259,368",
+ "endColumns": "98,104,108,105",
+ "endOffsets": "149,254,363,469"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6837,7186,7291,7400",
+ "endColumns": "98,104,108,105",
+ "endOffsets": "6931,7286,7395,7501"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-fa_values-fa.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-fa/values-fa.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,259,334,411,493,586,673,770,899,983,1046,1136,1205,1265,1356,1419,1483,1542,1609,1671,1726,1849,1907,1968,2023,2095,2232,2313,2395,2525,2599,2673,2805,2891,2968,3019,3073,3139,3210,3287,3368,3447,3520,3594,3664,3738,3839,3925,3999,4088,4180,4254,4327,4416,4467,4547,4614,4697,4781,4843,4907,4970,5039,5133,5234,5327,5425,5480,5538",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,74,76,81,92,86,96,128,83,62,89,68,59,90,62,63,58,66,61,54,122,57,60,54,71,136,80,81,129,73,73,131,85,76,50,53,65,70,76,80,78,72,73,69,73,100,85,73,88,91,73,72,88,50,79,66,82,83,61,63,62,68,93,100,92,97,54,57,77",
+ "endOffsets": "254,329,406,488,581,668,765,894,978,1041,1131,1200,1260,1351,1414,1478,1537,1604,1666,1721,1844,1902,1963,2018,2090,2227,2308,2390,2520,2594,2668,2800,2886,2963,3014,3068,3134,3205,3282,3363,3442,3515,3589,3659,3733,3834,3920,3994,4083,4175,4249,4322,4411,4462,4542,4609,4692,4776,4838,4902,4965,5034,5128,5229,5322,5420,5475,5533,5611"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2999,3074,3151,3233,3326,4137,4234,4363,6839,6988,7389,7458,7518,7609,7672,7736,7795,7862,7924,7979,8102,8160,8221,8276,8348,8485,8566,8648,8778,8852,8926,9058,9144,9221,9272,9326,9392,9463,9540,9621,9700,9773,9847,9917,9991,10092,10178,10252,10341,10433,10507,10580,10669,10720,10800,10867,10950,11034,11096,11160,11223,11292,11386,11487,11580,11678,11733,11868",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,74,76,81,92,86,96,128,83,62,89,68,59,90,62,63,58,66,61,54,122,57,60,54,71,136,80,81,129,73,73,131,85,76,50,53,65,70,76,80,78,72,73,69,73,100,85,73,88,91,73,72,88,50,79,66,82,83,61,63,62,68,93,100,92,97,54,57,77",
+ "endOffsets": "304,3069,3146,3228,3321,3408,4229,4358,4442,6897,7073,7453,7513,7604,7667,7731,7790,7857,7919,7974,8097,8155,8216,8271,8343,8480,8561,8643,8773,8847,8921,9053,9139,9216,9267,9321,9387,9458,9535,9616,9695,9768,9842,9912,9986,10087,10173,10247,10336,10428,10502,10575,10664,10715,10795,10862,10945,11029,11091,11155,11218,11287,11381,11482,11575,11673,11728,11786,11941"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-fa/values-fa.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,172,258,335,467,636,718",
+ "endColumns": "66,85,76,131,168,81,77",
+ "endOffsets": "167,253,330,462,631,713,791"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6673,6902,11791,11946,12261,12430,12512",
+ "endColumns": "66,85,76,131,168,81,77",
+ "endOffsets": "6735,6983,11863,12073,12425,12507,12585"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-fa/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,450,575,674,810,932,1042,1140,1289,1395,1561,1688,1837,1989,2051,2115",
+ "endColumns": "103,152,124,98,135,121,109,97,148,105,165,126,148,151,61,63,80",
+ "endOffsets": "296,449,574,673,809,931,1041,1139,1288,1394,1560,1687,1836,1988,2050,2114,2195"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4447,4555,4712,4841,4944,5084,5210,5324,5581,5734,5844,6014,6145,6298,6454,6520,6588",
+ "endColumns": "107,156,128,102,139,125,113,101,152,109,169,130,152,155,65,67,84",
+ "endOffsets": "4550,4707,4836,4939,5079,5205,5319,5421,5729,5839,6009,6140,6293,6449,6515,6583,6668"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-fa/values-fa.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,154,251,362",
+ "endColumns": "98,96,110,102",
+ "endOffsets": "149,246,357,460"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6740,7078,7175,7286",
+ "endColumns": "98,96,110,102",
+ "endOffsets": "6834,7170,7281,7384"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-fa/values-fa.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,154,256,355,455,556,662,779",
+ "endColumns": "98,101,98,99,100,105,116,100",
+ "endOffsets": "149,251,350,450,551,657,774,875"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3413,3512,3614,3713,3813,3914,4020,12160",
+ "endColumns": "98,101,98,99,100,105,116,100",
+ "endOffsets": "3507,3609,3708,3808,3909,4015,4132,12256"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-fa/values-fa.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,215,316,427,511,612,727,807,884,977,1072,1164,1258,1360,1455,1552,1646,1739,1829,1911,2019,2123,2221,2327,2432,2537,2694,2795",
+ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81",
+ "endOffsets": "210,311,422,506,607,722,802,879,972,1067,1159,1253,1355,1450,1547,1641,1734,1824,1906,2014,2118,2216,2322,2427,2532,2689,2790,2872"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "309,419,520,631,715,816,931,1011,1088,1181,1276,1368,1462,1564,1659,1756,1850,1943,2033,2115,2223,2327,2425,2531,2636,2741,2898,12078",
+ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81",
+ "endOffsets": "414,515,626,710,811,926,1006,1083,1176,1271,1363,1457,1559,1654,1751,1845,1938,2028,2110,2218,2322,2420,2526,2631,2736,2893,2994,12155"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-fa/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "150",
+ "endOffsets": "345"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5426",
+ "endColumns": "154",
+ "endOffsets": "5576"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-fr-rCA_values-fr-rCA.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-fr-rCA/values-fr-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,354,456,560,664,778",
+ "endColumns": "97,101,98,101,103,103,113,100",
+ "endOffsets": "148,250,349,451,555,659,773,874"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3578,3676,3778,3877,3979,4083,4187,12821",
+ "endColumns": "97,101,98,101,103,103,113,100",
+ "endOffsets": "3671,3773,3872,3974,4078,4182,4296,12917"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,216,323,433,520,626,756,841,921,1012,1105,1203,1298,1398,1491,1584,1679,1770,1861,1947,2057,2168,2271,2382,2490,2597,2756,2855",
+ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86",
+ "endOffsets": "211,318,428,515,621,751,836,916,1007,1100,1198,1293,1393,1486,1579,1674,1765,1856,1942,2052,2163,2266,2377,2485,2592,2751,2850,2937"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "333,444,551,661,748,854,984,1069,1149,1240,1333,1431,1526,1626,1719,1812,1907,1998,2089,2175,2285,2396,2499,2610,2718,2825,2984,12734",
+ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86",
+ "endOffsets": "439,546,656,743,849,979,1064,1144,1235,1328,1426,1521,1621,1714,1807,1902,1993,2084,2170,2280,2391,2494,2605,2713,2820,2979,3078,12816"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-fr-rCA/values-fr-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,162,264,383",
+ "endColumns": "106,101,118,104",
+ "endOffsets": "157,259,378,483"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7090,7457,7559,7678",
+ "endColumns": "106,101,118,104",
+ "endOffsets": "7192,7554,7673,7778"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-fr-rCA/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,299,475,601,706,873,1002,1119,1228,1419,1527,1708,1840,1996,2171,2240,2300",
+ "endColumns": "101,175,125,104,166,128,116,108,190,107,180,131,155,174,68,59,79",
+ "endOffsets": "298,474,600,705,872,1001,1118,1227,1418,1526,1707,1839,1995,2170,2239,2299,2379"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4608,4714,4894,5024,5133,5304,5437,5558,5832,6027,6139,6324,6460,6620,6799,6872,6936",
+ "endColumns": "105,179,129,108,170,132,120,112,194,111,184,135,159,178,72,63,83",
+ "endOffsets": "4709,4889,5019,5128,5299,5432,5553,5666,6022,6134,6319,6455,6615,6794,6867,6931,7015"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-fr-rCA/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "156",
+ "endOffsets": "355"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5671",
+ "endColumns": "160",
+ "endOffsets": "5827"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-fr-rCA/values-fr-rCA.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,283,390,498,580,681,778,878,1000,1085,1151,1248,1328,1390,1482,1549,1623,1684,1763,1827,1881,1997,2056,2118,2172,2254,2383,2475,2559,2703,2782,2863,3010,3103,3182,3237,3288,3354,3433,3514,3605,3685,3757,3835,3910,3982,4093,4190,4267,4365,4463,4541,4622,4722,4779,4863,4929,5012,5099,5161,5225,5288,5364,5466,5573,5670,5776,5835,5890",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,106,107,81,100,96,99,121,84,65,96,79,61,91,66,73,60,78,63,53,115,58,61,53,81,128,91,83,143,78,80,146,92,78,54,50,65,78,80,90,79,71,77,74,71,110,96,76,97,97,77,80,99,56,83,65,82,86,61,63,62,75,101,106,96,105,58,54,88",
+ "endOffsets": "278,385,493,575,676,773,873,995,1080,1146,1243,1323,1385,1477,1544,1618,1679,1758,1822,1876,1992,2051,2113,2167,2249,2378,2470,2554,2698,2777,2858,3005,3098,3177,3232,3283,3349,3428,3509,3600,3680,3752,3830,3905,3977,4088,4185,4262,4360,4458,4536,4617,4717,4774,4858,4924,5007,5094,5156,5220,5283,5359,5461,5568,5665,5771,5830,5885,5974"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3083,3190,3298,3380,3481,4301,4401,4523,7197,7360,7783,7863,7925,8017,8084,8158,8219,8298,8362,8416,8532,8591,8653,8707,8789,8918,9010,9094,9238,9317,9398,9545,9638,9717,9772,9823,9889,9968,10049,10140,10220,10292,10370,10445,10517,10628,10725,10802,10900,10998,11076,11157,11257,11314,11398,11464,11547,11634,11696,11760,11823,11899,12001,12108,12205,12311,12370,12502",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,106,107,81,100,96,99,121,84,65,96,79,61,91,66,73,60,78,63,53,115,58,61,53,81,128,91,83,143,78,80,146,92,78,54,50,65,78,80,90,79,71,77,74,71,110,96,76,97,97,77,80,99,56,83,65,82,86,61,63,62,75,101,106,96,105,58,54,88",
+ "endOffsets": "328,3185,3293,3375,3476,3573,4396,4518,4603,7258,7452,7858,7920,8012,8079,8153,8214,8293,8357,8411,8527,8586,8648,8702,8784,8913,9005,9089,9233,9312,9393,9540,9633,9712,9767,9818,9884,9963,10044,10135,10215,10287,10365,10440,10512,10623,10720,10797,10895,10993,11071,11152,11252,11309,11393,11459,11542,11629,11691,11755,11818,11894,11996,12103,12200,12306,12365,12420,12586"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,272,349,492,661,747",
+ "endColumns": "69,96,76,142,168,85,79",
+ "endOffsets": "170,267,344,487,656,742,822"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "7020,7263,12425,12591,12922,13091,13177",
+ "endColumns": "69,96,76,142,168,85,79",
+ "endOffsets": "7085,7355,12497,12729,13086,13172,13252"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-pt-rBR_values-pt-rBR.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-pt-rBR/values-pt-rBR.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,353,453,560,670,790",
+ "endColumns": "96,101,98,99,106,109,119,100",
+ "endOffsets": "147,249,348,448,555,665,785,886"
+ },
+ "to": {
+ "startLines": "71,72,73,74,75,76,77,270",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "5100,5197,5299,5398,5498,5605,5715,23386",
+ "endColumns": "96,101,98,99,106,109,119,100",
+ "endOffsets": "5192,5294,5393,5493,5600,5710,5830,23482"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-pt-rBR/strings.xml",
+ "from": {
+ "startLines": "91,95,99,155,159,164,60,64,3,87,89,88,83,84,82,86,85,90,176,175,174,80,78,79,212,213,214,216,217,215,218,219,170,169,171,154,153,163,152,172,10,18,17,22,32,28,30,29,31,34,35,33,20,21,23,24,25,26,11,13,12,16,15,14,105,150,141,140,146,148,147,142,143,144,145,149,112,113,136,137,134,135,110,111,123,124,125,126,127,106,109,107,108,114,115,116,130,131,128,129,117,119,120,121,122,118,138,139,104,132,133,38,48,52,53,54,49,50,51,75,76,69,70,71,72,73,55,58,56,74,68,45,46,37,39,41,42,40,43,6,4,7,5,8,193,192,198,185,184,197,203,196,194,190,186,187,188,191,183,180,189,181,204,182,205,206,199,202,200,201,195,179,209,178,177,207,208",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "6811,7004,7189,11851,12056,12290,4659,4914,110,6494,6669,6602,6193,6250,6133,6438,6376,6748,12975,12900,12829,6068,5931,6002,15778,15837,15970,16254,16358,16049,16438,16512,12551,12483,12655,11764,11677,12217,11606,12761,428,1133,994,1424,2329,1947,2118,2018,2232,2568,2737,2436,1240,1357,1520,1618,1727,1827,508,632,564,899,827,696,7432,11554,10817,10766,11238,11365,11291,10865,10950,11023,11100,11452,7992,8079,10310,10400,10103,10187,7790,7872,9148,9234,9314,9408,9474,7491,7708,7569,7637,8243,8332,8498,9724,9808,9554,9633,8635,8793,8859,8949,9058,8715,10567,10662,7377,9907,9993,2890,3608,4026,4101,4174,3685,3886,3949,5774,5860,5192,5286,5382,5493,5591,4243,4492,4333,5705,5099,3482,3537,2809,3012,3201,3282,3121,3377,266,159,317,212,374,14260,14187,14675,13629,13566,14600,15042,14502,14371,14024,13681,13767,13851,14105,13499,13237,13935,13352,15179,13415,15285,15350,14750,14960,14823,14886,14431,13189,15569,13137,13086,15415,15496",
+ "endLines": "94,98,102,158,162,167,63,67,3,87,89,88,83,84,82,86,85,90,176,175,174,80,78,79,212,213,214,216,217,215,218,219,170,169,171,154,153,163,152,172,10,18,17,22,32,28,30,29,31,34,35,33,20,21,23,24,25,26,11,13,12,16,15,14,105,150,141,140,146,148,147,142,143,144,145,149,112,113,136,137,134,135,110,111,123,124,125,126,127,106,109,107,108,114,115,116,130,131,128,129,117,119,120,121,122,118,138,139,104,132,133,38,48,52,53,54,49,50,51,75,76,69,70,71,72,73,55,59,57,74,68,45,46,37,39,41,42,40,43,6,4,7,5,8,193,192,198,185,184,197,203,196,194,190,186,187,188,191,183,180,189,181,204,182,205,206,199,202,200,201,195,179,209,178,177,207,208",
+ "endColumns": "14,14,14,14,14,14,14,14,48,107,78,66,56,125,59,55,61,62,110,74,70,63,70,65,58,132,78,103,79,204,73,101,103,67,105,86,86,72,70,66,79,105,138,95,106,70,113,99,96,168,70,131,116,66,97,108,99,118,55,63,67,94,71,130,58,50,47,50,52,86,73,84,72,76,137,101,86,163,89,166,83,122,81,119,85,79,93,65,79,77,81,67,70,88,165,136,83,98,78,90,79,65,89,108,89,77,94,103,54,85,109,121,76,74,72,68,200,62,76,85,69,93,95,110,97,113,89,56,51,68,92,54,69,80,108,80,94,79,103,50,52,56,53,52,110,72,74,51,62,74,136,97,59,80,85,83,83,81,66,114,88,62,105,83,64,64,72,81,62,73,70,47,44,51,50,80,72",
+ "endOffsets": "6999,7184,7371,12051,12212,12477,4909,5094,154,6597,6743,6664,6245,6371,6188,6489,6433,6806,13081,12970,12895,6127,5997,6063,15832,15965,16044,16353,16433,16249,16507,16609,12650,12546,12756,11846,11759,12285,11672,12823,503,1234,1128,1515,2431,2013,2227,2113,2324,2732,2803,2563,1352,1419,1613,1722,1822,1941,559,691,627,989,894,822,7486,11600,10860,10812,11286,11447,11360,10945,11018,11095,11233,11549,8074,8238,10395,10562,10182,10305,7867,7987,9229,9309,9403,9469,9549,7564,7785,7632,7703,8327,8493,8630,9803,9902,9628,9719,8710,8854,8944,9053,9143,8788,10657,10761,7427,9988,10098,3007,3680,4096,4169,4238,3881,3944,4021,5855,5925,5281,5377,5488,5586,5700,4328,4654,4487,5769,5187,3532,3602,2885,3116,3277,3372,3196,3476,312,207,369,261,422,14366,14255,14745,13676,13624,14670,15174,14595,14426,14100,13762,13846,13930,14182,13561,13347,14019,13410,15280,13494,15345,15410,14818,15037,14881,14955,14497,13232,15609,13184,13132,15491,15564"
+ },
+ "to": {
+ "startLines": "2,6,10,18,22,26,30,34,65,81,82,83,84,85,86,87,88,89,108,109,110,111,112,113,116,117,118,119,120,121,122,123,125,128,189,191,192,193,194,196,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,290,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,343,528,888,1093,1254,1446,1701,4624,6137,6245,6324,6391,6448,6574,6634,6690,6752,9077,9188,9263,9334,9398,9469,9720,9779,9912,9991,10095,10175,10380,10454,10620,10903,15896,16081,16168,16255,16328,16476,16694,16774,16880,17019,17115,17222,17293,17407,17507,17604,17773,17844,17976,18093,18160,18258,18367,18467,18586,18642,18706,18774,18869,18941,19158,19217,19268,19316,19367,19420,19507,19581,19666,19739,19816,19954,20056,20143,20307,20397,20564,20648,20771,20853,20973,21059,21139,21233,21299,21379,21457,21539,21607,21678,21767,21933,22070,22154,22253,22332,22423,22503,22569,22659,22768,22858,22936,23031,23135,23190,23276,23656,23778,23855,23930,24003,24072,24273,24336,24413,24499,24569,24663,24759,24870,24968,25082,25172,25339,25498,25567,25660,25715,25785,25866,25975,26056,26151,26231,26335,26386,26439,26496,26550,26771,26882,26955,27030,27082,27145,27220,27357,27455,27515,27596,27682,27766,27850,27932,27999,28114,28203,28266,28372,28456,28521,28586,28659,28741,28804,28878,28949,28997,29042,29094,29145,29226",
+ "endLines": "5,9,13,21,25,29,33,37,65,81,82,83,84,85,86,87,88,89,108,109,110,111,112,113,116,117,118,119,120,121,122,123,125,128,189,191,192,193,194,196,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,289,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341",
+ "endColumns": "14,14,14,14,14,14,14,14,48,107,78,66,56,125,59,55,61,62,110,74,70,63,70,65,58,132,78,103,79,204,73,101,103,67,105,86,86,72,70,66,79,105,138,95,106,70,113,99,96,168,70,131,116,66,97,108,99,118,55,63,67,94,71,130,58,50,47,50,52,86,73,84,72,76,137,101,86,163,89,166,83,122,81,119,85,79,93,65,79,77,81,67,70,88,165,136,83,98,78,90,79,65,89,108,89,77,94,103,54,85,109,121,76,74,72,68,200,62,76,85,69,93,95,110,97,113,89,56,51,68,92,54,69,80,108,80,94,79,103,50,52,56,53,52,110,72,74,51,62,74,136,97,59,80,85,83,83,81,66,114,88,62,105,83,64,64,72,81,62,73,70,47,44,51,50,80,72",
+ "endOffsets": "338,523,710,1088,1249,1441,1696,1881,4668,6240,6319,6386,6443,6569,6629,6685,6747,6810,9183,9258,9329,9393,9464,9530,9774,9907,9986,10090,10170,10375,10449,10551,10719,10966,15997,16163,16250,16323,16394,16538,16769,16875,17014,17110,17217,17288,17402,17502,17599,17768,17839,17971,18088,18155,18253,18362,18462,18581,18637,18701,18769,18864,18936,19067,19212,19263,19311,19362,19415,19502,19576,19661,19734,19811,19949,20051,20138,20302,20392,20559,20643,20766,20848,20968,21054,21134,21228,21294,21374,21452,21534,21602,21673,21762,21928,22065,22149,22248,22327,22418,22498,22564,22654,22763,22853,22931,23026,23130,23185,23271,23381,23773,23850,23925,23998,24067,24268,24331,24408,24494,24564,24658,24754,24865,24963,25077,25167,25334,25493,25562,25655,25710,25780,25861,25970,26051,26146,26226,26330,26381,26434,26491,26545,26598,26877,26950,27025,27077,27140,27215,27352,27450,27510,27591,27677,27761,27845,27927,27994,28109,28198,28261,28367,28451,28516,28581,28654,28736,28799,28873,28944,28992,29037,29089,29140,29221,29294"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-pt-rBR/values-pt-rBR.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,273,354,432,516,611,700,801,921,1002,1066,1158,1237,1297,1387,1451,1522,1585,1660,1724,1778,1905,1963,2025,2079,2158,2299,2386,2468,2607,2690,2774,2913,3000,3080,3136,3187,3253,3327,3407,3494,3577,3650,3727,3796,3870,3972,4060,4137,4230,4326,4400,4480,4577,4629,4713,4779,4866,4954,5016,5080,5143,5211,5323,5434,5541,5651,5711,5766",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,77,83,94,88,100,119,80,63,91,78,59,89,63,70,62,74,63,53,126,57,61,53,78,140,86,81,138,82,83,138,86,79,55,50,65,73,79,86,82,72,76,68,73,101,87,76,92,95,73,79,96,51,83,65,86,87,61,63,62,67,111,110,106,109,59,54,76",
+ "endOffsets": "268,349,427,511,606,695,796,916,997,1061,1153,1232,1292,1382,1446,1517,1580,1655,1719,1773,1900,1958,2020,2074,2153,2294,2381,2463,2602,2685,2769,2908,2995,3075,3131,3182,3248,3322,3402,3489,3572,3645,3722,3791,3865,3967,4055,4132,4225,4321,4395,4475,4572,4624,4708,4774,4861,4949,5011,5075,5138,5206,5318,5429,5536,5646,5706,5761,5838"
+ },
+ "to": {
+ "startLines": "14,66,67,68,69,70,78,79,80,124,127,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,195",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "715,4673,4754,4832,4916,5011,5835,5936,6056,10556,10811,11288,11367,11427,11517,11581,11652,11715,11790,11854,11908,12035,12093,12155,12209,12288,12429,12516,12598,12737,12820,12904,13043,13130,13210,13266,13317,13383,13457,13537,13624,13707,13780,13857,13926,14000,14102,14190,14267,14360,14456,14530,14610,14707,14759,14843,14909,14996,15084,15146,15210,15273,15341,15453,15564,15671,15781,15841,16399",
+ "endLines": "17,66,67,68,69,70,78,79,80,124,127,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,195",
+ "endColumns": "12,80,77,83,94,88,100,119,80,63,91,78,59,89,63,70,62,74,63,53,126,57,61,53,78,140,86,81,138,82,83,138,86,79,55,50,65,73,79,86,82,72,76,68,73,101,87,76,92,95,73,79,96,51,83,65,86,87,61,63,62,67,111,110,106,109,59,54,76",
+ "endOffsets": "883,4749,4827,4911,5006,5095,5931,6051,6132,10615,10898,11362,11422,11512,11576,11647,11710,11785,11849,11903,12030,12088,12150,12204,12283,12424,12511,12593,12732,12815,12899,13038,13125,13205,13261,13312,13378,13452,13532,13619,13702,13775,13852,13921,13995,14097,14185,14262,14355,14451,14525,14605,14702,14754,14838,14904,14991,15079,15141,15205,15268,15336,15448,15559,15666,15776,15836,15891,16471"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-pt-rBR/values-pt-rBR.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,262,341,492,661,748",
+ "endColumns": "69,86,78,150,168,86,80",
+ "endOffsets": "170,257,336,487,656,743,824"
+ },
+ "to": {
+ "startLines": "114,126,190,197,271,307,308",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "9535,10724,16002,16543,23487,26603,26690",
+ "endColumns": "69,86,78,150,168,86,80",
+ "endOffsets": "9600,10806,16076,16689,23651,26685,26766"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-pt-rBR/values-pt-rBR.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,170,269,381",
+ "endColumns": "114,98,111,105",
+ "endOffsets": "165,264,376,482"
+ },
+ "to": {
+ "startLines": "115,129,130,131",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "9605,10971,11070,11182",
+ "endColumns": "114,98,111,105",
+ "endOffsets": "9715,11065,11177,11283"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-pt-rBR/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "140",
+ "endOffsets": "339"
+ },
+ "to": {
+ "startLines": "98",
+ "startColumns": "4",
+ "startOffsets": "7827",
+ "endColumns": "144",
+ "endOffsets": "7967"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-pt-rBR/values-pt-rBR.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843",
+ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85",
+ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,222",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "1886,2006,2112,2219,2308,2409,2528,2613,2693,2784,2877,2972,3066,3166,3259,3354,3449,3540,3631,3716,3823,3934,4036,4144,4252,4362,4524,19072",
+ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85",
+ "endOffsets": "2001,2107,2214,2303,2404,2523,2608,2688,2779,2872,2967,3061,3161,3254,3349,3444,3535,3626,3711,3818,3929,4031,4139,4247,4357,4519,4619,19153"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-pt-rBR/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,298,442,565,669,832,958,1076,1177,1343,1447,1607,1733,1886,2039,2104,2166",
+ "endColumns": "100,143,122,103,162,125,117,100,165,103,159,125,152,152,64,61,79",
+ "endOffsets": "297,441,564,668,831,957,1075,1176,1342,1446,1606,1732,1885,2038,2103,2165,2245"
+ },
+ "to": {
+ "startLines": "90,91,92,93,94,95,96,97,99,100,101,102,103,104,105,106,107",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "6815,6920,7068,7195,7303,7470,7600,7722,7972,8142,8250,8414,8544,8701,8858,8927,8993",
+ "endColumns": "104,147,126,107,166,129,121,104,169,107,163,129,156,156,68,65,83",
+ "endOffsets": "6915,7063,7190,7298,7465,7595,7717,7822,8137,8245,8409,8539,8696,8853,8922,8988,9072"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-xlarge-v4_values-xlarge-v4.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-xlarge-v4/values-xlarge-v4.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "55,126,197,267,337,405",
+ "endColumns": "70,70,69,69,67,67",
+ "endOffsets": "121,192,262,332,400,468"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-es_values-es.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-es/values-es.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,278,359,438,525,626,722,826,948,1029,1094,1189,1270,1333,1422,1486,1555,1618,1692,1756,1812,1930,1988,2050,2106,2186,2325,2414,2496,2637,2718,2798,2949,3039,3119,3175,3231,3297,3376,3458,3546,3635,3709,3786,3856,3935,4035,4119,4203,4295,4395,4469,4550,4652,4705,4790,4857,4950,5039,5101,5165,5228,5296,5409,5516,5620,5721,5781,5841",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,78,86,100,95,103,121,80,64,94,80,62,88,63,68,62,73,63,55,117,57,61,55,79,138,88,81,140,80,79,150,89,79,55,55,65,78,81,87,88,73,76,69,78,99,83,83,91,99,73,80,101,52,84,66,92,88,61,63,62,67,112,106,103,100,59,59,82",
+ "endOffsets": "273,354,433,520,621,717,821,943,1024,1089,1184,1265,1328,1417,1481,1550,1613,1687,1751,1807,1925,1983,2045,2101,2181,2320,2409,2491,2632,2713,2793,2944,3034,3114,3170,3226,3292,3371,3453,3541,3630,3704,3781,3851,3930,4030,4114,4198,4290,4390,4464,4545,4647,4700,4785,4852,4945,5034,5096,5160,5223,5291,5404,5511,5615,5716,5776,5836,5919"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3059,3140,3219,3306,3407,4235,4339,4461,7056,7217,7633,7714,7777,7866,7930,7999,8062,8136,8200,8256,8374,8432,8494,8550,8630,8769,8858,8940,9081,9162,9242,9393,9483,9563,9619,9675,9741,9820,9902,9990,10079,10153,10230,10300,10379,10479,10563,10647,10739,10839,10913,10994,11096,11149,11234,11301,11394,11483,11545,11609,11672,11740,11853,11960,12064,12165,12225,12366",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,78,86,100,95,103,121,80,64,94,80,62,88,63,68,62,73,63,55,117,57,61,55,79,138,88,81,140,80,79,150,89,79,55,55,65,78,81,87,88,73,76,69,78,99,83,83,91,99,73,80,101,52,84,66,92,88,61,63,62,67,112,106,103,100,59,59,82",
+ "endOffsets": "323,3135,3214,3301,3402,3498,4334,4456,4537,7116,7307,7709,7772,7861,7925,7994,8057,8131,8195,8251,8369,8427,8489,8545,8625,8764,8853,8935,9076,9157,9237,9388,9478,9558,9614,9670,9736,9815,9897,9985,10074,10148,10225,10295,10374,10474,10558,10642,10734,10834,10908,10989,11091,11144,11229,11296,11389,11478,11540,11604,11667,11735,11848,11955,12059,12160,12220,12280,12444"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-es/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,456,583,687,844,973,1091,1197,1385,1490,1651,1779,1940,2093,2156,2221",
+ "endColumns": "103,158,126,103,156,128,117,105,187,104,160,127,160,152,62,64,80",
+ "endOffsets": "296,455,582,686,843,972,1090,1196,1384,1489,1650,1778,1939,2092,2155,2220,2301"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4542,4650,4813,4944,5052,5213,5346,5468,5738,5930,6039,6204,6336,6501,6658,6725,6794",
+ "endColumns": "107,162,130,107,160,132,121,109,191,108,164,131,164,156,66,68,84",
+ "endOffsets": "4645,4808,4939,5047,5208,5341,5463,5573,5925,6034,6199,6331,6496,6653,6720,6789,6874"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-es/values-es.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,207,320,428,513,614,742,828,909,1001,1095,1192,1286,1386,1480,1576,1672,1764,1856,1938,2045,2156,2255,2363,2471,2578,2737,2836",
+ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82",
+ "endOffsets": "202,315,423,508,609,737,823,904,996,1090,1187,1281,1381,1475,1571,1667,1759,1851,1933,2040,2151,2250,2358,2466,2573,2732,2831,2914"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "328,430,543,651,736,837,965,1051,1132,1224,1318,1415,1509,1609,1703,1799,1895,1987,2079,2161,2268,2379,2478,2586,2694,2801,2960,12596",
+ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82",
+ "endOffsets": "425,538,646,731,832,960,1046,1127,1219,1313,1410,1504,1604,1698,1794,1890,1982,2074,2156,2263,2374,2473,2581,2689,2796,2955,3054,12674"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-es/values-es.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,271,352,499,668,756",
+ "endColumns": "69,95,80,146,168,87,81",
+ "endOffsets": "170,266,347,494,663,751,833"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6879,7121,12285,12449,12780,12949,13037",
+ "endColumns": "69,95,80,146,168,87,81",
+ "endOffsets": "6944,7212,12361,12591,12944,13032,13114"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-es/values-es.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,162,263,378",
+ "endColumns": "106,100,114,104",
+ "endOffsets": "157,258,373,478"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6949,7312,7413,7528",
+ "endColumns": "106,100,114,104",
+ "endOffsets": "7051,7408,7523,7628"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-es/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "155",
+ "endOffsets": "350"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5578",
+ "endColumns": "159",
+ "endOffsets": "5733"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-es/values-es.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,154,256,356,454,561,667,787",
+ "endColumns": "98,101,99,97,106,105,119,100",
+ "endOffsets": "149,251,351,449,556,662,782,883"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3503,3602,3704,3804,3902,4009,4115,12679",
+ "endColumns": "98,101,99,97,106,105,119,100",
+ "endOffsets": "3597,3699,3799,3897,4004,4110,4230,12775"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v25_values-v25.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v25/values-v25.xml",
+ "from": {
+ "startLines": "2,3,4,6",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,126,209,308",
+ "endLines": "2,3,5,7",
+ "endColumns": "70,82,12,12",
+ "endOffsets": "121,204,303,414"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-tr_values-tr.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-tr/values-tr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,263,341,473,642,725",
+ "endColumns": "70,86,77,131,168,82,77",
+ "endOffsets": "171,258,336,468,637,720,798"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6678,6913,11867,12024,12337,12506,12589",
+ "endColumns": "70,86,77,131,168,82,77",
+ "endOffsets": "6744,6995,11940,12151,12501,12584,12662"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-tr/values-tr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,352,449,551,657,768",
+ "endColumns": "96,101,97,96,101,105,110,100",
+ "endOffsets": "147,249,347,444,546,652,763,864"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3424,3521,3623,3721,3818,3920,4026,12236",
+ "endColumns": "96,101,97,96,101,105,110,100",
+ "endOffsets": "3516,3618,3716,3813,3915,4021,4132,12332"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-tr/values-tr.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,340,415,492,591,682,778,890,972,1036,1127,1204,1265,1356,1419,1482,1541,1610,1673,1727,1835,1893,1955,2009,2082,2203,2287,2378,2518,2595,2671,2802,2889,2965,3018,3072,3138,3208,3285,3368,3448,3519,3594,3672,3743,3844,3929,4018,4113,4206,4278,4350,4446,4498,4584,4651,4735,4825,4887,4951,5014,5084,5178,5280,5369,5469,5526,5584",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,74,74,76,98,90,95,111,81,63,90,76,60,90,62,62,58,68,62,53,107,57,61,53,72,120,83,90,139,76,75,130,86,75,52,53,65,69,76,82,79,70,74,77,70,100,84,88,94,92,71,71,95,51,85,66,83,89,61,63,62,69,93,101,88,99,56,57,78",
+ "endOffsets": "260,335,410,487,586,677,773,885,967,1031,1122,1199,1260,1351,1414,1477,1536,1605,1668,1722,1830,1888,1950,2004,2077,2198,2282,2373,2513,2590,2666,2797,2884,2960,3013,3067,3133,3203,3280,3363,3443,3514,3589,3667,3738,3839,3924,4013,4108,4201,4273,4345,4441,4493,4579,4646,4730,4820,4882,4946,5009,5079,5173,5275,5364,5464,5521,5579,5658"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3007,3082,3157,3234,3333,4137,4233,4345,6849,7000,7410,7487,7548,7639,7702,7765,7824,7893,7956,8010,8118,8176,8238,8292,8365,8486,8570,8661,8801,8878,8954,9085,9172,9248,9301,9355,9421,9491,9568,9651,9731,9802,9877,9955,10026,10127,10212,10301,10396,10489,10561,10633,10729,10781,10867,10934,11018,11108,11170,11234,11297,11367,11461,11563,11652,11752,11809,11945",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,74,74,76,98,90,95,111,81,63,90,76,60,90,62,62,58,68,62,53,107,57,61,53,72,120,83,90,139,76,75,130,86,75,52,53,65,69,76,82,79,70,74,77,70,100,84,88,94,92,71,71,95,51,85,66,83,89,61,63,62,69,93,101,88,99,56,57,78",
+ "endOffsets": "310,3077,3152,3229,3328,3419,4228,4340,4422,6908,7086,7482,7543,7634,7697,7760,7819,7888,7951,8005,8113,8171,8233,8287,8360,8481,8565,8656,8796,8873,8949,9080,9167,9243,9296,9350,9416,9486,9563,9646,9726,9797,9872,9950,10021,10122,10207,10296,10391,10484,10556,10628,10724,10776,10862,10929,11013,11103,11165,11229,11292,11362,11456,11558,11647,11747,11804,11862,12019"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-tr/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "142",
+ "endOffsets": "337"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5443",
+ "endColumns": "146",
+ "endOffsets": "5585"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-tr/values-tr.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,261,368",
+ "endColumns": "99,105,106,105",
+ "endOffsets": "150,256,363,469"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6749,7091,7197,7304",
+ "endColumns": "99,105,106,105",
+ "endOffsets": "6844,7192,7299,7405"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-tr/values-tr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,219,318,430,515,621,741,821,896,987,1080,1172,1266,1366,1459,1561,1656,1747,1838,1917,2024,2128,2224,2331,2434,2543,2699,2797",
+ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79",
+ "endOffsets": "214,313,425,510,616,736,816,891,982,1075,1167,1261,1361,1454,1556,1651,1742,1833,1912,2019,2123,2219,2326,2429,2538,2694,2792,2872"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,429,528,640,725,831,951,1031,1106,1197,1290,1382,1476,1576,1669,1771,1866,1957,2048,2127,2234,2338,2434,2541,2644,2753,2909,12156",
+ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79",
+ "endOffsets": "424,523,635,720,826,946,1026,1101,1192,1285,1377,1471,1571,1664,1766,1861,1952,2043,2122,2229,2333,2429,2536,2639,2748,2904,3002,12231"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-tr/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,299,450,582,683,826,952,1075,1177,1345,1448,1601,1731,1872,2035,2093,2153",
+ "endColumns": "105,150,131,100,142,125,122,101,167,102,152,129,140,162,57,59,75",
+ "endOffsets": "298,449,581,682,825,951,1074,1176,1344,1447,1600,1730,1871,2034,2092,2152,2228"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4427,4537,4692,4828,4933,5080,5210,5337,5590,5762,5869,6026,6160,6305,6472,6534,6598",
+ "endColumns": "109,154,135,104,146,129,126,105,171,106,156,133,144,166,61,63,79",
+ "endOffsets": "4532,4687,4823,4928,5075,5205,5332,5438,5757,5864,6021,6155,6300,6467,6529,6593,6673"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-te_values-te.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-te/values-te.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,157,265,367,468,574,681,805",
+ "endColumns": "101,107,101,100,105,106,123,100",
+ "endOffsets": "152,260,362,463,569,676,800,901"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3530,3632,3740,3842,3943,4049,4156,12542",
+ "endColumns": "101,107,101,100,105,106,123,100",
+ "endOffsets": "3627,3735,3837,3938,4044,4151,4275,12638"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-te/values-te.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,277,356,502,671,758",
+ "endColumns": "72,98,78,145,168,86,83",
+ "endOffsets": "173,272,351,497,666,753,837"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6785,7035,12151,12313,12643,12812,12899",
+ "endColumns": "72,98,78,145,168,86,83",
+ "endOffsets": "6853,7129,12225,12454,12807,12894,12978"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-te/values-te.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,166,272,383",
+ "endColumns": "110,105,110,106",
+ "endOffsets": "161,267,378,485"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6858,7228,7334,7445",
+ "endColumns": "110,105,110,106",
+ "endOffsets": "6964,7329,7440,7547"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-te/values-te.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,276,365,455,541,639,726,830,946,1037,1103,1197,1264,1326,1419,1483,1551,1614,1688,1753,1807,1928,1985,2047,2101,2180,2308,2396,2488,2633,2713,2795,2920,3008,3090,3150,3202,3268,3343,3421,3511,3590,3663,3739,3820,3889,4009,4114,4191,4282,4375,4449,4526,4618,4675,4756,4822,4906,4992,5055,5120,5184,5253,5363,5471,5570,5676,5740,5796",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,88,89,85,97,86,103,115,90,65,93,66,61,92,63,67,62,73,64,53,120,56,61,53,78,127,87,91,144,79,81,124,87,81,59,51,65,74,77,89,78,72,75,80,68,119,104,76,90,92,73,76,91,56,80,65,83,85,62,64,63,68,109,107,98,105,63,55,82",
+ "endOffsets": "271,360,450,536,634,721,825,941,1032,1098,1192,1259,1321,1414,1478,1546,1609,1683,1748,1802,1923,1980,2042,2096,2175,2303,2391,2483,2628,2708,2790,2915,3003,3085,3145,3197,3263,3338,3416,3506,3585,3658,3734,3815,3884,4004,4109,4186,4277,4370,4444,4521,4613,4670,4751,4817,4901,4987,5050,5115,5179,5248,5358,5466,5565,5671,5735,5791,5874"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3080,3169,3259,3345,3443,4280,4384,4500,6969,7134,7552,7619,7681,7774,7838,7906,7969,8043,8108,8162,8283,8340,8402,8456,8535,8663,8751,8843,8988,9068,9150,9275,9363,9445,9505,9557,9623,9698,9776,9866,9945,10018,10094,10175,10244,10364,10469,10546,10637,10730,10804,10881,10973,11030,11111,11177,11261,11347,11410,11475,11539,11608,11718,11826,11925,12031,12095,12230",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,88,89,85,97,86,103,115,90,65,93,66,61,92,63,67,62,73,64,53,120,56,61,53,78,127,87,91,144,79,81,124,87,81,59,51,65,74,77,89,78,72,75,80,68,119,104,76,90,92,73,76,91,56,80,65,83,85,62,64,63,68,109,107,98,105,63,55,82",
+ "endOffsets": "321,3164,3254,3340,3438,3525,4379,4495,4586,7030,7223,7614,7676,7769,7833,7901,7964,8038,8103,8157,8278,8335,8397,8451,8530,8658,8746,8838,8983,9063,9145,9270,9358,9440,9500,9552,9618,9693,9771,9861,9940,10013,10089,10170,10239,10359,10464,10541,10632,10725,10799,10876,10968,11025,11106,11172,11256,11342,11405,11470,11534,11603,11713,11821,11920,12026,12090,12146,12308"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-te/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,299,449,575,686,819,940,1041,1137,1282,1390,1539,1667,1814,1973,2033,2099",
+ "endColumns": "105,149,125,110,132,120,100,95,144,107,148,127,146,158,59,65,79",
+ "endOffsets": "298,448,574,685,818,939,1040,1136,1281,1389,1538,1666,1813,1972,2032,2098,2178"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4591,4701,4855,4985,5100,5237,5362,5467,5707,5856,5968,6121,6253,6404,6567,6631,6701",
+ "endColumns": "109,153,129,114,136,124,104,99,148,111,152,131,150,162,63,69,83",
+ "endOffsets": "4696,4850,4980,5095,5232,5357,5462,5562,5851,5963,6116,6248,6399,6562,6626,6696,6780"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-te/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "135",
+ "endOffsets": "330"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5567",
+ "endColumns": "139",
+ "endOffsets": "5702"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-te/values-te.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,222,334,447,537,642,761,839,915,1006,1099,1194,1288,1388,1481,1576,1671,1762,1853,1942,2056,2160,2259,2374,2479,2594,2756,2859",
+ "endColumns": "116,111,112,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,88,113,103,98,114,104,114,161,102,82",
+ "endOffsets": "217,329,442,532,637,756,834,910,1001,1094,1189,1283,1383,1476,1571,1666,1757,1848,1937,2051,2155,2254,2369,2474,2589,2751,2854,2937"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "326,443,555,668,758,863,982,1060,1136,1227,1320,1415,1509,1609,1702,1797,1892,1983,2074,2163,2277,2381,2480,2595,2700,2815,2977,12459",
+ "endColumns": "116,111,112,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,88,113,103,98,114,104,114,161,102,82",
+ "endOffsets": "438,550,663,753,858,977,1055,1131,1222,1315,1410,1504,1604,1697,1792,1887,1978,2069,2158,2272,2376,2475,2590,2695,2810,2972,3075,12537"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-sq_values-sq.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sq/values-sq.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,219,319,431,517,623,746,828,906,997,1090,1185,1279,1380,1473,1568,1665,1756,1849,1930,2036,2140,2238,2344,2448,2550,2704,2801",
+ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81",
+ "endOffsets": "214,314,426,512,618,741,823,901,992,1085,1180,1274,1375,1468,1563,1660,1751,1844,1925,2031,2135,2233,2339,2443,2545,2699,2796,2878"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "317,431,531,643,729,835,958,1040,1118,1209,1302,1397,1491,1592,1685,1780,1877,1968,2061,2142,2248,2352,2450,2556,2660,2762,2916,12489",
+ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81",
+ "endOffsets": "426,526,638,724,830,953,1035,1113,1204,1297,1392,1486,1587,1680,1775,1872,1963,2056,2137,2243,2347,2445,2551,2655,2757,2911,3008,12566"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-sq/values-sq.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,170,271,382",
+ "endColumns": "114,100,110,100",
+ "endOffsets": "165,266,377,478"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6905,7277,7378,7489",
+ "endColumns": "114,100,110,100",
+ "endOffsets": "7015,7373,7484,7585"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sq/values-sq.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,267,346,424,510,610,702,803,929,1012,1077,1177,1247,1306,1404,1466,1530,1589,1661,1724,1778,1895,1952,2014,2068,2140,2275,2358,2436,2577,2661,2743,2891,2981,3059,3112,3171,3237,3308,3387,3475,3558,3634,3712,3784,3857,3961,4050,4122,4216,4315,4389,4461,4562,4612,4697,4763,4853,4942,5004,5068,5131,5198,5314,5427,5536,5641,5698,5761",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,78,77,85,99,91,100,125,82,64,99,69,58,97,61,63,58,71,62,53,116,56,61,53,71,134,82,77,140,83,81,147,89,77,52,58,65,70,78,87,82,75,77,71,72,103,88,71,93,98,73,71,100,49,84,65,89,88,61,63,62,66,115,112,108,104,56,62,82",
+ "endOffsets": "262,341,419,505,605,697,798,924,1007,1072,1172,1242,1301,1399,1461,1525,1584,1656,1719,1773,1890,1947,2009,2063,2135,2270,2353,2431,2572,2656,2738,2886,2976,3054,3107,3166,3232,3303,3382,3470,3553,3629,3707,3779,3852,3956,4045,4117,4211,4310,4384,4456,4557,4607,4692,4758,4848,4937,4999,5063,5126,5193,5309,5422,5531,5636,5693,5756,5839"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3013,3092,3170,3256,3356,4185,4286,4412,7020,7177,7590,7660,7719,7817,7879,7943,8002,8074,8137,8191,8308,8365,8427,8481,8553,8688,8771,8849,8990,9074,9156,9304,9394,9472,9525,9584,9650,9721,9800,9888,9971,10047,10125,10197,10270,10374,10463,10535,10629,10728,10802,10874,10975,11025,11110,11176,11266,11355,11417,11481,11544,11611,11727,11840,11949,12054,12111,12258",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,78,77,85,99,91,100,125,82,64,99,69,58,97,61,63,58,71,62,53,116,56,61,53,71,134,82,77,140,83,81,147,89,77,52,58,65,70,78,87,82,75,77,71,72,103,88,71,93,98,73,71,100,49,84,65,89,88,61,63,62,66,115,112,108,104,56,62,82",
+ "endOffsets": "312,3087,3165,3251,3351,3443,4281,4407,4490,7080,7272,7655,7714,7812,7874,7938,7997,8069,8132,8186,8303,8360,8422,8476,8548,8683,8766,8844,8985,9069,9151,9299,9389,9467,9520,9579,9645,9716,9795,9883,9966,10042,10120,10192,10265,10369,10458,10530,10624,10723,10797,10869,10970,11020,11105,11171,11261,11350,11412,11476,11539,11606,11722,11835,11944,12049,12106,12169,12336"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-sq/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "124",
+ "endOffsets": "319"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5556",
+ "endColumns": "128",
+ "endOffsets": "5680"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sq/values-sq.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,266,350,498,667,751",
+ "endColumns": "68,91,83,147,168,83,78",
+ "endOffsets": "169,261,345,493,662,746,825"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6836,7085,12174,12341,12672,12841,12925",
+ "endColumns": "68,91,83,147,168,83,78",
+ "endOffsets": "6900,7172,12253,12484,12836,12920,12999"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-sq/values-sq.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,154,256,354,451,559,670,792",
+ "endColumns": "98,101,97,96,107,110,121,100",
+ "endOffsets": "149,251,349,446,554,665,787,888"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3448,3547,3649,3747,3844,3952,4063,12571",
+ "endColumns": "98,101,97,96,107,110,121,100",
+ "endOffsets": "3542,3644,3742,3839,3947,4058,4180,12667"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-sq/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,465,598,701,858,988,1110,1222,1388,1492,1663,1797,1955,2135,2196,2259",
+ "endColumns": "102,168,132,102,156,129,121,111,165,103,170,133,157,179,60,62,77",
+ "endOffsets": "295,464,597,700,857,987,1109,1221,1387,1491,1662,1796,1954,2134,2195,2258,2336"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4495,4602,4775,4912,5019,5180,5314,5440,5685,5855,5963,6138,6276,6438,6622,6687,6754",
+ "endColumns": "106,172,136,106,160,133,125,115,169,107,174,137,161,183,64,66,81",
+ "endOffsets": "4597,4770,4907,5014,5175,5309,5435,5551,5850,5958,6133,6271,6433,6617,6682,6749,6831"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-cs_values-cs.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-cs/values-cs.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,157,260,374",
+ "endColumns": "101,102,113,100",
+ "endOffsets": "152,255,369,470"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6895,7259,7362,7476",
+ "endColumns": "101,102,113,100",
+ "endOffsets": "6992,7357,7471,7572"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-cs/values-cs.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,356,455,560,667,786",
+ "endColumns": "97,101,100,98,104,106,118,100",
+ "endOffsets": "148,250,351,450,555,662,781,882"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3540,3638,3740,3841,3940,4045,4152,12462",
+ "endColumns": "97,101,100,98,104,106,118,100",
+ "endOffsets": "3633,3735,3836,3935,4040,4147,4266,12558"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-cs/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,451,572,678,827,950,1058,1155,1326,1433,1593,1717,1874,2025,2089,2152",
+ "endColumns": "101,155,120,105,148,122,107,96,170,106,159,123,156,150,63,62,81",
+ "endOffsets": "294,450,571,677,826,949,1057,1154,1325,1432,1592,1716,1873,2024,2088,2151,2233"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4570,4676,4836,4961,5071,5224,5351,5463,5707,5882,5993,6157,6285,6446,6601,6669,6736",
+ "endColumns": "105,159,124,109,152,126,111,100,174,110,163,127,160,154,67,66,85",
+ "endOffsets": "4671,4831,4956,5066,5219,5346,5458,5559,5877,5988,6152,6280,6441,6596,6664,6731,6817"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-cs/values-cs.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,276,354,501,670,754",
+ "endColumns": "72,97,77,146,168,83,80",
+ "endOffsets": "173,271,349,496,665,749,830"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6822,7062,12075,12232,12563,12732,12816",
+ "endColumns": "72,97,77,146,168,83,80",
+ "endOffsets": "6890,7155,12148,12374,12727,12811,12892"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-cs/values-cs.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,368,446,524,601,704,796,888,1014,1095,1160,1259,1335,1396,1485,1549,1616,1670,1738,1798,1852,1969,2029,2091,2145,2217,2339,2423,2515,2652,2730,2812,2939,3027,3107,3161,3212,3278,3350,3427,3511,3592,3664,3741,3815,3886,3991,4079,4150,4243,4338,4412,4486,4582,4634,4717,4784,4870,4958,5020,5084,5147,5215,5325,5431,5530,5644,5702,5757",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,77,77,76,102,91,91,125,80,64,98,75,60,88,63,66,53,67,59,53,116,59,61,53,71,121,83,91,136,77,81,126,87,79,53,50,65,71,76,83,80,71,76,73,70,104,87,70,92,94,73,73,95,51,82,66,85,87,61,63,62,67,109,105,98,113,57,54,78",
+ "endOffsets": "363,441,519,596,699,791,883,1009,1090,1155,1254,1330,1391,1480,1544,1611,1665,1733,1793,1847,1964,2024,2086,2140,2212,2334,2418,2510,2647,2725,2807,2934,3022,3102,3156,3207,3273,3345,3422,3506,3587,3659,3736,3810,3881,3986,4074,4145,4238,4333,4407,4481,4577,4629,4712,4779,4865,4953,5015,5079,5142,5210,5320,5426,5525,5639,5697,5752,5831"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3112,3190,3268,3345,3448,4271,4363,4489,6997,7160,7577,7653,7714,7803,7867,7934,7988,8056,8116,8170,8287,8347,8409,8463,8535,8657,8741,8833,8970,9048,9130,9257,9345,9425,9479,9530,9596,9668,9745,9829,9910,9982,10059,10133,10204,10309,10397,10468,10561,10656,10730,10804,10900,10952,11035,11102,11188,11276,11338,11402,11465,11533,11643,11749,11848,11962,12020,12153",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,77,77,76,102,91,91,125,80,64,98,75,60,88,63,66,53,67,59,53,116,59,61,53,71,121,83,91,136,77,81,126,87,79,53,50,65,71,76,83,80,71,76,73,70,104,87,70,92,94,73,73,95,51,82,66,85,87,61,63,62,67,109,105,98,113,57,54,78",
+ "endOffsets": "413,3185,3263,3340,3443,3535,4358,4484,4565,7057,7254,7648,7709,7798,7862,7929,7983,8051,8111,8165,8282,8342,8404,8458,8530,8652,8736,8828,8965,9043,9125,9252,9340,9420,9474,9525,9591,9663,9740,9824,9905,9977,10054,10128,10199,10304,10392,10463,10556,10651,10725,10799,10895,10947,11030,11097,11183,11271,11333,11397,11460,11528,11638,11744,11843,11957,12015,12070,12227"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-cs/values-cs.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,314,424,510,615,732,810,886,977,1070,1165,1259,1353,1446,1541,1638,1729,1820,1904,2008,2120,2219,2325,2436,2538,2701,2799",
+ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82",
+ "endOffsets": "207,309,419,505,610,727,805,881,972,1065,1160,1254,1348,1441,1536,1633,1724,1815,1899,2003,2115,2214,2320,2431,2533,2696,2794,2877"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "418,525,627,737,823,928,1045,1123,1199,1290,1383,1478,1572,1666,1759,1854,1951,2042,2133,2217,2321,2433,2532,2638,2749,2851,3014,12379",
+ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82",
+ "endOffsets": "520,622,732,818,923,1040,1118,1194,1285,1378,1473,1567,1661,1754,1849,1946,2037,2128,2212,2316,2428,2527,2633,2744,2846,3009,3107,12457"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-cs/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "138",
+ "endOffsets": "333"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5564",
+ "endColumns": "142",
+ "endOffsets": "5702"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-mk_values-mk.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-mk/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "132",
+ "endOffsets": "327"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5510",
+ "endColumns": "136",
+ "endOffsets": "5642"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-mk/values-mk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,263,344,488,657,743",
+ "endColumns": "70,86,80,143,168,85,81",
+ "endOffsets": "171,258,339,483,652,738,820"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6734,6984,12063,12229,12559,12728,12814",
+ "endColumns": "70,86,80,143,168,85,81",
+ "endOffsets": "6800,7066,12139,12368,12723,12809,12891"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-mk/values-mk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,352,450,555,658,774",
+ "endColumns": "97,101,96,97,104,102,115,100",
+ "endOffsets": "148,250,347,445,550,653,769,870"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3465,3563,3665,3762,3860,3965,4068,12458",
+ "endColumns": "97,101,96,97,104,102,115,100",
+ "endOffsets": "3558,3660,3757,3855,3960,4063,4179,12554"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-mk/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,453,582,688,829,958,1074,1180,1333,1436,1598,1727,1876,2031,2096,2156",
+ "endColumns": "102,156,128,105,140,128,115,105,152,102,161,128,148,154,64,59,74",
+ "endOffsets": "295,452,581,687,828,957,1073,1179,1332,1435,1597,1726,1875,2030,2095,2155,2230"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4491,4598,4759,4892,5002,5147,5280,5400,5647,5804,5911,6077,6210,6363,6522,6591,6655",
+ "endColumns": "106,160,132,109,144,132,119,109,156,106,165,132,152,158,68,63,78",
+ "endOffsets": "4593,4754,4887,4997,5142,5275,5395,5505,5799,5906,6072,6205,6358,6517,6586,6650,6729"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-mk/values-mk.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,168,273,388",
+ "endColumns": "112,104,114,100",
+ "endOffsets": "163,268,383,484"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6805,7162,7267,7382",
+ "endColumns": "112,104,114,100",
+ "endOffsets": "6913,7262,7377,7478"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-mk/values-mk.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,271,352,432,514,611,700,796,920,1007,1073,1164,1234,1298,1401,1464,1529,1589,1657,1720,1775,1903,1960,2022,2077,2152,2292,2379,2462,2595,2677,2762,2908,2995,3072,3126,3181,3247,3320,3396,3485,3563,3636,3712,3787,3857,3966,4054,4129,4221,4313,4387,4461,4553,4606,4688,4755,4838,4925,4987,5051,5114,5184,5298,5413,5515,5627,5685,5744",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,79,81,96,88,95,123,86,65,90,69,63,102,62,64,59,67,62,54,127,56,61,54,74,139,86,82,132,81,84,145,86,76,53,54,65,72,75,88,77,72,75,74,69,108,87,74,91,91,73,73,91,52,81,66,82,86,61,63,62,69,113,114,101,111,57,58,84",
+ "endOffsets": "266,347,427,509,606,695,791,915,1002,1068,1159,1229,1293,1396,1459,1524,1584,1652,1715,1770,1898,1955,2017,2072,2147,2287,2374,2457,2590,2672,2757,2903,2990,3067,3121,3176,3242,3315,3391,3480,3558,3631,3707,3782,3852,3961,4049,4124,4216,4308,4382,4456,4548,4601,4683,4750,4833,4920,4982,5046,5109,5179,5293,5408,5510,5622,5680,5739,5824"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3036,3117,3197,3279,3376,4184,4280,4404,6918,7071,7483,7553,7617,7720,7783,7848,7908,7976,8039,8094,8222,8279,8341,8396,8471,8611,8698,8781,8914,8996,9081,9227,9314,9391,9445,9500,9566,9639,9715,9804,9882,9955,10031,10106,10176,10285,10373,10448,10540,10632,10706,10780,10872,10925,11007,11074,11157,11244,11306,11370,11433,11503,11617,11732,11834,11946,12004,12144",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,79,81,96,88,95,123,86,65,90,69,63,102,62,64,59,67,62,54,127,56,61,54,74,139,86,82,132,81,84,145,86,76,53,54,65,72,75,88,77,72,75,74,69,108,87,74,91,91,73,73,91,52,81,66,82,86,61,63,62,69,113,114,101,111,57,58,84",
+ "endOffsets": "316,3112,3192,3274,3371,3460,4275,4399,4486,6979,7157,7548,7612,7715,7778,7843,7903,7971,8034,8089,8217,8274,8336,8391,8466,8606,8693,8776,8909,8991,9076,9222,9309,9386,9440,9495,9561,9634,9710,9799,9877,9950,10026,10101,10171,10280,10368,10443,10535,10627,10701,10775,10867,10920,11002,11069,11152,11239,11301,11365,11428,11498,11612,11727,11829,11941,11999,12058,12224"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-mk/values-mk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,317,425,511,619,738,822,903,994,1087,1183,1277,1377,1470,1565,1661,1752,1843,1930,2036,2142,2243,2350,2462,2566,2722,2820",
+ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84",
+ "endOffsets": "208,312,420,506,614,733,817,898,989,1082,1178,1272,1372,1465,1560,1656,1747,1838,1925,2031,2137,2238,2345,2457,2561,2717,2815,2900"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "321,429,533,641,727,835,954,1038,1119,1210,1303,1399,1493,1593,1686,1781,1877,1968,2059,2146,2252,2358,2459,2566,2678,2782,2938,12373",
+ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84",
+ "endOffsets": "424,528,636,722,830,949,1033,1114,1205,1298,1394,1488,1588,1681,1776,1872,1963,2054,2141,2247,2353,2454,2561,2673,2777,2933,3031,12453"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-bn_values-bn.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-bn/values-bn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,261,341,490,659,740",
+ "endColumns": "71,83,79,148,168,80,77",
+ "endOffsets": "172,256,336,485,654,735,813"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6716,6960,11932,12092,12429,12598,12679",
+ "endColumns": "71,83,79,148,168,80,77",
+ "endOffsets": "6783,7039,12007,12236,12593,12674,12752"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-bn/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,298,453,577,684,816,934,1042,1142,1281,1386,1538,1662,1791,1935,1991,2054",
+ "endColumns": "104,154,123,106,131,117,107,99,138,104,151,123,128,143,55,62,85",
+ "endOffsets": "297,452,576,683,815,933,1041,1141,1280,1385,1537,1661,1790,1934,1990,2053,2139"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4549,4658,4817,4945,5056,5192,5314,5426,5682,5825,5934,6090,6218,6351,6499,6559,6626",
+ "endColumns": "108,158,127,110,135,121,111,103,142,108,155,127,132,147,59,66,89",
+ "endOffsets": "4653,4812,4940,5051,5187,5309,5421,5525,5820,5929,6085,6213,6346,6494,6554,6621,6711"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-bn/values-bn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,319,425,514,619,740,823,905,996,1089,1183,1277,1377,1470,1565,1659,1750,1841,1927,2037,2141,2244,2352,2460,2565,2730,2835",
+ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86",
+ "endOffsets": "208,314,420,509,614,735,818,900,991,1084,1178,1272,1372,1465,1560,1654,1745,1836,1922,2032,2136,2239,2347,2455,2560,2725,2830,2917"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "321,429,535,641,730,835,956,1039,1121,1212,1305,1399,1493,1593,1686,1781,1875,1966,2057,2143,2253,2357,2460,2568,2676,2781,2946,12241",
+ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86",
+ "endOffsets": "424,530,636,725,830,951,1034,1116,1207,1300,1394,1488,1588,1681,1776,1870,1961,2052,2138,2248,2352,2455,2563,2671,2776,2941,3046,12323"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-bn/values-bn.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,271,369,462,545,646,738,842,959,1040,1106,1197,1263,1324,1414,1478,1545,1606,1675,1737,1791,1898,1957,2018,2072,2146,2266,2351,2435,2570,2641,2711,2843,2930,3013,3071,3127,3193,3266,3346,3441,3523,3592,3668,3748,3817,3926,4021,4104,4194,4289,4363,4437,4530,4584,4669,4736,4822,4907,4969,5033,5096,5162,5264,5363,5456,5555,5617,5677",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,97,92,82,100,91,103,116,80,65,90,65,60,89,63,66,60,68,61,53,106,58,60,53,73,119,84,83,134,70,69,131,86,82,57,55,65,72,79,94,81,68,75,79,68,108,94,82,89,94,73,73,92,53,84,66,85,84,61,63,62,65,101,98,92,98,61,59,79",
+ "endOffsets": "266,364,457,540,641,733,837,954,1035,1101,1192,1258,1319,1409,1473,1540,1601,1670,1732,1786,1893,1952,2013,2067,2141,2261,2346,2430,2565,2636,2706,2838,2925,3008,3066,3122,3188,3261,3341,3436,3518,3587,3663,3743,3812,3921,4016,4099,4189,4284,4358,4432,4525,4579,4664,4731,4817,4902,4964,5028,5091,5157,5259,5358,5451,5550,5612,5672,5752"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3051,3149,3242,3325,3426,4247,4351,4468,6894,7044,7452,7518,7579,7669,7733,7800,7861,7930,7992,8046,8153,8212,8273,8327,8401,8521,8606,8690,8825,8896,8966,9098,9185,9268,9326,9382,9448,9521,9601,9696,9778,9847,9923,10003,10072,10181,10276,10359,10449,10544,10618,10692,10785,10839,10924,10991,11077,11162,11224,11288,11351,11417,11519,11618,11711,11810,11872,12012",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,97,92,82,100,91,103,116,80,65,90,65,60,89,63,66,60,68,61,53,106,58,60,53,73,119,84,83,134,70,69,131,86,82,57,55,65,72,79,94,81,68,75,79,68,108,94,82,89,94,73,73,92,53,84,66,85,84,61,63,62,65,101,98,92,98,61,59,79",
+ "endOffsets": "316,3144,3237,3320,3421,3513,4346,4463,4544,6955,7130,7513,7574,7664,7728,7795,7856,7925,7987,8041,8148,8207,8268,8322,8396,8516,8601,8685,8820,8891,8961,9093,9180,9263,9321,9377,9443,9516,9596,9691,9773,9842,9918,9998,10067,10176,10271,10354,10444,10539,10613,10687,10780,10834,10919,10986,11072,11157,11219,11283,11346,11412,11514,11613,11706,11805,11867,11927,12087"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-bn/values-bn.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,161,263,372",
+ "endColumns": "105,101,108,105",
+ "endOffsets": "156,258,367,473"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6788,7135,7237,7346",
+ "endColumns": "105,101,108,105",
+ "endOffsets": "6889,7232,7341,7447"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-bn/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "147",
+ "endOffsets": "342"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5530",
+ "endColumns": "151",
+ "endOffsets": "5677"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-bn/values-bn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,154,256,358,461,562,664,784",
+ "endColumns": "98,101,101,102,100,101,119,100",
+ "endOffsets": "149,251,353,456,557,659,779,880"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3518,3617,3719,3821,3924,4025,4127,12328",
+ "endColumns": "98,101,101,102,100,101,119,100",
+ "endOffsets": "3612,3714,3816,3919,4020,4122,4242,12424"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-it_values-it.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-it/values-it.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,268,352,433,510,609,704,803,943,1026,1092,1187,1272,1334,1422,1484,1553,1616,1689,1752,1806,1927,1984,2046,2100,2177,2314,2399,2481,2616,2697,2778,2924,3015,3105,3160,3211,3277,3350,3430,3521,3601,3676,3753,3822,3899,4004,4092,4181,4274,4367,4441,4521,4615,4666,4750,4816,4900,4988,5050,5114,5177,5245,5360,5474,5580,5689,5748,5803",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,83,80,76,98,94,98,139,82,65,94,84,61,87,61,68,62,72,62,53,120,56,61,53,76,136,84,81,134,80,80,145,90,89,54,50,65,72,79,90,79,74,76,68,76,104,87,88,92,92,73,79,93,50,83,65,83,87,61,63,62,67,114,113,105,108,58,54,79",
+ "endOffsets": "263,347,428,505,604,699,798,938,1021,1087,1182,1267,1329,1417,1479,1548,1611,1684,1747,1801,1922,1979,2041,2095,2172,2309,2394,2476,2611,2692,2773,2919,3010,3100,3155,3206,3272,3345,3425,3516,3596,3671,3748,3817,3894,3999,4087,4176,4269,4362,4436,4516,4610,4661,4745,4811,4895,4983,5045,5109,5172,5240,5355,5469,5575,5684,5743,5798,5878"
+ },
+ "to": {
+ "startLines": "14,58,59,60,61,62,70,71,72,116,119,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,186",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "719,4183,4267,4348,4425,4524,5366,5465,5605,10063,10317,10790,10875,10937,11025,11087,11156,11219,11292,11355,11409,11530,11587,11649,11703,11780,11917,12002,12084,12219,12300,12381,12527,12618,12708,12763,12814,12880,12953,13033,13124,13204,13279,13356,13425,13502,13607,13695,13784,13877,13970,14044,14124,14218,14269,14353,14419,14503,14591,14653,14717,14780,14848,14963,15077,15183,15292,15351,15838",
+ "endLines": "17,58,59,60,61,62,70,71,72,116,119,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,186",
+ "endColumns": "12,83,80,76,98,94,98,139,82,65,94,84,61,87,61,68,62,72,62,53,120,56,61,53,76,136,84,81,134,80,80,145,90,89,54,50,65,72,79,90,79,74,76,68,76,104,87,88,92,92,73,79,93,50,83,65,83,87,61,63,62,67,114,113,105,108,58,54,79",
+ "endOffsets": "882,4262,4343,4420,4519,4614,5460,5600,5683,10124,10407,10870,10932,11020,11082,11151,11214,11287,11350,11404,11525,11582,11644,11698,11775,11912,11997,12079,12214,12295,12376,12522,12613,12703,12758,12809,12875,12948,13028,13119,13199,13274,13351,13420,13497,13602,13690,13779,13872,13965,14039,14119,14213,14264,14348,14414,14498,14586,14648,14712,14775,14843,14958,15072,15178,15287,15346,15401,15913"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-it/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,294,441,562,666,820,944,1060,1160,1313,1416,1566,1689,1841,2018,2081,2138",
+ "endColumns": "100,146,120,103,153,123,115,99,152,102,149,122,151,176,62,56,72",
+ "endOffsets": "293,440,561,665,819,943,1059,1159,1312,1415,1565,1688,1840,2017,2080,2137,2210"
+ },
+ "to": {
+ "startLines": "82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "6384,6489,6640,6765,6873,7031,7159,7279,7519,7676,7783,7937,8064,8220,8401,8468,8529",
+ "endColumns": "104,150,124,107,157,127,119,103,156,106,153,126,155,180,66,60,76",
+ "endOffsets": "6484,6635,6760,6868,7026,7154,7274,7378,7671,7778,7932,8059,8215,8396,8463,8524,8601"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-it/values-it.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,261,341,476,645,725",
+ "endColumns": "68,86,79,134,168,79,75",
+ "endOffsets": "169,256,336,471,640,720,796"
+ },
+ "to": {
+ "startLines": "106,118,182,187,252,273,274",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "9072,10230,15524,15918,21631,23382,23462",
+ "endColumns": "68,86,79,134,168,79,75",
+ "endOffsets": "9136,10312,15599,16048,21795,23457,23533"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-it/values-it.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,253,363",
+ "endColumns": "99,97,109,102",
+ "endOffsets": "150,248,358,461"
+ },
+ "to": {
+ "startLines": "107,121,122,123",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "9141,10479,10577,10687",
+ "endColumns": "99,97,109,102",
+ "endOffsets": "9236,10572,10682,10785"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-it/values-it.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,354,456,565,672,802",
+ "endColumns": "97,101,98,101,108,106,129,100",
+ "endOffsets": "148,250,349,451,560,667,797,898"
+ },
+ "to": {
+ "startLines": "63,64,65,66,67,68,69,251",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "4619,4717,4819,4918,5020,5129,5236,21530",
+ "endColumns": "97,101,98,101,108,106,129,100",
+ "endOffsets": "4712,4814,4913,5015,5124,5231,5361,21626"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-it/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "131",
+ "endOffsets": "326"
+ },
+ "to": {
+ "startLines": "90",
+ "startColumns": "4",
+ "startOffsets": "7383",
+ "endColumns": "135",
+ "endOffsets": "7514"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-it/strings.xml",
+ "from": {
+ "startLines": "71,75,79,128,132,137,9,67,69,68,63,64,62,66,65,70,148,147,146,60,58,59,160,161,162,164,165,163,166,167,143,142,144,127,136,126,15,24,23,28,37,33,35,34,36,26,27,29,30,31,16,18,17,22,21,19,85,124,115,114,120,122,121,116,117,118,119,123,109,110,107,108,90,91,98,99,100,101,102,86,89,87,88,103,104,92,94,95,96,97,93,112,113,84,105,106,40,50,55,56,51,53,54,47,48,39,41,43,44,42,45,12,10,13,11,155,154,156,153,152,151,157,150,149",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4777,4966,5155,8987,9186,9423,320,4448,4632,4565,4142,4197,4081,4387,4329,4710,10047,9975,9902,4018,3874,3949,11029,11088,11248,11481,11594,11327,11675,11749,9682,9615,9783,8905,9349,8827,583,1290,1152,1591,2404,2019,2193,2092,2304,1402,1523,1694,1797,1912,664,790,722,1073,1001,859,5402,8775,8041,7987,8453,8576,8507,8089,8168,8246,8323,8662,7532,7619,7316,7402,5764,5848,6499,6603,6688,6787,6853,5461,5681,5540,5609,6933,7016,5985,6146,6213,6307,6409,6067,7778,7870,5347,7117,7202,2583,3296,3696,3771,3376,3564,3627,3169,3225,2502,2699,2882,2965,2798,3065,477,369,526,423,10649,10559,10753,10495,10343,10292,10844,10240,10162",
+ "endLines": "74,78,82,131,135,140,9,67,69,68,63,64,62,66,65,70,148,147,146,60,58,59,160,161,162,164,165,163,166,167,143,142,144,127,136,126,15,24,23,28,37,33,35,34,36,26,27,29,30,31,16,18,17,22,21,20,85,124,115,114,120,122,121,116,117,118,119,123,109,111,107,108,90,91,98,99,100,101,102,86,89,87,88,103,104,92,94,95,96,97,93,112,113,84,105,106,40,50,55,56,52,53,54,47,48,39,41,43,44,42,45,12,10,13,11,155,154,156,153,152,151,157,150,149",
+ "endColumns": "14,14,14,14,14,14,48,116,77,66,54,131,60,60,57,66,114,71,72,61,74,68,58,159,78,112,80,153,73,101,100,66,117,81,73,77,80,110,137,102,96,72,110,100,99,120,67,102,114,105,57,68,67,78,71,29,58,50,47,53,53,85,68,78,77,76,129,112,86,28,85,129,83,136,103,84,98,65,79,78,82,68,71,82,100,81,66,93,101,89,78,91,116,54,84,113,115,79,74,101,50,62,68,55,69,80,98,82,99,83,102,48,53,55,53,103,89,90,63,151,50,43,51,77",
+ "endOffsets": "4961,5150,5341,9181,9344,9609,364,4560,4705,4627,4192,4324,4137,4443,4382,4772,10157,10042,9970,4075,3944,4013,11083,11243,11322,11589,11670,11476,11744,11846,9778,9677,9896,8982,9418,8900,659,1396,1285,1689,2496,2087,2299,2188,2399,1518,1586,1792,1907,2013,717,854,785,1147,1068,996,5456,8821,8084,8036,8502,8657,8571,8163,8241,8318,8448,8770,7614,7773,7397,7527,5843,5980,6598,6683,6782,6848,6928,5535,5759,5604,5676,7011,7112,6062,6208,6302,6404,6494,6141,7865,7982,5397,7197,7311,2694,3371,3766,3868,3559,3622,3691,3220,3290,2578,2793,2960,3060,2877,3163,521,418,577,472,10748,10644,10839,10554,10490,10338,10883,10287,10235"
+ },
+ "to": {
+ "startLines": "2,6,10,18,22,26,57,73,74,75,76,77,78,79,80,81,100,101,102,103,104,105,108,109,110,111,112,113,114,115,117,120,181,183,184,185,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,210,211,212,213,214,215,216,217,218,219,220,221,222,223,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,253,254,255,256,257,259,260,261,262,263,264,265,266,267,268,269,270,271,272,275,276,277,278,279,280,281,282,283",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,339,528,887,1086,1249,4134,5688,5805,5883,5950,6005,6137,6198,6259,6317,8606,8721,8793,8866,8928,9003,9241,9300,9460,9539,9652,9733,9887,9961,10129,10412,15406,15604,15686,15760,16053,16134,16245,16383,16486,16583,16656,16767,16868,16968,17089,17157,17260,17375,17481,17539,17608,17676,17755,17827,18051,18110,18161,18209,18263,18317,18403,18472,18551,18629,18706,18836,18949,19036,19195,19281,19411,19495,19632,19736,19821,19920,19986,20066,20145,20228,20297,20369,20452,20553,20635,20702,20796,20898,20988,21067,21159,21276,21331,21416,21800,21916,21996,22071,22173,22361,22424,22493,22549,22619,22700,22799,22882,22982,23066,23169,23218,23272,23328,23538,23642,23732,23823,23887,24039,24090,24134,24186",
+ "endLines": "5,9,13,21,25,29,57,73,74,75,76,77,78,79,80,81,100,101,102,103,104,105,108,109,110,111,112,113,114,115,117,120,181,183,184,185,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,210,211,212,213,214,215,216,217,218,219,220,221,222,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,253,254,255,256,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,275,276,277,278,279,280,281,282,283",
+ "endColumns": "14,14,14,14,14,14,48,116,77,66,54,131,60,60,57,66,114,71,72,61,74,68,58,159,78,112,80,153,73,101,100,66,117,81,73,77,80,110,137,102,96,72,110,100,99,120,67,102,114,105,57,68,67,78,71,29,58,50,47,53,53,85,68,78,77,76,129,112,86,28,85,129,83,136,103,84,98,65,79,78,82,68,71,82,100,81,66,93,101,89,78,91,116,54,84,113,115,79,74,101,50,62,68,55,69,80,98,82,99,83,102,48,53,55,53,103,89,90,63,151,50,43,51,77",
+ "endOffsets": "334,523,714,1081,1244,1435,4178,5800,5878,5945,6000,6132,6193,6254,6312,6379,8716,8788,8861,8923,8998,9067,9295,9455,9534,9647,9728,9882,9956,10058,10225,10474,15519,15681,15755,15833,16129,16240,16378,16481,16578,16651,16762,16863,16963,17084,17152,17255,17370,17476,17534,17603,17671,17750,17822,17964,18105,18156,18204,18258,18312,18398,18467,18546,18624,18701,18831,18944,19031,19190,19276,19406,19490,19627,19731,19816,19915,19981,20061,20140,20223,20292,20364,20447,20548,20630,20697,20791,20893,20983,21062,21154,21271,21326,21411,21525,21911,21991,22066,22168,22356,22419,22488,22544,22614,22695,22794,22877,22977,23061,23164,23213,23267,23323,23377,23637,23727,23818,23882,24034,24085,24129,24181,24259"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-it/values-it.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,210,313,422,506,611,730,808,883,975,1069,1162,1256,1357,1451,1548,1643,1735,1827,1908,2014,2121,2219,2323,2429,2536,2699,2799",
+ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81",
+ "endOffsets": "205,308,417,501,606,725,803,878,970,1064,1157,1251,1352,1446,1543,1638,1730,1822,1903,2009,2116,2214,2318,2424,2531,2694,2794,2876"
+ },
+ "to": {
+ "startLines": "30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,209",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "1440,1545,1648,1757,1841,1946,2065,2143,2218,2310,2404,2497,2591,2692,2786,2883,2978,3070,3162,3243,3349,3456,3554,3658,3764,3871,4034,17969",
+ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81",
+ "endOffsets": "1540,1643,1752,1836,1941,2060,2138,2213,2305,2399,2492,2586,2687,2781,2878,2973,3065,3157,3238,3344,3451,3549,3653,3759,3866,4029,4129,18046"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-th_values-th.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-th/values-th.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,158,257,368",
+ "endColumns": "102,98,110,97",
+ "endOffsets": "153,252,363,461"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6564,6913,7012,7123",
+ "endColumns": "102,98,110,97",
+ "endOffsets": "6662,7007,7118,7216"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-th/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "124",
+ "endOffsets": "319"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5340",
+ "endColumns": "128",
+ "endOffsets": "5464"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-th/values-th.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,254,352,450,553,658,770",
+ "endColumns": "95,102,97,97,102,104,111,100",
+ "endOffsets": "146,249,347,445,548,653,765,866"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3363,3459,3562,3660,3758,3861,3966,12022",
+ "endColumns": "95,102,97,97,102,104,111,100",
+ "endOffsets": "3454,3557,3655,3753,3856,3961,4073,12118"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-th/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,438,557,660,792,912,1027,1131,1271,1372,1515,1633,1769,1916,1976,2040",
+ "endColumns": "101,142,118,102,131,119,114,103,139,100,142,117,135,146,59,63,79",
+ "endOffsets": "294,437,556,659,791,911,1026,1130,1270,1371,1514,1632,1768,1915,1975,2039,2119"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4370,4476,4623,4746,4853,4989,5113,5232,5469,5613,5718,5865,5987,6127,6278,6342,6410",
+ "endColumns": "105,146,122,106,135,123,118,107,143,104,146,121,139,150,63,67,83",
+ "endOffsets": "4471,4618,4741,4848,4984,5108,5227,5335,5608,5713,5860,5982,6122,6273,6337,6405,6489"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-th/values-th.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,261,341,480,648,728",
+ "endColumns": "69,85,79,138,167,79,77",
+ "endOffsets": "170,256,336,475,643,723,801"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6494,6737,11644,11801,12123,12291,12371",
+ "endColumns": "69,85,79,138,167,79,77",
+ "endOffsets": "6559,6818,11719,11935,12286,12366,12444"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-th/values-th.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,285,358,430,513,598,684,783,896,976,1046,1136,1206,1266,1353,1419,1484,1545,1609,1670,1724,1825,1886,1946,2000,2070,2181,2268,2349,2492,2571,2653,2785,2877,2955,3009,3062,3128,3198,3276,3362,3442,3514,3592,3661,3730,3828,3910,3998,4091,4185,4259,4328,4423,4475,4558,4626,4711,4799,4861,4925,4988,5058,5158,5254,5351,5444,5502,5559",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,72,71,82,84,85,98,112,79,69,89,69,59,86,65,64,60,63,60,53,100,60,59,53,69,110,86,80,142,78,81,131,91,77,53,52,65,69,77,85,79,71,77,68,68,97,81,87,92,93,73,68,94,51,82,67,84,87,61,63,62,69,99,95,96,92,57,56,76",
+ "endOffsets": "280,353,425,508,593,679,778,891,971,1041,1131,1201,1261,1348,1414,1479,1540,1604,1665,1719,1820,1881,1941,1995,2065,2176,2263,2344,2487,2566,2648,2780,2872,2950,3004,3057,3123,3193,3271,3357,3437,3509,3587,3656,3725,3823,3905,3993,4086,4180,4254,4323,4418,4470,4553,4621,4706,4794,4856,4920,4983,5053,5153,5249,5346,5439,5497,5554,5631"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2964,3037,3109,3192,3277,4078,4177,4290,6667,6823,7221,7291,7351,7438,7504,7569,7630,7694,7755,7809,7910,7971,8031,8085,8155,8266,8353,8434,8577,8656,8738,8870,8962,9040,9094,9147,9213,9283,9361,9447,9527,9599,9677,9746,9815,9913,9995,10083,10176,10270,10344,10413,10508,10560,10643,10711,10796,10884,10946,11010,11073,11143,11243,11339,11436,11529,11587,11724",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,72,71,82,84,85,98,112,79,69,89,69,59,86,65,64,60,63,60,53,100,60,59,53,69,110,86,80,142,78,81,131,91,77,53,52,65,69,77,85,79,71,77,68,68,97,81,87,92,93,73,68,94,51,82,67,84,87,61,63,62,69,99,95,96,92,57,56,76",
+ "endOffsets": "330,3032,3104,3187,3272,3358,4172,4285,4365,6732,6908,7286,7346,7433,7499,7564,7625,7689,7750,7804,7905,7966,8026,8080,8150,8261,8348,8429,8572,8651,8733,8865,8957,9035,9089,9142,9208,9278,9356,9442,9522,9594,9672,9741,9810,9908,9990,10078,10171,10265,10339,10408,10503,10555,10638,10706,10791,10879,10941,11005,11068,11138,11238,11334,11431,11524,11582,11639,11796"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-th/values-th.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,210,303,411,496,598,708,786,863,954,1047,1138,1232,1332,1425,1520,1614,1705,1796,1877,1980,2078,2176,2279,2385,2486,2639,2734",
+ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81",
+ "endOffsets": "205,298,406,491,593,703,781,858,949,1042,1133,1227,1327,1420,1515,1609,1700,1791,1872,1975,2073,2171,2274,2380,2481,2634,2729,2811"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "335,440,533,641,726,828,938,1016,1093,1184,1277,1368,1462,1562,1655,1750,1844,1935,2026,2107,2210,2308,2406,2509,2615,2716,2869,11940",
+ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81",
+ "endOffsets": "435,528,636,721,823,933,1011,1088,1179,1272,1363,1457,1557,1650,1745,1839,1930,2021,2102,2205,2303,2401,2504,2610,2711,2864,2959,12017"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-pl_values-pl.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-pl/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "135",
+ "endOffsets": "330"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5587",
+ "endColumns": "139",
+ "endOffsets": "5722"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-pl/values-pl.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,386,461,536,615,719,814,899,1016,1098,1162,1243,1307,1368,1479,1543,1611,1665,1734,1796,1850,1961,2022,2084,2138,2210,2339,2428,2510,2659,2741,2824,2961,3048,3125,3179,3230,3296,3367,3443,3532,3615,3692,3770,3848,3924,4032,4122,4195,4290,4387,4459,4533,4633,4685,4770,4836,4924,5014,5076,5140,5203,5274,5381,5493,5592,5699,5757,5812",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,74,74,78,103,94,84,116,81,63,80,63,60,110,63,67,53,68,61,53,110,60,61,53,71,128,88,81,148,81,82,136,86,76,53,50,65,70,75,88,82,76,77,77,75,107,89,72,94,96,71,73,99,51,84,65,87,89,61,63,62,70,106,111,98,106,57,54,75",
+ "endOffsets": "381,456,531,610,714,809,894,1011,1093,1157,1238,1302,1363,1474,1538,1606,1660,1729,1791,1845,1956,2017,2079,2133,2205,2334,2423,2505,2654,2736,2819,2956,3043,3120,3174,3225,3291,3362,3438,3527,3610,3687,3765,3843,3919,4027,4117,4190,4285,4382,4454,4528,4628,4680,4765,4831,4919,5009,5071,5135,5198,5269,5376,5488,5587,5694,5752,5807,5883"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3148,3223,3298,3377,3481,4313,4398,4515,7019,7174,7573,7637,7698,7809,7873,7941,7995,8064,8126,8180,8291,8352,8414,8468,8540,8669,8758,8840,8989,9071,9154,9291,9378,9455,9509,9560,9626,9697,9773,9862,9945,10022,10100,10178,10254,10362,10452,10525,10620,10717,10789,10863,10963,11015,11100,11166,11254,11344,11406,11470,11533,11604,11711,11823,11922,12029,12087,12222",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,74,74,78,103,94,84,116,81,63,80,63,60,110,63,67,53,68,61,53,110,60,61,53,71,128,88,81,148,81,82,136,86,76,53,50,65,70,75,88,82,76,77,77,75,107,89,72,94,96,71,73,99,51,84,65,87,89,61,63,62,70,106,111,98,106,57,54,75",
+ "endOffsets": "431,3218,3293,3372,3476,3571,4393,4510,4592,7078,7250,7632,7693,7804,7868,7936,7990,8059,8121,8175,8286,8347,8409,8463,8535,8664,8753,8835,8984,9066,9149,9286,9373,9450,9504,9555,9621,9692,9768,9857,9940,10017,10095,10173,10249,10357,10447,10520,10615,10712,10784,10858,10958,11010,11095,11161,11249,11339,11401,11465,11528,11599,11706,11818,11917,12024,12082,12137,12293"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-pl/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,293,457,575,681,828,949,1056,1151,1318,1423,1594,1718,1873,2030,2095,2157",
+ "endColumns": "99,163,117,105,146,120,106,94,166,104,170,123,154,156,64,61,79",
+ "endOffsets": "292,456,574,680,827,948,1055,1150,1317,1422,1593,1717,1872,2029,2094,2156,2236"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4597,4701,4869,4991,5101,5252,5377,5488,5727,5898,6007,6182,6310,6469,6630,6699,6765",
+ "endColumns": "103,167,121,109,150,124,110,98,170,108,174,127,158,160,68,65,83",
+ "endOffsets": "4696,4864,4986,5096,5247,5372,5483,5582,5893,6002,6177,6305,6464,6625,6694,6760,6844"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-pl/values-pl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,220,322,430,516,623,742,821,897,988,1081,1176,1270,1371,1464,1559,1654,1745,1836,1918,2027,2127,2226,2335,2447,2558,2721,2817",
+ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82",
+ "endOffsets": "215,317,425,511,618,737,816,892,983,1076,1171,1265,1366,1459,1554,1649,1740,1831,1913,2022,2122,2221,2330,2442,2553,2716,2812,2895"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "436,551,653,761,847,954,1073,1152,1228,1319,1412,1507,1601,1702,1795,1890,1985,2076,2167,2249,2358,2458,2557,2666,2778,2889,3052,12432",
+ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82",
+ "endOffsets": "546,648,756,842,949,1068,1147,1223,1314,1407,1502,1596,1697,1790,1885,1980,2071,2162,2244,2353,2453,2552,2661,2773,2884,3047,3143,12510"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-pl/values-pl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,352,451,565,670,792",
+ "endColumns": "96,101,97,98,113,104,121,100",
+ "endOffsets": "147,249,347,446,560,665,787,888"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3576,3673,3775,3873,3972,4086,4191,12515",
+ "endColumns": "96,101,97,98,113,104,121,100",
+ "endOffsets": "3668,3770,3868,3967,4081,4186,4308,12611"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-pl/values-pl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,266,346,480,649,730",
+ "endColumns": "69,90,79,133,168,80,76",
+ "endOffsets": "170,261,341,475,644,725,802"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6849,7083,12142,12298,12616,12785,12866",
+ "endColumns": "69,90,79,133,168,80,76",
+ "endOffsets": "6914,7169,12217,12427,12780,12861,12938"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-pl/values-pl.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,254,369",
+ "endColumns": "99,98,114,103",
+ "endOffsets": "150,249,364,468"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6919,7255,7354,7469",
+ "endColumns": "99,98,114,103",
+ "endOffsets": "7014,7349,7464,7568"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-bs_values-bs.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-bs/values-bs.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,226,323,430,516,620,742,827,909,1000,1093,1188,1282,1382,1475,1570,1665,1756,1847,1935,2038,2142,2243,2348,2462,2565,2734,2830",
+ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86",
+ "endOffsets": "221,318,425,511,615,737,822,904,995,1088,1183,1277,1377,1470,1565,1660,1751,1842,1930,2033,2137,2238,2343,2457,2560,2729,2825,2912"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "377,498,595,702,788,892,1014,1099,1181,1272,1365,1460,1554,1654,1747,1842,1937,2028,2119,2207,2310,2414,2515,2620,2734,2837,3006,12349",
+ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86",
+ "endOffsets": "493,590,697,783,887,1009,1094,1176,1267,1360,1455,1549,1649,1742,1837,1932,2023,2114,2202,2305,2409,2510,2615,2729,2832,3001,3097,12431"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-bs/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "136",
+ "endOffsets": "331"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5559",
+ "endColumns": "140",
+ "endOffsets": "5695"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-bs/values-bs.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,159,259,373",
+ "endColumns": "103,99,113,99",
+ "endOffsets": "154,254,368,468"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6831,7180,7280,7394",
+ "endColumns": "103,99,113,99",
+ "endOffsets": "6930,7275,7389,7489"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-bs/values-bs.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,353,457,561,663,780",
+ "endColumns": "97,101,97,103,103,101,116,100",
+ "endOffsets": "148,250,348,452,556,658,775,876"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3539,3637,3739,3837,3941,4045,4147,12436",
+ "endColumns": "97,101,97,103,103,101,116,100",
+ "endOffsets": "3632,3734,3832,3936,4040,4142,4259,12532"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-bs/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,451,573,679,825,947,1055,1153,1303,1406,1563,1686,1832,1974,2038,2096",
+ "endColumns": "101,155,121,105,145,121,107,97,149,102,156,122,145,141,63,57,80",
+ "endOffsets": "294,450,572,678,824,946,1054,1152,1302,1405,1562,1685,1831,1973,2037,2095,2176"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4567,4673,4833,4959,5069,5219,5345,5457,5700,5854,5961,6122,6249,6399,6545,6613,6675",
+ "endColumns": "105,159,125,109,149,125,111,101,153,106,160,126,149,145,67,61,84",
+ "endOffsets": "4668,4828,4954,5064,5214,5340,5452,5554,5849,5956,6117,6244,6394,6540,6608,6670,6755"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-bs/values-bs.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,263,346,484,653,740",
+ "endColumns": "70,86,82,137,168,86,82",
+ "endOffsets": "171,258,341,479,648,735,818"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6760,7001,12048,12211,12537,12706,12793",
+ "endColumns": "70,86,82,137,168,86,82",
+ "endOffsets": "6826,7083,12126,12344,12701,12788,12871"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-bs/values-bs.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,327,406,486,568,670,764,860,986,1067,1133,1225,1302,1365,1473,1533,1599,1655,1726,1786,1840,1959,2016,2078,2132,2207,2331,2419,2502,2647,2732,2818,2951,3039,3117,3171,3225,3291,3365,3443,3530,3612,3684,3761,3834,3904,4013,4106,4178,4270,4366,4440,4516,4612,4665,4747,4814,4901,4988,5050,5114,5177,5246,5354,5459,5560,5663,5721,5779",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,78,79,81,101,93,95,125,80,65,91,76,62,107,59,65,55,70,59,53,118,56,61,53,74,123,87,82,144,84,85,132,87,77,53,53,65,73,77,86,81,71,76,72,69,108,92,71,91,95,73,75,95,52,81,66,86,86,61,63,62,68,107,104,100,102,57,57,79",
+ "endOffsets": "322,401,481,563,665,759,855,981,1062,1128,1220,1297,1360,1468,1528,1594,1650,1721,1781,1835,1954,2011,2073,2127,2202,2326,2414,2497,2642,2727,2813,2946,3034,3112,3166,3220,3286,3360,3438,3525,3607,3679,3756,3829,3899,4008,4101,4173,4265,4361,4435,4511,4607,4660,4742,4809,4896,4983,5045,5109,5172,5241,5349,5454,5555,5658,5716,5774,5854"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3102,3181,3261,3343,3445,4264,4360,4486,6935,7088,7494,7571,7634,7742,7802,7868,7924,7995,8055,8109,8228,8285,8347,8401,8476,8600,8688,8771,8916,9001,9087,9220,9308,9386,9440,9494,9560,9634,9712,9799,9881,9953,10030,10103,10173,10282,10375,10447,10539,10635,10709,10785,10881,10934,11016,11083,11170,11257,11319,11383,11446,11515,11623,11728,11829,11932,11990,12131",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,78,79,81,101,93,95,125,80,65,91,76,62,107,59,65,55,70,59,53,118,56,61,53,74,123,87,82,144,84,85,132,87,77,53,53,65,73,77,86,81,71,76,72,69,108,92,71,91,95,73,75,95,52,81,66,86,86,61,63,62,68,107,104,100,102,57,57,79",
+ "endOffsets": "372,3176,3256,3338,3440,3534,4355,4481,4562,6996,7175,7566,7629,7737,7797,7863,7919,7990,8050,8104,8223,8280,8342,8396,8471,8595,8683,8766,8911,8996,9082,9215,9303,9381,9435,9489,9555,9629,9707,9794,9876,9948,10025,10098,10168,10277,10370,10442,10534,10630,10704,10780,10876,10929,11011,11078,11165,11252,11314,11378,11441,11510,11618,11723,11824,11927,11985,12043,12206"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-nb_values-nb.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-nb/values-nb.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,262,340,482,651,730",
+ "endColumns": "69,86,77,141,168,78,75",
+ "endOffsets": "170,257,335,477,646,725,801"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6588,6832,11702,11858,12181,12350,12429",
+ "endColumns": "69,86,77,141,168,78,75",
+ "endOffsets": "6653,6914,11775,11995,12345,12424,12500"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-nb/values-nb.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,208,303,417,503,603,716,793,868,959,1052,1146,1240,1340,1433,1528,1626,1717,1808,1886,1989,2087,2183,2287,2386,2487,2640,2737",
+ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79",
+ "endOffsets": "203,298,412,498,598,711,788,863,954,1047,1141,1235,1335,1428,1523,1621,1712,1803,1881,1984,2082,2178,2282,2381,2482,2635,2732,2812"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "311,414,509,623,709,809,922,999,1074,1165,1258,1352,1446,1546,1639,1734,1832,1923,2014,2092,2195,2293,2389,2493,2592,2693,2846,12000",
+ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79",
+ "endOffsets": "409,504,618,704,804,917,994,1069,1160,1253,1347,1441,1541,1634,1729,1827,1918,2009,2087,2190,2288,2384,2488,2587,2688,2841,2938,12075"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-nb/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "125",
+ "endOffsets": "320"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5383",
+ "endColumns": "129",
+ "endOffsets": "5508"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-nb/values-nb.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,261,338,411,498,586,666,765,884,966,1030,1122,1190,1250,1337,1401,1463,1527,1595,1660,1714,1823,1881,1943,1997,2072,2192,2274,2354,2488,2566,2646,2769,2857,2935,2989,3040,3106,3174,3248,3338,3414,3485,3563,3633,3703,3803,3892,3970,4058,4148,4220,4292,4376,4427,4505,4571,4652,4735,4797,4861,4924,4993,5093,5197,5290,5390,5448,5503",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,76,72,86,87,79,98,118,81,63,91,67,59,86,63,61,63,67,64,53,108,57,61,53,74,119,81,79,133,77,79,122,87,77,53,50,65,67,73,89,75,70,77,69,69,99,88,77,87,89,71,71,83,50,77,65,80,82,61,63,62,68,99,103,92,99,57,54,77",
+ "endOffsets": "256,333,406,493,581,661,760,879,961,1025,1117,1185,1245,1332,1396,1458,1522,1590,1655,1709,1818,1876,1938,1992,2067,2187,2269,2349,2483,2561,2641,2764,2852,2930,2984,3035,3101,3169,3243,3333,3409,3480,3558,3628,3698,3798,3887,3965,4053,4143,4215,4287,4371,4422,4500,4566,4647,4730,4792,4856,4919,4988,5088,5192,5285,5385,5443,5498,5576"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2943,3020,3093,3180,3268,4074,4173,4292,6768,6919,7321,7389,7449,7536,7600,7662,7726,7794,7859,7913,8022,8080,8142,8196,8271,8391,8473,8553,8687,8765,8845,8968,9056,9134,9188,9239,9305,9373,9447,9537,9613,9684,9762,9832,9902,10002,10091,10169,10257,10347,10419,10491,10575,10626,10704,10770,10851,10934,10996,11060,11123,11192,11292,11396,11489,11589,11647,11780",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,76,72,86,87,79,98,118,81,63,91,67,59,86,63,61,63,67,64,53,108,57,61,53,74,119,81,79,133,77,79,122,87,77,53,50,65,67,73,89,75,70,77,69,69,99,88,77,87,89,71,71,83,50,77,65,80,82,61,63,62,68,99,103,92,99,57,54,77",
+ "endOffsets": "306,3015,3088,3175,3263,3343,4168,4287,4369,6827,7006,7384,7444,7531,7595,7657,7721,7789,7854,7908,8017,8075,8137,8191,8266,8386,8468,8548,8682,8760,8840,8963,9051,9129,9183,9234,9300,9368,9442,9532,9608,9679,9757,9827,9897,9997,10086,10164,10252,10342,10414,10486,10570,10621,10699,10765,10846,10929,10991,11055,11118,11187,11287,11391,11484,11584,11642,11697,11853"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-nb/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,450,572,677,829,955,1071,1170,1320,1423,1580,1704,1842,2014,2077,2135",
+ "endColumns": "101,154,121,104,151,125,115,98,149,102,156,123,137,171,62,57,73",
+ "endOffsets": "294,449,571,676,828,954,1070,1169,1319,1422,1579,1703,1841,2013,2076,2134,2208"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4374,4480,4639,4765,4874,5030,5160,5280,5513,5667,5774,5935,6063,6205,6381,6448,6510",
+ "endColumns": "105,158,125,108,155,129,119,102,153,106,160,127,141,175,66,61,77",
+ "endOffsets": "4475,4634,4760,4869,5025,5155,5275,5378,5662,5769,5930,6058,6200,6376,6443,6505,6583"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-nb/values-nb.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,165,266,378",
+ "endColumns": "109,100,111,96",
+ "endOffsets": "160,261,373,470"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6658,7011,7112,7224",
+ "endColumns": "109,100,111,96",
+ "endOffsets": "6763,7107,7219,7316"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-nb/values-nb.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,149,251,348,447,555,661,781",
+ "endColumns": "93,101,96,98,107,105,119,100",
+ "endOffsets": "144,246,343,442,550,656,776,877"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3348,3442,3544,3641,3740,3848,3954,12080",
+ "endColumns": "93,101,96,98,107,105,119,100",
+ "endOffsets": "3437,3539,3636,3735,3843,3949,4069,12176"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-az_values-az.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-az/values-az.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,215,316,426,514,621,735,817,895,986,1079,1173,1272,1372,1465,1560,1654,1745,1837,1922,2027,2133,2233,2342,2447,2549,2707,2813",
+ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83",
+ "endOffsets": "210,311,421,509,616,730,812,890,981,1074,1168,1267,1367,1460,1555,1649,1740,1832,1917,2022,2128,2228,2337,2442,2544,2702,2808,2892"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,425,526,636,724,831,945,1027,1105,1196,1289,1383,1482,1582,1675,1770,1864,1955,2047,2132,2237,2343,2443,2552,2657,2759,2917,12180",
+ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83",
+ "endOffsets": "420,521,631,719,826,940,1022,1100,1191,1284,1378,1477,1577,1670,1765,1859,1950,2042,2127,2232,2338,2438,2547,2652,2754,2912,3018,12259"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-az/values-az.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,151,255,363",
+ "endColumns": "95,103,107,102",
+ "endOffsets": "146,250,358,461"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6779,7117,7221,7329",
+ "endColumns": "95,103,107,102",
+ "endOffsets": "6870,7216,7324,7427"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-az/values-az.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,353,438,518,603,682,778,894,974,1038,1132,1200,1259,1354,1417,1481,1540,1607,1670,1724,1839,1897,1959,2013,2084,2216,2300,2380,2514,2590,2666,2795,2879,2958,3015,3066,3132,3202,3280,3363,3443,3513,3589,3667,3738,3836,3922,4005,4098,4191,4264,4336,4430,4484,4568,4635,4719,4807,4871,4936,5000,5070,5172,5276,5372,5473,5534,5589",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,87,84,79,84,78,95,115,79,63,93,67,58,94,62,63,58,66,62,53,114,57,61,53,70,131,83,79,133,75,75,128,83,78,56,50,65,69,77,82,79,69,75,77,70,97,85,82,92,92,72,71,93,53,83,66,83,87,63,64,63,69,101,103,95,100,60,54,79",
+ "endOffsets": "260,348,433,513,598,677,773,889,969,1033,1127,1195,1254,1349,1412,1476,1535,1602,1665,1719,1834,1892,1954,2008,2079,2211,2295,2375,2509,2585,2661,2790,2874,2953,3010,3061,3127,3197,3275,3358,3438,3508,3584,3662,3733,3831,3917,4000,4093,4186,4259,4331,4425,4479,4563,4630,4714,4802,4866,4931,4995,5065,5167,5271,5367,5468,5529,5584,5664"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3023,3111,3196,3276,3361,4167,4263,4379,6875,7023,7432,7500,7559,7654,7717,7781,7840,7907,7970,8024,8139,8197,8259,8313,8384,8516,8600,8680,8814,8890,8966,9095,9179,9258,9315,9366,9432,9502,9580,9663,9743,9813,9889,9967,10038,10136,10222,10305,10398,10491,10564,10636,10730,10784,10868,10935,11019,11107,11171,11236,11300,11370,11472,11576,11672,11773,11834,11968",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,87,84,79,84,78,95,115,79,63,93,67,58,94,62,63,58,66,62,53,114,57,61,53,70,131,83,79,133,75,75,128,83,78,56,50,65,69,77,82,79,69,75,77,70,97,85,82,92,92,72,71,93,53,83,66,83,87,63,64,63,69,101,103,95,100,60,54,79",
+ "endOffsets": "310,3106,3191,3271,3356,3435,4258,4374,4454,6934,7112,7495,7554,7649,7712,7776,7835,7902,7965,8019,8134,8192,8254,8308,8379,8511,8595,8675,8809,8885,8961,9090,9174,9253,9310,9361,9427,9497,9575,9658,9738,9808,9884,9962,10033,10131,10217,10300,10393,10486,10559,10631,10725,10779,10863,10930,11014,11102,11166,11231,11295,11365,11467,11571,11667,11768,11829,11884,12043"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-az/values-az.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,156,258,361,465,566,671,782",
+ "endColumns": "100,101,102,103,100,104,110,100",
+ "endOffsets": "151,253,356,460,561,666,777,878"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3440,3541,3643,3746,3850,3951,4056,12264",
+ "endColumns": "100,101,102,103,100,104,110,100",
+ "endOffsets": "3536,3638,3741,3845,3946,4051,4162,12360"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-az/values-az.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,179,263,342,474,643,727",
+ "endColumns": "73,83,78,131,168,83,78",
+ "endOffsets": "174,258,337,469,638,722,801"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6705,6939,11889,12048,12365,12534,12618",
+ "endColumns": "73,83,78,131,168,83,78",
+ "endOffsets": "6774,7018,11963,12175,12529,12613,12692"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-az/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,298,449,578,684,826,955,1071,1173,1335,1441,1586,1719,1859,2011,2071,2132",
+ "endColumns": "104,150,128,105,141,128,115,101,161,105,144,132,139,151,59,60,76",
+ "endOffsets": "297,448,577,683,825,954,1070,1172,1334,1440,1585,1718,1858,2010,2070,2131,2208"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4459,4568,4723,4856,4966,5112,5245,5365,5633,5799,5909,6058,6195,6339,6495,6559,6624",
+ "endColumns": "108,154,132,109,145,132,119,105,165,109,148,136,143,155,63,64,80",
+ "endOffsets": "4563,4718,4851,4961,5107,5240,5360,5466,5794,5904,6053,6190,6334,6490,6554,6619,6700"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-az/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "157",
+ "endOffsets": "352"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5471",
+ "endColumns": "161",
+ "endOffsets": "5628"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-de_values-de.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-de/values-de.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,355,455,563,668,786",
+ "endColumns": "97,101,99,99,107,104,117,100",
+ "endOffsets": "148,250,350,450,558,663,781,882"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3496,3594,3696,3796,3896,4004,4109,12591",
+ "endColumns": "97,101,99,99,107,104,117,100",
+ "endOffsets": "3589,3691,3791,3891,3999,4104,4222,12687"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-de/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "140",
+ "endOffsets": "335"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5593",
+ "endColumns": "144",
+ "endOffsets": "5733"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-de/values-de.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,159,260,371",
+ "endColumns": "103,100,110,99",
+ "endOffsets": "154,255,366,466"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6954,7306,7407,7518",
+ "endColumns": "103,100,110,99",
+ "endOffsets": "7053,7402,7513,7613"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-de/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,298,458,582,690,864,991,1108,1223,1399,1507,1672,1799,1957,2129,2196,2255",
+ "endColumns": "104,159,123,107,173,126,116,114,175,107,164,126,157,171,66,58,75",
+ "endOffsets": "297,457,581,689,863,990,1107,1222,1398,1506,1671,1798,1956,2128,2195,2254,2330"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4531,4640,4804,4932,5044,5222,5353,5474,5738,5918,6030,6199,6330,6492,6668,6739,6802",
+ "endColumns": "108,163,127,111,177,130,120,118,179,111,168,130,161,175,70,62,79",
+ "endOffsets": "4635,4799,4927,5039,5217,5348,5469,5588,5913,6025,6194,6325,6487,6663,6734,6797,6877"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-de/values-de.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,265,348,488,657,737",
+ "endColumns": "71,87,82,139,168,79,75",
+ "endOffsets": "172,260,343,483,652,732,808"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6882,7124,12204,12369,12692,12861,12941",
+ "endColumns": "71,87,82,139,168,79,75",
+ "endOffsets": "6949,7207,12282,12504,12856,12936,13012"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-de/values-de.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,210,308,420,506,612,727,805,880,972,1066,1162,1263,1370,1470,1574,1672,1770,1867,1949,2060,2162,2260,2367,2470,2574,2730,2832",
+ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81",
+ "endOffsets": "205,303,415,501,607,722,800,875,967,1061,1157,1258,1365,1465,1569,1667,1765,1862,1944,2055,2157,2255,2362,2465,2569,2725,2827,2909"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "333,438,536,648,734,840,955,1033,1108,1200,1294,1390,1491,1598,1698,1802,1900,1998,2095,2177,2288,2390,2488,2595,2698,2802,2958,12509",
+ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81",
+ "endOffsets": "433,531,643,729,835,950,1028,1103,1195,1289,1385,1486,1593,1693,1797,1895,1993,2090,2172,2283,2385,2483,2590,2693,2797,2953,3055,12586"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-de/values-de.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,283,374,463,547,637,719,820,942,1023,1089,1183,1253,1312,1420,1486,1555,1613,1685,1749,1803,1931,1991,2053,2107,2185,2322,2414,2498,2643,2727,2813,2946,3036,3115,3172,3223,3289,3363,3445,3538,3613,3687,3765,3837,3911,4021,4113,4195,4284,4373,4447,4525,4611,4666,4745,4812,4892,4976,5038,5102,5165,5234,5341,5448,5547,5653,5714,5769",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,90,88,83,89,81,100,121,80,65,93,69,58,107,65,68,57,71,63,53,127,59,61,53,77,136,91,83,144,83,85,132,89,78,56,50,65,73,81,92,74,73,77,71,73,109,91,81,88,88,73,77,85,54,78,66,79,83,61,63,62,68,106,106,98,105,60,54,81",
+ "endOffsets": "278,369,458,542,632,714,815,937,1018,1084,1178,1248,1307,1415,1481,1550,1608,1680,1744,1798,1926,1986,2048,2102,2180,2317,2409,2493,2638,2722,2808,2941,3031,3110,3167,3218,3284,3358,3440,3533,3608,3682,3760,3832,3906,4016,4108,4190,4279,4368,4442,4520,4606,4661,4740,4807,4887,4971,5033,5097,5160,5229,5336,5443,5542,5648,5709,5764,5846"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3060,3151,3240,3324,3414,4227,4328,4450,7058,7212,7618,7688,7747,7855,7921,7990,8048,8120,8184,8238,8366,8426,8488,8542,8620,8757,8849,8933,9078,9162,9248,9381,9471,9550,9607,9658,9724,9798,9880,9973,10048,10122,10200,10272,10346,10456,10548,10630,10719,10808,10882,10960,11046,11101,11180,11247,11327,11411,11473,11537,11600,11669,11776,11883,11982,12088,12149,12287",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,90,88,83,89,81,100,121,80,65,93,69,58,107,65,68,57,71,63,53,127,59,61,53,77,136,91,83,144,83,85,132,89,78,56,50,65,73,81,92,74,73,77,71,73,109,91,81,88,88,73,77,85,54,78,66,79,83,61,63,62,68,106,106,98,105,60,54,81",
+ "endOffsets": "328,3146,3235,3319,3409,3491,4323,4445,4526,7119,7301,7683,7742,7850,7916,7985,8043,8115,8179,8233,8361,8421,8483,8537,8615,8752,8844,8928,9073,9157,9243,9376,9466,9545,9602,9653,9719,9793,9875,9968,10043,10117,10195,10267,10341,10451,10543,10625,10714,10803,10877,10955,11041,11096,11175,11242,11322,11406,11468,11532,11595,11664,11771,11878,11977,12083,12144,12199,12364"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v16_values-v16.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v16/values-v16.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "5",
+ "endColumns": "12",
+ "endOffsets": "223"
+ },
+ "to": {
+ "startLines": "3",
+ "startColumns": "4",
+ "startOffsets": "121",
+ "endLines": "6",
+ "endColumns": "12",
+ "endOffsets": "289"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-v16/values-v16.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "65",
+ "endOffsets": "116"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-kk_values-kk.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-kk/values-kk.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,273,351,427,506,600,688,780,892,974,1038,1133,1203,1266,1373,1438,1505,1566,1633,1695,1749,1863,1922,1983,2037,2112,2238,2326,2416,2558,2630,2703,2840,2929,3010,3067,3123,3189,3260,3337,3423,3503,3575,3651,3732,3802,3902,3989,4061,4152,4245,4319,4394,4486,4538,4620,4686,4770,4856,4918,4982,5045,5114,5218,5322,5416,5516,5577,5637",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,75,78,93,87,91,111,81,63,94,69,62,106,64,66,60,66,61,53,113,58,60,53,74,125,87,89,141,71,72,136,88,80,56,55,65,70,76,85,79,71,75,80,69,99,86,71,90,92,73,74,91,51,81,65,83,85,61,63,62,68,103,103,93,99,60,59,83",
+ "endOffsets": "268,346,422,501,595,683,775,887,969,1033,1128,1198,1261,1368,1433,1500,1561,1628,1690,1744,1858,1917,1978,2032,2107,2233,2321,2411,2553,2625,2698,2835,2924,3005,3062,3118,3184,3255,3332,3418,3498,3570,3646,3727,3797,3897,3984,4056,4147,4240,4314,4389,4481,4533,4615,4681,4765,4851,4913,4977,5040,5109,5213,5317,5411,5511,5572,5632,5716"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3014,3092,3168,3247,3341,4143,4235,4347,6816,6966,7378,7448,7511,7618,7683,7750,7811,7878,7940,7994,8108,8167,8228,8282,8357,8483,8571,8661,8803,8875,8948,9085,9174,9255,9312,9368,9434,9505,9582,9668,9748,9820,9896,9977,10047,10147,10234,10306,10397,10490,10564,10639,10731,10783,10865,10931,11015,11101,11163,11227,11290,11359,11463,11567,11661,11761,11822,11961",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,75,78,93,87,91,111,81,63,94,69,62,106,64,66,60,66,61,53,113,58,60,53,74,125,87,89,141,71,72,136,88,80,56,55,65,70,76,85,79,71,75,80,69,99,86,71,90,92,73,74,91,51,81,65,83,85,61,63,62,68,103,103,93,99,60,59,83",
+ "endOffsets": "318,3087,3163,3242,3336,3424,4230,4342,4424,6875,7056,7443,7506,7613,7678,7745,7806,7873,7935,7989,8103,8162,8223,8277,8352,8478,8566,8656,8798,8870,8943,9080,9169,9250,9307,9363,9429,9500,9577,9663,9743,9815,9891,9972,10042,10142,10229,10301,10392,10485,10559,10634,10726,10778,10860,10926,11010,11096,11158,11222,11285,11354,11458,11562,11656,11756,11817,11877,12040"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-kk/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "159",
+ "endOffsets": "354"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5415",
+ "endColumns": "163",
+ "endOffsets": "5574"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-kk/values-kk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,252,354,457,561,658,769",
+ "endColumns": "94,101,101,102,103,96,110,100",
+ "endOffsets": "145,247,349,452,556,653,764,865"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3429,3524,3626,3728,3831,3935,4032,12270",
+ "endColumns": "94,101,101,102,103,96,110,100",
+ "endOffsets": "3519,3621,3723,3826,3930,4027,4138,12366"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-kk/values-kk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,318,428,513,619,738,818,895,986,1079,1174,1268,1368,1461,1556,1653,1744,1835,1916,2021,2124,2222,2329,2435,2535,2701,2796",
+ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81",
+ "endOffsets": "208,313,423,508,614,733,813,890,981,1074,1169,1263,1363,1456,1551,1648,1739,1830,1911,2016,2119,2217,2324,2430,2530,2696,2791,2873"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "323,431,536,646,731,837,956,1036,1113,1204,1297,1392,1486,1586,1679,1774,1871,1962,2053,2134,2239,2342,2440,2547,2653,2753,2919,12188",
+ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81",
+ "endOffsets": "426,531,641,726,832,951,1031,1108,1199,1292,1387,1481,1581,1674,1769,1866,1957,2048,2129,2234,2337,2435,2542,2648,2748,2914,3009,12265"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-kk/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,292,441,563,665,801,923,1042,1147,1308,1410,1563,1688,1837,1990,2049,2104",
+ "endColumns": "98,148,121,101,135,121,118,104,160,101,152,124,148,152,58,54,73",
+ "endOffsets": "291,440,562,664,800,922,1041,1146,1307,1409,1562,1687,1836,1989,2048,2103,2177"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4429,4532,4685,4811,4917,5057,5183,5306,5579,5744,5850,6007,6136,6289,6446,6509,6568",
+ "endColumns": "102,152,125,105,139,125,122,108,164,105,156,128,152,156,62,58,77",
+ "endOffsets": "4527,4680,4806,4912,5052,5178,5301,5410,5739,5845,6002,6131,6284,6441,6504,6563,6641"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-kk/values-kk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,261,340,483,652,736",
+ "endColumns": "69,85,78,142,168,83,79",
+ "endOffsets": "170,256,335,478,647,731,811"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6646,6880,11882,12045,12371,12540,12624",
+ "endColumns": "69,85,78,142,168,83,79",
+ "endOffsets": "6711,6961,11956,12183,12535,12619,12699"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-kk/values-kk.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,259,367",
+ "endColumns": "99,103,107,104",
+ "endOffsets": "150,254,362,467"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6716,7061,7165,7273",
+ "endColumns": "99,103,107,104",
+ "endOffsets": "6811,7160,7268,7373"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-sv_values-sv.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sv/values-sv.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,264,342,479,648,727",
+ "endColumns": "70,87,77,136,168,78,75",
+ "endOffsets": "171,259,337,474,643,722,798"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6676,6910,11803,11959,12277,12446,12525",
+ "endColumns": "70,87,77,136,168,78,75",
+ "endOffsets": "6742,6993,11876,12091,12441,12520,12596"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-sv/values-sv.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,255,368",
+ "endColumns": "99,99,112,97",
+ "endOffsets": "150,250,363,461"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6747,7090,7190,7303",
+ "endColumns": "99,99,112,97",
+ "endOffsets": "6842,7185,7298,7396"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-sv/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "143",
+ "endOffsets": "338"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5464",
+ "endColumns": "147",
+ "endOffsets": "5607"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-sv/values-sv.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,252,350,449,557,662,783",
+ "endColumns": "94,101,97,98,107,104,120,100",
+ "endOffsets": "145,247,345,444,552,657,778,879"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3443,3538,3640,3738,3837,3945,4050,12176",
+ "endColumns": "94,101,97,98,107,104,120,100",
+ "endOffsets": "3533,3635,3733,3832,3940,4045,4166,12272"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-sv/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,449,572,678,815,936,1055,1155,1299,1403,1561,1685,1835,1987,2049,2108",
+ "endColumns": "102,152,122,105,136,120,118,99,143,103,157,123,149,151,61,58,74",
+ "endOffsets": "295,448,571,677,814,935,1054,1154,1298,1402,1560,1684,1834,1986,2048,2107,2182"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4470,4577,4734,4861,4971,5112,5237,5360,5612,5760,5868,6030,6158,6312,6468,6534,6597",
+ "endColumns": "106,156,126,109,140,124,122,103,147,107,161,127,153,155,65,62,78",
+ "endOffsets": "4572,4729,4856,4966,5107,5232,5355,5459,5755,5863,6025,6153,6307,6463,6529,6592,6671"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sv/values-sv.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,266,365,457,538,640,720,818,940,1019,1082,1174,1238,1298,1390,1455,1518,1580,1647,1711,1765,1870,1929,1990,2044,2113,2232,2315,2399,2535,2614,2698,2820,2906,2984,3038,3089,3155,3224,3298,3387,3463,3535,3612,3683,3757,3868,3959,4038,4125,4213,4285,4359,4444,4495,4574,4641,4722,4806,4868,4932,4995,5063,5170,5269,5368,5463,5521,5576",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,98,91,80,101,79,97,121,78,62,91,63,59,91,64,62,61,66,63,53,104,58,60,53,68,118,82,83,135,78,83,121,85,77,53,50,65,68,73,88,75,71,76,70,73,110,90,78,86,87,71,73,84,50,78,66,80,83,61,63,62,67,106,98,98,94,57,54,77",
+ "endOffsets": "261,360,452,533,635,715,813,935,1014,1077,1169,1233,1293,1385,1450,1513,1575,1642,1706,1760,1865,1924,1985,2039,2108,2227,2310,2394,2530,2609,2693,2815,2901,2979,3033,3084,3150,3219,3293,3382,3458,3530,3607,3678,3752,3863,3954,4033,4120,4208,4280,4354,4439,4490,4569,4636,4717,4801,4863,4927,4990,5058,5165,5264,5363,5458,5516,5571,5649"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2989,3088,3180,3261,3363,4171,4269,4391,6847,6998,7401,7465,7525,7617,7682,7745,7807,7874,7938,7992,8097,8156,8217,8271,8340,8459,8542,8626,8762,8841,8925,9047,9133,9211,9265,9316,9382,9451,9525,9614,9690,9762,9839,9910,9984,10095,10186,10265,10352,10440,10512,10586,10671,10722,10801,10868,10949,11033,11095,11159,11222,11290,11397,11496,11595,11690,11748,11881",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,98,91,80,101,79,97,121,78,62,91,63,59,91,64,62,61,66,63,53,104,58,60,53,68,118,82,83,135,78,83,121,85,77,53,50,65,68,73,88,75,71,76,70,73,110,90,78,86,87,71,73,84,50,78,66,80,83,61,63,62,67,106,98,98,94,57,54,77",
+ "endOffsets": "311,3083,3175,3256,3358,3438,4264,4386,4465,6905,7085,7460,7520,7612,7677,7740,7802,7869,7933,7987,8092,8151,8212,8266,8335,8454,8537,8621,8757,8836,8920,9042,9128,9206,9260,9311,9377,9446,9520,9609,9685,9757,9834,9905,9979,10090,10181,10260,10347,10435,10507,10581,10666,10717,10796,10863,10944,11028,11090,11154,11217,11285,11392,11491,11590,11685,11743,11798,11954"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sv/values-sv.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,208,311,422,506,608,721,798,873,966,1061,1156,1250,1352,1447,1544,1642,1738,1831,1911,2017,2116,2212,2317,2420,2522,2676,2778",
+ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79",
+ "endOffsets": "203,306,417,501,603,716,793,868,961,1056,1151,1245,1347,1442,1539,1637,1733,1826,1906,2012,2111,2207,2312,2415,2517,2671,2773,2853"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "316,419,522,633,717,819,932,1009,1084,1177,1272,1367,1461,1563,1658,1755,1853,1949,2042,2122,2228,2327,2423,2528,2631,2733,2887,12096",
+ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79",
+ "endOffsets": "414,517,628,712,814,927,1004,1079,1172,1267,1362,1456,1558,1653,1750,1848,1944,2037,2117,2223,2322,2418,2523,2626,2728,2882,2984,12171"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ja_values-ja.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ja/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "117",
+ "endOffsets": "312"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5106",
+ "endColumns": "121",
+ "endOffsets": "5223"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ja/values-ja.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,147,247,341,437,530,623,724",
+ "endColumns": "91,99,93,95,92,92,100,100",
+ "endOffsets": "142,242,336,432,525,618,719,820"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3252,3344,3444,3538,3634,3727,3820,11186",
+ "endColumns": "91,99,93,95,92,92,100,100",
+ "endOffsets": "3339,3439,3533,3629,3722,3815,3916,11282"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ja/values-ja.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,202,295,400,482,580,688,766,841,932,1025,1120,1214,1314,1407,1502,1596,1687,1778,1856,1958,2056,2151,2254,2350,2446,2594,2691",
+ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78",
+ "endOffsets": "197,290,395,477,575,683,761,836,927,1020,1115,1209,1309,1402,1497,1591,1682,1773,1851,1953,2051,2146,2249,2345,2441,2589,2686,2765"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "303,400,493,598,680,778,886,964,1039,1130,1223,1318,1412,1512,1605,1700,1794,1885,1976,2054,2156,2254,2349,2452,2548,2644,2792,11107",
+ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78",
+ "endOffsets": "395,488,593,675,773,881,959,1034,1125,1218,1313,1407,1507,1600,1695,1789,1880,1971,2049,2151,2249,2344,2447,2543,2639,2787,2884,11181"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ja/values-ja.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,253,320,384,453,534,616,701,805,881,944,1028,1092,1150,1231,1292,1356,1411,1470,1527,1581,1674,1730,1787,1841,1907,2007,2083,2164,2286,2348,2410,2511,2590,2665,2718,2769,2835,2905,2975,3052,3122,3186,3257,3325,3388,3479,3558,3621,3701,3783,3855,3926,3998,4046,4118,4182,4257,4334,4396,4460,4523,4590,4676,4762,4843,4926,4983,5038",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,66,63,68,80,81,84,103,75,62,83,63,57,80,60,63,54,58,56,53,92,55,56,53,65,99,75,80,121,61,61,100,78,74,52,50,65,69,69,76,69,63,70,67,62,90,78,62,79,81,71,70,71,47,71,63,74,76,61,63,62,66,85,85,80,82,56,54,72",
+ "endOffsets": "248,315,379,448,529,611,696,800,876,939,1023,1087,1145,1226,1287,1351,1406,1465,1522,1576,1669,1725,1782,1836,1902,2002,2078,2159,2281,2343,2405,2506,2585,2660,2713,2764,2830,2900,2970,3047,3117,3181,3252,3320,3383,3474,3553,3616,3696,3778,3850,3921,3993,4041,4113,4177,4252,4329,4391,4455,4518,4585,4671,4757,4838,4921,4978,5033,5106"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2889,2956,3020,3089,3170,3921,4006,4110,6305,6451,6826,6890,6948,7029,7090,7154,7209,7268,7325,7379,7472,7528,7585,7639,7705,7805,7881,7962,8084,8146,8208,8309,8388,8463,8516,8567,8633,8703,8773,8850,8920,8984,9055,9123,9186,9277,9356,9419,9499,9581,9653,9724,9796,9844,9916,9980,10055,10132,10194,10258,10321,10388,10474,10560,10641,10724,10781,10906",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,66,63,68,80,81,84,103,75,62,83,63,57,80,60,63,54,58,56,53,92,55,56,53,65,99,75,80,121,61,61,100,78,74,52,50,65,69,69,76,69,63,70,67,62,90,78,62,79,81,71,70,71,47,71,63,74,76,61,63,62,66,85,85,80,82,56,54,72",
+ "endOffsets": "298,2951,3015,3084,3165,3247,4001,4105,4181,6363,6530,6885,6943,7024,7085,7149,7204,7263,7320,7374,7467,7523,7580,7634,7700,7800,7876,7957,8079,8141,8203,8304,8383,8458,8511,8562,8628,8698,8768,8845,8915,8979,9050,9118,9181,9272,9351,9414,9494,9576,9648,9719,9791,9839,9911,9975,10050,10127,10189,10253,10316,10383,10469,10555,10636,10719,10776,10831,10974"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ja/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,293,423,539,641,769,885,986,1081,1211,1308,1437,1552,1668,1784,1840,1895",
+ "endColumns": "99,129,115,101,127,115,100,94,129,96,128,114,115,115,55,54,66",
+ "endOffsets": "292,422,538,640,768,884,985,1080,1210,1307,1436,1551,1667,1783,1839,1894,1961"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4186,4290,4424,4544,4650,4782,4902,5007,5228,5362,5463,5596,5715,5835,5955,6015,6074",
+ "endColumns": "103,133,119,105,131,119,104,98,133,100,132,118,119,119,59,58,70",
+ "endOffsets": "4285,4419,4539,4645,4777,4897,5002,5101,5357,5458,5591,5710,5830,5950,6010,6069,6140"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ja/values-ja.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,172,255,325,453,621,701",
+ "endColumns": "66,82,69,127,167,79,75",
+ "endOffsets": "167,250,320,448,616,696,772"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6145,6368,10836,10979,11287,11455,11535",
+ "endColumns": "66,82,69,127,167,79,75",
+ "endOffsets": "6207,6446,10901,11102,11450,11530,11606"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ja/values-ja.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,148,243,344",
+ "endColumns": "92,94,100,94",
+ "endOffsets": "143,238,339,434"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6212,6535,6630,6731",
+ "endColumns": "92,94,100,94",
+ "endOffsets": "6300,6625,6726,6821"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-fi_values-fi.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-fi/values-fi.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,158,259,368",
+ "endColumns": "102,100,108,98",
+ "endOffsets": "153,254,363,462"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6655,7008,7109,7218",
+ "endColumns": "102,100,108,98",
+ "endOffsets": "6753,7104,7213,7312"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-fi/values-fi.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,268,344,418,501,590,672,768,876,960,1025,1118,1193,1258,1346,1411,1477,1535,1606,1672,1726,1836,1896,1960,2014,2087,2203,2287,2368,2501,2586,2671,2804,2894,2968,3020,3071,3137,3214,3296,3380,3454,3528,3607,3684,3756,3863,3952,4028,4119,4214,4288,4361,4455,4509,4583,4655,4741,4827,4889,4953,5016,5087,5188,5291,5386,5486,5542,5597",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,75,73,82,88,81,95,107,83,64,92,74,64,87,64,65,57,70,65,53,109,59,63,53,72,115,83,80,132,84,84,132,89,73,51,50,65,76,81,83,73,73,78,76,71,106,88,75,90,94,73,72,93,53,73,71,85,85,61,63,62,70,100,102,94,99,55,54,78",
+ "endOffsets": "263,339,413,496,585,667,763,871,955,1020,1113,1188,1253,1341,1406,1472,1530,1601,1667,1721,1831,1891,1955,2009,2082,2198,2282,2363,2496,2581,2666,2799,2889,2963,3015,3066,3132,3209,3291,3375,3449,3523,3602,3679,3751,3858,3947,4023,4114,4209,4283,4356,4450,4504,4578,4650,4736,4822,4884,4948,5011,5082,5183,5286,5381,5481,5537,5592,5671"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2988,3064,3138,3221,3310,4126,4222,4330,6758,6915,7317,7392,7457,7545,7610,7676,7734,7805,7871,7925,8035,8095,8159,8213,8286,8402,8486,8567,8700,8785,8870,9003,9093,9167,9219,9270,9336,9413,9495,9579,9653,9727,9806,9883,9955,10062,10151,10227,10318,10413,10487,10560,10654,10708,10782,10854,10940,11026,11088,11152,11215,11286,11387,11490,11585,11685,11741,11874",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,75,73,82,88,81,95,107,83,64,92,74,64,87,64,65,57,70,65,53,109,59,63,53,72,115,83,80,132,84,84,132,89,73,51,50,65,76,81,83,73,73,78,76,71,106,88,75,90,94,73,72,93,53,73,71,85,85,61,63,62,70,100,102,94,99,55,54,78",
+ "endOffsets": "313,3059,3133,3216,3305,3387,4217,4325,4409,6818,7003,7387,7452,7540,7605,7671,7729,7800,7866,7920,8030,8090,8154,8208,8281,8397,8481,8562,8695,8780,8865,8998,9088,9162,9214,9265,9331,9408,9490,9574,9648,9722,9801,9878,9950,10057,10146,10222,10313,10408,10482,10555,10649,10703,10777,10849,10935,11021,11083,11147,11210,11281,11382,11485,11580,11680,11736,11791,11948"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-fi/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,449,576,678,817,939,1051,1154,1291,1393,1538,1660,1804,1939,2001,2067",
+ "endColumns": "106,148,126,101,138,121,111,102,136,101,144,121,143,134,61,65,78",
+ "endOffsets": "299,448,575,677,816,938,1050,1153,1290,1392,1537,1659,1803,1938,2000,2066,2145"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4414,4525,4678,4809,4915,5058,5184,5300,5557,5698,5804,5953,6079,6227,6366,6432,6502",
+ "endColumns": "110,152,130,105,142,125,115,106,140,105,148,125,147,138,65,69,82",
+ "endOffsets": "4520,4673,4804,4910,5053,5179,5295,5402,5693,5799,5948,6074,6222,6361,6427,6497,6580"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-fi/values-fi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,313,422,508,613,731,817,896,987,1080,1175,1269,1363,1456,1552,1651,1742,1836,1916,2023,2124,2221,2327,2427,2525,2675,2775",
+ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80",
+ "endOffsets": "208,308,417,503,608,726,812,891,982,1075,1170,1264,1358,1451,1547,1646,1737,1831,1911,2018,2119,2216,2322,2422,2520,2670,2770,2851"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "318,426,526,635,721,826,944,1030,1109,1200,1293,1388,1482,1576,1669,1765,1864,1955,2049,2129,2236,2337,2434,2540,2640,2738,2888,12088",
+ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80",
+ "endOffsets": "421,521,630,716,821,939,1025,1104,1195,1288,1383,1477,1571,1664,1760,1859,1950,2044,2124,2231,2332,2429,2535,2635,2733,2883,2983,12164"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-fi/values-fi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,267,345,480,649,739",
+ "endColumns": "69,91,77,134,168,89,81",
+ "endOffsets": "170,262,340,475,644,734,816"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6585,6823,11796,11953,12270,12439,12529",
+ "endColumns": "69,91,77,134,168,89,81",
+ "endOffsets": "6650,6910,11869,12083,12434,12524,12606"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-fi/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "145",
+ "endOffsets": "340"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5407",
+ "endColumns": "149",
+ "endOffsets": "5552"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-fi/values-fi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,351,456,561,673,789",
+ "endColumns": "95,101,97,104,104,111,115,100",
+ "endOffsets": "146,248,346,451,556,668,784,885"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3392,3488,3590,3688,3793,3898,4010,12169",
+ "endColumns": "95,101,97,104,104,111,115,100",
+ "endOffsets": "3483,3585,3683,3788,3893,4005,4121,12265"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ta_values-ta.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ta/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,294,442,565,667,815,939,1048,1145,1321,1424,1573,1704,1854,2006,2064,2123",
+ "endColumns": "100,147,122,101,147,123,108,96,175,102,148,130,149,151,57,58,76",
+ "endOffsets": "293,441,564,666,814,938,1047,1144,1320,1423,1572,1703,1853,2005,2063,2122,2199"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4600,4705,4857,4984,5090,5242,5370,5483,5745,5925,6032,6185,6320,6474,6630,6692,6755",
+ "endColumns": "104,151,126,105,151,127,112,100,179,106,152,134,153,155,61,62,80",
+ "endOffsets": "4700,4852,4979,5085,5237,5365,5478,5579,5920,6027,6180,6315,6469,6625,6687,6750,6831"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ta/values-ta.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,172,274,381",
+ "endColumns": "116,101,106,103",
+ "endOffsets": "167,269,376,480"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6906,7284,7386,7493",
+ "endColumns": "116,101,106,103",
+ "endOffsets": "7018,7381,7488,7592"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ta/values-ta.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,254,353,451,558,673,801",
+ "endColumns": "95,102,98,97,106,114,127,100",
+ "endOffsets": "146,249,348,446,553,668,796,897"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3543,3639,3742,3841,3939,4046,4161,12658",
+ "endColumns": "95,102,98,97,106,114,127,100",
+ "endOffsets": "3634,3737,3836,3934,4041,4156,4284,12754"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ta/values-ta.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,264,347,496,665,746",
+ "endColumns": "69,88,82,148,168,80,76",
+ "endOffsets": "170,259,342,491,660,741,818"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6836,7087,12258,12427,12759,12928,13009",
+ "endColumns": "69,88,82,148,168,80,76",
+ "endOffsets": "6901,7171,12336,12571,12923,13004,13081"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ta/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "156",
+ "endOffsets": "351"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5584",
+ "endColumns": "160",
+ "endOffsets": "5740"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ta/values-ta.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,272,360,446,530,633,727,836,954,1038,1102,1210,1278,1339,1447,1514,1600,1658,1742,1809,1863,1986,2048,2111,2165,2253,2381,2467,2549,2681,2761,2842,2998,3087,3171,3228,3280,3346,3431,3519,3611,3691,3760,3837,3917,3985,4100,4199,4282,4374,4468,4542,4628,4722,4772,4855,4921,5006,5093,5156,5221,5284,5353,5461,5559,5657,5754,5815,5871",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,87,85,83,102,93,108,117,83,63,107,67,60,107,66,85,57,83,66,53,122,61,62,53,87,127,85,81,131,79,80,155,88,83,56,51,65,84,87,91,79,68,76,79,67,114,98,82,91,93,73,85,93,49,82,65,84,86,62,64,62,68,107,97,97,96,60,55,85",
+ "endOffsets": "267,355,441,525,628,722,831,949,1033,1097,1205,1273,1334,1442,1509,1595,1653,1737,1804,1858,1981,2043,2106,2160,2248,2376,2462,2544,2676,2756,2837,2993,3082,3166,3223,3275,3341,3426,3514,3606,3686,3755,3832,3912,3980,4095,4194,4277,4369,4463,4537,4623,4717,4767,4850,4916,5001,5088,5151,5216,5279,5348,5456,5554,5652,5749,5810,5866,5952"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3088,3176,3262,3346,3449,4289,4398,4516,7023,7176,7597,7665,7726,7834,7901,7987,8045,8129,8196,8250,8373,8435,8498,8552,8640,8768,8854,8936,9068,9148,9229,9385,9474,9558,9615,9667,9733,9818,9906,9998,10078,10147,10224,10304,10372,10487,10586,10669,10761,10855,10929,11015,11109,11159,11242,11308,11393,11480,11543,11608,11671,11740,11848,11946,12044,12141,12202,12341",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,87,85,83,102,93,108,117,83,63,107,67,60,107,66,85,57,83,66,53,122,61,62,53,87,127,85,81,131,79,80,155,88,83,56,51,65,84,87,91,79,68,76,79,67,114,98,82,91,93,73,85,93,49,82,65,84,86,62,64,62,68,107,97,97,96,60,55,85",
+ "endOffsets": "317,3171,3257,3341,3444,3538,4393,4511,4595,7082,7279,7660,7721,7829,7896,7982,8040,8124,8191,8245,8368,8430,8493,8547,8635,8763,8849,8931,9063,9143,9224,9380,9469,9553,9610,9662,9728,9813,9901,9993,10073,10142,10219,10299,10367,10482,10581,10664,10756,10850,10924,11010,11104,11154,11237,11303,11388,11475,11538,11603,11666,11735,11843,11941,12039,12136,12197,12253,12422"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ta/values-ta.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,218,320,435,524,635,756,835,911,1009,1109,1204,1298,1405,1505,1607,1701,1799,1897,1978,2086,2189,2288,2404,2507,2612,2769,2871",
+ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81",
+ "endOffsets": "213,315,430,519,630,751,830,906,1004,1104,1199,1293,1400,1500,1602,1696,1794,1892,1973,2081,2184,2283,2399,2502,2607,2764,2866,2948"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "322,435,537,652,741,852,973,1052,1128,1226,1326,1421,1515,1622,1722,1824,1918,2016,2114,2195,2303,2406,2505,2621,2724,2829,2986,12576",
+ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81",
+ "endOffsets": "430,532,647,736,847,968,1047,1123,1221,1321,1416,1510,1617,1717,1819,1913,2011,2109,2190,2298,2401,2500,2616,2719,2824,2981,3083,12653"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-as_values-as.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-as/values-as.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,156,259,367,472,576,676,805",
+ "endColumns": "100,102,107,104,103,99,128,100",
+ "endOffsets": "151,254,362,467,571,671,800,901"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3472,3573,3676,3784,3889,3993,4093,12156",
+ "endColumns": "100,102,107,104,103,99,128,100",
+ "endOffsets": "3568,3671,3779,3884,3988,4088,4217,12252"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-as/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "121",
+ "endOffsets": "316"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5497",
+ "endColumns": "125",
+ "endOffsets": "5618"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-as/values-as.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,312,419,510,615,735,812,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1910,2023,2131,2234,2343,2459,2579,2746,2848",
+ "endColumns": "107,98,106,90,104,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,102,108,115,119,166,101,82",
+ "endOffsets": "208,307,414,505,610,730,807,882,973,1066,1161,1255,1355,1448,1543,1637,1728,1819,1905,2018,2126,2229,2338,2454,2574,2741,2843,2926"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "322,430,529,636,727,832,952,1029,1104,1195,1288,1383,1477,1577,1670,1765,1859,1950,2041,2127,2240,2348,2451,2560,2676,2796,2963,12073",
+ "endColumns": "107,98,106,90,104,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,102,108,115,119,166,101,82",
+ "endOffsets": "425,524,631,722,827,947,1024,1099,1190,1283,1378,1472,1572,1665,1760,1854,1945,2036,2122,2235,2343,2446,2555,2671,2791,2958,3060,12151"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-as/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,446,565,671,797,915,1024,1132,1271,1376,1522,1643,1772,1921,1977,2039",
+ "endColumns": "103,148,118,105,125,117,108,107,138,104,145,120,128,148,55,61,81",
+ "endOffsets": "296,445,564,670,796,914,1023,1131,1270,1375,1521,1642,1771,1920,1976,2038,2120"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4526,4634,4787,4910,5020,5150,5272,5385,5623,5766,5875,6025,6150,6283,6436,6496,6562",
+ "endColumns": "107,152,122,109,129,121,112,111,142,108,149,124,132,152,59,65,85",
+ "endOffsets": "4629,4782,4905,5015,5145,5267,5380,5492,5761,5870,6020,6145,6278,6431,6491,6557,6643"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-as/values-as.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,272,354,432,509,595,679,781,904,983,1048,1137,1202,1261,1347,1411,1475,1538,1608,1672,1726,1831,1889,1951,2005,2077,2194,2281,2364,2504,2581,2662,2789,2880,2957,3011,3062,3128,3198,3275,3362,3437,3508,3585,3654,3723,3830,3921,3993,4082,4171,4245,4317,4403,4453,4532,4598,4678,4762,4824,4888,4951,5020,5120,5215,5307,5399,5457,5512",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,81,77,76,85,83,101,122,78,64,88,64,58,85,63,63,62,69,63,53,104,57,61,53,71,116,86,82,139,76,80,126,90,76,53,50,65,69,76,86,74,70,76,68,68,106,90,71,88,88,73,71,85,49,78,65,79,83,61,63,62,68,99,94,91,91,57,54,80",
+ "endOffsets": "267,349,427,504,590,674,776,899,978,1043,1132,1197,1256,1342,1406,1470,1533,1603,1667,1721,1826,1884,1946,2000,2072,2189,2276,2359,2499,2576,2657,2784,2875,2952,3006,3057,3123,3193,3270,3357,3432,3503,3580,3649,3718,3825,3916,3988,4077,4166,4240,4312,4398,4448,4527,4593,4673,4757,4819,4883,4946,5015,5115,5210,5302,5394,5452,5507,5588"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3065,3147,3225,3302,3388,4222,4324,4447,6833,6982,7391,7456,7515,7601,7665,7729,7792,7862,7926,7980,8085,8143,8205,8259,8331,8448,8535,8618,8758,8835,8916,9043,9134,9211,9265,9316,9382,9452,9529,9616,9691,9762,9839,9908,9977,10084,10175,10247,10336,10425,10499,10571,10657,10707,10786,10852,10932,11016,11078,11142,11205,11274,11374,11469,11561,11653,11711,11849",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,81,77,76,85,83,101,122,78,64,88,64,58,85,63,63,62,69,63,53,104,57,61,53,71,116,86,82,139,76,80,126,90,76,53,50,65,69,76,86,74,70,76,68,68,106,90,71,88,88,73,71,85,49,78,65,79,83,61,63,62,68,99,94,91,91,57,54,80",
+ "endOffsets": "317,3142,3220,3297,3383,3467,4319,4442,4521,6893,7066,7451,7510,7596,7660,7724,7787,7857,7921,7975,8080,8138,8200,8254,8326,8443,8530,8613,8753,8830,8911,9038,9129,9206,9260,9311,9377,9447,9524,9611,9686,9757,9834,9903,9972,10079,10170,10242,10331,10420,10494,10566,10652,10702,10781,10847,10927,11011,11073,11137,11200,11269,11369,11464,11556,11648,11706,11761,11925"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-as/values-as.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,163,269,377",
+ "endColumns": "107,105,107,105",
+ "endOffsets": "158,264,372,478"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6725,7071,7177,7285",
+ "endColumns": "107,105,107,105",
+ "endOffsets": "6828,7172,7280,7386"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-as/values-as.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,182,266,349,492,661,752",
+ "endColumns": "76,83,82,142,168,90,79",
+ "endOffsets": "177,261,344,487,656,747,827"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6648,6898,11766,11930,12257,12426,12517",
+ "endColumns": "76,83,82,142,168,90,79",
+ "endOffsets": "6720,6977,11844,12068,12421,12512,12592"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-et_values-et.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-et/values-et.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,252,350,453,559,664,784",
+ "endColumns": "94,101,97,102,105,104,119,100",
+ "endOffsets": "145,247,345,448,554,659,779,880"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3461,3556,3658,3756,3859,3965,4070,12294",
+ "endColumns": "94,101,97,102,105,104,119,100",
+ "endOffsets": "3551,3653,3751,3854,3960,4065,4185,12390"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-et/values-et.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,211,310,421,507,609,726,807,884,976,1070,1166,1268,1377,1471,1572,1666,1758,1851,1934,2045,2149,2248,2358,2460,2559,2725,2827",
+ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82",
+ "endOffsets": "206,305,416,502,604,721,802,879,971,1065,1161,1263,1372,1466,1567,1661,1753,1846,1929,2040,2144,2243,2353,2455,2554,2720,2822,2905"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "316,422,521,632,718,820,937,1018,1095,1187,1281,1377,1479,1588,1682,1783,1877,1969,2062,2145,2256,2360,2459,2569,2671,2770,2936,12211",
+ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82",
+ "endOffsets": "417,516,627,713,815,932,1013,1090,1182,1276,1372,1474,1583,1677,1778,1872,1964,2057,2140,2251,2355,2454,2564,2666,2765,2931,3033,12289"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-et/values-et.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,266,346,425,510,602,689,788,905,987,1051,1136,1204,1268,1355,1419,1483,1542,1614,1678,1732,1851,1911,1972,2026,2099,2232,2316,2409,2547,2627,2706,2832,2920,2999,3054,3105,3171,3244,3323,3409,3488,3561,3636,3710,3782,3895,3983,4060,4151,4243,4315,4389,4480,4534,4616,4685,4768,4854,4916,4980,5043,5111,5214,5317,5414,5515,5574,5629",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,79,78,84,91,86,98,116,81,63,84,67,63,86,63,63,58,71,63,53,118,59,60,53,72,132,83,92,137,79,78,125,87,78,54,50,65,72,78,85,78,72,74,73,71,112,87,76,90,91,71,73,90,53,81,68,82,85,61,63,62,67,102,102,96,100,58,54,80",
+ "endOffsets": "261,341,420,505,597,684,783,900,982,1046,1131,1199,1263,1350,1414,1478,1537,1609,1673,1727,1846,1906,1967,2021,2094,2227,2311,2404,2542,2622,2701,2827,2915,2994,3049,3100,3166,3239,3318,3404,3483,3556,3631,3705,3777,3890,3978,4055,4146,4238,4310,4384,4475,4529,4611,4680,4763,4849,4911,4975,5038,5106,5209,5312,5409,5510,5569,5624,5705"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3038,3118,3197,3282,3374,4190,4289,4406,6881,7032,7423,7491,7555,7642,7706,7770,7829,7901,7965,8019,8138,8198,8259,8313,8386,8519,8603,8696,8834,8914,8993,9119,9207,9286,9341,9392,9458,9531,9610,9696,9775,9848,9923,9997,10069,10182,10270,10347,10438,10530,10602,10676,10767,10821,10903,10972,11055,11141,11203,11267,11330,11398,11501,11604,11701,11802,11861,11992",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,79,78,84,91,86,98,116,81,63,84,67,63,86,63,63,58,71,63,53,118,59,60,53,72,132,83,92,137,79,78,125,87,78,54,50,65,72,78,85,78,72,74,73,71,112,87,76,90,91,71,73,90,53,81,68,82,85,61,63,62,67,102,102,96,100,58,54,80",
+ "endOffsets": "311,3113,3192,3277,3369,3456,4284,4401,4483,6940,7112,7486,7550,7637,7701,7765,7824,7896,7960,8014,8133,8193,8254,8308,8381,8514,8598,8691,8829,8909,8988,9114,9202,9281,9336,9387,9453,9526,9605,9691,9770,9843,9918,9992,10064,10177,10265,10342,10433,10525,10597,10671,10762,10816,10898,10967,11050,11136,11198,11262,11325,11393,11496,11599,11696,11797,11856,11911,12068"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-et/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,292,450,573,677,823,948,1060,1159,1315,1419,1579,1707,1858,1999,2058,2119",
+ "endColumns": "98,157,122,103,145,124,111,98,155,103,159,127,150,140,58,60,83",
+ "endOffsets": "291,449,572,676,822,947,1059,1158,1314,1418,1578,1706,1857,1998,2057,2118,2202"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4488,4591,4753,4880,4988,5138,5267,5383,5626,5786,5894,6058,6190,6345,6490,6553,6618",
+ "endColumns": "102,161,126,107,149,128,115,102,159,107,163,131,154,144,62,64,87",
+ "endOffsets": "4586,4748,4875,4983,5133,5262,5378,5481,5781,5889,6053,6185,6340,6485,6548,6613,6701"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-et/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "135",
+ "endOffsets": "330"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5486",
+ "endColumns": "139",
+ "endOffsets": "5621"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-et/values-et.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,180,267,343,481,650,733",
+ "endColumns": "74,86,75,137,168,82,77",
+ "endOffsets": "175,262,338,476,645,728,806"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6706,6945,11916,12073,12395,12564,12647",
+ "endColumns": "74,86,75,137,168,82,77",
+ "endOffsets": "6776,7027,11987,12206,12559,12642,12720"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-et/values-et.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,255,362",
+ "endColumns": "99,99,106,98",
+ "endOffsets": "150,250,357,456"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6781,7117,7217,7324",
+ "endColumns": "99,99,106,98",
+ "endOffsets": "6876,7212,7319,7418"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-sw_values-sw.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-sw/values-sw.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,149,251,348,449,556,663,778",
+ "endColumns": "93,101,96,100,106,106,114,100",
+ "endOffsets": "144,246,343,444,551,658,773,874"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3414,3508,3610,3707,3808,3915,4022,12476",
+ "endColumns": "93,101,96,100,106,106,114,100",
+ "endOffsets": "3503,3605,3702,3803,3910,4017,4132,12572"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-sw/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "141",
+ "endOffsets": "336"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5463",
+ "endColumns": "145",
+ "endOffsets": "5604"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sw/values-sw.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,208,307,415,505,610,727,810,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1911,2012,2120,2219,2326,2438,2542,2704,2801",
+ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82",
+ "endOffsets": "203,302,410,500,605,722,805,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1906,2007,2115,2214,2321,2433,2537,2699,2796,2879"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "309,412,511,619,709,814,931,1014,1096,1187,1280,1375,1469,1569,1662,1757,1851,1942,2033,2115,2216,2324,2423,2530,2642,2746,2908,12393",
+ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82",
+ "endOffsets": "407,506,614,704,809,926,1009,1091,1182,1275,1370,1464,1564,1657,1752,1846,1937,2028,2110,2211,2319,2418,2525,2637,2741,2903,3000,12471"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sw/values-sw.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,272,349,499,668,753",
+ "endColumns": "69,96,76,149,168,84,82",
+ "endOffsets": "170,267,344,494,663,748,831"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6709,6961,12085,12243,12577,12746,12831",
+ "endColumns": "69,96,76,149,168,84,82",
+ "endOffsets": "6774,7053,12157,12388,12741,12826,12909"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-sw/values-sw.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,169,270,387",
+ "endColumns": "113,100,116,102",
+ "endOffsets": "164,265,382,485"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6779,7150,7251,7368",
+ "endColumns": "113,100,116,102",
+ "endOffsets": "6888,7246,7363,7466"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-sw/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,293,445,566,671,830,951,1066,1176,1337,1439,1589,1712,1858,2013,2077,2148",
+ "endColumns": "99,151,120,104,158,120,114,109,160,101,149,122,145,154,63,70,91",
+ "endOffsets": "292,444,565,670,829,950,1065,1175,1336,1438,1588,1711,1857,2012,2076,2147,2239"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4448,4552,4708,4833,4942,5105,5230,5349,5609,5774,5880,6034,6161,6311,6470,6538,6613",
+ "endColumns": "103,155,124,108,162,124,118,113,164,105,153,126,149,158,67,74,95",
+ "endOffsets": "4547,4703,4828,4937,5100,5225,5344,5458,5769,5875,6029,6156,6306,6465,6533,6608,6704"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sw/values-sw.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,259,335,409,482,579,668,767,896,979,1047,1139,1212,1275,1361,1423,1486,1551,1619,1682,1736,1868,1925,1987,2041,2115,2253,2334,2414,2546,2631,2718,2859,2947,3026,3080,3133,3199,3271,3353,3443,3528,3600,3675,3746,3819,3925,4022,4096,4191,4288,4362,4447,4547,4600,4685,4753,4841,4931,4993,5057,5120,5187,5304,5416,5527,5638,5696,5753",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,75,73,72,96,88,98,128,82,67,91,72,62,85,61,62,64,67,62,53,131,56,61,53,73,137,80,79,131,84,86,140,87,78,53,52,65,71,81,89,84,71,74,70,72,105,96,73,94,96,73,84,99,52,84,67,87,89,61,63,62,66,116,111,110,110,57,56,80",
+ "endOffsets": "254,330,404,477,574,663,762,891,974,1042,1134,1207,1270,1356,1418,1481,1546,1614,1677,1731,1863,1920,1982,2036,2110,2248,2329,2409,2541,2626,2713,2854,2942,3021,3075,3128,3194,3266,3348,3438,3523,3595,3670,3741,3814,3920,4017,4091,4186,4283,4357,4442,4542,4595,4680,4748,4836,4926,4988,5052,5115,5182,5299,5411,5522,5633,5691,5748,5829"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3005,3081,3155,3228,3325,4137,4236,4365,6893,7058,7471,7544,7607,7693,7755,7818,7883,7951,8014,8068,8200,8257,8319,8373,8447,8585,8666,8746,8878,8963,9050,9191,9279,9358,9412,9465,9531,9603,9685,9775,9860,9932,10007,10078,10151,10257,10354,10428,10523,10620,10694,10779,10879,10932,11017,11085,11173,11263,11325,11389,11452,11519,11636,11748,11859,11970,12028,12162",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,75,73,72,96,88,98,128,82,67,91,72,62,85,61,62,64,67,62,53,131,56,61,53,73,137,80,79,131,84,86,140,87,78,53,52,65,71,81,89,84,71,74,70,72,105,96,73,94,96,73,84,99,52,84,67,87,89,61,63,62,66,116,111,110,110,57,56,80",
+ "endOffsets": "304,3076,3150,3223,3320,3409,4231,4360,4443,6956,7145,7539,7602,7688,7750,7813,7878,7946,8009,8063,8195,8252,8314,8368,8442,8580,8661,8741,8873,8958,9045,9186,9274,9353,9407,9460,9526,9598,9680,9770,9855,9927,10002,10073,10146,10252,10349,10423,10518,10615,10689,10774,10874,10927,11012,11080,11168,11258,11320,11384,11447,11514,11631,11743,11854,11965,12023,12080,12238"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v30_values-v30.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-v30/bools.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "38",
+ "endOffsets": "89"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-en-rXC_values-en-rXC.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-en-rXC/values-en-rXC.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,251,456,657,858,1065,1270,1482",
+ "endColumns": "195,204,200,200,206,204,211,203",
+ "endOffsets": "246,451,652,853,1060,1265,1477,1681"
+ },
+ "to": {
+ "startLines": "29,30,31,32,33,34,35,45",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "5528,5724,5929,6130,6331,6538,6743,8742",
+ "endColumns": "195,204,200,200,206,204,211,203",
+ "endOffsets": "5719,5924,6125,6326,6533,6738,6950,8941"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-en-rXC/values-en-rXC.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,276,465,642,894,1196,1378",
+ "endColumns": "170,188,176,251,301,181,172",
+ "endOffsets": "271,460,637,889,1191,1373,1546"
+ },
+ "to": {
+ "startLines": "36,38,42,43,46,47,48",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6955,7326,8127,8304,8946,9248,9430",
+ "endColumns": "170,188,176,251,301,181,172",
+ "endOffsets": "7121,7510,8299,8551,9243,9425,9598"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-en-rXC/values-en-rXC.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,255,454,665",
+ "endColumns": "199,198,210,201",
+ "endOffsets": "250,449,660,862"
+ },
+ "to": {
+ "startLines": "37,39,40,41",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7126,7515,7714,7925",
+ "endColumns": "199,198,210,201",
+ "endOffsets": "7321,7709,7920,8122"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-en-rXC/values-en-rXC.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,312,515,725,912,1113,1329,1509,1684,1878,2072,2267,2464,2663,2858,3056,3253,3447,3641,3826,4031,4234,4435,4641,4846,5053,5327,5528",
+ "endColumns": "206,202,209,186,200,215,179,174,193,193,194,196,198,194,197,196,193,193,184,204,202,200,205,204,206,273,200,185",
+ "endOffsets": "307,510,720,907,1108,1324,1504,1679,1873,2067,2262,2459,2658,2853,3051,3248,3442,3636,3821,4026,4229,4430,4636,4841,5048,5322,5523,5709"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,44",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,312,515,725,912,1113,1329,1509,1684,1878,2072,2267,2464,2663,2858,3056,3253,3447,3641,3826,4031,4234,4435,4641,4846,5053,5327,8556",
+ "endColumns": "206,202,209,186,200,215,179,174,193,193,194,196,198,194,197,196,193,193,184,204,202,200,205,204,206,273,200,185",
+ "endOffsets": "307,510,720,907,1108,1324,1504,1679,1873,2067,2262,2459,2658,2853,3051,3248,3442,3636,3821,4026,4229,4430,4636,4841,5048,5322,5523,8737"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-watch-v20_values-watch-v20.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-watch-v20/values-watch-v20.xml",
+ "from": {
+ "startLines": "2,5,8",
+ "startColumns": "4,4,4",
+ "startOffsets": "55,214,385",
+ "endLines": "4,7,10",
+ "endColumns": "12,12,12",
+ "endOffsets": "209,380,553"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-lo_values-lo.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-lo/values-lo.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,261,341,479,648,728",
+ "endColumns": "69,85,79,137,168,79,77",
+ "endOffsets": "170,256,336,474,643,723,801"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6658,6892,11793,11952,12273,12442,12522",
+ "endColumns": "69,85,79,137,168,79,77",
+ "endOffsets": "6723,6973,11868,12085,12437,12517,12595"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-lo/values-lo.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,153,251,366",
+ "endColumns": "97,97,114,99",
+ "endOffsets": "148,246,361,461"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6728,7067,7165,7280",
+ "endColumns": "97,97,114,99",
+ "endOffsets": "6821,7160,7275,7375"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-lo/values-lo.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,254,353,451,552,650,761",
+ "endColumns": "95,102,98,97,100,97,110,100",
+ "endOffsets": "146,249,348,446,547,645,756,857"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3381,3477,3580,3679,3777,3878,3976,12172",
+ "endColumns": "95,102,98,97,100,97,110,100",
+ "endOffsets": "3472,3575,3674,3772,3873,3971,4082,12268"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-lo/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "127",
+ "endOffsets": "322"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5420",
+ "endColumns": "131",
+ "endOffsets": "5547"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-lo/values-lo.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,208,311,424,509,613,724,802,879,970,1063,1155,1249,1349,1442,1537,1633,1724,1815,1896,2003,2107,2205,2308,2412,2516,2673,2772",
+ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81",
+ "endOffsets": "203,306,419,504,608,719,797,874,965,1058,1150,1244,1344,1437,1532,1628,1719,1810,1891,1998,2102,2200,2303,2407,2511,2668,2767,2849"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "319,422,525,638,723,827,938,1016,1093,1184,1277,1369,1463,1563,1656,1751,1847,1938,2029,2110,2217,2321,2419,2522,2626,2730,2887,12090",
+ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81",
+ "endOffsets": "417,520,633,718,822,933,1011,1088,1179,1272,1364,1458,1558,1651,1746,1842,1933,2024,2105,2212,2316,2414,2517,2621,2725,2882,2981,12167"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-lo/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,463,589,692,840,961,1065,1177,1325,1426,1588,1713,1880,2037,2101,2166",
+ "endColumns": "103,165,125,102,147,120,103,111,147,100,161,124,166,156,63,64,80",
+ "endOffsets": "296,462,588,691,839,960,1064,1176,1324,1425,1587,1712,1879,2036,2100,2165,2246"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4404,4512,4682,4812,4919,5071,5196,5304,5552,5704,5809,5975,6104,6275,6436,6504,6573",
+ "endColumns": "107,169,129,106,151,124,107,115,151,104,165,128,170,160,67,68,84",
+ "endOffsets": "4507,4677,4807,4914,5066,5191,5299,5415,5699,5804,5970,6099,6270,6431,6499,6568,6653"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-lo/values-lo.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,269,343,414,495,581,664,779,898,981,1047,1136,1205,1264,1359,1425,1490,1548,1613,1674,1734,1840,1901,1961,2019,2090,2209,2295,2377,2520,2595,2671,2802,2892,2970,3025,3080,3146,3215,3289,3368,3447,3520,3597,3666,3736,3833,3918,3993,4086,4179,4253,4322,4416,4468,4551,4618,4702,4786,4848,4912,4975,5045,5144,5242,5337,5431,5490,5549",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,73,70,80,85,82,114,118,82,65,88,68,58,94,65,64,57,64,60,59,105,60,59,57,70,118,85,81,142,74,75,130,89,77,54,54,65,68,73,78,78,72,76,68,69,96,84,74,92,92,73,68,93,51,82,66,83,83,61,63,62,69,98,97,94,93,58,58,78",
+ "endOffsets": "264,338,409,490,576,659,774,893,976,1042,1131,1200,1259,1354,1420,1485,1543,1608,1669,1729,1835,1896,1956,2014,2085,2204,2290,2372,2515,2590,2666,2797,2887,2965,3020,3075,3141,3210,3284,3363,3442,3515,3592,3661,3731,3828,3913,3988,4081,4174,4248,4317,4411,4463,4546,4613,4697,4781,4843,4907,4970,5040,5139,5237,5332,5426,5485,5544,5623"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2986,3060,3131,3212,3298,4087,4202,4321,6826,6978,7380,7449,7508,7603,7669,7734,7792,7857,7918,7978,8084,8145,8205,8263,8334,8453,8539,8621,8764,8839,8915,9046,9136,9214,9269,9324,9390,9459,9533,9612,9691,9764,9841,9910,9980,10077,10162,10237,10330,10423,10497,10566,10660,10712,10795,10862,10946,11030,11092,11156,11219,11289,11388,11486,11581,11675,11734,11873",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,73,70,80,85,82,114,118,82,65,88,68,58,94,65,64,57,64,60,59,105,60,59,57,70,118,85,81,142,74,75,130,89,77,54,54,65,68,73,78,78,72,76,68,69,96,84,74,92,92,73,68,93,51,82,66,83,83,61,63,62,69,98,97,94,93,58,58,78",
+ "endOffsets": "314,3055,3126,3207,3293,3376,4197,4316,4399,6887,7062,7444,7503,7598,7664,7729,7787,7852,7913,7973,8079,8140,8200,8258,8329,8448,8534,8616,8759,8834,8910,9041,9131,9209,9264,9319,9385,9454,9528,9607,9686,9759,9836,9905,9975,10072,10157,10232,10325,10418,10492,10561,10655,10707,10790,10857,10941,11025,11087,11151,11214,11284,11383,11481,11576,11670,11729,11788,11947"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-pt_values-pt.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-pt/values-pt.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,170,269,381",
+ "endColumns": "114,98,111,105",
+ "endOffsets": "165,264,376,482"
+ },
+ "to": {
+ "startLines": "37,39,40,41",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "3648,3850,3949,4061",
+ "endColumns": "114,98,111,105",
+ "endOffsets": "3758,3944,4056,4162"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-pt/values-pt.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,353,453,560,670,790",
+ "endColumns": "96,101,98,99,106,109,119,100",
+ "endOffsets": "147,249,348,448,555,665,785,886"
+ },
+ "to": {
+ "startLines": "29,30,31,32,33,34,35,45",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "2843,2940,3042,3141,3241,3348,3458,4483",
+ "endColumns": "96,101,98,99,106,109,119,100",
+ "endOffsets": "2935,3037,3136,3236,3343,3453,3573,4579"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-pt/values-pt.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,262,341,492,661,748",
+ "endColumns": "69,86,78,150,168,86,80",
+ "endOffsets": "170,257,336,487,656,743,824"
+ },
+ "to": {
+ "startLines": "36,38,42,43,46,47,48",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "3578,3763,4167,4246,4584,4753,4840",
+ "endColumns": "69,86,78,150,168,86,80",
+ "endOffsets": "3643,3845,4241,4392,4748,4835,4916"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-pt/values-pt.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843",
+ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85",
+ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,44",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,4397",
+ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85",
+ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,4478"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-or_values-or.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-or/values-or.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,224,334,441,527,631,751,830,911,1002,1095,1198,1293,1393,1486,1581,1677,1768,1858,1947,2057,2161,2267,2378,2482,2600,2763,2869",
+ "endColumns": "118,109,106,85,103,119,78,80,90,92,102,94,99,92,94,95,90,89,88,109,103,105,110,103,117,162,105,89",
+ "endOffsets": "219,329,436,522,626,746,825,906,997,1090,1193,1288,1388,1481,1576,1672,1763,1853,1942,2052,2156,2262,2373,2477,2595,2758,2864,2954"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "322,441,551,658,744,848,968,1047,1128,1219,1312,1415,1510,1610,1703,1798,1894,1985,2075,2164,2274,2378,2484,2595,2699,2817,2980,12236",
+ "endColumns": "118,109,106,85,103,119,78,80,90,92,102,94,99,92,94,95,90,89,88,109,103,105,110,103,117,162,105,89",
+ "endOffsets": "436,546,653,739,843,963,1042,1123,1214,1307,1410,1505,1605,1698,1793,1889,1980,2070,2159,2269,2373,2479,2590,2694,2812,2975,3081,12321"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-or/values-or.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,165,270,383",
+ "endColumns": "109,104,112,108",
+ "endOffsets": "160,265,378,487"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6860,7213,7318,7431",
+ "endColumns": "109,104,112,108",
+ "endOffsets": "6965,7313,7426,7535"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-or/values-or.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,272,354,432,509,595,679,773,878,957,1022,1111,1176,1235,1321,1385,1449,1512,1585,1649,1703,1815,1873,1935,1989,2061,2183,2270,2356,2496,2573,2654,2781,2872,2949,3003,3054,3120,3190,3267,3354,3429,3500,3577,3646,3715,3822,3913,3985,4074,4163,4237,4309,4395,4445,4524,4590,4670,4754,4816,4880,4943,5012,5112,5207,5299,5391,5449,5504",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,81,77,76,85,83,93,104,78,64,88,64,58,85,63,63,62,72,63,53,111,57,61,53,71,121,86,85,139,76,80,126,90,76,53,50,65,69,76,86,74,70,76,68,68,106,90,71,88,88,73,71,85,49,78,65,79,83,61,63,62,68,99,94,91,91,57,54,83",
+ "endOffsets": "267,349,427,504,590,674,768,873,952,1017,1106,1171,1230,1316,1380,1444,1507,1580,1644,1698,1810,1868,1930,1984,2056,2178,2265,2351,2491,2568,2649,2776,2867,2944,2998,3049,3115,3185,3262,3349,3424,3495,3572,3641,3710,3817,3908,3980,4069,4158,4232,4304,4390,4440,4519,4585,4665,4749,4811,4875,4938,5007,5107,5202,5294,5386,5444,5499,5583"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3086,3168,3246,3323,3409,4228,4322,4427,6970,7124,7540,7605,7664,7750,7814,7878,7941,8014,8078,8132,8244,8302,8364,8418,8490,8612,8699,8785,8925,9002,9083,9210,9301,9378,9432,9483,9549,9619,9696,9783,9858,9929,10006,10075,10144,10251,10342,10414,10503,10592,10666,10738,10824,10874,10953,11019,11099,11183,11245,11309,11372,11441,11541,11636,11728,11820,11878,12013",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,81,77,76,85,83,93,104,78,64,88,64,58,85,63,63,62,72,63,53,111,57,61,53,71,121,86,85,139,76,80,126,90,76,53,50,65,69,76,86,74,70,76,68,68,106,90,71,88,88,73,71,85,49,78,65,79,83,61,63,62,68,99,94,91,91,57,54,83",
+ "endOffsets": "317,3163,3241,3318,3404,3488,4317,4422,4501,7030,7208,7600,7659,7745,7809,7873,7936,8009,8073,8127,8239,8297,8359,8413,8485,8607,8694,8780,8920,8997,9078,9205,9296,9373,9427,9478,9544,9614,9691,9778,9853,9924,10001,10070,10139,10246,10337,10409,10498,10587,10661,10733,10819,10869,10948,11014,11094,11178,11240,11304,11367,11436,11536,11631,11723,11815,11873,11928,12092"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-or/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "135",
+ "endOffsets": "330"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5541",
+ "endColumns": "139",
+ "endOffsets": "5676"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-or/values-or.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,179,268,348,487,656,737",
+ "endColumns": "73,88,79,138,168,80,81",
+ "endOffsets": "174,263,343,482,651,732,814"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6786,7035,11933,12097,12427,12596,12677",
+ "endColumns": "73,88,79,138,168,80,81",
+ "endOffsets": "6855,7119,12008,12231,12591,12672,12754"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-or/values-or.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,260,363,468,569,671,790",
+ "endColumns": "102,101,102,104,100,101,118,100",
+ "endOffsets": "153,255,358,463,564,666,785,886"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3493,3596,3698,3801,3906,4007,4109,12326",
+ "endColumns": "102,101,102,104,100,101,118,100",
+ "endOffsets": "3591,3693,3796,3901,4002,4104,4223,12422"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-or/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,457,585,698,849,980,1090,1196,1359,1468,1625,1754,1900,2053,2114,2182",
+ "endColumns": "106,156,127,112,150,130,109,105,162,108,156,128,145,152,60,67,82",
+ "endOffsets": "299,456,584,697,848,979,1089,1195,1358,1467,1624,1753,1899,2052,2113,2181,2264"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4506,4617,4778,4910,5027,5182,5317,5431,5681,5848,5961,6122,6255,6405,6562,6627,6699",
+ "endColumns": "110,160,131,116,154,134,113,109,166,112,160,132,149,156,64,71,86",
+ "endOffsets": "4612,4773,4905,5022,5177,5312,5426,5536,5843,5956,6117,6250,6400,6557,6622,6694,6781"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ru_values-ru.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ru/values-ru.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,356,457,562,665,782",
+ "endColumns": "97,101,100,100,104,102,116,100",
+ "endOffsets": "148,250,351,452,557,660,777,878"
+ },
+ "to": {
+ "startLines": "46,47,48,49,50,51,52,181",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3866,3964,4066,4167,4268,4373,4476,16317",
+ "endColumns": "97,101,100,100,104,102,116,100",
+ "endOffsets": "3959,4061,4162,4263,4368,4471,4588,16413"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ru/values-ru.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,220,322,421,507,612,733,812,888,980,1074,1169,1262,1357,1451,1547,1642,1734,1826,1915,2021,2128,2226,2335,2442,2556,2722,2822",
+ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81",
+ "endOffsets": "215,317,416,502,607,728,807,883,975,1069,1164,1257,1352,1446,1542,1637,1729,1821,1910,2016,2123,2221,2330,2437,2551,2717,2817,2899"
+ },
+ "to": {
+ "startLines": "14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,180",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "720,835,937,1036,1122,1227,1348,1427,1503,1595,1689,1784,1877,1972,2066,2162,2257,2349,2441,2530,2636,2743,2841,2950,3057,3171,3337,16235",
+ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81",
+ "endOffsets": "830,932,1031,1117,1222,1343,1422,1498,1590,1684,1779,1872,1967,2061,2157,2252,2344,2436,2525,2631,2738,2836,2945,3052,3166,3332,3432,16312"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ru/values-ru.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,381,459,537,621,719,810,907,1044,1136,1202,1301,1378,1441,1559,1620,1685,1742,1812,1873,1927,2043,2100,2162,2216,2290,2418,2506,2592,2729,2813,2898,3032,3123,3199,3253,3304,3370,3442,3520,3616,3698,3778,3854,3931,4008,4115,4204,4277,4367,4462,4536,4617,4710,4765,4846,4912,4998,5083,5145,5209,5272,5344,5442,5541,5636,5728,5786,5841",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,77,77,83,97,90,96,136,91,65,98,76,62,117,60,64,56,69,60,53,115,56,61,53,73,127,87,85,136,83,84,133,90,75,53,50,65,71,77,95,81,79,75,76,76,106,88,72,89,94,73,80,92,54,80,65,85,84,61,63,62,71,97,98,94,91,57,54,79",
+ "endOffsets": "376,454,532,616,714,805,902,1039,1131,1197,1296,1373,1436,1554,1615,1680,1737,1807,1868,1922,2038,2095,2157,2211,2285,2413,2501,2587,2724,2808,2893,3027,3118,3194,3248,3299,3365,3437,3515,3611,3693,3773,3849,3926,4003,4110,4199,4272,4362,4457,4531,4612,4705,4760,4841,4907,4993,5078,5140,5204,5267,5339,5437,5536,5631,5723,5781,5836,5916"
+ },
+ "to": {
+ "startLines": "2,41,42,43,44,45,53,54,55,97,100,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,167",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3437,3515,3593,3677,3775,4593,4690,4827,9168,9423,9910,9987,10050,10168,10229,10294,10351,10421,10482,10536,10652,10709,10771,10825,10899,11027,11115,11201,11338,11422,11507,11641,11732,11808,11862,11913,11979,12051,12129,12225,12307,12387,12463,12540,12617,12724,12813,12886,12976,13071,13145,13226,13319,13374,13455,13521,13607,13692,13754,13818,13881,13953,14051,14150,14245,14337,14395,14868",
+ "endLines": "7,41,42,43,44,45,53,54,55,97,100,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,167",
+ "endColumns": "12,77,77,83,97,90,96,136,91,65,98,76,62,117,60,64,56,69,60,53,115,56,61,53,73,127,87,85,136,83,84,133,90,75,53,50,65,71,77,95,81,79,75,76,76,106,88,72,89,94,73,80,92,54,80,65,85,84,61,63,62,71,97,98,94,91,57,54,79",
+ "endOffsets": "426,3510,3588,3672,3770,3861,4685,4822,4914,9229,9517,9982,10045,10163,10224,10289,10346,10416,10477,10531,10647,10704,10766,10820,10894,11022,11110,11196,11333,11417,11502,11636,11727,11803,11857,11908,11974,12046,12124,12220,12302,12382,12458,12535,12612,12719,12808,12881,12971,13066,13140,13221,13314,13369,13450,13516,13602,13687,13749,13813,13876,13948,14046,14145,14240,14332,14390,14445,14943"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ru/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "152",
+ "endOffsets": "347"
+ },
+ "to": {
+ "startLines": "73",
+ "startColumns": "4",
+ "startOffsets": "6592",
+ "endColumns": "156",
+ "endOffsets": "6744"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ru/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,458,580,686,824,949,1060,1160,1337,1440,1599,1721,1884,2038,2103,2159",
+ "endColumns": "102,161,121,105,137,124,110,99,176,102,158,121,162,153,64,55,81",
+ "endOffsets": "295,457,579,685,823,948,1059,1159,1336,1439,1598,1720,1883,2037,2102,2158,2240"
+ },
+ "to": {
+ "startLines": "65,66,67,68,69,70,71,72,74,75,76,77,78,79,80,81,82",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "5593,5700,5866,5992,6102,6244,6373,6488,6749,6930,7037,7200,7326,7493,7651,7720,7780",
+ "endColumns": "106,165,125,109,141,128,114,103,180,106,162,125,166,157,68,59,85",
+ "endOffsets": "5695,5861,5987,6097,6239,6368,6483,6587,6925,7032,7195,7321,7488,7646,7715,7775,7861"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-ru/strings.xml",
+ "from": {
+ "startLines": "44,35,37,36,31,32,30,34,33,38,55,28,26,27,67,68,69,71,72,70,73,74,52,51,53,42,43,41,8,7,11,19,15,17,16,18,10,12,13,23,24,21,22,62,61,63,60,59,58,64,57,56",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "2855,2319,2486,2419,2009,2062,1949,2259,2194,2557,3420,1885,1748,1820,4527,4587,4737,4981,5107,4816,5196,5271,3211,3145,3308,2700,2779,2625,340,208,555,1258,872,1049,948,1158,451,657,759,1541,1642,1353,1441,4092,4010,4192,3903,3732,3653,4282,3574,3497",
+ "endLines": "49,35,37,36,31,32,30,34,33,38,55,28,26,27,67,68,69,71,72,70,73,74,52,51,53,42,43,41,8,7,11,19,15,17,16,18,10,12,13,23,24,21,22,62,61,63,60,59,58,64,57,56",
+ "endColumns": "14,99,70,66,52,131,59,59,64,65,76,62,71,64,59,149,78,125,88,164,74,98,96,65,110,78,75,74,109,131,101,93,75,108,100,99,103,101,111,100,104,87,99,99,81,89,106,170,78,77,78,76",
+ "endOffsets": "3139,2414,2552,2481,2057,2189,2004,2314,2254,2618,3492,1943,1815,1880,4582,4732,4811,5102,5191,4976,5266,5365,3303,3206,3414,2774,2850,2695,445,335,652,1347,943,1153,1044,1253,550,754,866,1637,1742,1436,1536,4187,4087,4277,4005,3898,3727,4355,3648,3569"
+ },
+ "to": {
+ "startLines": "8,56,57,58,59,60,61,62,63,64,83,84,85,86,89,90,91,92,93,94,95,96,98,101,162,164,165,166,169,170,171,172,173,174,175,176,177,178,179,183,184,185,186,189,190,191,192,193,194,195,196,197",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "431,4919,5019,5090,5157,5210,5342,5402,5462,5527,7866,7943,8006,8078,8325,8385,8535,8614,8740,8829,8994,9069,9234,9522,14450,14638,14717,14793,15093,15203,15335,15437,15531,15607,15716,15817,15917,16021,16123,16587,16688,16793,16881,17141,17241,17323,17413,17520,17691,17770,17848,17927",
+ "endLines": "13,56,57,58,59,60,61,62,63,64,83,84,85,86,89,90,91,92,93,94,95,96,98,101,162,164,165,166,169,170,171,172,173,174,175,176,177,178,179,183,184,185,186,189,190,191,192,193,194,195,196,197",
+ "endColumns": "14,99,70,66,52,131,59,59,64,65,76,62,71,64,59,149,78,125,88,164,74,98,96,65,110,78,75,74,109,131,101,93,75,108,100,99,103,101,111,100,104,87,99,99,81,89,106,170,78,77,78,76",
+ "endOffsets": "715,5014,5085,5152,5205,5337,5397,5457,5522,5588,7938,8001,8073,8138,8380,8530,8609,8735,8824,8989,9064,9163,9326,9583,14556,14712,14788,14863,15198,15330,15432,15526,15602,15711,15812,15912,16016,16118,16230,16683,16788,16876,16976,17236,17318,17408,17515,17686,17765,17843,17922,17999"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ru/values-ru.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,179,271,348,493,662,744",
+ "endColumns": "73,91,76,144,168,81,77",
+ "endOffsets": "174,266,343,488,657,739,817"
+ },
+ "to": {
+ "startLines": "87,99,163,168,182,187,188",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "8143,9331,14561,14948,16418,16981,17063",
+ "endColumns": "73,91,76,144,168,81,77",
+ "endOffsets": "8212,9418,14633,15088,16582,17058,17136"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ru/values-ru.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,163,268,380",
+ "endColumns": "107,104,111,104",
+ "endOffsets": "158,263,375,480"
+ },
+ "to": {
+ "startLines": "88,102,103,104",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "8217,9588,9693,9805",
+ "endColumns": "107,104,111,104",
+ "endOffsets": "8320,9688,9800,9905"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v28_values-v28.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-v28/values-v28.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,249,344,442,530,618,706,794,881,968,1055,1142",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,17",
+ "endColumns": "97,95,94,97,87,87,87,87,86,86,86,86,10",
+ "endOffsets": "148,244,339,437,525,613,701,789,876,963,1050,1137,1424"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,24",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,249,344,442,530,618,706,794,881,968,1055,1676",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,27",
+ "endColumns": "97,95,94,97,87,87,87,87,86,86,86,86,10",
+ "endOffsets": "148,244,339,437,525,613,701,789,876,963,1050,1137,1958"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v28/values-v28.xml",
+ "from": {
+ "startLines": "2,3,4,8",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,130,217,397",
+ "endLines": "2,3,7,11",
+ "endColumns": "74,86,12,12",
+ "endOffsets": "125,212,392,584"
+ },
+ "to": {
+ "startLines": "14,15,16,20",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "1142,1217,1304,1484",
+ "endLines": "14,15,19,23",
+ "endColumns": "74,86,12,12",
+ "endOffsets": "1212,1299,1479,1671"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-h360dp-land-v13/values-h360dp-land-v13.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,114,170,226,293,358,413,478,547",
+ "endColumns": "58,55,55,66,64,54,64,68,68",
+ "endOffsets": "109,165,221,288,353,408,473,542,611"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v26_values-v26.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v26/values-v26.xml",
+ "from": {
+ "startLines": "2,3,4,8,12,16",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "55,130,217,381,557,796",
+ "endLines": "2,3,7,11,15,16",
+ "endColumns": "74,86,12,12,12,92",
+ "endOffsets": "125,212,376,552,791,884"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-fr_values-fr.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-fr/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,471,597,702,869,998,1115,1224,1398,1506,1687,1819,1975,2150,2219,2282",
+ "endColumns": "101,175,125,104,166,128,116,108,173,107,180,131,155,174,68,62,79",
+ "endOffsets": "294,470,596,701,868,997,1114,1223,1397,1505,1686,1818,1974,2149,2218,2281,2361"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4563,4669,4849,4979,5088,5259,5392,5513,5791,5969,6081,6266,6402,6562,6741,6814,6881",
+ "endColumns": "105,179,129,108,170,132,120,112,177,111,184,135,159,178,72,66,83",
+ "endOffsets": "4664,4844,4974,5083,5254,5387,5508,5621,5964,6076,6261,6397,6557,6736,6809,6876,6960"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-fr/values-fr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,216,331,441,523,629,759,837,913,1004,1097,1195,1290,1390,1483,1576,1671,1762,1853,1939,2049,2160,2263,2374,2482,2589,2748,2847",
+ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86",
+ "endOffsets": "211,326,436,518,624,754,832,908,999,1092,1190,1285,1385,1478,1571,1666,1757,1848,1934,2044,2155,2258,2369,2477,2584,2743,2842,2929"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "333,444,559,669,751,857,987,1065,1141,1232,1325,1423,1518,1618,1711,1804,1899,1990,2081,2167,2277,2388,2491,2602,2710,2817,2976,12672",
+ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86",
+ "endOffsets": "439,554,664,746,852,982,1060,1136,1227,1320,1418,1513,1613,1706,1799,1894,1985,2076,2162,2272,2383,2486,2597,2705,2812,2971,3070,12754"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-fr/values-fr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,354,456,560,664,782",
+ "endColumns": "97,101,98,101,103,103,117,100",
+ "endOffsets": "148,250,349,451,555,659,777,878"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3523,3621,3723,3822,3924,4028,4132,12759",
+ "endColumns": "97,101,98,101,103,103,117,100",
+ "endOffsets": "3616,3718,3817,3919,4023,4127,4245,12855"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-fr/values-fr.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,162,264,383",
+ "endColumns": "106,101,118,104",
+ "endOffsets": "157,259,378,483"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7035,7402,7504,7623",
+ "endColumns": "106,101,118,104",
+ "endOffsets": "7137,7499,7618,7723"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-fr/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "160",
+ "endOffsets": "355"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5626",
+ "endColumns": "164",
+ "endOffsets": "5786"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-fr/values-fr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,272,350,492,661,747",
+ "endColumns": "69,96,77,141,168,85,79",
+ "endOffsets": "170,267,345,487,656,742,822"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6965,7208,12363,12530,12860,13029,13115",
+ "endColumns": "69,96,77,141,168,85,79",
+ "endOffsets": "7030,7300,12436,12667,13024,13110,13190"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-fr/values-fr.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,283,363,444,527,636,731,829,959,1044,1110,1207,1290,1356,1458,1523,1598,1654,1733,1793,1847,1969,2028,2090,2144,2226,2361,2453,2537,2681,2760,2841,2982,3075,3154,3209,3260,3326,3406,3487,3590,3670,3743,3821,3894,3966,4078,4171,4243,4335,4427,4501,4585,4677,4734,4818,4884,4967,5054,5116,5180,5243,5321,5423,5527,5624,5728,5787,5842",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,79,80,82,108,94,97,129,84,65,96,82,65,101,64,74,55,78,59,53,121,58,61,53,81,134,91,83,143,78,80,140,92,78,54,50,65,79,80,102,79,72,77,72,71,111,92,71,91,91,73,83,91,56,83,65,82,86,61,63,62,77,101,103,96,103,58,54,88",
+ "endOffsets": "278,358,439,522,631,726,824,954,1039,1105,1202,1285,1351,1453,1518,1593,1649,1728,1788,1842,1964,2023,2085,2139,2221,2356,2448,2532,2676,2755,2836,2977,3070,3149,3204,3255,3321,3401,3482,3585,3665,3738,3816,3889,3961,4073,4166,4238,4330,4422,4496,4580,4672,4729,4813,4879,4962,5049,5111,5175,5238,5316,5418,5522,5619,5723,5782,5837,5926"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3075,3155,3236,3319,3428,4250,4348,4478,7142,7305,7728,7811,7877,7979,8044,8119,8175,8254,8314,8368,8490,8549,8611,8665,8747,8882,8974,9058,9202,9281,9362,9503,9596,9675,9730,9781,9847,9927,10008,10111,10191,10264,10342,10415,10487,10599,10692,10764,10856,10948,11022,11106,11198,11255,11339,11405,11488,11575,11637,11701,11764,11842,11944,12048,12145,12249,12308,12441",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,79,80,82,108,94,97,129,84,65,96,82,65,101,64,74,55,78,59,53,121,58,61,53,81,134,91,83,143,78,80,140,92,78,54,50,65,79,80,102,79,72,77,72,71,111,92,71,91,91,73,83,91,56,83,65,82,86,61,63,62,77,101,103,96,103,58,54,88",
+ "endOffsets": "328,3150,3231,3314,3423,3518,4343,4473,4558,7203,7397,7806,7872,7974,8039,8114,8170,8249,8309,8363,8485,8544,8606,8660,8742,8877,8969,9053,9197,9276,9357,9498,9591,9670,9725,9776,9842,9922,10003,10106,10186,10259,10337,10410,10482,10594,10687,10759,10851,10943,11017,11101,11193,11250,11334,11400,11483,11570,11632,11696,11759,11837,11939,12043,12140,12244,12303,12358,12525"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-zh-rHK_values-zh-rHK.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-zh-rHK/values-zh-rHK.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,138,230,331",
+ "endColumns": "82,91,100,92",
+ "endOffsets": "133,225,326,419"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6018,6322,6414,6515",
+ "endColumns": "82,91,100,92",
+ "endOffsets": "6096,6409,6510,6603"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-zh-rHK/values-zh-rHK.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,247,310,371,438,507,584,674,781,854,916,994,1053,1111,1189,1250,1307,1363,1422,1480,1534,1620,1676,1734,1788,1853,1946,2020,2098,2218,2281,2344,2443,2520,2594,2644,2695,2761,2825,2893,2968,3040,3101,3172,3239,3299,3387,3467,3530,3613,3698,3772,3837,3913,3961,4035,4099,4175,4253,4315,4379,4442,4508,4588,4668,4744,4825,4879,4934",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,62,60,66,68,76,89,106,72,61,77,58,57,77,60,56,55,58,57,53,85,55,57,53,64,92,73,77,119,62,62,98,76,73,49,50,65,63,67,74,71,60,70,66,59,87,79,62,82,84,73,64,75,47,73,63,75,77,61,63,62,65,79,79,75,80,53,54,68",
+ "endOffsets": "242,305,366,433,502,579,669,776,849,911,989,1048,1106,1184,1245,1302,1358,1417,1475,1529,1615,1671,1729,1783,1848,1941,2015,2093,2213,2276,2339,2438,2515,2589,2639,2690,2756,2820,2888,2963,3035,3096,3167,3234,3294,3382,3462,3525,3608,3693,3767,3832,3908,3956,4030,4094,4170,4248,4310,4374,4437,4503,4583,4663,4739,4820,4874,4929,4998"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2858,2921,2982,3049,3118,3856,3946,4053,6101,6244,6608,6667,6725,6803,6864,6921,6977,7036,7094,7148,7234,7290,7348,7402,7467,7560,7634,7712,7832,7895,7958,8057,8134,8208,8258,8309,8375,8439,8507,8582,8654,8715,8786,8853,8913,9001,9081,9144,9227,9312,9386,9451,9527,9575,9649,9713,9789,9867,9929,9993,10056,10122,10202,10282,10358,10439,10493,10618",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,62,60,66,68,76,89,106,72,61,77,58,57,77,60,56,55,58,57,53,85,55,57,53,64,92,73,77,119,62,62,98,76,73,49,50,65,63,67,74,71,60,70,66,59,87,79,62,82,84,73,64,75,47,73,63,75,77,61,63,62,65,79,79,75,80,53,54,68",
+ "endOffsets": "292,2916,2977,3044,3113,3190,3941,4048,4121,6158,6317,6662,6720,6798,6859,6916,6972,7031,7089,7143,7229,7285,7343,7397,7462,7555,7629,7707,7827,7890,7953,8052,8129,8203,8253,8304,8370,8434,8502,8577,8649,8710,8781,8848,8908,8996,9076,9139,9222,9307,9381,9446,9522,9570,9644,9708,9784,9862,9924,9988,10051,10117,10197,10277,10353,10434,10488,10543,10682"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,171,252,322,441,609,688",
+ "endColumns": "65,80,69,118,167,78,75",
+ "endOffsets": "166,247,317,436,604,683,759"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "5952,6163,10548,10687,10986,11154,11233",
+ "endColumns": "65,80,69,118,167,78,75",
+ "endOffsets": "6013,6239,10613,10801,11149,11228,11304"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-zh-rHK/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "103",
+ "endOffsets": "302"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "4990",
+ "endColumns": "107",
+ "endOffsets": "5093"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-zh-rHK/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,294,418,529,627,730,842,940,1029,1135,1232,1357,1468,1571,1675,1726,1779",
+ "endColumns": "96,123,110,97,102,111,97,88,105,96,124,110,102,103,50,52,67",
+ "endOffsets": "293,417,528,626,729,841,939,1028,1134,1231,1356,1467,1570,1674,1725,1778,1846"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4126,4227,4355,4470,4572,4679,4795,4897,5098,5208,5309,5438,5553,5660,5768,5823,5880",
+ "endColumns": "100,127,114,101,106,115,101,92,109,100,128,114,106,107,54,56,71",
+ "endOffsets": "4222,4350,4465,4567,4674,4790,4892,4985,5203,5304,5433,5548,5655,5763,5818,5875,5947"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-zh-rHK/values-zh-rHK.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,147,246,340,434,527,620,716",
+ "endColumns": "91,98,93,93,92,92,95,100",
+ "endOffsets": "142,241,335,429,522,615,711,812"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3195,3287,3386,3480,3574,3667,3760,10885",
+ "endColumns": "91,98,93,93,92,92,95,100",
+ "endOffsets": "3282,3381,3475,3569,3662,3755,3851,10981"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1109,1205,1300,1394,1490,1582,1674,1766,1844,1940,2035,2130,2227,2323,2421,2572,2666",
+ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78",
+ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1104,1200,1295,1389,1485,1577,1669,1761,1839,1935,2030,2125,2222,2318,2416,2567,2661,2740"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "297,392,485,585,667,764,872,949,1024,1116,1210,1301,1397,1492,1586,1682,1774,1866,1958,2036,2132,2227,2322,2419,2515,2613,2764,10806",
+ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78",
+ "endOffsets": "387,480,580,662,759,867,944,1019,1111,1205,1296,1392,1487,1581,1677,1769,1861,1953,2031,2127,2222,2317,2414,2510,2608,2759,2853,10880"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-tl_values-tl.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-tl/values-tl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,216,324,437,525,631,746,826,903,994,1087,1182,1276,1376,1469,1564,1658,1749,1840,1924,2033,2143,2244,2354,2472,2580,2743,2845",
+ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84",
+ "endOffsets": "211,319,432,520,626,741,821,898,989,1082,1177,1271,1371,1464,1559,1653,1744,1835,1919,2028,2138,2239,2349,2467,2575,2738,2840,2925"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "330,441,549,662,750,856,971,1051,1128,1219,1312,1407,1501,1601,1694,1789,1883,1974,2065,2149,2258,2368,2469,2579,2697,2805,2968,12662",
+ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84",
+ "endOffsets": "436,544,657,745,851,966,1046,1123,1214,1307,1402,1496,1596,1689,1784,1878,1969,2060,2144,2253,2363,2464,2574,2692,2800,2963,3065,12742"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-tl/values-tl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,355,452,559,667,789",
+ "endColumns": "96,101,100,96,106,107,121,100",
+ "endOffsets": "147,249,350,447,554,662,784,885"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3507,3604,3706,3807,3904,4011,4119,12747",
+ "endColumns": "96,101,100,96,106,107,121,100",
+ "endOffsets": "3599,3701,3802,3899,4006,4114,4236,12843"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-tl/values-tl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,264,346,485,654,739",
+ "endColumns": "71,86,81,138,168,84,80",
+ "endOffsets": "172,259,341,480,649,734,815"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6929,7169,12356,12523,12848,13017,13102",
+ "endColumns": "71,86,81,138,168,84,80",
+ "endOffsets": "6996,7251,12433,12657,13012,13097,13178"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-tl/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,468,602,707,861,993,1111,1220,1395,1498,1672,1806,1964,2139,2203,2265",
+ "endColumns": "102,171,133,104,153,131,117,108,174,102,173,133,157,174,63,61,76",
+ "endOffsets": "295,467,601,706,860,992,1110,1219,1394,1497,1671,1805,1963,2138,2202,2264,2341"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4567,4674,4850,4988,5097,5255,5391,5513,5771,5950,6057,6235,6373,6535,6714,6782,6848",
+ "endColumns": "106,175,137,108,157,135,121,112,178,106,177,137,161,178,67,65,80",
+ "endOffsets": "4669,4845,4983,5092,5250,5386,5508,5621,5945,6052,6230,6368,6530,6709,6777,6843,6924"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-tl/values-tl.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,158,263,374",
+ "endColumns": "102,104,110,104",
+ "endOffsets": "153,258,369,474"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7001,7355,7460,7571",
+ "endColumns": "102,104,110,104",
+ "endOffsets": "7099,7455,7566,7671"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-tl/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "140",
+ "endOffsets": "335"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5626",
+ "endColumns": "144",
+ "endOffsets": "5766"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-tl/values-tl.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,280,364,444,530,627,717,822,958,1043,1108,1207,1275,1334,1423,1491,1558,1621,1696,1764,1818,1938,1996,2058,2112,2187,2329,2419,2504,2649,2733,2816,2962,3058,3135,3193,3244,3310,3384,3462,3553,3639,3713,3792,3865,3937,4053,4157,4230,4329,4429,4503,4578,4685,4737,4826,4893,4984,5078,5140,5204,5267,5337,5456,5561,5670,5770,5832,5887",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,83,79,85,96,89,104,135,84,64,98,67,58,88,67,66,62,74,67,53,119,57,61,53,74,141,89,84,144,83,82,145,95,76,57,50,65,73,77,90,85,73,78,72,71,115,103,72,98,99,73,74,106,51,88,66,90,93,61,63,62,69,118,104,108,99,61,54,84",
+ "endOffsets": "275,359,439,525,622,712,817,953,1038,1103,1202,1270,1329,1418,1486,1553,1616,1691,1759,1813,1933,1991,2053,2107,2182,2324,2414,2499,2644,2728,2811,2957,3053,3130,3188,3239,3305,3379,3457,3548,3634,3708,3787,3860,3932,4048,4152,4225,4324,4424,4498,4573,4680,4732,4821,4888,4979,5073,5135,5199,5262,5332,5451,5556,5665,5765,5827,5882,5967"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3070,3154,3234,3320,3417,4241,4346,4482,7104,7256,7676,7744,7803,7892,7960,8027,8090,8165,8233,8287,8407,8465,8527,8581,8656,8798,8888,8973,9118,9202,9285,9431,9527,9604,9662,9713,9779,9853,9931,10022,10108,10182,10261,10334,10406,10522,10626,10699,10798,10898,10972,11047,11154,11206,11295,11362,11453,11547,11609,11673,11736,11806,11925,12030,12139,12239,12301,12438",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,83,79,85,96,89,104,135,84,64,98,67,58,88,67,66,62,74,67,53,119,57,61,53,74,141,89,84,144,83,82,145,95,76,57,50,65,73,77,90,85,73,78,72,71,115,103,72,98,99,73,74,106,51,88,66,90,93,61,63,62,69,118,104,108,99,61,54,84",
+ "endOffsets": "325,3149,3229,3315,3412,3502,4341,4477,4562,7164,7350,7739,7798,7887,7955,8022,8085,8160,8228,8282,8402,8460,8522,8576,8651,8793,8883,8968,9113,9197,9280,9426,9522,9599,9657,9708,9774,9848,9926,10017,10103,10177,10256,10329,10401,10517,10621,10694,10793,10893,10967,11042,11149,11201,11290,11357,11448,11542,11604,11668,11731,11801,11920,12025,12134,12234,12296,12351,12518"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-gl_values-gl.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-gl/values-gl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,276,357,495,664,752",
+ "endColumns": "69,100,80,137,168,87,81",
+ "endOffsets": "170,271,352,490,659,747,829"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6846,7101,12308,12474,12796,12965,13053",
+ "endColumns": "69,100,80,137,168,87,81",
+ "endOffsets": "6911,7197,12384,12607,12960,13048,13130"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-gl/values-gl.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,275,356,436,521,623,719,824,957,1037,1115,1211,1290,1353,1448,1512,1581,1644,1718,1782,1838,1959,2017,2079,2135,2212,2351,2439,2519,2659,2739,2819,2968,3058,3139,3195,3251,3317,3396,3477,3565,3653,3732,3809,3891,3980,4081,4165,4257,4350,4451,4525,4617,4719,4771,4855,4921,5013,5101,5163,5227,5290,5360,5471,5576,5682,5781,5841,5901",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,79,84,101,95,104,132,79,77,95,78,62,94,63,68,62,73,63,55,120,57,61,55,76,138,87,79,139,79,79,148,89,80,55,55,65,78,80,87,87,78,76,81,88,100,83,91,92,100,73,91,101,51,83,65,91,87,61,63,62,69,110,104,105,98,59,59,84",
+ "endOffsets": "270,351,431,516,618,714,819,952,1032,1110,1206,1285,1348,1443,1507,1576,1639,1713,1777,1833,1954,2012,2074,2130,2207,2346,2434,2514,2654,2734,2814,2963,3053,3134,3190,3246,3312,3391,3472,3560,3648,3727,3804,3886,3975,4076,4160,4252,4345,4446,4520,4612,4714,4766,4850,4916,5008,5096,5158,5222,5285,5355,5466,5571,5677,5776,5836,5896,5981"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3075,3156,3236,3321,3423,4247,4352,4485,7023,7202,7618,7697,7760,7855,7919,7988,8051,8125,8189,8245,8366,8424,8486,8542,8619,8758,8846,8926,9066,9146,9226,9375,9465,9546,9602,9658,9724,9803,9884,9972,10060,10139,10216,10298,10387,10488,10572,10664,10757,10858,10932,11024,11126,11178,11262,11328,11420,11508,11570,11634,11697,11767,11878,11983,12089,12188,12248,12389",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,79,84,101,95,104,132,79,77,95,78,62,94,63,68,62,73,63,55,120,57,61,55,76,138,87,79,139,79,79,148,89,80,55,55,65,78,80,87,87,78,76,81,88,100,83,91,92,100,73,91,101,51,83,65,91,87,61,63,62,69,110,104,105,98,59,59,84",
+ "endOffsets": "320,3151,3231,3316,3418,3514,4347,4480,4560,7096,7293,7692,7755,7850,7914,7983,8046,8120,8184,8240,8361,8419,8481,8537,8614,8753,8841,8921,9061,9141,9221,9370,9460,9541,9597,9653,9719,9798,9879,9967,10055,10134,10211,10293,10382,10483,10567,10659,10752,10853,10927,11019,11121,11173,11257,11323,11415,11503,11565,11629,11692,11762,11873,11978,12084,12183,12243,12303,12469"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-gl/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "129",
+ "endOffsets": "324"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5590",
+ "endColumns": "133",
+ "endOffsets": "5719"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-gl/values-gl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,313,421,506,607,735,821,902,994,1088,1185,1279,1379,1473,1569,1664,1756,1848,1929,2037,2144,2251,2360,2465,2579,2756,2855",
+ "endColumns": "103,103,107,84,100,127,85,80,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82",
+ "endOffsets": "204,308,416,501,602,730,816,897,989,1083,1180,1274,1374,1468,1564,1659,1751,1843,1924,2032,2139,2246,2355,2460,2574,2751,2850,2933"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "325,429,533,641,726,827,955,1041,1122,1214,1308,1405,1499,1599,1693,1789,1884,1976,2068,2149,2257,2364,2471,2580,2685,2799,2976,12612",
+ "endColumns": "103,103,107,84,100,127,85,80,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82",
+ "endOffsets": "424,528,636,721,822,950,1036,1117,1209,1303,1400,1494,1594,1688,1784,1879,1971,2063,2144,2252,2359,2466,2575,2680,2794,2971,3070,12690"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-gl/values-gl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,154,256,356,454,561,667,783",
+ "endColumns": "98,101,99,97,106,105,115,100",
+ "endOffsets": "149,251,351,449,556,662,778,879"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3519,3618,3720,3820,3918,4025,4131,12695",
+ "endColumns": "98,101,99,97,106,105,115,100",
+ "endOffsets": "3613,3715,3815,3913,4020,4126,4242,12791"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-gl/values-gl.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,162,264,376",
+ "endColumns": "106,101,111,105",
+ "endOffsets": "157,259,371,477"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6916,7298,7400,7512",
+ "endColumns": "106,101,111,105",
+ "endOffsets": "7018,7395,7507,7613"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-gl/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,454,579,683,838,966,1081,1186,1353,1458,1623,1754,1915,2063,2126,2191",
+ "endColumns": "101,158,124,103,154,127,114,104,166,104,164,130,160,147,62,64,80",
+ "endOffsets": "294,453,578,682,837,965,1080,1185,1352,1457,1622,1753,1914,2062,2125,2190,2271"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4565,4671,4834,4963,5071,5230,5362,5481,5724,5895,6004,6173,6308,6473,6625,6692,6761",
+ "endColumns": "105,162,128,107,158,131,118,108,170,108,168,134,164,151,66,68,84",
+ "endOffsets": "4666,4829,4958,5066,5225,5357,5476,5585,5890,5999,6168,6303,6468,6620,6687,6756,6841"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-b+es+419_values-b+es+419.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-b+es+419/values-b+es+419.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,278,360,440,526,631,727,829,957,1038,1103,1198,1268,1331,1424,1488,1560,1623,1697,1761,1817,1935,1993,2055,2111,2191,2325,2414,2495,2636,2717,2797,2948,3038,3115,3171,3227,3293,3369,3451,3539,3628,3701,3778,3848,3925,4031,4120,4194,4288,4390,4462,4543,4647,4700,4785,4852,4945,5034,5096,5160,5223,5291,5402,5513,5615,5720,5780,5840",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,81,79,85,104,95,101,127,80,64,94,69,62,92,63,71,62,73,63,55,117,57,61,55,79,133,88,80,140,80,79,150,89,76,55,55,65,75,81,87,88,72,76,69,76,105,88,73,93,101,71,80,103,52,84,66,92,88,61,63,62,67,110,110,101,104,59,59,82",
+ "endOffsets": "273,355,435,521,626,722,824,952,1033,1098,1193,1263,1326,1419,1483,1555,1618,1692,1756,1812,1930,1988,2050,2106,2186,2320,2409,2490,2631,2712,2792,2943,3033,3110,3166,3222,3288,3364,3446,3534,3623,3696,3773,3843,3920,4026,4115,4189,4283,4385,4457,4538,4642,4695,4780,4847,4940,5029,5091,5155,5218,5286,5397,5508,5610,5715,5775,5835,5918"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v24_values-v24.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-v24/values-v24.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,9,12,15",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,140,239,326,427,626,839,1040",
+ "endLines": "2,3,4,5,8,11,14,17",
+ "endColumns": "84,98,86,100,10,10,10,10",
+ "endOffsets": "135,234,321,422,621,834,1035,1250"
+ },
+ "to": {
+ "startLines": "4,5,6,7,8,11,14,17",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "347,432,531,618,719,918,1131,1332",
+ "endLines": "4,5,6,7,10,13,16,19",
+ "endColumns": "84,98,86,100,10,10,10,10",
+ "endOffsets": "427,526,613,714,913,1126,1327,1542"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v24/values-v24.xml",
+ "from": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,212",
+ "endColumns": "156,134",
+ "endOffsets": "207,342"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-ca_values-ca.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ca/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,294,442,565,670,816,939,1058,1162,1329,1434,1589,1716,1876,2030,2091,2155",
+ "endColumns": "100,147,122,104,145,122,118,103,166,104,154,126,159,153,60,63,82",
+ "endOffsets": "293,441,564,669,815,938,1057,1161,1328,1433,1588,1715,1875,2029,2090,2154,2237"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4537,4642,4794,4921,5030,5180,5307,5430,5673,5844,5953,6112,6243,6407,6565,6630,6698",
+ "endColumns": "104,151,126,108,149,126,122,107,170,108,158,130,163,157,64,67,86",
+ "endOffsets": "4637,4789,4916,5025,5175,5302,5425,5533,5839,5948,6107,6238,6402,6560,6625,6693,6780"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ca/values-ca.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,352,449,555,660,786",
+ "endColumns": "95,101,98,96,105,104,125,100",
+ "endOffsets": "146,248,347,444,550,655,781,882"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3493,3589,3691,3790,3887,3993,4098,12641",
+ "endColumns": "95,101,98,96,105,104,125,100",
+ "endOffsets": "3584,3686,3785,3882,3988,4093,4219,12737"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ca/values-ca.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,228,333,440,523,629,755,839,918,1009,1102,1195,1290,1388,1481,1574,1668,1759,1850,1931,2042,2150,2248,2358,2463,2571,2731,2830",
+ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81",
+ "endOffsets": "223,328,435,518,624,750,834,913,1004,1097,1190,1285,1383,1476,1569,1663,1754,1845,1926,2037,2145,2243,2353,2458,2566,2726,2825,2907"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "324,447,552,659,742,848,974,1058,1137,1228,1321,1414,1509,1607,1700,1793,1887,1978,2069,2150,2261,2369,2467,2577,2682,2790,2950,12559",
+ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81",
+ "endOffsets": "442,547,654,737,843,969,1053,1132,1223,1316,1409,1504,1602,1695,1788,1882,1973,2064,2145,2256,2364,2462,2572,2677,2785,2945,3044,12636"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ca/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "130",
+ "endOffsets": "325"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5538",
+ "endColumns": "134",
+ "endOffsets": "5668"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ca/values-ca.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,274,355,435,523,626,718,819,947,1031,1096,1193,1273,1338,1433,1497,1569,1631,1707,1770,1827,1948,2006,2067,2124,2204,2341,2428,2512,2651,2729,2808,2960,3049,3125,3182,3238,3304,3382,3463,3551,3639,3717,3794,3868,3947,4057,4147,4239,4331,4432,4506,4588,4689,4739,4822,4888,4980,5067,5129,5193,5256,5329,5452,5565,5669,5777,5838,5898",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,79,87,102,91,100,127,83,64,96,79,64,94,63,71,61,75,62,56,120,57,60,56,79,136,86,83,138,77,78,151,88,75,56,55,65,77,80,87,87,77,76,73,78,109,89,91,91,100,73,81,100,49,82,65,91,86,61,63,62,72,122,112,103,107,60,59,85",
+ "endOffsets": "269,350,430,518,621,713,814,942,1026,1091,1188,1268,1333,1428,1492,1564,1626,1702,1765,1822,1943,2001,2062,2119,2199,2336,2423,2507,2646,2724,2803,2955,3044,3120,3177,3233,3299,3377,3458,3546,3634,3712,3789,3863,3942,4052,4142,4234,4326,4427,4501,4583,4684,4734,4817,4883,4975,5062,5124,5188,5251,5324,5447,5560,5664,5772,5833,5893,5979"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3049,3130,3210,3298,3401,4224,4325,4453,6967,7128,7548,7628,7693,7788,7852,7924,7986,8062,8125,8182,8303,8361,8422,8479,8559,8696,8783,8867,9006,9084,9163,9315,9404,9480,9537,9593,9659,9737,9818,9906,9994,10072,10149,10223,10302,10412,10502,10594,10686,10787,10861,10943,11044,11094,11177,11243,11335,11422,11484,11548,11611,11684,11807,11920,12024,12132,12193,12330",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,79,87,102,91,100,127,83,64,96,79,64,94,63,71,61,75,62,56,120,57,60,56,79,136,86,83,138,77,78,151,88,75,56,55,65,77,80,87,87,77,76,73,78,109,89,91,91,100,73,81,100,49,82,65,91,86,61,63,62,72,122,112,103,107,60,59,85",
+ "endOffsets": "319,3125,3205,3293,3396,3488,4320,4448,4532,7027,7220,7623,7688,7783,7847,7919,7981,8057,8120,8177,8298,8356,8417,8474,8554,8691,8778,8862,9001,9079,9158,9310,9399,9475,9532,9588,9654,9732,9813,9901,9989,10067,10144,10218,10297,10407,10497,10589,10681,10782,10856,10938,11039,11089,11172,11238,11330,11417,11479,11543,11606,11679,11802,11915,12019,12127,12188,12248,12411"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ca/values-ca.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,270,347,490,659,746",
+ "endColumns": "68,95,76,142,168,86,80",
+ "endOffsets": "169,265,342,485,654,741,822"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6785,7032,12253,12416,12742,12911,12998",
+ "endColumns": "68,95,76,142,168,86,80",
+ "endOffsets": "6849,7123,12325,12554,12906,12993,13074"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ca/values-ca.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,168,271,382",
+ "endColumns": "112,102,110,108",
+ "endOffsets": "163,266,377,486"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6854,7225,7328,7439",
+ "endColumns": "112,102,110,108",
+ "endOffsets": "6962,7323,7434,7543"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-gu_values-gu.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-gu/values-gu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,263,344,486,655,739",
+ "endColumns": "71,85,80,141,168,83,81",
+ "endOffsets": "172,258,339,481,650,734,816"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6630,6866,11847,12006,12330,12499,12583",
+ "endColumns": "71,85,80,141,168,83,81",
+ "endOffsets": "6697,6947,11923,12143,12494,12578,12660"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-gu/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "142",
+ "endOffsets": "337"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5436",
+ "endColumns": "146",
+ "endOffsets": "5578"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-gu/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,459,580,688,822,940,1047,1143,1287,1391,1551,1672,1811,1957,2014,2076",
+ "endColumns": "103,161,120,107,133,117,106,95,143,103,159,120,138,145,56,61,77",
+ "endOffsets": "296,458,579,687,821,939,1046,1142,1286,1390,1550,1671,1810,1956,2013,2075,2153"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4454,4562,4728,4853,4965,5103,5225,5336,5583,5731,5839,6003,6128,6271,6421,6482,6548",
+ "endColumns": "107,165,124,111,137,121,110,99,147,107,163,124,142,149,60,65,81",
+ "endOffsets": "4557,4723,4848,4960,5098,5220,5331,5431,5726,5834,5998,6123,6266,6416,6477,6543,6625"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-gu/values-gu.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,156,257,366",
+ "endColumns": "100,100,108,100",
+ "endOffsets": "151,252,361,462"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6702,7043,7144,7253",
+ "endColumns": "100,100,108,100",
+ "endOffsets": "6798,7139,7248,7349"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-gu/values-gu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,316,423,510,610,730,808,885,976,1069,1164,1258,1358,1451,1546,1640,1731,1822,1902,2008,2109,2206,2315,2415,2525,2685,2788",
+ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80",
+ "endOffsets": "207,311,418,505,605,725,803,880,971,1064,1159,1253,1353,1446,1541,1635,1726,1817,1897,2003,2104,2201,2310,2410,2520,2680,2783,2864"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "318,425,529,636,723,823,943,1021,1098,1189,1282,1377,1471,1571,1664,1759,1853,1944,2035,2115,2221,2322,2419,2528,2628,2738,2898,12148",
+ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80",
+ "endOffsets": "420,524,631,718,818,938,1016,1093,1184,1277,1372,1466,1566,1659,1754,1848,1939,2030,2110,2216,2317,2414,2523,2623,2733,2893,2996,12224"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-gu/values-gu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,149,252,349,451,553,651,773",
+ "endColumns": "93,102,96,101,101,97,121,100",
+ "endOffsets": "144,247,344,446,548,646,768,869"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3433,3527,3630,3727,3829,3931,4029,12229",
+ "endColumns": "93,102,96,101,101,97,121,100",
+ "endOffsets": "3522,3625,3722,3824,3926,4024,4146,12325"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-gu/values-gu.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,268,342,414,496,602,700,799,919,1003,1066,1157,1224,1283,1373,1436,1501,1565,1634,1696,1750,1865,1923,1984,2038,2111,2238,2324,2408,2541,2616,2692,2825,2911,2992,3046,3098,3164,3237,3317,3402,3482,3553,3629,3708,3777,3884,3980,4058,4153,4249,4323,4398,4497,4548,4630,4697,4784,4874,4936,5000,5063,5130,5232,5337,5434,5536,5594,5650",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,73,71,81,105,97,98,119,83,62,90,66,58,89,62,64,63,68,61,53,114,57,60,53,72,126,85,83,132,74,75,132,85,80,53,51,65,72,79,84,79,70,75,78,68,106,95,77,94,95,73,74,98,50,81,66,86,89,61,63,62,66,101,104,96,101,57,55,77",
+ "endOffsets": "263,337,409,491,597,695,794,914,998,1061,1152,1219,1278,1368,1431,1496,1560,1629,1691,1745,1860,1918,1979,2033,2106,2233,2319,2403,2536,2611,2687,2820,2906,2987,3041,3093,3159,3232,3312,3397,3477,3548,3624,3703,3772,3879,3975,4053,4148,4244,4318,4393,4492,4543,4625,4692,4779,4869,4931,4995,5058,5125,5227,5332,5429,5531,5589,5645,5723"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3001,3075,3147,3229,3335,4151,4250,4370,6803,6952,7354,7421,7480,7570,7633,7698,7762,7831,7893,7947,8062,8120,8181,8235,8308,8435,8521,8605,8738,8813,8889,9022,9108,9189,9243,9295,9361,9434,9514,9599,9679,9750,9826,9905,9974,10081,10177,10255,10350,10446,10520,10595,10694,10745,10827,10894,10981,11071,11133,11197,11260,11327,11429,11534,11631,11733,11791,11928",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,73,71,81,105,97,98,119,83,62,90,66,58,89,62,64,63,68,61,53,114,57,60,53,72,126,85,83,132,74,75,132,85,80,53,51,65,72,79,84,79,70,75,78,68,106,95,77,94,95,73,74,98,50,81,66,86,89,61,63,62,66,101,104,96,101,57,55,77",
+ "endOffsets": "313,3070,3142,3224,3330,3428,4245,4365,4449,6861,7038,7416,7475,7565,7628,7693,7757,7826,7888,7942,8057,8115,8176,8230,8303,8430,8516,8600,8733,8808,8884,9017,9103,9184,9238,9290,9356,9429,9509,9594,9674,9745,9821,9900,9969,10076,10172,10250,10345,10441,10515,10590,10689,10740,10822,10889,10976,11066,11128,11192,11255,11322,11424,11529,11626,11728,11786,11842,12001"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-af_values-af.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-af/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,448,570,676,822,940,1057,1155,1317,1421,1574,1697,1832,1982,2044,2103",
+ "endColumns": "102,151,121,105,145,117,116,97,161,103,152,122,134,149,61,58,74",
+ "endOffsets": "295,447,569,675,821,939,1056,1154,1316,1420,1573,1696,1831,1981,2043,2102,2177"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4445,4552,4708,4834,4944,5094,5216,5337,5582,5748,5856,6013,6140,6279,6433,6499,6562",
+ "endColumns": "106,155,125,109,149,121,120,101,165,107,156,126,138,153,65,62,78",
+ "endOffsets": "4547,4703,4829,4939,5089,5211,5332,5434,5743,5851,6008,6135,6274,6428,6494,6557,6636"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-af/values-af.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,160,262,375",
+ "endColumns": "104,101,112,99",
+ "endOffsets": "155,257,370,470"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6712,7057,7159,7272",
+ "endColumns": "104,101,112,99",
+ "endOffsets": "6812,7154,7267,7367"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-af/values-af.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,353,451,558,667,787",
+ "endColumns": "97,101,97,97,106,108,119,100",
+ "endOffsets": "148,250,348,446,553,662,782,883"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3418,3516,3618,3716,3814,3921,4030,12170",
+ "endColumns": "97,101,97,97,106,108,119,100",
+ "endOffsets": "3511,3613,3711,3809,3916,4025,4145,12266"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-af/values-af.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,264,345,484,653,732",
+ "endColumns": "70,87,80,138,168,78,76",
+ "endOffsets": "171,259,340,479,648,727,804"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6641,6881,11792,11950,12271,12440,12519",
+ "endColumns": "70,87,80,138,168,78,76",
+ "endOffsets": "6707,6964,11868,12084,12435,12514,12591"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-af/values-af.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,274,355,435,513,608,696,796,910,991,1055,1143,1209,1272,1358,1420,1481,1539,1605,1668,1723,1841,1898,1960,2015,2084,2203,2291,2374,2513,2596,2677,2805,2892,2969,3027,3078,3144,3213,3289,3375,3451,3525,3604,3677,3748,3851,3938,4009,4098,4188,4260,4335,4422,4473,4552,4619,4700,4784,4846,4910,4973,5043,5147,5250,5346,5446,5508,5563",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,79,77,94,87,99,113,80,63,87,65,62,85,61,60,57,65,62,54,117,56,61,54,68,118,87,82,138,82,80,127,86,76,57,50,65,68,75,85,75,73,78,72,70,102,86,70,88,89,71,74,86,50,78,66,80,83,61,63,62,69,103,102,95,99,61,54,76",
+ "endOffsets": "269,350,430,508,603,691,791,905,986,1050,1138,1204,1267,1353,1415,1476,1534,1600,1663,1718,1836,1893,1955,2010,2079,2198,2286,2369,2508,2591,2672,2800,2887,2964,3022,3073,3139,3208,3284,3370,3446,3520,3599,3672,3743,3846,3933,4004,4093,4183,4255,4330,4417,4468,4547,4614,4695,4779,4841,4905,4968,5038,5142,5245,5341,5441,5503,5558,5635"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2996,3077,3157,3235,3330,4150,4250,4364,6817,6969,7372,7438,7501,7587,7649,7710,7768,7834,7897,7952,8070,8127,8189,8244,8313,8432,8520,8603,8742,8825,8906,9034,9121,9198,9256,9307,9373,9442,9518,9604,9680,9754,9833,9906,9977,10080,10167,10238,10327,10417,10489,10564,10651,10702,10781,10848,10929,11013,11075,11139,11202,11272,11376,11479,11575,11675,11737,11873",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,79,77,94,87,99,113,80,63,87,65,62,85,61,60,57,65,62,54,117,56,61,54,68,118,87,82,138,82,80,127,86,76,57,50,65,68,75,85,75,73,78,72,70,102,86,70,88,89,71,74,86,50,78,66,80,83,61,63,62,69,103,102,95,99,61,54,76",
+ "endOffsets": "319,3072,3152,3230,3325,3413,4245,4359,4440,6876,7052,7433,7496,7582,7644,7705,7763,7829,7892,7947,8065,8122,8184,8239,8308,8427,8515,8598,8737,8820,8901,9029,9116,9193,9251,9302,9368,9437,9513,9599,9675,9749,9828,9901,9972,10075,10162,10233,10322,10412,10484,10559,10646,10697,10776,10843,10924,11008,11070,11134,11197,11267,11371,11474,11570,11670,11732,11787,11945"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-af/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "138",
+ "endOffsets": "333"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5439",
+ "endColumns": "142",
+ "endOffsets": "5577"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-af/values-af.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,309,415,500,603,721,798,874,965,1058,1153,1247,1346,1439,1534,1633,1728,1822,1903,2010,2115,2212,2320,2423,2525,2679,2777",
+ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80",
+ "endOffsets": "208,304,410,495,598,716,793,869,960,1053,1148,1242,1341,1434,1529,1628,1723,1817,1898,2005,2110,2207,2315,2418,2520,2674,2772,2853"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "324,432,528,634,719,822,940,1017,1093,1184,1277,1372,1466,1565,1658,1753,1852,1947,2041,2122,2229,2334,2431,2539,2642,2744,2898,12089",
+ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80",
+ "endOffsets": "427,523,629,714,817,935,1012,1088,1179,1272,1367,1461,1560,1653,1748,1847,1942,2036,2117,2224,2329,2426,2534,2637,2739,2893,2991,12165"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v22_values-v22.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v22/values-v22.xml",
+ "from": {
+ "startLines": "2,3,4,9",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,130,217,487",
+ "endLines": "2,3,8,13",
+ "endColumns": "74,86,12,12",
+ "endOffsets": "125,212,482,764"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-lt_values-lt.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-lt/values-lt.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,269,347,493,662,747",
+ "endColumns": "72,90,77,145,168,84,80",
+ "endOffsets": "173,264,342,488,657,742,823"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6933,7177,12329,12489,12820,12989,13074",
+ "endColumns": "72,90,77,145,168,84,80",
+ "endOffsets": "7001,7263,12402,12630,12984,13069,13150"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-lt/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "154",
+ "endOffsets": "349"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5673",
+ "endColumns": "158",
+ "endOffsets": "5827"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-lt/values-lt.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,375,454,532,615,709,799,895,1013,1097,1163,1262,1340,1405,1515,1578,1650,1709,1783,1844,1898,2022,2083,2145,2199,2277,2411,2499,2583,2724,2803,2887,3030,3127,3204,3260,3314,3380,3455,3534,3622,3702,3778,3856,3929,4006,4113,4200,4281,4371,4463,4535,4616,4708,4763,4845,4911,4996,5083,5145,5209,5272,5344,5455,5571,5672,5781,5841,5899",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,78,77,82,93,89,95,117,83,65,98,77,64,109,62,71,58,73,60,53,123,60,61,53,77,133,87,83,140,78,83,142,96,76,55,53,65,74,78,87,79,75,77,72,76,106,86,80,89,91,71,80,91,54,81,65,84,86,61,63,62,71,110,115,100,108,59,57,81",
+ "endOffsets": "370,449,527,610,704,794,890,1008,1092,1158,1257,1335,1400,1510,1573,1645,1704,1778,1839,1893,2017,2078,2140,2194,2272,2406,2494,2578,2719,2798,2882,3025,3122,3199,3255,3309,3375,3450,3529,3617,3697,3773,3851,3924,4001,4108,4195,4276,4366,4458,4530,4611,4703,4758,4840,4906,4991,5078,5140,5204,5267,5339,5450,5566,5667,5776,5836,5894,5976"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3194,3273,3351,3434,3528,4369,4465,4583,7111,7268,7692,7770,7835,7945,8008,8080,8139,8213,8274,8328,8452,8513,8575,8629,8707,8841,8929,9013,9154,9233,9317,9460,9557,9634,9690,9744,9810,9885,9964,10052,10132,10208,10286,10359,10436,10543,10630,10711,10801,10893,10965,11046,11138,11193,11275,11341,11426,11513,11575,11639,11702,11774,11885,12001,12102,12211,12271,12407",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,78,77,82,93,89,95,117,83,65,98,77,64,109,62,71,58,73,60,53,123,60,61,53,77,133,87,83,140,78,83,142,96,76,55,53,65,74,78,87,79,75,77,72,76,106,86,80,89,91,71,80,91,54,81,65,84,86,61,63,62,71,110,115,100,108,59,57,81",
+ "endOffsets": "420,3268,3346,3429,3523,3613,4460,4578,4662,7172,7362,7765,7830,7940,8003,8075,8134,8208,8269,8323,8447,8508,8570,8624,8702,8836,8924,9008,9149,9228,9312,9455,9552,9629,9685,9739,9805,9880,9959,10047,10127,10203,10281,10354,10431,10538,10625,10706,10796,10888,10960,11041,11133,11188,11270,11336,11421,11508,11570,11634,11697,11769,11880,11996,12097,12206,12266,12324,12484"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-lt/values-lt.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,221,325,438,525,627,749,832,912,1006,1102,1199,1295,1398,1494,1592,1688,1782,1876,1959,2068,2176,2276,2386,2491,2597,2773,2874",
+ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83",
+ "endOffsets": "216,320,433,520,622,744,827,907,1001,1097,1194,1290,1393,1489,1587,1683,1777,1871,1954,2063,2171,2271,2381,2486,2592,2768,2869,2953"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "425,541,645,758,845,947,1069,1152,1232,1326,1422,1519,1615,1718,1814,1912,2008,2102,2196,2279,2388,2496,2596,2706,2811,2917,3093,12635",
+ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83",
+ "endOffsets": "536,640,753,840,942,1064,1147,1227,1321,1417,1514,1610,1713,1809,1907,2003,2097,2191,2274,2383,2491,2591,2701,2806,2912,3088,3189,12714"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-lt/values-lt.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,160,265,379",
+ "endColumns": "104,104,113,105",
+ "endOffsets": "155,260,374,480"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7006,7367,7472,7586",
+ "endColumns": "104,104,113,105",
+ "endOffsets": "7106,7467,7581,7687"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-lt/values-lt.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,263,362,465,576,686,806",
+ "endColumns": "97,109,98,102,110,109,119,100",
+ "endOffsets": "148,258,357,460,571,681,801,902"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3618,3716,3826,3925,4028,4139,4249,12719",
+ "endColumns": "97,109,98,102,110,109,119,100",
+ "endOffsets": "3711,3821,3920,4023,4134,4244,4364,12815"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-lt/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,444,572,675,824,950,1065,1167,1329,1434,1595,1725,1874,2020,2084,2146",
+ "endColumns": "102,147,127,102,148,125,114,101,161,104,160,129,148,145,63,61,85",
+ "endOffsets": "295,443,571,674,823,949,1064,1166,1328,1433,1594,1724,1873,2019,2083,2145,2231"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4667,4774,4926,5058,5165,5318,5448,5567,5832,5998,6107,6272,6406,6559,6709,6777,6843",
+ "endColumns": "106,151,131,106,152,129,118,105,165,108,164,133,152,149,67,65,89",
+ "endOffsets": "4769,4921,5053,5160,5313,5443,5562,5668,5993,6102,6267,6401,6554,6704,6772,6838,6928"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-small-v4_values-small-v4.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-small-v4/values-small-v4.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,128,198,270",
+ "endColumns": "72,69,71,69",
+ "endOffsets": "123,193,265,335"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-watch-v21_values-watch-v21.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-watch-v21/values-watch-v21.xml",
+ "from": {
+ "startLines": "2,6,10",
+ "startColumns": "4,4,4",
+ "startOffsets": "55,271,499",
+ "endLines": "5,9,13",
+ "endColumns": "12,12,12",
+ "endOffsets": "266,494,724"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-sr_values-sr.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-sr/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,447,569,675,825,948,1056,1154,1299,1402,1558,1681,1826,1964,2028,2089",
+ "endColumns": "101,151,121,105,149,122,107,97,144,102,155,122,144,137,63,60,75",
+ "endOffsets": "294,446,568,674,824,947,1055,1153,1298,1401,1557,1680,1825,1963,2027,2088,2164"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4563,4669,4825,4951,5061,5215,5342,5454,5686,5835,5942,6102,6229,6378,6520,6588,6653",
+ "endColumns": "105,155,125,109,153,126,111,101,148,106,159,126,148,141,67,64,79",
+ "endOffsets": "4664,4820,4946,5056,5210,5337,5449,5551,5830,5937,6097,6224,6373,6515,6583,6648,6728"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sr/values-sr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,263,343,495,664,750",
+ "endColumns": "70,86,79,151,168,85,81",
+ "endOffsets": "171,258,338,490,659,745,827"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6733,6981,11994,12154,12494,12663,12749",
+ "endColumns": "70,86,79,151,168,85,81",
+ "endOffsets": "6799,7063,12069,12301,12658,12744,12826"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-sr/values-sr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,352,456,560,665,781",
+ "endColumns": "97,101,96,103,103,104,115,100",
+ "endOffsets": "148,250,347,451,555,660,776,877"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3531,3629,3731,3828,3932,4036,4141,12393",
+ "endColumns": "97,101,96,103,103,104,115,100",
+ "endOffsets": "3624,3726,3823,3927,4031,4136,4252,12489"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-sr/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "125",
+ "endOffsets": "320"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5556",
+ "endColumns": "129",
+ "endOffsets": "5681"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sr/values-sr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,313,419,505,609,731,815,896,987,1080,1175,1269,1369,1462,1557,1662,1753,1844,1930,2035,2141,2244,2350,2459,2566,2736,2833",
+ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86",
+ "endOffsets": "207,308,414,500,604,726,810,891,982,1075,1170,1264,1364,1457,1552,1657,1748,1839,1925,2030,2136,2239,2345,2454,2561,2731,2828,2915"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "371,478,579,685,771,875,997,1081,1162,1253,1346,1441,1535,1635,1728,1823,1928,2019,2110,2196,2301,2407,2510,2616,2725,2832,3002,12306",
+ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86",
+ "endOffsets": "473,574,680,766,870,992,1076,1157,1248,1341,1436,1530,1630,1723,1818,1923,2014,2105,2191,2296,2402,2505,2611,2720,2827,2997,3094,12388"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-sr/values-sr.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,166,266,379",
+ "endColumns": "110,99,112,97",
+ "endOffsets": "161,261,374,472"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6804,7160,7260,7373",
+ "endColumns": "110,99,112,97",
+ "endOffsets": "6910,7255,7368,7466"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sr/values-sr.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,321,397,473,553,660,753,847,978,1059,1125,1217,1285,1348,1451,1511,1577,1633,1704,1764,1818,1930,1987,2048,2102,2178,2303,2389,2472,2610,2691,2774,2905,2993,3071,3125,3181,3247,3321,3399,3488,3570,3645,3721,3796,3867,3974,4064,4137,4229,4325,4397,4473,4569,4622,4704,4771,4858,4945,5007,5071,5134,5203,5308,5418,5514,5622,5680,5740",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,75,75,79,106,92,93,130,80,65,91,67,62,102,59,65,55,70,59,53,111,56,60,53,75,124,85,82,137,80,82,130,87,77,53,55,65,73,77,88,81,74,75,74,70,106,89,72,91,95,71,75,95,52,81,66,86,86,61,63,62,68,104,109,95,107,57,59,79",
+ "endOffsets": "316,392,468,548,655,748,842,973,1054,1120,1212,1280,1343,1446,1506,1572,1628,1699,1759,1813,1925,1982,2043,2097,2173,2298,2384,2467,2605,2686,2769,2900,2988,3066,3120,3176,3242,3316,3394,3483,3565,3640,3716,3791,3862,3969,4059,4132,4224,4320,4392,4468,4564,4617,4699,4766,4853,4940,5002,5066,5129,5198,5303,5413,5509,5617,5675,5735,5815"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3099,3175,3251,3331,3438,4257,4351,4482,6915,7068,7471,7539,7602,7705,7765,7831,7887,7958,8018,8072,8184,8241,8302,8356,8432,8557,8643,8726,8864,8945,9028,9159,9247,9325,9379,9435,9501,9575,9653,9742,9824,9899,9975,10050,10121,10228,10318,10391,10483,10579,10651,10727,10823,10876,10958,11025,11112,11199,11261,11325,11388,11457,11562,11672,11768,11876,11934,12074",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,75,75,79,106,92,93,130,80,65,91,67,62,102,59,65,55,70,59,53,111,56,60,53,75,124,85,82,137,80,82,130,87,77,53,55,65,73,77,88,81,74,75,74,70,106,89,72,91,95,71,75,95,52,81,66,86,86,61,63,62,68,104,109,95,107,57,59,79",
+ "endOffsets": "366,3170,3246,3326,3433,3526,4346,4477,4558,6976,7155,7534,7597,7700,7760,7826,7882,7953,8013,8067,8179,8236,8297,8351,8427,8552,8638,8721,8859,8940,9023,9154,9242,9320,9374,9430,9496,9570,9648,9737,9819,9894,9970,10045,10116,10223,10313,10386,10478,10574,10646,10722,10818,10871,10953,11020,11107,11194,11256,11320,11383,11452,11557,11667,11763,11871,11929,11989,12149"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-w400dp-port-v13_values-w400dp-port-v13.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-w400dp-port-v13/values-w400dp-port-v13.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,114,170,226,293,358,413,478",
+ "endColumns": "58,55,55,66,64,54,64,68",
+ "endOffsets": "109,165,221,288,353,408,473,542"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-hi_values-hi.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-hi/values-hi.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,259,337,413,494,601,697,804,936,1019,1084,1178,1247,1306,1391,1454,1517,1575,1640,1701,1762,1868,1926,1986,2045,2115,2231,2310,2390,2524,2599,2675,2812,2909,3007,3064,3119,3185,3255,3332,3418,3503,3571,3647,3728,3806,3907,3993,4080,4177,4276,4350,4420,4524,4578,4665,4732,4822,4914,4976,5040,5103,5169,5274,5384,5485,5592,5653,5712",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,75,80,106,95,106,131,82,64,93,68,58,84,62,62,57,64,60,60,105,57,59,58,69,115,78,79,133,74,75,136,96,97,56,54,65,69,76,85,84,67,75,80,77,100,85,86,96,98,73,69,103,53,86,66,89,91,61,63,62,65,104,109,100,106,60,58,78",
+ "endOffsets": "254,332,408,489,596,692,799,931,1014,1079,1173,1242,1301,1386,1449,1512,1570,1635,1696,1757,1863,1921,1981,2040,2110,2226,2305,2385,2519,2594,2670,2807,2904,3002,3059,3114,3180,3250,3327,3413,3498,3566,3642,3723,3801,3902,3988,4075,4172,4271,4345,4415,4519,4573,4660,4727,4817,4909,4971,5035,5098,5164,5269,5379,5480,5587,5648,5707,5786"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2991,3069,3145,3226,3333,4182,4289,4421,6914,7070,7481,7550,7609,7694,7757,7820,7878,7943,8004,8065,8171,8229,8289,8348,8418,8534,8613,8693,8827,8902,8978,9115,9212,9310,9367,9422,9488,9558,9635,9721,9806,9874,9950,10031,10109,10210,10296,10383,10480,10579,10653,10723,10827,10881,10968,11035,11125,11217,11279,11343,11406,11472,11577,11687,11788,11895,11956,12093",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,75,80,106,95,106,131,82,64,93,68,58,84,62,62,57,64,60,60,105,57,59,58,69,115,78,79,133,74,75,136,96,97,56,54,65,69,76,85,84,67,75,80,77,100,85,86,96,98,73,69,103,53,86,66,89,91,61,63,62,65,104,109,100,106,60,58,78",
+ "endOffsets": "304,3064,3140,3221,3328,3424,4284,4416,4499,6974,7159,7545,7604,7689,7752,7815,7873,7938,7999,8060,8166,8224,8284,8343,8413,8529,8608,8688,8822,8897,8973,9110,9207,9305,9362,9417,9483,9553,9630,9716,9801,9869,9945,10026,10104,10205,10291,10378,10475,10574,10648,10718,10822,10876,10963,11030,11120,11212,11274,11338,11401,11467,11572,11682,11783,11890,11951,12010,12167"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-hi/values-hi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,211,309,419,505,607,728,806,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1901,2006,2108,2206,2316,2419,2528,2686,2787",
+ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81",
+ "endOffsets": "206,304,414,500,602,723,801,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1896,2001,2103,2201,2311,2414,2523,2681,2782,2864"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "309,415,513,623,709,811,932,1010,1087,1178,1271,1366,1460,1560,1653,1748,1842,1933,2024,2105,2210,2312,2410,2520,2623,2732,2890,12314",
+ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81",
+ "endOffsets": "410,508,618,704,806,927,1005,1082,1173,1266,1361,1455,1555,1648,1743,1837,1928,2019,2100,2205,2307,2405,2515,2618,2727,2885,2986,12391"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-hi/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "141",
+ "endOffsets": "336"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5515",
+ "endColumns": "145",
+ "endOffsets": "5656"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-hi/values-hi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,256,361,462,575,681,808",
+ "endColumns": "97,102,104,100,112,105,126,100",
+ "endOffsets": "148,251,356,457,570,676,803,904"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3429,3527,3630,3735,3836,3949,4055,12396",
+ "endColumns": "97,102,104,100,112,105,126,100",
+ "endOffsets": "3522,3625,3730,3831,3944,4050,4177,12492"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-hi/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,453,575,683,830,956,1064,1172,1325,1430,1592,1718,1855,2004,2063,2126",
+ "endColumns": "103,155,121,107,146,125,107,107,152,104,161,125,136,148,58,62,83",
+ "endOffsets": "296,452,574,682,829,955,1063,1171,1324,1429,1591,1717,1854,2003,2062,2125,2209"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4504,4612,4772,4898,5010,5161,5291,5403,5661,5818,5927,6093,6223,6364,6517,6580,6647",
+ "endColumns": "107,159,125,111,150,129,111,111,156,108,165,129,140,152,62,66,87",
+ "endOffsets": "4607,4767,4893,5005,5156,5286,5398,5510,5813,5922,6088,6218,6359,6512,6575,6642,6730"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-hi/values-hi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,269,347,489,658,738",
+ "endColumns": "72,90,77,141,168,79,77",
+ "endOffsets": "173,264,342,484,653,733,811"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6735,6979,12015,12172,12497,12666,12746",
+ "endColumns": "72,90,77,141,168,79,77",
+ "endOffsets": "6803,7065,12088,12309,12661,12741,12819"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-hi/values-hi.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,161,263,375",
+ "endColumns": "105,101,111,102",
+ "endOffsets": "156,258,370,473"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6808,7164,7266,7378",
+ "endColumns": "105,101,111,102",
+ "endOffsets": "6909,7261,7373,7476"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-pa_values-pa.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-pa/values-pa.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,262,341,488,657,737",
+ "endColumns": "71,84,78,146,168,79,77",
+ "endOffsets": "172,257,336,483,652,732,810"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6701,6942,11846,12002,12330,12499,12579",
+ "endColumns": "71,84,78,146,168,79,77",
+ "endOffsets": "6768,7022,11920,12144,12494,12574,12652"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-pa/values-pa.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,263,340,419,500,599,688,796,908,991,1055,1147,1216,1275,1360,1423,1485,1543,1607,1668,1722,1836,1894,1954,2008,2078,2205,2286,2365,2500,2576,2653,2782,2866,2948,3003,3058,3124,3193,3270,3356,3435,3503,3579,3649,3714,3816,3911,3984,4078,4171,4245,4314,4408,4464,4547,4614,4698,4786,4848,4912,4975,5042,5139,5245,5336,5438,5497,5556",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,76,78,80,98,88,107,111,82,63,91,68,58,84,62,61,57,63,60,53,113,57,59,53,69,126,80,78,134,75,76,128,83,81,54,54,65,68,76,85,78,67,75,69,64,101,94,72,93,92,73,68,93,55,82,66,83,87,61,63,62,66,96,105,90,101,58,58,76",
+ "endOffsets": "258,335,414,495,594,683,791,903,986,1050,1142,1211,1270,1355,1418,1480,1538,1602,1663,1717,1831,1889,1949,2003,2073,2200,2281,2360,2495,2571,2648,2777,2861,2943,2998,3053,3119,3188,3265,3351,3430,3498,3574,3644,3709,3811,3906,3979,4073,4166,4240,4309,4403,4459,4542,4609,4693,4781,4843,4907,4970,5037,5134,5240,5331,5433,5492,5551,5628"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2975,3052,3131,3212,3311,4133,4241,4353,6878,7027,7437,7506,7565,7650,7713,7775,7833,7897,7958,8012,8126,8184,8244,8298,8368,8495,8576,8655,8790,8866,8943,9072,9156,9238,9293,9348,9414,9483,9560,9646,9725,9793,9869,9939,10004,10106,10201,10274,10368,10461,10535,10604,10698,10754,10837,10904,10988,11076,11138,11202,11265,11332,11429,11535,11626,11728,11787,11925",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,76,78,80,98,88,107,111,82,63,91,68,58,84,62,61,57,63,60,53,113,57,59,53,69,126,80,78,134,75,76,128,83,81,54,54,65,68,76,85,78,67,75,69,64,101,94,72,93,92,73,68,93,55,82,66,83,87,61,63,62,66,96,105,90,101,58,58,76",
+ "endOffsets": "308,3047,3126,3207,3306,3395,4236,4348,4431,6937,7114,7501,7560,7645,7708,7770,7828,7892,7953,8007,8121,8179,8239,8293,8363,8490,8571,8650,8785,8861,8938,9067,9151,9233,9288,9343,9409,9478,9555,9641,9720,9788,9864,9934,9999,10101,10196,10269,10363,10456,10530,10599,10693,10749,10832,10899,10983,11071,11133,11197,11260,11327,11424,11530,11621,11723,11782,11841,11997"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-pa/values-pa.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,208,305,410,496,596,709,787,864,955,1048,1142,1236,1336,1429,1524,1618,1709,1800,1879,1989,2092,2188,2299,2401,2511,2670,2767",
+ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79",
+ "endOffsets": "203,300,405,491,591,704,782,859,950,1043,1137,1231,1331,1424,1519,1613,1704,1795,1874,1984,2087,2183,2294,2396,2506,2665,2762,2842"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "313,416,513,618,704,804,917,995,1072,1163,1256,1350,1444,1544,1637,1732,1826,1917,2008,2087,2197,2300,2396,2507,2609,2719,2878,12149",
+ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79",
+ "endOffsets": "411,508,613,699,799,912,990,1067,1158,1251,1345,1439,1539,1632,1727,1821,1912,2003,2082,2192,2295,2391,2502,2604,2714,2873,2970,12224"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-pa/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,465,591,696,839,964,1073,1172,1330,1435,1604,1732,1881,2038,2099,2161",
+ "endColumns": "102,168,125,104,142,124,108,98,157,104,168,127,148,156,60,61,77",
+ "endOffsets": "295,464,590,695,838,963,1072,1171,1329,1434,1603,1731,1880,2037,2098,2160,2238"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4436,4543,4716,4846,4955,5102,5231,5344,5598,5760,5869,6042,6174,6327,6488,6553,6619",
+ "endColumns": "106,172,129,108,146,128,112,102,161,108,172,131,152,160,64,65,81",
+ "endOffsets": "4538,4711,4841,4950,5097,5226,5339,5442,5755,5864,6037,6169,6322,6483,6548,6614,6696"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-pa/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "146",
+ "endOffsets": "341"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5447",
+ "endColumns": "150",
+ "endOffsets": "5593"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-pa/values-pa.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,160,261,375",
+ "endColumns": "104,100,113,102",
+ "endOffsets": "155,256,370,473"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6773,7119,7220,7334",
+ "endColumns": "104,100,113,102",
+ "endOffsets": "6873,7215,7329,7432"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-pa/values-pa.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,358,459,561,659,788",
+ "endColumns": "97,101,102,100,101,97,128,100",
+ "endOffsets": "148,250,353,454,556,654,783,884"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3400,3498,3600,3703,3804,3906,4004,12229",
+ "endColumns": "97,101,102,100,101,97,128,100",
+ "endOffsets": "3493,3595,3698,3799,3901,3999,4128,12325"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-si_values-si.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-si/values-si.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,181,264,339,482,651,743",
+ "endColumns": "75,82,74,142,168,91,86",
+ "endOffsets": "176,259,334,477,646,738,825"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6664,6912,11867,12022,12348,12517,12609",
+ "endColumns": "75,82,74,142,168,91,86",
+ "endOffsets": "6735,6990,11937,12160,12512,12604,12691"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-si/values-si.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,163,270,386",
+ "endColumns": "107,106,115,104",
+ "endOffsets": "158,265,381,486"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6740,7084,7191,7307",
+ "endColumns": "107,106,115,104",
+ "endOffsets": "6843,7186,7302,7407"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-si/values-si.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,221,328,435,518,623,739,829,915,1006,1099,1193,1287,1387,1480,1575,1669,1760,1851,1935,2044,2148,2246,2356,2456,2563,2722,2821",
+ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81",
+ "endOffsets": "216,323,430,513,618,734,824,910,1001,1094,1188,1282,1382,1475,1570,1664,1755,1846,1930,2039,2143,2241,2351,2451,2558,2717,2816,2898"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "319,435,542,649,732,837,953,1043,1129,1220,1313,1407,1501,1601,1694,1789,1883,1974,2065,2149,2258,2362,2460,2570,2670,2777,2936,12165",
+ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81",
+ "endOffsets": "430,537,644,727,832,948,1038,1124,1215,1308,1402,1496,1596,1689,1784,1878,1969,2060,2144,2253,2357,2455,2565,2665,2772,2931,3030,12242"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-si/values-si.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,157,260,365,470,569,673,787",
+ "endColumns": "101,102,104,104,98,103,113,100",
+ "endOffsets": "152,255,360,465,564,668,782,883"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3442,3544,3647,3752,3857,3956,4060,12247",
+ "endColumns": "101,102,104,104,98,103,113,100",
+ "endOffsets": "3539,3642,3747,3852,3951,4055,4169,12343"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-si/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "134",
+ "endOffsets": "329"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5453",
+ "endColumns": "138",
+ "endOffsets": "5587"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-si/values-si.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,269,345,422,500,591,676,778,893,976,1040,1129,1196,1256,1350,1414,1477,1533,1603,1670,1725,1844,1901,1965,2019,2092,2214,2297,2382,2514,2592,2672,2794,2880,2964,3024,3076,3142,3212,3285,3367,3444,3516,3593,3665,3735,3848,3941,4014,4104,4197,4271,4343,4434,4488,4568,4634,4718,4803,4865,4929,4992,5058,5163,5268,5363,5464,5528,5584",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,75,76,77,90,84,101,114,82,63,88,66,59,93,63,62,55,69,66,54,118,56,63,53,72,121,82,84,131,77,79,121,85,83,59,51,65,69,72,81,76,71,76,71,69,112,92,72,89,92,73,71,90,53,79,65,83,84,61,63,62,65,104,104,94,100,63,55,79",
+ "endOffsets": "264,340,417,495,586,671,773,888,971,1035,1124,1191,1251,1345,1409,1472,1528,1598,1665,1720,1839,1896,1960,2014,2087,2209,2292,2377,2509,2587,2667,2789,2875,2959,3019,3071,3137,3207,3280,3362,3439,3511,3588,3660,3730,3843,3936,4009,4099,4192,4266,4338,4429,4483,4563,4629,4713,4798,4860,4924,4987,5053,5158,5263,5358,5459,5523,5579,5659"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3035,3111,3188,3266,3357,4174,4276,4391,6848,6995,7412,7479,7539,7633,7697,7760,7816,7886,7953,8008,8127,8184,8248,8302,8375,8497,8580,8665,8797,8875,8955,9077,9163,9247,9307,9359,9425,9495,9568,9650,9727,9799,9876,9948,10018,10131,10224,10297,10387,10480,10554,10626,10717,10771,10851,10917,11001,11086,11148,11212,11275,11341,11446,11551,11646,11747,11811,11942",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,75,76,77,90,84,101,114,82,63,88,66,59,93,63,62,55,69,66,54,118,56,63,53,72,121,82,84,131,77,79,121,85,83,59,51,65,69,72,81,76,71,76,71,69,112,92,72,89,92,73,71,90,53,79,65,83,84,61,63,62,65,104,104,94,100,63,55,79",
+ "endOffsets": "314,3106,3183,3261,3352,3437,4271,4386,4469,6907,7079,7474,7534,7628,7692,7755,7811,7881,7948,8003,8122,8179,8243,8297,8370,8492,8575,8660,8792,8870,8950,9072,9158,9242,9302,9354,9420,9490,9563,9645,9722,9794,9871,9943,10013,10126,10219,10292,10382,10475,10549,10621,10712,10766,10846,10912,10996,11081,11143,11207,11270,11336,11441,11546,11641,11742,11806,11862,12017"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-si/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,447,567,676,814,934,1046,1140,1287,1398,1550,1677,1817,1974,2043,2100",
+ "endColumns": "103,149,119,108,137,119,111,93,146,110,151,126,139,156,68,56,75",
+ "endOffsets": "296,446,566,675,813,933,1045,1139,1286,1397,1549,1676,1816,1973,2042,2099,2175"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4474,4582,4736,4860,4973,5115,5239,5355,5592,5743,5858,6014,6145,6289,6450,6523,6584",
+ "endColumns": "107,153,123,112,141,123,115,97,150,114,155,130,143,160,72,60,79",
+ "endOffsets": "4577,4731,4855,4968,5110,5234,5350,5448,5738,5853,6009,6140,6284,6445,6518,6579,6659"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/values-v34_values-v34.arsc.flat",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-v34/values-v34.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,156,247,358,468,572,676,783,880,997,1098,1219,1324,1449,1550,1667,1770,1893,1988,2099,2194,2309,2408,2527,2622,2731,2846,2971,3102,3225,3354,3457,3568,3665,3782,3885,3978,4091,4201,4305,4409,4518,4617,4736,4839,4962,5069,5196,5299,5418,5523,5648,5745,5858,5955,6072,6173,6294,6391,6502,6619,6746,6879,7004,7135,7240,7353,7452,7571,7674,7793,7900,8023,8128,8249,8346,8451,8552,8661,8760,8867,8966,9085,9190,9315,9416,9537,9644",
+ "endColumns": "100,90,110,109,103,103,106,96,116,100,120,104,124,100,116,102,122,94,110,94,114,98,118,94,108,114,124,130,122,128,102,110,96,116,102,92,112,109,103,103,108,98,118,102,122,106,126,102,118,104,124,96,112,96,116,100,120,96,110,116,126,132,124,130,104,112,98,118,102,118,106,122,104,120,96,104,100,108,98,106,98,118,104,124,100,120,106,126",
+ "endOffsets": "151,242,353,463,567,671,778,875,992,1093,1214,1319,1444,1545,1662,1765,1888,1983,2094,2189,2304,2403,2522,2617,2726,2841,2966,3097,3220,3349,3452,3563,3660,3777,3880,3973,4086,4196,4300,4404,4513,4612,4731,4834,4957,5064,5191,5294,5413,5518,5643,5740,5853,5950,6067,6168,6289,6386,6497,6614,6741,6874,6999,7130,7235,7348,7447,7566,7669,7788,7895,8018,8123,8244,8341,8446,8547,8656,8755,8862,8961,9080,9185,9310,9411,9532,9639,9766"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-af.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-af.json
new file mode 100644
index 00000000..e9270875
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-af.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-af/values-af.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-af/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,448,570,676,822,940,1057,1155,1317,1421,1574,1697,1832,1982,2044,2103",
+ "endColumns": "102,151,121,105,145,117,116,97,161,103,152,122,134,149,61,58,74",
+ "endOffsets": "295,447,569,675,821,939,1056,1154,1316,1420,1573,1696,1831,1981,2043,2102,2177"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4445,4552,4708,4834,4944,5094,5216,5337,5582,5748,5856,6013,6140,6279,6433,6499,6562",
+ "endColumns": "106,155,125,109,149,121,120,101,165,107,156,126,138,153,65,62,78",
+ "endOffsets": "4547,4703,4829,4939,5089,5211,5332,5434,5743,5851,6008,6135,6274,6428,6494,6557,6636"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-af/values-af.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,160,262,375",
+ "endColumns": "104,101,112,99",
+ "endOffsets": "155,257,370,470"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6712,7057,7159,7272",
+ "endColumns": "104,101,112,99",
+ "endOffsets": "6812,7154,7267,7367"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-af/values-af.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,353,451,558,667,787",
+ "endColumns": "97,101,97,97,106,108,119,100",
+ "endOffsets": "148,250,348,446,553,662,782,883"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3418,3516,3618,3716,3814,3921,4030,12170",
+ "endColumns": "97,101,97,97,106,108,119,100",
+ "endOffsets": "3511,3613,3711,3809,3916,4025,4145,12266"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-af/values-af.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,264,345,484,653,732",
+ "endColumns": "70,87,80,138,168,78,76",
+ "endOffsets": "171,259,340,479,648,727,804"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6641,6881,11792,11950,12271,12440,12519",
+ "endColumns": "70,87,80,138,168,78,76",
+ "endOffsets": "6707,6964,11868,12084,12435,12514,12591"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-af/values-af.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,274,355,435,513,608,696,796,910,991,1055,1143,1209,1272,1358,1420,1481,1539,1605,1668,1723,1841,1898,1960,2015,2084,2203,2291,2374,2513,2596,2677,2805,2892,2969,3027,3078,3144,3213,3289,3375,3451,3525,3604,3677,3748,3851,3938,4009,4098,4188,4260,4335,4422,4473,4552,4619,4700,4784,4846,4910,4973,5043,5147,5250,5346,5446,5508,5563",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,79,77,94,87,99,113,80,63,87,65,62,85,61,60,57,65,62,54,117,56,61,54,68,118,87,82,138,82,80,127,86,76,57,50,65,68,75,85,75,73,78,72,70,102,86,70,88,89,71,74,86,50,78,66,80,83,61,63,62,69,103,102,95,99,61,54,76",
+ "endOffsets": "269,350,430,508,603,691,791,905,986,1050,1138,1204,1267,1353,1415,1476,1534,1600,1663,1718,1836,1893,1955,2010,2079,2198,2286,2369,2508,2591,2672,2800,2887,2964,3022,3073,3139,3208,3284,3370,3446,3520,3599,3672,3743,3846,3933,4004,4093,4183,4255,4330,4417,4468,4547,4614,4695,4779,4841,4905,4968,5038,5142,5245,5341,5441,5503,5558,5635"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2996,3077,3157,3235,3330,4150,4250,4364,6817,6969,7372,7438,7501,7587,7649,7710,7768,7834,7897,7952,8070,8127,8189,8244,8313,8432,8520,8603,8742,8825,8906,9034,9121,9198,9256,9307,9373,9442,9518,9604,9680,9754,9833,9906,9977,10080,10167,10238,10327,10417,10489,10564,10651,10702,10781,10848,10929,11013,11075,11139,11202,11272,11376,11479,11575,11675,11737,11873",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,79,77,94,87,99,113,80,63,87,65,62,85,61,60,57,65,62,54,117,56,61,54,68,118,87,82,138,82,80,127,86,76,57,50,65,68,75,85,75,73,78,72,70,102,86,70,88,89,71,74,86,50,78,66,80,83,61,63,62,69,103,102,95,99,61,54,76",
+ "endOffsets": "319,3072,3152,3230,3325,3413,4245,4359,4440,6876,7052,7433,7496,7582,7644,7705,7763,7829,7892,7947,8065,8122,8184,8239,8308,8427,8515,8598,8737,8820,8901,9029,9116,9193,9251,9302,9368,9437,9513,9599,9675,9749,9828,9901,9972,10075,10162,10233,10322,10412,10484,10559,10646,10697,10776,10843,10924,11008,11070,11134,11197,11267,11371,11474,11570,11670,11732,11787,11945"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-af/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "138",
+ "endOffsets": "333"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5439",
+ "endColumns": "142",
+ "endOffsets": "5577"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-af/values-af.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,309,415,500,603,721,798,874,965,1058,1153,1247,1346,1439,1534,1633,1728,1822,1903,2010,2115,2212,2320,2423,2525,2679,2777",
+ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80",
+ "endOffsets": "208,304,410,495,598,716,793,869,960,1053,1148,1242,1341,1434,1529,1628,1723,1817,1898,2005,2110,2207,2315,2418,2520,2674,2772,2853"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "324,432,528,634,719,822,940,1017,1093,1184,1277,1372,1466,1565,1658,1753,1852,1947,2041,2122,2229,2334,2431,2539,2642,2744,2898,12089",
+ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80",
+ "endOffsets": "427,523,629,714,817,935,1012,1088,1179,1272,1367,1461,1560,1653,1748,1847,1942,2036,2117,2224,2329,2426,2534,2637,2739,2893,2991,12165"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-am.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-am.json
new file mode 100644
index 00000000..24409b24
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-am.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-am/values-am.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-am/values-am.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,151,246,352",
+ "endColumns": "95,94,105,96",
+ "endOffsets": "146,241,347,444"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6333,6660,6755,6861",
+ "endColumns": "95,94,105,96",
+ "endOffsets": "6424,6750,6856,6953"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-am/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,291,426,544,642,765,884,988,1086,1210,1309,1450,1569,1700,1823,1879,1932",
+ "endColumns": "97,134,117,97,122,118,103,97,123,98,140,118,130,122,55,52,66",
+ "endOffsets": "290,425,543,641,764,883,987,1085,1209,1308,1449,1568,1699,1822,1878,1931,1998"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4261,4363,4502,4624,4726,4853,4976,5084,5318,5446,5549,5694,5817,5952,6079,6139,6196",
+ "endColumns": "101,138,121,101,126,122,107,101,127,102,144,122,134,126,59,56,70",
+ "endOffsets": "4358,4497,4619,4721,4848,4971,5079,5181,5441,5544,5689,5812,5947,6074,6134,6191,6262"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-am/values-am.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,148,248,345,444,540,642,742",
+ "endColumns": "92,99,96,98,95,101,99,100",
+ "endOffsets": "143,243,340,439,535,637,737,838"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3306,3399,3499,3596,3695,3791,3893,11516",
+ "endColumns": "92,99,96,98,95,101,99,100",
+ "endOffsets": "3394,3494,3591,3690,3786,3888,3988,11612"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-am/values-am.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,171,253,327,458,627,708",
+ "endColumns": "65,81,73,130,168,80,77",
+ "endOffsets": "166,248,322,453,622,703,781"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6267,6493,11155,11305,11617,11786,11867",
+ "endColumns": "65,81,73,130,168,80,77",
+ "endOffsets": "6328,6570,11224,11431,11781,11862,11940"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-am/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "127",
+ "endOffsets": "322"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5186",
+ "endColumns": "131",
+ "endOffsets": "5313"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-am/values-am.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,261,332,400,475,557,638,727,829,906,970,1055,1117,1175,1260,1323,1385,1443,1509,1571,1626,1722,1779,1838,1894,1961,2066,2146,2227,2356,2429,2500,2614,2696,2772,2823,2874,2940,3006,3079,3160,3235,3303,3376,3447,3514,3612,3697,3764,3851,3939,4013,4081,4166,4217,4295,4359,4439,4521,4583,4647,4710,4776,4871,4966,5051,5142,5197,5252",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,70,67,74,81,80,88,101,76,63,84,61,57,84,62,61,57,65,61,54,95,56,58,55,66,104,79,80,128,72,70,113,81,75,50,50,65,65,72,80,74,67,72,70,66,97,84,66,86,87,73,67,84,50,77,63,79,81,61,63,62,65,94,94,84,90,54,54,75",
+ "endOffsets": "256,327,395,470,552,633,722,824,901,965,1050,1112,1170,1255,1318,1380,1438,1504,1566,1621,1717,1774,1833,1889,1956,2061,2141,2222,2351,2424,2495,2609,2691,2767,2818,2869,2935,3001,3074,3155,3230,3298,3371,3442,3509,3607,3692,3759,3846,3934,4008,4076,4161,4212,4290,4354,4434,4516,4578,4642,4705,4771,4866,4961,5046,5137,5192,5247,5323"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2929,3000,3068,3143,3225,3993,4082,4184,6429,6575,6958,7020,7078,7163,7226,7288,7346,7412,7474,7529,7625,7682,7741,7797,7864,7969,8049,8130,8259,8332,8403,8517,8599,8675,8726,8777,8843,8909,8982,9063,9138,9206,9279,9350,9417,9515,9600,9667,9754,9842,9916,9984,10069,10120,10198,10262,10342,10424,10486,10550,10613,10679,10774,10869,10954,11045,11100,11229",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,70,67,74,81,80,88,101,76,63,84,61,57,84,62,61,57,65,61,54,95,56,58,55,66,104,79,80,128,72,70,113,81,75,50,50,65,65,72,80,74,67,72,70,66,97,84,66,86,87,73,67,84,50,77,63,79,81,61,63,62,65,94,94,84,90,54,54,75",
+ "endOffsets": "306,2995,3063,3138,3220,3301,4077,4179,4256,6488,6655,7015,7073,7158,7221,7283,7341,7407,7469,7524,7620,7677,7736,7792,7859,7964,8044,8125,8254,8327,8398,8512,8594,8670,8721,8772,8838,8904,8977,9058,9133,9201,9274,9345,9412,9510,9595,9662,9749,9837,9911,9979,10064,10115,10193,10257,10337,10419,10481,10545,10608,10674,10769,10864,10949,11040,11095,11150,11300"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-am/values-am.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,203,301,407,493,596,713,791,867,958,1051,1143,1237,1337,1430,1525,1618,1709,1800,1880,1980,2080,2176,2278,2378,2477,2627,2723",
+ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79",
+ "endOffsets": "198,296,402,488,591,708,786,862,953,1046,1138,1232,1332,1425,1520,1613,1704,1795,1875,1975,2075,2171,2273,2373,2472,2622,2718,2798"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "311,409,507,613,699,802,919,997,1073,1164,1257,1349,1443,1543,1636,1731,1824,1915,2006,2086,2186,2286,2382,2484,2584,2683,2833,11436",
+ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79",
+ "endOffsets": "404,502,608,694,797,914,992,1068,1159,1252,1344,1438,1538,1631,1726,1819,1910,2001,2081,2181,2281,2377,2479,2579,2678,2828,2924,11511"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ar.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ar.json
new file mode 100644
index 00000000..af6f4db8
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ar.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ar/values-ar.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ar/values-ar.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,172,265,351,484,653,735",
+ "endColumns": "66,92,85,132,168,81,79",
+ "endOffsets": "167,260,346,479,648,730,810"
+ },
+ "to": {
+ "startLines": "70,73,135,137,140,141,142",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6687,6917,11925,12091,12407,12576,12658",
+ "endColumns": "66,92,85,132,168,81,79",
+ "endOffsets": "6749,7005,12006,12219,12571,12653,12733"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ar/values-ar.xml",
+ "from": {
+ "startLines": "2,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,465,543,619,703,795,878,979,1098,1175,1238,1329,1398,1465,1565,1628,1693,1754,1822,1884,1942,2056,2116,2177,2234,2307,2430,2511,2591,2739,2820,2901,3029,3118,3194,3247,3301,3367,3445,3525,3609,3691,3763,3837,3910,3980,4089,4180,4251,4341,4436,4510,4593,4686,4735,4816,4885,4971,5056,5118,5182,5245,5314,5423,5533,5630,5730,5787,5845",
+ "endLines": "9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77",
+ "endColumns": "12,77,75,83,91,82,100,118,76,62,90,68,66,99,62,64,60,67,61,57,113,59,60,56,72,122,80,79,147,80,80,127,88,75,52,53,65,77,79,83,81,71,73,72,69,108,90,70,89,94,73,82,92,48,80,68,85,84,61,63,62,68,108,109,96,99,56,57,79",
+ "endOffsets": "460,538,614,698,790,873,974,1093,1170,1233,1324,1393,1460,1560,1623,1688,1749,1817,1879,1937,2051,2111,2172,2229,2302,2425,2506,2586,2734,2815,2896,3024,3113,3189,3242,3296,3362,3440,3520,3604,3686,3758,3832,3905,3975,4084,4175,4246,4336,4431,4505,4588,4681,4730,4811,4880,4966,5051,5113,5177,5240,5309,5418,5528,5625,5725,5782,5840,5920"
+ },
+ "to": {
+ "startLines": "2,37,38,39,40,41,49,50,51,72,74,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3169,3247,3323,3407,3499,4294,4395,4514,6854,7010,7409,7478,7545,7645,7708,7773,7834,7902,7964,8022,8136,8196,8257,8314,8387,8510,8591,8671,8819,8900,8981,9109,9198,9274,9327,9381,9447,9525,9605,9689,9771,9843,9917,9990,10060,10169,10260,10331,10421,10516,10590,10673,10766,10815,10896,10965,11051,11136,11198,11262,11325,11394,11503,11613,11710,11810,11867,12011",
+ "endLines": "9,37,38,39,40,41,49,50,51,72,74,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136",
+ "endColumns": "12,77,75,83,91,82,100,118,76,62,90,68,66,99,62,64,60,67,61,57,113,59,60,56,72,122,80,79,147,80,80,127,88,75,52,53,65,77,79,83,81,71,73,72,69,108,90,70,89,94,73,82,92,48,80,68,85,84,61,63,62,68,108,109,96,99,56,57,79",
+ "endOffsets": "510,3242,3318,3402,3494,3577,4390,4509,4586,6912,7096,7473,7540,7640,7703,7768,7829,7897,7959,8017,8131,8191,8252,8309,8382,8505,8586,8666,8814,8895,8976,9104,9193,9269,9322,9376,9442,9520,9600,9684,9766,9838,9912,9985,10055,10164,10255,10326,10416,10511,10585,10668,10761,10810,10891,10960,11046,11131,11193,11257,11320,11389,11498,11608,11705,11805,11862,11920,12086"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ar/values-ar.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,317,424,506,607,721,801,880,971,1064,1156,1250,1350,1443,1538,1631,1722,1816,1895,2000,2098,2196,2304,2404,2507,2662,2759",
+ "endColumns": "107,103,106,81,100,113,79,78,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81",
+ "endOffsets": "208,312,419,501,602,716,796,875,966,1059,1151,1245,1345,1438,1533,1626,1717,1811,1890,1995,2093,2191,2299,2399,2502,2657,2754,2836"
+ },
+ "to": {
+ "startLines": "10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,138",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "515,623,727,834,916,1017,1131,1211,1290,1381,1474,1566,1660,1760,1853,1948,2041,2132,2226,2305,2410,2508,2606,2714,2814,2917,3072,12224",
+ "endColumns": "107,103,106,81,100,113,79,78,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81",
+ "endOffsets": "618,722,829,911,1012,1126,1206,1285,1376,1469,1561,1655,1755,1848,1943,2036,2127,2221,2300,2405,2503,2601,2709,2809,2912,3067,3164,12301"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ar/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,293,433,551,652,786,910,1017,1115,1248,1348,1494,1612,1747,1889,1949,2011",
+ "endColumns": "99,139,117,100,133,123,106,97,132,99,145,117,134,141,59,61,79",
+ "endOffsets": "292,432,550,651,785,909,1016,1114,1247,1347,1493,1611,1746,1888,1948,2010,2090"
+ },
+ "to": {
+ "startLines": "52,53,54,55,56,57,58,59,61,62,63,64,65,66,67,68,69",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4591,4695,4839,4961,5066,5204,5332,5443,5675,5812,5916,6066,6188,6327,6473,6537,6603",
+ "endColumns": "103,143,121,104,137,127,110,101,136,103,149,121,138,145,63,65,83",
+ "endOffsets": "4690,4834,4956,5061,5199,5327,5438,5540,5807,5911,6061,6183,6322,6468,6532,6598,6682"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ar/values-ar.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,253,361",
+ "endColumns": "99,97,107,101",
+ "endOffsets": "150,248,356,458"
+ },
+ "to": {
+ "startLines": "71,75,76,77",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6754,7101,7199,7307",
+ "endColumns": "99,97,107,101",
+ "endOffsets": "6849,7194,7302,7404"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ar/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "125",
+ "endOffsets": "320"
+ },
+ "to": {
+ "startLines": "60",
+ "startColumns": "4",
+ "startOffsets": "5545",
+ "endColumns": "129",
+ "endOffsets": "5670"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ar/values-ar.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,148,250,345,448,551,653,767",
+ "endColumns": "92,101,94,102,102,101,113,100",
+ "endOffsets": "143,245,340,443,546,648,762,863"
+ },
+ "to": {
+ "startLines": "42,43,44,45,46,47,48,139",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3582,3675,3777,3872,3975,4078,4180,12306",
+ "endColumns": "92,101,94,102,102,101,113,100",
+ "endOffsets": "3670,3772,3867,3970,4073,4175,4289,12402"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-as.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-as.json
new file mode 100644
index 00000000..486b8fe6
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-as.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-as/values-as.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-as/values-as.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,156,259,367,472,576,676,805",
+ "endColumns": "100,102,107,104,103,99,128,100",
+ "endOffsets": "151,254,362,467,571,671,800,901"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3472,3573,3676,3784,3889,3993,4093,12156",
+ "endColumns": "100,102,107,104,103,99,128,100",
+ "endOffsets": "3568,3671,3779,3884,3988,4088,4217,12252"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-as/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "121",
+ "endOffsets": "316"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5497",
+ "endColumns": "125",
+ "endOffsets": "5618"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-as/values-as.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,312,419,510,615,735,812,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1910,2023,2131,2234,2343,2459,2579,2746,2848",
+ "endColumns": "107,98,106,90,104,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,102,108,115,119,166,101,82",
+ "endOffsets": "208,307,414,505,610,730,807,882,973,1066,1161,1255,1355,1448,1543,1637,1728,1819,1905,2018,2126,2229,2338,2454,2574,2741,2843,2926"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "322,430,529,636,727,832,952,1029,1104,1195,1288,1383,1477,1577,1670,1765,1859,1950,2041,2127,2240,2348,2451,2560,2676,2796,2963,12073",
+ "endColumns": "107,98,106,90,104,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,102,108,115,119,166,101,82",
+ "endOffsets": "425,524,631,722,827,947,1024,1099,1190,1283,1378,1472,1572,1665,1760,1854,1945,2036,2122,2235,2343,2446,2555,2671,2791,2958,3060,12151"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-as/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,446,565,671,797,915,1024,1132,1271,1376,1522,1643,1772,1921,1977,2039",
+ "endColumns": "103,148,118,105,125,117,108,107,138,104,145,120,128,148,55,61,81",
+ "endOffsets": "296,445,564,670,796,914,1023,1131,1270,1375,1521,1642,1771,1920,1976,2038,2120"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4526,4634,4787,4910,5020,5150,5272,5385,5623,5766,5875,6025,6150,6283,6436,6496,6562",
+ "endColumns": "107,152,122,109,129,121,112,111,142,108,149,124,132,152,59,65,85",
+ "endOffsets": "4629,4782,4905,5015,5145,5267,5380,5492,5761,5870,6020,6145,6278,6431,6491,6557,6643"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-as/values-as.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,272,354,432,509,595,679,781,904,983,1048,1137,1202,1261,1347,1411,1475,1538,1608,1672,1726,1831,1889,1951,2005,2077,2194,2281,2364,2504,2581,2662,2789,2880,2957,3011,3062,3128,3198,3275,3362,3437,3508,3585,3654,3723,3830,3921,3993,4082,4171,4245,4317,4403,4453,4532,4598,4678,4762,4824,4888,4951,5020,5120,5215,5307,5399,5457,5512",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,81,77,76,85,83,101,122,78,64,88,64,58,85,63,63,62,69,63,53,104,57,61,53,71,116,86,82,139,76,80,126,90,76,53,50,65,69,76,86,74,70,76,68,68,106,90,71,88,88,73,71,85,49,78,65,79,83,61,63,62,68,99,94,91,91,57,54,80",
+ "endOffsets": "267,349,427,504,590,674,776,899,978,1043,1132,1197,1256,1342,1406,1470,1533,1603,1667,1721,1826,1884,1946,2000,2072,2189,2276,2359,2499,2576,2657,2784,2875,2952,3006,3057,3123,3193,3270,3357,3432,3503,3580,3649,3718,3825,3916,3988,4077,4166,4240,4312,4398,4448,4527,4593,4673,4757,4819,4883,4946,5015,5115,5210,5302,5394,5452,5507,5588"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3065,3147,3225,3302,3388,4222,4324,4447,6833,6982,7391,7456,7515,7601,7665,7729,7792,7862,7926,7980,8085,8143,8205,8259,8331,8448,8535,8618,8758,8835,8916,9043,9134,9211,9265,9316,9382,9452,9529,9616,9691,9762,9839,9908,9977,10084,10175,10247,10336,10425,10499,10571,10657,10707,10786,10852,10932,11016,11078,11142,11205,11274,11374,11469,11561,11653,11711,11849",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,81,77,76,85,83,101,122,78,64,88,64,58,85,63,63,62,69,63,53,104,57,61,53,71,116,86,82,139,76,80,126,90,76,53,50,65,69,76,86,74,70,76,68,68,106,90,71,88,88,73,71,85,49,78,65,79,83,61,63,62,68,99,94,91,91,57,54,80",
+ "endOffsets": "317,3142,3220,3297,3383,3467,4319,4442,4521,6893,7066,7451,7510,7596,7660,7724,7787,7857,7921,7975,8080,8138,8200,8254,8326,8443,8530,8613,8753,8830,8911,9038,9129,9206,9260,9311,9377,9447,9524,9611,9686,9757,9834,9903,9972,10079,10170,10242,10331,10420,10494,10566,10652,10702,10781,10847,10927,11011,11073,11137,11200,11269,11369,11464,11556,11648,11706,11761,11925"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-as/values-as.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,163,269,377",
+ "endColumns": "107,105,107,105",
+ "endOffsets": "158,264,372,478"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6725,7071,7177,7285",
+ "endColumns": "107,105,107,105",
+ "endOffsets": "6828,7172,7280,7386"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-as/values-as.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,182,266,349,492,661,752",
+ "endColumns": "76,83,82,142,168,90,79",
+ "endOffsets": "177,261,344,487,656,747,827"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6648,6898,11766,11930,12257,12426,12517",
+ "endColumns": "76,83,82,142,168,90,79",
+ "endOffsets": "6720,6977,11844,12068,12421,12512,12592"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-az.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-az.json
new file mode 100644
index 00000000..aa965fe0
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-az.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-az/values-az.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-az/values-az.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,215,316,426,514,621,735,817,895,986,1079,1173,1272,1372,1465,1560,1654,1745,1837,1922,2027,2133,2233,2342,2447,2549,2707,2813",
+ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83",
+ "endOffsets": "210,311,421,509,616,730,812,890,981,1074,1168,1267,1367,1460,1555,1649,1740,1832,1917,2022,2128,2228,2337,2442,2544,2702,2808,2892"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,425,526,636,724,831,945,1027,1105,1196,1289,1383,1482,1582,1675,1770,1864,1955,2047,2132,2237,2343,2443,2552,2657,2759,2917,12180",
+ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83",
+ "endOffsets": "420,521,631,719,826,940,1022,1100,1191,1284,1378,1477,1577,1670,1765,1859,1950,2042,2127,2232,2338,2438,2547,2652,2754,2912,3018,12259"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-az/values-az.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,151,255,363",
+ "endColumns": "95,103,107,102",
+ "endOffsets": "146,250,358,461"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6779,7117,7221,7329",
+ "endColumns": "95,103,107,102",
+ "endOffsets": "6870,7216,7324,7427"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-az/values-az.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,353,438,518,603,682,778,894,974,1038,1132,1200,1259,1354,1417,1481,1540,1607,1670,1724,1839,1897,1959,2013,2084,2216,2300,2380,2514,2590,2666,2795,2879,2958,3015,3066,3132,3202,3280,3363,3443,3513,3589,3667,3738,3836,3922,4005,4098,4191,4264,4336,4430,4484,4568,4635,4719,4807,4871,4936,5000,5070,5172,5276,5372,5473,5534,5589",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,87,84,79,84,78,95,115,79,63,93,67,58,94,62,63,58,66,62,53,114,57,61,53,70,131,83,79,133,75,75,128,83,78,56,50,65,69,77,82,79,69,75,77,70,97,85,82,92,92,72,71,93,53,83,66,83,87,63,64,63,69,101,103,95,100,60,54,79",
+ "endOffsets": "260,348,433,513,598,677,773,889,969,1033,1127,1195,1254,1349,1412,1476,1535,1602,1665,1719,1834,1892,1954,2008,2079,2211,2295,2375,2509,2585,2661,2790,2874,2953,3010,3061,3127,3197,3275,3358,3438,3508,3584,3662,3733,3831,3917,4000,4093,4186,4259,4331,4425,4479,4563,4630,4714,4802,4866,4931,4995,5065,5167,5271,5367,5468,5529,5584,5664"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3023,3111,3196,3276,3361,4167,4263,4379,6875,7023,7432,7500,7559,7654,7717,7781,7840,7907,7970,8024,8139,8197,8259,8313,8384,8516,8600,8680,8814,8890,8966,9095,9179,9258,9315,9366,9432,9502,9580,9663,9743,9813,9889,9967,10038,10136,10222,10305,10398,10491,10564,10636,10730,10784,10868,10935,11019,11107,11171,11236,11300,11370,11472,11576,11672,11773,11834,11968",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,87,84,79,84,78,95,115,79,63,93,67,58,94,62,63,58,66,62,53,114,57,61,53,70,131,83,79,133,75,75,128,83,78,56,50,65,69,77,82,79,69,75,77,70,97,85,82,92,92,72,71,93,53,83,66,83,87,63,64,63,69,101,103,95,100,60,54,79",
+ "endOffsets": "310,3106,3191,3271,3356,3435,4258,4374,4454,6934,7112,7495,7554,7649,7712,7776,7835,7902,7965,8019,8134,8192,8254,8308,8379,8511,8595,8675,8809,8885,8961,9090,9174,9253,9310,9361,9427,9497,9575,9658,9738,9808,9884,9962,10033,10131,10217,10300,10393,10486,10559,10631,10725,10779,10863,10930,11014,11102,11166,11231,11295,11365,11467,11571,11667,11768,11829,11884,12043"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-az/values-az.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,156,258,361,465,566,671,782",
+ "endColumns": "100,101,102,103,100,104,110,100",
+ "endOffsets": "151,253,356,460,561,666,777,878"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3440,3541,3643,3746,3850,3951,4056,12264",
+ "endColumns": "100,101,102,103,100,104,110,100",
+ "endOffsets": "3536,3638,3741,3845,3946,4051,4162,12360"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-az/values-az.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,179,263,342,474,643,727",
+ "endColumns": "73,83,78,131,168,83,78",
+ "endOffsets": "174,258,337,469,638,722,801"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6705,6939,11889,12048,12365,12534,12618",
+ "endColumns": "73,83,78,131,168,83,78",
+ "endOffsets": "6774,7018,11963,12175,12529,12613,12692"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-az/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,298,449,578,684,826,955,1071,1173,1335,1441,1586,1719,1859,2011,2071,2132",
+ "endColumns": "104,150,128,105,141,128,115,101,161,105,144,132,139,151,59,60,76",
+ "endOffsets": "297,448,577,683,825,954,1070,1172,1334,1440,1585,1718,1858,2010,2070,2131,2208"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4459,4568,4723,4856,4966,5112,5245,5365,5633,5799,5909,6058,6195,6339,6495,6559,6624",
+ "endColumns": "108,154,132,109,145,132,119,105,165,109,148,136,143,155,63,64,80",
+ "endOffsets": "4563,4718,4851,4961,5107,5240,5360,5466,5794,5904,6053,6190,6334,6490,6554,6619,6700"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-az/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "157",
+ "endOffsets": "352"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5471",
+ "endColumns": "161",
+ "endOffsets": "5628"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-b+es+419.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-b+es+419.json
new file mode 100644
index 00000000..3093ca6c
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-b+es+419.json
@@ -0,0 +1,20 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-b+es+419/values-b+es+419.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-b+es+419/values-b+es+419.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,278,360,440,526,631,727,829,957,1038,1103,1198,1268,1331,1424,1488,1560,1623,1697,1761,1817,1935,1993,2055,2111,2191,2325,2414,2495,2636,2717,2797,2948,3038,3115,3171,3227,3293,3369,3451,3539,3628,3701,3778,3848,3925,4031,4120,4194,4288,4390,4462,4543,4647,4700,4785,4852,4945,5034,5096,5160,5223,5291,5402,5513,5615,5720,5780,5840",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,81,79,85,104,95,101,127,80,64,94,69,62,92,63,71,62,73,63,55,117,57,61,55,79,133,88,80,140,80,79,150,89,76,55,55,65,75,81,87,88,72,76,69,76,105,88,73,93,101,71,80,103,52,84,66,92,88,61,63,62,67,110,110,101,104,59,59,82",
+ "endOffsets": "273,355,435,521,626,722,824,952,1033,1098,1193,1263,1326,1419,1483,1555,1618,1692,1756,1812,1930,1988,2050,2106,2186,2320,2409,2490,2631,2712,2792,2943,3033,3110,3166,3222,3288,3364,3446,3534,3623,3696,3773,3843,3920,4026,4115,4189,4283,4385,4457,4538,4642,4695,4780,4847,4940,5029,5091,5155,5218,5286,5397,5508,5610,5715,5775,5835,5918"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-b+sr+Latn.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-b+sr+Latn.json
new file mode 100644
index 00000000..abdcdcf2
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-b+sr+Latn.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-b+sr+Latn/values-b+sr+Latn.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-b+sr+Latn/values-b+sr+Latn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,313,419,505,609,731,816,898,989,1082,1177,1271,1371,1464,1559,1664,1755,1846,1932,2037,2143,2246,2353,2462,2569,2739,2836",
+ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86",
+ "endOffsets": "207,308,414,500,604,726,811,893,984,1077,1172,1266,1366,1459,1554,1659,1750,1841,1927,2032,2138,2241,2348,2457,2564,2734,2831,2918"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "374,481,582,688,774,878,1000,1085,1167,1258,1351,1446,1540,1640,1733,1828,1933,2024,2115,2201,2306,2412,2515,2622,2731,2838,3008,12328",
+ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86",
+ "endOffsets": "476,577,683,769,873,995,1080,1162,1253,1346,1441,1535,1635,1728,1823,1928,2019,2110,2196,2301,2407,2510,2617,2726,2833,3003,3100,12410"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-b+sr+Latn/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "202",
+ "endColumns": "125",
+ "endOffsets": "327"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5571",
+ "endColumns": "129",
+ "endOffsets": "5696"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,324,401,478,558,666,760,854,986,1067,1133,1226,1294,1357,1460,1520,1586,1642,1713,1773,1827,1939,1996,2057,2111,2187,2312,2399,2482,2621,2703,2786,2917,3005,3083,3137,3193,3259,3333,3411,3500,3582,3658,3734,3809,3881,3988,4078,4151,4243,4339,4411,4487,4583,4636,4718,4785,4872,4959,5021,5085,5148,5217,5322,5432,5528,5636,5694,5754",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,76,76,79,107,93,93,131,80,65,92,67,62,102,59,65,55,70,59,53,111,56,60,53,75,124,86,82,138,81,82,130,87,77,53,55,65,73,77,88,81,75,75,74,71,106,89,72,91,95,71,75,95,52,81,66,86,86,61,63,62,68,104,109,95,107,57,59,79",
+ "endOffsets": "319,396,473,553,661,755,849,981,1062,1128,1221,1289,1352,1455,1515,1581,1637,1708,1768,1822,1934,1991,2052,2106,2182,2307,2394,2477,2616,2698,2781,2912,3000,3078,3132,3188,3254,3328,3406,3495,3577,3653,3729,3804,3876,3983,4073,4146,4238,4334,4406,4482,4578,4631,4713,4780,4867,4954,5016,5080,5143,5212,5317,5427,5523,5631,5689,5749,5829"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3105,3182,3259,3339,3447,4267,4361,4493,6931,7084,7488,7556,7619,7722,7782,7848,7904,7975,8035,8089,8201,8258,8319,8373,8449,8574,8661,8744,8883,8965,9048,9179,9267,9345,9399,9455,9521,9595,9673,9762,9844,9920,9996,10071,10143,10250,10340,10413,10505,10601,10673,10749,10845,10898,10980,11047,11134,11221,11283,11347,11410,11479,11584,11694,11790,11898,11956,12096",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,76,76,79,107,93,93,131,80,65,92,67,62,102,59,65,55,70,59,53,111,56,60,53,75,124,86,82,138,81,82,130,87,77,53,55,65,73,77,88,81,75,75,74,71,106,89,72,91,95,71,75,95,52,81,66,86,86,61,63,62,68,104,109,95,107,57,59,79",
+ "endOffsets": "369,3177,3254,3334,3442,3536,4356,4488,4569,6992,7172,7551,7614,7717,7777,7843,7899,7970,8030,8084,8196,8253,8314,8368,8444,8569,8656,8739,8878,8960,9043,9174,9262,9340,9394,9450,9516,9590,9668,9757,9839,9915,9991,10066,10138,10245,10335,10408,10500,10596,10668,10744,10840,10893,10975,11042,11129,11216,11278,11342,11405,11474,11579,11689,11785,11893,11951,12011,12171"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,352,456,560,665,781",
+ "endColumns": "97,101,96,103,103,104,115,100",
+ "endOffsets": "148,250,347,451,555,660,776,877"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3541,3639,3741,3838,3942,4046,4151,12415",
+ "endColumns": "97,101,96,103,103,104,115,100",
+ "endOffsets": "3634,3736,3833,3937,4041,4146,4262,12511"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-b+sr+Latn/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "200,303,457,580,686,836,959,1067,1165,1310,1413,1569,1692,1837,1976,2040,2101",
+ "endColumns": "102,153,122,105,149,122,107,97,144,102,155,122,144,138,63,60,75",
+ "endOffsets": "302,456,579,685,835,958,1066,1164,1309,1412,1568,1691,1836,1975,2039,2100,2176"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4574,4681,4839,4966,5076,5230,5357,5469,5701,5850,5957,6117,6244,6393,6536,6604,6669",
+ "endColumns": "106,157,126,109,153,126,111,101,148,106,159,126,148,142,67,64,79",
+ "endOffsets": "4676,4834,4961,5071,5225,5352,5464,5566,5845,5952,6112,6239,6388,6531,6599,6664,6744"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,166,266,379",
+ "endColumns": "110,99,112,97",
+ "endOffsets": "161,261,374,472"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6820,7177,7277,7390",
+ "endColumns": "110,99,112,97",
+ "endOffsets": "6926,7272,7385,7483"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-b+sr+Latn/values-b+sr+Latn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,263,343,495,664,751",
+ "endColumns": "70,86,79,151,168,86,82",
+ "endOffsets": "171,258,338,490,659,746,829"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6749,6997,12016,12176,12516,12685,12772",
+ "endColumns": "70,86,79,151,168,86,82",
+ "endOffsets": "6815,7079,12091,12323,12680,12767,12850"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-be.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-be.json
new file mode 100644
index 00000000..7d3738d5
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-be.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-be/values-be.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-be/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "141",
+ "endOffsets": "336"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5634",
+ "endColumns": "145",
+ "endOffsets": "5775"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-be/values-be.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,355,456,562,665,786",
+ "endColumns": "97,101,99,100,105,102,120,100",
+ "endOffsets": "148,250,350,451,557,660,781,882"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3587,3685,3787,3887,3988,4094,4197,12636",
+ "endColumns": "97,101,99,100,105,102,120,100",
+ "endOffsets": "3680,3782,3882,3983,4089,4192,4313,12732"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-be/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,454,575,681,832,954,1065,1165,1323,1426,1585,1709,1858,2013,2078,2136",
+ "endColumns": "102,157,120,105,150,121,110,99,157,102,158,123,148,154,64,57,74",
+ "endOffsets": "295,453,574,680,831,953,1064,1164,1322,1425,1584,1708,1857,2012,2077,2135,2210"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4630,4737,4899,5024,5134,5289,5415,5530,5780,5942,6049,6212,6340,6493,6652,6721,6783",
+ "endColumns": "106,161,124,109,154,125,114,103,161,106,162,127,152,158,68,61,78",
+ "endOffsets": "4732,4894,5019,5129,5284,5410,5525,5629,5937,6044,6207,6335,6488,6647,6716,6778,6857"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-be/values-be.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,164,272,384",
+ "endColumns": "108,107,111,106",
+ "endOffsets": "159,267,379,486"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6936,7300,7408,7520",
+ "endColumns": "108,107,111,106",
+ "endOffsets": "7040,7403,7515,7622"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-be/values-be.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,382,459,536,618,715,807,904,1036,1119,1186,1279,1356,1419,1535,1598,1667,1726,1797,1856,1910,2031,2092,2155,2209,2282,2404,2492,2575,2727,2813,2900,3033,3124,3207,3264,3315,3381,3453,3530,3614,3697,3772,3849,3931,4007,4115,4204,4286,4377,4473,4547,4628,4723,4777,4859,4925,5012,5098,5160,5224,5287,5356,5466,5579,5682,5789,5850,5905",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,76,76,81,96,91,96,131,82,66,92,76,62,115,62,68,58,70,58,53,120,60,62,53,72,121,87,82,151,85,86,132,90,82,56,50,65,71,76,83,82,74,76,81,75,107,88,81,90,95,73,80,94,53,81,65,86,85,61,63,62,68,109,112,102,106,60,54,79",
+ "endOffsets": "377,454,531,613,710,802,899,1031,1114,1181,1274,1351,1414,1530,1593,1662,1721,1792,1851,1905,2026,2087,2150,2204,2277,2399,2487,2570,2722,2808,2895,3028,3119,3202,3259,3310,3376,3448,3525,3609,3692,3767,3844,3926,4002,4110,4199,4281,4372,4468,4542,4623,4718,4772,4854,4920,5007,5093,5155,5219,5282,5351,5461,5574,5677,5784,5845,5900,5980"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3162,3239,3316,3398,3495,4318,4415,4547,7045,7207,7627,7704,7767,7883,7946,8015,8074,8145,8204,8258,8379,8440,8503,8557,8630,8752,8840,8923,9075,9161,9248,9381,9472,9555,9612,9663,9729,9801,9878,9962,10045,10120,10197,10279,10355,10463,10552,10634,10725,10821,10895,10976,11071,11125,11207,11273,11360,11446,11508,11572,11635,11704,11814,11927,12030,12137,12198,12332",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,76,76,81,96,91,96,131,82,66,92,76,62,115,62,68,58,70,58,53,120,60,62,53,72,121,87,82,151,85,86,132,90,82,56,50,65,71,76,83,82,74,76,81,75,107,88,81,90,95,73,80,94,53,81,65,86,85,61,63,62,68,109,112,102,106,60,54,79",
+ "endOffsets": "427,3234,3311,3393,3490,3582,4410,4542,4625,7107,7295,7699,7762,7878,7941,8010,8069,8140,8199,8253,8374,8435,8498,8552,8625,8747,8835,8918,9070,9156,9243,9376,9467,9550,9607,9658,9724,9796,9873,9957,10040,10115,10192,10274,10350,10458,10547,10629,10720,10816,10890,10971,11066,11120,11202,11268,11355,11441,11503,11567,11630,11699,11809,11922,12025,12132,12193,12248,12407"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-be/values-be.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,328,444,530,635,754,834,911,1003,1097,1192,1286,1381,1475,1571,1666,1758,1850,1931,2037,2142,2240,2348,2454,2562,2735,2835",
+ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81",
+ "endOffsets": "220,323,439,525,630,749,829,906,998,1092,1187,1281,1376,1470,1566,1661,1753,1845,1926,2032,2137,2235,2343,2449,2557,2730,2830,2912"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "432,552,655,771,857,962,1081,1161,1238,1330,1424,1519,1613,1708,1802,1898,1993,2085,2177,2258,2364,2469,2567,2675,2781,2889,3062,12554",
+ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81",
+ "endOffsets": "547,650,766,852,957,1076,1156,1233,1325,1419,1514,1608,1703,1797,1893,1988,2080,2172,2253,2359,2464,2562,2670,2776,2884,3057,3157,12631"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-be/values-be.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,179,274,353,495,664,746",
+ "endColumns": "73,94,78,141,168,81,77",
+ "endOffsets": "174,269,348,490,659,741,819"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6862,7112,12253,12412,12737,12906,12988",
+ "endColumns": "73,94,78,141,168,81,77",
+ "endOffsets": "6931,7202,12327,12549,12901,12983,13061"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-bg.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-bg.json
new file mode 100644
index 00000000..4e216fcd
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-bg.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-bg/values-bg.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-bg/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,298,459,590,697,860,991,1106,1211,1376,1484,1655,1789,1942,2104,2170,2225",
+ "endColumns": "104,160,130,106,162,130,114,104,164,107,170,133,152,161,65,54,68",
+ "endOffsets": "297,458,589,696,859,990,1105,1210,1375,1483,1654,1788,1941,2103,2169,2224,2293"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4595,4704,4869,5004,5115,5282,5417,5536,5783,5952,6064,6239,6377,6534,6700,6770,6829",
+ "endColumns": "108,164,134,110,166,134,118,108,168,111,174,137,156,165,69,58,72",
+ "endOffsets": "4699,4864,4999,5110,5277,5412,5531,5640,5947,6059,6234,6372,6529,6695,6765,6824,6897"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-bg/values-bg.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,265,345,485,654,736",
+ "endColumns": "71,87,79,139,168,81,77",
+ "endOffsets": "172,260,340,480,649,731,809"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6902,7151,12269,12435,12760,12929,13011",
+ "endColumns": "71,87,79,139,168,81,77",
+ "endOffsets": "6969,7234,12344,12570,12924,13006,13084"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-bg/values-bg.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,344,423,506,628,738,833,966,1055,1121,1218,1298,1360,1449,1512,1577,1636,1709,1772,1826,1954,2011,2073,2127,2200,2343,2427,2515,2651,2739,2827,2963,3048,3125,3178,3229,3295,3370,3446,3532,3611,3688,3764,3841,3915,4027,4118,4193,4284,4376,4450,4537,4628,4683,4765,4831,4914,5000,5062,5126,5189,5259,5376,5488,5599,5709,5766,5821",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,78,78,82,121,109,94,132,88,65,96,79,61,88,62,64,58,72,62,53,127,56,61,53,72,142,83,87,135,87,87,135,84,76,52,50,65,74,75,85,78,76,75,76,73,111,90,74,90,91,73,86,90,54,81,65,82,85,61,63,62,69,116,111,110,109,56,54,85",
+ "endOffsets": "260,339,418,501,623,733,828,961,1050,1116,1213,1293,1355,1444,1507,1572,1631,1704,1767,1821,1949,2006,2068,2122,2195,2338,2422,2510,2646,2734,2822,2958,3043,3120,3173,3224,3290,3365,3441,3527,3606,3683,3759,3836,3910,4022,4113,4188,4279,4371,4445,4532,4623,4678,4760,4826,4909,4995,5057,5121,5184,5254,5371,5483,5594,5704,5761,5816,5902"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3064,3143,3222,3305,3427,4278,4373,4506,7085,7239,7666,7746,7808,7897,7960,8025,8084,8157,8220,8274,8402,8459,8521,8575,8648,8791,8875,8963,9099,9187,9275,9411,9496,9573,9626,9677,9743,9818,9894,9980,10059,10136,10212,10289,10363,10475,10566,10641,10732,10824,10898,10985,11076,11131,11213,11279,11362,11448,11510,11574,11637,11707,11824,11936,12047,12157,12214,12349",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,78,78,82,121,109,94,132,88,65,96,79,61,88,62,64,58,72,62,53,127,56,61,53,72,142,83,87,135,87,87,135,84,76,52,50,65,74,75,85,78,76,75,76,73,111,90,74,90,91,73,86,90,54,81,65,82,85,61,63,62,69,116,111,110,109,56,54,85",
+ "endOffsets": "310,3138,3217,3300,3422,3532,4368,4501,4590,7146,7331,7741,7803,7892,7955,8020,8079,8152,8215,8269,8397,8454,8516,8570,8643,8786,8870,8958,9094,9182,9270,9406,9491,9568,9621,9672,9738,9813,9889,9975,10054,10131,10207,10284,10358,10470,10561,10636,10727,10819,10893,10980,11071,11126,11208,11274,11357,11443,11505,11569,11632,11702,11819,11931,12042,12152,12209,12264,12430"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-bg/values-bg.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,331,436,522,632,753,833,910,1001,1094,1189,1283,1383,1476,1571,1679,1770,1861,1944,2058,2166,2266,2380,2487,2595,2755,2854",
+ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83",
+ "endOffsets": "220,326,431,517,627,748,828,905,996,1089,1184,1278,1378,1471,1566,1674,1765,1856,1939,2053,2161,2261,2375,2482,2590,2750,2849,2933"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,435,541,646,732,842,963,1043,1120,1211,1304,1399,1493,1593,1686,1781,1889,1980,2071,2154,2268,2376,2476,2590,2697,2805,2965,12575",
+ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83",
+ "endOffsets": "430,536,641,727,837,958,1038,1115,1206,1299,1394,1488,1588,1681,1776,1884,1975,2066,2149,2263,2371,2471,2585,2692,2800,2960,3059,12654"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-bg/values-bg.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,166,274,386",
+ "endColumns": "110,107,111,109",
+ "endOffsets": "161,269,381,491"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6974,7336,7444,7556",
+ "endColumns": "110,107,111,109",
+ "endOffsets": "7080,7439,7551,7661"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-bg/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "133",
+ "endOffsets": "328"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5645",
+ "endColumns": "137",
+ "endOffsets": "5778"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-bg/values-bg.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,262,364,465,572,677,796",
+ "endColumns": "96,109,101,100,106,104,118,100",
+ "endOffsets": "147,257,359,460,567,672,791,892"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3537,3634,3744,3846,3947,4054,4159,12659",
+ "endColumns": "96,109,101,100,106,104,118,100",
+ "endOffsets": "3629,3739,3841,3942,4049,4154,4273,12755"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-bn.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-bn.json
new file mode 100644
index 00000000..26ae3052
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-bn.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-bn/values-bn.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-bn/values-bn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,261,341,490,659,740",
+ "endColumns": "71,83,79,148,168,80,77",
+ "endOffsets": "172,256,336,485,654,735,813"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6716,6960,11932,12092,12429,12598,12679",
+ "endColumns": "71,83,79,148,168,80,77",
+ "endOffsets": "6783,7039,12007,12236,12593,12674,12752"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-bn/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,298,453,577,684,816,934,1042,1142,1281,1386,1538,1662,1791,1935,1991,2054",
+ "endColumns": "104,154,123,106,131,117,107,99,138,104,151,123,128,143,55,62,85",
+ "endOffsets": "297,452,576,683,815,933,1041,1141,1280,1385,1537,1661,1790,1934,1990,2053,2139"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4549,4658,4817,4945,5056,5192,5314,5426,5682,5825,5934,6090,6218,6351,6499,6559,6626",
+ "endColumns": "108,158,127,110,135,121,111,103,142,108,155,127,132,147,59,66,89",
+ "endOffsets": "4653,4812,4940,5051,5187,5309,5421,5525,5820,5929,6085,6213,6346,6494,6554,6621,6711"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-bn/values-bn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,319,425,514,619,740,823,905,996,1089,1183,1277,1377,1470,1565,1659,1750,1841,1927,2037,2141,2244,2352,2460,2565,2730,2835",
+ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86",
+ "endOffsets": "208,314,420,509,614,735,818,900,991,1084,1178,1272,1372,1465,1560,1654,1745,1836,1922,2032,2136,2239,2347,2455,2560,2725,2830,2917"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "321,429,535,641,730,835,956,1039,1121,1212,1305,1399,1493,1593,1686,1781,1875,1966,2057,2143,2253,2357,2460,2568,2676,2781,2946,12241",
+ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86",
+ "endOffsets": "424,530,636,725,830,951,1034,1116,1207,1300,1394,1488,1588,1681,1776,1870,1961,2052,2138,2248,2352,2455,2563,2671,2776,2941,3046,12323"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-bn/values-bn.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,271,369,462,545,646,738,842,959,1040,1106,1197,1263,1324,1414,1478,1545,1606,1675,1737,1791,1898,1957,2018,2072,2146,2266,2351,2435,2570,2641,2711,2843,2930,3013,3071,3127,3193,3266,3346,3441,3523,3592,3668,3748,3817,3926,4021,4104,4194,4289,4363,4437,4530,4584,4669,4736,4822,4907,4969,5033,5096,5162,5264,5363,5456,5555,5617,5677",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,97,92,82,100,91,103,116,80,65,90,65,60,89,63,66,60,68,61,53,106,58,60,53,73,119,84,83,134,70,69,131,86,82,57,55,65,72,79,94,81,68,75,79,68,108,94,82,89,94,73,73,92,53,84,66,85,84,61,63,62,65,101,98,92,98,61,59,79",
+ "endOffsets": "266,364,457,540,641,733,837,954,1035,1101,1192,1258,1319,1409,1473,1540,1601,1670,1732,1786,1893,1952,2013,2067,2141,2261,2346,2430,2565,2636,2706,2838,2925,3008,3066,3122,3188,3261,3341,3436,3518,3587,3663,3743,3812,3921,4016,4099,4189,4284,4358,4432,4525,4579,4664,4731,4817,4902,4964,5028,5091,5157,5259,5358,5451,5550,5612,5672,5752"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3051,3149,3242,3325,3426,4247,4351,4468,6894,7044,7452,7518,7579,7669,7733,7800,7861,7930,7992,8046,8153,8212,8273,8327,8401,8521,8606,8690,8825,8896,8966,9098,9185,9268,9326,9382,9448,9521,9601,9696,9778,9847,9923,10003,10072,10181,10276,10359,10449,10544,10618,10692,10785,10839,10924,10991,11077,11162,11224,11288,11351,11417,11519,11618,11711,11810,11872,12012",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,97,92,82,100,91,103,116,80,65,90,65,60,89,63,66,60,68,61,53,106,58,60,53,73,119,84,83,134,70,69,131,86,82,57,55,65,72,79,94,81,68,75,79,68,108,94,82,89,94,73,73,92,53,84,66,85,84,61,63,62,65,101,98,92,98,61,59,79",
+ "endOffsets": "316,3144,3237,3320,3421,3513,4346,4463,4544,6955,7130,7513,7574,7664,7728,7795,7856,7925,7987,8041,8148,8207,8268,8322,8396,8516,8601,8685,8820,8891,8961,9093,9180,9263,9321,9377,9443,9516,9596,9691,9773,9842,9918,9998,10067,10176,10271,10354,10444,10539,10613,10687,10780,10834,10919,10986,11072,11157,11219,11283,11346,11412,11514,11613,11706,11805,11867,11927,12087"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-bn/values-bn.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,161,263,372",
+ "endColumns": "105,101,108,105",
+ "endOffsets": "156,258,367,473"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6788,7135,7237,7346",
+ "endColumns": "105,101,108,105",
+ "endOffsets": "6889,7232,7341,7447"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-bn/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "147",
+ "endOffsets": "342"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5530",
+ "endColumns": "151",
+ "endOffsets": "5677"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-bn/values-bn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,154,256,358,461,562,664,784",
+ "endColumns": "98,101,101,102,100,101,119,100",
+ "endOffsets": "149,251,353,456,557,659,779,880"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3518,3617,3719,3821,3924,4025,4127,12328",
+ "endColumns": "98,101,101,102,100,101,119,100",
+ "endOffsets": "3612,3714,3816,3919,4020,4122,4242,12424"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-bs.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-bs.json
new file mode 100644
index 00000000..7eff4db5
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-bs.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-bs/values-bs.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-bs/values-bs.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,226,323,430,516,620,742,827,909,1000,1093,1188,1282,1382,1475,1570,1665,1756,1847,1935,2038,2142,2243,2348,2462,2565,2734,2830",
+ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86",
+ "endOffsets": "221,318,425,511,615,737,822,904,995,1088,1183,1277,1377,1470,1565,1660,1751,1842,1930,2033,2137,2238,2343,2457,2560,2729,2825,2912"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "377,498,595,702,788,892,1014,1099,1181,1272,1365,1460,1554,1654,1747,1842,1937,2028,2119,2207,2310,2414,2515,2620,2734,2837,3006,12349",
+ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86",
+ "endOffsets": "493,590,697,783,887,1009,1094,1176,1267,1360,1455,1549,1649,1742,1837,1932,2023,2114,2202,2305,2409,2510,2615,2729,2832,3001,3097,12431"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-bs/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "136",
+ "endOffsets": "331"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5559",
+ "endColumns": "140",
+ "endOffsets": "5695"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-bs/values-bs.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,159,259,373",
+ "endColumns": "103,99,113,99",
+ "endOffsets": "154,254,368,468"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6831,7180,7280,7394",
+ "endColumns": "103,99,113,99",
+ "endOffsets": "6930,7275,7389,7489"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-bs/values-bs.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,353,457,561,663,780",
+ "endColumns": "97,101,97,103,103,101,116,100",
+ "endOffsets": "148,250,348,452,556,658,775,876"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3539,3637,3739,3837,3941,4045,4147,12436",
+ "endColumns": "97,101,97,103,103,101,116,100",
+ "endOffsets": "3632,3734,3832,3936,4040,4142,4259,12532"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-bs/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,451,573,679,825,947,1055,1153,1303,1406,1563,1686,1832,1974,2038,2096",
+ "endColumns": "101,155,121,105,145,121,107,97,149,102,156,122,145,141,63,57,80",
+ "endOffsets": "294,450,572,678,824,946,1054,1152,1302,1405,1562,1685,1831,1973,2037,2095,2176"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4567,4673,4833,4959,5069,5219,5345,5457,5700,5854,5961,6122,6249,6399,6545,6613,6675",
+ "endColumns": "105,159,125,109,149,125,111,101,153,106,160,126,149,145,67,61,84",
+ "endOffsets": "4668,4828,4954,5064,5214,5340,5452,5554,5849,5956,6117,6244,6394,6540,6608,6670,6755"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-bs/values-bs.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,263,346,484,653,740",
+ "endColumns": "70,86,82,137,168,86,82",
+ "endOffsets": "171,258,341,479,648,735,818"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6760,7001,12048,12211,12537,12706,12793",
+ "endColumns": "70,86,82,137,168,86,82",
+ "endOffsets": "6826,7083,12126,12344,12701,12788,12871"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-bs/values-bs.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,327,406,486,568,670,764,860,986,1067,1133,1225,1302,1365,1473,1533,1599,1655,1726,1786,1840,1959,2016,2078,2132,2207,2331,2419,2502,2647,2732,2818,2951,3039,3117,3171,3225,3291,3365,3443,3530,3612,3684,3761,3834,3904,4013,4106,4178,4270,4366,4440,4516,4612,4665,4747,4814,4901,4988,5050,5114,5177,5246,5354,5459,5560,5663,5721,5779",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,78,79,81,101,93,95,125,80,65,91,76,62,107,59,65,55,70,59,53,118,56,61,53,74,123,87,82,144,84,85,132,87,77,53,53,65,73,77,86,81,71,76,72,69,108,92,71,91,95,73,75,95,52,81,66,86,86,61,63,62,68,107,104,100,102,57,57,79",
+ "endOffsets": "322,401,481,563,665,759,855,981,1062,1128,1220,1297,1360,1468,1528,1594,1650,1721,1781,1835,1954,2011,2073,2127,2202,2326,2414,2497,2642,2727,2813,2946,3034,3112,3166,3220,3286,3360,3438,3525,3607,3679,3756,3829,3899,4008,4101,4173,4265,4361,4435,4511,4607,4660,4742,4809,4896,4983,5045,5109,5172,5241,5349,5454,5555,5658,5716,5774,5854"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3102,3181,3261,3343,3445,4264,4360,4486,6935,7088,7494,7571,7634,7742,7802,7868,7924,7995,8055,8109,8228,8285,8347,8401,8476,8600,8688,8771,8916,9001,9087,9220,9308,9386,9440,9494,9560,9634,9712,9799,9881,9953,10030,10103,10173,10282,10375,10447,10539,10635,10709,10785,10881,10934,11016,11083,11170,11257,11319,11383,11446,11515,11623,11728,11829,11932,11990,12131",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,78,79,81,101,93,95,125,80,65,91,76,62,107,59,65,55,70,59,53,118,56,61,53,74,123,87,82,144,84,85,132,87,77,53,53,65,73,77,86,81,71,76,72,69,108,92,71,91,95,73,75,95,52,81,66,86,86,61,63,62,68,107,104,100,102,57,57,79",
+ "endOffsets": "372,3176,3256,3338,3440,3534,4355,4481,4562,6996,7175,7566,7629,7737,7797,7863,7919,7990,8050,8104,8223,8280,8342,8396,8471,8595,8683,8766,8911,8996,9082,9215,9303,9381,9435,9489,9555,9629,9707,9794,9876,9948,10025,10098,10168,10277,10370,10442,10534,10630,10704,10780,10876,10929,11011,11078,11165,11252,11314,11378,11441,11510,11618,11723,11824,11927,11985,12043,12206"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ca.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ca.json
new file mode 100644
index 00000000..f1f1f0d2
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ca.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ca/values-ca.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ca/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,294,442,565,670,816,939,1058,1162,1329,1434,1589,1716,1876,2030,2091,2155",
+ "endColumns": "100,147,122,104,145,122,118,103,166,104,154,126,159,153,60,63,82",
+ "endOffsets": "293,441,564,669,815,938,1057,1161,1328,1433,1588,1715,1875,2029,2090,2154,2237"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4537,4642,4794,4921,5030,5180,5307,5430,5673,5844,5953,6112,6243,6407,6565,6630,6698",
+ "endColumns": "104,151,126,108,149,126,122,107,170,108,158,130,163,157,64,67,86",
+ "endOffsets": "4637,4789,4916,5025,5175,5302,5425,5533,5839,5948,6107,6238,6402,6560,6625,6693,6780"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ca/values-ca.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,352,449,555,660,786",
+ "endColumns": "95,101,98,96,105,104,125,100",
+ "endOffsets": "146,248,347,444,550,655,781,882"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3493,3589,3691,3790,3887,3993,4098,12641",
+ "endColumns": "95,101,98,96,105,104,125,100",
+ "endOffsets": "3584,3686,3785,3882,3988,4093,4219,12737"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ca/values-ca.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,228,333,440,523,629,755,839,918,1009,1102,1195,1290,1388,1481,1574,1668,1759,1850,1931,2042,2150,2248,2358,2463,2571,2731,2830",
+ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81",
+ "endOffsets": "223,328,435,518,624,750,834,913,1004,1097,1190,1285,1383,1476,1569,1663,1754,1845,1926,2037,2145,2243,2353,2458,2566,2726,2825,2907"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "324,447,552,659,742,848,974,1058,1137,1228,1321,1414,1509,1607,1700,1793,1887,1978,2069,2150,2261,2369,2467,2577,2682,2790,2950,12559",
+ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81",
+ "endOffsets": "442,547,654,737,843,969,1053,1132,1223,1316,1409,1504,1602,1695,1788,1882,1973,2064,2145,2256,2364,2462,2572,2677,2785,2945,3044,12636"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ca/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "130",
+ "endOffsets": "325"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5538",
+ "endColumns": "134",
+ "endOffsets": "5668"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ca/values-ca.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,274,355,435,523,626,718,819,947,1031,1096,1193,1273,1338,1433,1497,1569,1631,1707,1770,1827,1948,2006,2067,2124,2204,2341,2428,2512,2651,2729,2808,2960,3049,3125,3182,3238,3304,3382,3463,3551,3639,3717,3794,3868,3947,4057,4147,4239,4331,4432,4506,4588,4689,4739,4822,4888,4980,5067,5129,5193,5256,5329,5452,5565,5669,5777,5838,5898",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,79,87,102,91,100,127,83,64,96,79,64,94,63,71,61,75,62,56,120,57,60,56,79,136,86,83,138,77,78,151,88,75,56,55,65,77,80,87,87,77,76,73,78,109,89,91,91,100,73,81,100,49,82,65,91,86,61,63,62,72,122,112,103,107,60,59,85",
+ "endOffsets": "269,350,430,518,621,713,814,942,1026,1091,1188,1268,1333,1428,1492,1564,1626,1702,1765,1822,1943,2001,2062,2119,2199,2336,2423,2507,2646,2724,2803,2955,3044,3120,3177,3233,3299,3377,3458,3546,3634,3712,3789,3863,3942,4052,4142,4234,4326,4427,4501,4583,4684,4734,4817,4883,4975,5062,5124,5188,5251,5324,5447,5560,5664,5772,5833,5893,5979"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3049,3130,3210,3298,3401,4224,4325,4453,6967,7128,7548,7628,7693,7788,7852,7924,7986,8062,8125,8182,8303,8361,8422,8479,8559,8696,8783,8867,9006,9084,9163,9315,9404,9480,9537,9593,9659,9737,9818,9906,9994,10072,10149,10223,10302,10412,10502,10594,10686,10787,10861,10943,11044,11094,11177,11243,11335,11422,11484,11548,11611,11684,11807,11920,12024,12132,12193,12330",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,79,87,102,91,100,127,83,64,96,79,64,94,63,71,61,75,62,56,120,57,60,56,79,136,86,83,138,77,78,151,88,75,56,55,65,77,80,87,87,77,76,73,78,109,89,91,91,100,73,81,100,49,82,65,91,86,61,63,62,72,122,112,103,107,60,59,85",
+ "endOffsets": "319,3125,3205,3293,3396,3488,4320,4448,4532,7027,7220,7623,7688,7783,7847,7919,7981,8057,8120,8177,8298,8356,8417,8474,8554,8691,8778,8862,9001,9079,9158,9310,9399,9475,9532,9588,9654,9732,9813,9901,9989,10067,10144,10218,10297,10407,10497,10589,10681,10782,10856,10938,11039,11089,11172,11238,11330,11417,11479,11543,11606,11679,11802,11915,12019,12127,12188,12248,12411"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ca/values-ca.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,270,347,490,659,746",
+ "endColumns": "68,95,76,142,168,86,80",
+ "endOffsets": "169,265,342,485,654,741,822"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6785,7032,12253,12416,12742,12911,12998",
+ "endColumns": "68,95,76,142,168,86,80",
+ "endOffsets": "6849,7123,12325,12554,12906,12993,13074"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ca/values-ca.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,168,271,382",
+ "endColumns": "112,102,110,108",
+ "endOffsets": "163,266,377,486"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6854,7225,7328,7439",
+ "endColumns": "112,102,110,108",
+ "endOffsets": "6962,7323,7434,7543"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-cs.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-cs.json
new file mode 100644
index 00000000..07e5ea01
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-cs.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-cs/values-cs.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-cs/values-cs.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,157,260,374",
+ "endColumns": "101,102,113,100",
+ "endOffsets": "152,255,369,470"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6895,7259,7362,7476",
+ "endColumns": "101,102,113,100",
+ "endOffsets": "6992,7357,7471,7572"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-cs/values-cs.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,356,455,560,667,786",
+ "endColumns": "97,101,100,98,104,106,118,100",
+ "endOffsets": "148,250,351,450,555,662,781,882"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3540,3638,3740,3841,3940,4045,4152,12462",
+ "endColumns": "97,101,100,98,104,106,118,100",
+ "endOffsets": "3633,3735,3836,3935,4040,4147,4266,12558"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-cs/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,451,572,678,827,950,1058,1155,1326,1433,1593,1717,1874,2025,2089,2152",
+ "endColumns": "101,155,120,105,148,122,107,96,170,106,159,123,156,150,63,62,81",
+ "endOffsets": "294,450,571,677,826,949,1057,1154,1325,1432,1592,1716,1873,2024,2088,2151,2233"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4570,4676,4836,4961,5071,5224,5351,5463,5707,5882,5993,6157,6285,6446,6601,6669,6736",
+ "endColumns": "105,159,124,109,152,126,111,100,174,110,163,127,160,154,67,66,85",
+ "endOffsets": "4671,4831,4956,5066,5219,5346,5458,5559,5877,5988,6152,6280,6441,6596,6664,6731,6817"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-cs/values-cs.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,276,354,501,670,754",
+ "endColumns": "72,97,77,146,168,83,80",
+ "endOffsets": "173,271,349,496,665,749,830"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6822,7062,12075,12232,12563,12732,12816",
+ "endColumns": "72,97,77,146,168,83,80",
+ "endOffsets": "6890,7155,12148,12374,12727,12811,12892"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-cs/values-cs.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,368,446,524,601,704,796,888,1014,1095,1160,1259,1335,1396,1485,1549,1616,1670,1738,1798,1852,1969,2029,2091,2145,2217,2339,2423,2515,2652,2730,2812,2939,3027,3107,3161,3212,3278,3350,3427,3511,3592,3664,3741,3815,3886,3991,4079,4150,4243,4338,4412,4486,4582,4634,4717,4784,4870,4958,5020,5084,5147,5215,5325,5431,5530,5644,5702,5757",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,77,77,76,102,91,91,125,80,64,98,75,60,88,63,66,53,67,59,53,116,59,61,53,71,121,83,91,136,77,81,126,87,79,53,50,65,71,76,83,80,71,76,73,70,104,87,70,92,94,73,73,95,51,82,66,85,87,61,63,62,67,109,105,98,113,57,54,78",
+ "endOffsets": "363,441,519,596,699,791,883,1009,1090,1155,1254,1330,1391,1480,1544,1611,1665,1733,1793,1847,1964,2024,2086,2140,2212,2334,2418,2510,2647,2725,2807,2934,3022,3102,3156,3207,3273,3345,3422,3506,3587,3659,3736,3810,3881,3986,4074,4145,4238,4333,4407,4481,4577,4629,4712,4779,4865,4953,5015,5079,5142,5210,5320,5426,5525,5639,5697,5752,5831"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3112,3190,3268,3345,3448,4271,4363,4489,6997,7160,7577,7653,7714,7803,7867,7934,7988,8056,8116,8170,8287,8347,8409,8463,8535,8657,8741,8833,8970,9048,9130,9257,9345,9425,9479,9530,9596,9668,9745,9829,9910,9982,10059,10133,10204,10309,10397,10468,10561,10656,10730,10804,10900,10952,11035,11102,11188,11276,11338,11402,11465,11533,11643,11749,11848,11962,12020,12153",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,77,77,76,102,91,91,125,80,64,98,75,60,88,63,66,53,67,59,53,116,59,61,53,71,121,83,91,136,77,81,126,87,79,53,50,65,71,76,83,80,71,76,73,70,104,87,70,92,94,73,73,95,51,82,66,85,87,61,63,62,67,109,105,98,113,57,54,78",
+ "endOffsets": "413,3185,3263,3340,3443,3535,4358,4484,4565,7057,7254,7648,7709,7798,7862,7929,7983,8051,8111,8165,8282,8342,8404,8458,8530,8652,8736,8828,8965,9043,9125,9252,9340,9420,9474,9525,9591,9663,9740,9824,9905,9977,10054,10128,10199,10304,10392,10463,10556,10651,10725,10799,10895,10947,11030,11097,11183,11271,11333,11397,11460,11528,11638,11744,11843,11957,12015,12070,12227"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-cs/values-cs.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,314,424,510,615,732,810,886,977,1070,1165,1259,1353,1446,1541,1638,1729,1820,1904,2008,2120,2219,2325,2436,2538,2701,2799",
+ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82",
+ "endOffsets": "207,309,419,505,610,727,805,881,972,1065,1160,1254,1348,1441,1536,1633,1724,1815,1899,2003,2115,2214,2320,2431,2533,2696,2794,2877"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "418,525,627,737,823,928,1045,1123,1199,1290,1383,1478,1572,1666,1759,1854,1951,2042,2133,2217,2321,2433,2532,2638,2749,2851,3014,12379",
+ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82",
+ "endOffsets": "520,622,732,818,923,1040,1118,1194,1285,1378,1473,1567,1661,1754,1849,1946,2037,2128,2212,2316,2428,2527,2633,2744,2846,3009,3107,12457"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-cs/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "138",
+ "endOffsets": "333"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5564",
+ "endColumns": "142",
+ "endOffsets": "5702"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-da.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-da.json
new file mode 100644
index 00000000..9d262933
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-da.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-da/values-da.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-da/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,451,574,679,818,939,1055,1156,1308,1410,1568,1691,1832,2006,2068,2126",
+ "endColumns": "101,155,122,104,138,120,115,100,151,101,157,122,140,173,61,57,73",
+ "endOffsets": "294,450,573,678,817,938,1054,1155,1307,1409,1567,1690,1831,2005,2067,2125,2199"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4437,4543,4703,4830,4939,5082,5207,5327,5559,5715,5821,5983,6110,6255,6433,6499,6561",
+ "endColumns": "105,159,126,108,142,124,119,104,155,105,161,126,144,177,65,61,77",
+ "endOffsets": "4538,4698,4825,4934,5077,5202,5322,5427,5710,5816,5978,6105,6250,6428,6494,6556,6634"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-da/values-da.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,205,299,415,500,600,713,791,867,958,1051,1144,1238,1332,1425,1520,1618,1709,1800,1879,1987,2094,2190,2303,2406,2507,2660,2757",
+ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79",
+ "endOffsets": "200,294,410,495,595,708,786,862,953,1046,1139,1233,1327,1420,1515,1613,1704,1795,1874,1982,2089,2185,2298,2401,2502,2655,2752,2832"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "322,422,516,632,717,817,930,1008,1084,1175,1268,1361,1455,1549,1642,1737,1835,1926,2017,2096,2204,2311,2407,2520,2623,2724,2877,12097",
+ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79",
+ "endOffsets": "417,511,627,712,812,925,1003,1079,1170,1263,1356,1450,1544,1637,1732,1830,1921,2012,2091,2199,2306,2402,2515,2618,2719,2872,2969,12172"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-da/values-da.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,167,266,373",
+ "endColumns": "111,98,106,96",
+ "endOffsets": "162,261,368,465"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6709,7059,7158,7265",
+ "endColumns": "111,98,106,96",
+ "endOffsets": "6816,7153,7260,7357"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-da/values-da.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,350,448,555,664,782",
+ "endColumns": "95,101,96,97,106,108,117,100",
+ "endOffsets": "146,248,345,443,550,659,777,878"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3383,3479,3581,3678,3776,3883,3992,12177",
+ "endColumns": "95,101,96,97,106,108,117,100",
+ "endOffsets": "3474,3576,3673,3771,3878,3987,4105,12273"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-da/values-da.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,263,342,490,659,739",
+ "endColumns": "69,87,78,147,168,79,76",
+ "endOffsets": "170,258,337,485,654,734,811"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6639,6885,11790,11949,12278,12447,12527",
+ "endColumns": "69,87,78,147,168,79,76",
+ "endOffsets": "6704,6968,11864,12092,12442,12522,12599"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-da/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "122",
+ "endOffsets": "317"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5432",
+ "endColumns": "126",
+ "endOffsets": "5554"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-da/values-da.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,272,350,426,504,601,681,781,930,1008,1072,1158,1231,1291,1378,1442,1504,1566,1634,1699,1755,1873,1931,1992,2048,2123,2249,2335,2415,2556,2634,2714,2836,2922,3000,3056,3107,3173,3241,3315,3404,3479,3551,3629,3699,3772,3876,3960,4037,4125,4214,4288,4361,4446,4495,4573,4639,4719,4802,4864,4928,4991,5060,5168,5271,5372,5471,5531,5586",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,75,77,96,79,99,148,77,63,85,72,59,86,63,61,61,67,64,55,117,57,60,55,74,125,85,79,140,77,79,121,85,77,55,50,65,67,73,88,74,71,77,69,72,103,83,76,87,88,73,72,84,48,77,65,79,82,61,63,62,68,107,102,100,98,59,54,79",
+ "endOffsets": "267,345,421,499,596,676,776,925,1003,1067,1153,1226,1286,1373,1437,1499,1561,1629,1694,1750,1868,1926,1987,2043,2118,2244,2330,2410,2551,2629,2709,2831,2917,2995,3051,3102,3168,3236,3310,3399,3474,3546,3624,3694,3767,3871,3955,4032,4120,4209,4283,4356,4441,4490,4568,4634,4714,4797,4859,4923,4986,5055,5163,5266,5367,5466,5526,5581,5661"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2974,3052,3128,3206,3303,4110,4210,4359,6821,6973,7362,7435,7495,7582,7646,7708,7770,7838,7903,7959,8077,8135,8196,8252,8327,8453,8539,8619,8760,8838,8918,9040,9126,9204,9260,9311,9377,9445,9519,9608,9683,9755,9833,9903,9976,10080,10164,10241,10329,10418,10492,10565,10650,10699,10777,10843,10923,11006,11068,11132,11195,11264,11372,11475,11576,11675,11735,11869",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,75,77,96,79,99,148,77,63,85,72,59,86,63,61,61,67,64,55,117,57,60,55,74,125,85,79,140,77,79,121,85,77,55,50,65,67,73,88,74,71,77,69,72,103,83,76,87,88,73,72,84,48,77,65,79,82,61,63,62,68,107,102,100,98,59,54,79",
+ "endOffsets": "317,3047,3123,3201,3298,3378,4205,4354,4432,6880,7054,7430,7490,7577,7641,7703,7765,7833,7898,7954,8072,8130,8191,8247,8322,8448,8534,8614,8755,8833,8913,9035,9121,9199,9255,9306,9372,9440,9514,9603,9678,9750,9828,9898,9971,10075,10159,10236,10324,10413,10487,10560,10645,10694,10772,10838,10918,11001,11063,11127,11190,11259,11367,11470,11571,11670,11730,11785,11944"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-de.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-de.json
new file mode 100644
index 00000000..00cc3dcc
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-de.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-de/values-de.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-de/values-de.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,355,455,563,668,786",
+ "endColumns": "97,101,99,99,107,104,117,100",
+ "endOffsets": "148,250,350,450,558,663,781,882"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3496,3594,3696,3796,3896,4004,4109,12591",
+ "endColumns": "97,101,99,99,107,104,117,100",
+ "endOffsets": "3589,3691,3791,3891,3999,4104,4222,12687"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-de/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "140",
+ "endOffsets": "335"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5593",
+ "endColumns": "144",
+ "endOffsets": "5733"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-de/values-de.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,159,260,371",
+ "endColumns": "103,100,110,99",
+ "endOffsets": "154,255,366,466"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6954,7306,7407,7518",
+ "endColumns": "103,100,110,99",
+ "endOffsets": "7053,7402,7513,7613"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-de/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,298,458,582,690,864,991,1108,1223,1399,1507,1672,1799,1957,2129,2196,2255",
+ "endColumns": "104,159,123,107,173,126,116,114,175,107,164,126,157,171,66,58,75",
+ "endOffsets": "297,457,581,689,863,990,1107,1222,1398,1506,1671,1798,1956,2128,2195,2254,2330"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4531,4640,4804,4932,5044,5222,5353,5474,5738,5918,6030,6199,6330,6492,6668,6739,6802",
+ "endColumns": "108,163,127,111,177,130,120,118,179,111,168,130,161,175,70,62,79",
+ "endOffsets": "4635,4799,4927,5039,5217,5348,5469,5588,5913,6025,6194,6325,6487,6663,6734,6797,6877"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-de/values-de.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,265,348,488,657,737",
+ "endColumns": "71,87,82,139,168,79,75",
+ "endOffsets": "172,260,343,483,652,732,808"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6882,7124,12204,12369,12692,12861,12941",
+ "endColumns": "71,87,82,139,168,79,75",
+ "endOffsets": "6949,7207,12282,12504,12856,12936,13012"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-de/values-de.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,210,308,420,506,612,727,805,880,972,1066,1162,1263,1370,1470,1574,1672,1770,1867,1949,2060,2162,2260,2367,2470,2574,2730,2832",
+ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81",
+ "endOffsets": "205,303,415,501,607,722,800,875,967,1061,1157,1258,1365,1465,1569,1667,1765,1862,1944,2055,2157,2255,2362,2465,2569,2725,2827,2909"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "333,438,536,648,734,840,955,1033,1108,1200,1294,1390,1491,1598,1698,1802,1900,1998,2095,2177,2288,2390,2488,2595,2698,2802,2958,12509",
+ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81",
+ "endOffsets": "433,531,643,729,835,950,1028,1103,1195,1289,1385,1486,1593,1693,1797,1895,1993,2090,2172,2283,2385,2483,2590,2693,2797,2953,3055,12586"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-de/values-de.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,283,374,463,547,637,719,820,942,1023,1089,1183,1253,1312,1420,1486,1555,1613,1685,1749,1803,1931,1991,2053,2107,2185,2322,2414,2498,2643,2727,2813,2946,3036,3115,3172,3223,3289,3363,3445,3538,3613,3687,3765,3837,3911,4021,4113,4195,4284,4373,4447,4525,4611,4666,4745,4812,4892,4976,5038,5102,5165,5234,5341,5448,5547,5653,5714,5769",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,90,88,83,89,81,100,121,80,65,93,69,58,107,65,68,57,71,63,53,127,59,61,53,77,136,91,83,144,83,85,132,89,78,56,50,65,73,81,92,74,73,77,71,73,109,91,81,88,88,73,77,85,54,78,66,79,83,61,63,62,68,106,106,98,105,60,54,81",
+ "endOffsets": "278,369,458,542,632,714,815,937,1018,1084,1178,1248,1307,1415,1481,1550,1608,1680,1744,1798,1926,1986,2048,2102,2180,2317,2409,2493,2638,2722,2808,2941,3031,3110,3167,3218,3284,3358,3440,3533,3608,3682,3760,3832,3906,4016,4108,4190,4279,4368,4442,4520,4606,4661,4740,4807,4887,4971,5033,5097,5160,5229,5336,5443,5542,5648,5709,5764,5846"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3060,3151,3240,3324,3414,4227,4328,4450,7058,7212,7618,7688,7747,7855,7921,7990,8048,8120,8184,8238,8366,8426,8488,8542,8620,8757,8849,8933,9078,9162,9248,9381,9471,9550,9607,9658,9724,9798,9880,9973,10048,10122,10200,10272,10346,10456,10548,10630,10719,10808,10882,10960,11046,11101,11180,11247,11327,11411,11473,11537,11600,11669,11776,11883,11982,12088,12149,12287",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,90,88,83,89,81,100,121,80,65,93,69,58,107,65,68,57,71,63,53,127,59,61,53,77,136,91,83,144,83,85,132,89,78,56,50,65,73,81,92,74,73,77,71,73,109,91,81,88,88,73,77,85,54,78,66,79,83,61,63,62,68,106,106,98,105,60,54,81",
+ "endOffsets": "328,3146,3235,3319,3409,3491,4323,4445,4526,7119,7301,7683,7742,7850,7916,7985,8043,8115,8179,8233,8361,8421,8483,8537,8615,8752,8844,8928,9073,9157,9243,9376,9466,9545,9602,9653,9719,9793,9875,9968,10043,10117,10195,10267,10341,10451,10543,10625,10714,10803,10877,10955,11041,11096,11175,11242,11322,11406,11468,11532,11595,11664,11771,11878,11977,12083,12144,12199,12364"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-el.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-el.json
new file mode 100644
index 00000000..4428c0f3
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-el.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-el/values-el.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-el/values-el.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,270,358,444,529,625,712,814,931,1017,1083,1183,1265,1328,1419,1482,1547,1609,1678,1740,1794,1932,1989,2050,2104,2177,2330,2415,2499,2638,2719,2804,2945,3035,3121,3176,3227,3293,3371,3456,3541,3624,3696,3776,3856,3927,4034,4126,4198,4295,4392,4466,4540,4642,4698,4785,4857,4945,5037,5099,5163,5226,5296,5412,5521,5630,5735,5794,5849",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,87,85,84,95,86,101,116,85,65,99,81,62,90,62,64,61,68,61,53,137,56,60,53,72,152,84,83,138,80,84,140,89,85,54,50,65,77,84,84,82,71,79,79,70,106,91,71,96,96,73,73,101,55,86,71,87,91,61,63,62,69,115,108,108,104,58,54,90",
+ "endOffsets": "265,353,439,524,620,707,809,926,1012,1078,1178,1260,1323,1414,1477,1542,1604,1673,1735,1789,1927,1984,2045,2099,2172,2325,2410,2494,2633,2714,2799,2940,3030,3116,3171,3222,3288,3366,3451,3536,3619,3691,3771,3851,3922,4029,4121,4193,4290,4387,4461,4535,4637,4693,4780,4852,4940,5032,5094,5158,5221,5291,5407,5516,5625,5730,5789,5844,5935"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3101,3189,3275,3360,3456,4278,4380,4497,7132,7285,7727,7809,7872,7963,8026,8091,8153,8222,8284,8338,8476,8533,8594,8648,8721,8874,8959,9043,9182,9263,9348,9489,9579,9665,9720,9771,9837,9915,10000,10085,10168,10240,10320,10400,10471,10578,10670,10742,10839,10936,11010,11084,11186,11242,11329,11401,11489,11581,11643,11707,11770,11840,11956,12065,12174,12279,12338,12476",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,87,85,84,95,86,101,116,85,65,99,81,62,90,62,64,61,68,61,53,137,56,60,53,72,152,84,83,138,80,84,140,89,85,54,50,65,77,84,84,82,71,79,79,70,106,91,71,96,96,73,73,101,55,86,71,87,91,61,63,62,69,115,108,108,104,58,54,90",
+ "endOffsets": "315,3184,3270,3355,3451,3538,4375,4492,4578,7193,7380,7804,7867,7958,8021,8086,8148,8217,8279,8333,8471,8528,8589,8643,8716,8869,8954,9038,9177,9258,9343,9484,9574,9660,9715,9766,9832,9910,9995,10080,10163,10235,10315,10395,10466,10573,10665,10737,10834,10931,11005,11079,11181,11237,11324,11396,11484,11576,11638,11702,11765,11835,11951,12060,12169,12274,12333,12388,12562"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-el/values-el.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,223,334,451,536,642,765,854,939,1030,1123,1218,1312,1412,1505,1600,1697,1788,1879,1964,2075,2184,2286,2397,2507,2615,2786,2886",
+ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85",
+ "endOffsets": "218,329,446,531,637,760,849,934,1025,1118,1213,1307,1407,1500,1595,1692,1783,1874,1959,2070,2179,2281,2392,2502,2610,2781,2881,2967"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "320,438,549,666,751,857,980,1069,1154,1245,1338,1433,1527,1627,1720,1815,1912,2003,2094,2179,2290,2399,2501,2612,2722,2830,3001,12709",
+ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85",
+ "endOffsets": "433,544,661,746,852,975,1064,1149,1240,1333,1428,1522,1622,1715,1810,1907,1998,2089,2174,2285,2394,2496,2607,2717,2825,2996,3096,12790"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-el/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,482,610,717,894,1015,1129,1230,1415,1519,1685,1810,1984,2125,2190,2248",
+ "endColumns": "106,181,127,106,176,120,113,100,184,103,165,124,173,140,64,57,78",
+ "endOffsets": "299,481,609,716,893,1014,1128,1229,1414,1518,1684,1809,1983,2124,2189,2247,2326"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4583,4694,4880,5012,5123,5304,5429,5547,5816,6005,6113,6283,6412,6590,6735,6804,6866",
+ "endColumns": "110,185,131,110,180,124,117,104,188,107,169,128,177,144,68,61,82",
+ "endOffsets": "4689,4875,5007,5118,5299,5424,5542,5647,6000,6108,6278,6407,6585,6730,6799,6861,6944"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-el/values-el.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,265,348,490,659,744",
+ "endColumns": "72,86,82,141,168,84,79",
+ "endOffsets": "173,260,343,485,654,739,819"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6949,7198,12393,12567,12896,13065,13150",
+ "endColumns": "72,86,82,141,168,84,79",
+ "endOffsets": "7017,7280,12471,12704,13060,13145,13225"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-el/values-el.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,165,272,397",
+ "endColumns": "109,106,124,109",
+ "endOffsets": "160,267,392,502"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7022,7385,7492,7617",
+ "endColumns": "109,106,124,109",
+ "endOffsets": "7127,7487,7612,7722"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-el/values-el.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,256,356,459,567,673,790",
+ "endColumns": "97,102,99,102,107,105,116,100",
+ "endOffsets": "148,251,351,454,562,668,785,886"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3543,3641,3744,3844,3947,4055,4161,12795",
+ "endColumns": "97,102,99,102,107,105,116,100",
+ "endOffsets": "3636,3739,3839,3942,4050,4156,4273,12891"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-el/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "159",
+ "endOffsets": "354"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5652",
+ "endColumns": "163",
+ "endOffsets": "5811"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rAU.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rAU.json
new file mode 100644
index 00000000..6e882777
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rAU.json
@@ -0,0 +1,77 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-en-rAU/values-en-rAU.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-en-rAU/values-en-rAU.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,44",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,4247",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,4325"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-en-rAU/values-en-rAU.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,352,451,555,658,774",
+ "endColumns": "95,101,98,98,103,102,115,100",
+ "endOffsets": "146,248,347,446,550,653,769,870"
+ },
+ "to": {
+ "startLines": "29,30,31,32,33,34,35,45",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "2762,2858,2960,3059,3158,3262,3365,4330",
+ "endColumns": "95,101,98,98,103,102,115,100",
+ "endOffsets": "2853,2955,3054,3153,3257,3360,3476,4426"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-en-rAU/values-en-rAU.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,153,250,359",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "148,245,354,453"
+ },
+ "to": {
+ "startLines": "37,39,40,41",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "3549,3734,3831,3940",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "3642,3826,3935,4034"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-en-rAU/values-en-rAU.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,173,260,334,468,637,717",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "168,255,329,463,632,712,788"
+ },
+ "to": {
+ "startLines": "36,38,42,43,46,47,48",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "3481,3647,4039,4113,4431,4600,4680",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "3544,3729,4108,4242,4595,4675,4751"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rCA.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rCA.json
new file mode 100644
index 00000000..f5b17b79
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rCA.json
@@ -0,0 +1,77 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-en-rCA/values-en-rCA.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-en-rCA/values-en-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,352,451,555,657,773",
+ "endColumns": "95,101,98,98,103,101,115,100",
+ "endOffsets": "146,248,347,446,550,652,768,869"
+ },
+ "to": {
+ "startLines": "29,30,31,32,33,34,35,45",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "2762,2858,2960,3059,3158,3262,3364,4329",
+ "endColumns": "95,101,98,98,103,101,115,100",
+ "endOffsets": "2853,2955,3054,3153,3257,3359,3475,4425"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-en-rCA/values-en-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,153,250,359",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "148,245,354,453"
+ },
+ "to": {
+ "startLines": "37,39,40,41",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "3548,3733,3830,3939",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "3641,3825,3934,4033"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-en-rCA/values-en-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,44",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,4246",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,4324"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-en-rCA/values-en-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,173,260,334,468,637,717",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "168,255,329,463,632,712,788"
+ },
+ "to": {
+ "startLines": "36,38,42,43,46,47,48",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "3480,3646,4038,4112,4430,4599,4679",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "3543,3728,4107,4241,4594,4674,4750"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rGB.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rGB.json
new file mode 100644
index 00000000..ed5e264a
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rGB.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-en-rGB/values-en-rGB.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-en-rGB/values-en-rGB.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,272,354,432,509,595,679,777,892,971,1036,1126,1193,1252,1342,1406,1470,1533,1602,1666,1720,1832,1890,1952,2006,2078,2200,2287,2368,2508,2585,2666,2793,2884,2961,3015,3066,3132,3202,3279,3366,3441,3512,3589,3658,3727,3834,3925,3997,4086,4175,4249,4321,4407,4457,4536,4602,4682,4766,4828,4892,4955,5024,5124,5219,5311,5403,5461,5516",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,81,77,76,85,83,97,114,78,64,89,66,58,89,63,63,62,68,63,53,111,57,61,53,71,121,86,80,139,76,80,126,90,76,53,50,65,69,76,86,74,70,76,68,68,106,90,71,88,88,73,71,85,49,78,65,79,83,61,63,62,68,99,94,91,91,57,54,77",
+ "endOffsets": "267,349,427,504,590,674,772,887,966,1031,1121,1188,1247,1337,1401,1465,1528,1597,1661,1715,1827,1885,1947,2001,2073,2195,2282,2363,2503,2580,2661,2788,2879,2956,3010,3061,3127,3197,3274,3361,3436,3507,3584,3653,3722,3829,3920,3992,4081,4170,4244,4316,4402,4452,4531,4597,4677,4761,4823,4887,4950,5019,5119,5214,5306,5398,5456,5511,5589"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2979,3061,3139,3216,3302,4105,4203,4318,6722,6874,7269,7336,7395,7485,7549,7613,7676,7745,7809,7863,7975,8033,8095,8149,8221,8343,8430,8511,8651,8728,8809,8936,9027,9104,9158,9209,9275,9345,9422,9509,9584,9655,9732,9801,9870,9977,10068,10140,10229,10318,10392,10464,10550,10600,10679,10745,10825,10909,10971,11035,11098,11167,11267,11362,11454,11546,11604,11733",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,81,77,76,85,83,97,114,78,64,89,66,58,89,63,63,62,68,63,53,111,57,61,53,71,121,86,80,139,76,80,126,90,76,53,50,65,69,76,86,74,70,76,68,68,106,90,71,88,88,73,71,85,49,78,65,79,83,61,63,62,68,99,94,91,91,57,54,77",
+ "endOffsets": "317,3056,3134,3211,3297,3381,4198,4313,4392,6782,6959,7331,7390,7480,7544,7608,7671,7740,7804,7858,7970,8028,8090,8144,8216,8338,8425,8506,8646,8723,8804,8931,9022,9099,9153,9204,9270,9340,9417,9504,9579,9650,9727,9796,9865,9972,10063,10135,10224,10313,10387,10459,10545,10595,10674,10740,10820,10904,10966,11030,11093,11162,11262,11357,11449,11541,11599,11654,11806"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-en-rGB/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "133",
+ "endOffsets": "332"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5379",
+ "endColumns": "137",
+ "endOffsets": "5512"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-en-rGB/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,298,446,567,670,817,936,1048,1147,1302,1403,1551,1672,1814,1958,2017,2075",
+ "endColumns": "100,147,120,102,146,118,111,98,154,100,147,120,141,143,58,57,74",
+ "endOffsets": "297,445,566,669,816,935,1047,1146,1301,1402,1550,1671,1813,1957,2016,2074,2149"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4397,4502,4654,4779,4886,5037,5160,5276,5517,5676,5781,5933,6058,6204,6352,6415,6477",
+ "endColumns": "104,151,124,106,150,122,115,102,158,104,151,124,145,147,62,61,78",
+ "endOffsets": "4497,4649,4774,4881,5032,5155,5271,5374,5671,5776,5928,6053,6199,6347,6410,6472,6551"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-en-rGB/values-en-rGB.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,173,260,334,468,637,717",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "168,255,329,463,632,712,788"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6556,6787,11659,11811,12129,12298,12378",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "6619,6869,11728,11940,12293,12373,12449"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-en-rGB/values-en-rGB.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,153,250,359",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "148,245,354,453"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6624,6964,7061,7170",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "6717,7056,7165,7264"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-en-rGB/values-en-rGB.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "322,426,526,634,718,818,933,1011,1086,1177,1270,1365,1459,1559,1652,1747,1841,1932,2023,2105,2208,2311,2410,2515,2619,2723,2879,11945",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "421,521,629,713,813,928,1006,1081,1172,1265,1360,1454,1554,1647,1742,1836,1927,2018,2100,2203,2306,2405,2510,2614,2718,2874,2974,12023"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-en-rGB/values-en-rGB.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,352,451,555,658,774",
+ "endColumns": "95,101,98,98,103,102,115,100",
+ "endOffsets": "146,248,347,446,550,653,769,870"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3386,3482,3584,3683,3782,3886,3989,12028",
+ "endColumns": "95,101,98,98,103,102,115,100",
+ "endOffsets": "3477,3579,3678,3777,3881,3984,4100,12124"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rIN.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rIN.json
new file mode 100644
index 00000000..56123458
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rIN.json
@@ -0,0 +1,77 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-en-rIN/values-en-rIN.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-en-rIN/values-en-rIN.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,173,260,334,468,637,717",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "168,255,329,463,632,712,788"
+ },
+ "to": {
+ "startLines": "36,38,42,43,46,47,48",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "3481,3647,4039,4113,4431,4600,4680",
+ "endColumns": "67,86,73,133,168,79,75",
+ "endOffsets": "3544,3729,4108,4242,4595,4675,4751"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-en-rIN/values-en-rIN.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,44",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,4247",
+ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82",
+ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,4325"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-en-rIN/values-en-rIN.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,352,451,555,658,774",
+ "endColumns": "95,101,98,98,103,102,115,100",
+ "endOffsets": "146,248,347,446,550,653,769,870"
+ },
+ "to": {
+ "startLines": "29,30,31,32,33,34,35,45",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "2762,2858,2960,3059,3158,3262,3365,4330",
+ "endColumns": "95,101,98,98,103,102,115,100",
+ "endOffsets": "2853,2955,3054,3153,3257,3360,3476,4426"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-en-rIN/values-en-rIN.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,153,250,359",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "148,245,354,453"
+ },
+ "to": {
+ "startLines": "37,39,40,41",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "3549,3734,3831,3940",
+ "endColumns": "97,96,108,98",
+ "endOffsets": "3642,3826,3935,4034"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rXC.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rXC.json
new file mode 100644
index 00000000..c5ad4c9f
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-en-rXC.json
@@ -0,0 +1,77 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-en-rXC/values-en-rXC.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-en-rXC/values-en-rXC.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,251,456,657,858,1065,1270,1482",
+ "endColumns": "195,204,200,200,206,204,211,203",
+ "endOffsets": "246,451,652,853,1060,1265,1477,1681"
+ },
+ "to": {
+ "startLines": "29,30,31,32,33,34,35,45",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "5528,5724,5929,6130,6331,6538,6743,8742",
+ "endColumns": "195,204,200,200,206,204,211,203",
+ "endOffsets": "5719,5924,6125,6326,6533,6738,6950,8941"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-en-rXC/values-en-rXC.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,276,465,642,894,1196,1378",
+ "endColumns": "170,188,176,251,301,181,172",
+ "endOffsets": "271,460,637,889,1191,1373,1546"
+ },
+ "to": {
+ "startLines": "36,38,42,43,46,47,48",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6955,7326,8127,8304,8946,9248,9430",
+ "endColumns": "170,188,176,251,301,181,172",
+ "endOffsets": "7121,7510,8299,8551,9243,9425,9598"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-en-rXC/values-en-rXC.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,255,454,665",
+ "endColumns": "199,198,210,201",
+ "endOffsets": "250,449,660,862"
+ },
+ "to": {
+ "startLines": "37,39,40,41",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7126,7515,7714,7925",
+ "endColumns": "199,198,210,201",
+ "endOffsets": "7321,7709,7920,8122"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-en-rXC/values-en-rXC.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,312,515,725,912,1113,1329,1509,1684,1878,2072,2267,2464,2663,2858,3056,3253,3447,3641,3826,4031,4234,4435,4641,4846,5053,5327,5528",
+ "endColumns": "206,202,209,186,200,215,179,174,193,193,194,196,198,194,197,196,193,193,184,204,202,200,205,204,206,273,200,185",
+ "endOffsets": "307,510,720,907,1108,1324,1504,1679,1873,2067,2262,2459,2658,2853,3051,3248,3442,3636,3821,4026,4229,4430,4636,4841,5048,5322,5523,5709"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,44",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,312,515,725,912,1113,1329,1509,1684,1878,2072,2267,2464,2663,2858,3056,3253,3447,3641,3826,4031,4234,4435,4641,4846,5053,5327,8556",
+ "endColumns": "206,202,209,186,200,215,179,174,193,193,194,196,198,194,197,196,193,193,184,204,202,200,205,204,206,273,200,185",
+ "endOffsets": "307,510,720,907,1108,1324,1504,1679,1873,2067,2262,2459,2658,2853,3051,3248,3442,3636,3821,4026,4229,4430,4636,4841,5048,5322,5523,8737"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-es-rUS.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-es-rUS.json
new file mode 100644
index 00000000..4bb5e4f5
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-es-rUS.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-es-rUS/values-es-rUS.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-es-rUS/values-es-rUS.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,272,350,492,661,749",
+ "endColumns": "69,96,77,141,168,87,81",
+ "endOffsets": "170,267,345,487,656,744,826"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6865,7109,12266,12427,12753,12922,13010",
+ "endColumns": "69,96,77,141,168,87,81",
+ "endOffsets": "6930,7201,12339,12564,12917,13005,13087"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-es-rUS/values-es-rUS.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,164,266,381",
+ "endColumns": "108,101,114,105",
+ "endOffsets": "159,261,376,482"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6935,7301,7403,7518",
+ "endColumns": "108,101,114,105",
+ "endOffsets": "7039,7398,7513,7619"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-es-rUS/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "141",
+ "endOffsets": "340"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5571",
+ "endColumns": "145",
+ "endOffsets": "5712"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-es-rUS/values-es-rUS.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,278,360,440,526,631,727,829,957,1038,1103,1198,1268,1331,1424,1488,1560,1623,1697,1761,1817,1935,1993,2055,2111,2191,2325,2414,2495,2636,2717,2797,2948,3038,3115,3171,3227,3293,3369,3451,3539,3628,3701,3778,3848,3925,4031,4120,4194,4288,4390,4462,4543,4647,4700,4785,4852,4945,5034,5096,5160,5223,5291,5402,5513,5615,5720,5780,5840",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,81,79,85,104,95,101,127,80,64,94,69,62,92,63,71,62,73,63,55,117,57,61,55,79,133,88,80,140,80,79,150,89,76,55,55,65,75,81,87,88,72,76,69,76,105,88,73,93,101,71,80,103,52,84,66,92,88,61,63,62,67,110,110,101,104,59,59,82",
+ "endOffsets": "273,355,435,521,626,722,824,952,1033,1098,1193,1263,1326,1419,1483,1555,1618,1692,1756,1812,1930,1988,2050,2106,2186,2320,2409,2490,2631,2712,2792,2943,3033,3110,3166,3222,3288,3364,3446,3534,3623,3696,3773,3843,3920,4026,4115,4189,4283,4385,4457,4538,4642,4695,4780,4847,4940,5029,5091,5155,5218,5286,5397,5508,5610,5715,5775,5835,5918"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3044,3126,3206,3292,3397,4225,4327,4455,7044,7206,7624,7694,7757,7850,7914,7986,8049,8123,8187,8243,8361,8419,8481,8537,8617,8751,8840,8921,9062,9143,9223,9374,9464,9541,9597,9653,9719,9795,9877,9965,10054,10127,10204,10274,10351,10457,10546,10620,10714,10816,10888,10969,11073,11126,11211,11278,11371,11460,11522,11586,11649,11717,11828,11939,12041,12146,12206,12344",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,81,79,85,104,95,101,127,80,64,94,69,62,92,63,71,62,73,63,55,117,57,61,55,79,133,88,80,140,80,79,150,89,76,55,55,65,75,81,87,88,72,76,69,76,105,88,73,93,101,71,80,103,52,84,66,92,88,61,63,62,67,110,110,101,104,59,59,82",
+ "endOffsets": "323,3121,3201,3287,3392,3488,4322,4450,4531,7104,7296,7689,7752,7845,7909,7981,8044,8118,8182,8238,8356,8414,8476,8532,8612,8746,8835,8916,9057,9138,9218,9369,9459,9536,9592,9648,9714,9790,9872,9960,10049,10122,10199,10269,10346,10452,10541,10615,10709,10811,10883,10964,11068,11121,11206,11273,11366,11455,11517,11581,11644,11712,11823,11934,12036,12141,12201,12261,12422"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-es-rUS/values-es-rUS.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,334,442,527,629,745,830,910,1001,1094,1189,1283,1382,1475,1574,1670,1761,1852,1934,2041,2140,2239,2347,2455,2562,2721,2821",
+ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82",
+ "endOffsets": "220,329,437,522,624,740,825,905,996,1089,1184,1278,1377,1470,1569,1665,1756,1847,1929,2036,2135,2234,2342,2450,2557,2716,2816,2899"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "328,448,557,665,750,852,968,1053,1133,1224,1317,1412,1506,1605,1698,1797,1893,1984,2075,2157,2264,2363,2462,2570,2678,2785,2944,12569",
+ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82",
+ "endOffsets": "443,552,660,745,847,963,1048,1128,1219,1312,1407,1501,1600,1693,1792,1888,1979,2070,2152,2259,2358,2457,2565,2673,2780,2939,3039,12647"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-es-rUS/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,301,463,591,695,852,979,1098,1200,1367,1472,1638,1767,1940,2114,2180,2238",
+ "endColumns": "103,161,127,103,156,126,118,101,166,104,165,128,172,173,65,57,73",
+ "endOffsets": "300,462,590,694,851,978,1097,1199,1366,1471,1637,1766,1939,2113,2179,2237,2311"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4536,4644,4810,4942,5050,5211,5342,5465,5717,5888,5997,6167,6300,6477,6655,6725,6787",
+ "endColumns": "107,165,131,107,160,130,122,105,170,108,169,132,176,177,69,61,77",
+ "endOffsets": "4639,4805,4937,5045,5206,5337,5460,5566,5883,5992,6162,6295,6472,6650,6720,6782,6860"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-es-rUS/values-es-rUS.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,154,256,356,454,561,667,787",
+ "endColumns": "98,101,99,97,106,105,119,100",
+ "endOffsets": "149,251,351,449,556,662,782,883"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3493,3592,3694,3794,3892,3999,4105,12652",
+ "endColumns": "98,101,99,97,106,105,119,100",
+ "endOffsets": "3587,3689,3789,3887,3994,4100,4220,12748"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-es.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-es.json
new file mode 100644
index 00000000..47f463bd
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-es.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-es/values-es.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-es/values-es.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,278,359,438,525,626,722,826,948,1029,1094,1189,1270,1333,1422,1486,1555,1618,1692,1756,1812,1930,1988,2050,2106,2186,2325,2414,2496,2637,2718,2798,2949,3039,3119,3175,3231,3297,3376,3458,3546,3635,3709,3786,3856,3935,4035,4119,4203,4295,4395,4469,4550,4652,4705,4790,4857,4950,5039,5101,5165,5228,5296,5409,5516,5620,5721,5781,5841",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,78,86,100,95,103,121,80,64,94,80,62,88,63,68,62,73,63,55,117,57,61,55,79,138,88,81,140,80,79,150,89,79,55,55,65,78,81,87,88,73,76,69,78,99,83,83,91,99,73,80,101,52,84,66,92,88,61,63,62,67,112,106,103,100,59,59,82",
+ "endOffsets": "273,354,433,520,621,717,821,943,1024,1089,1184,1265,1328,1417,1481,1550,1613,1687,1751,1807,1925,1983,2045,2101,2181,2320,2409,2491,2632,2713,2793,2944,3034,3114,3170,3226,3292,3371,3453,3541,3630,3704,3781,3851,3930,4030,4114,4198,4290,4390,4464,4545,4647,4700,4785,4852,4945,5034,5096,5160,5223,5291,5404,5511,5615,5716,5776,5836,5919"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3059,3140,3219,3306,3407,4235,4339,4461,7056,7217,7633,7714,7777,7866,7930,7999,8062,8136,8200,8256,8374,8432,8494,8550,8630,8769,8858,8940,9081,9162,9242,9393,9483,9563,9619,9675,9741,9820,9902,9990,10079,10153,10230,10300,10379,10479,10563,10647,10739,10839,10913,10994,11096,11149,11234,11301,11394,11483,11545,11609,11672,11740,11853,11960,12064,12165,12225,12366",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,78,86,100,95,103,121,80,64,94,80,62,88,63,68,62,73,63,55,117,57,61,55,79,138,88,81,140,80,79,150,89,79,55,55,65,78,81,87,88,73,76,69,78,99,83,83,91,99,73,80,101,52,84,66,92,88,61,63,62,67,112,106,103,100,59,59,82",
+ "endOffsets": "323,3135,3214,3301,3402,3498,4334,4456,4537,7116,7307,7709,7772,7861,7925,7994,8057,8131,8195,8251,8369,8427,8489,8545,8625,8764,8853,8935,9076,9157,9237,9388,9478,9558,9614,9670,9736,9815,9897,9985,10074,10148,10225,10295,10374,10474,10558,10642,10734,10834,10908,10989,11091,11144,11229,11296,11389,11478,11540,11604,11667,11735,11848,11955,12059,12160,12220,12280,12444"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-es/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,456,583,687,844,973,1091,1197,1385,1490,1651,1779,1940,2093,2156,2221",
+ "endColumns": "103,158,126,103,156,128,117,105,187,104,160,127,160,152,62,64,80",
+ "endOffsets": "296,455,582,686,843,972,1090,1196,1384,1489,1650,1778,1939,2092,2155,2220,2301"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4542,4650,4813,4944,5052,5213,5346,5468,5738,5930,6039,6204,6336,6501,6658,6725,6794",
+ "endColumns": "107,162,130,107,160,132,121,109,191,108,164,131,164,156,66,68,84",
+ "endOffsets": "4645,4808,4939,5047,5208,5341,5463,5573,5925,6034,6199,6331,6496,6653,6720,6789,6874"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-es/values-es.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,207,320,428,513,614,742,828,909,1001,1095,1192,1286,1386,1480,1576,1672,1764,1856,1938,2045,2156,2255,2363,2471,2578,2737,2836",
+ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82",
+ "endOffsets": "202,315,423,508,609,737,823,904,996,1090,1187,1281,1381,1475,1571,1667,1759,1851,1933,2040,2151,2250,2358,2466,2573,2732,2831,2914"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "328,430,543,651,736,837,965,1051,1132,1224,1318,1415,1509,1609,1703,1799,1895,1987,2079,2161,2268,2379,2478,2586,2694,2801,2960,12596",
+ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82",
+ "endOffsets": "425,538,646,731,832,960,1046,1127,1219,1313,1410,1504,1604,1698,1794,1890,1982,2074,2156,2263,2374,2473,2581,2689,2796,2955,3054,12674"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-es/values-es.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,271,352,499,668,756",
+ "endColumns": "69,95,80,146,168,87,81",
+ "endOffsets": "170,266,347,494,663,751,833"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6879,7121,12285,12449,12780,12949,13037",
+ "endColumns": "69,95,80,146,168,87,81",
+ "endOffsets": "6944,7212,12361,12591,12944,13032,13114"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-es/values-es.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,162,263,378",
+ "endColumns": "106,100,114,104",
+ "endOffsets": "157,258,373,478"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6949,7312,7413,7528",
+ "endColumns": "106,100,114,104",
+ "endOffsets": "7051,7408,7523,7628"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-es/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "155",
+ "endOffsets": "350"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5578",
+ "endColumns": "159",
+ "endOffsets": "5733"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-es/values-es.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,154,256,356,454,561,667,787",
+ "endColumns": "98,101,99,97,106,105,119,100",
+ "endOffsets": "149,251,351,449,556,662,782,883"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3503,3602,3704,3804,3902,4009,4115,12679",
+ "endColumns": "98,101,99,97,106,105,119,100",
+ "endOffsets": "3597,3699,3799,3897,4004,4110,4230,12775"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-et.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-et.json
new file mode 100644
index 00000000..65dc727f
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-et.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-et/values-et.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-et/values-et.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,252,350,453,559,664,784",
+ "endColumns": "94,101,97,102,105,104,119,100",
+ "endOffsets": "145,247,345,448,554,659,779,880"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3461,3556,3658,3756,3859,3965,4070,12294",
+ "endColumns": "94,101,97,102,105,104,119,100",
+ "endOffsets": "3551,3653,3751,3854,3960,4065,4185,12390"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-et/values-et.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,211,310,421,507,609,726,807,884,976,1070,1166,1268,1377,1471,1572,1666,1758,1851,1934,2045,2149,2248,2358,2460,2559,2725,2827",
+ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82",
+ "endOffsets": "206,305,416,502,604,721,802,879,971,1065,1161,1263,1372,1466,1567,1661,1753,1846,1929,2040,2144,2243,2353,2455,2554,2720,2822,2905"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "316,422,521,632,718,820,937,1018,1095,1187,1281,1377,1479,1588,1682,1783,1877,1969,2062,2145,2256,2360,2459,2569,2671,2770,2936,12211",
+ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82",
+ "endOffsets": "417,516,627,713,815,932,1013,1090,1182,1276,1372,1474,1583,1677,1778,1872,1964,2057,2140,2251,2355,2454,2564,2666,2765,2931,3033,12289"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-et/values-et.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,266,346,425,510,602,689,788,905,987,1051,1136,1204,1268,1355,1419,1483,1542,1614,1678,1732,1851,1911,1972,2026,2099,2232,2316,2409,2547,2627,2706,2832,2920,2999,3054,3105,3171,3244,3323,3409,3488,3561,3636,3710,3782,3895,3983,4060,4151,4243,4315,4389,4480,4534,4616,4685,4768,4854,4916,4980,5043,5111,5214,5317,5414,5515,5574,5629",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,79,78,84,91,86,98,116,81,63,84,67,63,86,63,63,58,71,63,53,118,59,60,53,72,132,83,92,137,79,78,125,87,78,54,50,65,72,78,85,78,72,74,73,71,112,87,76,90,91,71,73,90,53,81,68,82,85,61,63,62,67,102,102,96,100,58,54,80",
+ "endOffsets": "261,341,420,505,597,684,783,900,982,1046,1131,1199,1263,1350,1414,1478,1537,1609,1673,1727,1846,1906,1967,2021,2094,2227,2311,2404,2542,2622,2701,2827,2915,2994,3049,3100,3166,3239,3318,3404,3483,3556,3631,3705,3777,3890,3978,4055,4146,4238,4310,4384,4475,4529,4611,4680,4763,4849,4911,4975,5038,5106,5209,5312,5409,5510,5569,5624,5705"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3038,3118,3197,3282,3374,4190,4289,4406,6881,7032,7423,7491,7555,7642,7706,7770,7829,7901,7965,8019,8138,8198,8259,8313,8386,8519,8603,8696,8834,8914,8993,9119,9207,9286,9341,9392,9458,9531,9610,9696,9775,9848,9923,9997,10069,10182,10270,10347,10438,10530,10602,10676,10767,10821,10903,10972,11055,11141,11203,11267,11330,11398,11501,11604,11701,11802,11861,11992",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,79,78,84,91,86,98,116,81,63,84,67,63,86,63,63,58,71,63,53,118,59,60,53,72,132,83,92,137,79,78,125,87,78,54,50,65,72,78,85,78,72,74,73,71,112,87,76,90,91,71,73,90,53,81,68,82,85,61,63,62,67,102,102,96,100,58,54,80",
+ "endOffsets": "311,3113,3192,3277,3369,3456,4284,4401,4483,6940,7112,7486,7550,7637,7701,7765,7824,7896,7960,8014,8133,8193,8254,8308,8381,8514,8598,8691,8829,8909,8988,9114,9202,9281,9336,9387,9453,9526,9605,9691,9770,9843,9918,9992,10064,10177,10265,10342,10433,10525,10597,10671,10762,10816,10898,10967,11050,11136,11198,11262,11325,11393,11496,11599,11696,11797,11856,11911,12068"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-et/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,292,450,573,677,823,948,1060,1159,1315,1419,1579,1707,1858,1999,2058,2119",
+ "endColumns": "98,157,122,103,145,124,111,98,155,103,159,127,150,140,58,60,83",
+ "endOffsets": "291,449,572,676,822,947,1059,1158,1314,1418,1578,1706,1857,1998,2057,2118,2202"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4488,4591,4753,4880,4988,5138,5267,5383,5626,5786,5894,6058,6190,6345,6490,6553,6618",
+ "endColumns": "102,161,126,107,149,128,115,102,159,107,163,131,154,144,62,64,87",
+ "endOffsets": "4586,4748,4875,4983,5133,5262,5378,5481,5781,5889,6053,6185,6340,6485,6548,6613,6701"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-et/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "135",
+ "endOffsets": "330"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5486",
+ "endColumns": "139",
+ "endOffsets": "5621"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-et/values-et.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,180,267,343,481,650,733",
+ "endColumns": "74,86,75,137,168,82,77",
+ "endOffsets": "175,262,338,476,645,728,806"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6706,6945,11916,12073,12395,12564,12647",
+ "endColumns": "74,86,75,137,168,82,77",
+ "endOffsets": "6776,7027,11987,12206,12559,12642,12720"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-et/values-et.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,255,362",
+ "endColumns": "99,99,106,98",
+ "endOffsets": "150,250,357,456"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6781,7117,7217,7324",
+ "endColumns": "99,99,106,98",
+ "endOffsets": "6876,7212,7319,7418"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-eu.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-eu.json
new file mode 100644
index 00000000..c3645f74
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-eu.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-eu/values-eu.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-eu/values-eu.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,275,382,487,567,674,774,872,987,1070,1137,1236,1304,1365,1453,1516,1582,1646,1717,1780,1834,1943,2002,2065,2119,2193,2318,2408,2488,2633,2716,2798,2936,3027,3110,3162,3215,3281,3352,3432,3518,3598,3676,3754,3827,3902,4009,4096,4183,4274,4367,4439,4515,4607,4658,4740,4806,4890,4976,5038,5102,5165,5233,5340,5449,5545,5650,5706,5763",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,106,104,79,106,99,97,114,82,66,98,67,60,87,62,65,63,70,62,53,108,58,62,53,73,124,89,79,144,82,81,137,90,82,51,52,65,70,79,85,79,77,77,72,74,106,86,86,90,92,71,75,91,50,81,65,83,85,61,63,62,67,106,108,95,104,55,56,82",
+ "endOffsets": "270,377,482,562,669,769,867,982,1065,1132,1231,1299,1360,1448,1511,1577,1641,1712,1775,1829,1938,1997,2060,2114,2188,2313,2403,2483,2628,2711,2793,2931,3022,3105,3157,3210,3276,3347,3427,3513,3593,3671,3749,3822,3897,4004,4091,4178,4269,4362,4434,4510,4602,4653,4735,4801,4885,4971,5033,5097,5160,5228,5335,5444,5540,5645,5701,5758,5841"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3070,3177,3282,3362,3469,4300,4398,4513,7042,7208,7627,7695,7756,7844,7907,7973,8037,8108,8171,8225,8334,8393,8456,8510,8584,8709,8799,8879,9024,9107,9189,9327,9418,9501,9553,9606,9672,9743,9823,9909,9989,10067,10145,10218,10293,10400,10487,10574,10665,10758,10830,10906,10998,11049,11131,11197,11281,11367,11429,11493,11556,11624,11731,11840,11936,12041,12097,12233",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,106,104,79,106,99,97,114,82,66,98,67,60,87,62,65,63,70,62,53,108,58,62,53,73,124,89,79,144,82,81,137,90,82,51,52,65,70,79,85,79,77,77,72,74,106,86,86,90,92,71,75,91,50,81,65,83,85,61,63,62,67,106,108,95,104,55,56,82",
+ "endOffsets": "320,3172,3277,3357,3464,3564,4393,4508,4591,7104,7302,7690,7751,7839,7902,7968,8032,8103,8166,8220,8329,8388,8451,8505,8579,8704,8794,8874,9019,9102,9184,9322,9413,9496,9548,9601,9667,9738,9818,9904,9984,10062,10140,10213,10288,10395,10482,10569,10660,10753,10825,10901,10993,11044,11126,11192,11276,11362,11424,11488,11551,11619,11726,11835,11931,12036,12092,12149,12311"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-eu/values-eu.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,257,370",
+ "endColumns": "99,101,112,104",
+ "endOffsets": "150,252,365,470"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6942,7307,7409,7522",
+ "endColumns": "99,101,112,104",
+ "endOffsets": "7037,7404,7517,7622"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-eu/values-eu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,256,356,459,564,667,786",
+ "endColumns": "97,102,99,102,104,102,118,100",
+ "endOffsets": "148,251,351,454,559,662,781,882"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3569,3667,3770,3870,3973,4078,4181,12533",
+ "endColumns": "97,102,99,102,104,102,118,100",
+ "endOffsets": "3662,3765,3865,3968,4073,4176,4295,12629"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-eu/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,293,461,581,686,834,955,1075,1179,1353,1457,1616,1740,1890,2046,2108,2169",
+ "endColumns": "99,167,119,104,147,120,119,103,173,103,158,123,149,155,61,60,87",
+ "endOffsets": "292,460,580,685,833,954,1074,1178,1352,1456,1615,1739,1889,2045,2107,2168,2256"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4596,4700,4872,4996,5105,5257,5382,5506,5757,5935,6043,6206,6334,6488,6648,6714,6779",
+ "endColumns": "103,171,123,108,151,124,123,107,177,107,162,127,153,159,65,64,91",
+ "endOffsets": "4695,4867,4991,5100,5252,5377,5501,5609,5930,6038,6201,6329,6483,6643,6709,6774,6866"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-eu/values-eu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,214,312,422,508,614,738,824,905,997,1091,1187,1281,1382,1476,1572,1669,1761,1854,1936,2045,2154,2253,2362,2469,2580,2751,2850",
+ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82",
+ "endOffsets": "209,307,417,503,609,733,819,900,992,1086,1182,1276,1377,1471,1567,1664,1756,1849,1931,2040,2149,2248,2357,2464,2575,2746,2845,2928"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "325,434,532,642,728,834,958,1044,1125,1217,1311,1407,1501,1602,1696,1792,1889,1981,2074,2156,2265,2374,2473,2582,2689,2800,2971,12450",
+ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82",
+ "endOffsets": "429,527,637,723,829,953,1039,1120,1212,1306,1402,1496,1597,1691,1787,1884,1976,2069,2151,2260,2369,2468,2577,2684,2795,2966,3065,12528"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-eu/values-eu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,275,354,488,657,747",
+ "endColumns": "70,98,78,133,168,89,83",
+ "endOffsets": "171,270,349,483,652,742,826"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6871,7109,12154,12316,12634,12803,12893",
+ "endColumns": "70,98,78,133,168,89,83",
+ "endOffsets": "6937,7203,12228,12445,12798,12888,12972"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-eu/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "138",
+ "endOffsets": "333"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5614",
+ "endColumns": "142",
+ "endOffsets": "5752"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-fa.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-fa.json
new file mode 100644
index 00000000..92f56ede
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-fa.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-fa/values-fa.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-fa/values-fa.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,259,334,411,493,586,673,770,899,983,1046,1136,1205,1265,1356,1419,1483,1542,1609,1671,1726,1849,1907,1968,2023,2095,2232,2313,2395,2525,2599,2673,2805,2891,2968,3019,3073,3139,3210,3287,3368,3447,3520,3594,3664,3738,3839,3925,3999,4088,4180,4254,4327,4416,4467,4547,4614,4697,4781,4843,4907,4970,5039,5133,5234,5327,5425,5480,5538",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,74,76,81,92,86,96,128,83,62,89,68,59,90,62,63,58,66,61,54,122,57,60,54,71,136,80,81,129,73,73,131,85,76,50,53,65,70,76,80,78,72,73,69,73,100,85,73,88,91,73,72,88,50,79,66,82,83,61,63,62,68,93,100,92,97,54,57,77",
+ "endOffsets": "254,329,406,488,581,668,765,894,978,1041,1131,1200,1260,1351,1414,1478,1537,1604,1666,1721,1844,1902,1963,2018,2090,2227,2308,2390,2520,2594,2668,2800,2886,2963,3014,3068,3134,3205,3282,3363,3442,3515,3589,3659,3733,3834,3920,3994,4083,4175,4249,4322,4411,4462,4542,4609,4692,4776,4838,4902,4965,5034,5128,5229,5322,5420,5475,5533,5611"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2999,3074,3151,3233,3326,4137,4234,4363,6839,6988,7389,7458,7518,7609,7672,7736,7795,7862,7924,7979,8102,8160,8221,8276,8348,8485,8566,8648,8778,8852,8926,9058,9144,9221,9272,9326,9392,9463,9540,9621,9700,9773,9847,9917,9991,10092,10178,10252,10341,10433,10507,10580,10669,10720,10800,10867,10950,11034,11096,11160,11223,11292,11386,11487,11580,11678,11733,11868",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,74,76,81,92,86,96,128,83,62,89,68,59,90,62,63,58,66,61,54,122,57,60,54,71,136,80,81,129,73,73,131,85,76,50,53,65,70,76,80,78,72,73,69,73,100,85,73,88,91,73,72,88,50,79,66,82,83,61,63,62,68,93,100,92,97,54,57,77",
+ "endOffsets": "304,3069,3146,3228,3321,3408,4229,4358,4442,6897,7073,7453,7513,7604,7667,7731,7790,7857,7919,7974,8097,8155,8216,8271,8343,8480,8561,8643,8773,8847,8921,9053,9139,9216,9267,9321,9387,9458,9535,9616,9695,9768,9842,9912,9986,10087,10173,10247,10336,10428,10502,10575,10664,10715,10795,10862,10945,11029,11091,11155,11218,11287,11381,11482,11575,11673,11728,11786,11941"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-fa/values-fa.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,172,258,335,467,636,718",
+ "endColumns": "66,85,76,131,168,81,77",
+ "endOffsets": "167,253,330,462,631,713,791"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6673,6902,11791,11946,12261,12430,12512",
+ "endColumns": "66,85,76,131,168,81,77",
+ "endOffsets": "6735,6983,11863,12073,12425,12507,12585"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-fa/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,450,575,674,810,932,1042,1140,1289,1395,1561,1688,1837,1989,2051,2115",
+ "endColumns": "103,152,124,98,135,121,109,97,148,105,165,126,148,151,61,63,80",
+ "endOffsets": "296,449,574,673,809,931,1041,1139,1288,1394,1560,1687,1836,1988,2050,2114,2195"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4447,4555,4712,4841,4944,5084,5210,5324,5581,5734,5844,6014,6145,6298,6454,6520,6588",
+ "endColumns": "107,156,128,102,139,125,113,101,152,109,169,130,152,155,65,67,84",
+ "endOffsets": "4550,4707,4836,4939,5079,5205,5319,5421,5729,5839,6009,6140,6293,6449,6515,6583,6668"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-fa/values-fa.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,154,251,362",
+ "endColumns": "98,96,110,102",
+ "endOffsets": "149,246,357,460"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6740,7078,7175,7286",
+ "endColumns": "98,96,110,102",
+ "endOffsets": "6834,7170,7281,7384"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-fa/values-fa.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,154,256,355,455,556,662,779",
+ "endColumns": "98,101,98,99,100,105,116,100",
+ "endOffsets": "149,251,350,450,551,657,774,875"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3413,3512,3614,3713,3813,3914,4020,12160",
+ "endColumns": "98,101,98,99,100,105,116,100",
+ "endOffsets": "3507,3609,3708,3808,3909,4015,4132,12256"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-fa/values-fa.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,215,316,427,511,612,727,807,884,977,1072,1164,1258,1360,1455,1552,1646,1739,1829,1911,2019,2123,2221,2327,2432,2537,2694,2795",
+ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81",
+ "endOffsets": "210,311,422,506,607,722,802,879,972,1067,1159,1253,1355,1450,1547,1641,1734,1824,1906,2014,2118,2216,2322,2427,2532,2689,2790,2872"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "309,419,520,631,715,816,931,1011,1088,1181,1276,1368,1462,1564,1659,1756,1850,1943,2033,2115,2223,2327,2425,2531,2636,2741,2898,12078",
+ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81",
+ "endOffsets": "414,515,626,710,811,926,1006,1083,1176,1271,1363,1457,1559,1654,1751,1845,1938,2028,2110,2218,2322,2420,2526,2631,2736,2893,2994,12155"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-fa/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "150",
+ "endOffsets": "345"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5426",
+ "endColumns": "154",
+ "endOffsets": "5576"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-fi.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-fi.json
new file mode 100644
index 00000000..49a3d688
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-fi.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-fi/values-fi.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-fi/values-fi.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,158,259,368",
+ "endColumns": "102,100,108,98",
+ "endOffsets": "153,254,363,462"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6655,7008,7109,7218",
+ "endColumns": "102,100,108,98",
+ "endOffsets": "6753,7104,7213,7312"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-fi/values-fi.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,268,344,418,501,590,672,768,876,960,1025,1118,1193,1258,1346,1411,1477,1535,1606,1672,1726,1836,1896,1960,2014,2087,2203,2287,2368,2501,2586,2671,2804,2894,2968,3020,3071,3137,3214,3296,3380,3454,3528,3607,3684,3756,3863,3952,4028,4119,4214,4288,4361,4455,4509,4583,4655,4741,4827,4889,4953,5016,5087,5188,5291,5386,5486,5542,5597",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,75,73,82,88,81,95,107,83,64,92,74,64,87,64,65,57,70,65,53,109,59,63,53,72,115,83,80,132,84,84,132,89,73,51,50,65,76,81,83,73,73,78,76,71,106,88,75,90,94,73,72,93,53,73,71,85,85,61,63,62,70,100,102,94,99,55,54,78",
+ "endOffsets": "263,339,413,496,585,667,763,871,955,1020,1113,1188,1253,1341,1406,1472,1530,1601,1667,1721,1831,1891,1955,2009,2082,2198,2282,2363,2496,2581,2666,2799,2889,2963,3015,3066,3132,3209,3291,3375,3449,3523,3602,3679,3751,3858,3947,4023,4114,4209,4283,4356,4450,4504,4578,4650,4736,4822,4884,4948,5011,5082,5183,5286,5381,5481,5537,5592,5671"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2988,3064,3138,3221,3310,4126,4222,4330,6758,6915,7317,7392,7457,7545,7610,7676,7734,7805,7871,7925,8035,8095,8159,8213,8286,8402,8486,8567,8700,8785,8870,9003,9093,9167,9219,9270,9336,9413,9495,9579,9653,9727,9806,9883,9955,10062,10151,10227,10318,10413,10487,10560,10654,10708,10782,10854,10940,11026,11088,11152,11215,11286,11387,11490,11585,11685,11741,11874",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,75,73,82,88,81,95,107,83,64,92,74,64,87,64,65,57,70,65,53,109,59,63,53,72,115,83,80,132,84,84,132,89,73,51,50,65,76,81,83,73,73,78,76,71,106,88,75,90,94,73,72,93,53,73,71,85,85,61,63,62,70,100,102,94,99,55,54,78",
+ "endOffsets": "313,3059,3133,3216,3305,3387,4217,4325,4409,6818,7003,7387,7452,7540,7605,7671,7729,7800,7866,7920,8030,8090,8154,8208,8281,8397,8481,8562,8695,8780,8865,8998,9088,9162,9214,9265,9331,9408,9490,9574,9648,9722,9801,9878,9950,10057,10146,10222,10313,10408,10482,10555,10649,10703,10777,10849,10935,11021,11083,11147,11210,11281,11382,11485,11580,11680,11736,11791,11948"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-fi/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,449,576,678,817,939,1051,1154,1291,1393,1538,1660,1804,1939,2001,2067",
+ "endColumns": "106,148,126,101,138,121,111,102,136,101,144,121,143,134,61,65,78",
+ "endOffsets": "299,448,575,677,816,938,1050,1153,1290,1392,1537,1659,1803,1938,2000,2066,2145"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4414,4525,4678,4809,4915,5058,5184,5300,5557,5698,5804,5953,6079,6227,6366,6432,6502",
+ "endColumns": "110,152,130,105,142,125,115,106,140,105,148,125,147,138,65,69,82",
+ "endOffsets": "4520,4673,4804,4910,5053,5179,5295,5402,5693,5799,5948,6074,6222,6361,6427,6497,6580"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-fi/values-fi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,313,422,508,613,731,817,896,987,1080,1175,1269,1363,1456,1552,1651,1742,1836,1916,2023,2124,2221,2327,2427,2525,2675,2775",
+ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80",
+ "endOffsets": "208,308,417,503,608,726,812,891,982,1075,1170,1264,1358,1451,1547,1646,1737,1831,1911,2018,2119,2216,2322,2422,2520,2670,2770,2851"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "318,426,526,635,721,826,944,1030,1109,1200,1293,1388,1482,1576,1669,1765,1864,1955,2049,2129,2236,2337,2434,2540,2640,2738,2888,12088",
+ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80",
+ "endOffsets": "421,521,630,716,821,939,1025,1104,1195,1288,1383,1477,1571,1664,1760,1859,1950,2044,2124,2231,2332,2429,2535,2635,2733,2883,2983,12164"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-fi/values-fi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,267,345,480,649,739",
+ "endColumns": "69,91,77,134,168,89,81",
+ "endOffsets": "170,262,340,475,644,734,816"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6585,6823,11796,11953,12270,12439,12529",
+ "endColumns": "69,91,77,134,168,89,81",
+ "endOffsets": "6650,6910,11869,12083,12434,12524,12606"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-fi/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "145",
+ "endOffsets": "340"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5407",
+ "endColumns": "149",
+ "endOffsets": "5552"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-fi/values-fi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,351,456,561,673,789",
+ "endColumns": "95,101,97,104,104,111,115,100",
+ "endOffsets": "146,248,346,451,556,668,784,885"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3392,3488,3590,3688,3793,3898,4010,12169",
+ "endColumns": "95,101,97,104,104,111,115,100",
+ "endOffsets": "3483,3585,3683,3788,3893,4005,4121,12265"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-fr-rCA.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-fr-rCA.json
new file mode 100644
index 00000000..f1ac81d2
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-fr-rCA.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-fr-rCA/values-fr-rCA.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-fr-rCA/values-fr-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,354,456,560,664,778",
+ "endColumns": "97,101,98,101,103,103,113,100",
+ "endOffsets": "148,250,349,451,555,659,773,874"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3578,3676,3778,3877,3979,4083,4187,12821",
+ "endColumns": "97,101,98,101,103,103,113,100",
+ "endOffsets": "3671,3773,3872,3974,4078,4182,4296,12917"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,216,323,433,520,626,756,841,921,1012,1105,1203,1298,1398,1491,1584,1679,1770,1861,1947,2057,2168,2271,2382,2490,2597,2756,2855",
+ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86",
+ "endOffsets": "211,318,428,515,621,751,836,916,1007,1100,1198,1293,1393,1486,1579,1674,1765,1856,1942,2052,2163,2266,2377,2485,2592,2751,2850,2937"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "333,444,551,661,748,854,984,1069,1149,1240,1333,1431,1526,1626,1719,1812,1907,1998,2089,2175,2285,2396,2499,2610,2718,2825,2984,12734",
+ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86",
+ "endOffsets": "439,546,656,743,849,979,1064,1144,1235,1328,1426,1521,1621,1714,1807,1902,1993,2084,2170,2280,2391,2494,2605,2713,2820,2979,3078,12816"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-fr-rCA/values-fr-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,162,264,383",
+ "endColumns": "106,101,118,104",
+ "endOffsets": "157,259,378,483"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7090,7457,7559,7678",
+ "endColumns": "106,101,118,104",
+ "endOffsets": "7192,7554,7673,7778"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-fr-rCA/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,299,475,601,706,873,1002,1119,1228,1419,1527,1708,1840,1996,2171,2240,2300",
+ "endColumns": "101,175,125,104,166,128,116,108,190,107,180,131,155,174,68,59,79",
+ "endOffsets": "298,474,600,705,872,1001,1118,1227,1418,1526,1707,1839,1995,2170,2239,2299,2379"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4608,4714,4894,5024,5133,5304,5437,5558,5832,6027,6139,6324,6460,6620,6799,6872,6936",
+ "endColumns": "105,179,129,108,170,132,120,112,194,111,184,135,159,178,72,63,83",
+ "endOffsets": "4709,4889,5019,5128,5299,5432,5553,5666,6022,6134,6319,6455,6615,6794,6867,6931,7015"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-fr-rCA/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "156",
+ "endOffsets": "355"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5671",
+ "endColumns": "160",
+ "endOffsets": "5827"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-fr-rCA/values-fr-rCA.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,283,390,498,580,681,778,878,1000,1085,1151,1248,1328,1390,1482,1549,1623,1684,1763,1827,1881,1997,2056,2118,2172,2254,2383,2475,2559,2703,2782,2863,3010,3103,3182,3237,3288,3354,3433,3514,3605,3685,3757,3835,3910,3982,4093,4190,4267,4365,4463,4541,4622,4722,4779,4863,4929,5012,5099,5161,5225,5288,5364,5466,5573,5670,5776,5835,5890",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,106,107,81,100,96,99,121,84,65,96,79,61,91,66,73,60,78,63,53,115,58,61,53,81,128,91,83,143,78,80,146,92,78,54,50,65,78,80,90,79,71,77,74,71,110,96,76,97,97,77,80,99,56,83,65,82,86,61,63,62,75,101,106,96,105,58,54,88",
+ "endOffsets": "278,385,493,575,676,773,873,995,1080,1146,1243,1323,1385,1477,1544,1618,1679,1758,1822,1876,1992,2051,2113,2167,2249,2378,2470,2554,2698,2777,2858,3005,3098,3177,3232,3283,3349,3428,3509,3600,3680,3752,3830,3905,3977,4088,4185,4262,4360,4458,4536,4617,4717,4774,4858,4924,5007,5094,5156,5220,5283,5359,5461,5568,5665,5771,5830,5885,5974"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3083,3190,3298,3380,3481,4301,4401,4523,7197,7360,7783,7863,7925,8017,8084,8158,8219,8298,8362,8416,8532,8591,8653,8707,8789,8918,9010,9094,9238,9317,9398,9545,9638,9717,9772,9823,9889,9968,10049,10140,10220,10292,10370,10445,10517,10628,10725,10802,10900,10998,11076,11157,11257,11314,11398,11464,11547,11634,11696,11760,11823,11899,12001,12108,12205,12311,12370,12502",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,106,107,81,100,96,99,121,84,65,96,79,61,91,66,73,60,78,63,53,115,58,61,53,81,128,91,83,143,78,80,146,92,78,54,50,65,78,80,90,79,71,77,74,71,110,96,76,97,97,77,80,99,56,83,65,82,86,61,63,62,75,101,106,96,105,58,54,88",
+ "endOffsets": "328,3185,3293,3375,3476,3573,4396,4518,4603,7258,7452,7858,7920,8012,8079,8153,8214,8293,8357,8411,8527,8586,8648,8702,8784,8913,9005,9089,9233,9312,9393,9540,9633,9712,9767,9818,9884,9963,10044,10135,10215,10287,10365,10440,10512,10623,10720,10797,10895,10993,11071,11152,11252,11309,11393,11459,11542,11629,11691,11755,11818,11894,11996,12103,12200,12306,12365,12420,12586"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-fr-rCA/values-fr-rCA.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,272,349,492,661,747",
+ "endColumns": "69,96,76,142,168,85,79",
+ "endOffsets": "170,267,344,487,656,742,822"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "7020,7263,12425,12591,12922,13091,13177",
+ "endColumns": "69,96,76,142,168,85,79",
+ "endOffsets": "7085,7355,12497,12729,13086,13172,13252"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-fr.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-fr.json
new file mode 100644
index 00000000..28a5bd64
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-fr.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-fr/values-fr.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-fr/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,471,597,702,869,998,1115,1224,1398,1506,1687,1819,1975,2150,2219,2282",
+ "endColumns": "101,175,125,104,166,128,116,108,173,107,180,131,155,174,68,62,79",
+ "endOffsets": "294,470,596,701,868,997,1114,1223,1397,1505,1686,1818,1974,2149,2218,2281,2361"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4563,4669,4849,4979,5088,5259,5392,5513,5791,5969,6081,6266,6402,6562,6741,6814,6881",
+ "endColumns": "105,179,129,108,170,132,120,112,177,111,184,135,159,178,72,66,83",
+ "endOffsets": "4664,4844,4974,5083,5254,5387,5508,5621,5964,6076,6261,6397,6557,6736,6809,6876,6960"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-fr/values-fr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,216,331,441,523,629,759,837,913,1004,1097,1195,1290,1390,1483,1576,1671,1762,1853,1939,2049,2160,2263,2374,2482,2589,2748,2847",
+ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86",
+ "endOffsets": "211,326,436,518,624,754,832,908,999,1092,1190,1285,1385,1478,1571,1666,1757,1848,1934,2044,2155,2258,2369,2477,2584,2743,2842,2929"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "333,444,559,669,751,857,987,1065,1141,1232,1325,1423,1518,1618,1711,1804,1899,1990,2081,2167,2277,2388,2491,2602,2710,2817,2976,12672",
+ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86",
+ "endOffsets": "439,554,664,746,852,982,1060,1136,1227,1320,1418,1513,1613,1706,1799,1894,1985,2076,2162,2272,2383,2486,2597,2705,2812,2971,3070,12754"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-fr/values-fr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,354,456,560,664,782",
+ "endColumns": "97,101,98,101,103,103,117,100",
+ "endOffsets": "148,250,349,451,555,659,777,878"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3523,3621,3723,3822,3924,4028,4132,12759",
+ "endColumns": "97,101,98,101,103,103,117,100",
+ "endOffsets": "3616,3718,3817,3919,4023,4127,4245,12855"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-fr/values-fr.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,162,264,383",
+ "endColumns": "106,101,118,104",
+ "endOffsets": "157,259,378,483"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7035,7402,7504,7623",
+ "endColumns": "106,101,118,104",
+ "endOffsets": "7137,7499,7618,7723"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-fr/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "160",
+ "endOffsets": "355"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5626",
+ "endColumns": "164",
+ "endOffsets": "5786"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-fr/values-fr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,272,350,492,661,747",
+ "endColumns": "69,96,77,141,168,85,79",
+ "endOffsets": "170,267,345,487,656,742,822"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6965,7208,12363,12530,12860,13029,13115",
+ "endColumns": "69,96,77,141,168,85,79",
+ "endOffsets": "7030,7300,12436,12667,13024,13110,13190"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-fr/values-fr.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,283,363,444,527,636,731,829,959,1044,1110,1207,1290,1356,1458,1523,1598,1654,1733,1793,1847,1969,2028,2090,2144,2226,2361,2453,2537,2681,2760,2841,2982,3075,3154,3209,3260,3326,3406,3487,3590,3670,3743,3821,3894,3966,4078,4171,4243,4335,4427,4501,4585,4677,4734,4818,4884,4967,5054,5116,5180,5243,5321,5423,5527,5624,5728,5787,5842",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,79,80,82,108,94,97,129,84,65,96,82,65,101,64,74,55,78,59,53,121,58,61,53,81,134,91,83,143,78,80,140,92,78,54,50,65,79,80,102,79,72,77,72,71,111,92,71,91,91,73,83,91,56,83,65,82,86,61,63,62,77,101,103,96,103,58,54,88",
+ "endOffsets": "278,358,439,522,631,726,824,954,1039,1105,1202,1285,1351,1453,1518,1593,1649,1728,1788,1842,1964,2023,2085,2139,2221,2356,2448,2532,2676,2755,2836,2977,3070,3149,3204,3255,3321,3401,3482,3585,3665,3738,3816,3889,3961,4073,4166,4238,4330,4422,4496,4580,4672,4729,4813,4879,4962,5049,5111,5175,5238,5316,5418,5522,5619,5723,5782,5837,5926"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3075,3155,3236,3319,3428,4250,4348,4478,7142,7305,7728,7811,7877,7979,8044,8119,8175,8254,8314,8368,8490,8549,8611,8665,8747,8882,8974,9058,9202,9281,9362,9503,9596,9675,9730,9781,9847,9927,10008,10111,10191,10264,10342,10415,10487,10599,10692,10764,10856,10948,11022,11106,11198,11255,11339,11405,11488,11575,11637,11701,11764,11842,11944,12048,12145,12249,12308,12441",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,79,80,82,108,94,97,129,84,65,96,82,65,101,64,74,55,78,59,53,121,58,61,53,81,134,91,83,143,78,80,140,92,78,54,50,65,79,80,102,79,72,77,72,71,111,92,71,91,91,73,83,91,56,83,65,82,86,61,63,62,77,101,103,96,103,58,54,88",
+ "endOffsets": "328,3150,3231,3314,3423,3518,4343,4473,4558,7203,7397,7806,7872,7974,8039,8114,8170,8249,8309,8363,8485,8544,8606,8660,8742,8877,8969,9053,9197,9276,9357,9498,9591,9670,9725,9776,9842,9922,10003,10106,10186,10259,10337,10410,10482,10594,10687,10759,10851,10943,11017,11101,11193,11250,11334,11400,11483,11570,11632,11696,11759,11837,11939,12043,12140,12244,12303,12358,12525"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-gl.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-gl.json
new file mode 100644
index 00000000..72d39210
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-gl.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-gl/values-gl.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-gl/values-gl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,276,357,495,664,752",
+ "endColumns": "69,100,80,137,168,87,81",
+ "endOffsets": "170,271,352,490,659,747,829"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6846,7101,12308,12474,12796,12965,13053",
+ "endColumns": "69,100,80,137,168,87,81",
+ "endOffsets": "6911,7197,12384,12607,12960,13048,13130"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-gl/values-gl.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,275,356,436,521,623,719,824,957,1037,1115,1211,1290,1353,1448,1512,1581,1644,1718,1782,1838,1959,2017,2079,2135,2212,2351,2439,2519,2659,2739,2819,2968,3058,3139,3195,3251,3317,3396,3477,3565,3653,3732,3809,3891,3980,4081,4165,4257,4350,4451,4525,4617,4719,4771,4855,4921,5013,5101,5163,5227,5290,5360,5471,5576,5682,5781,5841,5901",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,79,84,101,95,104,132,79,77,95,78,62,94,63,68,62,73,63,55,120,57,61,55,76,138,87,79,139,79,79,148,89,80,55,55,65,78,80,87,87,78,76,81,88,100,83,91,92,100,73,91,101,51,83,65,91,87,61,63,62,69,110,104,105,98,59,59,84",
+ "endOffsets": "270,351,431,516,618,714,819,952,1032,1110,1206,1285,1348,1443,1507,1576,1639,1713,1777,1833,1954,2012,2074,2130,2207,2346,2434,2514,2654,2734,2814,2963,3053,3134,3190,3246,3312,3391,3472,3560,3648,3727,3804,3886,3975,4076,4160,4252,4345,4446,4520,4612,4714,4766,4850,4916,5008,5096,5158,5222,5285,5355,5466,5571,5677,5776,5836,5896,5981"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3075,3156,3236,3321,3423,4247,4352,4485,7023,7202,7618,7697,7760,7855,7919,7988,8051,8125,8189,8245,8366,8424,8486,8542,8619,8758,8846,8926,9066,9146,9226,9375,9465,9546,9602,9658,9724,9803,9884,9972,10060,10139,10216,10298,10387,10488,10572,10664,10757,10858,10932,11024,11126,11178,11262,11328,11420,11508,11570,11634,11697,11767,11878,11983,12089,12188,12248,12389",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,79,84,101,95,104,132,79,77,95,78,62,94,63,68,62,73,63,55,120,57,61,55,76,138,87,79,139,79,79,148,89,80,55,55,65,78,80,87,87,78,76,81,88,100,83,91,92,100,73,91,101,51,83,65,91,87,61,63,62,69,110,104,105,98,59,59,84",
+ "endOffsets": "320,3151,3231,3316,3418,3514,4347,4480,4560,7096,7293,7692,7755,7850,7914,7983,8046,8120,8184,8240,8361,8419,8481,8537,8614,8753,8841,8921,9061,9141,9221,9370,9460,9541,9597,9653,9719,9798,9879,9967,10055,10134,10211,10293,10382,10483,10567,10659,10752,10853,10927,11019,11121,11173,11257,11323,11415,11503,11565,11629,11692,11762,11873,11978,12084,12183,12243,12303,12469"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-gl/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "129",
+ "endOffsets": "324"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5590",
+ "endColumns": "133",
+ "endOffsets": "5719"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-gl/values-gl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,209,313,421,506,607,735,821,902,994,1088,1185,1279,1379,1473,1569,1664,1756,1848,1929,2037,2144,2251,2360,2465,2579,2756,2855",
+ "endColumns": "103,103,107,84,100,127,85,80,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82",
+ "endOffsets": "204,308,416,501,602,730,816,897,989,1083,1180,1274,1374,1468,1564,1659,1751,1843,1924,2032,2139,2246,2355,2460,2574,2751,2850,2933"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "325,429,533,641,726,827,955,1041,1122,1214,1308,1405,1499,1599,1693,1789,1884,1976,2068,2149,2257,2364,2471,2580,2685,2799,2976,12612",
+ "endColumns": "103,103,107,84,100,127,85,80,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82",
+ "endOffsets": "424,528,636,721,822,950,1036,1117,1209,1303,1400,1494,1594,1688,1784,1879,1971,2063,2144,2252,2359,2466,2575,2680,2794,2971,3070,12690"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-gl/values-gl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,154,256,356,454,561,667,783",
+ "endColumns": "98,101,99,97,106,105,115,100",
+ "endOffsets": "149,251,351,449,556,662,778,879"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3519,3618,3720,3820,3918,4025,4131,12695",
+ "endColumns": "98,101,99,97,106,105,115,100",
+ "endOffsets": "3613,3715,3815,3913,4020,4126,4242,12791"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-gl/values-gl.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,162,264,376",
+ "endColumns": "106,101,111,105",
+ "endOffsets": "157,259,371,477"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6916,7298,7400,7512",
+ "endColumns": "106,101,111,105",
+ "endOffsets": "7018,7395,7507,7613"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-gl/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,454,579,683,838,966,1081,1186,1353,1458,1623,1754,1915,2063,2126,2191",
+ "endColumns": "101,158,124,103,154,127,114,104,166,104,164,130,160,147,62,64,80",
+ "endOffsets": "294,453,578,682,837,965,1080,1185,1352,1457,1622,1753,1914,2062,2125,2190,2271"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4565,4671,4834,4963,5071,5230,5362,5481,5724,5895,6004,6173,6308,6473,6625,6692,6761",
+ "endColumns": "105,162,128,107,158,131,118,108,170,108,168,134,164,151,66,68,84",
+ "endOffsets": "4666,4829,4958,5066,5225,5357,5476,5585,5890,5999,6168,6303,6468,6620,6687,6756,6841"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-gu.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-gu.json
new file mode 100644
index 00000000..1a4df1e4
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-gu.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-gu/values-gu.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-gu/values-gu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,263,344,486,655,739",
+ "endColumns": "71,85,80,141,168,83,81",
+ "endOffsets": "172,258,339,481,650,734,816"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6630,6866,11847,12006,12330,12499,12583",
+ "endColumns": "71,85,80,141,168,83,81",
+ "endOffsets": "6697,6947,11923,12143,12494,12578,12660"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-gu/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "142",
+ "endOffsets": "337"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5436",
+ "endColumns": "146",
+ "endOffsets": "5578"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-gu/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,459,580,688,822,940,1047,1143,1287,1391,1551,1672,1811,1957,2014,2076",
+ "endColumns": "103,161,120,107,133,117,106,95,143,103,159,120,138,145,56,61,77",
+ "endOffsets": "296,458,579,687,821,939,1046,1142,1286,1390,1550,1671,1810,1956,2013,2075,2153"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4454,4562,4728,4853,4965,5103,5225,5336,5583,5731,5839,6003,6128,6271,6421,6482,6548",
+ "endColumns": "107,165,124,111,137,121,110,99,147,107,163,124,142,149,60,65,81",
+ "endOffsets": "4557,4723,4848,4960,5098,5220,5331,5431,5726,5834,5998,6123,6266,6416,6477,6543,6625"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-gu/values-gu.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,156,257,366",
+ "endColumns": "100,100,108,100",
+ "endOffsets": "151,252,361,462"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6702,7043,7144,7253",
+ "endColumns": "100,100,108,100",
+ "endOffsets": "6798,7139,7248,7349"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-gu/values-gu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,316,423,510,610,730,808,885,976,1069,1164,1258,1358,1451,1546,1640,1731,1822,1902,2008,2109,2206,2315,2415,2525,2685,2788",
+ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80",
+ "endOffsets": "207,311,418,505,605,725,803,880,971,1064,1159,1253,1353,1446,1541,1635,1726,1817,1897,2003,2104,2201,2310,2410,2520,2680,2783,2864"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "318,425,529,636,723,823,943,1021,1098,1189,1282,1377,1471,1571,1664,1759,1853,1944,2035,2115,2221,2322,2419,2528,2628,2738,2898,12148",
+ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80",
+ "endOffsets": "420,524,631,718,818,938,1016,1093,1184,1277,1372,1466,1566,1659,1754,1848,1939,2030,2110,2216,2317,2414,2523,2623,2733,2893,2996,12224"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-gu/values-gu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,149,252,349,451,553,651,773",
+ "endColumns": "93,102,96,101,101,97,121,100",
+ "endOffsets": "144,247,344,446,548,646,768,869"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3433,3527,3630,3727,3829,3931,4029,12229",
+ "endColumns": "93,102,96,101,101,97,121,100",
+ "endOffsets": "3522,3625,3722,3824,3926,4024,4146,12325"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-gu/values-gu.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,268,342,414,496,602,700,799,919,1003,1066,1157,1224,1283,1373,1436,1501,1565,1634,1696,1750,1865,1923,1984,2038,2111,2238,2324,2408,2541,2616,2692,2825,2911,2992,3046,3098,3164,3237,3317,3402,3482,3553,3629,3708,3777,3884,3980,4058,4153,4249,4323,4398,4497,4548,4630,4697,4784,4874,4936,5000,5063,5130,5232,5337,5434,5536,5594,5650",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,73,71,81,105,97,98,119,83,62,90,66,58,89,62,64,63,68,61,53,114,57,60,53,72,126,85,83,132,74,75,132,85,80,53,51,65,72,79,84,79,70,75,78,68,106,95,77,94,95,73,74,98,50,81,66,86,89,61,63,62,66,101,104,96,101,57,55,77",
+ "endOffsets": "263,337,409,491,597,695,794,914,998,1061,1152,1219,1278,1368,1431,1496,1560,1629,1691,1745,1860,1918,1979,2033,2106,2233,2319,2403,2536,2611,2687,2820,2906,2987,3041,3093,3159,3232,3312,3397,3477,3548,3624,3703,3772,3879,3975,4053,4148,4244,4318,4393,4492,4543,4625,4692,4779,4869,4931,4995,5058,5125,5227,5332,5429,5531,5589,5645,5723"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3001,3075,3147,3229,3335,4151,4250,4370,6803,6952,7354,7421,7480,7570,7633,7698,7762,7831,7893,7947,8062,8120,8181,8235,8308,8435,8521,8605,8738,8813,8889,9022,9108,9189,9243,9295,9361,9434,9514,9599,9679,9750,9826,9905,9974,10081,10177,10255,10350,10446,10520,10595,10694,10745,10827,10894,10981,11071,11133,11197,11260,11327,11429,11534,11631,11733,11791,11928",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,73,71,81,105,97,98,119,83,62,90,66,58,89,62,64,63,68,61,53,114,57,60,53,72,126,85,83,132,74,75,132,85,80,53,51,65,72,79,84,79,70,75,78,68,106,95,77,94,95,73,74,98,50,81,66,86,89,61,63,62,66,101,104,96,101,57,55,77",
+ "endOffsets": "313,3070,3142,3224,3330,3428,4245,4365,4449,6861,7038,7416,7475,7565,7628,7693,7757,7826,7888,7942,8057,8115,8176,8230,8303,8430,8516,8600,8733,8808,8884,9017,9103,9184,9238,9290,9356,9429,9509,9594,9674,9745,9821,9900,9969,10076,10172,10250,10345,10441,10515,10590,10689,10740,10822,10889,10976,11066,11128,11192,11255,11322,11424,11529,11626,11728,11786,11842,12001"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h320dp-port-v13.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h320dp-port-v13.json
new file mode 100644
index 00000000..6dadec86
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h320dp-port-v13.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-h320dp-port-v13/values-h320dp-port-v13.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-h320dp-port-v13/values-h320dp-port-v13.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "63",
+ "endOffsets": "114"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h360dp-land-v13.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h360dp-land-v13.json
new file mode 100644
index 00000000..e7168037
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h360dp-land-v13.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-h360dp-land-v13/values-h360dp-land-v13.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-h360dp-land-v13/values-h360dp-land-v13.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,114,170,226,293,358,413,478,547",
+ "endColumns": "58,55,55,66,64,54,64,68,68",
+ "endOffsets": "109,165,221,288,353,408,473,542,611"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h480dp-land-v13.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h480dp-land-v13.json
new file mode 100644
index 00000000..ab64eaf4
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h480dp-land-v13.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-h480dp-land-v13/values-h480dp-land-v13.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-h480dp-land-v13/values-h480dp-land-v13.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,114,170,226,293,358,413,478,547",
+ "endColumns": "58,55,55,66,64,54,64,68,68",
+ "endOffsets": "109,165,221,288,353,408,473,542,611"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h550dp-port-v13.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h550dp-port-v13.json
new file mode 100644
index 00000000..43a24b83
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h550dp-port-v13.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-h550dp-port-v13/values-h550dp-port-v13.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-h550dp-port-v13/values-h550dp-port-v13.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "64",
+ "endOffsets": "115"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h720dp-v13.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h720dp-v13.json
new file mode 100644
index 00000000..848e4da6
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-h720dp-v13.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-h720dp-v13/values-h720dp-v13.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-h720dp-v13/values-h720dp-v13.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "66",
+ "endOffsets": "117"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hdpi-v4.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hdpi-v4.json
new file mode 100644
index 00000000..43bca7db
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hdpi-v4.json
@@ -0,0 +1,20 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-hdpi-v4/values-hdpi-v4.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-hdpi-v4/values-hdpi-v4.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "6",
+ "endColumns": "13",
+ "endOffsets": "327"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hi.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hi.json
new file mode 100644
index 00000000..05b6e5a6
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hi.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-hi/values-hi.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-hi/values-hi.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,259,337,413,494,601,697,804,936,1019,1084,1178,1247,1306,1391,1454,1517,1575,1640,1701,1762,1868,1926,1986,2045,2115,2231,2310,2390,2524,2599,2675,2812,2909,3007,3064,3119,3185,3255,3332,3418,3503,3571,3647,3728,3806,3907,3993,4080,4177,4276,4350,4420,4524,4578,4665,4732,4822,4914,4976,5040,5103,5169,5274,5384,5485,5592,5653,5712",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,75,80,106,95,106,131,82,64,93,68,58,84,62,62,57,64,60,60,105,57,59,58,69,115,78,79,133,74,75,136,96,97,56,54,65,69,76,85,84,67,75,80,77,100,85,86,96,98,73,69,103,53,86,66,89,91,61,63,62,65,104,109,100,106,60,58,78",
+ "endOffsets": "254,332,408,489,596,692,799,931,1014,1079,1173,1242,1301,1386,1449,1512,1570,1635,1696,1757,1863,1921,1981,2040,2110,2226,2305,2385,2519,2594,2670,2807,2904,3002,3059,3114,3180,3250,3327,3413,3498,3566,3642,3723,3801,3902,3988,4075,4172,4271,4345,4415,4519,4573,4660,4727,4817,4909,4971,5035,5098,5164,5269,5379,5480,5587,5648,5707,5786"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2991,3069,3145,3226,3333,4182,4289,4421,6914,7070,7481,7550,7609,7694,7757,7820,7878,7943,8004,8065,8171,8229,8289,8348,8418,8534,8613,8693,8827,8902,8978,9115,9212,9310,9367,9422,9488,9558,9635,9721,9806,9874,9950,10031,10109,10210,10296,10383,10480,10579,10653,10723,10827,10881,10968,11035,11125,11217,11279,11343,11406,11472,11577,11687,11788,11895,11956,12093",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,75,80,106,95,106,131,82,64,93,68,58,84,62,62,57,64,60,60,105,57,59,58,69,115,78,79,133,74,75,136,96,97,56,54,65,69,76,85,84,67,75,80,77,100,85,86,96,98,73,69,103,53,86,66,89,91,61,63,62,65,104,109,100,106,60,58,78",
+ "endOffsets": "304,3064,3140,3221,3328,3424,4284,4416,4499,6974,7159,7545,7604,7689,7752,7815,7873,7938,7999,8060,8166,8224,8284,8343,8413,8529,8608,8688,8822,8897,8973,9110,9207,9305,9362,9417,9483,9553,9630,9716,9801,9869,9945,10026,10104,10205,10291,10378,10475,10574,10648,10718,10822,10876,10963,11030,11120,11212,11274,11338,11401,11467,11572,11682,11783,11890,11951,12010,12167"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-hi/values-hi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,211,309,419,505,607,728,806,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1901,2006,2108,2206,2316,2419,2528,2686,2787",
+ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81",
+ "endOffsets": "206,304,414,500,602,723,801,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1896,2001,2103,2201,2311,2414,2523,2681,2782,2864"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "309,415,513,623,709,811,932,1010,1087,1178,1271,1366,1460,1560,1653,1748,1842,1933,2024,2105,2210,2312,2410,2520,2623,2732,2890,12314",
+ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81",
+ "endOffsets": "410,508,618,704,806,927,1005,1082,1173,1266,1361,1455,1555,1648,1743,1837,1928,2019,2100,2205,2307,2405,2515,2618,2727,2885,2986,12391"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-hi/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "141",
+ "endOffsets": "336"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5515",
+ "endColumns": "145",
+ "endOffsets": "5656"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-hi/values-hi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,256,361,462,575,681,808",
+ "endColumns": "97,102,104,100,112,105,126,100",
+ "endOffsets": "148,251,356,457,570,676,803,904"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3429,3527,3630,3735,3836,3949,4055,12396",
+ "endColumns": "97,102,104,100,112,105,126,100",
+ "endOffsets": "3522,3625,3730,3831,3944,4050,4177,12492"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-hi/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,453,575,683,830,956,1064,1172,1325,1430,1592,1718,1855,2004,2063,2126",
+ "endColumns": "103,155,121,107,146,125,107,107,152,104,161,125,136,148,58,62,83",
+ "endOffsets": "296,452,574,682,829,955,1063,1171,1324,1429,1591,1717,1854,2003,2062,2125,2209"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4504,4612,4772,4898,5010,5161,5291,5403,5661,5818,5927,6093,6223,6364,6517,6580,6647",
+ "endColumns": "107,159,125,111,150,129,111,111,156,108,165,129,140,152,62,66,87",
+ "endOffsets": "4607,4767,4893,5005,5156,5286,5398,5510,5813,5922,6088,6218,6359,6512,6575,6642,6730"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-hi/values-hi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,269,347,489,658,738",
+ "endColumns": "72,90,77,141,168,79,77",
+ "endOffsets": "173,264,342,484,653,733,811"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6735,6979,12015,12172,12497,12666,12746",
+ "endColumns": "72,90,77,141,168,79,77",
+ "endOffsets": "6803,7065,12088,12309,12661,12741,12819"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-hi/values-hi.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,161,263,375",
+ "endColumns": "105,101,111,102",
+ "endOffsets": "156,258,370,473"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6808,7164,7266,7378",
+ "endColumns": "105,101,111,102",
+ "endOffsets": "6909,7261,7373,7476"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hr.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hr.json
new file mode 100644
index 00000000..8e6e0274
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hr.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-hr/values-hr.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-hr/values-hr.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,320,398,476,561,658,751,847,977,1061,1129,1225,1293,1356,1464,1524,1590,1646,1717,1777,1831,1957,2014,2076,2130,2205,2339,2424,2505,2642,2726,2812,2945,3036,3114,3170,3225,3291,3365,3443,3531,3613,3685,3762,3842,3916,4023,4116,4189,4281,4377,4451,4527,4623,4675,4757,4824,4911,4998,5060,5124,5187,5257,5363,5479,5576,5690,5750,5809",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,77,77,84,96,92,95,129,83,67,95,67,62,107,59,65,55,70,59,53,125,56,61,53,74,133,84,80,136,83,85,132,90,77,55,54,65,73,77,87,81,71,76,79,73,106,92,72,91,95,73,75,95,51,81,66,86,86,61,63,62,69,105,115,96,113,59,58,79",
+ "endOffsets": "315,393,471,556,653,746,842,972,1056,1124,1220,1288,1351,1459,1519,1585,1641,1712,1772,1826,1952,2009,2071,2125,2200,2334,2419,2500,2637,2721,2807,2940,3031,3109,3165,3220,3286,3360,3438,3526,3608,3680,3757,3837,3911,4018,4111,4184,4276,4372,4446,4522,4618,4670,4752,4819,4906,4993,5055,5119,5182,5252,5358,5474,5571,5685,5745,5804,5884"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3081,3159,3237,3322,3419,4238,4334,4464,6911,7066,7478,7546,7609,7717,7777,7843,7899,7970,8030,8084,8210,8267,8329,8383,8458,8592,8677,8758,8895,8979,9065,9198,9289,9367,9423,9478,9544,9618,9696,9784,9866,9938,10015,10095,10169,10276,10369,10442,10534,10630,10704,10780,10876,10928,11010,11077,11164,11251,11313,11377,11440,11510,11616,11732,11829,11943,12003,12145",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,77,77,84,96,92,95,129,83,67,95,67,62,107,59,65,55,70,59,53,125,56,61,53,74,133,84,80,136,83,85,132,90,77,55,54,65,73,77,87,81,71,76,79,73,106,92,72,91,95,73,75,95,51,81,66,86,86,61,63,62,69,105,115,96,113,59,58,79",
+ "endOffsets": "365,3154,3232,3317,3414,3507,4329,4459,4543,6974,7157,7541,7604,7712,7772,7838,7894,7965,8025,8079,8205,8262,8324,8378,8453,8587,8672,8753,8890,8974,9060,9193,9284,9362,9418,9473,9539,9613,9691,9779,9861,9933,10010,10090,10164,10271,10364,10437,10529,10625,10699,10775,10871,10923,11005,11072,11159,11246,11308,11372,11435,11505,11611,11727,11824,11938,11998,12057,12220"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-hr/values-hr.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,160,260,374",
+ "endColumns": "104,99,113,101",
+ "endOffsets": "155,255,369,471"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6806,7162,7262,7376",
+ "endColumns": "104,99,113,101",
+ "endOffsets": "6906,7257,7371,7473"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-hr/values-hr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,210,305,412,498,602,721,806,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1912,2016,2128,2229,2334,2448,2550,2719,2816",
+ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84",
+ "endOffsets": "205,300,407,493,597,716,801,883,974,1067,1162,1256,1356,1449,1544,1639,1730,1821,1907,2011,2123,2224,2329,2443,2545,2714,2811,2896"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "370,475,570,677,763,867,986,1071,1153,1244,1337,1432,1526,1626,1719,1814,1909,2000,2091,2177,2281,2393,2494,2599,2713,2815,2984,12373",
+ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84",
+ "endOffsets": "470,565,672,758,862,981,1066,1148,1239,1332,1427,1521,1621,1714,1809,1904,1995,2086,2172,2276,2388,2489,2594,2708,2810,2979,3076,12453"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-hr/values-hr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,263,346,494,663,750",
+ "endColumns": "70,86,82,147,168,86,82",
+ "endOffsets": "171,258,341,489,658,745,828"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6735,6979,12062,12225,12559,12728,12815",
+ "endColumns": "70,86,82,147,168,86,82",
+ "endOffsets": "6801,7061,12140,12368,12723,12810,12893"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-hr/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,448,574,680,833,959,1070,1173,1319,1422,1575,1699,1842,1981,2045,2103",
+ "endColumns": "101,152,125,105,152,125,110,102,145,102,152,123,142,138,63,57,76",
+ "endOffsets": "294,447,573,679,832,958,1069,1172,1318,1421,1574,1698,1841,1980,2044,2102,2179"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4548,4654,4811,4941,5051,5208,5338,5453,5692,5842,5949,6106,6234,6381,6524,6592,6654",
+ "endColumns": "105,156,129,109,156,129,114,106,149,106,156,127,146,142,67,61,80",
+ "endOffsets": "4649,4806,4936,5046,5203,5333,5448,5555,5837,5944,6101,6229,6376,6519,6587,6649,6730"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-hr/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "127",
+ "endOffsets": "322"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5560",
+ "endColumns": "131",
+ "endOffsets": "5687"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-hr/values-hr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,260,357,456,560,664,781",
+ "endColumns": "97,106,96,98,103,103,116,100",
+ "endOffsets": "148,255,352,451,555,659,776,877"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3512,3610,3717,3814,3913,4017,4121,12458",
+ "endColumns": "97,106,96,98,103,103,116,100",
+ "endOffsets": "3605,3712,3809,3908,4012,4116,4233,12554"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hu.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hu.json
new file mode 100644
index 00000000..512bcd95
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hu.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-hu/values-hu.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-hu/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "172",
+ "endOffsets": "367"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5575",
+ "endColumns": "176",
+ "endOffsets": "5747"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-hu/values-hu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,264,346,483,652,731",
+ "endColumns": "70,87,81,136,168,78,75",
+ "endOffsets": "171,259,341,478,647,726,802"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6923,7154,12221,12388,12710,12879,12958",
+ "endColumns": "70,87,81,136,168,78,75",
+ "endOffsets": "6989,7237,12298,12520,12874,12953,13029"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-hu/values-hu.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,151,252,367",
+ "endColumns": "95,100,114,103",
+ "endOffsets": "146,247,362,466"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6994,7341,7442,7557",
+ "endColumns": "95,100,114,103",
+ "endOffsets": "7085,7437,7552,7656"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-hu/values-hu.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,263,344,420,497,587,667,766,886,969,1033,1132,1207,1266,1376,1438,1507,1565,1637,1698,1753,1856,1913,1973,2028,2109,2229,2312,2400,2535,2618,2698,2838,2932,3014,3067,3118,3184,3260,3342,3428,3512,3589,3664,3743,3820,3925,4021,4098,4190,4287,4361,4446,4543,4595,4678,4745,4833,4920,4982,5046,5109,5175,5273,5379,5473,5580,5637,5692",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,75,76,89,79,98,119,82,63,98,74,58,109,61,68,57,71,60,54,102,56,59,54,80,119,82,87,134,82,79,139,93,81,52,50,65,75,81,85,83,76,74,78,76,104,95,76,91,96,73,84,96,51,82,66,87,86,61,63,62,65,97,105,93,106,56,54,84",
+ "endOffsets": "258,339,415,492,582,662,761,881,964,1028,1127,1202,1261,1371,1433,1502,1560,1632,1693,1748,1851,1908,1968,2023,2104,2224,2307,2395,2530,2613,2693,2833,2927,3009,3062,3113,3179,3255,3337,3423,3507,3584,3659,3738,3815,3920,4016,4093,4185,4282,4356,4441,4538,4590,4673,4740,4828,4915,4977,5041,5104,5170,5268,5374,5468,5575,5632,5687,5772"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3067,3148,3224,3301,3391,4193,4292,4412,7090,7242,7661,7736,7795,7905,7967,8036,8094,8166,8227,8282,8385,8442,8502,8557,8638,8758,8841,8929,9064,9147,9227,9367,9461,9543,9596,9647,9713,9789,9871,9957,10041,10118,10193,10272,10349,10454,10550,10627,10719,10816,10890,10975,11072,11124,11207,11274,11362,11449,11511,11575,11638,11704,11802,11908,12002,12109,12166,12303",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,75,76,89,79,98,119,82,63,98,74,58,109,61,68,57,71,60,54,102,56,59,54,80,119,82,87,134,82,79,139,93,81,52,50,65,75,81,85,83,76,74,78,76,104,95,76,91,96,73,84,96,51,82,66,87,86,61,63,62,65,97,105,93,106,56,54,84",
+ "endOffsets": "308,3143,3219,3296,3386,3466,4287,4407,4490,7149,7336,7731,7790,7900,7962,8031,8089,8161,8222,8277,8380,8437,8497,8552,8633,8753,8836,8924,9059,9142,9222,9362,9456,9538,9591,9642,9708,9784,9866,9952,10036,10113,10188,10267,10344,10449,10545,10622,10714,10811,10885,10970,11067,11119,11202,11269,11357,11444,11506,11570,11633,11699,11797,11903,11997,12104,12161,12216,12383"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-hu/values-hu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,305,420,504,619,742,819,894,985,1078,1173,1267,1367,1460,1555,1650,1741,1832,1915,2025,2135,2235,2346,2455,2574,2756,2859",
+ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83",
+ "endOffsets": "208,300,415,499,614,737,814,889,980,1073,1168,1262,1362,1455,1550,1645,1736,1827,1910,2020,2130,2230,2341,2450,2569,2751,2854,2938"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "313,421,513,628,712,827,950,1027,1102,1193,1286,1381,1475,1575,1668,1763,1858,1949,2040,2123,2233,2343,2443,2554,2663,2782,2964,12525",
+ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83",
+ "endOffsets": "416,508,623,707,822,945,1022,1097,1188,1281,1376,1470,1570,1663,1758,1853,1944,2035,2118,2228,2338,2438,2549,2658,2777,2959,3062,12604"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-hu/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,480,614,719,883,1017,1135,1241,1407,1511,1692,1825,1993,2161,2228,2292",
+ "endColumns": "106,179,133,104,163,133,117,105,165,103,180,132,167,167,66,63,83",
+ "endOffsets": "299,479,613,718,882,1016,1134,1240,1406,1510,1691,1824,1992,2160,2227,2291,2375"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4495,4606,4790,4928,5037,5205,5343,5465,5752,5922,6030,6215,6352,6524,6696,6767,6835",
+ "endColumns": "110,183,137,108,167,137,121,109,169,107,184,136,171,171,70,67,87",
+ "endOffsets": "4601,4785,4923,5032,5200,5338,5460,5570,5917,6025,6210,6347,6519,6691,6762,6830,6918"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-hu/values-hu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,356,457,560,667,777",
+ "endColumns": "96,101,101,100,102,106,109,100",
+ "endOffsets": "147,249,351,452,555,662,772,873"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3471,3568,3670,3772,3873,3976,4083,12609",
+ "endColumns": "96,101,101,100,102,106,109,100",
+ "endOffsets": "3563,3665,3767,3868,3971,4078,4188,12705"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hy.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hy.json
new file mode 100644
index 00000000..c178b2e7
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-hy.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-hy/values-hy.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-hy/values-hy.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,265,346,483,652,736",
+ "endColumns": "71,87,80,136,168,83,80",
+ "endOffsets": "172,260,341,478,647,731,812"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6777,7017,12092,12258,12579,12748,12832",
+ "endColumns": "71,87,80,136,168,83,80",
+ "endOffsets": "6844,7100,12168,12390,12743,12827,12908"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-hy/values-hy.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,341,417,497,589,677,772,902,983,1047,1144,1229,1291,1378,1440,1504,1565,1632,1693,1747,1869,1926,1986,2040,2121,2256,2340,2425,2561,2636,2711,2854,2949,3029,3085,3138,3204,3278,3357,3443,3526,3597,3673,3749,3826,3932,4020,4100,4196,4292,4366,4444,4544,4595,4679,4748,4835,4926,4988,5052,5115,5186,5291,5397,5497,5600,5660,5717",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,75,75,79,91,87,94,129,80,63,96,84,61,86,61,63,60,66,60,53,121,56,59,53,80,134,83,84,135,74,74,142,94,79,55,52,65,73,78,85,82,70,75,75,76,105,87,79,95,95,73,77,99,50,83,68,86,90,61,63,62,70,104,105,99,102,59,56,84",
+ "endOffsets": "260,336,412,492,584,672,767,897,978,1042,1139,1224,1286,1373,1435,1499,1560,1627,1688,1742,1864,1921,1981,2035,2116,2251,2335,2420,2556,2631,2706,2849,2944,3024,3080,3133,3199,3273,3352,3438,3521,3592,3668,3744,3821,3927,4015,4095,4191,4287,4361,4439,4539,4590,4674,4743,4830,4921,4983,5047,5110,5181,5286,5392,5492,5595,5655,5712,5797"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3024,3100,3176,3256,3348,4156,4251,4381,6953,7105,7519,7604,7666,7753,7815,7879,7940,8007,8068,8122,8244,8301,8361,8415,8496,8631,8715,8800,8936,9011,9086,9229,9324,9404,9460,9513,9579,9653,9732,9818,9901,9972,10048,10124,10201,10307,10395,10475,10571,10667,10741,10819,10919,10970,11054,11123,11210,11301,11363,11427,11490,11561,11666,11772,11872,11975,12035,12173",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,75,75,79,91,87,94,129,80,63,96,84,61,86,61,63,60,66,60,53,121,56,59,53,80,134,83,84,135,74,74,142,94,79,55,52,65,73,78,85,82,70,75,75,76,105,87,79,95,95,73,77,99,50,83,68,86,90,61,63,62,70,104,105,99,102,59,56,84",
+ "endOffsets": "310,3095,3171,3251,3343,3431,4246,4376,4457,7012,7197,7599,7661,7748,7810,7874,7935,8002,8063,8117,8239,8296,8356,8410,8491,8626,8710,8795,8931,9006,9081,9224,9319,9399,9455,9508,9574,9648,9727,9813,9896,9967,10043,10119,10196,10302,10390,10470,10566,10662,10736,10814,10914,10965,11049,11118,11205,11296,11358,11422,11485,11556,11661,11767,11867,11970,12030,12087,12253"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-hy/values-hy.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,313,423,512,618,735,817,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1917,2023,2129,2228,2338,2446,2547,2717,2814",
+ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82",
+ "endOffsets": "208,308,418,507,613,730,812,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1912,2018,2124,2223,2333,2441,2542,2712,2809,2892"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,423,523,633,722,828,945,1027,1107,1198,1291,1386,1480,1580,1673,1768,1862,1953,2044,2127,2233,2339,2438,2548,2656,2757,2927,12395",
+ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82",
+ "endOffsets": "418,518,628,717,823,940,1022,1102,1193,1286,1381,1475,1575,1668,1763,1857,1948,2039,2122,2228,2334,2433,2543,2651,2752,2922,3019,12473"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-hy/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "146",
+ "endOffsets": "341"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5505",
+ "endColumns": "150",
+ "endOffsets": "5651"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-hy/values-hy.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,159,262,373",
+ "endColumns": "103,102,110,102",
+ "endOffsets": "154,257,368,471"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6849,7202,7305,7416",
+ "endColumns": "103,102,110,102",
+ "endOffsets": "6948,7300,7411,7514"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-hy/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,456,586,690,840,972,1095,1204,1367,1471,1635,1767,1925,2087,2148,2211",
+ "endColumns": "101,160,129,103,149,131,122,108,162,103,163,131,157,161,60,62,77",
+ "endOffsets": "294,455,585,689,839,971,1094,1203,1366,1470,1634,1766,1924,2086,2147,2210,2288"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4462,4568,4733,4867,4975,5129,5265,5392,5656,5823,5931,6099,6235,6397,6563,6628,6695",
+ "endColumns": "105,164,133,107,153,135,126,112,166,107,167,135,161,165,64,66,81",
+ "endOffsets": "4563,4728,4862,4970,5124,5260,5387,5500,5818,5926,6094,6230,6392,6558,6623,6690,6772"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-hy/values-hy.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,155,260,358,457,562,664,775",
+ "endColumns": "99,104,97,98,104,101,110,100",
+ "endOffsets": "150,255,353,452,557,659,770,871"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3436,3536,3641,3739,3838,3943,4045,12478",
+ "endColumns": "99,104,97,98,104,101,110,100",
+ "endOffsets": "3531,3636,3734,3833,3938,4040,4151,12574"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-in.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-in.json
new file mode 100644
index 00000000..70c29068
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-in.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-in/values-in.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-in/values-in.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,261,341,477,646,731",
+ "endColumns": "68,86,79,135,168,84,78",
+ "endOffsets": "169,256,336,472,641,726,805"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6668,6902,11857,12017,12339,12508,12593",
+ "endColumns": "68,86,79,135,168,84,78",
+ "endOffsets": "6732,6984,11932,12148,12503,12588,12667"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-in/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "127",
+ "endOffsets": "322"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5473",
+ "endColumns": "131",
+ "endOffsets": "5600"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-in/values-in.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,220,324,429,516,620,736,819,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1920,2023,2128,2229,2333,2442,2550,2710,2809",
+ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84",
+ "endOffsets": "215,319,424,511,615,731,814,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1915,2018,2123,2224,2328,2437,2545,2705,2804,2889"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "319,434,538,643,730,834,950,1033,1111,1202,1295,1390,1484,1584,1677,1772,1866,1957,2048,2134,2237,2342,2443,2547,2656,2764,2924,12153",
+ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84",
+ "endOffsets": "429,533,638,725,829,945,1028,1106,1197,1290,1385,1479,1579,1672,1767,1861,1952,2043,2129,2232,2337,2438,2542,2651,2759,2919,3018,12233"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-in/values-in.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,253,362",
+ "endColumns": "99,97,108,100",
+ "endOffsets": "150,248,357,458"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6737,7083,7181,7290",
+ "endColumns": "99,97,108,100",
+ "endOffsets": "6832,7176,7285,7386"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-in/values-in.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,269,348,424,503,593,678,784,900,983,1048,1142,1207,1266,1353,1415,1477,1537,1603,1665,1719,1831,1888,1949,2003,2075,2201,2287,2371,2510,2591,2672,2807,2897,2979,3032,3084,3150,3222,3306,3389,3469,3544,3620,3693,3768,3866,3951,4026,4118,4212,4286,4359,4453,4505,4587,4656,4741,4828,4890,4954,5017,5089,5192,5297,5392,5495,5552,5608",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,78,75,78,89,84,105,115,82,64,93,64,58,86,61,61,59,65,61,53,111,56,60,53,71,125,85,83,138,80,80,134,89,81,52,51,65,71,83,82,79,74,75,72,74,97,84,74,91,93,73,72,93,51,81,68,84,86,61,63,62,71,102,104,94,102,56,55,79",
+ "endOffsets": "264,343,419,498,588,673,779,895,978,1043,1137,1202,1261,1348,1410,1472,1532,1598,1660,1714,1826,1883,1944,1998,2070,2196,2282,2366,2505,2586,2667,2802,2892,2974,3027,3079,3145,3217,3301,3384,3464,3539,3615,3688,3763,3861,3946,4021,4113,4207,4281,4354,4448,4500,4582,4651,4736,4823,4885,4949,5012,5084,5187,5292,5387,5490,5547,5603,5683"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3023,3102,3178,3257,3347,4162,4268,4384,6837,6989,7391,7456,7515,7602,7664,7726,7786,7852,7914,7968,8080,8137,8198,8252,8324,8450,8536,8620,8759,8840,8921,9056,9146,9228,9281,9333,9399,9471,9555,9638,9718,9793,9869,9942,10017,10115,10200,10275,10367,10461,10535,10608,10702,10754,10836,10905,10990,11077,11139,11203,11266,11338,11441,11546,11641,11744,11801,11937",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,78,75,78,89,84,105,115,82,64,93,64,58,86,61,61,59,65,61,53,111,56,60,53,71,125,85,83,138,80,80,134,89,81,52,51,65,71,83,82,79,74,75,72,74,97,84,74,91,93,73,72,93,51,81,68,84,86,61,63,62,71,102,104,94,102,56,55,79",
+ "endOffsets": "314,3097,3173,3252,3342,3427,4263,4379,4462,6897,7078,7451,7510,7597,7659,7721,7781,7847,7909,7963,8075,8132,8193,8247,8319,8445,8531,8615,8754,8835,8916,9051,9141,9223,9276,9328,9394,9466,9550,9633,9713,9788,9864,9937,10012,10110,10195,10270,10362,10456,10530,10603,10697,10749,10831,10900,10985,11072,11134,11198,11261,11333,11436,11541,11636,11739,11796,11852,12012"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-in/values-in.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,252,349,446,552,670,785",
+ "endColumns": "94,101,96,96,105,117,114,100",
+ "endOffsets": "145,247,344,441,547,665,780,881"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3432,3527,3629,3726,3823,3929,4047,12238",
+ "endColumns": "94,101,96,96,105,117,114,100",
+ "endOffsets": "3522,3624,3721,3818,3924,4042,4157,12334"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-in/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,456,578,680,831,954,1065,1167,1329,1430,1590,1712,1863,2003,2063,2119",
+ "endColumns": "102,159,121,101,150,122,110,101,161,100,159,121,150,139,59,55,74",
+ "endOffsets": "295,455,577,679,830,953,1064,1166,1328,1429,1589,1711,1862,2002,2062,2118,2193"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4467,4574,4738,4864,4970,5125,5252,5367,5605,5771,5876,6040,6166,6321,6465,6529,6589",
+ "endColumns": "106,163,125,105,154,126,114,105,165,104,163,125,154,143,63,59,78",
+ "endOffsets": "4569,4733,4859,4965,5120,5247,5362,5468,5766,5871,6035,6161,6316,6460,6524,6584,6663"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-is.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-is.json
new file mode 100644
index 00000000..cf89dfe1
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-is.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-is/values-is.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-is/values-is.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,257,354,454,557,661,772",
+ "endColumns": "94,106,96,99,102,103,110,100",
+ "endOffsets": "145,252,349,449,552,656,767,868"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3381,3476,3583,3680,3780,3883,3987,12102",
+ "endColumns": "94,106,96,99,102,103,110,100",
+ "endOffsets": "3471,3578,3675,3775,3878,3982,4093,12198"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-is/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,445,566,671,808,929,1034,1135,1285,1387,1540,1662,1800,1950,2010,2069",
+ "endColumns": "101,149,120,104,136,120,104,100,149,101,152,121,137,149,59,58,74",
+ "endOffsets": "294,444,565,670,807,928,1033,1134,1284,1386,1539,1661,1799,1949,2009,2068,2143"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4392,4498,4652,4777,4886,5027,5152,5261,5495,5649,5755,5912,6038,6180,6334,6398,6461",
+ "endColumns": "105,153,124,108,140,124,108,104,153,105,156,125,141,153,63,62,78",
+ "endOffsets": "4493,4647,4772,4881,5022,5147,5256,5361,5644,5750,5907,6033,6175,6329,6393,6456,6535"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-is/values-is.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,270,344,416,495,577,657,754,869,951,1016,1104,1168,1229,1319,1383,1446,1508,1576,1640,1696,1819,1884,1946,2002,2073,2200,2284,2368,2504,2581,2658,2774,2861,2940,2997,3052,3118,3194,3274,3363,3439,3506,3580,3650,3716,3818,3904,3974,4065,4155,4229,4302,4391,4442,4523,4595,4676,4762,4824,4888,4951,5020,5134,5240,5348,5450,5511,5570",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,73,71,78,81,79,96,114,81,64,87,63,60,89,63,62,61,67,63,55,122,64,61,55,70,126,83,83,135,76,76,115,86,78,56,54,65,75,79,88,75,66,73,69,65,101,85,69,90,89,73,72,88,50,80,71,80,85,61,63,62,68,113,105,107,101,60,58,79",
+ "endOffsets": "265,339,411,490,572,652,749,864,946,1011,1099,1163,1224,1314,1378,1441,1503,1571,1635,1691,1814,1879,1941,1997,2068,2195,2279,2363,2499,2576,2653,2769,2856,2935,2992,3047,3113,3189,3269,3358,3434,3501,3575,3645,3711,3813,3899,3969,4060,4150,4224,4297,4386,4437,4518,4590,4671,4757,4819,4883,4946,5015,5129,5235,5343,5445,5506,5565,5645"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2994,3068,3140,3219,3301,4098,4195,4310,6714,6866,7262,7326,7387,7477,7541,7604,7666,7734,7798,7854,7977,8042,8104,8160,8231,8358,8442,8526,8662,8739,8816,8932,9019,9098,9155,9210,9276,9352,9432,9521,9597,9664,9738,9808,9874,9976,10062,10132,10223,10313,10387,10460,10549,10600,10681,10753,10834,10920,10982,11046,11109,11178,11292,11398,11506,11608,11669,11806",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,73,71,78,81,79,96,114,81,64,87,63,60,89,63,62,61,67,63,55,122,64,61,55,70,126,83,83,135,76,76,115,86,78,56,54,65,75,79,88,75,66,73,69,65,101,85,69,90,89,73,72,88,50,80,71,80,85,61,63,62,68,113,105,107,101,60,58,79",
+ "endOffsets": "315,3063,3135,3214,3296,3376,4190,4305,4387,6774,6949,7321,7382,7472,7536,7599,7661,7729,7793,7849,7972,8037,8099,8155,8226,8353,8437,8521,8657,8734,8811,8927,9014,9093,9150,9205,9271,9347,9427,9516,9592,9659,9733,9803,9869,9971,10057,10127,10218,10308,10382,10455,10544,10595,10676,10748,10829,10915,10977,11041,11104,11173,11287,11393,11501,11603,11664,11723,11881"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-is/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "124",
+ "endOffsets": "319"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5366",
+ "endColumns": "128",
+ "endOffsets": "5490"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-is/values-is.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,205,302,414,499,600,714,795,874,965,1058,1151,1245,1351,1444,1539,1634,1725,1819,1900,2010,2117,2214,2323,2423,2526,2681,2779",
+ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80",
+ "endOffsets": "200,297,409,494,595,709,790,869,960,1053,1146,1240,1346,1439,1534,1629,1720,1814,1895,2005,2112,2209,2318,2418,2521,2676,2774,2855"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "320,420,517,629,714,815,929,1010,1089,1180,1273,1366,1460,1566,1659,1754,1849,1940,2034,2115,2225,2332,2429,2538,2638,2741,2896,12021",
+ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80",
+ "endOffsets": "415,512,624,709,810,924,1005,1084,1175,1268,1361,1455,1561,1654,1749,1844,1935,2029,2110,2220,2327,2424,2533,2633,2736,2891,2989,12097"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-is/values-is.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,262,340,475,644,727",
+ "endColumns": "69,86,77,134,168,82,79",
+ "endOffsets": "170,257,335,470,639,722,802"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6540,6779,11728,11886,12203,12372,12455",
+ "endColumns": "69,86,77,134,168,82,79",
+ "endOffsets": "6605,6861,11801,12016,12367,12450,12530"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-is/values-is.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,159,260,366",
+ "endColumns": "103,100,105,100",
+ "endOffsets": "154,255,361,462"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6610,6954,7055,7161",
+ "endColumns": "103,100,105,100",
+ "endOffsets": "6709,7050,7156,7257"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-it.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-it.json
new file mode 100644
index 00000000..9868cae9
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-it.json
@@ -0,0 +1,149 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-it/values-it.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-it/values-it.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,268,352,433,510,609,704,803,943,1026,1092,1187,1272,1334,1422,1484,1553,1616,1689,1752,1806,1927,1984,2046,2100,2177,2314,2399,2481,2616,2697,2778,2924,3015,3105,3160,3211,3277,3350,3430,3521,3601,3676,3753,3822,3899,4004,4092,4181,4274,4367,4441,4521,4615,4666,4750,4816,4900,4988,5050,5114,5177,5245,5360,5474,5580,5689,5748,5803",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,83,80,76,98,94,98,139,82,65,94,84,61,87,61,68,62,72,62,53,120,56,61,53,76,136,84,81,134,80,80,145,90,89,54,50,65,72,79,90,79,74,76,68,76,104,87,88,92,92,73,79,93,50,83,65,83,87,61,63,62,67,114,113,105,108,58,54,79",
+ "endOffsets": "263,347,428,505,604,699,798,938,1021,1087,1182,1267,1329,1417,1479,1548,1611,1684,1747,1801,1922,1979,2041,2095,2172,2309,2394,2476,2611,2692,2773,2919,3010,3100,3155,3206,3272,3345,3425,3516,3596,3671,3748,3817,3894,3999,4087,4176,4269,4362,4436,4516,4610,4661,4745,4811,4895,4983,5045,5109,5172,5240,5355,5469,5575,5684,5743,5798,5878"
+ },
+ "to": {
+ "startLines": "14,58,59,60,61,62,70,71,72,116,119,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,186",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "719,4183,4267,4348,4425,4524,5366,5465,5605,10063,10317,10790,10875,10937,11025,11087,11156,11219,11292,11355,11409,11530,11587,11649,11703,11780,11917,12002,12084,12219,12300,12381,12527,12618,12708,12763,12814,12880,12953,13033,13124,13204,13279,13356,13425,13502,13607,13695,13784,13877,13970,14044,14124,14218,14269,14353,14419,14503,14591,14653,14717,14780,14848,14963,15077,15183,15292,15351,15838",
+ "endLines": "17,58,59,60,61,62,70,71,72,116,119,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,186",
+ "endColumns": "12,83,80,76,98,94,98,139,82,65,94,84,61,87,61,68,62,72,62,53,120,56,61,53,76,136,84,81,134,80,80,145,90,89,54,50,65,72,79,90,79,74,76,68,76,104,87,88,92,92,73,79,93,50,83,65,83,87,61,63,62,67,114,113,105,108,58,54,79",
+ "endOffsets": "882,4262,4343,4420,4519,4614,5460,5600,5683,10124,10407,10870,10932,11020,11082,11151,11214,11287,11350,11404,11525,11582,11644,11698,11775,11912,11997,12079,12214,12295,12376,12522,12613,12703,12758,12809,12875,12948,13028,13119,13199,13274,13351,13420,13497,13602,13690,13779,13872,13965,14039,14119,14213,14264,14348,14414,14498,14586,14648,14712,14775,14843,14958,15072,15178,15287,15346,15401,15913"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-it/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,294,441,562,666,820,944,1060,1160,1313,1416,1566,1689,1841,2018,2081,2138",
+ "endColumns": "100,146,120,103,153,123,115,99,152,102,149,122,151,176,62,56,72",
+ "endOffsets": "293,440,561,665,819,943,1059,1159,1312,1415,1565,1688,1840,2017,2080,2137,2210"
+ },
+ "to": {
+ "startLines": "82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "6384,6489,6640,6765,6873,7031,7159,7279,7519,7676,7783,7937,8064,8220,8401,8468,8529",
+ "endColumns": "104,150,124,107,157,127,119,103,156,106,153,126,155,180,66,60,76",
+ "endOffsets": "6484,6635,6760,6868,7026,7154,7274,7378,7671,7778,7932,8059,8215,8396,8463,8524,8601"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-it/values-it.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,261,341,476,645,725",
+ "endColumns": "68,86,79,134,168,79,75",
+ "endOffsets": "169,256,336,471,640,720,796"
+ },
+ "to": {
+ "startLines": "106,118,182,187,252,273,274",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "9072,10230,15524,15918,21631,23382,23462",
+ "endColumns": "68,86,79,134,168,79,75",
+ "endOffsets": "9136,10312,15599,16048,21795,23457,23533"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-it/values-it.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,253,363",
+ "endColumns": "99,97,109,102",
+ "endOffsets": "150,248,358,461"
+ },
+ "to": {
+ "startLines": "107,121,122,123",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "9141,10479,10577,10687",
+ "endColumns": "99,97,109,102",
+ "endOffsets": "9236,10572,10682,10785"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-it/values-it.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,354,456,565,672,802",
+ "endColumns": "97,101,98,101,108,106,129,100",
+ "endOffsets": "148,250,349,451,560,667,797,898"
+ },
+ "to": {
+ "startLines": "63,64,65,66,67,68,69,251",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "4619,4717,4819,4918,5020,5129,5236,21530",
+ "endColumns": "97,101,98,101,108,106,129,100",
+ "endOffsets": "4712,4814,4913,5015,5124,5231,5361,21626"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-it/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "131",
+ "endOffsets": "326"
+ },
+ "to": {
+ "startLines": "90",
+ "startColumns": "4",
+ "startOffsets": "7383",
+ "endColumns": "135",
+ "endOffsets": "7514"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-it/strings.xml",
+ "from": {
+ "startLines": "71,75,79,128,132,137,9,67,69,68,63,64,62,66,65,70,148,147,146,60,58,59,160,161,162,164,165,163,166,167,143,142,144,127,136,126,15,24,23,28,37,33,35,34,36,26,27,29,30,31,16,18,17,22,21,19,85,124,115,114,120,122,121,116,117,118,119,123,109,110,107,108,90,91,98,99,100,101,102,86,89,87,88,103,104,92,94,95,96,97,93,112,113,84,105,106,40,50,55,56,51,53,54,47,48,39,41,43,44,42,45,12,10,13,11,155,154,156,153,152,151,157,150,149",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4777,4966,5155,8987,9186,9423,320,4448,4632,4565,4142,4197,4081,4387,4329,4710,10047,9975,9902,4018,3874,3949,11029,11088,11248,11481,11594,11327,11675,11749,9682,9615,9783,8905,9349,8827,583,1290,1152,1591,2404,2019,2193,2092,2304,1402,1523,1694,1797,1912,664,790,722,1073,1001,859,5402,8775,8041,7987,8453,8576,8507,8089,8168,8246,8323,8662,7532,7619,7316,7402,5764,5848,6499,6603,6688,6787,6853,5461,5681,5540,5609,6933,7016,5985,6146,6213,6307,6409,6067,7778,7870,5347,7117,7202,2583,3296,3696,3771,3376,3564,3627,3169,3225,2502,2699,2882,2965,2798,3065,477,369,526,423,10649,10559,10753,10495,10343,10292,10844,10240,10162",
+ "endLines": "74,78,82,131,135,140,9,67,69,68,63,64,62,66,65,70,148,147,146,60,58,59,160,161,162,164,165,163,166,167,143,142,144,127,136,126,15,24,23,28,37,33,35,34,36,26,27,29,30,31,16,18,17,22,21,20,85,124,115,114,120,122,121,116,117,118,119,123,109,111,107,108,90,91,98,99,100,101,102,86,89,87,88,103,104,92,94,95,96,97,93,112,113,84,105,106,40,50,55,56,52,53,54,47,48,39,41,43,44,42,45,12,10,13,11,155,154,156,153,152,151,157,150,149",
+ "endColumns": "14,14,14,14,14,14,48,116,77,66,54,131,60,60,57,66,114,71,72,61,74,68,58,159,78,112,80,153,73,101,100,66,117,81,73,77,80,110,137,102,96,72,110,100,99,120,67,102,114,105,57,68,67,78,71,29,58,50,47,53,53,85,68,78,77,76,129,112,86,28,85,129,83,136,103,84,98,65,79,78,82,68,71,82,100,81,66,93,101,89,78,91,116,54,84,113,115,79,74,101,50,62,68,55,69,80,98,82,99,83,102,48,53,55,53,103,89,90,63,151,50,43,51,77",
+ "endOffsets": "4961,5150,5341,9181,9344,9609,364,4560,4705,4627,4192,4324,4137,4443,4382,4772,10157,10042,9970,4075,3944,4013,11083,11243,11322,11589,11670,11476,11744,11846,9778,9677,9896,8982,9418,8900,659,1396,1285,1689,2496,2087,2299,2188,2399,1518,1586,1792,1907,2013,717,854,785,1147,1068,996,5456,8821,8084,8036,8502,8657,8571,8163,8241,8318,8448,8770,7614,7773,7397,7527,5843,5980,6598,6683,6782,6848,6928,5535,5759,5604,5676,7011,7112,6062,6208,6302,6404,6494,6141,7865,7982,5397,7197,7311,2694,3371,3766,3868,3559,3622,3691,3220,3290,2578,2793,2960,3060,2877,3163,521,418,577,472,10748,10644,10839,10554,10490,10338,10883,10287,10235"
+ },
+ "to": {
+ "startLines": "2,6,10,18,22,26,57,73,74,75,76,77,78,79,80,81,100,101,102,103,104,105,108,109,110,111,112,113,114,115,117,120,181,183,184,185,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,210,211,212,213,214,215,216,217,218,219,220,221,222,223,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,253,254,255,256,257,259,260,261,262,263,264,265,266,267,268,269,270,271,272,275,276,277,278,279,280,281,282,283",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,339,528,887,1086,1249,4134,5688,5805,5883,5950,6005,6137,6198,6259,6317,8606,8721,8793,8866,8928,9003,9241,9300,9460,9539,9652,9733,9887,9961,10129,10412,15406,15604,15686,15760,16053,16134,16245,16383,16486,16583,16656,16767,16868,16968,17089,17157,17260,17375,17481,17539,17608,17676,17755,17827,18051,18110,18161,18209,18263,18317,18403,18472,18551,18629,18706,18836,18949,19036,19195,19281,19411,19495,19632,19736,19821,19920,19986,20066,20145,20228,20297,20369,20452,20553,20635,20702,20796,20898,20988,21067,21159,21276,21331,21416,21800,21916,21996,22071,22173,22361,22424,22493,22549,22619,22700,22799,22882,22982,23066,23169,23218,23272,23328,23538,23642,23732,23823,23887,24039,24090,24134,24186",
+ "endLines": "5,9,13,21,25,29,57,73,74,75,76,77,78,79,80,81,100,101,102,103,104,105,108,109,110,111,112,113,114,115,117,120,181,183,184,185,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,210,211,212,213,214,215,216,217,218,219,220,221,222,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,253,254,255,256,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,275,276,277,278,279,280,281,282,283",
+ "endColumns": "14,14,14,14,14,14,48,116,77,66,54,131,60,60,57,66,114,71,72,61,74,68,58,159,78,112,80,153,73,101,100,66,117,81,73,77,80,110,137,102,96,72,110,100,99,120,67,102,114,105,57,68,67,78,71,29,58,50,47,53,53,85,68,78,77,76,129,112,86,28,85,129,83,136,103,84,98,65,79,78,82,68,71,82,100,81,66,93,101,89,78,91,116,54,84,113,115,79,74,101,50,62,68,55,69,80,98,82,99,83,102,48,53,55,53,103,89,90,63,151,50,43,51,77",
+ "endOffsets": "334,523,714,1081,1244,1435,4178,5800,5878,5945,6000,6132,6193,6254,6312,6379,8716,8788,8861,8923,8998,9067,9295,9455,9534,9647,9728,9882,9956,10058,10225,10474,15519,15681,15755,15833,16129,16240,16378,16481,16578,16651,16762,16863,16963,17084,17152,17255,17370,17476,17534,17603,17671,17750,17822,17964,18105,18156,18204,18258,18312,18398,18467,18546,18624,18701,18831,18944,19031,19190,19276,19406,19490,19627,19731,19816,19915,19981,20061,20140,20223,20292,20364,20447,20548,20630,20697,20791,20893,20983,21062,21154,21271,21326,21411,21525,21911,21991,22066,22168,22356,22419,22488,22544,22614,22695,22794,22877,22977,23061,23164,23213,23267,23323,23377,23637,23727,23818,23882,24034,24085,24129,24181,24259"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-it/values-it.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,210,313,422,506,611,730,808,883,975,1069,1162,1256,1357,1451,1548,1643,1735,1827,1908,2014,2121,2219,2323,2429,2536,2699,2799",
+ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81",
+ "endOffsets": "205,308,417,501,606,725,803,878,970,1064,1157,1251,1352,1446,1543,1638,1730,1822,1903,2009,2116,2214,2318,2424,2531,2694,2794,2876"
+ },
+ "to": {
+ "startLines": "30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,209",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "1440,1545,1648,1757,1841,1946,2065,2143,2218,2310,2404,2497,2591,2692,2786,2883,2978,3070,3162,3243,3349,3456,3554,3658,3764,3871,4034,17969",
+ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81",
+ "endOffsets": "1540,1643,1752,1836,1941,2060,2138,2213,2305,2399,2492,2586,2687,2781,2878,2973,3065,3157,3238,3344,3451,3549,3653,3759,3866,4029,4129,18046"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-iw.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-iw.json
new file mode 100644
index 00000000..8fd5351b
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-iw.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-iw/values-iw.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-iw/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "113",
+ "endOffsets": "308"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5385",
+ "endColumns": "117",
+ "endOffsets": "5498"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-iw/values-iw.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,258,334,459,628,709",
+ "endColumns": "68,83,75,124,168,80,78",
+ "endOffsets": "169,253,329,454,623,704,783"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6491,6716,11527,11678,11986,12155,12236",
+ "endColumns": "68,83,75,124,168,80,78",
+ "endOffsets": "6555,6795,11598,11798,12150,12231,12310"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-iw/values-iw.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,149,251,348,445,546,646,752",
+ "endColumns": "93,101,96,96,100,99,105,100",
+ "endOffsets": "144,246,343,440,541,641,747,848"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3437,3531,3633,3730,3827,3928,4028,11885",
+ "endColumns": "93,101,96,96,100,99,105,100",
+ "endOffsets": "3526,3628,3725,3822,3923,4023,4129,11981"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-iw/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,292,442,563,663,798,919,1027,1126,1258,1358,1499,1618,1748,1889,1945,2001",
+ "endColumns": "98,149,120,99,134,120,107,98,131,99,140,118,129,140,55,55,76",
+ "endOffsets": "291,441,562,662,797,918,1026,1125,1257,1357,1498,1617,1747,1888,1944,2000,2077"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4420,4523,4677,4802,4906,5045,5170,5282,5503,5639,5743,5888,6011,6145,6290,6350,6410",
+ "endColumns": "102,153,124,103,138,124,111,102,135,103,144,122,133,144,59,59,80",
+ "endOffsets": "4518,4672,4797,4901,5040,5165,5277,5380,5634,5738,5883,6006,6140,6285,6345,6405,6486"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-iw/values-iw.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,146,246,352",
+ "endColumns": "90,99,105,101",
+ "endOffsets": "141,241,347,449"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6560,6888,6988,7094",
+ "endColumns": "90,99,105,101",
+ "endOffsets": "6646,6983,7089,7191"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-iw/values-iw.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,311,388,463,540,640,731,824,937,1017,1082,1170,1240,1303,1395,1458,1518,1577,1640,1701,1755,1857,1914,1973,2027,2095,2206,2287,2369,2501,2572,2645,2769,2857,2933,2986,3040,3106,3179,3255,3341,3419,3489,3564,3646,3714,3815,3900,3970,4060,4151,4225,4298,4387,4438,4519,4586,4668,4753,4815,4879,4942,5010,5104,5199,5289,5386,5443,5501",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,76,74,76,99,90,92,112,79,64,87,69,62,91,62,59,58,62,60,53,101,56,58,53,67,110,80,81,131,70,72,123,87,75,52,53,65,72,75,85,77,69,74,81,67,100,84,69,89,90,73,72,88,50,80,66,81,84,61,63,62,67,93,94,89,96,56,57,74",
+ "endOffsets": "306,383,458,535,635,726,819,932,1012,1077,1165,1235,1298,1390,1453,1513,1572,1635,1696,1750,1852,1909,1968,2022,2090,2201,2282,2364,2496,2567,2640,2764,2852,2928,2981,3035,3101,3174,3250,3336,3414,3484,3559,3641,3709,3810,3895,3965,4055,4146,4220,4293,4382,4433,4514,4581,4663,4748,4810,4874,4937,5005,5099,5194,5284,5381,5438,5496,5571"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3017,3094,3169,3246,3346,4134,4227,4340,6651,6800,7196,7266,7329,7421,7484,7544,7603,7666,7727,7781,7883,7940,7999,8053,8121,8232,8313,8395,8527,8598,8671,8795,8883,8959,9012,9066,9132,9205,9281,9367,9445,9515,9590,9672,9740,9841,9926,9996,10086,10177,10251,10324,10413,10464,10545,10612,10694,10779,10841,10905,10968,11036,11130,11225,11315,11412,11469,11603",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,76,74,76,99,90,92,112,79,64,87,69,62,91,62,59,58,62,60,53,101,56,58,53,67,110,80,81,131,70,72,123,87,75,52,53,65,72,75,85,77,69,74,81,67,100,84,69,89,90,73,72,88,50,80,66,81,84,61,63,62,67,93,94,89,96,56,57,74",
+ "endOffsets": "356,3089,3164,3241,3341,3432,4222,4335,4415,6711,6883,7261,7324,7416,7479,7539,7598,7661,7722,7776,7878,7935,7994,8048,8116,8227,8308,8390,8522,8593,8666,8790,8878,8954,9007,9061,9127,9200,9276,9362,9440,9510,9585,9667,9735,9836,9921,9991,10081,10172,10246,10319,10408,10459,10540,10607,10689,10774,10836,10900,10963,11031,11125,11220,11310,11407,11464,11522,11673"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-iw/values-iw.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,210,310,418,502,604,720,799,877,968,1062,1156,1250,1350,1443,1538,1631,1722,1814,1895,2000,2103,2201,2306,2408,2510,2664,2761",
+ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81",
+ "endOffsets": "205,305,413,497,599,715,794,872,963,1057,1151,1245,1345,1438,1533,1626,1717,1809,1890,1995,2098,2196,2301,2403,2505,2659,2756,2838"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "361,466,566,674,758,860,976,1055,1133,1224,1318,1412,1506,1606,1699,1794,1887,1978,2070,2151,2256,2359,2457,2562,2664,2766,2920,11803",
+ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81",
+ "endOffsets": "461,561,669,753,855,971,1050,1128,1219,1313,1407,1501,1601,1694,1789,1882,1973,2065,2146,2251,2354,2452,2557,2659,2761,2915,3012,11880"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ja.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ja.json
new file mode 100644
index 00000000..f77563ec
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ja.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ja/values-ja.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ja/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "117",
+ "endOffsets": "312"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5106",
+ "endColumns": "121",
+ "endOffsets": "5223"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ja/values-ja.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,147,247,341,437,530,623,724",
+ "endColumns": "91,99,93,95,92,92,100,100",
+ "endOffsets": "142,242,336,432,525,618,719,820"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3252,3344,3444,3538,3634,3727,3820,11186",
+ "endColumns": "91,99,93,95,92,92,100,100",
+ "endOffsets": "3339,3439,3533,3629,3722,3815,3916,11282"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ja/values-ja.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,202,295,400,482,580,688,766,841,932,1025,1120,1214,1314,1407,1502,1596,1687,1778,1856,1958,2056,2151,2254,2350,2446,2594,2691",
+ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78",
+ "endOffsets": "197,290,395,477,575,683,761,836,927,1020,1115,1209,1309,1402,1497,1591,1682,1773,1851,1953,2051,2146,2249,2345,2441,2589,2686,2765"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "303,400,493,598,680,778,886,964,1039,1130,1223,1318,1412,1512,1605,1700,1794,1885,1976,2054,2156,2254,2349,2452,2548,2644,2792,11107",
+ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78",
+ "endOffsets": "395,488,593,675,773,881,959,1034,1125,1218,1313,1407,1507,1600,1695,1789,1880,1971,2049,2151,2249,2344,2447,2543,2639,2787,2884,11181"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ja/values-ja.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,253,320,384,453,534,616,701,805,881,944,1028,1092,1150,1231,1292,1356,1411,1470,1527,1581,1674,1730,1787,1841,1907,2007,2083,2164,2286,2348,2410,2511,2590,2665,2718,2769,2835,2905,2975,3052,3122,3186,3257,3325,3388,3479,3558,3621,3701,3783,3855,3926,3998,4046,4118,4182,4257,4334,4396,4460,4523,4590,4676,4762,4843,4926,4983,5038",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,66,63,68,80,81,84,103,75,62,83,63,57,80,60,63,54,58,56,53,92,55,56,53,65,99,75,80,121,61,61,100,78,74,52,50,65,69,69,76,69,63,70,67,62,90,78,62,79,81,71,70,71,47,71,63,74,76,61,63,62,66,85,85,80,82,56,54,72",
+ "endOffsets": "248,315,379,448,529,611,696,800,876,939,1023,1087,1145,1226,1287,1351,1406,1465,1522,1576,1669,1725,1782,1836,1902,2002,2078,2159,2281,2343,2405,2506,2585,2660,2713,2764,2830,2900,2970,3047,3117,3181,3252,3320,3383,3474,3553,3616,3696,3778,3850,3921,3993,4041,4113,4177,4252,4329,4391,4455,4518,4585,4671,4757,4838,4921,4978,5033,5106"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2889,2956,3020,3089,3170,3921,4006,4110,6305,6451,6826,6890,6948,7029,7090,7154,7209,7268,7325,7379,7472,7528,7585,7639,7705,7805,7881,7962,8084,8146,8208,8309,8388,8463,8516,8567,8633,8703,8773,8850,8920,8984,9055,9123,9186,9277,9356,9419,9499,9581,9653,9724,9796,9844,9916,9980,10055,10132,10194,10258,10321,10388,10474,10560,10641,10724,10781,10906",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,66,63,68,80,81,84,103,75,62,83,63,57,80,60,63,54,58,56,53,92,55,56,53,65,99,75,80,121,61,61,100,78,74,52,50,65,69,69,76,69,63,70,67,62,90,78,62,79,81,71,70,71,47,71,63,74,76,61,63,62,66,85,85,80,82,56,54,72",
+ "endOffsets": "298,2951,3015,3084,3165,3247,4001,4105,4181,6363,6530,6885,6943,7024,7085,7149,7204,7263,7320,7374,7467,7523,7580,7634,7700,7800,7876,7957,8079,8141,8203,8304,8383,8458,8511,8562,8628,8698,8768,8845,8915,8979,9050,9118,9181,9272,9351,9414,9494,9576,9648,9719,9791,9839,9911,9975,10050,10127,10189,10253,10316,10383,10469,10555,10636,10719,10776,10831,10974"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ja/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,293,423,539,641,769,885,986,1081,1211,1308,1437,1552,1668,1784,1840,1895",
+ "endColumns": "99,129,115,101,127,115,100,94,129,96,128,114,115,115,55,54,66",
+ "endOffsets": "292,422,538,640,768,884,985,1080,1210,1307,1436,1551,1667,1783,1839,1894,1961"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4186,4290,4424,4544,4650,4782,4902,5007,5228,5362,5463,5596,5715,5835,5955,6015,6074",
+ "endColumns": "103,133,119,105,131,119,104,98,133,100,132,118,119,119,59,58,70",
+ "endOffsets": "4285,4419,4539,4645,4777,4897,5002,5101,5357,5458,5591,5710,5830,5950,6010,6069,6140"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ja/values-ja.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,172,255,325,453,621,701",
+ "endColumns": "66,82,69,127,167,79,75",
+ "endOffsets": "167,250,320,448,616,696,772"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6145,6368,10836,10979,11287,11455,11535",
+ "endColumns": "66,82,69,127,167,79,75",
+ "endOffsets": "6207,6446,10901,11102,11450,11530,11606"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ja/values-ja.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,148,243,344",
+ "endColumns": "92,94,100,94",
+ "endOffsets": "143,238,339,434"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6212,6535,6630,6731",
+ "endColumns": "92,94,100,94",
+ "endOffsets": "6300,6625,6726,6821"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ka.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ka.json
new file mode 100644
index 00000000..4c3badb2
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ka.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ka/values-ka.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ka/values-ka.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,352,451,557,661,779",
+ "endColumns": "95,101,98,98,105,103,117,100",
+ "endOffsets": "146,248,347,446,552,656,774,875"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3449,3545,3647,3746,3845,3951,4055,12383",
+ "endColumns": "95,101,98,98,105,103,117,100",
+ "endOffsets": "3540,3642,3741,3840,3946,4050,4168,12479"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ka/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "138",
+ "endOffsets": "333"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5495",
+ "endColumns": "142",
+ "endOffsets": "5633"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ka/values-ka.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,316,427,513,618,731,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1912,2025,2131,2229,2342,2447,2551,2709,2808",
+ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81",
+ "endOffsets": "208,311,422,508,613,726,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1907,2020,2126,2224,2337,2442,2546,2704,2803,2885"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "323,431,534,645,731,836,949,1032,1111,1202,1295,1390,1484,1584,1677,1772,1867,1958,2049,2130,2243,2349,2447,2560,2665,2769,2927,12301",
+ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81",
+ "endOffsets": "426,529,640,726,831,944,1027,1106,1197,1290,1385,1479,1579,1672,1767,1862,1953,2044,2125,2238,2344,2442,2555,2660,2764,2922,3021,12378"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ka/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,294,439,563,669,819,949,1067,1171,1340,1444,1595,1719,1876,2011,2073,2130",
+ "endColumns": "100,144,123,105,149,129,117,103,168,103,150,123,156,134,61,56,71",
+ "endOffsets": "293,438,562,668,818,948,1066,1170,1339,1443,1594,1718,1875,2010,2072,2129,2201"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4485,4590,4739,4867,4977,5131,5265,5387,5638,5811,5919,6074,6202,6363,6502,6568,6629",
+ "endColumns": "104,148,127,109,153,133,121,107,172,107,154,127,160,138,65,60,75",
+ "endOffsets": "4585,4734,4862,4972,5126,5260,5382,5490,5806,5914,6069,6197,6358,6497,6563,6624,6700"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ka/values-ka.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,273,351,425,509,602,696,795,920,1008,1075,1172,1241,1304,1391,1455,1521,1581,1650,1711,1765,1880,1939,1999,2053,2125,2255,2343,2427,2565,2643,2719,2858,2952,3032,3088,3142,3208,3281,3359,3445,3529,3602,3680,3758,3833,3943,4033,4108,4202,4300,4374,4451,4551,4604,4688,4756,4845,4934,4996,5061,5124,5194,5301,5401,5501,5597,5657,5715",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,73,83,92,93,98,124,87,66,96,68,62,86,63,65,59,68,60,53,114,58,59,53,71,129,87,83,137,77,75,138,93,79,55,53,65,72,77,85,83,72,77,77,74,109,89,74,93,97,73,76,99,52,83,67,88,88,61,64,62,69,106,99,99,95,59,57,79",
+ "endOffsets": "268,346,420,504,597,691,790,915,1003,1070,1167,1236,1299,1386,1450,1516,1576,1645,1706,1760,1875,1934,1994,2048,2120,2250,2338,2422,2560,2638,2714,2853,2947,3027,3083,3137,3203,3276,3354,3440,3524,3597,3675,3753,3828,3938,4028,4103,4197,4295,4369,4446,4546,4599,4683,4751,4840,4929,4991,5056,5119,5189,5296,5396,5496,5592,5652,5710,5790"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3026,3104,3178,3262,3355,4173,4272,4397,6883,7038,7453,7522,7585,7672,7736,7802,7862,7931,7992,8046,8161,8220,8280,8334,8406,8536,8624,8708,8846,8924,9000,9139,9233,9313,9369,9423,9489,9562,9640,9726,9810,9883,9961,10039,10114,10224,10314,10389,10483,10581,10655,10732,10832,10885,10969,11037,11126,11215,11277,11342,11405,11475,11582,11682,11782,11878,11938,12081",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,73,83,92,93,98,124,87,66,96,68,62,86,63,65,59,68,60,53,114,58,59,53,71,129,87,83,137,77,75,138,93,79,55,53,65,72,77,85,83,72,77,77,74,109,89,74,93,97,73,76,99,52,83,67,88,88,61,64,62,69,106,99,99,95,59,57,79",
+ "endOffsets": "318,3099,3173,3257,3350,3444,4267,4392,4480,6945,7130,7517,7580,7667,7731,7797,7857,7926,7987,8041,8156,8215,8275,8329,8401,8531,8619,8703,8841,8919,8995,9134,9228,9308,9364,9418,9484,9557,9635,9721,9805,9878,9956,10034,10109,10219,10309,10384,10478,10576,10650,10727,10827,10880,10964,11032,11121,11210,11272,11337,11400,11470,11577,11677,11777,11873,11933,11991,12156"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ka/values-ka.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,161,264,374",
+ "endColumns": "105,102,109,104",
+ "endOffsets": "156,259,369,474"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6777,7135,7238,7348",
+ "endColumns": "105,102,109,104",
+ "endOffsets": "6878,7233,7343,7448"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ka/values-ka.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,265,350,490,659,745",
+ "endColumns": "71,87,84,139,168,85,80",
+ "endOffsets": "172,260,345,485,654,740,821"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6705,6950,11996,12161,12484,12653,12739",
+ "endColumns": "71,87,84,139,168,85,80",
+ "endOffsets": "6772,7033,12076,12296,12648,12734,12815"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-kk.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-kk.json
new file mode 100644
index 00000000..5d00c366
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-kk.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-kk/values-kk.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-kk/values-kk.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,273,351,427,506,600,688,780,892,974,1038,1133,1203,1266,1373,1438,1505,1566,1633,1695,1749,1863,1922,1983,2037,2112,2238,2326,2416,2558,2630,2703,2840,2929,3010,3067,3123,3189,3260,3337,3423,3503,3575,3651,3732,3802,3902,3989,4061,4152,4245,4319,4394,4486,4538,4620,4686,4770,4856,4918,4982,5045,5114,5218,5322,5416,5516,5577,5637",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,75,78,93,87,91,111,81,63,94,69,62,106,64,66,60,66,61,53,113,58,60,53,74,125,87,89,141,71,72,136,88,80,56,55,65,70,76,85,79,71,75,80,69,99,86,71,90,92,73,74,91,51,81,65,83,85,61,63,62,68,103,103,93,99,60,59,83",
+ "endOffsets": "268,346,422,501,595,683,775,887,969,1033,1128,1198,1261,1368,1433,1500,1561,1628,1690,1744,1858,1917,1978,2032,2107,2233,2321,2411,2553,2625,2698,2835,2924,3005,3062,3118,3184,3255,3332,3418,3498,3570,3646,3727,3797,3897,3984,4056,4147,4240,4314,4389,4481,4533,4615,4681,4765,4851,4913,4977,5040,5109,5213,5317,5411,5511,5572,5632,5716"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3014,3092,3168,3247,3341,4143,4235,4347,6816,6966,7378,7448,7511,7618,7683,7750,7811,7878,7940,7994,8108,8167,8228,8282,8357,8483,8571,8661,8803,8875,8948,9085,9174,9255,9312,9368,9434,9505,9582,9668,9748,9820,9896,9977,10047,10147,10234,10306,10397,10490,10564,10639,10731,10783,10865,10931,11015,11101,11163,11227,11290,11359,11463,11567,11661,11761,11822,11961",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,75,78,93,87,91,111,81,63,94,69,62,106,64,66,60,66,61,53,113,58,60,53,74,125,87,89,141,71,72,136,88,80,56,55,65,70,76,85,79,71,75,80,69,99,86,71,90,92,73,74,91,51,81,65,83,85,61,63,62,68,103,103,93,99,60,59,83",
+ "endOffsets": "318,3087,3163,3242,3336,3424,4230,4342,4424,6875,7056,7443,7506,7613,7678,7745,7806,7873,7935,7989,8103,8162,8223,8277,8352,8478,8566,8656,8798,8870,8943,9080,9169,9250,9307,9363,9429,9500,9577,9663,9743,9815,9891,9972,10042,10142,10229,10301,10392,10485,10559,10634,10726,10778,10860,10926,11010,11096,11158,11222,11285,11354,11458,11562,11656,11756,11817,11877,12040"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-kk/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "159",
+ "endOffsets": "354"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5415",
+ "endColumns": "163",
+ "endOffsets": "5574"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-kk/values-kk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,252,354,457,561,658,769",
+ "endColumns": "94,101,101,102,103,96,110,100",
+ "endOffsets": "145,247,349,452,556,653,764,865"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3429,3524,3626,3728,3831,3935,4032,12270",
+ "endColumns": "94,101,101,102,103,96,110,100",
+ "endOffsets": "3519,3621,3723,3826,3930,4027,4138,12366"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-kk/values-kk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,318,428,513,619,738,818,895,986,1079,1174,1268,1368,1461,1556,1653,1744,1835,1916,2021,2124,2222,2329,2435,2535,2701,2796",
+ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81",
+ "endOffsets": "208,313,423,508,614,733,813,890,981,1074,1169,1263,1363,1456,1551,1648,1739,1830,1911,2016,2119,2217,2324,2430,2530,2696,2791,2873"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "323,431,536,646,731,837,956,1036,1113,1204,1297,1392,1486,1586,1679,1774,1871,1962,2053,2134,2239,2342,2440,2547,2653,2753,2919,12188",
+ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81",
+ "endOffsets": "426,531,641,726,832,951,1031,1108,1199,1292,1387,1481,1581,1674,1769,1866,1957,2048,2129,2234,2337,2435,2542,2648,2748,2914,3009,12265"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-kk/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,292,441,563,665,801,923,1042,1147,1308,1410,1563,1688,1837,1990,2049,2104",
+ "endColumns": "98,148,121,101,135,121,118,104,160,101,152,124,148,152,58,54,73",
+ "endOffsets": "291,440,562,664,800,922,1041,1146,1307,1409,1562,1687,1836,1989,2048,2103,2177"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4429,4532,4685,4811,4917,5057,5183,5306,5579,5744,5850,6007,6136,6289,6446,6509,6568",
+ "endColumns": "102,152,125,105,139,125,122,108,164,105,156,128,152,156,62,58,77",
+ "endOffsets": "4527,4680,4806,4912,5052,5178,5301,5410,5739,5845,6002,6131,6284,6441,6504,6563,6641"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-kk/values-kk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,261,340,483,652,736",
+ "endColumns": "69,85,78,142,168,83,79",
+ "endOffsets": "170,256,335,478,647,731,811"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6646,6880,11882,12045,12371,12540,12624",
+ "endColumns": "69,85,78,142,168,83,79",
+ "endOffsets": "6711,6961,11956,12183,12535,12619,12699"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-kk/values-kk.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,259,367",
+ "endColumns": "99,103,107,104",
+ "endOffsets": "150,254,362,467"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6716,7061,7165,7273",
+ "endColumns": "99,103,107,104",
+ "endOffsets": "6811,7160,7268,7373"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-km.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-km.json
new file mode 100644
index 00000000..7be34c90
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-km.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-km/values-km.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-km/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,291,442,559,660,818,938,1055,1160,1314,1427,1594,1715,1856,2010,2070,2124",
+ "endColumns": "97,150,116,100,157,119,116,104,153,112,166,120,140,153,59,53,72",
+ "endOffsets": "290,441,558,659,817,937,1054,1159,1313,1426,1593,1714,1855,2009,2069,2123,2196"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4412,4514,4669,4790,4895,5057,5181,5302,5560,5718,5835,6006,6131,6276,6434,6498,6556",
+ "endColumns": "101,154,120,104,161,123,120,108,157,116,170,124,144,157,63,57,76",
+ "endOffsets": "4509,4664,4785,4890,5052,5176,5297,5406,5713,5830,6001,6126,6271,6429,6493,6551,6628"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-km/values-km.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,269,347,423,503,582,661,761,873,953,1018,1112,1182,1244,1331,1394,1459,1518,1583,1644,1701,1820,1878,1939,1996,2067,2197,2283,2361,2499,2574,2645,2795,2892,2970,3025,3081,3147,3227,3317,3403,3488,3567,3644,3714,3789,3901,3989,4062,4162,4261,4335,4411,4518,4572,4662,4735,4826,4922,4984,5048,5111,5182,5281,5379,5471,5567,5625,5685",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,75,79,78,78,99,111,79,64,93,69,61,86,62,64,58,64,60,56,118,57,60,56,70,129,85,77,137,74,70,149,96,77,54,55,65,79,89,85,84,78,76,69,74,111,87,72,99,98,73,75,106,53,89,72,90,95,61,63,62,70,98,97,91,95,57,59,82",
+ "endOffsets": "264,342,418,498,577,656,756,868,948,1013,1107,1177,1239,1326,1389,1454,1513,1578,1639,1696,1815,1873,1934,1991,2062,2192,2278,2356,2494,2569,2640,2790,2887,2965,3020,3076,3142,3222,3312,3398,3483,3562,3639,3709,3784,3896,3984,4057,4157,4256,4330,4406,4513,4567,4657,4730,4821,4917,4979,5043,5106,5177,5276,5374,5466,5562,5620,5680,5763"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3007,3085,3161,3241,3320,4120,4220,4332,6799,6954,7378,7448,7510,7597,7660,7725,7784,7849,7910,7967,8086,8144,8205,8262,8333,8463,8549,8627,8765,8840,8911,9061,9158,9236,9291,9347,9413,9493,9583,9669,9754,9833,9910,9980,10055,10167,10255,10328,10428,10527,10601,10677,10784,10838,10928,11001,11092,11188,11250,11314,11377,11448,11547,11645,11737,11833,11891,12029",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,75,79,78,78,99,111,79,64,93,69,61,86,62,64,58,64,60,56,118,57,60,56,70,129,85,77,137,74,70,149,96,77,54,55,65,79,89,85,84,78,76,69,74,111,87,72,99,98,73,75,106,53,89,72,90,95,61,63,62,70,98,97,91,95,57,59,82",
+ "endOffsets": "314,3080,3156,3236,3315,3394,4215,4327,4407,6859,7043,7443,7505,7592,7655,7720,7779,7844,7905,7962,8081,8139,8200,8257,8328,8458,8544,8622,8760,8835,8906,9056,9153,9231,9286,9342,9408,9488,9578,9664,9749,9828,9905,9975,10050,10162,10250,10323,10423,10522,10596,10672,10779,10833,10923,10996,11087,11183,11245,11309,11372,11443,11542,11640,11732,11828,11886,11946,12107"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-km/values-km.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,207,306,416,503,606,727,805,881,972,1065,1157,1251,1351,1444,1539,1633,1724,1815,1898,2002,2106,2206,2315,2424,2533,2695,2793",
+ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83",
+ "endOffsets": "202,301,411,498,601,722,800,876,967,1060,1152,1246,1346,1439,1534,1628,1719,1810,1893,1997,2101,2201,2310,2419,2528,2690,2788,2872"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "319,421,520,630,717,820,941,1019,1095,1186,1279,1371,1465,1565,1658,1753,1847,1938,2029,2112,2216,2320,2420,2529,2638,2747,2909,12245",
+ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83",
+ "endOffsets": "416,515,625,712,815,936,1014,1090,1181,1274,1366,1460,1560,1653,1748,1842,1933,2024,2107,2211,2315,2415,2524,2633,2742,2904,3002,12324"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-km/values-km.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,264,342,475,644,724",
+ "endColumns": "68,89,77,132,168,79,76",
+ "endOffsets": "169,259,337,470,639,719,796"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6633,6864,11951,12112,12430,12599,12679",
+ "endColumns": "68,89,77,132,168,79,76",
+ "endOffsets": "6697,6949,12024,12240,12594,12674,12751"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-km/values-km.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,152,249,382",
+ "endColumns": "96,96,132,99",
+ "endOffsets": "147,244,377,477"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6702,7048,7145,7278",
+ "endColumns": "96,96,132,99",
+ "endOffsets": "6794,7140,7273,7373"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-km/values-km.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,253,351,451,552,664,776",
+ "endColumns": "94,102,97,99,100,111,111,100",
+ "endOffsets": "145,248,346,446,547,659,771,872"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3399,3494,3597,3695,3795,3896,4008,12329",
+ "endColumns": "94,102,97,99,100,111,111,100",
+ "endOffsets": "3489,3592,3690,3790,3891,4003,4115,12425"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-km/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "144",
+ "endOffsets": "339"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5411",
+ "endColumns": "148",
+ "endOffsets": "5555"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-kn.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-kn.json
new file mode 100644
index 00000000..e32e6d26
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-kn.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-kn/values-kn.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-kn/values-kn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,256,357,463,564,672,800",
+ "endColumns": "97,102,100,105,100,107,127,100",
+ "endOffsets": "148,251,352,458,559,667,795,896"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3532,3630,3733,3834,3940,4041,4149,12532",
+ "endColumns": "97,102,100,105,100,107,127,100",
+ "endOffsets": "3625,3728,3829,3935,4036,4144,4272,12628"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-kn/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,466,595,706,845,970,1074,1169,1315,1424,1585,1716,1857,2010,2075,2134",
+ "endColumns": "106,165,128,110,138,124,103,94,145,108,160,130,140,152,64,58,80",
+ "endOffsets": "299,465,594,705,844,969,1073,1168,1314,1423,1584,1715,1856,2009,2074,2133,2214"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4582,4693,4863,4996,5111,5254,5383,5491,5736,5886,5999,6164,6299,6444,6601,6670,6733",
+ "endColumns": "110,169,132,114,142,128,107,98,149,112,164,134,144,156,68,62,84",
+ "endOffsets": "4688,4858,4991,5106,5249,5378,5486,5585,5881,5994,6159,6294,6439,6596,6665,6728,6813"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-kn/values-kn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,219,331,444,532,639,765,843,919,1010,1103,1198,1292,1392,1485,1580,1674,1765,1856,1938,2054,2164,2263,2376,2481,2595,2759,2859",
+ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82",
+ "endOffsets": "214,326,439,527,634,760,838,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1933,2049,2159,2258,2371,2476,2590,2754,2854,2937"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "319,433,545,658,746,853,979,1057,1133,1224,1317,1412,1506,1606,1699,1794,1888,1979,2070,2152,2268,2378,2477,2590,2695,2809,2973,12449",
+ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82",
+ "endOffsets": "428,540,653,741,848,974,1052,1128,1219,1312,1407,1501,1601,1694,1789,1883,1974,2065,2147,2263,2373,2472,2585,2690,2804,2968,3068,12527"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-kn/values-kn.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,269,353,436,518,633,728,835,948,1033,1096,1190,1256,1318,1421,1487,1558,1617,1693,1758,1812,1925,1983,2044,2098,2177,2293,2376,2467,2609,2688,2767,2896,2984,3068,3125,3177,3243,3323,3413,3497,3576,3653,3730,3807,3876,3993,4092,4169,4262,4357,4431,4512,4608,4659,4743,4811,4897,4985,5048,5113,5176,5244,5349,5454,5549,5652,5713,5769",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,83,82,81,114,94,106,112,84,62,93,65,61,102,65,70,58,75,64,53,112,57,60,53,78,115,82,90,141,78,78,128,87,83,56,51,65,79,89,83,78,76,76,76,68,116,98,76,92,94,73,80,95,50,83,67,85,87,62,64,62,67,104,104,94,102,60,55,81",
+ "endOffsets": "264,348,431,513,628,723,830,943,1028,1091,1185,1251,1313,1416,1482,1553,1612,1688,1753,1807,1920,1978,2039,2093,2172,2288,2371,2462,2604,2683,2762,2891,2979,3063,3120,3172,3238,3318,3408,3492,3571,3648,3725,3802,3871,3988,4087,4164,4257,4352,4426,4507,4603,4654,4738,4806,4892,4980,5043,5108,5171,5239,5344,5449,5544,5647,5708,5764,5846"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3073,3157,3240,3322,3437,4277,4384,4497,7002,7151,7562,7628,7690,7793,7859,7930,7989,8065,8130,8184,8297,8355,8416,8470,8549,8665,8748,8839,8981,9060,9139,9268,9356,9440,9497,9549,9615,9695,9785,9869,9948,10025,10102,10179,10248,10365,10464,10541,10634,10729,10803,10884,10980,11031,11115,11183,11269,11357,11420,11485,11548,11616,11721,11826,11921,12024,12085,12218",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,83,82,81,114,94,106,112,84,62,93,65,61,102,65,70,58,75,64,53,112,57,60,53,78,115,82,90,141,78,78,128,87,83,56,51,65,79,89,83,78,76,76,76,68,116,98,76,92,94,73,80,95,50,83,67,85,87,62,64,62,67,104,104,94,102,60,55,81",
+ "endOffsets": "314,3152,3235,3317,3432,3527,4379,4492,4577,7060,7240,7623,7685,7788,7854,7925,7984,8060,8125,8179,8292,8350,8411,8465,8544,8660,8743,8834,8976,9055,9134,9263,9351,9435,9492,9544,9610,9690,9780,9864,9943,10020,10097,10174,10243,10360,10459,10536,10629,10724,10798,10879,10975,11026,11110,11178,11264,11352,11415,11480,11543,11611,11716,11821,11916,12019,12080,12136,12295"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-kn/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "141",
+ "endOffsets": "336"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5590",
+ "endColumns": "145",
+ "endOffsets": "5731"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-kn/values-kn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,261,338,487,656,736",
+ "endColumns": "69,85,76,148,168,79,76",
+ "endOffsets": "170,256,333,482,651,731,808"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6818,7065,12141,12300,12633,12802,12882",
+ "endColumns": "69,85,76,148,168,79,76",
+ "endOffsets": "6883,7146,12213,12444,12797,12877,12954"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-kn/values-kn.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,169,269,385",
+ "endColumns": "113,99,115,100",
+ "endOffsets": "164,264,380,481"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6888,7245,7345,7461",
+ "endColumns": "113,99,115,100",
+ "endOffsets": "6997,7340,7456,7557"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ko.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ko.json
new file mode 100644
index 00000000..2eace5c1
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ko.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ko/values-ko.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ko/values-ko.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,249,314,378,447,521,600,683,789,864,926,1007,1069,1126,1213,1273,1331,1389,1448,1505,1559,1654,1710,1767,1821,1887,1991,2066,2143,2264,2329,2394,2494,2573,2648,2698,2749,2815,2879,2949,3026,3097,3165,3236,3303,3373,3466,3546,3620,3700,3782,3854,3919,3991,4039,4112,4176,4251,4328,4390,4454,4517,4584,4668,4746,4826,4904,4958,5013",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,64,63,68,73,78,82,105,74,61,80,61,56,86,59,57,57,58,56,53,94,55,56,53,65,103,74,76,120,64,64,99,78,74,49,50,65,63,69,76,70,67,70,66,69,92,79,73,79,81,71,64,71,47,72,63,74,76,61,63,62,66,83,77,79,77,53,54,71",
+ "endOffsets": "244,309,373,442,516,595,678,784,859,921,1002,1064,1121,1208,1268,1326,1384,1443,1500,1554,1649,1705,1762,1816,1882,1986,2061,2138,2259,2324,2389,2489,2568,2643,2693,2744,2810,2874,2944,3021,3092,3160,3231,3298,3368,3461,3541,3615,3695,3777,3849,3914,3986,4034,4107,4171,4246,4323,4385,4449,4512,4579,4663,4741,4821,4899,4953,5008,5080"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2879,2944,3008,3077,3151,3907,3990,4096,6270,6413,6784,6846,6903,6990,7050,7108,7166,7225,7282,7336,7431,7487,7544,7598,7664,7768,7843,7920,8041,8106,8171,8271,8350,8425,8475,8526,8592,8656,8726,8803,8874,8942,9013,9080,9150,9243,9323,9397,9477,9559,9631,9696,9768,9816,9889,9953,10028,10105,10167,10231,10294,10361,10445,10523,10603,10681,10735,10864",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,64,63,68,73,78,82,105,74,61,80,61,56,86,59,57,57,58,56,53,94,55,56,53,65,103,74,76,120,64,64,99,78,74,49,50,65,63,69,76,70,67,70,66,69,92,79,73,79,81,71,64,71,47,72,63,74,76,61,63,62,66,83,77,79,77,53,54,71",
+ "endOffsets": "294,2939,3003,3072,3146,3225,3985,4091,4166,6327,6489,6841,6898,6985,7045,7103,7161,7220,7277,7331,7426,7482,7539,7593,7659,7763,7838,7915,8036,8101,8166,8266,8345,8420,8470,8521,8587,8651,8721,8798,8869,8937,9008,9075,9145,9238,9318,9392,9472,9554,9626,9691,9763,9811,9884,9948,10023,10100,10162,10226,10289,10356,10440,10518,10598,10676,10730,10785,10931"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ko/values-ko.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,141,234,337",
+ "endColumns": "85,92,102,93",
+ "endOffsets": "136,229,332,426"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6184,6494,6587,6690",
+ "endColumns": "85,92,102,93",
+ "endOffsets": "6265,6582,6685,6779"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ko/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "116",
+ "endOffsets": "311"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5066",
+ "endColumns": "120",
+ "endOffsets": "5182"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ko/values-ko.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,147,247,341,438,534,632,732",
+ "endColumns": "91,99,93,96,95,97,99,100",
+ "endOffsets": "142,242,336,433,529,627,727,828"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3230,3322,3422,3516,3613,3709,3807,11147",
+ "endColumns": "91,99,93,96,95,97,99,100",
+ "endOffsets": "3317,3417,3511,3608,3704,3802,3902,11243"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ko/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,293,428,540,638,749,862,965,1056,1197,1296,1428,1542,1656,1771,1826,1880",
+ "endColumns": "99,134,111,97,110,112,102,90,140,98,131,113,113,114,54,53,70",
+ "endOffsets": "292,427,539,637,748,861,964,1055,1196,1295,1427,1541,1655,1770,1825,1879,1950"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4171,4275,4414,4530,4632,4747,4864,4971,5187,5332,5435,5571,5689,5807,5926,5985,6043",
+ "endColumns": "103,138,115,101,114,116,106,94,144,102,135,117,117,118,58,57,74",
+ "endOffsets": "4270,4409,4525,4627,4742,4859,4966,5061,5327,5430,5566,5684,5802,5921,5980,6038,6113"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ko/values-ko.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,202,296,397,479,577,683,763,838,929,1022,1117,1211,1311,1404,1499,1593,1684,1775,1855,1953,2047,2142,2242,2339,2439,2591,2685",
+ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78",
+ "endOffsets": "197,291,392,474,572,678,758,833,924,1017,1112,1206,1306,1399,1494,1588,1679,1770,1850,1948,2042,2137,2237,2334,2434,2586,2680,2759"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "299,396,490,591,673,771,877,957,1032,1123,1216,1311,1405,1505,1598,1693,1787,1878,1969,2049,2147,2241,2336,2436,2533,2633,2785,11068",
+ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78",
+ "endOffsets": "391,485,586,668,766,872,952,1027,1118,1211,1306,1400,1500,1593,1688,1782,1873,1964,2044,2142,2236,2331,2431,2528,2628,2780,2874,11142"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ko/values-ko.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,171,252,326,458,627,709",
+ "endColumns": "65,80,73,131,168,81,75",
+ "endOffsets": "166,247,321,453,622,704,780"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6118,6332,10790,10936,11248,11417,11499",
+ "endColumns": "65,80,73,131,168,81,75",
+ "endOffsets": "6179,6408,10859,11063,11412,11494,11570"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ky.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ky.json
new file mode 100644
index 00000000..16dead4f
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ky.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ky/values-ky.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ky/values-ky.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,155,257,360,467,571,675,786",
+ "endColumns": "99,101,102,106,103,103,110,100",
+ "endOffsets": "150,252,355,462,566,670,781,882"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3505,3605,3707,3810,3917,4021,4125,12424",
+ "endColumns": "99,101,102,106,103,103,110,100",
+ "endOffsets": "3600,3702,3805,3912,4016,4120,4231,12520"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ky/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "153",
+ "endOffsets": "348"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5549",
+ "endColumns": "157",
+ "endOffsets": "5702"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ky/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,440,565,668,809,932,1043,1148,1313,1416,1562,1688,1821,1981,2041,2097",
+ "endColumns": "101,144,124,102,140,122,110,104,164,102,145,125,132,159,59,55,73",
+ "endOffsets": "294,439,564,667,808,931,1042,1147,1312,1415,1561,1687,1820,1980,2040,2096,2170"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4562,4668,4817,4946,5053,5198,5325,5440,5707,5876,5983,6133,6263,6400,6564,6628,6688",
+ "endColumns": "105,148,128,106,144,126,114,108,168,106,149,129,136,163,63,59,77",
+ "endOffsets": "4663,4812,4941,5048,5193,5320,5435,5544,5871,5978,6128,6258,6395,6559,6623,6683,6761"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ky/values-ky.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,348,433,518,633,743,844,985,1069,1133,1227,1297,1358,1445,1508,1572,1631,1705,1767,1821,1938,1996,2057,2111,2185,2307,2391,2487,2619,2697,2775,2904,2993,3073,3134,3189,3255,3324,3401,3488,3569,3643,3719,3809,3882,3984,4069,4148,4238,4330,4404,4489,4579,4631,4715,4780,4865,4950,5012,5076,5139,5208,5325,5433,5533,5637,5702,5761",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,82,84,84,114,109,100,140,83,63,93,69,60,86,62,63,58,73,61,53,116,57,60,53,73,121,83,95,131,77,77,128,88,79,60,54,65,68,76,86,80,73,75,89,72,101,84,78,89,91,73,84,89,51,83,64,84,84,61,63,62,68,116,107,99,103,64,58,81",
+ "endOffsets": "260,343,428,513,628,738,839,980,1064,1128,1222,1292,1353,1440,1503,1567,1626,1700,1762,1816,1933,1991,2052,2106,2180,2302,2386,2482,2614,2692,2770,2899,2988,3068,3129,3184,3250,3319,3396,3483,3564,3638,3714,3804,3877,3979,4064,4143,4233,4325,4399,4484,4574,4626,4710,4775,4860,4945,5007,5071,5134,5203,5320,5428,5528,5632,5697,5756,5838"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3027,3110,3195,3280,3395,4236,4337,4478,6936,7092,7506,7576,7637,7724,7787,7851,7910,7984,8046,8100,8217,8275,8336,8390,8464,8586,8670,8766,8898,8976,9054,9183,9272,9352,9413,9468,9534,9603,9680,9767,9848,9922,9998,10088,10161,10263,10348,10427,10517,10609,10683,10768,10858,10910,10994,11059,11144,11229,11291,11355,11418,11487,11604,11712,11812,11916,11981,12119",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,82,84,84,114,109,100,140,83,63,93,69,60,86,62,63,58,73,61,53,116,57,60,53,73,121,83,95,131,77,77,128,88,79,60,54,65,68,76,86,80,73,75,89,72,101,84,78,89,91,73,84,89,51,83,64,84,84,61,63,62,68,116,107,99,103,64,58,81",
+ "endOffsets": "310,3105,3190,3275,3390,3500,4332,4473,4557,6995,7181,7571,7632,7719,7782,7846,7905,7979,8041,8095,8212,8270,8331,8385,8459,8581,8665,8761,8893,8971,9049,9178,9267,9347,9408,9463,9529,9598,9675,9762,9843,9917,9993,10083,10156,10258,10343,10422,10512,10604,10678,10763,10853,10905,10989,11054,11139,11224,11286,11350,11413,11482,11599,11707,11807,11911,11976,12035,12196"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ky/values-ky.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,268,347,488,657,738",
+ "endColumns": "70,91,78,140,168,80,78",
+ "endOffsets": "171,263,342,483,652,733,812"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6766,7000,12040,12201,12525,12694,12775",
+ "endColumns": "70,91,78,140,168,80,78",
+ "endOffsets": "6832,7087,12114,12337,12689,12770,12849"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ky/values-ky.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,216,325,437,522,627,744,823,901,992,1085,1180,1274,1374,1467,1562,1657,1748,1839,1920,2026,2131,2229,2336,2439,2554,2715,2817",
+ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81",
+ "endOffsets": "211,320,432,517,622,739,818,896,987,1080,1175,1269,1369,1462,1557,1652,1743,1834,1915,2021,2126,2224,2331,2434,2549,2710,2812,2894"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,426,535,647,732,837,954,1033,1111,1202,1295,1390,1484,1584,1677,1772,1867,1958,2049,2130,2236,2341,2439,2546,2649,2764,2925,12342",
+ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81",
+ "endOffsets": "421,530,642,727,832,949,1028,1106,1197,1290,1385,1479,1579,1672,1767,1862,1953,2044,2125,2231,2336,2434,2541,2644,2759,2920,3022,12419"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ky/values-ky.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,154,259,368",
+ "endColumns": "98,104,108,105",
+ "endOffsets": "149,254,363,469"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6837,7186,7291,7400",
+ "endColumns": "98,104,108,105",
+ "endOffsets": "6931,7286,7395,7501"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-land.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-land.json
new file mode 100644
index 00000000..8d000da8
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-land.json
@@ -0,0 +1,38 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-land/values-land.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-land/values-land.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,26,35,40",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,130,204,277,347,419,489,554,621,691,763,832,901,983,1073,1149,1217,1284,1362,1427,1494,1666,2235,2504",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,25,34,39,42",
+ "endColumns": "74,73,72,69,71,69,64,66,69,71,68,68,81,89,75,67,66,77,64,66,10,10,10,10",
+ "endOffsets": "125,199,272,342,414,484,549,616,686,758,827,896,978,1068,1144,1212,1279,1357,1422,1489,1661,2230,2499,2727"
+ },
+ "to": {
+ "startLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,29,38,43",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "264,339,413,486,556,628,698,763,830,900,972,1041,1110,1192,1282,1358,1426,1493,1571,1636,1703,1875,2444,2713",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,28,37,42,45",
+ "endColumns": "74,73,72,69,71,69,64,66,69,71,68,68,81,89,75,67,66,77,64,66,10,10,10,10",
+ "endOffsets": "334,408,481,551,623,693,758,825,895,967,1036,1105,1187,1277,1353,1421,1488,1566,1631,1698,1870,2439,2708,2936"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-land/values-land.xml",
+ "from": {
+ "startLines": "2,3,4",
+ "startColumns": "4,4,4",
+ "startOffsets": "55,125,196",
+ "endColumns": "69,70,67",
+ "endOffsets": "120,191,259"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-large-v4.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-large-v4.json
new file mode 100644
index 00000000..c9234554
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-large-v4.json
@@ -0,0 +1,36 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-large-v4/values-large-v4.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-large-v4/values-large-v4.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,114,185,256,326,396,464,532,636",
+ "endColumns": "58,70,70,69,69,67,67,103,115",
+ "endOffsets": "109,180,251,321,391,459,527,631,747"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-large-v4/values-large-v4.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,169,285,407",
+ "endColumns": "113,115,121,133",
+ "endOffsets": "164,280,402,536"
+ },
+ "to": {
+ "startLines": "11,12,13,14",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "752,866,982,1104",
+ "endColumns": "113,115,121,133",
+ "endOffsets": "861,977,1099,1233"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ldltr-v21.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ldltr-v21.json
new file mode 100644
index 00000000..876fba38
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ldltr-v21.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ldltr-v21/values-ldltr-v21.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ldltr-v21/values-ldltr-v21.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "112",
+ "endOffsets": "163"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ldrtl-v17.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ldrtl-v17.json
new file mode 100644
index 00000000..fdf9b3cb
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ldrtl-v17.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ldrtl-v17/values-ldrtl-v17.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ldrtl-v17/values-ldrtl-v17.xml",
+ "from": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,191",
+ "endColumns": "135,140",
+ "endOffsets": "186,327"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-lo.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-lo.json
new file mode 100644
index 00000000..edf7f546
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-lo.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-lo/values-lo.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-lo/values-lo.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,261,341,479,648,728",
+ "endColumns": "69,85,79,137,168,79,77",
+ "endOffsets": "170,256,336,474,643,723,801"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6658,6892,11793,11952,12273,12442,12522",
+ "endColumns": "69,85,79,137,168,79,77",
+ "endOffsets": "6723,6973,11868,12085,12437,12517,12595"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-lo/values-lo.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,153,251,366",
+ "endColumns": "97,97,114,99",
+ "endOffsets": "148,246,361,461"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6728,7067,7165,7280",
+ "endColumns": "97,97,114,99",
+ "endOffsets": "6821,7160,7275,7375"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-lo/values-lo.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,254,353,451,552,650,761",
+ "endColumns": "95,102,98,97,100,97,110,100",
+ "endOffsets": "146,249,348,446,547,645,756,857"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3381,3477,3580,3679,3777,3878,3976,12172",
+ "endColumns": "95,102,98,97,100,97,110,100",
+ "endOffsets": "3472,3575,3674,3772,3873,3971,4082,12268"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-lo/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "127",
+ "endOffsets": "322"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5420",
+ "endColumns": "131",
+ "endOffsets": "5547"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-lo/values-lo.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,208,311,424,509,613,724,802,879,970,1063,1155,1249,1349,1442,1537,1633,1724,1815,1896,2003,2107,2205,2308,2412,2516,2673,2772",
+ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81",
+ "endOffsets": "203,306,419,504,608,719,797,874,965,1058,1150,1244,1344,1437,1532,1628,1719,1810,1891,1998,2102,2200,2303,2407,2511,2668,2767,2849"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "319,422,525,638,723,827,938,1016,1093,1184,1277,1369,1463,1563,1656,1751,1847,1938,2029,2110,2217,2321,2419,2522,2626,2730,2887,12090",
+ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81",
+ "endOffsets": "417,520,633,718,822,933,1011,1088,1179,1272,1364,1458,1558,1651,1746,1842,1933,2024,2105,2212,2316,2414,2517,2621,2725,2882,2981,12167"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-lo/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,463,589,692,840,961,1065,1177,1325,1426,1588,1713,1880,2037,2101,2166",
+ "endColumns": "103,165,125,102,147,120,103,111,147,100,161,124,166,156,63,64,80",
+ "endOffsets": "296,462,588,691,839,960,1064,1176,1324,1425,1587,1712,1879,2036,2100,2165,2246"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4404,4512,4682,4812,4919,5071,5196,5304,5552,5704,5809,5975,6104,6275,6436,6504,6573",
+ "endColumns": "107,169,129,106,151,124,107,115,151,104,165,128,170,160,67,68,84",
+ "endOffsets": "4507,4677,4807,4914,5066,5191,5299,5415,5699,5804,5970,6099,6270,6431,6499,6568,6653"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-lo/values-lo.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,269,343,414,495,581,664,779,898,981,1047,1136,1205,1264,1359,1425,1490,1548,1613,1674,1734,1840,1901,1961,2019,2090,2209,2295,2377,2520,2595,2671,2802,2892,2970,3025,3080,3146,3215,3289,3368,3447,3520,3597,3666,3736,3833,3918,3993,4086,4179,4253,4322,4416,4468,4551,4618,4702,4786,4848,4912,4975,5045,5144,5242,5337,5431,5490,5549",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,73,70,80,85,82,114,118,82,65,88,68,58,94,65,64,57,64,60,59,105,60,59,57,70,118,85,81,142,74,75,130,89,77,54,54,65,68,73,78,78,72,76,68,69,96,84,74,92,92,73,68,93,51,82,66,83,83,61,63,62,69,98,97,94,93,58,58,78",
+ "endOffsets": "264,338,409,490,576,659,774,893,976,1042,1131,1200,1259,1354,1420,1485,1543,1608,1669,1729,1835,1896,1956,2014,2085,2204,2290,2372,2515,2590,2666,2797,2887,2965,3020,3075,3141,3210,3284,3363,3442,3515,3592,3661,3731,3828,3913,3988,4081,4174,4248,4317,4411,4463,4546,4613,4697,4781,4843,4907,4970,5040,5139,5237,5332,5426,5485,5544,5623"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2986,3060,3131,3212,3298,4087,4202,4321,6826,6978,7380,7449,7508,7603,7669,7734,7792,7857,7918,7978,8084,8145,8205,8263,8334,8453,8539,8621,8764,8839,8915,9046,9136,9214,9269,9324,9390,9459,9533,9612,9691,9764,9841,9910,9980,10077,10162,10237,10330,10423,10497,10566,10660,10712,10795,10862,10946,11030,11092,11156,11219,11289,11388,11486,11581,11675,11734,11873",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,73,70,80,85,82,114,118,82,65,88,68,58,94,65,64,57,64,60,59,105,60,59,57,70,118,85,81,142,74,75,130,89,77,54,54,65,68,73,78,78,72,76,68,69,96,84,74,92,92,73,68,93,51,82,66,83,83,61,63,62,69,98,97,94,93,58,58,78",
+ "endOffsets": "314,3055,3126,3207,3293,3376,4197,4316,4399,6887,7062,7444,7503,7598,7664,7729,7787,7852,7913,7973,8079,8140,8200,8258,8329,8448,8534,8616,8759,8834,8910,9041,9131,9209,9264,9319,9385,9454,9528,9607,9686,9759,9836,9905,9975,10072,10157,10232,10325,10418,10492,10561,10655,10707,10790,10857,10941,11025,11087,11151,11214,11284,11383,11481,11576,11670,11729,11788,11947"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-lt.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-lt.json
new file mode 100644
index 00000000..015a5003
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-lt.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-lt/values-lt.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-lt/values-lt.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,269,347,493,662,747",
+ "endColumns": "72,90,77,145,168,84,80",
+ "endOffsets": "173,264,342,488,657,742,823"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6933,7177,12329,12489,12820,12989,13074",
+ "endColumns": "72,90,77,145,168,84,80",
+ "endOffsets": "7001,7263,12402,12630,12984,13069,13150"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-lt/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "154",
+ "endOffsets": "349"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5673",
+ "endColumns": "158",
+ "endOffsets": "5827"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-lt/values-lt.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,375,454,532,615,709,799,895,1013,1097,1163,1262,1340,1405,1515,1578,1650,1709,1783,1844,1898,2022,2083,2145,2199,2277,2411,2499,2583,2724,2803,2887,3030,3127,3204,3260,3314,3380,3455,3534,3622,3702,3778,3856,3929,4006,4113,4200,4281,4371,4463,4535,4616,4708,4763,4845,4911,4996,5083,5145,5209,5272,5344,5455,5571,5672,5781,5841,5899",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,78,77,82,93,89,95,117,83,65,98,77,64,109,62,71,58,73,60,53,123,60,61,53,77,133,87,83,140,78,83,142,96,76,55,53,65,74,78,87,79,75,77,72,76,106,86,80,89,91,71,80,91,54,81,65,84,86,61,63,62,71,110,115,100,108,59,57,81",
+ "endOffsets": "370,449,527,610,704,794,890,1008,1092,1158,1257,1335,1400,1510,1573,1645,1704,1778,1839,1893,2017,2078,2140,2194,2272,2406,2494,2578,2719,2798,2882,3025,3122,3199,3255,3309,3375,3450,3529,3617,3697,3773,3851,3924,4001,4108,4195,4276,4366,4458,4530,4611,4703,4758,4840,4906,4991,5078,5140,5204,5267,5339,5450,5566,5667,5776,5836,5894,5976"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3194,3273,3351,3434,3528,4369,4465,4583,7111,7268,7692,7770,7835,7945,8008,8080,8139,8213,8274,8328,8452,8513,8575,8629,8707,8841,8929,9013,9154,9233,9317,9460,9557,9634,9690,9744,9810,9885,9964,10052,10132,10208,10286,10359,10436,10543,10630,10711,10801,10893,10965,11046,11138,11193,11275,11341,11426,11513,11575,11639,11702,11774,11885,12001,12102,12211,12271,12407",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,78,77,82,93,89,95,117,83,65,98,77,64,109,62,71,58,73,60,53,123,60,61,53,77,133,87,83,140,78,83,142,96,76,55,53,65,74,78,87,79,75,77,72,76,106,86,80,89,91,71,80,91,54,81,65,84,86,61,63,62,71,110,115,100,108,59,57,81",
+ "endOffsets": "420,3268,3346,3429,3523,3613,4460,4578,4662,7172,7362,7765,7830,7940,8003,8075,8134,8208,8269,8323,8447,8508,8570,8624,8702,8836,8924,9008,9149,9228,9312,9455,9552,9629,9685,9739,9805,9880,9959,10047,10127,10203,10281,10354,10431,10538,10625,10706,10796,10888,10960,11041,11133,11188,11270,11336,11421,11508,11570,11634,11697,11769,11880,11996,12097,12206,12266,12324,12484"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-lt/values-lt.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,221,325,438,525,627,749,832,912,1006,1102,1199,1295,1398,1494,1592,1688,1782,1876,1959,2068,2176,2276,2386,2491,2597,2773,2874",
+ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83",
+ "endOffsets": "216,320,433,520,622,744,827,907,1001,1097,1194,1290,1393,1489,1587,1683,1777,1871,1954,2063,2171,2271,2381,2486,2592,2768,2869,2953"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "425,541,645,758,845,947,1069,1152,1232,1326,1422,1519,1615,1718,1814,1912,2008,2102,2196,2279,2388,2496,2596,2706,2811,2917,3093,12635",
+ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83",
+ "endOffsets": "536,640,753,840,942,1064,1147,1227,1321,1417,1514,1610,1713,1809,1907,2003,2097,2191,2274,2383,2491,2591,2701,2806,2912,3088,3189,12714"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-lt/values-lt.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,160,265,379",
+ "endColumns": "104,104,113,105",
+ "endOffsets": "155,260,374,480"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7006,7367,7472,7586",
+ "endColumns": "104,104,113,105",
+ "endOffsets": "7106,7467,7581,7687"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-lt/values-lt.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,263,362,465,576,686,806",
+ "endColumns": "97,109,98,102,110,109,119,100",
+ "endOffsets": "148,258,357,460,571,681,801,902"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3618,3716,3826,3925,4028,4139,4249,12719",
+ "endColumns": "97,109,98,102,110,109,119,100",
+ "endOffsets": "3711,3821,3920,4023,4134,4244,4364,12815"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-lt/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,444,572,675,824,950,1065,1167,1329,1434,1595,1725,1874,2020,2084,2146",
+ "endColumns": "102,147,127,102,148,125,114,101,161,104,160,129,148,145,63,61,85",
+ "endOffsets": "295,443,571,674,823,949,1064,1166,1328,1433,1594,1724,1873,2019,2083,2145,2231"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4667,4774,4926,5058,5165,5318,5448,5567,5832,5998,6107,6272,6406,6559,6709,6777,6843",
+ "endColumns": "106,151,131,106,152,129,118,105,165,108,164,133,152,149,67,65,89",
+ "endOffsets": "4769,4921,5053,5160,5313,5443,5562,5668,5993,6102,6267,6401,6554,6704,6772,6838,6928"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-lv.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-lv.json
new file mode 100644
index 00000000..e250cd91
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-lv.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-lv/values-lv.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-lv/values-lv.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,272,352,498,667,752",
+ "endColumns": "68,97,79,145,168,84,81",
+ "endOffsets": "169,267,347,493,662,747,829"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "7057,7294,12395,12552,12882,13051,13136",
+ "endColumns": "68,97,79,145,168,84,81",
+ "endOffsets": "7121,7387,12470,12693,13046,13131,13213"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-lv/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,453,582,686,824,951,1064,1166,1337,1442,1607,1738,1903,2054,2114,2178",
+ "endColumns": "102,156,128,103,137,126,112,101,170,104,164,130,164,150,59,63,84",
+ "endOffsets": "295,452,581,685,823,950,1063,1165,1336,1441,1606,1737,1902,2053,2113,2177,2262"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4753,4860,5021,5154,5262,5404,5535,5652,5924,6099,6208,6377,6512,6681,6836,6900,6968",
+ "endColumns": "106,160,132,107,141,130,116,105,174,108,168,134,168,154,63,67,88",
+ "endOffsets": "4855,5016,5149,5257,5399,5530,5647,5753,6094,6203,6372,6507,6676,6831,6895,6963,7052"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-lv/values-lv.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,355,456,563,671,786",
+ "endColumns": "97,101,99,100,106,107,114,100",
+ "endOffsets": "148,250,350,451,558,666,781,882"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3704,3802,3904,4004,4105,4212,4320,12781",
+ "endColumns": "97,101,99,100,106,107,114,100",
+ "endOffsets": "3797,3899,3999,4100,4207,4315,4430,12877"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-lv/values-lv.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,335,444,530,634,756,838,918,1028,1136,1242,1351,1462,1565,1677,1784,1889,1989,2074,2183,2294,2393,2504,2611,2716,2890,2989",
+ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82",
+ "endOffsets": "220,330,439,525,629,751,833,913,1023,1131,1237,1346,1457,1560,1672,1779,1884,1984,2069,2178,2289,2388,2499,2606,2711,2885,2984,3067"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "374,494,604,713,799,903,1025,1107,1187,1297,1405,1511,1620,1731,1834,1946,2053,2158,2258,2343,2452,2563,2662,2773,2880,2985,3159,12698",
+ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82",
+ "endOffsets": "489,599,708,794,898,1020,1102,1182,1292,1400,1506,1615,1726,1829,1941,2048,2153,2253,2338,2447,2558,2657,2768,2875,2980,3154,3253,12776"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-lv/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "161",
+ "endOffsets": "356"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5758",
+ "endColumns": "165",
+ "endOffsets": "5919"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-lv/values-lv.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,158,257,373",
+ "endColumns": "102,98,115,101",
+ "endOffsets": "153,252,368,470"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7126,7486,7585,7701",
+ "endColumns": "102,98,115,101",
+ "endOffsets": "7224,7580,7696,7798"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-lv/values-lv.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,324,411,496,577,682,770,871,1005,1088,1153,1247,1320,1381,1506,1572,1640,1701,1773,1833,1887,2007,2067,2129,2183,2260,2390,2477,2559,2700,2780,2865,2992,3083,3159,3213,3266,3332,3406,3487,3571,3651,3724,3801,3878,3952,4062,4155,4230,4320,4411,4483,4561,4652,4706,4789,4857,4941,5028,5090,5154,5217,5289,5399,5512,5615,5724,5782,5839",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,86,84,80,104,87,100,133,82,64,93,72,60,124,65,67,60,71,59,53,119,59,61,53,76,129,86,81,140,79,84,126,90,75,53,52,65,73,80,83,79,72,76,76,73,109,92,74,89,90,71,77,90,53,82,67,83,86,61,63,62,71,109,112,102,108,57,56,76",
+ "endOffsets": "319,406,491,572,677,765,866,1000,1083,1148,1242,1315,1376,1501,1567,1635,1696,1768,1828,1882,2002,2062,2124,2178,2255,2385,2472,2554,2695,2775,2860,2987,3078,3154,3208,3261,3327,3401,3482,3566,3646,3719,3796,3873,3947,4057,4150,4225,4315,4406,4478,4556,4647,4701,4784,4852,4936,5023,5085,5149,5212,5284,5394,5507,5610,5719,5777,5834,5911"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3258,3345,3430,3511,3616,4435,4536,4670,7229,7392,7803,7876,7937,8062,8128,8196,8257,8329,8389,8443,8563,8623,8685,8739,8816,8946,9033,9115,9256,9336,9421,9548,9639,9715,9769,9822,9888,9962,10043,10127,10207,10280,10357,10434,10508,10618,10711,10786,10876,10967,11039,11117,11208,11262,11345,11413,11497,11584,11646,11710,11773,11845,11955,12068,12171,12280,12338,12475",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,86,84,80,104,87,100,133,82,64,93,72,60,124,65,67,60,71,59,53,119,59,61,53,76,129,86,81,140,79,84,126,90,75,53,52,65,73,80,83,79,72,76,76,73,109,92,74,89,90,71,77,90,53,82,67,83,86,61,63,62,71,109,112,102,108,57,56,76",
+ "endOffsets": "369,3340,3425,3506,3611,3699,4531,4665,4748,7289,7481,7871,7932,8057,8123,8191,8252,8324,8384,8438,8558,8618,8680,8734,8811,8941,9028,9110,9251,9331,9416,9543,9634,9710,9764,9817,9883,9957,10038,10122,10202,10275,10352,10429,10503,10613,10706,10781,10871,10962,11034,11112,11203,11257,11340,11408,11492,11579,11641,11705,11768,11840,11950,12063,12166,12275,12333,12390,12547"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-mk.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-mk.json
new file mode 100644
index 00000000..0669bf6b
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-mk.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-mk/values-mk.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-mk/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "132",
+ "endOffsets": "327"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5510",
+ "endColumns": "136",
+ "endOffsets": "5642"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-mk/values-mk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,263,344,488,657,743",
+ "endColumns": "70,86,80,143,168,85,81",
+ "endOffsets": "171,258,339,483,652,738,820"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6734,6984,12063,12229,12559,12728,12814",
+ "endColumns": "70,86,80,143,168,85,81",
+ "endOffsets": "6800,7066,12139,12368,12723,12809,12891"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-mk/values-mk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,352,450,555,658,774",
+ "endColumns": "97,101,96,97,104,102,115,100",
+ "endOffsets": "148,250,347,445,550,653,769,870"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3465,3563,3665,3762,3860,3965,4068,12458",
+ "endColumns": "97,101,96,97,104,102,115,100",
+ "endOffsets": "3558,3660,3757,3855,3960,4063,4179,12554"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-mk/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,453,582,688,829,958,1074,1180,1333,1436,1598,1727,1876,2031,2096,2156",
+ "endColumns": "102,156,128,105,140,128,115,105,152,102,161,128,148,154,64,59,74",
+ "endOffsets": "295,452,581,687,828,957,1073,1179,1332,1435,1597,1726,1875,2030,2095,2155,2230"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4491,4598,4759,4892,5002,5147,5280,5400,5647,5804,5911,6077,6210,6363,6522,6591,6655",
+ "endColumns": "106,160,132,109,144,132,119,109,156,106,165,132,152,158,68,63,78",
+ "endOffsets": "4593,4754,4887,4997,5142,5275,5395,5505,5799,5906,6072,6205,6358,6517,6586,6650,6729"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-mk/values-mk.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,168,273,388",
+ "endColumns": "112,104,114,100",
+ "endOffsets": "163,268,383,484"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6805,7162,7267,7382",
+ "endColumns": "112,104,114,100",
+ "endOffsets": "6913,7262,7377,7478"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-mk/values-mk.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,271,352,432,514,611,700,796,920,1007,1073,1164,1234,1298,1401,1464,1529,1589,1657,1720,1775,1903,1960,2022,2077,2152,2292,2379,2462,2595,2677,2762,2908,2995,3072,3126,3181,3247,3320,3396,3485,3563,3636,3712,3787,3857,3966,4054,4129,4221,4313,4387,4461,4553,4606,4688,4755,4838,4925,4987,5051,5114,5184,5298,5413,5515,5627,5685,5744",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,79,81,96,88,95,123,86,65,90,69,63,102,62,64,59,67,62,54,127,56,61,54,74,139,86,82,132,81,84,145,86,76,53,54,65,72,75,88,77,72,75,74,69,108,87,74,91,91,73,73,91,52,81,66,82,86,61,63,62,69,113,114,101,111,57,58,84",
+ "endOffsets": "266,347,427,509,606,695,791,915,1002,1068,1159,1229,1293,1396,1459,1524,1584,1652,1715,1770,1898,1955,2017,2072,2147,2287,2374,2457,2590,2672,2757,2903,2990,3067,3121,3176,3242,3315,3391,3480,3558,3631,3707,3782,3852,3961,4049,4124,4216,4308,4382,4456,4548,4601,4683,4750,4833,4920,4982,5046,5109,5179,5293,5408,5510,5622,5680,5739,5824"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3036,3117,3197,3279,3376,4184,4280,4404,6918,7071,7483,7553,7617,7720,7783,7848,7908,7976,8039,8094,8222,8279,8341,8396,8471,8611,8698,8781,8914,8996,9081,9227,9314,9391,9445,9500,9566,9639,9715,9804,9882,9955,10031,10106,10176,10285,10373,10448,10540,10632,10706,10780,10872,10925,11007,11074,11157,11244,11306,11370,11433,11503,11617,11732,11834,11946,12004,12144",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,79,81,96,88,95,123,86,65,90,69,63,102,62,64,59,67,62,54,127,56,61,54,74,139,86,82,132,81,84,145,86,76,53,54,65,72,75,88,77,72,75,74,69,108,87,74,91,91,73,73,91,52,81,66,82,86,61,63,62,69,113,114,101,111,57,58,84",
+ "endOffsets": "316,3112,3192,3274,3371,3460,4275,4399,4486,6979,7157,7548,7612,7715,7778,7843,7903,7971,8034,8089,8217,8274,8336,8391,8466,8606,8693,8776,8909,8991,9076,9222,9309,9386,9440,9495,9561,9634,9710,9799,9877,9950,10026,10101,10171,10280,10368,10443,10535,10627,10701,10775,10867,10920,11002,11069,11152,11239,11301,11365,11428,11498,11612,11727,11829,11941,11999,12058,12224"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-mk/values-mk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,317,425,511,619,738,822,903,994,1087,1183,1277,1377,1470,1565,1661,1752,1843,1930,2036,2142,2243,2350,2462,2566,2722,2820",
+ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84",
+ "endOffsets": "208,312,420,506,614,733,817,898,989,1082,1178,1272,1372,1465,1560,1656,1747,1838,1925,2031,2137,2238,2345,2457,2561,2717,2815,2900"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "321,429,533,641,727,835,954,1038,1119,1210,1303,1399,1493,1593,1686,1781,1877,1968,2059,2146,2252,2358,2459,2566,2678,2782,2938,12373",
+ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84",
+ "endOffsets": "424,528,636,722,830,949,1033,1114,1205,1298,1394,1488,1588,1681,1776,1872,1963,2054,2141,2247,2353,2454,2561,2673,2777,2933,3031,12453"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ml.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ml.json
new file mode 100644
index 00000000..16548db1
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ml.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ml/values-ml.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ml/values-ml.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,164,267,378",
+ "endColumns": "108,102,110,103",
+ "endOffsets": "159,262,373,477"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6991,7353,7456,7567",
+ "endColumns": "108,102,110,103",
+ "endOffsets": "7095,7451,7562,7666"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ml/values-ml.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,271,351,434,521,627,726,820,930,1022,1087,1186,1252,1312,1414,1476,1552,1610,1688,1753,1807,1924,1988,2052,2106,2186,2320,2406,2495,2631,2716,2804,2956,3051,3134,3192,3244,3310,3389,3471,3562,3649,3725,3802,3879,3950,4060,4167,4247,4344,4444,4518,4599,4704,4762,4850,4917,5008,5100,5162,5226,5289,5358,5461,5568,5673,5778,5840,5896",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,79,82,86,105,98,93,109,91,64,98,65,59,101,61,75,57,77,64,53,116,63,63,53,79,133,85,88,135,84,87,151,94,82,57,51,65,78,81,90,86,75,76,76,70,109,106,79,96,99,73,80,104,57,87,66,90,91,61,63,62,68,102,106,104,104,61,55,83",
+ "endOffsets": "266,346,429,516,622,721,815,925,1017,1082,1181,1247,1307,1409,1471,1547,1605,1683,1748,1802,1919,1983,2047,2101,2181,2315,2401,2490,2626,2711,2799,2951,3046,3129,3187,3239,3305,3384,3466,3557,3644,3720,3797,3874,3945,4055,4162,4242,4339,4439,4513,4594,4699,4757,4845,4912,5003,5095,5157,5221,5284,5353,5456,5563,5668,5773,5835,5891,5975"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3070,3150,3233,3320,3426,4262,4356,4466,7100,7254,7671,7737,7797,7899,7961,8037,8095,8173,8238,8292,8409,8473,8537,8591,8671,8805,8891,8980,9116,9201,9289,9441,9536,9619,9677,9729,9795,9874,9956,10047,10134,10210,10287,10364,10435,10545,10652,10732,10829,10929,11003,11084,11189,11247,11335,11402,11493,11585,11647,11711,11774,11843,11946,12053,12158,12263,12325,12467",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,79,82,86,105,98,93,109,91,64,98,65,59,101,61,75,57,77,64,53,116,63,63,53,79,133,85,88,135,84,87,151,94,82,57,51,65,78,81,90,86,75,76,76,70,109,106,79,96,99,73,80,104,57,87,66,90,91,61,63,62,68,102,106,104,104,61,55,83",
+ "endOffsets": "316,3145,3228,3315,3421,3520,4351,4461,4553,7160,7348,7732,7792,7894,7956,8032,8090,8168,8233,8287,8404,8468,8532,8586,8666,8800,8886,8975,9111,9196,9284,9436,9531,9614,9672,9724,9790,9869,9951,10042,10129,10205,10282,10359,10430,10540,10647,10727,10824,10924,10998,11079,11184,11242,11330,11397,11488,11580,11642,11706,11769,11838,11941,12048,12153,12258,12320,12376,12546"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ml/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "155",
+ "endOffsets": "350"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5616",
+ "endColumns": "159",
+ "endOffsets": "5771"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ml/values-ml.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,318,429,520,625,747,825,900,991,1084,1185,1279,1379,1473,1568,1667,1758,1849,1931,2040,2144,2243,2355,2467,2588,2753,2854",
+ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82",
+ "endOffsets": "207,313,424,515,620,742,820,895,986,1079,1180,1274,1374,1468,1563,1662,1753,1844,1926,2035,2139,2238,2350,2462,2583,2748,2849,2932"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "321,428,534,645,736,841,963,1041,1116,1207,1300,1401,1495,1595,1689,1784,1883,1974,2065,2147,2256,2360,2459,2571,2683,2804,2969,12692",
+ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82",
+ "endOffsets": "423,529,640,731,836,958,1036,1111,1202,1295,1396,1490,1590,1684,1779,1878,1969,2060,2142,2251,2355,2454,2566,2678,2799,2964,3065,12770"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ml/values-ml.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,266,352,493,662,744",
+ "endColumns": "71,88,85,140,168,81,75",
+ "endOffsets": "172,261,347,488,657,739,815"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6919,7165,12381,12551,12876,13045,13127",
+ "endColumns": "71,88,85,140,168,81,75",
+ "endOffsets": "6986,7249,12462,12687,13040,13122,13198"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ml/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,308,483,618,735,895,1016,1117,1219,1397,1509,1679,1811,1956,2113,2173,2238",
+ "endColumns": "114,174,134,116,159,120,100,101,177,111,169,131,144,156,59,64,87",
+ "endOffsets": "307,482,617,734,894,1015,1116,1218,1396,1508,1678,1810,1955,2112,2172,2237,2325"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4558,4677,4856,4995,5116,5280,5405,5510,5776,5958,6074,6248,6384,6533,6694,6758,6827",
+ "endColumns": "118,178,138,120,163,124,104,105,181,115,173,135,148,160,63,68,91",
+ "endOffsets": "4672,4851,4990,5111,5275,5400,5505,5611,5953,6069,6243,6379,6528,6689,6753,6822,6914"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ml/values-ml.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,157,260,362,466,569,670,792",
+ "endColumns": "101,102,101,103,102,100,121,100",
+ "endOffsets": "152,255,357,461,564,665,787,888"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3525,3627,3730,3832,3936,4039,4140,12775",
+ "endColumns": "101,102,101,103,102,100,121,100",
+ "endOffsets": "3622,3725,3827,3931,4034,4135,4257,12871"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-mn.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-mn.json
new file mode 100644
index 00000000..9610a029
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-mn.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-mn/values-mn.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-mn/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,299,452,580,683,816,938,1063,1169,1309,1412,1576,1701,1838,2002,2059,2117",
+ "endColumns": "105,152,127,102,132,121,124,105,139,102,163,124,136,163,56,57,72",
+ "endOffsets": "298,451,579,682,815,937,1062,1168,1308,1411,1575,1700,1837,2001,2058,2116,2189"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4451,4561,4718,4850,4957,5094,5220,5349,5609,5753,5860,6028,6157,6298,6466,6527,6589",
+ "endColumns": "109,156,131,106,136,125,128,109,143,106,167,128,140,167,60,61,76",
+ "endOffsets": "4556,4713,4845,4952,5089,5215,5344,5454,5748,5855,6023,6152,6293,6461,6522,6584,6661"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-mn/values-mn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,219,319,428,514,620,734,817,898,989,1082,1177,1273,1370,1463,1557,1649,1740,1830,1910,2017,2120,2217,2324,2426,2539,2698,2797",
+ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80",
+ "endOffsets": "214,314,423,509,615,729,812,893,984,1077,1172,1268,1365,1458,1552,1644,1735,1825,1905,2012,2115,2212,2319,2421,2534,2693,2792,2873"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,429,529,638,724,830,944,1027,1108,1199,1292,1387,1483,1580,1673,1767,1859,1950,2040,2120,2227,2330,2427,2534,2636,2749,2908,12239",
+ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80",
+ "endOffsets": "424,524,633,719,825,939,1022,1103,1194,1287,1382,1478,1575,1668,1762,1854,1945,2035,2115,2222,2325,2422,2529,2631,2744,2903,3002,12315"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-mn/values-mn.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,160,264,369",
+ "endColumns": "104,103,104,107",
+ "endOffsets": "155,259,364,472"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6736,7094,7198,7303",
+ "endColumns": "104,103,104,107",
+ "endOffsets": "6836,7193,7298,7406"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-mn/values-mn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,356,454,559,671,790",
+ "endColumns": "97,101,100,97,104,111,118,100",
+ "endOffsets": "148,250,351,449,554,666,785,886"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3414,3512,3614,3715,3813,3918,4030,12320",
+ "endColumns": "97,101,100,97,104,111,118,100",
+ "endOffsets": "3507,3609,3710,3808,3913,4025,4144,12416"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-mn/values-mn.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,265,345,483,652,737",
+ "endColumns": "69,89,79,137,168,84,81",
+ "endOffsets": "170,260,340,478,647,732,814"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6666,6906,11937,12101,12421,12590,12675",
+ "endColumns": "69,89,79,137,168,84,81",
+ "endOffsets": "6731,6991,12012,12234,12585,12670,12752"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-mn/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "145",
+ "endOffsets": "340"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5459",
+ "endColumns": "149",
+ "endOffsets": "5604"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-mn/values-mn.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,344,421,500,587,672,770,889,974,1039,1137,1218,1277,1370,1432,1495,1553,1624,1686,1740,1861,1918,1979,2033,2104,2237,2321,2404,2537,2619,2697,2829,2919,2999,3053,3104,3170,3241,3319,3405,3484,3559,3637,3717,3800,3905,3993,4072,4162,4255,4329,4399,4490,4544,4624,4691,4775,4860,4922,4986,5049,5120,5224,5339,5436,5550,5608,5663",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,78,76,78,86,84,97,118,84,64,97,80,58,92,61,62,57,70,61,53,120,56,60,53,70,132,83,82,132,81,77,131,89,79,53,50,65,70,77,85,78,74,77,79,82,104,87,78,89,92,73,69,90,53,79,66,83,84,61,63,62,70,103,114,96,113,57,54,83",
+ "endOffsets": "260,339,416,495,582,667,765,884,969,1034,1132,1213,1272,1365,1427,1490,1548,1619,1681,1735,1856,1913,1974,2028,2099,2232,2316,2399,2532,2614,2692,2824,2914,2994,3048,3099,3165,3236,3314,3400,3479,3554,3632,3712,3795,3900,3988,4067,4157,4250,4324,4394,4485,4539,4619,4686,4770,4855,4917,4981,5044,5115,5219,5334,5431,5545,5603,5658,5742"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3007,3086,3163,3242,3329,4149,4247,4366,6841,6996,7411,7492,7551,7644,7706,7769,7827,7898,7960,8014,8135,8192,8253,8307,8378,8511,8595,8678,8811,8893,8971,9103,9193,9273,9327,9378,9444,9515,9593,9679,9758,9833,9911,9991,10074,10179,10267,10346,10436,10529,10603,10673,10764,10818,10898,10965,11049,11134,11196,11260,11323,11394,11498,11613,11710,11824,11882,12017",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,78,76,78,86,84,97,118,84,64,97,80,58,92,61,62,57,70,61,53,120,56,60,53,70,132,83,82,132,81,77,131,89,79,53,50,65,70,77,85,78,74,77,79,82,104,87,78,89,92,73,69,90,53,79,66,83,84,61,63,62,70,103,114,96,113,57,54,83",
+ "endOffsets": "310,3081,3158,3237,3324,3409,4242,4361,4446,6901,7089,7487,7546,7639,7701,7764,7822,7893,7955,8009,8130,8187,8248,8302,8373,8506,8590,8673,8806,8888,8966,9098,9188,9268,9322,9373,9439,9510,9588,9674,9753,9828,9906,9986,10069,10174,10262,10341,10431,10524,10598,10668,10759,10813,10893,10960,11044,11129,11191,11255,11318,11389,11493,11608,11705,11819,11877,11932,12096"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-mr.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-mr.json
new file mode 100644
index 00000000..856d77e4
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-mr.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-mr/values-mr.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-mr/values-mr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,155,259,360,463,565,670,787",
+ "endColumns": "99,103,100,102,101,104,116,100",
+ "endOffsets": "150,254,355,458,560,665,782,883"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3431,3531,3635,3736,3839,3941,4046,12216",
+ "endColumns": "99,103,100,102,101,104,116,100",
+ "endOffsets": "3526,3630,3731,3834,3936,4041,4158,12312"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-mr/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "138",
+ "endOffsets": "333"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5442",
+ "endColumns": "142",
+ "endOffsets": "5580"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-mr/values-mr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,261,343,480,649,729",
+ "endColumns": "71,83,81,136,168,79,77",
+ "endOffsets": "172,256,338,475,644,724,802"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6620,6856,11839,11999,12317,12486,12566",
+ "endColumns": "71,83,81,136,168,79,77",
+ "endOffsets": "6687,6935,11916,12131,12481,12561,12639"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-mr/values-mr.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,156,257,368",
+ "endColumns": "100,100,110,101",
+ "endOffsets": "151,252,363,465"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6692,7031,7132,7243",
+ "endColumns": "100,100,110,101",
+ "endOffsets": "6788,7127,7238,7340"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-mr/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,460,579,687,828,945,1049,1142,1288,1392,1542,1662,1797,1946,2002,2064",
+ "endColumns": "102,163,118,107,140,116,103,92,145,103,149,119,134,148,55,61,76",
+ "endOffsets": "295,459,578,686,827,944,1048,1141,1287,1391,1541,1661,1796,1945,2001,2063,2140"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4461,4568,4736,4859,4971,5116,5237,5345,5585,5735,5843,5997,6121,6260,6413,6473,6539",
+ "endColumns": "106,167,122,111,144,120,107,96,149,107,153,123,138,152,59,65,80",
+ "endOffsets": "4563,4731,4854,4966,5111,5232,5340,5437,5730,5838,5992,6116,6255,6408,6468,6534,6615"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-mr/values-mr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,216,322,429,519,620,732,810,887,978,1071,1164,1261,1361,1454,1549,1643,1734,1825,1905,2012,2113,2210,2319,2421,2535,2692,2795",
+ "endColumns": "110,105,106,89,100,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,96,108,101,113,156,102,79",
+ "endOffsets": "211,317,424,514,615,727,805,882,973,1066,1159,1256,1356,1449,1544,1638,1729,1820,1900,2007,2108,2205,2314,2416,2530,2687,2790,2870"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "309,420,526,633,723,824,936,1014,1091,1182,1275,1368,1465,1565,1658,1753,1847,1938,2029,2109,2216,2317,2414,2523,2625,2739,2896,12136",
+ "endColumns": "110,105,106,89,100,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,96,108,101,113,156,102,79",
+ "endOffsets": "415,521,628,718,819,931,1009,1086,1177,1270,1363,1460,1560,1653,1748,1842,1933,2024,2104,2211,2312,2409,2518,2620,2734,2891,2994,12211"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-mr/values-mr.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,259,344,431,514,607,691,791,907,989,1052,1143,1208,1267,1355,1417,1479,1539,1606,1669,1723,1837,1894,1955,2009,2079,2198,2279,2364,2499,2576,2653,2794,2880,2964,3020,3072,3138,3208,3286,3373,3455,3525,3601,3672,3741,3855,3951,4025,4123,4219,4293,4363,4465,4520,4608,4675,4762,4855,4918,4982,5045,5111,5211,5320,5414,5521,5581,5637",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,84,86,82,92,83,99,115,81,62,90,64,58,87,61,61,59,66,62,53,113,56,60,53,69,118,80,84,134,76,76,140,85,83,55,51,65,69,77,86,81,69,75,70,68,113,95,73,97,95,73,69,101,54,87,66,86,92,62,63,62,65,99,108,93,106,59,55,77",
+ "endOffsets": "254,339,426,509,602,686,786,902,984,1047,1138,1203,1262,1350,1412,1474,1534,1601,1664,1718,1832,1889,1950,2004,2074,2193,2274,2359,2494,2571,2648,2789,2875,2959,3015,3067,3133,3203,3281,3368,3450,3520,3596,3667,3736,3850,3946,4020,4118,4214,4288,4358,4460,4515,4603,4670,4757,4850,4913,4977,5040,5106,5206,5315,5409,5516,5576,5632,5710"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2999,3084,3171,3254,3347,4163,4263,4379,6793,6940,7345,7410,7469,7557,7619,7681,7741,7808,7871,7925,8039,8096,8157,8211,8281,8400,8481,8566,8701,8778,8855,8996,9082,9166,9222,9274,9340,9410,9488,9575,9657,9727,9803,9874,9943,10057,10153,10227,10325,10421,10495,10565,10667,10722,10810,10877,10964,11057,11120,11184,11247,11313,11413,11522,11616,11723,11783,11921",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,84,86,82,92,83,99,115,81,62,90,64,58,87,61,61,59,66,62,53,113,56,60,53,69,118,80,84,134,76,76,140,85,83,55,51,65,69,77,86,81,69,75,70,68,113,95,73,97,95,73,69,101,54,87,66,86,92,62,63,62,65,99,108,93,106,59,55,77",
+ "endOffsets": "304,3079,3166,3249,3342,3426,4258,4374,4456,6851,7026,7405,7464,7552,7614,7676,7736,7803,7866,7920,8034,8091,8152,8206,8276,8395,8476,8561,8696,8773,8850,8991,9077,9161,9217,9269,9335,9405,9483,9570,9652,9722,9798,9869,9938,10052,10148,10222,10320,10416,10490,10560,10662,10717,10805,10872,10959,11052,11115,11179,11242,11308,11408,11517,11611,11718,11778,11834,11994"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ms.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ms.json
new file mode 100644
index 00000000..bb333896
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ms.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ms/values-ms.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ms/values-ms.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,279,359,438,525,617,704,807,923,1006,1071,1164,1229,1288,1375,1437,1499,1559,1625,1687,1741,1849,1906,1967,2022,2093,2213,2304,2390,2538,2624,2710,2838,2926,3004,3057,3108,3174,3245,3323,3406,3485,3558,3634,3707,3778,3885,3977,4050,4140,4233,4307,4378,4469,4521,4601,4669,4753,4838,4900,4964,5027,5099,5203,5311,5407,5513,5570,5625",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,79,78,86,91,86,102,115,82,64,92,64,58,86,61,61,59,65,61,53,107,56,60,54,70,119,90,85,147,85,85,127,87,77,52,50,65,70,77,82,78,72,75,72,70,106,91,72,89,92,73,70,90,51,79,67,83,84,61,63,62,71,103,107,95,105,56,54,85",
+ "endOffsets": "274,354,433,520,612,699,802,918,1001,1066,1159,1224,1283,1370,1432,1494,1554,1620,1682,1736,1844,1901,1962,2017,2088,2208,2299,2385,2533,2619,2705,2833,2921,2999,3052,3103,3169,3240,3318,3401,3480,3553,3629,3702,3773,3880,3972,4045,4135,4228,4302,4373,4464,4516,4596,4664,4748,4833,4895,4959,5022,5094,5198,5306,5402,5508,5565,5620,5706"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3024,3104,3183,3270,3362,4192,4295,4411,7024,7178,7592,7657,7716,7803,7865,7927,7987,8053,8115,8169,8277,8334,8395,8450,8521,8641,8732,8818,8966,9052,9138,9266,9354,9432,9485,9536,9602,9673,9751,9834,9913,9986,10062,10135,10206,10313,10405,10478,10568,10661,10735,10806,10897,10949,11029,11097,11181,11266,11328,11392,11455,11527,11631,11739,11835,11941,11998,12136",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,79,78,86,91,86,102,115,82,64,92,64,58,86,61,61,59,65,61,53,107,56,60,54,70,119,90,85,147,85,85,127,87,77,52,50,65,70,77,82,78,72,75,72,70,106,91,72,89,92,73,70,90,51,79,67,83,84,61,63,62,71,103,107,95,105,56,54,85",
+ "endOffsets": "324,3099,3178,3265,3357,3444,4290,4406,4489,7084,7266,7652,7711,7798,7860,7922,7982,8048,8110,8164,8272,8329,8390,8445,8516,8636,8727,8813,8961,9047,9133,9261,9349,9427,9480,9531,9597,9668,9746,9829,9908,9981,10057,10130,10201,10308,10400,10473,10563,10656,10730,10801,10892,10944,11024,11092,11176,11261,11323,11387,11450,11522,11626,11734,11830,11936,11993,12048,12217"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ms/values-ms.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,216,321,429,516,620,731,810,888,979,1072,1167,1261,1359,1452,1547,1641,1732,1823,1903,2015,2123,2220,2329,2433,2540,2699,2800",
+ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80",
+ "endOffsets": "211,316,424,511,615,726,805,883,974,1067,1162,1256,1354,1447,1542,1636,1727,1818,1898,2010,2118,2215,2324,2428,2535,2694,2795,2876"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "329,440,545,653,740,844,955,1034,1112,1203,1296,1391,1485,1583,1676,1771,1865,1956,2047,2127,2239,2347,2444,2553,2657,2764,2923,12361",
+ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80",
+ "endOffsets": "435,540,648,735,839,950,1029,1107,1198,1291,1386,1480,1578,1671,1766,1860,1951,2042,2122,2234,2342,2439,2548,2652,2759,2918,3019,12437"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ms/values-ms.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,263,346,485,654,735",
+ "endColumns": "68,88,82,138,168,80,78",
+ "endOffsets": "169,258,341,480,649,730,809"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6850,7089,12053,12222,12543,12712,12793",
+ "endColumns": "68,88,82,138,168,80,78",
+ "endOffsets": "6914,7173,12131,12356,12707,12788,12867"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ms/values-ms.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,160,260,379",
+ "endColumns": "104,99,118,101",
+ "endOffsets": "155,255,374,476"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6919,7271,7371,7490",
+ "endColumns": "104,99,118,101",
+ "endOffsets": "7019,7366,7485,7587"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ms/values-ms.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,252,349,459,565,683,798",
+ "endColumns": "94,101,96,109,105,117,114,100",
+ "endOffsets": "145,247,344,454,560,678,793,894"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3449,3544,3646,3743,3853,3959,4077,12442",
+ "endColumns": "94,101,96,109,105,117,114,100",
+ "endOffsets": "3539,3641,3738,3848,3954,4072,4187,12538"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ms/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,464,590,692,860,988,1104,1207,1388,1493,1664,1795,1962,2133,2196,2256",
+ "endColumns": "101,168,125,101,167,127,115,102,180,104,170,130,166,170,62,59,78",
+ "endOffsets": "294,463,589,691,859,987,1103,1206,1387,1492,1663,1794,1961,2132,2195,2255,2334"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4494,4600,4773,4903,5009,5181,5313,5433,5686,5871,5980,6155,6290,6461,6636,6703,6767",
+ "endColumns": "105,172,129,105,171,131,119,106,184,108,174,134,170,174,66,63,82",
+ "endOffsets": "4595,4768,4898,5004,5176,5308,5428,5535,5866,5975,6150,6285,6456,6631,6698,6762,6845"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ms/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "141",
+ "endOffsets": "336"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5540",
+ "endColumns": "145",
+ "endOffsets": "5681"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-my.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-my.json
new file mode 100644
index 00000000..a978db65
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-my.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-my/values-my.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-my/values-my.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,218,325,441,528,637,760,839,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1854,1939,2054,2163,2262,2388,2495,2603,2763,2866",
+ "endColumns": "112,106,115,86,108,122,78,77,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85",
+ "endOffsets": "213,320,436,523,632,755,834,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1849,1934,2049,2158,2257,2383,2490,2598,2758,2861,2947"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "335,448,555,671,758,867,990,1069,1147,1238,1331,1426,1520,1620,1713,1808,1902,1993,2084,2169,2284,2393,2492,2618,2725,2833,2993,12569",
+ "endColumns": "112,106,115,86,108,122,78,77,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85",
+ "endOffsets": "443,550,666,753,862,985,1064,1142,1233,1326,1421,1515,1615,1708,1803,1897,1988,2079,2164,2279,2388,2487,2613,2720,2828,2988,3091,12650"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-my/values-my.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,164,270,385",
+ "endColumns": "108,105,114,106",
+ "endOffsets": "159,265,380,487"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7039,7392,7498,7613",
+ "endColumns": "108,105,114,106",
+ "endOffsets": "7143,7493,7608,7715"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-my/values-my.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,262,365,467,572,678,797",
+ "endColumns": "102,103,102,101,104,105,118,100",
+ "endOffsets": "153,257,360,462,567,673,792,893"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3547,3650,3754,3857,3959,4064,4170,12655",
+ "endColumns": "102,103,102,101,104,105,118,100",
+ "endOffsets": "3645,3749,3852,3954,4059,4165,4284,12751"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-my/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "149",
+ "endOffsets": "344"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5637",
+ "endColumns": "153",
+ "endOffsets": "5786"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-my/values-my.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,181,270,350,502,671,752",
+ "endColumns": "75,88,79,151,168,80,78",
+ "endOffsets": "176,265,345,497,666,747,826"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6963,7213,12255,12417,12756,12925,13006",
+ "endColumns": "75,88,79,151,168,80,78",
+ "endOffsets": "7034,7297,12330,12564,12920,13001,13080"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-my/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,456,586,693,836,964,1083,1189,1361,1463,1629,1768,1922,2105,2171,2240",
+ "endColumns": "102,159,129,106,142,127,118,105,171,101,165,138,153,182,65,68,84",
+ "endOffsets": "295,455,585,692,835,963,1082,1188,1360,1462,1628,1767,1921,2104,2170,2239,2324"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4609,4716,4880,5014,5125,5272,5404,5527,5791,5967,6073,6243,6386,6544,6731,6801,6874",
+ "endColumns": "106,163,133,110,146,131,122,109,175,105,169,142,157,186,69,72,88",
+ "endOffsets": "4711,4875,5009,5120,5267,5399,5522,5632,5962,6068,6238,6381,6539,6726,6796,6869,6958"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-my/values-my.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,285,386,485,561,652,736,842,971,1056,1121,1211,1286,1345,1436,1499,1564,1623,1694,1756,1813,1932,1990,2051,2106,2179,2311,2402,2491,2632,2710,2787,2910,3002,3079,3137,3188,3254,3326,3408,3490,3568,3643,3717,3789,3868,3976,4073,4154,4240,4332,4406,4485,4571,4625,4701,4769,4852,4933,4995,5059,5122,5190,5302,5413,5517,5630,5691,5746",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,100,98,75,90,83,105,128,84,64,89,74,58,90,62,64,58,70,61,56,118,57,60,54,72,131,90,88,140,77,76,122,91,76,57,50,65,71,81,81,77,74,73,71,78,107,96,80,85,91,73,78,85,53,75,67,82,80,61,63,62,67,111,110,103,112,60,54,81",
+ "endOffsets": "280,381,480,556,647,731,837,966,1051,1116,1206,1281,1340,1431,1494,1559,1618,1689,1751,1808,1927,1985,2046,2101,2174,2306,2397,2486,2627,2705,2782,2905,2997,3074,3132,3183,3249,3321,3403,3485,3563,3638,3712,3784,3863,3971,4068,4149,4235,4327,4401,4480,4566,4620,4696,4764,4847,4928,4990,5054,5117,5185,5297,5408,5512,5625,5686,5741,5823"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3096,3197,3296,3372,3463,4289,4395,4524,7148,7302,7720,7795,7854,7945,8008,8073,8132,8203,8265,8322,8441,8499,8560,8615,8688,8820,8911,9000,9141,9219,9296,9419,9511,9588,9646,9697,9763,9835,9917,9999,10077,10152,10226,10298,10377,10485,10582,10663,10749,10841,10915,10994,11080,11134,11210,11278,11361,11442,11504,11568,11631,11699,11811,11922,12026,12139,12200,12335",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,100,98,75,90,83,105,128,84,64,89,74,58,90,62,64,58,70,61,56,118,57,60,54,72,131,90,88,140,77,76,122,91,76,57,50,65,71,81,81,77,74,73,71,78,107,96,80,85,91,73,78,85,53,75,67,82,80,61,63,62,67,111,110,103,112,60,54,81",
+ "endOffsets": "330,3192,3291,3367,3458,3542,4390,4519,4604,7208,7387,7790,7849,7940,8003,8068,8127,8198,8260,8317,8436,8494,8555,8610,8683,8815,8906,8995,9136,9214,9291,9414,9506,9583,9641,9692,9758,9830,9912,9994,10072,10147,10221,10293,10372,10480,10577,10658,10744,10836,10910,10989,11075,11129,11205,11273,11356,11437,11499,11563,11626,11694,11806,11917,12021,12134,12195,12250,12412"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-nb.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-nb.json
new file mode 100644
index 00000000..37ca7fb6
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-nb.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-nb/values-nb.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-nb/values-nb.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,262,340,482,651,730",
+ "endColumns": "69,86,77,141,168,78,75",
+ "endOffsets": "170,257,335,477,646,725,801"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6588,6832,11702,11858,12181,12350,12429",
+ "endColumns": "69,86,77,141,168,78,75",
+ "endOffsets": "6653,6914,11775,11995,12345,12424,12500"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-nb/values-nb.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,208,303,417,503,603,716,793,868,959,1052,1146,1240,1340,1433,1528,1626,1717,1808,1886,1989,2087,2183,2287,2386,2487,2640,2737",
+ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79",
+ "endOffsets": "203,298,412,498,598,711,788,863,954,1047,1141,1235,1335,1428,1523,1621,1712,1803,1881,1984,2082,2178,2282,2381,2482,2635,2732,2812"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "311,414,509,623,709,809,922,999,1074,1165,1258,1352,1446,1546,1639,1734,1832,1923,2014,2092,2195,2293,2389,2493,2592,2693,2846,12000",
+ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79",
+ "endOffsets": "409,504,618,704,804,917,994,1069,1160,1253,1347,1441,1541,1634,1729,1827,1918,2009,2087,2190,2288,2384,2488,2587,2688,2841,2938,12075"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-nb/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "125",
+ "endOffsets": "320"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5383",
+ "endColumns": "129",
+ "endOffsets": "5508"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-nb/values-nb.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,261,338,411,498,586,666,765,884,966,1030,1122,1190,1250,1337,1401,1463,1527,1595,1660,1714,1823,1881,1943,1997,2072,2192,2274,2354,2488,2566,2646,2769,2857,2935,2989,3040,3106,3174,3248,3338,3414,3485,3563,3633,3703,3803,3892,3970,4058,4148,4220,4292,4376,4427,4505,4571,4652,4735,4797,4861,4924,4993,5093,5197,5290,5390,5448,5503",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,76,72,86,87,79,98,118,81,63,91,67,59,86,63,61,63,67,64,53,108,57,61,53,74,119,81,79,133,77,79,122,87,77,53,50,65,67,73,89,75,70,77,69,69,99,88,77,87,89,71,71,83,50,77,65,80,82,61,63,62,68,99,103,92,99,57,54,77",
+ "endOffsets": "256,333,406,493,581,661,760,879,961,1025,1117,1185,1245,1332,1396,1458,1522,1590,1655,1709,1818,1876,1938,1992,2067,2187,2269,2349,2483,2561,2641,2764,2852,2930,2984,3035,3101,3169,3243,3333,3409,3480,3558,3628,3698,3798,3887,3965,4053,4143,4215,4287,4371,4422,4500,4566,4647,4730,4792,4856,4919,4988,5088,5192,5285,5385,5443,5498,5576"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2943,3020,3093,3180,3268,4074,4173,4292,6768,6919,7321,7389,7449,7536,7600,7662,7726,7794,7859,7913,8022,8080,8142,8196,8271,8391,8473,8553,8687,8765,8845,8968,9056,9134,9188,9239,9305,9373,9447,9537,9613,9684,9762,9832,9902,10002,10091,10169,10257,10347,10419,10491,10575,10626,10704,10770,10851,10934,10996,11060,11123,11192,11292,11396,11489,11589,11647,11780",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,76,72,86,87,79,98,118,81,63,91,67,59,86,63,61,63,67,64,53,108,57,61,53,74,119,81,79,133,77,79,122,87,77,53,50,65,67,73,89,75,70,77,69,69,99,88,77,87,89,71,71,83,50,77,65,80,82,61,63,62,68,99,103,92,99,57,54,77",
+ "endOffsets": "306,3015,3088,3175,3263,3343,4168,4287,4369,6827,7006,7384,7444,7531,7595,7657,7721,7789,7854,7908,8017,8075,8137,8191,8266,8386,8468,8548,8682,8760,8840,8963,9051,9129,9183,9234,9300,9368,9442,9532,9608,9679,9757,9827,9897,9997,10086,10164,10252,10342,10414,10486,10570,10621,10699,10765,10846,10929,10991,11055,11118,11187,11287,11391,11484,11584,11642,11697,11853"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-nb/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,450,572,677,829,955,1071,1170,1320,1423,1580,1704,1842,2014,2077,2135",
+ "endColumns": "101,154,121,104,151,125,115,98,149,102,156,123,137,171,62,57,73",
+ "endOffsets": "294,449,571,676,828,954,1070,1169,1319,1422,1579,1703,1841,2013,2076,2134,2208"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4374,4480,4639,4765,4874,5030,5160,5280,5513,5667,5774,5935,6063,6205,6381,6448,6510",
+ "endColumns": "105,158,125,108,155,129,119,102,153,106,160,127,141,175,66,61,77",
+ "endOffsets": "4475,4634,4760,4869,5025,5155,5275,5378,5662,5769,5930,6058,6200,6376,6443,6505,6583"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-nb/values-nb.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,165,266,378",
+ "endColumns": "109,100,111,96",
+ "endOffsets": "160,261,373,470"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6658,7011,7112,7224",
+ "endColumns": "109,100,111,96",
+ "endOffsets": "6763,7107,7219,7316"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-nb/values-nb.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,149,251,348,447,555,661,781",
+ "endColumns": "93,101,96,98,107,105,119,100",
+ "endOffsets": "144,246,343,442,550,656,776,877"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3348,3442,3544,3641,3740,3848,3954,12080",
+ "endColumns": "93,101,96,98,107,105,119,100",
+ "endOffsets": "3437,3539,3636,3735,3843,3949,4069,12176"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ne.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ne.json
new file mode 100644
index 00000000..e763b196
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ne.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ne/values-ne.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ne/values-ne.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,214,325,433,524,631,751,835,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1937,2050,2151,2247,2360,2470,2587,2754,2865",
+ "endColumns": "108,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79",
+ "endOffsets": "209,320,428,519,626,746,830,909,1000,1093,1188,1282,1382,1475,1570,1664,1755,1846,1932,2045,2146,2242,2355,2465,2582,2749,2860,2940"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "312,421,532,640,731,838,958,1042,1121,1212,1305,1400,1494,1594,1687,1782,1876,1967,2058,2144,2257,2358,2454,2567,2677,2794,2961,12515",
+ "endColumns": "108,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79",
+ "endOffsets": "416,527,635,726,833,953,1037,1116,1207,1300,1395,1489,1589,1682,1777,1871,1962,2053,2139,2252,2353,2449,2562,2672,2789,2956,3067,12590"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ne/values-ne.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,156,268,382",
+ "endColumns": "100,111,113,107",
+ "endOffsets": "151,263,377,485"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6944,7291,7403,7517",
+ "endColumns": "100,111,113,107",
+ "endOffsets": "7040,7398,7512,7620"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ne/values-ne.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,262,351,439,521,616,705,807,917,1004,1070,1166,1232,1293,1398,1462,1534,1592,1666,1728,1782,1895,1955,2016,2075,2153,2277,2358,2443,2579,2660,2743,2874,2957,3043,3105,3159,3225,3302,3381,3469,3552,3621,3697,3778,3846,3950,4041,4119,4212,4309,4383,4462,4560,4620,4708,4774,4862,4950,5012,5080,5143,5209,5314,5420,5515,5620,5686,5744",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,88,87,81,94,88,101,109,86,65,95,65,60,104,63,71,57,73,61,53,112,59,60,58,77,123,80,84,135,80,82,130,82,85,61,53,65,76,78,87,82,68,75,80,67,103,90,77,92,96,73,78,97,59,87,65,87,87,61,67,62,65,104,105,94,104,65,57,83",
+ "endOffsets": "257,346,434,516,611,700,802,912,999,1065,1161,1227,1288,1393,1457,1529,1587,1661,1723,1777,1890,1950,2011,2070,2148,2272,2353,2438,2574,2655,2738,2869,2952,3038,3100,3154,3220,3297,3376,3464,3547,3616,3692,3773,3841,3945,4036,4114,4207,4304,4378,4457,4555,4615,4703,4769,4857,4945,5007,5075,5138,5204,5309,5415,5510,5615,5681,5739,5823"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3072,3161,3249,3331,3426,4235,4337,4447,7045,7195,7625,7691,7752,7857,7921,7993,8051,8125,8187,8241,8354,8414,8475,8534,8612,8736,8817,8902,9038,9119,9202,9333,9416,9502,9564,9618,9684,9761,9840,9928,10011,10080,10156,10237,10305,10409,10500,10578,10671,10768,10842,10921,11019,11079,11167,11233,11321,11409,11471,11539,11602,11668,11773,11879,11974,12079,12145,12284",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,88,87,81,94,88,101,109,86,65,95,65,60,104,63,71,57,73,61,53,112,59,60,58,77,123,80,84,135,80,82,130,82,85,61,53,65,76,78,87,82,68,75,80,67,103,90,77,92,96,73,78,97,59,87,65,87,87,61,67,62,65,104,105,94,104,65,57,83",
+ "endOffsets": "307,3156,3244,3326,3421,3510,4332,4442,4529,7106,7286,7686,7747,7852,7916,7988,8046,8120,8182,8236,8349,8409,8470,8529,8607,8731,8812,8897,9033,9114,9197,9328,9411,9497,9559,9613,9679,9756,9835,9923,10006,10075,10151,10232,10300,10404,10495,10573,10666,10763,10837,10916,11014,11074,11162,11228,11316,11404,11466,11534,11597,11663,11768,11874,11969,12074,12140,12198,12363"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ne/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "159",
+ "endOffsets": "354"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5576",
+ "endColumns": "163",
+ "endOffsets": "5735"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ne/values-ne.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,188,272,353,500,669,767",
+ "endColumns": "82,83,80,146,168,97,79",
+ "endOffsets": "183,267,348,495,664,762,842"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6861,7111,12203,12368,12696,12865,12963",
+ "endColumns": "82,83,80,146,168,97,79",
+ "endOffsets": "6939,7190,12279,12510,12860,12958,13038"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ne/values-ne.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,261,363,469,567,667,775",
+ "endColumns": "102,102,101,105,97,99,107,100",
+ "endOffsets": "153,256,358,464,562,662,770,871"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3515,3618,3721,3823,3929,4027,4127,12595",
+ "endColumns": "102,102,101,105,97,99,107,100",
+ "endOffsets": "3613,3716,3818,3924,4022,4122,4230,12691"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ne/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,454,584,697,864,996,1102,1203,1379,1489,1649,1778,1922,2070,2132,2200",
+ "endColumns": "106,153,129,112,166,131,105,100,175,109,159,128,143,147,61,67,87",
+ "endOffsets": "299,453,583,696,863,995,1101,1202,1378,1488,1648,1777,1921,2069,2131,2199,2287"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4534,4645,4803,4937,5054,5225,5361,5471,5740,5920,6034,6198,6331,6479,6631,6697,6769",
+ "endColumns": "110,157,133,116,170,135,109,104,179,113,163,132,147,151,65,71,91",
+ "endOffsets": "4640,4798,4932,5049,5220,5356,5466,5571,5915,6029,6193,6326,6474,6626,6692,6764,6856"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-night-v8.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-night-v8.json
new file mode 100644
index 00000000..825e2b76
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-night-v8.json
@@ -0,0 +1,87 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-night-v8/values-night-v8.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/96596d913bdc5ef7499b36edf6e5d946/transformed/jetified-preferencex-simplemenu-1.1.0/res/values-night-v8/values-night-v8.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "67",
+ "endOffsets": "118"
+ },
+ "to": {
+ "startLines": "6",
+ "startColumns": "4",
+ "startOffsets": "256",
+ "endColumns": "67",
+ "endOffsets": "319"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-night-v8/values-night-v8.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,130,241,330,431,538,645,744,851,954,1042,1166,1268,1370,1486,1588,1702,1830,1946,2068,2204,2324,2458,2578,2690,2816,2933,3057,3187,3309,3447,3581,3697",
+ "endColumns": "74,110,88,100,106,106,98,106,102,87,123,101,101,115,101,113,127,115,121,135,119,133,119,111,125,116,123,129,121,137,133,115,119",
+ "endOffsets": "125,236,325,426,533,640,739,846,949,1037,1161,1263,1365,1481,1583,1697,1825,1941,2063,2199,2319,2453,2573,2685,2811,2928,3052,3182,3304,3442,3576,3692,3812"
+ },
+ "to": {
+ "startLines": "14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,40,41,42,43,44,45,46,47",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "956,1031,1142,1231,1332,1439,1546,1645,1752,1855,1943,2067,2169,2271,2387,2489,2603,2731,2847,2969,3105,3225,3359,3479,3591,3806,3923,4047,4177,4299,4437,4571,4687",
+ "endColumns": "74,110,88,100,106,106,98,106,102,87,123,101,101,115,101,113,127,115,121,135,119,133,119,111,125,116,123,129,121,137,133,115,119",
+ "endOffsets": "1026,1137,1226,1327,1434,1541,1640,1747,1850,1938,2062,2164,2266,2382,2484,2598,2726,2842,2964,3100,3220,3354,3474,3586,3712,3918,4042,4172,4294,4432,4566,4682,4802"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-night/colors.xml",
+ "from": {
+ "startLines": "2,3,4",
+ "startColumns": "4,4,4",
+ "startOffsets": "55,119,170",
+ "endColumns": "63,50,48",
+ "endOffsets": "114,165,214"
+ },
+ "to": {
+ "startLines": "3,4,5",
+ "startColumns": "4,4,4",
+ "startOffsets": "92,156,207",
+ "endColumns": "63,50,48",
+ "endOffsets": "151,202,251"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-night/bools.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "36",
+ "endOffsets": "87"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-night-v8/values-night-v8.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,125,209,293,389,491,593,687",
+ "endColumns": "69,83,83,95,101,101,93,88",
+ "endOffsets": "120,204,288,384,486,588,682,771"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,39",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "324,394,478,562,658,760,862,3717",
+ "endColumns": "69,83,83,95,101,101,93,88",
+ "endOffsets": "389,473,557,653,755,857,951,3801"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-nl.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-nl.json
new file mode 100644
index 00000000..fb7b3d39
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-nl.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-nl/values-nl.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-nl/values-nl.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,269,355,437,514,612,706,803,925,1006,1070,1159,1238,1301,1394,1456,1522,1580,1653,1717,1773,1895,1952,2014,2070,2146,2280,2365,2451,2589,2670,2749,2873,2963,3040,3097,3148,3214,3292,3375,3463,3539,3614,3693,3766,3837,3946,4040,4118,4207,4297,4371,4452,4539,4592,4671,4738,4819,4903,4965,5029,5092,5163,5271,5383,5485,5596,5657,5712",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,85,81,76,97,93,96,121,80,63,88,78,62,92,61,65,57,72,63,55,121,56,61,55,75,133,84,85,137,80,78,123,89,76,56,50,65,77,82,87,75,74,78,72,70,108,93,77,88,89,73,80,86,52,78,66,80,83,61,63,62,70,107,111,101,110,60,54,80",
+ "endOffsets": "264,350,432,509,607,701,798,920,1001,1065,1154,1233,1296,1389,1451,1517,1575,1648,1712,1768,1890,1947,2009,2065,2141,2275,2360,2446,2584,2665,2744,2868,2958,3035,3092,3143,3209,3287,3370,3458,3534,3609,3688,3761,3832,3941,4035,4113,4202,4292,4366,4447,4534,4587,4666,4733,4814,4898,4960,5024,5087,5158,5266,5378,5480,5591,5652,5707,5788"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3041,3127,3209,3286,3384,4212,4309,4431,6985,7139,7539,7618,7681,7774,7836,7902,7960,8033,8097,8153,8275,8332,8394,8450,8526,8660,8745,8831,8969,9050,9129,9253,9343,9420,9477,9528,9594,9672,9755,9843,9919,9994,10073,10146,10217,10326,10420,10498,10587,10677,10751,10832,10919,10972,11051,11118,11199,11283,11345,11409,11472,11543,11651,11763,11865,11976,12037,12173",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,85,81,76,97,93,96,121,80,63,88,78,62,92,61,65,57,72,63,55,121,56,61,55,75,133,84,85,137,80,78,123,89,76,56,50,65,77,82,87,75,74,78,72,70,108,93,77,88,89,73,80,86,52,78,66,80,83,61,63,62,70,107,111,101,110,60,54,80",
+ "endOffsets": "314,3122,3204,3281,3379,3473,4304,4426,4507,7044,7223,7613,7676,7769,7831,7897,7955,8028,8092,8148,8270,8327,8389,8445,8521,8655,8740,8826,8964,9045,9124,9248,9338,9415,9472,9523,9589,9667,9750,9838,9914,9989,10068,10141,10212,10321,10415,10493,10582,10672,10746,10827,10914,10967,11046,11113,11194,11278,11340,11404,11467,11538,11646,11758,11860,11971,12032,12087,12249"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-nl/values-nl.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,158,259,370",
+ "endColumns": "102,100,110,98",
+ "endOffsets": "153,254,365,464"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6882,7228,7329,7440",
+ "endColumns": "102,100,110,98",
+ "endOffsets": "6980,7324,7435,7534"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-nl/values-nl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,267,348,494,663,743",
+ "endColumns": "71,89,80,145,168,79,76",
+ "endOffsets": "172,262,343,489,658,738,815"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6810,7049,12092,12254,12584,12753,12833",
+ "endColumns": "71,89,80,145,168,79,76",
+ "endOffsets": "6877,7134,12168,12395,12748,12828,12905"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-nl/values-nl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,223,328,435,520,624,744,822,898,990,1084,1179,1273,1373,1467,1563,1658,1750,1842,1924,2035,2138,2237,2352,2466,2569,2724,2827",
+ "endColumns": "117,104,106,84,103,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82",
+ "endOffsets": "218,323,430,515,619,739,817,893,985,1079,1174,1268,1368,1462,1558,1653,1745,1837,1919,2030,2133,2232,2347,2461,2564,2719,2822,2905"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "319,437,542,649,734,838,958,1036,1112,1204,1298,1393,1487,1587,1681,1777,1872,1964,2056,2138,2249,2352,2451,2566,2680,2783,2938,12400",
+ "endColumns": "117,104,106,84,103,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82",
+ "endOffsets": "432,537,644,729,833,953,1031,1107,1199,1293,1388,1482,1582,1676,1772,1867,1959,2051,2133,2244,2347,2446,2561,2675,2778,2933,3036,12478"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-nl/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,444,568,675,838,961,1080,1182,1356,1458,1623,1745,1904,2082,2146,2205",
+ "endColumns": "103,146,123,106,162,122,118,101,173,101,164,121,158,177,63,58,74",
+ "endOffsets": "296,443,567,674,837,960,1079,1181,1355,1457,1622,1744,1903,2081,2145,2204,2279"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4512,4620,4771,4899,5010,5177,5304,5427,5676,5854,5960,6129,6255,6418,6600,6668,6731",
+ "endColumns": "107,150,127,110,166,126,122,105,177,105,168,125,162,181,67,62,78",
+ "endOffsets": "4615,4766,4894,5005,5172,5299,5422,5528,5849,5955,6124,6250,6413,6595,6663,6726,6805"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-nl/values-nl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,157,259,359,459,566,670,789",
+ "endColumns": "101,101,99,99,106,103,118,100",
+ "endOffsets": "152,254,354,454,561,665,784,885"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3478,3580,3682,3782,3882,3989,4093,12483",
+ "endColumns": "101,101,99,99,106,103,118,100",
+ "endOffsets": "3575,3677,3777,3877,3984,4088,4207,12579"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-nl/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "138",
+ "endOffsets": "333"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5533",
+ "endColumns": "142",
+ "endOffsets": "5671"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-or.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-or.json
new file mode 100644
index 00000000..75a3aea9
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-or.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-or/values-or.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-or/values-or.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,224,334,441,527,631,751,830,911,1002,1095,1198,1293,1393,1486,1581,1677,1768,1858,1947,2057,2161,2267,2378,2482,2600,2763,2869",
+ "endColumns": "118,109,106,85,103,119,78,80,90,92,102,94,99,92,94,95,90,89,88,109,103,105,110,103,117,162,105,89",
+ "endOffsets": "219,329,436,522,626,746,825,906,997,1090,1193,1288,1388,1481,1576,1672,1763,1853,1942,2052,2156,2262,2373,2477,2595,2758,2864,2954"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "322,441,551,658,744,848,968,1047,1128,1219,1312,1415,1510,1610,1703,1798,1894,1985,2075,2164,2274,2378,2484,2595,2699,2817,2980,12236",
+ "endColumns": "118,109,106,85,103,119,78,80,90,92,102,94,99,92,94,95,90,89,88,109,103,105,110,103,117,162,105,89",
+ "endOffsets": "436,546,653,739,843,963,1042,1123,1214,1307,1410,1505,1605,1698,1793,1889,1980,2070,2159,2269,2373,2479,2590,2694,2812,2975,3081,12321"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-or/values-or.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,165,270,383",
+ "endColumns": "109,104,112,108",
+ "endOffsets": "160,265,378,487"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6860,7213,7318,7431",
+ "endColumns": "109,104,112,108",
+ "endOffsets": "6965,7313,7426,7535"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-or/values-or.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,272,354,432,509,595,679,773,878,957,1022,1111,1176,1235,1321,1385,1449,1512,1585,1649,1703,1815,1873,1935,1989,2061,2183,2270,2356,2496,2573,2654,2781,2872,2949,3003,3054,3120,3190,3267,3354,3429,3500,3577,3646,3715,3822,3913,3985,4074,4163,4237,4309,4395,4445,4524,4590,4670,4754,4816,4880,4943,5012,5112,5207,5299,5391,5449,5504",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,81,77,76,85,83,93,104,78,64,88,64,58,85,63,63,62,72,63,53,111,57,61,53,71,121,86,85,139,76,80,126,90,76,53,50,65,69,76,86,74,70,76,68,68,106,90,71,88,88,73,71,85,49,78,65,79,83,61,63,62,68,99,94,91,91,57,54,83",
+ "endOffsets": "267,349,427,504,590,674,768,873,952,1017,1106,1171,1230,1316,1380,1444,1507,1580,1644,1698,1810,1868,1930,1984,2056,2178,2265,2351,2491,2568,2649,2776,2867,2944,2998,3049,3115,3185,3262,3349,3424,3495,3572,3641,3710,3817,3908,3980,4069,4158,4232,4304,4390,4440,4519,4585,4665,4749,4811,4875,4938,5007,5107,5202,5294,5386,5444,5499,5583"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3086,3168,3246,3323,3409,4228,4322,4427,6970,7124,7540,7605,7664,7750,7814,7878,7941,8014,8078,8132,8244,8302,8364,8418,8490,8612,8699,8785,8925,9002,9083,9210,9301,9378,9432,9483,9549,9619,9696,9783,9858,9929,10006,10075,10144,10251,10342,10414,10503,10592,10666,10738,10824,10874,10953,11019,11099,11183,11245,11309,11372,11441,11541,11636,11728,11820,11878,12013",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,81,77,76,85,83,93,104,78,64,88,64,58,85,63,63,62,72,63,53,111,57,61,53,71,121,86,85,139,76,80,126,90,76,53,50,65,69,76,86,74,70,76,68,68,106,90,71,88,88,73,71,85,49,78,65,79,83,61,63,62,68,99,94,91,91,57,54,83",
+ "endOffsets": "317,3163,3241,3318,3404,3488,4317,4422,4501,7030,7208,7600,7659,7745,7809,7873,7936,8009,8073,8127,8239,8297,8359,8413,8485,8607,8694,8780,8920,8997,9078,9205,9296,9373,9427,9478,9544,9614,9691,9778,9853,9924,10001,10070,10139,10246,10337,10409,10498,10587,10661,10733,10819,10869,10948,11014,11094,11178,11240,11304,11367,11436,11536,11631,11723,11815,11873,11928,12092"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-or/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "135",
+ "endOffsets": "330"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5541",
+ "endColumns": "139",
+ "endOffsets": "5676"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-or/values-or.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,179,268,348,487,656,737",
+ "endColumns": "73,88,79,138,168,80,81",
+ "endOffsets": "174,263,343,482,651,732,814"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6786,7035,11933,12097,12427,12596,12677",
+ "endColumns": "73,88,79,138,168,80,81",
+ "endOffsets": "6855,7119,12008,12231,12591,12672,12754"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-or/values-or.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,260,363,468,569,671,790",
+ "endColumns": "102,101,102,104,100,101,118,100",
+ "endOffsets": "153,255,358,463,564,666,785,886"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3493,3596,3698,3801,3906,4007,4109,12326",
+ "endColumns": "102,101,102,104,100,101,118,100",
+ "endOffsets": "3591,3693,3796,3901,4002,4104,4223,12422"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-or/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,457,585,698,849,980,1090,1196,1359,1468,1625,1754,1900,2053,2114,2182",
+ "endColumns": "106,156,127,112,150,130,109,105,162,108,156,128,145,152,60,67,82",
+ "endOffsets": "299,456,584,697,848,979,1089,1195,1358,1467,1624,1753,1899,2052,2113,2181,2264"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4506,4617,4778,4910,5027,5182,5317,5431,5681,5848,5961,6122,6255,6405,6562,6627,6699",
+ "endColumns": "110,160,131,116,154,134,113,109,166,112,160,132,149,156,64,71,86",
+ "endOffsets": "4612,4773,4905,5022,5177,5312,5426,5536,5843,5956,6117,6250,6400,6557,6622,6694,6781"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pa.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pa.json
new file mode 100644
index 00000000..2ac871e8
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pa.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-pa/values-pa.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-pa/values-pa.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,262,341,488,657,737",
+ "endColumns": "71,84,78,146,168,79,77",
+ "endOffsets": "172,257,336,483,652,732,810"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6701,6942,11846,12002,12330,12499,12579",
+ "endColumns": "71,84,78,146,168,79,77",
+ "endOffsets": "6768,7022,11920,12144,12494,12574,12652"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-pa/values-pa.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,263,340,419,500,599,688,796,908,991,1055,1147,1216,1275,1360,1423,1485,1543,1607,1668,1722,1836,1894,1954,2008,2078,2205,2286,2365,2500,2576,2653,2782,2866,2948,3003,3058,3124,3193,3270,3356,3435,3503,3579,3649,3714,3816,3911,3984,4078,4171,4245,4314,4408,4464,4547,4614,4698,4786,4848,4912,4975,5042,5139,5245,5336,5438,5497,5556",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,76,78,80,98,88,107,111,82,63,91,68,58,84,62,61,57,63,60,53,113,57,59,53,69,126,80,78,134,75,76,128,83,81,54,54,65,68,76,85,78,67,75,69,64,101,94,72,93,92,73,68,93,55,82,66,83,87,61,63,62,66,96,105,90,101,58,58,76",
+ "endOffsets": "258,335,414,495,594,683,791,903,986,1050,1142,1211,1270,1355,1418,1480,1538,1602,1663,1717,1831,1889,1949,2003,2073,2200,2281,2360,2495,2571,2648,2777,2861,2943,2998,3053,3119,3188,3265,3351,3430,3498,3574,3644,3709,3811,3906,3979,4073,4166,4240,4309,4403,4459,4542,4609,4693,4781,4843,4907,4970,5037,5134,5240,5331,5433,5492,5551,5628"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2975,3052,3131,3212,3311,4133,4241,4353,6878,7027,7437,7506,7565,7650,7713,7775,7833,7897,7958,8012,8126,8184,8244,8298,8368,8495,8576,8655,8790,8866,8943,9072,9156,9238,9293,9348,9414,9483,9560,9646,9725,9793,9869,9939,10004,10106,10201,10274,10368,10461,10535,10604,10698,10754,10837,10904,10988,11076,11138,11202,11265,11332,11429,11535,11626,11728,11787,11925",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,76,78,80,98,88,107,111,82,63,91,68,58,84,62,61,57,63,60,53,113,57,59,53,69,126,80,78,134,75,76,128,83,81,54,54,65,68,76,85,78,67,75,69,64,101,94,72,93,92,73,68,93,55,82,66,83,87,61,63,62,66,96,105,90,101,58,58,76",
+ "endOffsets": "308,3047,3126,3207,3306,3395,4236,4348,4431,6937,7114,7501,7560,7645,7708,7770,7828,7892,7953,8007,8121,8179,8239,8293,8363,8490,8571,8650,8785,8861,8938,9067,9151,9233,9288,9343,9409,9478,9555,9641,9720,9788,9864,9934,9999,10101,10196,10269,10363,10456,10530,10599,10693,10749,10832,10899,10983,11071,11133,11197,11260,11327,11424,11530,11621,11723,11782,11841,11997"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-pa/values-pa.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,208,305,410,496,596,709,787,864,955,1048,1142,1236,1336,1429,1524,1618,1709,1800,1879,1989,2092,2188,2299,2401,2511,2670,2767",
+ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79",
+ "endOffsets": "203,300,405,491,591,704,782,859,950,1043,1137,1231,1331,1424,1519,1613,1704,1795,1874,1984,2087,2183,2294,2396,2506,2665,2762,2842"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "313,416,513,618,704,804,917,995,1072,1163,1256,1350,1444,1544,1637,1732,1826,1917,2008,2087,2197,2300,2396,2507,2609,2719,2878,12149",
+ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79",
+ "endOffsets": "411,508,613,699,799,912,990,1067,1158,1251,1345,1439,1539,1632,1727,1821,1912,2003,2082,2192,2295,2391,2502,2604,2714,2873,2970,12224"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-pa/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,465,591,696,839,964,1073,1172,1330,1435,1604,1732,1881,2038,2099,2161",
+ "endColumns": "102,168,125,104,142,124,108,98,157,104,168,127,148,156,60,61,77",
+ "endOffsets": "295,464,590,695,838,963,1072,1171,1329,1434,1603,1731,1880,2037,2098,2160,2238"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4436,4543,4716,4846,4955,5102,5231,5344,5598,5760,5869,6042,6174,6327,6488,6553,6619",
+ "endColumns": "106,172,129,108,146,128,112,102,161,108,172,131,152,160,64,65,81",
+ "endOffsets": "4538,4711,4841,4950,5097,5226,5339,5442,5755,5864,6037,6169,6322,6483,6548,6614,6696"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-pa/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "146",
+ "endOffsets": "341"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5447",
+ "endColumns": "150",
+ "endOffsets": "5593"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-pa/values-pa.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,160,261,375",
+ "endColumns": "104,100,113,102",
+ "endOffsets": "155,256,370,473"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6773,7119,7220,7334",
+ "endColumns": "104,100,113,102",
+ "endOffsets": "6873,7215,7329,7432"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-pa/values-pa.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,358,459,561,659,788",
+ "endColumns": "97,101,102,100,101,97,128,100",
+ "endOffsets": "148,250,353,454,556,654,783,884"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3400,3498,3600,3703,3804,3906,4004,12229",
+ "endColumns": "97,101,102,100,101,97,128,100",
+ "endOffsets": "3493,3595,3698,3799,3901,3999,4128,12325"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pl.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pl.json
new file mode 100644
index 00000000..bd7cd29b
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pl.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-pl/values-pl.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-pl/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "135",
+ "endOffsets": "330"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5587",
+ "endColumns": "139",
+ "endOffsets": "5722"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-pl/values-pl.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,386,461,536,615,719,814,899,1016,1098,1162,1243,1307,1368,1479,1543,1611,1665,1734,1796,1850,1961,2022,2084,2138,2210,2339,2428,2510,2659,2741,2824,2961,3048,3125,3179,3230,3296,3367,3443,3532,3615,3692,3770,3848,3924,4032,4122,4195,4290,4387,4459,4533,4633,4685,4770,4836,4924,5014,5076,5140,5203,5274,5381,5493,5592,5699,5757,5812",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,74,74,78,103,94,84,116,81,63,80,63,60,110,63,67,53,68,61,53,110,60,61,53,71,128,88,81,148,81,82,136,86,76,53,50,65,70,75,88,82,76,77,77,75,107,89,72,94,96,71,73,99,51,84,65,87,89,61,63,62,70,106,111,98,106,57,54,75",
+ "endOffsets": "381,456,531,610,714,809,894,1011,1093,1157,1238,1302,1363,1474,1538,1606,1660,1729,1791,1845,1956,2017,2079,2133,2205,2334,2423,2505,2654,2736,2819,2956,3043,3120,3174,3225,3291,3362,3438,3527,3610,3687,3765,3843,3919,4027,4117,4190,4285,4382,4454,4528,4628,4680,4765,4831,4919,5009,5071,5135,5198,5269,5376,5488,5587,5694,5752,5807,5883"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3148,3223,3298,3377,3481,4313,4398,4515,7019,7174,7573,7637,7698,7809,7873,7941,7995,8064,8126,8180,8291,8352,8414,8468,8540,8669,8758,8840,8989,9071,9154,9291,9378,9455,9509,9560,9626,9697,9773,9862,9945,10022,10100,10178,10254,10362,10452,10525,10620,10717,10789,10863,10963,11015,11100,11166,11254,11344,11406,11470,11533,11604,11711,11823,11922,12029,12087,12222",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,74,74,78,103,94,84,116,81,63,80,63,60,110,63,67,53,68,61,53,110,60,61,53,71,128,88,81,148,81,82,136,86,76,53,50,65,70,75,88,82,76,77,77,75,107,89,72,94,96,71,73,99,51,84,65,87,89,61,63,62,70,106,111,98,106,57,54,75",
+ "endOffsets": "431,3218,3293,3372,3476,3571,4393,4510,4592,7078,7250,7632,7693,7804,7868,7936,7990,8059,8121,8175,8286,8347,8409,8463,8535,8664,8753,8835,8984,9066,9149,9286,9373,9450,9504,9555,9621,9692,9768,9857,9940,10017,10095,10173,10249,10357,10447,10520,10615,10712,10784,10858,10958,11010,11095,11161,11249,11339,11401,11465,11528,11599,11706,11818,11917,12024,12082,12137,12293"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-pl/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,293,457,575,681,828,949,1056,1151,1318,1423,1594,1718,1873,2030,2095,2157",
+ "endColumns": "99,163,117,105,146,120,106,94,166,104,170,123,154,156,64,61,79",
+ "endOffsets": "292,456,574,680,827,948,1055,1150,1317,1422,1593,1717,1872,2029,2094,2156,2236"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4597,4701,4869,4991,5101,5252,5377,5488,5727,5898,6007,6182,6310,6469,6630,6699,6765",
+ "endColumns": "103,167,121,109,150,124,110,98,170,108,174,127,158,160,68,65,83",
+ "endOffsets": "4696,4864,4986,5096,5247,5372,5483,5582,5893,6002,6177,6305,6464,6625,6694,6760,6844"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-pl/values-pl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,220,322,430,516,623,742,821,897,988,1081,1176,1270,1371,1464,1559,1654,1745,1836,1918,2027,2127,2226,2335,2447,2558,2721,2817",
+ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82",
+ "endOffsets": "215,317,425,511,618,737,816,892,983,1076,1171,1265,1366,1459,1554,1649,1740,1831,1913,2022,2122,2221,2330,2442,2553,2716,2812,2895"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "436,551,653,761,847,954,1073,1152,1228,1319,1412,1507,1601,1702,1795,1890,1985,2076,2167,2249,2358,2458,2557,2666,2778,2889,3052,12432",
+ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82",
+ "endOffsets": "546,648,756,842,949,1068,1147,1223,1314,1407,1502,1596,1697,1790,1885,1980,2071,2162,2244,2353,2453,2552,2661,2773,2884,3047,3143,12510"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-pl/values-pl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,352,451,565,670,792",
+ "endColumns": "96,101,97,98,113,104,121,100",
+ "endOffsets": "147,249,347,446,560,665,787,888"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3576,3673,3775,3873,3972,4086,4191,12515",
+ "endColumns": "96,101,97,98,113,104,121,100",
+ "endOffsets": "3668,3770,3868,3967,4081,4186,4308,12611"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-pl/values-pl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,266,346,480,649,730",
+ "endColumns": "69,90,79,133,168,80,76",
+ "endOffsets": "170,261,341,475,644,725,802"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6849,7083,12142,12298,12616,12785,12866",
+ "endColumns": "69,90,79,133,168,80,76",
+ "endOffsets": "6914,7169,12217,12427,12780,12861,12938"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-pl/values-pl.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,254,369",
+ "endColumns": "99,98,114,103",
+ "endOffsets": "150,249,364,468"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6919,7255,7354,7469",
+ "endColumns": "99,98,114,103",
+ "endOffsets": "7014,7349,7464,7568"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-port.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-port.json
new file mode 100644
index 00000000..f945c174
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-port.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-port/values-port.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-port/values-port.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "55",
+ "endOffsets": "106"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pt-rBR.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pt-rBR.json
new file mode 100644
index 00000000..bc3ea4f7
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pt-rBR.json
@@ -0,0 +1,149 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-pt-rBR/values-pt-rBR.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-pt-rBR/values-pt-rBR.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,353,453,560,670,790",
+ "endColumns": "96,101,98,99,106,109,119,100",
+ "endOffsets": "147,249,348,448,555,665,785,886"
+ },
+ "to": {
+ "startLines": "71,72,73,74,75,76,77,270",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "5100,5197,5299,5398,5498,5605,5715,23386",
+ "endColumns": "96,101,98,99,106,109,119,100",
+ "endOffsets": "5192,5294,5393,5493,5600,5710,5830,23482"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-pt-rBR/strings.xml",
+ "from": {
+ "startLines": "91,95,99,155,159,164,60,64,3,87,89,88,83,84,82,86,85,90,176,175,174,80,78,79,212,213,214,216,217,215,218,219,170,169,171,154,153,163,152,172,10,18,17,22,32,28,30,29,31,34,35,33,20,21,23,24,25,26,11,13,12,16,15,14,105,150,141,140,146,148,147,142,143,144,145,149,112,113,136,137,134,135,110,111,123,124,125,126,127,106,109,107,108,114,115,116,130,131,128,129,117,119,120,121,122,118,138,139,104,132,133,38,48,52,53,54,49,50,51,75,76,69,70,71,72,73,55,58,56,74,68,45,46,37,39,41,42,40,43,6,4,7,5,8,193,192,198,185,184,197,203,196,194,190,186,187,188,191,183,180,189,181,204,182,205,206,199,202,200,201,195,179,209,178,177,207,208",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "6811,7004,7189,11851,12056,12290,4659,4914,110,6494,6669,6602,6193,6250,6133,6438,6376,6748,12975,12900,12829,6068,5931,6002,15778,15837,15970,16254,16358,16049,16438,16512,12551,12483,12655,11764,11677,12217,11606,12761,428,1133,994,1424,2329,1947,2118,2018,2232,2568,2737,2436,1240,1357,1520,1618,1727,1827,508,632,564,899,827,696,7432,11554,10817,10766,11238,11365,11291,10865,10950,11023,11100,11452,7992,8079,10310,10400,10103,10187,7790,7872,9148,9234,9314,9408,9474,7491,7708,7569,7637,8243,8332,8498,9724,9808,9554,9633,8635,8793,8859,8949,9058,8715,10567,10662,7377,9907,9993,2890,3608,4026,4101,4174,3685,3886,3949,5774,5860,5192,5286,5382,5493,5591,4243,4492,4333,5705,5099,3482,3537,2809,3012,3201,3282,3121,3377,266,159,317,212,374,14260,14187,14675,13629,13566,14600,15042,14502,14371,14024,13681,13767,13851,14105,13499,13237,13935,13352,15179,13415,15285,15350,14750,14960,14823,14886,14431,13189,15569,13137,13086,15415,15496",
+ "endLines": "94,98,102,158,162,167,63,67,3,87,89,88,83,84,82,86,85,90,176,175,174,80,78,79,212,213,214,216,217,215,218,219,170,169,171,154,153,163,152,172,10,18,17,22,32,28,30,29,31,34,35,33,20,21,23,24,25,26,11,13,12,16,15,14,105,150,141,140,146,148,147,142,143,144,145,149,112,113,136,137,134,135,110,111,123,124,125,126,127,106,109,107,108,114,115,116,130,131,128,129,117,119,120,121,122,118,138,139,104,132,133,38,48,52,53,54,49,50,51,75,76,69,70,71,72,73,55,59,57,74,68,45,46,37,39,41,42,40,43,6,4,7,5,8,193,192,198,185,184,197,203,196,194,190,186,187,188,191,183,180,189,181,204,182,205,206,199,202,200,201,195,179,209,178,177,207,208",
+ "endColumns": "14,14,14,14,14,14,14,14,48,107,78,66,56,125,59,55,61,62,110,74,70,63,70,65,58,132,78,103,79,204,73,101,103,67,105,86,86,72,70,66,79,105,138,95,106,70,113,99,96,168,70,131,116,66,97,108,99,118,55,63,67,94,71,130,58,50,47,50,52,86,73,84,72,76,137,101,86,163,89,166,83,122,81,119,85,79,93,65,79,77,81,67,70,88,165,136,83,98,78,90,79,65,89,108,89,77,94,103,54,85,109,121,76,74,72,68,200,62,76,85,69,93,95,110,97,113,89,56,51,68,92,54,69,80,108,80,94,79,103,50,52,56,53,52,110,72,74,51,62,74,136,97,59,80,85,83,83,81,66,114,88,62,105,83,64,64,72,81,62,73,70,47,44,51,50,80,72",
+ "endOffsets": "6999,7184,7371,12051,12212,12477,4909,5094,154,6597,6743,6664,6245,6371,6188,6489,6433,6806,13081,12970,12895,6127,5997,6063,15832,15965,16044,16353,16433,16249,16507,16609,12650,12546,12756,11846,11759,12285,11672,12823,503,1234,1128,1515,2431,2013,2227,2113,2324,2732,2803,2563,1352,1419,1613,1722,1822,1941,559,691,627,989,894,822,7486,11600,10860,10812,11286,11447,11360,10945,11018,11095,11233,11549,8074,8238,10395,10562,10182,10305,7867,7987,9229,9309,9403,9469,9549,7564,7785,7632,7703,8327,8493,8630,9803,9902,9628,9719,8710,8854,8944,9053,9143,8788,10657,10761,7427,9988,10098,3007,3680,4096,4169,4238,3881,3944,4021,5855,5925,5281,5377,5488,5586,5700,4328,4654,4487,5769,5187,3532,3602,2885,3116,3277,3372,3196,3476,312,207,369,261,422,14366,14255,14745,13676,13624,14670,15174,14595,14426,14100,13762,13846,13930,14182,13561,13347,14019,13410,15280,13494,15345,15410,14818,15037,14881,14955,14497,13232,15609,13184,13132,15491,15564"
+ },
+ "to": {
+ "startLines": "2,6,10,18,22,26,30,34,65,81,82,83,84,85,86,87,88,89,108,109,110,111,112,113,116,117,118,119,120,121,122,123,125,128,189,191,192,193,194,196,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,290,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,343,528,888,1093,1254,1446,1701,4624,6137,6245,6324,6391,6448,6574,6634,6690,6752,9077,9188,9263,9334,9398,9469,9720,9779,9912,9991,10095,10175,10380,10454,10620,10903,15896,16081,16168,16255,16328,16476,16694,16774,16880,17019,17115,17222,17293,17407,17507,17604,17773,17844,17976,18093,18160,18258,18367,18467,18586,18642,18706,18774,18869,18941,19158,19217,19268,19316,19367,19420,19507,19581,19666,19739,19816,19954,20056,20143,20307,20397,20564,20648,20771,20853,20973,21059,21139,21233,21299,21379,21457,21539,21607,21678,21767,21933,22070,22154,22253,22332,22423,22503,22569,22659,22768,22858,22936,23031,23135,23190,23276,23656,23778,23855,23930,24003,24072,24273,24336,24413,24499,24569,24663,24759,24870,24968,25082,25172,25339,25498,25567,25660,25715,25785,25866,25975,26056,26151,26231,26335,26386,26439,26496,26550,26771,26882,26955,27030,27082,27145,27220,27357,27455,27515,27596,27682,27766,27850,27932,27999,28114,28203,28266,28372,28456,28521,28586,28659,28741,28804,28878,28949,28997,29042,29094,29145,29226",
+ "endLines": "5,9,13,21,25,29,33,37,65,81,82,83,84,85,86,87,88,89,108,109,110,111,112,113,116,117,118,119,120,121,122,123,125,128,189,191,192,193,194,196,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,289,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341",
+ "endColumns": "14,14,14,14,14,14,14,14,48,107,78,66,56,125,59,55,61,62,110,74,70,63,70,65,58,132,78,103,79,204,73,101,103,67,105,86,86,72,70,66,79,105,138,95,106,70,113,99,96,168,70,131,116,66,97,108,99,118,55,63,67,94,71,130,58,50,47,50,52,86,73,84,72,76,137,101,86,163,89,166,83,122,81,119,85,79,93,65,79,77,81,67,70,88,165,136,83,98,78,90,79,65,89,108,89,77,94,103,54,85,109,121,76,74,72,68,200,62,76,85,69,93,95,110,97,113,89,56,51,68,92,54,69,80,108,80,94,79,103,50,52,56,53,52,110,72,74,51,62,74,136,97,59,80,85,83,83,81,66,114,88,62,105,83,64,64,72,81,62,73,70,47,44,51,50,80,72",
+ "endOffsets": "338,523,710,1088,1249,1441,1696,1881,4668,6240,6319,6386,6443,6569,6629,6685,6747,6810,9183,9258,9329,9393,9464,9530,9774,9907,9986,10090,10170,10375,10449,10551,10719,10966,15997,16163,16250,16323,16394,16538,16769,16875,17014,17110,17217,17288,17402,17502,17599,17768,17839,17971,18088,18155,18253,18362,18462,18581,18637,18701,18769,18864,18936,19067,19212,19263,19311,19362,19415,19502,19576,19661,19734,19811,19949,20051,20138,20302,20392,20559,20643,20766,20848,20968,21054,21134,21228,21294,21374,21452,21534,21602,21673,21762,21928,22065,22149,22248,22327,22418,22498,22564,22654,22763,22853,22931,23026,23130,23185,23271,23381,23773,23850,23925,23998,24067,24268,24331,24408,24494,24564,24658,24754,24865,24963,25077,25167,25334,25493,25562,25655,25710,25780,25861,25970,26051,26146,26226,26330,26381,26434,26491,26545,26598,26877,26950,27025,27077,27140,27215,27352,27450,27510,27591,27677,27761,27845,27927,27994,28109,28198,28261,28367,28451,28516,28581,28654,28736,28799,28873,28944,28992,29037,29089,29140,29221,29294"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-pt-rBR/values-pt-rBR.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,273,354,432,516,611,700,801,921,1002,1066,1158,1237,1297,1387,1451,1522,1585,1660,1724,1778,1905,1963,2025,2079,2158,2299,2386,2468,2607,2690,2774,2913,3000,3080,3136,3187,3253,3327,3407,3494,3577,3650,3727,3796,3870,3972,4060,4137,4230,4326,4400,4480,4577,4629,4713,4779,4866,4954,5016,5080,5143,5211,5323,5434,5541,5651,5711,5766",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,77,83,94,88,100,119,80,63,91,78,59,89,63,70,62,74,63,53,126,57,61,53,78,140,86,81,138,82,83,138,86,79,55,50,65,73,79,86,82,72,76,68,73,101,87,76,92,95,73,79,96,51,83,65,86,87,61,63,62,67,111,110,106,109,59,54,76",
+ "endOffsets": "268,349,427,511,606,695,796,916,997,1061,1153,1232,1292,1382,1446,1517,1580,1655,1719,1773,1900,1958,2020,2074,2153,2294,2381,2463,2602,2685,2769,2908,2995,3075,3131,3182,3248,3322,3402,3489,3572,3645,3722,3791,3865,3967,4055,4132,4225,4321,4395,4475,4572,4624,4708,4774,4861,4949,5011,5075,5138,5206,5318,5429,5536,5646,5706,5761,5838"
+ },
+ "to": {
+ "startLines": "14,66,67,68,69,70,78,79,80,124,127,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,195",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "715,4673,4754,4832,4916,5011,5835,5936,6056,10556,10811,11288,11367,11427,11517,11581,11652,11715,11790,11854,11908,12035,12093,12155,12209,12288,12429,12516,12598,12737,12820,12904,13043,13130,13210,13266,13317,13383,13457,13537,13624,13707,13780,13857,13926,14000,14102,14190,14267,14360,14456,14530,14610,14707,14759,14843,14909,14996,15084,15146,15210,15273,15341,15453,15564,15671,15781,15841,16399",
+ "endLines": "17,66,67,68,69,70,78,79,80,124,127,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,195",
+ "endColumns": "12,80,77,83,94,88,100,119,80,63,91,78,59,89,63,70,62,74,63,53,126,57,61,53,78,140,86,81,138,82,83,138,86,79,55,50,65,73,79,86,82,72,76,68,73,101,87,76,92,95,73,79,96,51,83,65,86,87,61,63,62,67,111,110,106,109,59,54,76",
+ "endOffsets": "883,4749,4827,4911,5006,5095,5931,6051,6132,10615,10898,11362,11422,11512,11576,11647,11710,11785,11849,11903,12030,12088,12150,12204,12283,12424,12511,12593,12732,12815,12899,13038,13125,13205,13261,13312,13378,13452,13532,13619,13702,13775,13852,13921,13995,14097,14185,14262,14355,14451,14525,14605,14702,14754,14838,14904,14991,15079,15141,15205,15268,15336,15448,15559,15666,15776,15836,15891,16471"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-pt-rBR/values-pt-rBR.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,262,341,492,661,748",
+ "endColumns": "69,86,78,150,168,86,80",
+ "endOffsets": "170,257,336,487,656,743,824"
+ },
+ "to": {
+ "startLines": "114,126,190,197,271,307,308",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "9535,10724,16002,16543,23487,26603,26690",
+ "endColumns": "69,86,78,150,168,86,80",
+ "endOffsets": "9600,10806,16076,16689,23651,26685,26766"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-pt-rBR/values-pt-rBR.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,170,269,381",
+ "endColumns": "114,98,111,105",
+ "endOffsets": "165,264,376,482"
+ },
+ "to": {
+ "startLines": "115,129,130,131",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "9605,10971,11070,11182",
+ "endColumns": "114,98,111,105",
+ "endOffsets": "9715,11065,11177,11283"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-pt-rBR/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "140",
+ "endOffsets": "339"
+ },
+ "to": {
+ "startLines": "98",
+ "startColumns": "4",
+ "startOffsets": "7827",
+ "endColumns": "144",
+ "endOffsets": "7967"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-pt-rBR/values-pt-rBR.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843",
+ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85",
+ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,222",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "1886,2006,2112,2219,2308,2409,2528,2613,2693,2784,2877,2972,3066,3166,3259,3354,3449,3540,3631,3716,3823,3934,4036,4144,4252,4362,4524,19072",
+ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85",
+ "endOffsets": "2001,2107,2214,2303,2404,2523,2608,2688,2779,2872,2967,3061,3161,3254,3349,3444,3535,3626,3711,3818,3929,4031,4139,4247,4357,4519,4619,19153"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-pt-rBR/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,298,442,565,669,832,958,1076,1177,1343,1447,1607,1733,1886,2039,2104,2166",
+ "endColumns": "100,143,122,103,162,125,117,100,165,103,159,125,152,152,64,61,79",
+ "endOffsets": "297,441,564,668,831,957,1075,1176,1342,1446,1606,1732,1885,2038,2103,2165,2245"
+ },
+ "to": {
+ "startLines": "90,91,92,93,94,95,96,97,99,100,101,102,103,104,105,106,107",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "6815,6920,7068,7195,7303,7470,7600,7722,7972,8142,8250,8414,8544,8701,8858,8927,8993",
+ "endColumns": "104,147,126,107,166,129,121,104,169,107,163,129,156,156,68,65,83",
+ "endOffsets": "6915,7063,7190,7298,7465,7595,7717,7822,8137,8245,8409,8539,8696,8853,8922,8988,9072"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pt-rPT.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pt-rPT.json
new file mode 100644
index 00000000..4919f092
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pt-rPT.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-pt-rPT/values-pt-rPT.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-pt-rPT/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "140",
+ "endOffsets": "339"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5559",
+ "endColumns": "144",
+ "endOffsets": "5699"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-pt-rPT/values-pt-rPT.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,273,354,434,516,615,711,814,934,1015,1079,1171,1250,1315,1405,1469,1537,1599,1672,1736,1790,1916,1974,2036,2090,2166,2309,2396,2478,2617,2699,2781,2917,3004,3084,3140,3191,3257,3332,3412,3499,3578,3651,3728,3801,3875,3982,4075,4152,4245,4343,4417,4498,4597,4650,4734,4800,4889,4977,5039,5103,5166,5234,5350,5458,5565,5667,5727,5782",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,80,79,81,98,95,102,119,80,63,91,78,64,89,63,67,61,72,63,53,125,57,61,53,75,142,86,81,138,81,81,135,86,79,55,50,65,74,79,86,78,72,76,72,73,106,92,76,92,97,73,80,98,52,83,65,88,87,61,63,62,67,115,107,106,101,59,54,85",
+ "endOffsets": "268,349,429,511,610,706,809,929,1010,1074,1166,1245,1310,1400,1464,1532,1594,1667,1731,1785,1911,1969,2031,2085,2161,2304,2391,2473,2612,2694,2776,2912,2999,3079,3135,3186,3252,3327,3407,3494,3573,3646,3723,3796,3870,3977,4070,4147,4240,4338,4412,4493,4592,4645,4729,4795,4884,4972,5034,5098,5161,5229,5345,5453,5560,5662,5722,5777,5863"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3054,3135,3215,3297,3396,4224,4327,4447,7048,7200,7606,7685,7750,7840,7904,7972,8034,8107,8171,8225,8351,8409,8471,8525,8601,8744,8831,8913,9052,9134,9216,9352,9439,9519,9575,9626,9692,9767,9847,9934,10013,10086,10163,10236,10310,10417,10510,10587,10680,10778,10852,10933,11032,11085,11169,11235,11324,11412,11474,11538,11601,11669,11785,11893,12000,12102,12162,12296",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,80,79,81,98,95,102,119,80,63,91,78,64,89,63,67,61,72,63,53,125,57,61,53,75,142,86,81,138,81,81,135,86,79,55,50,65,74,79,86,78,72,76,72,73,106,92,76,92,97,73,80,98,52,83,65,88,87,61,63,62,67,115,107,106,101,59,54,85",
+ "endOffsets": "318,3130,3210,3292,3391,3487,4322,4442,4523,7107,7287,7680,7745,7835,7899,7967,8029,8102,8166,8220,8346,8404,8466,8520,8596,8739,8826,8908,9047,9129,9211,9347,9434,9514,9570,9621,9687,9762,9842,9929,10008,10081,10158,10231,10305,10412,10505,10582,10675,10773,10847,10928,11027,11080,11164,11230,11319,11407,11469,11533,11596,11664,11780,11888,11995,12097,12157,12212,12377"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-pt-rPT/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,298,457,581,685,849,973,1091,1196,1380,1484,1650,1777,1932,2106,2170,2235",
+ "endColumns": "100,158,123,103,163,123,117,104,183,103,165,126,154,173,63,64,82",
+ "endOffsets": "297,456,580,684,848,972,1090,1195,1379,1483,1649,1776,1931,2105,2169,2234,2317"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4528,4633,4796,4924,5032,5200,5328,5450,5704,5892,6000,6170,6301,6460,6638,6706,6775",
+ "endColumns": "104,162,127,107,167,127,121,108,187,107,169,130,158,177,67,68,86",
+ "endOffsets": "4628,4791,4919,5027,5195,5323,5445,5554,5887,5995,6165,6296,6455,6633,6701,6770,6857"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,319,426,515,616,734,819,899,991,1085,1182,1276,1375,1469,1565,1660,1752,1844,1929,2036,2147,2249,2357,2465,2572,2737,2836",
+ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85",
+ "endOffsets": "208,314,421,510,611,729,814,894,986,1080,1177,1271,1370,1464,1560,1655,1747,1839,1924,2031,2142,2244,2352,2460,2567,2732,2831,2917"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "323,431,537,644,733,834,952,1037,1117,1209,1303,1400,1494,1593,1687,1783,1878,1970,2062,2147,2254,2365,2467,2575,2683,2790,2955,12533",
+ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85",
+ "endOffsets": "426,532,639,728,829,947,1032,1112,1204,1298,1395,1489,1588,1682,1778,1873,1965,2057,2142,2249,2360,2462,2570,2678,2785,2950,3049,12614"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-pt-rPT/values-pt-rPT.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,171,270,382",
+ "endColumns": "115,98,111,102",
+ "endOffsets": "166,265,377,480"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6932,7292,7391,7503",
+ "endColumns": "115,98,111,102",
+ "endOffsets": "7043,7386,7498,7601"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-pt-rPT/values-pt-rPT.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,353,453,560,666,787",
+ "endColumns": "96,101,98,99,106,105,120,100",
+ "endOffsets": "147,249,348,448,555,661,782,883"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3492,3589,3691,3790,3890,3997,4103,12619",
+ "endColumns": "96,101,98,99,106,105,120,100",
+ "endOffsets": "3584,3686,3785,3885,3992,4098,4219,12715"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-pt-rPT/values-pt-rPT.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,263,342,493,662,749",
+ "endColumns": "69,87,78,150,168,86,80",
+ "endOffsets": "170,258,337,488,657,744,825"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6862,7112,12217,12382,12720,12889,12976",
+ "endColumns": "69,87,78,150,168,86,80",
+ "endOffsets": "6927,7195,12291,12528,12884,12971,13052"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pt.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pt.json
new file mode 100644
index 00000000..daa64e26
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-pt.json
@@ -0,0 +1,77 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-pt/values-pt.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-pt/values-pt.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,170,269,381",
+ "endColumns": "114,98,111,105",
+ "endOffsets": "165,264,376,482"
+ },
+ "to": {
+ "startLines": "37,39,40,41",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "3648,3850,3949,4061",
+ "endColumns": "114,98,111,105",
+ "endOffsets": "3758,3944,4056,4162"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-pt/values-pt.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,353,453,560,670,790",
+ "endColumns": "96,101,98,99,106,109,119,100",
+ "endOffsets": "147,249,348,448,555,665,785,886"
+ },
+ "to": {
+ "startLines": "29,30,31,32,33,34,35,45",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "2843,2940,3042,3141,3241,3348,3458,4483",
+ "endColumns": "96,101,98,99,106,109,119,100",
+ "endOffsets": "2935,3037,3136,3236,3343,3453,3573,4579"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-pt/values-pt.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,262,341,492,661,748",
+ "endColumns": "69,86,78,150,168,86,80",
+ "endOffsets": "170,257,336,487,656,743,824"
+ },
+ "to": {
+ "startLines": "36,38,42,43,46,47,48",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "3578,3763,4167,4246,4584,4753,4840",
+ "endColumns": "69,86,78,150,168,86,80",
+ "endOffsets": "3643,3845,4241,4392,4748,4835,4916"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-pt/values-pt.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843",
+ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85",
+ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,44",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,4397",
+ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85",
+ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,4478"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ro.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ro.json
new file mode 100644
index 00000000..1ffb9f8b
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ro.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ro/values-ro.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ro/values-ro.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,226,330,443,527,631,752,837,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1855,1938,2050,2158,2258,2372,2478,2584,2748,2851",
+ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83",
+ "endOffsets": "221,325,438,522,626,747,832,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1850,1933,2045,2153,2253,2367,2473,2579,2743,2846,2930"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "371,492,596,709,793,897,1018,1103,1183,1274,1367,1462,1556,1656,1749,1844,1938,2029,2121,2204,2316,2424,2524,2638,2744,2850,3014,12501",
+ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83",
+ "endOffsets": "487,591,704,788,892,1013,1098,1178,1269,1362,1457,1551,1651,1744,1839,1933,2024,2116,2199,2311,2419,2519,2633,2739,2845,3009,3112,12580"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ro/values-ro.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,162,264,377",
+ "endColumns": "106,101,112,102",
+ "endOffsets": "157,259,372,475"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6937,7291,7393,7506",
+ "endColumns": "106,101,112,102",
+ "endOffsets": "7039,7388,7501,7604"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ro/values-ro.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,321,413,501,588,684,774,875,996,1080,1146,1241,1315,1375,1459,1521,1587,1645,1718,1781,1837,1956,2013,2074,2130,2204,2349,2435,2519,2652,2734,2817,2963,3053,3133,3188,3239,3305,3378,3456,3544,3629,3700,3777,3851,3923,4029,4120,4194,4289,4387,4461,4541,4642,4695,4781,4847,4936,5026,5088,5152,5215,5289,5401,5511,5621,5726,5785,5840",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,91,87,86,95,89,100,120,83,65,94,73,59,83,61,65,57,72,62,55,118,56,60,55,73,144,85,83,132,81,82,145,89,79,54,50,65,72,77,87,84,70,76,73,71,105,90,73,94,97,73,79,100,52,85,65,88,89,61,63,62,73,111,109,109,104,58,54,78",
+ "endOffsets": "316,408,496,583,679,769,870,991,1075,1141,1236,1310,1370,1454,1516,1582,1640,1713,1776,1832,1951,2008,2069,2125,2199,2344,2430,2514,2647,2729,2812,2958,3048,3128,3183,3234,3300,3373,3451,3539,3624,3695,3772,3846,3918,4024,4115,4189,4284,4382,4456,4536,4637,4690,4776,4842,4931,5021,5083,5147,5210,5284,5396,5506,5616,5721,5780,5835,5914"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3117,3209,3297,3384,3480,4297,4398,4519,7044,7196,7609,7683,7743,7827,7889,7955,8013,8086,8149,8205,8324,8381,8442,8498,8572,8717,8803,8887,9020,9102,9185,9331,9421,9501,9556,9607,9673,9746,9824,9912,9997,10068,10145,10219,10291,10397,10488,10562,10657,10755,10829,10909,11010,11063,11149,11215,11304,11394,11456,11520,11583,11657,11769,11879,11989,12094,12153,12283",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,91,87,86,95,89,100,120,83,65,94,73,59,83,61,65,57,72,62,55,118,56,60,55,73,144,85,83,132,81,82,145,89,79,54,50,65,72,77,87,84,70,76,73,71,105,90,73,94,97,73,79,100,52,85,65,88,89,61,63,62,73,111,109,109,104,58,54,78",
+ "endOffsets": "366,3204,3292,3379,3475,3565,4393,4514,4598,7105,7286,7678,7738,7822,7884,7950,8008,8081,8144,8200,8319,8376,8437,8493,8567,8712,8798,8882,9015,9097,9180,9326,9416,9496,9551,9602,9668,9741,9819,9907,9992,10063,10140,10214,10286,10392,10483,10557,10652,10750,10824,10904,11005,11058,11144,11210,11299,11389,11451,11515,11578,11652,11764,11874,11984,12089,12148,12203,12357"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ro/values-ro.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,355,454,556,665,782",
+ "endColumns": "97,101,99,98,101,108,116,100",
+ "endOffsets": "148,250,350,449,551,660,777,878"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3570,3668,3770,3870,3969,4071,4180,12585",
+ "endColumns": "97,101,99,98,101,108,116,100",
+ "endOffsets": "3663,3765,3865,3964,4066,4175,4292,12681"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ro/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,453,579,685,832,958,1077,1182,1340,1447,1602,1731,1873,2035,2100,2164",
+ "endColumns": "103,155,125,105,146,125,118,104,157,106,154,128,141,161,64,63,78",
+ "endOffsets": "296,452,578,684,831,957,1076,1181,1339,1446,1601,1730,1872,2034,2099,2163,2242"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4603,4711,4871,5001,5111,5262,5392,5515,5769,5931,6042,6201,6334,6480,6646,6715,6783",
+ "endColumns": "107,159,129,109,150,129,122,108,161,110,158,132,145,165,68,67,82",
+ "endOffsets": "4706,4866,4996,5106,5257,5387,5510,5619,5926,6037,6196,6329,6475,6641,6710,6778,6861"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ro/values-ro.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,262,337,476,645,732",
+ "endColumns": "70,85,74,138,168,86,80",
+ "endOffsets": "171,257,332,471,640,727,808"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6866,7110,12208,12362,12686,12855,12942",
+ "endColumns": "70,85,74,138,168,86,80",
+ "endOffsets": "6932,7191,12278,12496,12850,12937,13018"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ro/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "140",
+ "endOffsets": "335"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5624",
+ "endColumns": "144",
+ "endOffsets": "5764"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ru.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ru.json
new file mode 100644
index 00000000..3b90114e
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ru.json
@@ -0,0 +1,149 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ru/values-ru.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ru/values-ru.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,356,457,562,665,782",
+ "endColumns": "97,101,100,100,104,102,116,100",
+ "endOffsets": "148,250,351,452,557,660,777,878"
+ },
+ "to": {
+ "startLines": "46,47,48,49,50,51,52,181",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3866,3964,4066,4167,4268,4373,4476,16317",
+ "endColumns": "97,101,100,100,104,102,116,100",
+ "endOffsets": "3959,4061,4162,4263,4368,4471,4588,16413"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ru/values-ru.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,220,322,421,507,612,733,812,888,980,1074,1169,1262,1357,1451,1547,1642,1734,1826,1915,2021,2128,2226,2335,2442,2556,2722,2822",
+ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81",
+ "endOffsets": "215,317,416,502,607,728,807,883,975,1069,1164,1257,1352,1446,1542,1637,1729,1821,1910,2016,2123,2221,2330,2437,2551,2717,2817,2899"
+ },
+ "to": {
+ "startLines": "14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,180",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "720,835,937,1036,1122,1227,1348,1427,1503,1595,1689,1784,1877,1972,2066,2162,2257,2349,2441,2530,2636,2743,2841,2950,3057,3171,3337,16235",
+ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81",
+ "endOffsets": "830,932,1031,1117,1222,1343,1422,1498,1590,1684,1779,1872,1967,2061,2157,2252,2344,2436,2525,2631,2738,2836,2945,3052,3166,3332,3432,16312"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ru/values-ru.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,381,459,537,621,719,810,907,1044,1136,1202,1301,1378,1441,1559,1620,1685,1742,1812,1873,1927,2043,2100,2162,2216,2290,2418,2506,2592,2729,2813,2898,3032,3123,3199,3253,3304,3370,3442,3520,3616,3698,3778,3854,3931,4008,4115,4204,4277,4367,4462,4536,4617,4710,4765,4846,4912,4998,5083,5145,5209,5272,5344,5442,5541,5636,5728,5786,5841",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,77,77,83,97,90,96,136,91,65,98,76,62,117,60,64,56,69,60,53,115,56,61,53,73,127,87,85,136,83,84,133,90,75,53,50,65,71,77,95,81,79,75,76,76,106,88,72,89,94,73,80,92,54,80,65,85,84,61,63,62,71,97,98,94,91,57,54,79",
+ "endOffsets": "376,454,532,616,714,805,902,1039,1131,1197,1296,1373,1436,1554,1615,1680,1737,1807,1868,1922,2038,2095,2157,2211,2285,2413,2501,2587,2724,2808,2893,3027,3118,3194,3248,3299,3365,3437,3515,3611,3693,3773,3849,3926,4003,4110,4199,4272,4362,4457,4531,4612,4705,4760,4841,4907,4993,5078,5140,5204,5267,5339,5437,5536,5631,5723,5781,5836,5916"
+ },
+ "to": {
+ "startLines": "2,41,42,43,44,45,53,54,55,97,100,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,167",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3437,3515,3593,3677,3775,4593,4690,4827,9168,9423,9910,9987,10050,10168,10229,10294,10351,10421,10482,10536,10652,10709,10771,10825,10899,11027,11115,11201,11338,11422,11507,11641,11732,11808,11862,11913,11979,12051,12129,12225,12307,12387,12463,12540,12617,12724,12813,12886,12976,13071,13145,13226,13319,13374,13455,13521,13607,13692,13754,13818,13881,13953,14051,14150,14245,14337,14395,14868",
+ "endLines": "7,41,42,43,44,45,53,54,55,97,100,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,167",
+ "endColumns": "12,77,77,83,97,90,96,136,91,65,98,76,62,117,60,64,56,69,60,53,115,56,61,53,73,127,87,85,136,83,84,133,90,75,53,50,65,71,77,95,81,79,75,76,76,106,88,72,89,94,73,80,92,54,80,65,85,84,61,63,62,71,97,98,94,91,57,54,79",
+ "endOffsets": "426,3510,3588,3672,3770,3861,4685,4822,4914,9229,9517,9982,10045,10163,10224,10289,10346,10416,10477,10531,10647,10704,10766,10820,10894,11022,11110,11196,11333,11417,11502,11636,11727,11803,11857,11908,11974,12046,12124,12220,12302,12382,12458,12535,12612,12719,12808,12881,12971,13066,13140,13221,13314,13369,13450,13516,13602,13687,13749,13813,13876,13948,14046,14145,14240,14332,14390,14445,14943"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ru/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "152",
+ "endOffsets": "347"
+ },
+ "to": {
+ "startLines": "73",
+ "startColumns": "4",
+ "startOffsets": "6592",
+ "endColumns": "156",
+ "endOffsets": "6744"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ru/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,458,580,686,824,949,1060,1160,1337,1440,1599,1721,1884,2038,2103,2159",
+ "endColumns": "102,161,121,105,137,124,110,99,176,102,158,121,162,153,64,55,81",
+ "endOffsets": "295,457,579,685,823,948,1059,1159,1336,1439,1598,1720,1883,2037,2102,2158,2240"
+ },
+ "to": {
+ "startLines": "65,66,67,68,69,70,71,72,74,75,76,77,78,79,80,81,82",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "5593,5700,5866,5992,6102,6244,6373,6488,6749,6930,7037,7200,7326,7493,7651,7720,7780",
+ "endColumns": "106,165,125,109,141,128,114,103,180,106,162,125,166,157,68,59,85",
+ "endOffsets": "5695,5861,5987,6097,6239,6368,6483,6587,6925,7032,7195,7321,7488,7646,7715,7775,7861"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-ru/strings.xml",
+ "from": {
+ "startLines": "44,35,37,36,31,32,30,34,33,38,55,28,26,27,67,68,69,71,72,70,73,74,52,51,53,42,43,41,8,7,11,19,15,17,16,18,10,12,13,23,24,21,22,62,61,63,60,59,58,64,57,56",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "2855,2319,2486,2419,2009,2062,1949,2259,2194,2557,3420,1885,1748,1820,4527,4587,4737,4981,5107,4816,5196,5271,3211,3145,3308,2700,2779,2625,340,208,555,1258,872,1049,948,1158,451,657,759,1541,1642,1353,1441,4092,4010,4192,3903,3732,3653,4282,3574,3497",
+ "endLines": "49,35,37,36,31,32,30,34,33,38,55,28,26,27,67,68,69,71,72,70,73,74,52,51,53,42,43,41,8,7,11,19,15,17,16,18,10,12,13,23,24,21,22,62,61,63,60,59,58,64,57,56",
+ "endColumns": "14,99,70,66,52,131,59,59,64,65,76,62,71,64,59,149,78,125,88,164,74,98,96,65,110,78,75,74,109,131,101,93,75,108,100,99,103,101,111,100,104,87,99,99,81,89,106,170,78,77,78,76",
+ "endOffsets": "3139,2414,2552,2481,2057,2189,2004,2314,2254,2618,3492,1943,1815,1880,4582,4732,4811,5102,5191,4976,5266,5365,3303,3206,3414,2774,2850,2695,445,335,652,1347,943,1153,1044,1253,550,754,866,1637,1742,1436,1536,4187,4087,4277,4005,3898,3727,4355,3648,3569"
+ },
+ "to": {
+ "startLines": "8,56,57,58,59,60,61,62,63,64,83,84,85,86,89,90,91,92,93,94,95,96,98,101,162,164,165,166,169,170,171,172,173,174,175,176,177,178,179,183,184,185,186,189,190,191,192,193,194,195,196,197",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "431,4919,5019,5090,5157,5210,5342,5402,5462,5527,7866,7943,8006,8078,8325,8385,8535,8614,8740,8829,8994,9069,9234,9522,14450,14638,14717,14793,15093,15203,15335,15437,15531,15607,15716,15817,15917,16021,16123,16587,16688,16793,16881,17141,17241,17323,17413,17520,17691,17770,17848,17927",
+ "endLines": "13,56,57,58,59,60,61,62,63,64,83,84,85,86,89,90,91,92,93,94,95,96,98,101,162,164,165,166,169,170,171,172,173,174,175,176,177,178,179,183,184,185,186,189,190,191,192,193,194,195,196,197",
+ "endColumns": "14,99,70,66,52,131,59,59,64,65,76,62,71,64,59,149,78,125,88,164,74,98,96,65,110,78,75,74,109,131,101,93,75,108,100,99,103,101,111,100,104,87,99,99,81,89,106,170,78,77,78,76",
+ "endOffsets": "715,5014,5085,5152,5205,5337,5397,5457,5522,5588,7938,8001,8073,8138,8380,8530,8609,8735,8824,8989,9064,9163,9326,9583,14556,14712,14788,14863,15198,15330,15432,15526,15602,15711,15812,15912,16016,16118,16230,16683,16788,16876,16976,17236,17318,17408,17515,17686,17765,17843,17922,17999"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ru/values-ru.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,179,271,348,493,662,744",
+ "endColumns": "73,91,76,144,168,81,77",
+ "endOffsets": "174,266,343,488,657,739,817"
+ },
+ "to": {
+ "startLines": "87,99,163,168,182,187,188",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "8143,9331,14561,14948,16418,16981,17063",
+ "endColumns": "73,91,76,144,168,81,77",
+ "endOffsets": "8212,9418,14633,15088,16582,17058,17136"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ru/values-ru.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,163,268,380",
+ "endColumns": "107,104,111,104",
+ "endOffsets": "158,263,375,480"
+ },
+ "to": {
+ "startLines": "88,102,103,104",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "8217,9588,9693,9805",
+ "endColumns": "107,104,111,104",
+ "endOffsets": "8320,9688,9800,9905"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-si.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-si.json
new file mode 100644
index 00000000..7c3723fb
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-si.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-si/values-si.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-si/values-si.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,181,264,339,482,651,743",
+ "endColumns": "75,82,74,142,168,91,86",
+ "endOffsets": "176,259,334,477,646,738,825"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6664,6912,11867,12022,12348,12517,12609",
+ "endColumns": "75,82,74,142,168,91,86",
+ "endOffsets": "6735,6990,11937,12160,12512,12604,12691"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-si/values-si.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,163,270,386",
+ "endColumns": "107,106,115,104",
+ "endOffsets": "158,265,381,486"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6740,7084,7191,7307",
+ "endColumns": "107,106,115,104",
+ "endOffsets": "6843,7186,7302,7407"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-si/values-si.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,221,328,435,518,623,739,829,915,1006,1099,1193,1287,1387,1480,1575,1669,1760,1851,1935,2044,2148,2246,2356,2456,2563,2722,2821",
+ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81",
+ "endOffsets": "216,323,430,513,618,734,824,910,1001,1094,1188,1282,1382,1475,1570,1664,1755,1846,1930,2039,2143,2241,2351,2451,2558,2717,2816,2898"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "319,435,542,649,732,837,953,1043,1129,1220,1313,1407,1501,1601,1694,1789,1883,1974,2065,2149,2258,2362,2460,2570,2670,2777,2936,12165",
+ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81",
+ "endOffsets": "430,537,644,727,832,948,1038,1124,1215,1308,1402,1496,1596,1689,1784,1878,1969,2060,2144,2253,2357,2455,2565,2665,2772,2931,3030,12242"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-si/values-si.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,157,260,365,470,569,673,787",
+ "endColumns": "101,102,104,104,98,103,113,100",
+ "endOffsets": "152,255,360,465,564,668,782,883"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3442,3544,3647,3752,3857,3956,4060,12247",
+ "endColumns": "101,102,104,104,98,103,113,100",
+ "endOffsets": "3539,3642,3747,3852,3951,4055,4169,12343"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-si/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "134",
+ "endOffsets": "329"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5453",
+ "endColumns": "138",
+ "endOffsets": "5587"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-si/values-si.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,269,345,422,500,591,676,778,893,976,1040,1129,1196,1256,1350,1414,1477,1533,1603,1670,1725,1844,1901,1965,2019,2092,2214,2297,2382,2514,2592,2672,2794,2880,2964,3024,3076,3142,3212,3285,3367,3444,3516,3593,3665,3735,3848,3941,4014,4104,4197,4271,4343,4434,4488,4568,4634,4718,4803,4865,4929,4992,5058,5163,5268,5363,5464,5528,5584",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,75,76,77,90,84,101,114,82,63,88,66,59,93,63,62,55,69,66,54,118,56,63,53,72,121,82,84,131,77,79,121,85,83,59,51,65,69,72,81,76,71,76,71,69,112,92,72,89,92,73,71,90,53,79,65,83,84,61,63,62,65,104,104,94,100,63,55,79",
+ "endOffsets": "264,340,417,495,586,671,773,888,971,1035,1124,1191,1251,1345,1409,1472,1528,1598,1665,1720,1839,1896,1960,2014,2087,2209,2292,2377,2509,2587,2667,2789,2875,2959,3019,3071,3137,3207,3280,3362,3439,3511,3588,3660,3730,3843,3936,4009,4099,4192,4266,4338,4429,4483,4563,4629,4713,4798,4860,4924,4987,5053,5158,5263,5358,5459,5523,5579,5659"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3035,3111,3188,3266,3357,4174,4276,4391,6848,6995,7412,7479,7539,7633,7697,7760,7816,7886,7953,8008,8127,8184,8248,8302,8375,8497,8580,8665,8797,8875,8955,9077,9163,9247,9307,9359,9425,9495,9568,9650,9727,9799,9876,9948,10018,10131,10224,10297,10387,10480,10554,10626,10717,10771,10851,10917,11001,11086,11148,11212,11275,11341,11446,11551,11646,11747,11811,11942",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,75,76,77,90,84,101,114,82,63,88,66,59,93,63,62,55,69,66,54,118,56,63,53,72,121,82,84,131,77,79,121,85,83,59,51,65,69,72,81,76,71,76,71,69,112,92,72,89,92,73,71,90,53,79,65,83,84,61,63,62,65,104,104,94,100,63,55,79",
+ "endOffsets": "314,3106,3183,3261,3352,3437,4271,4386,4469,6907,7079,7474,7534,7628,7692,7755,7811,7881,7948,8003,8122,8179,8243,8297,8370,8492,8575,8660,8792,8870,8950,9072,9158,9242,9302,9354,9420,9490,9563,9645,9722,9794,9871,9943,10013,10126,10219,10292,10382,10475,10549,10621,10712,10766,10846,10912,10996,11081,11143,11207,11270,11336,11441,11546,11641,11742,11806,11862,12017"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-si/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,447,567,676,814,934,1046,1140,1287,1398,1550,1677,1817,1974,2043,2100",
+ "endColumns": "103,149,119,108,137,119,111,93,146,110,151,126,139,156,68,56,75",
+ "endOffsets": "296,446,566,675,813,933,1045,1139,1286,1397,1549,1676,1816,1973,2042,2099,2175"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4474,4582,4736,4860,4973,5115,5239,5355,5592,5743,5858,6014,6145,6289,6450,6523,6584",
+ "endColumns": "107,153,123,112,141,123,115,97,150,114,155,130,143,160,72,60,79",
+ "endOffsets": "4577,4731,4855,4968,5110,5234,5350,5448,5738,5853,6009,6140,6284,6445,6518,6579,6659"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sk.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sk.json
new file mode 100644
index 00000000..420cbfc7
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sk.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-sk/values-sk.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sk/values-sk.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,378,453,528,606,698,781,873,1001,1082,1147,1246,1322,1387,1477,1541,1607,1661,1730,1790,1844,1961,2021,2083,2137,2209,2339,2426,2518,2657,2726,2804,2935,3023,3103,3157,3208,3274,3346,3423,3506,3588,3660,3737,3810,3881,3986,4074,4146,4238,4334,4408,4482,4578,4630,4712,4779,4866,4953,5015,5079,5142,5210,5316,5423,5521,5638,5696,5751",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,74,74,77,91,82,91,127,80,64,98,75,64,89,63,65,53,68,59,53,116,59,61,53,71,129,86,91,138,68,77,130,87,79,53,50,65,71,76,82,81,71,76,72,70,104,87,71,91,95,73,73,95,51,81,66,86,86,61,63,62,67,105,106,97,116,57,54,78",
+ "endOffsets": "373,448,523,601,693,776,868,996,1077,1142,1241,1317,1382,1472,1536,1602,1656,1725,1785,1839,1956,2016,2078,2132,2204,2334,2421,2513,2652,2721,2799,2930,3018,3098,3152,3203,3269,3341,3418,3501,3583,3655,3732,3805,3876,3981,4069,4141,4233,4329,4403,4477,4573,4625,4707,4774,4861,4948,5010,5074,5137,5205,5311,5418,5516,5633,5691,5746,5825"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3140,3215,3290,3368,3460,4280,4372,4500,7028,7181,7600,7676,7741,7831,7895,7961,8015,8084,8144,8198,8315,8375,8437,8491,8563,8693,8780,8872,9011,9080,9158,9289,9377,9457,9511,9562,9628,9700,9777,9860,9942,10014,10091,10164,10235,10340,10428,10500,10592,10688,10762,10836,10932,10984,11066,11133,11220,11307,11369,11433,11496,11564,11670,11777,11875,11992,12050,12183",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,74,74,77,91,82,91,127,80,64,98,75,64,89,63,65,53,68,59,53,116,59,61,53,71,129,86,91,138,68,77,130,87,79,53,50,65,71,76,82,81,71,76,72,70,104,87,71,91,95,73,73,95,51,81,66,86,86,61,63,62,67,105,106,97,116,57,54,78",
+ "endOffsets": "423,3210,3285,3363,3455,3538,4367,4495,4576,7088,7275,7671,7736,7826,7890,7956,8010,8079,8139,8193,8310,8370,8432,8486,8558,8688,8775,8867,9006,9075,9153,9284,9372,9452,9506,9557,9623,9695,9772,9855,9937,10009,10086,10159,10230,10335,10423,10495,10587,10683,10757,10831,10927,10979,11061,11128,11215,11302,11364,11428,11491,11559,11665,11772,11870,11987,12045,12100,12257"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-sk/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,451,571,677,829,953,1062,1160,1325,1432,1598,1724,1883,2043,2107,2170",
+ "endColumns": "101,155,119,105,151,123,108,97,164,106,165,125,158,159,63,62,82",
+ "endOffsets": "294,450,570,676,828,952,1061,1159,1324,1431,1597,1723,1882,2042,2106,2169,2252"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4581,4687,4847,4971,5081,5237,5365,5478,5719,5888,5999,6169,6299,6462,6626,6694,6761",
+ "endColumns": "105,159,123,109,155,127,112,101,168,110,169,129,162,163,67,66,86",
+ "endOffsets": "4682,4842,4966,5076,5232,5360,5473,5575,5883,5994,6164,6294,6457,6621,6689,6756,6843"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-sk/values-sk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,253,354,452,562,670,792",
+ "endColumns": "95,101,100,97,109,107,121,100",
+ "endOffsets": "146,248,349,447,557,665,787,888"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3543,3639,3741,3842,3940,4050,4158,12492",
+ "endColumns": "95,101,100,97,109,107,121,100",
+ "endOffsets": "3634,3736,3837,3935,4045,4153,4275,12588"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sk/values-sk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,313,424,510,618,736,815,892,983,1076,1174,1268,1368,1461,1556,1654,1745,1836,1920,2025,2133,2232,2338,2450,2553,2719,2817",
+ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82",
+ "endOffsets": "207,308,419,505,613,731,810,887,978,1071,1169,1263,1363,1456,1551,1649,1740,1831,1915,2020,2128,2227,2333,2445,2548,2714,2812,2895"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "428,535,636,747,833,941,1059,1138,1215,1306,1399,1497,1591,1691,1784,1879,1977,2068,2159,2243,2348,2456,2555,2661,2773,2876,3042,12409",
+ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82",
+ "endOffsets": "530,631,742,828,936,1054,1133,1210,1301,1394,1492,1586,1686,1779,1874,1972,2063,2154,2238,2343,2451,2550,2656,2768,2871,3037,3135,12487"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-sk/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "134",
+ "endOffsets": "329"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5580",
+ "endColumns": "138",
+ "endOffsets": "5714"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-sk/values-sk.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,162,265,380",
+ "endColumns": "106,102,114,101",
+ "endOffsets": "157,260,375,477"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6921,7280,7383,7498",
+ "endColumns": "106,102,114,101",
+ "endOffsets": "7023,7378,7493,7595"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sk/values-sk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,266,344,491,660,744",
+ "endColumns": "72,87,77,146,168,83,80",
+ "endOffsets": "173,261,339,486,655,739,820"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6848,7093,12105,12262,12593,12762,12846",
+ "endColumns": "72,87,77,146,168,83,80",
+ "endOffsets": "6916,7176,12178,12404,12757,12841,12922"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sl.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sl.json
new file mode 100644
index 00000000..b0015925
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sl.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-sl/values-sl.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-sl/values-sl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,352,456,559,661,778",
+ "endColumns": "96,101,97,103,102,101,116,100",
+ "endOffsets": "147,249,347,451,554,656,773,874"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3612,3709,3811,3909,4013,4116,4218,12523",
+ "endColumns": "96,101,97,103,102,101,116,100",
+ "endOffsets": "3704,3806,3904,4008,4111,4213,4330,12619"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-sl/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,456,581,684,827,953,1063,1163,1317,1420,1583,1709,1857,2005,2071,2129",
+ "endColumns": "101,160,124,102,142,125,109,99,153,102,162,125,147,147,65,57,79",
+ "endOffsets": "294,455,580,683,826,952,1062,1162,1316,1419,1582,1708,1856,2004,2070,2128,2208"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4651,4757,4922,5051,5158,5305,5435,5549,5793,5951,6058,6225,6355,6507,6659,6729,6791",
+ "endColumns": "105,164,128,106,146,129,113,103,157,106,166,129,151,151,69,61,83",
+ "endOffsets": "4752,4917,5046,5153,5300,5430,5544,5648,5946,6053,6220,6350,6502,6654,6724,6786,6870"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sl/values-sl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,262,343,484,653,741",
+ "endColumns": "70,85,80,140,168,87,83",
+ "endOffsets": "171,257,338,479,648,736,820"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6875,7118,12140,12298,12624,12793,12881",
+ "endColumns": "70,85,80,140,168,87,83",
+ "endOffsets": "6941,7199,12216,12434,12788,12876,12960"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-sl/values-sl.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,161,265,377",
+ "endColumns": "105,103,111,101",
+ "endOffsets": "156,260,372,474"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6946,7298,7402,7514",
+ "endColumns": "105,103,111,101",
+ "endOffsets": "7047,7397,7509,7611"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sl/values-sl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,217,319,427,514,617,736,817,895,987,1081,1176,1270,1365,1459,1555,1655,1747,1839,1923,2031,2139,2239,2352,2460,2565,2745,2845",
+ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,104,179,99,83",
+ "endOffsets": "212,314,422,509,612,731,812,890,982,1076,1171,1265,1360,1454,1550,1650,1742,1834,1918,2026,2134,2234,2347,2455,2560,2740,2840,2924"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "417,529,631,739,826,929,1048,1129,1207,1299,1393,1488,1582,1677,1771,1867,1967,2059,2151,2235,2343,2451,2551,2664,2772,2877,3057,12439",
+ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,104,179,99,83",
+ "endOffsets": "524,626,734,821,924,1043,1124,1202,1294,1388,1483,1577,1672,1766,1862,1962,2054,2146,2230,2338,2446,2546,2659,2767,2872,3052,3152,12518"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sl/values-sl.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,367,456,545,633,731,822,928,1054,1138,1204,1298,1374,1437,1549,1609,1674,1728,1798,1858,1914,2026,2083,2145,2201,2274,2408,2493,2578,2721,2805,2888,3022,3111,3188,3244,3299,3365,3438,3515,3599,3678,3752,3828,3903,3976,4081,4169,4242,4332,4423,4495,4569,4660,4712,4794,4861,4945,5032,5094,5158,5221,5290,5393,5501,5599,5703,5763,5822",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,88,88,87,97,90,105,125,83,65,93,75,62,111,59,64,53,69,59,55,111,56,61,55,72,133,84,84,142,83,82,133,88,76,55,54,65,72,76,83,78,73,75,74,72,104,87,72,89,90,71,73,90,51,81,66,83,86,61,63,62,68,102,107,97,103,59,58,76",
+ "endOffsets": "362,451,540,628,726,817,923,1049,1133,1199,1293,1369,1432,1544,1604,1669,1723,1793,1853,1909,2021,2078,2140,2196,2269,2403,2488,2573,2716,2800,2883,3017,3106,3183,3239,3294,3360,3433,3510,3594,3673,3747,3823,3898,3971,4076,4164,4237,4327,4418,4490,4564,4655,4707,4789,4856,4940,5027,5089,5153,5216,5285,5388,5496,5594,5698,5758,5817,5894"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3157,3246,3335,3423,3521,4335,4441,4567,7052,7204,7616,7692,7755,7867,7927,7992,8046,8116,8176,8232,8344,8401,8463,8519,8592,8726,8811,8896,9039,9123,9206,9340,9429,9506,9562,9617,9683,9756,9833,9917,9996,10070,10146,10221,10294,10399,10487,10560,10650,10741,10813,10887,10978,11030,11112,11179,11263,11350,11412,11476,11539,11608,11711,11819,11917,12021,12081,12221",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,88,88,87,97,90,105,125,83,65,93,75,62,111,59,64,53,69,59,55,111,56,61,55,72,133,84,84,142,83,82,133,88,76,55,54,65,72,76,83,78,73,75,74,72,104,87,72,89,90,71,73,90,51,81,66,83,86,61,63,62,68,102,107,97,103,59,58,76",
+ "endOffsets": "412,3241,3330,3418,3516,3607,4436,4562,4646,7113,7293,7687,7750,7862,7922,7987,8041,8111,8171,8227,8339,8396,8458,8514,8587,8721,8806,8891,9034,9118,9201,9335,9424,9501,9557,9612,9678,9751,9828,9912,9991,10065,10141,10216,10289,10394,10482,10555,10645,10736,10808,10882,10973,11025,11107,11174,11258,11345,11407,11471,11534,11603,11706,11814,11912,12016,12076,12135,12293"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-sl/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "135",
+ "endOffsets": "330"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5653",
+ "endColumns": "139",
+ "endOffsets": "5788"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-small-v4.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-small-v4.json
new file mode 100644
index 00000000..6d6c953d
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-small-v4.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-small-v4/values-small-v4.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-small-v4/values-small-v4.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,128,198,270",
+ "endColumns": "72,69,71,69",
+ "endOffsets": "123,193,265,335"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sq.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sq.json
new file mode 100644
index 00000000..e9a845b9
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sq.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-sq/values-sq.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sq/values-sq.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,219,319,431,517,623,746,828,906,997,1090,1185,1279,1380,1473,1568,1665,1756,1849,1930,2036,2140,2238,2344,2448,2550,2704,2801",
+ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81",
+ "endOffsets": "214,314,426,512,618,741,823,901,992,1085,1180,1274,1375,1468,1563,1660,1751,1844,1925,2031,2135,2233,2339,2443,2545,2699,2796,2878"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "317,431,531,643,729,835,958,1040,1118,1209,1302,1397,1491,1592,1685,1780,1877,1968,2061,2142,2248,2352,2450,2556,2660,2762,2916,12489",
+ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81",
+ "endOffsets": "426,526,638,724,830,953,1035,1113,1204,1297,1392,1486,1587,1680,1775,1872,1963,2056,2137,2243,2347,2445,2551,2655,2757,2911,3008,12566"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-sq/values-sq.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,170,271,382",
+ "endColumns": "114,100,110,100",
+ "endOffsets": "165,266,377,478"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6905,7277,7378,7489",
+ "endColumns": "114,100,110,100",
+ "endOffsets": "7015,7373,7484,7585"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sq/values-sq.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,267,346,424,510,610,702,803,929,1012,1077,1177,1247,1306,1404,1466,1530,1589,1661,1724,1778,1895,1952,2014,2068,2140,2275,2358,2436,2577,2661,2743,2891,2981,3059,3112,3171,3237,3308,3387,3475,3558,3634,3712,3784,3857,3961,4050,4122,4216,4315,4389,4461,4562,4612,4697,4763,4853,4942,5004,5068,5131,5198,5314,5427,5536,5641,5698,5761",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,78,77,85,99,91,100,125,82,64,99,69,58,97,61,63,58,71,62,53,116,56,61,53,71,134,82,77,140,83,81,147,89,77,52,58,65,70,78,87,82,75,77,71,72,103,88,71,93,98,73,71,100,49,84,65,89,88,61,63,62,66,115,112,108,104,56,62,82",
+ "endOffsets": "262,341,419,505,605,697,798,924,1007,1072,1172,1242,1301,1399,1461,1525,1584,1656,1719,1773,1890,1947,2009,2063,2135,2270,2353,2431,2572,2656,2738,2886,2976,3054,3107,3166,3232,3303,3382,3470,3553,3629,3707,3779,3852,3956,4045,4117,4211,4310,4384,4456,4557,4607,4692,4758,4848,4937,4999,5063,5126,5193,5309,5422,5531,5636,5693,5756,5839"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3013,3092,3170,3256,3356,4185,4286,4412,7020,7177,7590,7660,7719,7817,7879,7943,8002,8074,8137,8191,8308,8365,8427,8481,8553,8688,8771,8849,8990,9074,9156,9304,9394,9472,9525,9584,9650,9721,9800,9888,9971,10047,10125,10197,10270,10374,10463,10535,10629,10728,10802,10874,10975,11025,11110,11176,11266,11355,11417,11481,11544,11611,11727,11840,11949,12054,12111,12258",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,78,77,85,99,91,100,125,82,64,99,69,58,97,61,63,58,71,62,53,116,56,61,53,71,134,82,77,140,83,81,147,89,77,52,58,65,70,78,87,82,75,77,71,72,103,88,71,93,98,73,71,100,49,84,65,89,88,61,63,62,66,115,112,108,104,56,62,82",
+ "endOffsets": "312,3087,3165,3251,3351,3443,4281,4407,4490,7080,7272,7655,7714,7812,7874,7938,7997,8069,8132,8186,8303,8360,8422,8476,8548,8683,8766,8844,8985,9069,9151,9299,9389,9467,9520,9579,9645,9716,9795,9883,9966,10042,10120,10192,10265,10369,10458,10530,10624,10723,10797,10869,10970,11020,11105,11171,11261,11350,11412,11476,11539,11606,11722,11835,11944,12049,12106,12169,12336"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-sq/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "124",
+ "endOffsets": "319"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5556",
+ "endColumns": "128",
+ "endOffsets": "5680"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sq/values-sq.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,174,266,350,498,667,751",
+ "endColumns": "68,91,83,147,168,83,78",
+ "endOffsets": "169,261,345,493,662,746,825"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6836,7085,12174,12341,12672,12841,12925",
+ "endColumns": "68,91,83,147,168,83,78",
+ "endOffsets": "6900,7172,12253,12484,12836,12920,12999"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-sq/values-sq.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,154,256,354,451,559,670,792",
+ "endColumns": "98,101,97,96,107,110,121,100",
+ "endOffsets": "149,251,349,446,554,665,787,888"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3448,3547,3649,3747,3844,3952,4063,12571",
+ "endColumns": "98,101,97,96,107,110,121,100",
+ "endOffsets": "3542,3644,3742,3839,3947,4058,4180,12667"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-sq/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,465,598,701,858,988,1110,1222,1388,1492,1663,1797,1955,2135,2196,2259",
+ "endColumns": "102,168,132,102,156,129,121,111,165,103,170,133,157,179,60,62,77",
+ "endOffsets": "295,464,597,700,857,987,1109,1221,1387,1491,1662,1796,1954,2134,2195,2258,2336"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4495,4602,4775,4912,5019,5180,5314,5440,5685,5855,5963,6138,6276,6438,6622,6687,6754",
+ "endColumns": "106,172,136,106,160,133,125,115,169,107,174,137,161,183,64,66,81",
+ "endOffsets": "4597,4770,4907,5014,5175,5309,5435,5551,5850,5958,6133,6271,6433,6617,6682,6749,6831"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sr.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sr.json
new file mode 100644
index 00000000..4a9a19a6
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sr.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-sr/values-sr.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-sr/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,447,569,675,825,948,1056,1154,1299,1402,1558,1681,1826,1964,2028,2089",
+ "endColumns": "101,151,121,105,149,122,107,97,144,102,155,122,144,137,63,60,75",
+ "endOffsets": "294,446,568,674,824,947,1055,1153,1298,1401,1557,1680,1825,1963,2027,2088,2164"
+ },
+ "to": {
+ "startLines": "49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4563,4669,4825,4951,5061,5215,5342,5454,5686,5835,5942,6102,6229,6378,6520,6588,6653",
+ "endColumns": "105,155,125,109,153,126,111,101,148,106,159,126,148,141,67,64,79",
+ "endOffsets": "4664,4820,4946,5056,5210,5337,5449,5551,5830,5937,6097,6224,6373,6515,6583,6648,6728"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sr/values-sr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,263,343,495,664,750",
+ "endColumns": "70,86,79,151,168,85,81",
+ "endOffsets": "171,258,338,490,659,745,827"
+ },
+ "to": {
+ "startLines": "67,70,132,134,137,138,139",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6733,6981,11994,12154,12494,12663,12749",
+ "endColumns": "70,86,79,151,168,85,81",
+ "endOffsets": "6799,7063,12069,12301,12658,12744,12826"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-sr/values-sr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,352,456,560,665,781",
+ "endColumns": "97,101,96,103,103,104,115,100",
+ "endOffsets": "148,250,347,451,555,660,776,877"
+ },
+ "to": {
+ "startLines": "39,40,41,42,43,44,45,136",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3531,3629,3731,3828,3932,4036,4141,12393",
+ "endColumns": "97,101,96,103,103,104,115,100",
+ "endOffsets": "3624,3726,3823,3927,4031,4136,4252,12489"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-sr/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "125",
+ "endOffsets": "320"
+ },
+ "to": {
+ "startLines": "57",
+ "startColumns": "4",
+ "startOffsets": "5556",
+ "endColumns": "129",
+ "endOffsets": "5681"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sr/values-sr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,313,419,505,609,731,815,896,987,1080,1175,1269,1369,1462,1557,1662,1753,1844,1930,2035,2141,2244,2350,2459,2566,2736,2833",
+ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86",
+ "endOffsets": "207,308,414,500,604,726,810,891,982,1075,1170,1264,1364,1457,1552,1657,1748,1839,1925,2030,2136,2239,2345,2454,2561,2731,2828,2915"
+ },
+ "to": {
+ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,135",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "371,478,579,685,771,875,997,1081,1162,1253,1346,1441,1535,1635,1728,1823,1928,2019,2110,2196,2301,2407,2510,2616,2725,2832,3002,12306",
+ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86",
+ "endOffsets": "473,574,680,766,870,992,1076,1157,1248,1341,1436,1530,1630,1723,1818,1923,2014,2105,2191,2296,2402,2505,2611,2720,2827,2997,3094,12388"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-sr/values-sr.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,166,266,379",
+ "endColumns": "110,99,112,97",
+ "endOffsets": "161,261,374,472"
+ },
+ "to": {
+ "startLines": "68,72,73,74",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6804,7160,7260,7373",
+ "endColumns": "110,99,112,97",
+ "endOffsets": "6910,7255,7368,7466"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sr/values-sr.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,321,397,473,553,660,753,847,978,1059,1125,1217,1285,1348,1451,1511,1577,1633,1704,1764,1818,1930,1987,2048,2102,2178,2303,2389,2472,2610,2691,2774,2905,2993,3071,3125,3181,3247,3321,3399,3488,3570,3645,3721,3796,3867,3974,4064,4137,4229,4325,4397,4473,4569,4622,4704,4771,4858,4945,5007,5071,5134,5203,5308,5418,5514,5622,5680,5740",
+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74",
+ "endColumns": "12,75,75,79,106,92,93,130,80,65,91,67,62,102,59,65,55,70,59,53,111,56,60,53,75,124,85,82,137,80,82,130,87,77,53,55,65,73,77,88,81,74,75,74,70,106,89,72,91,95,71,75,95,52,81,66,86,86,61,63,62,68,104,109,95,107,57,59,79",
+ "endOffsets": "316,392,468,548,655,748,842,973,1054,1120,1212,1280,1343,1446,1506,1572,1628,1699,1759,1813,1925,1982,2043,2097,2173,2298,2384,2467,2605,2686,2769,2900,2988,3066,3120,3176,3242,3316,3394,3483,3565,3640,3716,3791,3862,3969,4059,4132,4224,4320,4392,4468,4564,4617,4699,4766,4853,4940,5002,5066,5129,5198,5303,5413,5509,5617,5675,5735,5815"
+ },
+ "to": {
+ "startLines": "2,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3099,3175,3251,3331,3438,4257,4351,4482,6915,7068,7471,7539,7602,7705,7765,7831,7887,7958,8018,8072,8184,8241,8302,8356,8432,8557,8643,8726,8864,8945,9028,9159,9247,9325,9379,9435,9501,9575,9653,9742,9824,9899,9975,10050,10121,10228,10318,10391,10483,10579,10651,10727,10823,10876,10958,11025,11112,11199,11261,11325,11388,11457,11562,11672,11768,11876,11934,12074",
+ "endLines": "6,34,35,36,37,38,46,47,48,69,71,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133",
+ "endColumns": "12,75,75,79,106,92,93,130,80,65,91,67,62,102,59,65,55,70,59,53,111,56,60,53,75,124,85,82,137,80,82,130,87,77,53,55,65,73,77,88,81,74,75,74,70,106,89,72,91,95,71,75,95,52,81,66,86,86,61,63,62,68,104,109,95,107,57,59,79",
+ "endOffsets": "366,3170,3246,3326,3433,3526,4346,4477,4558,6976,7155,7534,7597,7700,7760,7826,7882,7953,8013,8067,8179,8236,8297,8351,8427,8552,8638,8721,8859,8940,9023,9154,9242,9320,9374,9430,9496,9570,9648,9737,9819,9894,9970,10045,10116,10223,10313,10386,10478,10574,10646,10722,10818,10871,10953,11020,11107,11194,11256,11320,11383,11452,11557,11667,11763,11871,11929,11989,12149"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sv.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sv.json
new file mode 100644
index 00000000..a66ddc59
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sv.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-sv/values-sv.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sv/values-sv.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,264,342,479,648,727",
+ "endColumns": "70,87,77,136,168,78,75",
+ "endOffsets": "171,259,337,474,643,722,798"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6676,6910,11803,11959,12277,12446,12525",
+ "endColumns": "70,87,77,136,168,78,75",
+ "endOffsets": "6742,6993,11876,12091,12441,12520,12596"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-sv/values-sv.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,255,368",
+ "endColumns": "99,99,112,97",
+ "endOffsets": "150,250,363,461"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6747,7090,7190,7303",
+ "endColumns": "99,99,112,97",
+ "endOffsets": "6842,7185,7298,7396"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-sv/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "143",
+ "endOffsets": "338"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5464",
+ "endColumns": "147",
+ "endOffsets": "5607"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-sv/values-sv.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,252,350,449,557,662,783",
+ "endColumns": "94,101,97,98,107,104,120,100",
+ "endOffsets": "145,247,345,444,552,657,778,879"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3443,3538,3640,3738,3837,3945,4050,12176",
+ "endColumns": "94,101,97,98,107,104,120,100",
+ "endOffsets": "3533,3635,3733,3832,3940,4045,4166,12272"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-sv/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,449,572,678,815,936,1055,1155,1299,1403,1561,1685,1835,1987,2049,2108",
+ "endColumns": "102,152,122,105,136,120,118,99,143,103,157,123,149,151,61,58,74",
+ "endOffsets": "295,448,571,677,814,935,1054,1154,1298,1402,1560,1684,1834,1986,2048,2107,2182"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4470,4577,4734,4861,4971,5112,5237,5360,5612,5760,5868,6030,6158,6312,6468,6534,6597",
+ "endColumns": "106,156,126,109,140,124,122,103,147,107,161,127,153,155,65,62,78",
+ "endOffsets": "4572,4729,4856,4966,5107,5232,5355,5459,5755,5863,6025,6153,6307,6463,6529,6592,6671"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sv/values-sv.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,266,365,457,538,640,720,818,940,1019,1082,1174,1238,1298,1390,1455,1518,1580,1647,1711,1765,1870,1929,1990,2044,2113,2232,2315,2399,2535,2614,2698,2820,2906,2984,3038,3089,3155,3224,3298,3387,3463,3535,3612,3683,3757,3868,3959,4038,4125,4213,4285,4359,4444,4495,4574,4641,4722,4806,4868,4932,4995,5063,5170,5269,5368,5463,5521,5576",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,98,91,80,101,79,97,121,78,62,91,63,59,91,64,62,61,66,63,53,104,58,60,53,68,118,82,83,135,78,83,121,85,77,53,50,65,68,73,88,75,71,76,70,73,110,90,78,86,87,71,73,84,50,78,66,80,83,61,63,62,67,106,98,98,94,57,54,77",
+ "endOffsets": "261,360,452,533,635,715,813,935,1014,1077,1169,1233,1293,1385,1450,1513,1575,1642,1706,1760,1865,1924,1985,2039,2108,2227,2310,2394,2530,2609,2693,2815,2901,2979,3033,3084,3150,3219,3293,3382,3458,3530,3607,3678,3752,3863,3954,4033,4120,4208,4280,4354,4439,4490,4569,4636,4717,4801,4863,4927,4990,5058,5165,5264,5363,5458,5516,5571,5649"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2989,3088,3180,3261,3363,4171,4269,4391,6847,6998,7401,7465,7525,7617,7682,7745,7807,7874,7938,7992,8097,8156,8217,8271,8340,8459,8542,8626,8762,8841,8925,9047,9133,9211,9265,9316,9382,9451,9525,9614,9690,9762,9839,9910,9984,10095,10186,10265,10352,10440,10512,10586,10671,10722,10801,10868,10949,11033,11095,11159,11222,11290,11397,11496,11595,11690,11748,11881",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,98,91,80,101,79,97,121,78,62,91,63,59,91,64,62,61,66,63,53,104,58,60,53,68,118,82,83,135,78,83,121,85,77,53,50,65,68,73,88,75,71,76,70,73,110,90,78,86,87,71,73,84,50,78,66,80,83,61,63,62,67,106,98,98,94,57,54,77",
+ "endOffsets": "311,3083,3175,3256,3358,3438,4264,4386,4465,6905,7085,7460,7520,7612,7677,7740,7802,7869,7933,7987,8092,8151,8212,8266,8335,8454,8537,8621,8757,8836,8920,9042,9128,9206,9260,9311,9377,9446,9520,9609,9685,9757,9834,9905,9979,10090,10181,10260,10347,10435,10507,10581,10666,10717,10796,10863,10944,11028,11090,11154,11217,11285,11392,11491,11590,11685,11743,11798,11954"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sv/values-sv.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,208,311,422,506,608,721,798,873,966,1061,1156,1250,1352,1447,1544,1642,1738,1831,1911,2017,2116,2212,2317,2420,2522,2676,2778",
+ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79",
+ "endOffsets": "203,306,417,501,603,716,793,868,961,1056,1151,1245,1347,1442,1539,1637,1733,1826,1906,2012,2111,2207,2312,2415,2517,2671,2773,2853"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "316,419,522,633,717,819,932,1009,1084,1177,1272,1367,1461,1563,1658,1755,1853,1949,2042,2122,2228,2327,2423,2528,2631,2733,2887,12096",
+ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79",
+ "endOffsets": "414,517,628,712,814,927,1004,1079,1172,1267,1362,1456,1558,1653,1750,1848,1944,2037,2117,2223,2322,2418,2523,2626,2728,2882,2984,12171"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sw.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sw.json
new file mode 100644
index 00000000..5353d329
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sw.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-sw/values-sw.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-sw/values-sw.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,149,251,348,449,556,663,778",
+ "endColumns": "93,101,96,100,106,106,114,100",
+ "endOffsets": "144,246,343,444,551,658,773,874"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3414,3508,3610,3707,3808,3915,4022,12476",
+ "endColumns": "93,101,96,100,106,106,114,100",
+ "endOffsets": "3503,3605,3702,3803,3910,4017,4132,12572"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-sw/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "141",
+ "endOffsets": "336"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5463",
+ "endColumns": "145",
+ "endOffsets": "5604"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sw/values-sw.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,208,307,415,505,610,727,810,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1911,2012,2120,2219,2326,2438,2542,2704,2801",
+ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82",
+ "endOffsets": "203,302,410,500,605,722,805,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1906,2007,2115,2214,2321,2433,2537,2699,2796,2879"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "309,412,511,619,709,814,931,1014,1096,1187,1280,1375,1469,1569,1662,1757,1851,1942,2033,2115,2216,2324,2423,2530,2642,2746,2908,12393",
+ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82",
+ "endOffsets": "407,506,614,704,809,926,1009,1091,1182,1275,1370,1464,1564,1657,1752,1846,1937,2028,2110,2211,2319,2418,2525,2637,2741,2903,3000,12471"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sw/values-sw.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,272,349,499,668,753",
+ "endColumns": "69,96,76,149,168,84,82",
+ "endOffsets": "170,267,344,494,663,748,831"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6709,6961,12085,12243,12577,12746,12831",
+ "endColumns": "69,96,76,149,168,84,82",
+ "endOffsets": "6774,7053,12157,12388,12741,12826,12909"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-sw/values-sw.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,169,270,387",
+ "endColumns": "113,100,116,102",
+ "endOffsets": "164,265,382,485"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6779,7150,7251,7368",
+ "endColumns": "113,100,116,102",
+ "endOffsets": "6888,7246,7363,7466"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-sw/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,293,445,566,671,830,951,1066,1176,1337,1439,1589,1712,1858,2013,2077,2148",
+ "endColumns": "99,151,120,104,158,120,114,109,160,101,149,122,145,154,63,70,91",
+ "endOffsets": "292,444,565,670,829,950,1065,1175,1336,1438,1588,1711,1857,2012,2076,2147,2239"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4448,4552,4708,4833,4942,5105,5230,5349,5609,5774,5880,6034,6161,6311,6470,6538,6613",
+ "endColumns": "103,155,124,108,162,124,118,113,164,105,153,126,149,158,67,74,95",
+ "endOffsets": "4547,4703,4828,4937,5100,5225,5344,5458,5769,5875,6029,6156,6306,6465,6533,6608,6704"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sw/values-sw.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,259,335,409,482,579,668,767,896,979,1047,1139,1212,1275,1361,1423,1486,1551,1619,1682,1736,1868,1925,1987,2041,2115,2253,2334,2414,2546,2631,2718,2859,2947,3026,3080,3133,3199,3271,3353,3443,3528,3600,3675,3746,3819,3925,4022,4096,4191,4288,4362,4447,4547,4600,4685,4753,4841,4931,4993,5057,5120,5187,5304,5416,5527,5638,5696,5753",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,75,73,72,96,88,98,128,82,67,91,72,62,85,61,62,64,67,62,53,131,56,61,53,73,137,80,79,131,84,86,140,87,78,53,52,65,71,81,89,84,71,74,70,72,105,96,73,94,96,73,84,99,52,84,67,87,89,61,63,62,66,116,111,110,110,57,56,80",
+ "endOffsets": "254,330,404,477,574,663,762,891,974,1042,1134,1207,1270,1356,1418,1481,1546,1614,1677,1731,1863,1920,1982,2036,2110,2248,2329,2409,2541,2626,2713,2854,2942,3021,3075,3128,3194,3266,3348,3438,3523,3595,3670,3741,3814,3920,4017,4091,4186,4283,4357,4442,4542,4595,4680,4748,4836,4926,4988,5052,5115,5182,5299,5411,5522,5633,5691,5748,5829"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3005,3081,3155,3228,3325,4137,4236,4365,6893,7058,7471,7544,7607,7693,7755,7818,7883,7951,8014,8068,8200,8257,8319,8373,8447,8585,8666,8746,8878,8963,9050,9191,9279,9358,9412,9465,9531,9603,9685,9775,9860,9932,10007,10078,10151,10257,10354,10428,10523,10620,10694,10779,10879,10932,11017,11085,11173,11263,11325,11389,11452,11519,11636,11748,11859,11970,12028,12162",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,75,73,72,96,88,98,128,82,67,91,72,62,85,61,62,64,67,62,53,131,56,61,53,73,137,80,79,131,84,86,140,87,78,53,52,65,71,81,89,84,71,74,70,72,105,96,73,94,96,73,84,99,52,84,67,87,89,61,63,62,66,116,111,110,110,57,56,80",
+ "endOffsets": "304,3076,3150,3223,3320,3409,4231,4360,4443,6956,7145,7539,7602,7688,7750,7813,7878,7946,8009,8063,8195,8252,8314,8368,8442,8580,8661,8741,8873,8958,9045,9186,9274,9353,9407,9460,9526,9598,9680,9770,9855,9927,10002,10073,10146,10252,10349,10423,10518,10615,10689,10774,10874,10927,11012,11080,11168,11258,11320,11384,11447,11514,11631,11743,11854,11965,12023,12080,12238"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sw360dp-v13.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sw360dp-v13.json
new file mode 100644
index 00000000..2b91e2c2
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sw360dp-v13.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-sw360dp-v13/values-sw360dp-v13.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-sw360dp-v13/values-sw360dp-v13.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "71",
+ "endOffsets": "122"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sw600dp-v13.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sw600dp-v13.json
new file mode 100644
index 00000000..112f2e53
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-sw600dp-v13.json
@@ -0,0 +1,55 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-sw600dp-v13/values-sw600dp-v13.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-sw600dp-v13/values-sw600dp-v13.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,124,193,263,337,413,472,543",
+ "endColumns": "68,68,69,73,75,58,70,67",
+ "endOffsets": "119,188,258,332,408,467,538,606"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/96596d913bdc5ef7499b36edf6e5d946/transformed/jetified-preferencex-simplemenu-1.1.0/res/values-sw600dp-v13/values-sw600dp-v13.xml",
+ "from": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,105",
+ "endColumns": "49,53",
+ "endOffsets": "100,154"
+ },
+ "to": {
+ "startLines": "21,23",
+ "startColumns": "4,4",
+ "startOffsets": "1288,1401",
+ "endColumns": "49,53",
+ "endOffsets": "1333,1450"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-sw600dp-v13/values-sw600dp-v13.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,115,185,256,328,386,444,553,617,673,732,795",
+ "endLines": "2,3,4,5,6,7,9,10,11,12,13,17",
+ "endColumns": "59,69,70,71,57,57,10,63,55,58,62,10",
+ "endOffsets": "110,180,251,323,381,439,548,612,668,727,790,962"
+ },
+ "to": {
+ "startLines": "10,11,12,13,14,15,16,18,19,20,22,24",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "611,671,741,812,884,942,1000,1109,1173,1229,1338,1455",
+ "endLines": "10,11,12,13,14,15,17,18,19,20,22,27",
+ "endColumns": "59,69,70,71,57,57,10,63,55,58,62,10",
+ "endOffsets": "666,736,807,879,937,995,1104,1168,1224,1283,1396,1622"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ta.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ta.json
new file mode 100644
index 00000000..fb81b115
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ta.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ta/values-ta.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ta/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,294,442,565,667,815,939,1048,1145,1321,1424,1573,1704,1854,2006,2064,2123",
+ "endColumns": "100,147,122,101,147,123,108,96,175,102,148,130,149,151,57,58,76",
+ "endOffsets": "293,441,564,666,814,938,1047,1144,1320,1423,1572,1703,1853,2005,2063,2122,2199"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4600,4705,4857,4984,5090,5242,5370,5483,5745,5925,6032,6185,6320,6474,6630,6692,6755",
+ "endColumns": "104,151,126,105,151,127,112,100,179,106,152,134,153,155,61,62,80",
+ "endOffsets": "4700,4852,4979,5085,5237,5365,5478,5579,5920,6027,6180,6315,6469,6625,6687,6750,6831"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ta/values-ta.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,172,274,381",
+ "endColumns": "116,101,106,103",
+ "endOffsets": "167,269,376,480"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6906,7284,7386,7493",
+ "endColumns": "116,101,106,103",
+ "endOffsets": "7018,7381,7488,7592"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ta/values-ta.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,254,353,451,558,673,801",
+ "endColumns": "95,102,98,97,106,114,127,100",
+ "endOffsets": "146,249,348,446,553,668,796,897"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3543,3639,3742,3841,3939,4046,4161,12658",
+ "endColumns": "95,102,98,97,106,114,127,100",
+ "endOffsets": "3634,3737,3836,3934,4041,4156,4284,12754"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ta/values-ta.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,264,347,496,665,746",
+ "endColumns": "69,88,82,148,168,80,76",
+ "endOffsets": "170,259,342,491,660,741,818"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6836,7087,12258,12427,12759,12928,13009",
+ "endColumns": "69,88,82,148,168,80,76",
+ "endOffsets": "6901,7171,12336,12571,12923,13004,13081"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ta/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "156",
+ "endOffsets": "351"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5584",
+ "endColumns": "160",
+ "endOffsets": "5740"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ta/values-ta.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,272,360,446,530,633,727,836,954,1038,1102,1210,1278,1339,1447,1514,1600,1658,1742,1809,1863,1986,2048,2111,2165,2253,2381,2467,2549,2681,2761,2842,2998,3087,3171,3228,3280,3346,3431,3519,3611,3691,3760,3837,3917,3985,4100,4199,4282,4374,4468,4542,4628,4722,4772,4855,4921,5006,5093,5156,5221,5284,5353,5461,5559,5657,5754,5815,5871",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,87,85,83,102,93,108,117,83,63,107,67,60,107,66,85,57,83,66,53,122,61,62,53,87,127,85,81,131,79,80,155,88,83,56,51,65,84,87,91,79,68,76,79,67,114,98,82,91,93,73,85,93,49,82,65,84,86,62,64,62,68,107,97,97,96,60,55,85",
+ "endOffsets": "267,355,441,525,628,722,831,949,1033,1097,1205,1273,1334,1442,1509,1595,1653,1737,1804,1858,1981,2043,2106,2160,2248,2376,2462,2544,2676,2756,2837,2993,3082,3166,3223,3275,3341,3426,3514,3606,3686,3755,3832,3912,3980,4095,4194,4277,4369,4463,4537,4623,4717,4767,4850,4916,5001,5088,5151,5216,5279,5348,5456,5554,5652,5749,5810,5866,5952"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3088,3176,3262,3346,3449,4289,4398,4516,7023,7176,7597,7665,7726,7834,7901,7987,8045,8129,8196,8250,8373,8435,8498,8552,8640,8768,8854,8936,9068,9148,9229,9385,9474,9558,9615,9667,9733,9818,9906,9998,10078,10147,10224,10304,10372,10487,10586,10669,10761,10855,10929,11015,11109,11159,11242,11308,11393,11480,11543,11608,11671,11740,11848,11946,12044,12141,12202,12341",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,87,85,83,102,93,108,117,83,63,107,67,60,107,66,85,57,83,66,53,122,61,62,53,87,127,85,81,131,79,80,155,88,83,56,51,65,84,87,91,79,68,76,79,67,114,98,82,91,93,73,85,93,49,82,65,84,86,62,64,62,68,107,97,97,96,60,55,85",
+ "endOffsets": "317,3171,3257,3341,3444,3538,4393,4511,4595,7082,7279,7660,7721,7829,7896,7982,8040,8124,8191,8245,8368,8430,8493,8547,8635,8763,8849,8931,9063,9143,9224,9380,9469,9553,9610,9662,9728,9813,9901,9993,10073,10142,10219,10299,10367,10482,10581,10664,10756,10850,10924,11010,11104,11154,11237,11303,11388,11475,11538,11603,11666,11735,11843,11941,12039,12136,12197,12253,12422"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ta/values-ta.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,218,320,435,524,635,756,835,911,1009,1109,1204,1298,1405,1505,1607,1701,1799,1897,1978,2086,2189,2288,2404,2507,2612,2769,2871",
+ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81",
+ "endOffsets": "213,315,430,519,630,751,830,906,1004,1104,1199,1293,1400,1500,1602,1696,1794,1892,1973,2081,2184,2283,2399,2502,2607,2764,2866,2948"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "322,435,537,652,741,852,973,1052,1128,1226,1326,1421,1515,1622,1722,1824,1918,2016,2114,2195,2303,2406,2505,2621,2724,2829,2986,12576",
+ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81",
+ "endOffsets": "430,532,647,736,847,968,1047,1123,1221,1321,1416,1510,1617,1717,1819,1913,2011,2109,2190,2298,2401,2500,2616,2719,2824,2981,3083,12653"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-te.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-te.json
new file mode 100644
index 00000000..fb03105a
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-te.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-te/values-te.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-te/values-te.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,157,265,367,468,574,681,805",
+ "endColumns": "101,107,101,100,105,106,123,100",
+ "endOffsets": "152,260,362,463,569,676,800,901"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3530,3632,3740,3842,3943,4049,4156,12542",
+ "endColumns": "101,107,101,100,105,106,123,100",
+ "endOffsets": "3627,3735,3837,3938,4044,4151,4275,12638"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-te/values-te.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,277,356,502,671,758",
+ "endColumns": "72,98,78,145,168,86,83",
+ "endOffsets": "173,272,351,497,666,753,837"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6785,7035,12151,12313,12643,12812,12899",
+ "endColumns": "72,98,78,145,168,86,83",
+ "endOffsets": "6853,7129,12225,12454,12807,12894,12978"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-te/values-te.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,166,272,383",
+ "endColumns": "110,105,110,106",
+ "endOffsets": "161,267,378,485"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6858,7228,7334,7445",
+ "endColumns": "110,105,110,106",
+ "endOffsets": "6964,7329,7440,7547"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-te/values-te.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,276,365,455,541,639,726,830,946,1037,1103,1197,1264,1326,1419,1483,1551,1614,1688,1753,1807,1928,1985,2047,2101,2180,2308,2396,2488,2633,2713,2795,2920,3008,3090,3150,3202,3268,3343,3421,3511,3590,3663,3739,3820,3889,4009,4114,4191,4282,4375,4449,4526,4618,4675,4756,4822,4906,4992,5055,5120,5184,5253,5363,5471,5570,5676,5740,5796",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,88,89,85,97,86,103,115,90,65,93,66,61,92,63,67,62,73,64,53,120,56,61,53,78,127,87,91,144,79,81,124,87,81,59,51,65,74,77,89,78,72,75,80,68,119,104,76,90,92,73,76,91,56,80,65,83,85,62,64,63,68,109,107,98,105,63,55,82",
+ "endOffsets": "271,360,450,536,634,721,825,941,1032,1098,1192,1259,1321,1414,1478,1546,1609,1683,1748,1802,1923,1980,2042,2096,2175,2303,2391,2483,2628,2708,2790,2915,3003,3085,3145,3197,3263,3338,3416,3506,3585,3658,3734,3815,3884,4004,4109,4186,4277,4370,4444,4521,4613,4670,4751,4817,4901,4987,5050,5115,5179,5248,5358,5466,5565,5671,5735,5791,5874"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3080,3169,3259,3345,3443,4280,4384,4500,6969,7134,7552,7619,7681,7774,7838,7906,7969,8043,8108,8162,8283,8340,8402,8456,8535,8663,8751,8843,8988,9068,9150,9275,9363,9445,9505,9557,9623,9698,9776,9866,9945,10018,10094,10175,10244,10364,10469,10546,10637,10730,10804,10881,10973,11030,11111,11177,11261,11347,11410,11475,11539,11608,11718,11826,11925,12031,12095,12230",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,88,89,85,97,86,103,115,90,65,93,66,61,92,63,67,62,73,64,53,120,56,61,53,78,127,87,91,144,79,81,124,87,81,59,51,65,74,77,89,78,72,75,80,68,119,104,76,90,92,73,76,91,56,80,65,83,85,62,64,63,68,109,107,98,105,63,55,82",
+ "endOffsets": "321,3164,3254,3340,3438,3525,4379,4495,4586,7030,7223,7614,7676,7769,7833,7901,7964,8038,8103,8157,8278,8335,8397,8451,8530,8658,8746,8838,8983,9063,9145,9270,9358,9440,9500,9552,9618,9693,9771,9861,9940,10013,10089,10170,10239,10359,10464,10541,10632,10725,10799,10876,10968,11025,11106,11172,11256,11342,11405,11470,11534,11603,11713,11821,11920,12026,12090,12146,12308"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-te/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,299,449,575,686,819,940,1041,1137,1282,1390,1539,1667,1814,1973,2033,2099",
+ "endColumns": "105,149,125,110,132,120,100,95,144,107,148,127,146,158,59,65,79",
+ "endOffsets": "298,448,574,685,818,939,1040,1136,1281,1389,1538,1666,1813,1972,2032,2098,2178"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4591,4701,4855,4985,5100,5237,5362,5467,5707,5856,5968,6121,6253,6404,6567,6631,6701",
+ "endColumns": "109,153,129,114,136,124,104,99,148,111,152,131,150,162,63,69,83",
+ "endOffsets": "4696,4850,4980,5095,5232,5357,5462,5562,5851,5963,6116,6248,6399,6562,6626,6696,6780"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-te/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "135",
+ "endOffsets": "330"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5567",
+ "endColumns": "139",
+ "endOffsets": "5702"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-te/values-te.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,222,334,447,537,642,761,839,915,1006,1099,1194,1288,1388,1481,1576,1671,1762,1853,1942,2056,2160,2259,2374,2479,2594,2756,2859",
+ "endColumns": "116,111,112,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,88,113,103,98,114,104,114,161,102,82",
+ "endOffsets": "217,329,442,532,637,756,834,910,1001,1094,1189,1283,1383,1476,1571,1666,1757,1848,1937,2051,2155,2254,2369,2474,2589,2751,2854,2937"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "326,443,555,668,758,863,982,1060,1136,1227,1320,1415,1509,1609,1702,1797,1892,1983,2074,2163,2277,2381,2480,2595,2700,2815,2977,12459",
+ "endColumns": "116,111,112,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,88,113,103,98,114,104,114,161,102,82",
+ "endOffsets": "438,550,663,753,858,977,1055,1131,1222,1315,1410,1504,1604,1697,1792,1887,1978,2069,2158,2272,2376,2475,2590,2695,2810,2972,3075,12537"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-th.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-th.json
new file mode 100644
index 00000000..8fba0157
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-th.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-th/values-th.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-th/values-th.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,158,257,368",
+ "endColumns": "102,98,110,97",
+ "endOffsets": "153,252,363,461"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6564,6913,7012,7123",
+ "endColumns": "102,98,110,97",
+ "endOffsets": "6662,7007,7118,7216"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-th/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "124",
+ "endOffsets": "319"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5340",
+ "endColumns": "128",
+ "endOffsets": "5464"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-th/values-th.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,151,254,352,450,553,658,770",
+ "endColumns": "95,102,97,97,102,104,111,100",
+ "endOffsets": "146,249,347,445,548,653,765,866"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3363,3459,3562,3660,3758,3861,3966,12022",
+ "endColumns": "95,102,97,97,102,104,111,100",
+ "endOffsets": "3454,3557,3655,3753,3856,3961,4073,12118"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-th/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,295,438,557,660,792,912,1027,1131,1271,1372,1515,1633,1769,1916,1976,2040",
+ "endColumns": "101,142,118,102,131,119,114,103,139,100,142,117,135,146,59,63,79",
+ "endOffsets": "294,437,556,659,791,911,1026,1130,1270,1371,1514,1632,1768,1915,1975,2039,2119"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4370,4476,4623,4746,4853,4989,5113,5232,5469,5613,5718,5865,5987,6127,6278,6342,6410",
+ "endColumns": "105,146,122,106,135,123,118,107,143,104,146,121,139,150,63,67,83",
+ "endOffsets": "4471,4618,4741,4848,4984,5108,5227,5335,5608,5713,5860,5982,6122,6273,6337,6405,6489"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-th/values-th.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,175,261,341,480,648,728",
+ "endColumns": "69,85,79,138,167,79,77",
+ "endOffsets": "170,256,336,475,643,723,801"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6494,6737,11644,11801,12123,12291,12371",
+ "endColumns": "69,85,79,138,167,79,77",
+ "endOffsets": "6559,6818,11719,11935,12286,12366,12444"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-th/values-th.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,285,358,430,513,598,684,783,896,976,1046,1136,1206,1266,1353,1419,1484,1545,1609,1670,1724,1825,1886,1946,2000,2070,2181,2268,2349,2492,2571,2653,2785,2877,2955,3009,3062,3128,3198,3276,3362,3442,3514,3592,3661,3730,3828,3910,3998,4091,4185,4259,4328,4423,4475,4558,4626,4711,4799,4861,4925,4988,5058,5158,5254,5351,5444,5502,5559",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,72,71,82,84,85,98,112,79,69,89,69,59,86,65,64,60,63,60,53,100,60,59,53,69,110,86,80,142,78,81,131,91,77,53,52,65,69,77,85,79,71,77,68,68,97,81,87,92,93,73,68,94,51,82,67,84,87,61,63,62,69,99,95,96,92,57,56,76",
+ "endOffsets": "280,353,425,508,593,679,778,891,971,1041,1131,1201,1261,1348,1414,1479,1540,1604,1665,1719,1820,1881,1941,1995,2065,2176,2263,2344,2487,2566,2648,2780,2872,2950,3004,3057,3123,3193,3271,3357,3437,3509,3587,3656,3725,3823,3905,3993,4086,4180,4254,4323,4418,4470,4553,4621,4706,4794,4856,4920,4983,5053,5153,5249,5346,5439,5497,5554,5631"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2964,3037,3109,3192,3277,4078,4177,4290,6667,6823,7221,7291,7351,7438,7504,7569,7630,7694,7755,7809,7910,7971,8031,8085,8155,8266,8353,8434,8577,8656,8738,8870,8962,9040,9094,9147,9213,9283,9361,9447,9527,9599,9677,9746,9815,9913,9995,10083,10176,10270,10344,10413,10508,10560,10643,10711,10796,10884,10946,11010,11073,11143,11243,11339,11436,11529,11587,11724",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,72,71,82,84,85,98,112,79,69,89,69,59,86,65,64,60,63,60,53,100,60,59,53,69,110,86,80,142,78,81,131,91,77,53,52,65,69,77,85,79,71,77,68,68,97,81,87,92,93,73,68,94,51,82,67,84,87,61,63,62,69,99,95,96,92,57,56,76",
+ "endOffsets": "330,3032,3104,3187,3272,3358,4172,4285,4365,6732,6908,7286,7346,7433,7499,7564,7625,7689,7750,7804,7905,7966,8026,8080,8150,8261,8348,8429,8572,8651,8733,8865,8957,9035,9089,9142,9208,9278,9356,9442,9522,9594,9672,9741,9810,9908,9990,10078,10171,10265,10339,10408,10503,10555,10638,10706,10791,10879,10941,11005,11068,11138,11238,11334,11431,11524,11582,11639,11796"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-th/values-th.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,210,303,411,496,598,708,786,863,954,1047,1138,1232,1332,1425,1520,1614,1705,1796,1877,1980,2078,2176,2279,2385,2486,2639,2734",
+ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81",
+ "endOffsets": "205,298,406,491,593,703,781,858,949,1042,1133,1227,1327,1420,1515,1609,1700,1791,1872,1975,2073,2171,2274,2380,2481,2634,2729,2811"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "335,440,533,641,726,828,938,1016,1093,1184,1277,1368,1462,1562,1655,1750,1844,1935,2026,2107,2210,2308,2406,2509,2615,2716,2869,11940",
+ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81",
+ "endOffsets": "435,528,636,721,823,933,1011,1088,1179,1272,1363,1457,1557,1650,1745,1839,1930,2021,2102,2205,2303,2401,2504,2610,2711,2864,2959,12017"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-tl.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-tl.json
new file mode 100644
index 00000000..26e33305
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-tl.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-tl/values-tl.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-tl/values-tl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,216,324,437,525,631,746,826,903,994,1087,1182,1276,1376,1469,1564,1658,1749,1840,1924,2033,2143,2244,2354,2472,2580,2743,2845",
+ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84",
+ "endOffsets": "211,319,432,520,626,741,821,898,989,1082,1177,1271,1371,1464,1559,1653,1744,1835,1919,2028,2138,2239,2349,2467,2575,2738,2840,2925"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "330,441,549,662,750,856,971,1051,1128,1219,1312,1407,1501,1601,1694,1789,1883,1974,2065,2149,2258,2368,2469,2579,2697,2805,2968,12662",
+ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84",
+ "endOffsets": "436,544,657,745,851,966,1046,1123,1214,1307,1402,1496,1596,1689,1784,1878,1969,2060,2144,2253,2363,2464,2574,2692,2800,2963,3065,12742"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-tl/values-tl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,355,452,559,667,789",
+ "endColumns": "96,101,100,96,106,107,121,100",
+ "endOffsets": "147,249,350,447,554,662,784,885"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3507,3604,3706,3807,3904,4011,4119,12747",
+ "endColumns": "96,101,100,96,106,107,121,100",
+ "endOffsets": "3599,3701,3802,3899,4006,4114,4236,12843"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-tl/values-tl.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,264,346,485,654,739",
+ "endColumns": "71,86,81,138,168,84,80",
+ "endOffsets": "172,259,341,480,649,734,815"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6929,7169,12356,12523,12848,13017,13102",
+ "endColumns": "71,86,81,138,168,84,80",
+ "endOffsets": "6996,7251,12433,12657,13012,13097,13178"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-tl/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,296,468,602,707,861,993,1111,1220,1395,1498,1672,1806,1964,2139,2203,2265",
+ "endColumns": "102,171,133,104,153,131,117,108,174,102,173,133,157,174,63,61,76",
+ "endOffsets": "295,467,601,706,860,992,1110,1219,1394,1497,1671,1805,1963,2138,2202,2264,2341"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4567,4674,4850,4988,5097,5255,5391,5513,5771,5950,6057,6235,6373,6535,6714,6782,6848",
+ "endColumns": "106,175,137,108,157,135,121,112,178,106,177,137,161,178,67,65,80",
+ "endOffsets": "4669,4845,4983,5092,5250,5386,5508,5621,5945,6052,6230,6368,6530,6709,6777,6843,6924"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-tl/values-tl.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,158,263,374",
+ "endColumns": "102,104,110,104",
+ "endOffsets": "153,258,369,474"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7001,7355,7460,7571",
+ "endColumns": "102,104,110,104",
+ "endOffsets": "7099,7455,7566,7671"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-tl/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "140",
+ "endOffsets": "335"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5626",
+ "endColumns": "144",
+ "endOffsets": "5766"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-tl/values-tl.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,280,364,444,530,627,717,822,958,1043,1108,1207,1275,1334,1423,1491,1558,1621,1696,1764,1818,1938,1996,2058,2112,2187,2329,2419,2504,2649,2733,2816,2962,3058,3135,3193,3244,3310,3384,3462,3553,3639,3713,3792,3865,3937,4053,4157,4230,4329,4429,4503,4578,4685,4737,4826,4893,4984,5078,5140,5204,5267,5337,5456,5561,5670,5770,5832,5887",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,83,79,85,96,89,104,135,84,64,98,67,58,88,67,66,62,74,67,53,119,57,61,53,74,141,89,84,144,83,82,145,95,76,57,50,65,73,77,90,85,73,78,72,71,115,103,72,98,99,73,74,106,51,88,66,90,93,61,63,62,69,118,104,108,99,61,54,84",
+ "endOffsets": "275,359,439,525,622,712,817,953,1038,1103,1202,1270,1329,1418,1486,1553,1616,1691,1759,1813,1933,1991,2053,2107,2182,2324,2414,2499,2644,2728,2811,2957,3053,3130,3188,3239,3305,3379,3457,3548,3634,3708,3787,3860,3932,4048,4152,4225,4324,4424,4498,4573,4680,4732,4821,4888,4979,5073,5135,5199,5262,5332,5451,5556,5665,5765,5827,5882,5967"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3070,3154,3234,3320,3417,4241,4346,4482,7104,7256,7676,7744,7803,7892,7960,8027,8090,8165,8233,8287,8407,8465,8527,8581,8656,8798,8888,8973,9118,9202,9285,9431,9527,9604,9662,9713,9779,9853,9931,10022,10108,10182,10261,10334,10406,10522,10626,10699,10798,10898,10972,11047,11154,11206,11295,11362,11453,11547,11609,11673,11736,11806,11925,12030,12139,12239,12301,12438",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,83,79,85,96,89,104,135,84,64,98,67,58,88,67,66,62,74,67,53,119,57,61,53,74,141,89,84,144,83,82,145,95,76,57,50,65,73,77,90,85,73,78,72,71,115,103,72,98,99,73,74,106,51,88,66,90,93,61,63,62,69,118,104,108,99,61,54,84",
+ "endOffsets": "325,3149,3229,3315,3412,3502,4341,4477,4562,7164,7350,7739,7798,7887,7955,8022,8085,8160,8228,8282,8402,8460,8522,8576,8651,8793,8883,8968,9113,9197,9280,9426,9522,9599,9657,9708,9774,9848,9926,10017,10103,10177,10256,10329,10401,10517,10621,10694,10793,10893,10967,11042,11149,11201,11290,11357,11448,11542,11604,11668,11731,11801,11920,12025,12134,12234,12296,12351,12518"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-tr.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-tr.json
new file mode 100644
index 00000000..b1dc7e2e
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-tr.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-tr/values-tr.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-tr/values-tr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,263,341,473,642,725",
+ "endColumns": "70,86,77,131,168,82,77",
+ "endOffsets": "171,258,336,468,637,720,798"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6678,6913,11867,12024,12337,12506,12589",
+ "endColumns": "70,86,77,131,168,82,77",
+ "endOffsets": "6744,6995,11940,12151,12501,12584,12662"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-tr/values-tr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,352,449,551,657,768",
+ "endColumns": "96,101,97,96,101,105,110,100",
+ "endOffsets": "147,249,347,444,546,652,763,864"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3424,3521,3623,3721,3818,3920,4026,12236",
+ "endColumns": "96,101,97,96,101,105,110,100",
+ "endOffsets": "3516,3618,3716,3813,3915,4021,4132,12332"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-tr/values-tr.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,340,415,492,591,682,778,890,972,1036,1127,1204,1265,1356,1419,1482,1541,1610,1673,1727,1835,1893,1955,2009,2082,2203,2287,2378,2518,2595,2671,2802,2889,2965,3018,3072,3138,3208,3285,3368,3448,3519,3594,3672,3743,3844,3929,4018,4113,4206,4278,4350,4446,4498,4584,4651,4735,4825,4887,4951,5014,5084,5178,5280,5369,5469,5526,5584",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,74,74,76,98,90,95,111,81,63,90,76,60,90,62,62,58,68,62,53,107,57,61,53,72,120,83,90,139,76,75,130,86,75,52,53,65,69,76,82,79,70,74,77,70,100,84,88,94,92,71,71,95,51,85,66,83,89,61,63,62,69,93,101,88,99,56,57,78",
+ "endOffsets": "260,335,410,487,586,677,773,885,967,1031,1122,1199,1260,1351,1414,1477,1536,1605,1668,1722,1830,1888,1950,2004,2077,2198,2282,2373,2513,2590,2666,2797,2884,2960,3013,3067,3133,3203,3280,3363,3443,3514,3589,3667,3738,3839,3924,4013,4108,4201,4273,4345,4441,4493,4579,4646,4730,4820,4882,4946,5009,5079,5173,5275,5364,5464,5521,5579,5658"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3007,3082,3157,3234,3333,4137,4233,4345,6849,7000,7410,7487,7548,7639,7702,7765,7824,7893,7956,8010,8118,8176,8238,8292,8365,8486,8570,8661,8801,8878,8954,9085,9172,9248,9301,9355,9421,9491,9568,9651,9731,9802,9877,9955,10026,10127,10212,10301,10396,10489,10561,10633,10729,10781,10867,10934,11018,11108,11170,11234,11297,11367,11461,11563,11652,11752,11809,11945",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,74,74,76,98,90,95,111,81,63,90,76,60,90,62,62,58,68,62,53,107,57,61,53,72,120,83,90,139,76,75,130,86,75,52,53,65,69,76,82,79,70,74,77,70,100,84,88,94,92,71,71,95,51,85,66,83,89,61,63,62,69,93,101,88,99,56,57,78",
+ "endOffsets": "310,3077,3152,3229,3328,3419,4228,4340,4422,6908,7086,7482,7543,7634,7697,7760,7819,7888,7951,8005,8113,8171,8233,8287,8360,8481,8565,8656,8796,8873,8949,9080,9167,9243,9296,9350,9416,9486,9563,9646,9726,9797,9872,9950,10021,10122,10207,10296,10391,10484,10556,10628,10724,10776,10862,10929,11013,11103,11165,11229,11292,11362,11456,11558,11647,11747,11804,11862,12019"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-tr/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "142",
+ "endOffsets": "337"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5443",
+ "endColumns": "146",
+ "endOffsets": "5585"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-tr/values-tr.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,155,261,368",
+ "endColumns": "99,105,106,105",
+ "endOffsets": "150,256,363,469"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6749,7091,7197,7304",
+ "endColumns": "99,105,106,105",
+ "endOffsets": "6844,7192,7299,7405"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-tr/values-tr.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,219,318,430,515,621,741,821,896,987,1080,1172,1266,1366,1459,1561,1656,1747,1838,1917,2024,2128,2224,2331,2434,2543,2699,2797",
+ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79",
+ "endOffsets": "214,313,425,510,616,736,816,891,982,1075,1167,1261,1361,1454,1556,1651,1742,1833,1912,2019,2123,2219,2326,2429,2538,2694,2792,2872"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,429,528,640,725,831,951,1031,1106,1197,1290,1382,1476,1576,1669,1771,1866,1957,2048,2127,2234,2338,2434,2541,2644,2753,2909,12156",
+ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79",
+ "endOffsets": "424,523,635,720,826,946,1026,1101,1192,1285,1377,1471,1571,1664,1766,1861,1952,2043,2122,2229,2333,2429,2536,2639,2748,2904,3002,12231"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-tr/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,299,450,582,683,826,952,1075,1177,1345,1448,1601,1731,1872,2035,2093,2153",
+ "endColumns": "105,150,131,100,142,125,122,101,167,102,152,129,140,162,57,59,75",
+ "endOffsets": "298,449,581,682,825,951,1074,1176,1344,1447,1600,1730,1871,2034,2092,2152,2228"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4427,4537,4692,4828,4933,5080,5210,5337,5590,5762,5869,6026,6160,6305,6472,6534,6598",
+ "endColumns": "109,154,135,104,146,129,126,105,171,106,156,133,144,166,61,63,79",
+ "endOffsets": "4532,4687,4823,4928,5075,5205,5332,5438,5757,5864,6021,6155,6300,6467,6529,6593,6673"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-uk.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-uk.json
new file mode 100644
index 00000000..705af121
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-uk.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-uk/values-uk.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-uk/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,456,579,685,835,960,1071,1172,1336,1438,1596,1717,1860,1998,2064,2121",
+ "endColumns": "103,158,122,105,149,124,110,100,163,101,157,120,142,137,65,56,83",
+ "endOffsets": "296,455,578,684,834,959,1070,1171,1335,1437,1595,1716,1859,1997,2063,2120,2204"
+ },
+ "to": {
+ "startLines": "50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4613,4721,4884,5011,5121,5275,5404,5519,5770,5938,6044,6206,6331,6478,6620,6690,6751",
+ "endColumns": "107,162,126,109,153,128,114,104,167,105,161,124,146,141,69,60,87",
+ "endOffsets": "4716,4879,5006,5116,5270,5399,5514,5619,5933,6039,6201,6326,6473,6615,6685,6746,6834"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-uk/values-uk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,179,267,348,490,659,744",
+ "endColumns": "73,87,80,141,168,84,82",
+ "endOffsets": "174,262,343,485,654,739,822"
+ },
+ "to": {
+ "startLines": "68,71,133,135,138,139,140",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6839,7090,12143,12306,12631,12800,12885",
+ "endColumns": "73,87,80,141,168,84,82",
+ "endOffsets": "6908,7173,12219,12443,12795,12880,12963"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-uk/values-uk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,155,257,358,459,564,669,782",
+ "endColumns": "99,101,100,100,104,104,112,100",
+ "endOffsets": "150,252,353,454,559,664,777,878"
+ },
+ "to": {
+ "startLines": "40,41,42,43,44,45,46,137",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3591,3691,3793,3894,3995,4100,4205,12530",
+ "endColumns": "99,101,100,100,104,104,112,100",
+ "endOffsets": "3686,3788,3889,3990,4095,4200,4313,12626"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-uk/values-uk.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,214,316,424,510,615,733,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1930,2036,2142,2240,2347,2454,2559,2729,2829",
+ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81",
+ "endOffsets": "209,311,419,505,610,728,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1925,2031,2137,2235,2342,2449,2554,2724,2824,2906"
+ },
+ "to": {
+ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,136",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "424,533,635,743,829,934,1052,1133,1212,1303,1396,1491,1585,1685,1778,1873,1968,2059,2150,2249,2355,2461,2559,2666,2773,2878,3048,12448",
+ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81",
+ "endOffsets": "528,630,738,824,929,1047,1128,1207,1298,1391,1486,1580,1680,1773,1868,1963,2054,2145,2244,2350,2456,2554,2661,2768,2873,3043,3143,12525"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-uk/values-uk.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,165,272,392",
+ "endColumns": "109,106,119,107",
+ "endOffsets": "160,267,387,495"
+ },
+ "to": {
+ "startLines": "69,73,74,75",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6913,7269,7376,7496",
+ "endColumns": "109,106,119,107",
+ "endOffsets": "7018,7371,7491,7599"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-uk/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "141",
+ "endOffsets": "336"
+ },
+ "to": {
+ "startLines": "58",
+ "startColumns": "4",
+ "startOffsets": "5624",
+ "endColumns": "145",
+ "endOffsets": "5765"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-uk/values-uk.xml",
+ "from": {
+ "startLines": "2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,374,452,530,618,726,817,913,1029,1112,1179,1270,1336,1399,1487,1549,1616,1674,1745,1804,1858,1972,2032,2095,2149,2222,2341,2427,2510,2649,2734,2821,2954,3042,3120,3177,3228,3294,3366,3442,3532,3615,3688,3765,3846,3920,4029,4119,4198,4289,4385,4459,4540,4635,4689,4771,4837,4924,5010,5072,5136,5199,5272,5379,5489,5587,5693,5754,5809",
+ "endLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75",
+ "endColumns": "12,77,77,87,107,90,95,115,82,66,90,65,62,87,61,66,57,70,58,53,113,59,62,53,72,118,85,82,138,84,86,132,87,77,56,50,65,71,75,89,82,72,76,80,73,108,89,78,90,95,73,80,94,53,81,65,86,85,61,63,62,72,106,109,97,105,60,54,81",
+ "endOffsets": "369,447,525,613,721,812,908,1024,1107,1174,1265,1331,1394,1482,1544,1611,1669,1740,1799,1853,1967,2027,2090,2144,2217,2336,2422,2505,2644,2729,2816,2949,3037,3115,3172,3223,3289,3361,3437,3527,3610,3683,3760,3841,3915,4024,4114,4193,4284,4380,4454,4535,4630,4684,4766,4832,4919,5005,5067,5131,5194,5267,5374,5484,5582,5688,5749,5804,5886"
+ },
+ "to": {
+ "startLines": "2,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3148,3226,3304,3392,3500,4318,4414,4530,7023,7178,7604,7670,7733,7821,7883,7950,8008,8079,8138,8192,8306,8366,8429,8483,8556,8675,8761,8844,8983,9068,9155,9288,9376,9454,9511,9562,9628,9700,9776,9866,9949,10022,10099,10180,10254,10363,10453,10532,10623,10719,10793,10874,10969,11023,11105,11171,11258,11344,11406,11470,11533,11606,11713,11823,11921,12027,12088,12224",
+ "endLines": "7,35,36,37,38,39,47,48,49,70,72,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134",
+ "endColumns": "12,77,77,87,107,90,95,115,82,66,90,65,62,87,61,66,57,70,58,53,113,59,62,53,72,118,85,82,138,84,86,132,87,77,56,50,65,71,75,89,82,72,76,80,73,108,89,78,90,95,73,80,94,53,81,65,86,85,61,63,62,72,106,109,97,105,60,54,81",
+ "endOffsets": "419,3221,3299,3387,3495,3586,4409,4525,4608,7085,7264,7665,7728,7816,7878,7945,8003,8074,8133,8187,8301,8361,8424,8478,8551,8670,8756,8839,8978,9063,9150,9283,9371,9449,9506,9557,9623,9695,9771,9861,9944,10017,10094,10175,10249,10358,10448,10527,10618,10714,10788,10869,10964,11018,11100,11166,11253,11339,11401,11465,11528,11601,11708,11818,11916,12022,12083,12138,12301"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ur.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ur.json
new file mode 100644
index 00000000..e6265d08
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-ur.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-ur/values-ur.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-ur/values-ur.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,255,357,461,564,662,776",
+ "endColumns": "97,101,101,103,102,97,113,100",
+ "endOffsets": "148,250,352,456,559,657,771,872"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3457,3555,3657,3759,3863,3966,4064,12317",
+ "endColumns": "97,101,101,103,102,97,113,100",
+ "endOffsets": "3550,3652,3754,3858,3961,4059,4173,12413"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-ur/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,297,457,579,686,822,945,1053,1153,1301,1407,1575,1699,1841,2006,2065,2128",
+ "endColumns": "103,159,121,106,135,122,107,99,147,105,167,123,141,164,58,62,83",
+ "endOffsets": "296,456,578,685,821,944,1052,1152,1300,1406,1574,1698,1840,2005,2064,2127,2211"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4480,4588,4752,4878,4989,5129,5256,5368,5624,5776,5886,6058,6186,6332,6501,6564,6631",
+ "endColumns": "107,163,125,110,139,126,111,103,151,109,171,127,145,168,62,66,87",
+ "endOffsets": "4583,4747,4873,4984,5124,5251,5363,5467,5771,5881,6053,6181,6327,6496,6559,6626,6714"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-ur/values-ur.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,178,266,344,483,652,734",
+ "endColumns": "72,87,77,138,168,81,75",
+ "endOffsets": "173,261,339,478,647,729,805"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6719,6958,11934,12092,12418,12587,12669",
+ "endColumns": "72,87,77,138,168,81,75",
+ "endOffsets": "6787,7041,12007,12226,12582,12664,12740"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-ur/values-ur.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,156,257,368",
+ "endColumns": "100,100,110,106",
+ "endOffsets": "151,252,363,470"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6792,7139,7240,7351",
+ "endColumns": "100,100,110,106",
+ "endOffsets": "6888,7235,7346,7453"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-ur/values-ur.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,219,325,434,520,624,744,821,896,988,1082,1177,1271,1372,1466,1562,1656,1748,1840,1925,2033,2139,2241,2352,2453,2569,2734,2832",
+ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85",
+ "endOffsets": "214,320,429,515,619,739,816,891,983,1077,1172,1266,1367,1461,1557,1651,1743,1835,1920,2028,2134,2236,2347,2448,2564,2729,2827,2913"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "309,423,529,638,724,828,948,1025,1100,1192,1286,1381,1475,1576,1670,1766,1860,1952,2044,2129,2237,2343,2445,2556,2657,2773,2938,12231",
+ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85",
+ "endOffsets": "418,524,633,719,823,943,1020,1095,1187,1281,1376,1470,1571,1665,1761,1855,1947,2039,2124,2232,2338,2440,2551,2652,2768,2933,3031,12312"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-ur/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "147",
+ "endOffsets": "342"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5472",
+ "endColumns": "151",
+ "endOffsets": "5619"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-ur/values-ur.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,259,337,415,493,591,680,780,899,982,1047,1140,1210,1269,1359,1423,1492,1550,1619,1679,1743,1855,1914,1973,2028,2103,2226,2306,2390,2523,2605,2686,2817,2904,2986,3044,3100,3166,3241,3321,3406,3485,3552,3627,3704,3768,3875,3969,4039,4128,4221,4295,4370,4460,4516,4595,4662,4746,4830,4892,4956,5019,5085,5185,5292,5386,5494,5556,5616",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,77,77,97,88,99,118,82,64,92,69,58,89,63,68,57,68,59,63,111,58,58,54,74,122,79,83,132,81,80,130,86,81,57,55,65,74,79,84,78,66,74,76,63,106,93,69,88,92,73,74,89,55,78,66,83,83,61,63,62,65,99,106,93,107,61,59,79",
+ "endOffsets": "254,332,410,488,586,675,775,894,977,1042,1135,1205,1264,1354,1418,1487,1545,1614,1674,1738,1850,1909,1968,2023,2098,2221,2301,2385,2518,2600,2681,2812,2899,2981,3039,3095,3161,3236,3316,3401,3480,3547,3622,3699,3763,3870,3964,4034,4123,4216,4290,4365,4455,4511,4590,4657,4741,4825,4887,4951,5014,5080,5180,5287,5381,5489,5551,5611,5691"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3036,3114,3192,3270,3368,4178,4278,4397,6893,7046,7458,7528,7587,7677,7741,7810,7868,7937,7997,8061,8173,8232,8291,8346,8421,8544,8624,8708,8841,8923,9004,9135,9222,9304,9362,9418,9484,9559,9639,9724,9803,9870,9945,10022,10086,10193,10287,10357,10446,10539,10613,10688,10778,10834,10913,10980,11064,11148,11210,11274,11337,11403,11503,11610,11704,11812,11874,12012",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,77,77,97,88,99,118,82,64,92,69,58,89,63,68,57,68,59,63,111,58,58,54,74,122,79,83,132,81,80,130,86,81,57,55,65,74,79,84,78,66,74,76,63,106,93,69,88,92,73,74,89,55,78,66,83,83,61,63,62,65,99,106,93,107,61,59,79",
+ "endOffsets": "304,3109,3187,3265,3363,3452,4273,4392,4475,6953,7134,7523,7582,7672,7736,7805,7863,7932,7992,8056,8168,8227,8286,8341,8416,8539,8619,8703,8836,8918,8999,9130,9217,9299,9357,9413,9479,9554,9634,9719,9798,9865,9940,10017,10081,10188,10282,10352,10441,10534,10608,10683,10773,10829,10908,10975,11059,11143,11205,11269,11332,11398,11498,11605,11699,11807,11869,11929,12087"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-uz.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-uz.json
new file mode 100644
index 00000000..36853f67
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-uz.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-uz/values-uz.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-uz/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,294,440,565,670,811,940,1056,1158,1326,1430,1585,1713,1863,2021,2083,2140",
+ "endColumns": "100,145,124,104,140,128,115,101,167,103,154,127,149,157,61,56,75",
+ "endOffsets": "293,439,564,669,810,939,1055,1157,1325,1429,1584,1712,1862,2020,2082,2139,2215"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4467,4572,4722,4851,4960,5105,5238,5358,5614,5786,5894,6053,6185,6339,6501,6567,6628",
+ "endColumns": "104,149,128,108,144,132,119,105,171,107,158,131,153,161,65,60,79",
+ "endOffsets": "4567,4717,4846,4955,5100,5233,5353,5459,5781,5889,6048,6180,6334,6496,6562,6623,6703"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-uz/values-uz.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,180,273,353,498,667,754",
+ "endColumns": "74,92,79,144,168,86,78",
+ "endOffsets": "175,268,348,493,662,749,828"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6708,6965,12047,12210,12540,12709,12796",
+ "endColumns": "74,92,79,144,168,86,78",
+ "endOffsets": "6778,7053,12122,12350,12704,12791,12870"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-uz/values-uz.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,283,360,440,523,617,704,799,926,1010,1074,1177,1247,1314,1423,1486,1553,1612,1686,1749,1803,1918,1976,2038,2092,2167,2296,2386,2475,2616,2698,2780,2919,3005,3089,3149,3200,3266,3339,3417,3503,3584,3656,3733,3808,3879,3980,4074,4153,4249,4343,4417,4493,4579,4632,4719,4785,4870,4961,5023,5087,5150,5219,5321,5422,5518,5619,5683,5738",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,76,79,82,93,86,94,126,83,63,102,69,66,108,62,66,58,73,62,53,114,57,61,53,74,128,89,88,140,81,81,138,85,83,59,50,65,72,77,85,80,71,76,74,70,100,93,78,95,93,73,75,85,52,86,65,84,90,61,63,62,68,101,100,95,100,63,54,82",
+ "endOffsets": "278,355,435,518,612,699,794,921,1005,1069,1172,1242,1309,1418,1481,1548,1607,1681,1744,1798,1913,1971,2033,2087,2162,2291,2381,2470,2611,2693,2775,2914,3000,3084,3144,3195,3261,3334,3412,3498,3579,3651,3728,3803,3874,3975,4069,4148,4244,4338,4412,4488,4574,4627,4714,4780,4865,4956,5018,5082,5145,5214,5316,5417,5513,5614,5678,5733,5816"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3004,3081,3161,3244,3338,4161,4256,4383,6901,7058,7486,7556,7623,7732,7795,7862,7921,7995,8058,8112,8227,8285,8347,8401,8476,8605,8695,8784,8925,9007,9089,9228,9314,9398,9458,9509,9575,9648,9726,9812,9893,9965,10042,10117,10188,10289,10383,10462,10558,10652,10726,10802,10888,10941,11028,11094,11179,11270,11332,11396,11459,11528,11630,11731,11827,11928,11992,12127",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,76,79,82,93,86,94,126,83,63,102,69,66,108,62,66,58,73,62,53,114,57,61,53,74,128,89,88,140,81,81,138,85,83,59,50,65,72,77,85,80,71,76,74,70,100,93,78,95,93,73,75,85,52,86,65,84,90,61,63,62,68,101,100,95,100,63,54,82",
+ "endOffsets": "328,3076,3156,3239,3333,3420,4251,4378,4462,6960,7156,7551,7618,7727,7790,7857,7916,7990,8053,8107,8222,8280,8342,8396,8471,8600,8690,8779,8920,9002,9084,9223,9309,9393,9453,9504,9570,9643,9721,9807,9888,9960,10037,10112,10183,10284,10378,10457,10553,10647,10721,10797,10883,10936,11023,11089,11174,11265,11327,11391,11454,11523,11625,11726,11822,11923,11987,12042,12205"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-uz/values-uz.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,210,305,405,487,587,704,789,867,958,1051,1146,1240,1334,1427,1522,1617,1708,1800,1884,1994,2100,2200,2308,2414,2516,2677,2776",
+ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83",
+ "endOffsets": "205,300,400,482,582,699,784,862,953,1046,1141,1235,1329,1422,1517,1612,1703,1795,1879,1989,2095,2195,2303,2409,2511,2672,2771,2855"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "333,438,533,633,715,815,932,1017,1095,1186,1279,1374,1468,1562,1655,1750,1845,1936,2028,2112,2222,2328,2428,2536,2642,2744,2905,12355",
+ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83",
+ "endOffsets": "433,528,628,710,810,927,1012,1090,1181,1274,1369,1463,1557,1650,1745,1840,1931,2023,2107,2217,2323,2423,2531,2637,2739,2900,2999,12434"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-uz/values-uz.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,173,282,392",
+ "endColumns": "117,108,109,105",
+ "endOffsets": "168,277,387,493"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6783,7161,7270,7380",
+ "endColumns": "117,108,109,105",
+ "endOffsets": "6896,7265,7375,7481"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-uz/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "145",
+ "endOffsets": "340"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5464",
+ "endColumns": "149",
+ "endOffsets": "5609"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-uz/values-uz.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,157,259,360,460,568,672,791",
+ "endColumns": "101,101,100,99,107,103,118,100",
+ "endOffsets": "152,254,355,455,563,667,786,887"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3425,3527,3629,3730,3830,3938,4042,12439",
+ "endColumns": "101,101,100,99,107,103,118,100",
+ "endOffsets": "3522,3624,3725,3825,3933,4037,4156,12535"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v16.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v16.json
new file mode 100644
index 00000000..768f46ec
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v16.json
@@ -0,0 +1,38 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v16/values-v16.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v16/values-v16.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "5",
+ "endColumns": "12",
+ "endOffsets": "223"
+ },
+ "to": {
+ "startLines": "3",
+ "startColumns": "4",
+ "startOffsets": "121",
+ "endLines": "6",
+ "endColumns": "12",
+ "endOffsets": "289"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-v16/values-v16.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "65",
+ "endOffsets": "116"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v17.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v17.json
new file mode 100644
index 00000000..688033c4
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v17.json
@@ -0,0 +1,20 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v17/values-v17.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v17/values-v17.xml",
+ "from": {
+ "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216",
+ "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60",
+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12",
+ "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v18.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v18.json
new file mode 100644
index 00000000..cb3c4f81
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v18.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v18/values-v18.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v18/values-v18.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "48",
+ "endOffsets": "99"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v21.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v21.json
new file mode 100644
index 00000000..1a661594
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v21.json
@@ -0,0 +1,85 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v21/values-v21.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-v21/values-v21.xml",
+ "from": {
+ "startLines": "2,3,6",
+ "startColumns": "4,4,4",
+ "startOffsets": "55,120,276",
+ "endLines": "2,5,8",
+ "endColumns": "64,12,12",
+ "endOffsets": "115,271,449"
+ },
+ "to": {
+ "startLines": "20,348,351",
+ "startColumns": "4,4,4",
+ "startOffsets": "1603,25623,25779",
+ "endLines": "20,350,353",
+ "endColumns": "64,12,12",
+ "endOffsets": "1663,25774,25952"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v21/values-v21.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,106,109,152,155,158,160,162,164,167,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,220,222,223,224,234,235,236,248",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4213,4362,4511,4623,4770,4923,5070,5145,5234,5321,5422,5525,8283,8468,11238,11435,11634,11757,11880,11993,12176,12431,12632,12721,12832,13065,13166,13261,13384,13513,13630,13807,13906,14041,14184,14319,14438,14639,14758,14851,14962,15018,15125,15320,15431,15564,15659,15750,15841,15934,16051,16190,16261,16344,16967,17024,17082,17706",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,105,108,151,154,157,159,161,163,166,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,219,221,222,223,233,234,235,247,259",
+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12",
+ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4208,4357,4506,4618,4765,4918,5065,5140,5229,5316,5417,5520,8278,8463,11233,11430,11629,11752,11875,11988,12171,12426,12627,12716,12827,13060,13161,13256,13379,13508,13625,13802,13901,14036,14179,14314,14433,14634,14753,14846,14957,15013,15120,15315,15426,15559,15654,15745,15836,15929,16046,16185,16256,16339,16962,17019,17077,17701,18337"
+ },
+ "to": {
+ "startLines": "25,26,27,28,29,30,31,32,33,34,35,36,37,38,40,42,43,44,45,47,49,50,51,52,53,55,57,59,61,63,65,66,71,73,75,76,77,79,81,82,83,84,89,101,144,147,190,205,217,219,221,223,226,230,233,234,235,238,239,240,241,242,243,246,247,249,251,253,255,259,261,262,263,264,266,270,272,274,275,276,277,278,279,310,311,312,322,323,324,336",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "2040,2131,2234,2337,2442,2549,2658,2767,2876,2985,3094,3201,3304,3423,3578,3733,3838,3959,4060,4207,4348,4451,4570,4677,4780,4935,5106,5255,5420,5577,5728,5847,6198,6347,6496,6608,6755,6908,7055,7130,7219,7306,7831,8923,11681,11866,14636,15769,16621,16744,16867,16980,17163,17418,17619,17708,17819,18052,18153,18248,18371,18500,18617,18794,18893,19028,19171,19306,19425,19626,19745,19838,19949,20005,20112,20307,20418,20551,20646,20737,20828,20921,21038,23471,23542,23625,24248,24305,24363,24987",
+ "endLines": "25,26,27,28,29,30,31,32,33,34,35,36,37,39,41,42,43,44,46,48,49,50,51,52,54,56,58,60,62,64,65,70,72,74,75,76,78,80,81,82,83,84,89,143,146,189,192,207,218,220,222,225,229,232,233,234,237,238,239,240,241,242,245,246,248,250,252,254,258,260,261,262,263,265,269,271,273,274,275,276,277,278,280,310,311,321,322,323,335,347",
+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12",
+ "endOffsets": "2126,2229,2332,2437,2544,2653,2762,2871,2980,3089,3196,3299,3418,3573,3728,3833,3954,4055,4202,4343,4446,4565,4672,4775,4930,5101,5250,5415,5572,5723,5842,6193,6342,6491,6603,6750,6903,7050,7125,7214,7301,7402,7929,11676,11861,14631,14828,15963,16739,16862,16975,17158,17413,17614,17703,17814,18047,18148,18243,18366,18495,18612,18789,18888,19023,19166,19301,19420,19621,19740,19833,19944,20000,20107,20302,20413,20546,20641,20732,20823,20916,21033,21172,23537,23620,24243,24300,24358,24982,25618"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-v21/values-v21.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,13",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,173,237,304,368,484,610,736,864,1036",
+ "endLines": "2,3,4,5,6,7,8,9,12,17",
+ "endColumns": "117,63,66,63,115,125,125,127,12,12",
+ "endOffsets": "168,232,299,363,479,605,731,859,1031,1383"
+ },
+ "to": {
+ "startLines": "2,17,18,19,354,355,356,357,544,547",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,1408,1472,1539,25957,26073,26199,26325,37616,37788",
+ "endLines": "2,17,18,19,354,355,356,357,546,551",
+ "endColumns": "117,63,66,63,115,125,125,127,12,12",
+ "endOffsets": "168,1467,1534,1598,26068,26194,26320,26448,37783,38135"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-v21/values-v21.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,29,32,35,38,41,44,47,50,53,56,59,60,63,68,79,85,94,103,112,121,130,139,148,157,166,175,184,193,202,211,220,226,232,238,244,248,252,253,254,255,259,262,265,268,271,272,275,278,282,286",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,249,345,443,511,590,678,766,854,942,1029,1116,1203,1290,1386,1476,1572,1662,1755,1862,1967,2086,2211,2332,2545,2804,3075,3293,3525,3761,4011,4224,4433,4664,4865,4981,5151,5472,6501,6958,7462,7970,8479,8993,9498,10002,10507,11013,11515,12021,12530,13038,13537,14044,14552,14844,15138,15438,15738,16067,16408,16546,16690,16846,17239,17457,17679,17905,18121,18231,18401,18591,18832,19091",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,28,31,34,37,40,43,46,49,52,55,58,59,62,67,78,84,93,102,111,120,129,138,147,156,165,174,183,192,201,210,219,225,231,237,243,247,251,252,253,254,258,261,264,267,270,271,274,277,281,285,288",
+ "endColumns": "97,95,95,97,67,78,87,87,87,87,86,86,86,86,95,89,95,89,92,106,104,118,124,120,10,10,10,10,10,10,10,10,10,10,10,115,10,12,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,137,143,155,10,10,10,10,10,109,10,10,10,10,10",
+ "endOffsets": "148,244,340,438,506,585,673,761,849,937,1024,1111,1198,1285,1381,1471,1567,1657,1750,1857,1962,2081,2206,2327,2540,2799,3070,3288,3520,3756,4006,4219,4428,4659,4860,4976,5146,5467,6496,6953,7457,7965,8474,8988,9493,9997,10502,11008,11510,12016,12525,13033,13532,14039,14547,14839,15133,15433,15733,16062,16403,16541,16685,16841,17234,17452,17674,17900,18116,18226,18396,18586,18827,19086,19263"
+ },
+ "to": {
+ "startLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,21,22,23,24,85,86,87,88,90,91,92,95,98,193,196,199,202,208,211,214,281,284,285,288,293,304,358,367,376,385,394,403,412,421,430,439,448,457,466,475,484,493,499,505,511,517,521,525,526,527,528,532,535,538,541,552,553,556,559,563,567",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "173,271,367,463,561,629,708,796,884,972,1060,1147,1234,1321,1668,1764,1854,1950,7407,7500,7607,7712,7934,8059,8180,8393,8652,14833,15051,15283,15519,15968,16181,16390,21177,21378,21494,21664,21985,23014,26453,26957,27465,27974,28488,28993,29497,30002,30508,31010,31516,32025,32533,33032,33539,34047,34339,34633,34933,35233,35562,35903,36041,36185,36341,36734,36952,37174,37400,38140,38250,38420,38610,38851,39110",
+ "endLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,21,22,23,24,85,86,87,88,90,91,94,97,100,195,198,201,204,210,213,216,283,284,287,292,303,309,366,375,384,393,402,411,420,429,438,447,456,465,474,483,492,498,504,510,516,520,524,525,526,527,531,534,537,540,543,552,555,558,562,566,569",
+ "endColumns": "97,95,95,97,67,78,87,87,87,87,86,86,86,86,95,89,95,89,92,106,104,118,124,120,10,10,10,10,10,10,10,10,10,10,10,115,10,12,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,137,143,155,10,10,10,10,10,109,10,10,10,10,10",
+ "endOffsets": "266,362,458,556,624,703,791,879,967,1055,1142,1229,1316,1403,1759,1849,1945,2035,7495,7602,7707,7826,8054,8175,8388,8647,8918,15046,15278,15514,15764,16176,16385,16616,21373,21489,21659,21980,23009,23466,26952,27460,27969,28483,28988,29492,29997,30503,31005,31511,32020,32528,33027,33534,34042,34334,34628,34928,35228,35557,35898,36036,36180,36336,36729,36947,37169,37395,37611,38245,38415,38605,38846,39105,39282"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v22.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v22.json
new file mode 100644
index 00000000..b986f642
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v22.json
@@ -0,0 +1,20 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v22/values-v22.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v22/values-v22.xml",
+ "from": {
+ "startLines": "2,3,4,9",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,130,217,487",
+ "endLines": "2,3,8,13",
+ "endColumns": "74,86,12,12",
+ "endOffsets": "125,212,482,764"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v23.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v23.json
new file mode 100644
index 00000000..c49f3be8
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v23.json
@@ -0,0 +1,58 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v23/values-v23.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/a33695dde8a169e607a8ae6f38de7bcf/transformed/cardview-1.0.0/res/values-v23/values-v23.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "4",
+ "endColumns": "12",
+ "endOffsets": "200"
+ },
+ "to": {
+ "startLines": "50",
+ "startColumns": "4",
+ "startOffsets": "3232",
+ "endLines": "52",
+ "endColumns": "12",
+ "endOffsets": "3377"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-v23/values-v23.xml",
+ "from": {
+ "startLines": "2,5,9,13,16,19,22,25,28,32",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,271,413,574,784,991,1198,1401,1603,1868",
+ "endLines": "4,8,12,15,18,21,24,27,31,35",
+ "endColumns": "10,10,10,10,10,10,10,10,10,10",
+ "endOffsets": "266,408,569,779,986,1193,1396,1598,1863,2136"
+ },
+ "to": {
+ "startLines": "53,56,60,64,67,70,73,76,79,83",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "3382,3598,3740,3901,4111,4318,4525,4728,4930,5195",
+ "endLines": "55,59,63,66,69,72,75,78,82,86",
+ "endColumns": "10,10,10,10,10,10,10,10,10,10",
+ "endOffsets": "3593,3735,3896,4106,4313,4520,4723,4925,5190,5463"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v23/values-v23.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,190,325,400,487,1225,1975,2094,2221,2443,2667,2782,2889,3002",
+ "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49",
+ "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12",
+ "endOffsets": "185,320,395,482,1220,1970,2089,2216,2438,2662,2777,2884,2997,3227"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v24.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v24.json
new file mode 100644
index 00000000..50c6c8f8
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v24.json
@@ -0,0 +1,38 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v24/values-v24.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-v24/values-v24.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,9,12,15",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,140,239,326,427,626,839,1040",
+ "endLines": "2,3,4,5,8,11,14,17",
+ "endColumns": "84,98,86,100,10,10,10,10",
+ "endOffsets": "135,234,321,422,621,834,1035,1250"
+ },
+ "to": {
+ "startLines": "4,5,6,7,8,11,14,17",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "347,432,531,618,719,918,1131,1332",
+ "endLines": "4,5,6,7,10,13,16,19",
+ "endColumns": "84,98,86,100,10,10,10,10",
+ "endOffsets": "427,526,613,714,913,1126,1327,1542"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v24/values-v24.xml",
+ "from": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,212",
+ "endColumns": "156,134",
+ "endOffsets": "207,342"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v25.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v25.json
new file mode 100644
index 00000000..8a127efa
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v25.json
@@ -0,0 +1,20 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v25/values-v25.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v25/values-v25.xml",
+ "from": {
+ "startLines": "2,3,4,6",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,126,209,308",
+ "endLines": "2,3,5,7",
+ "endColumns": "70,82,12,12",
+ "endOffsets": "121,204,303,414"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v26.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v26.json
new file mode 100644
index 00000000..413a1ae9
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v26.json
@@ -0,0 +1,20 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v26/values-v26.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v26/values-v26.xml",
+ "from": {
+ "startLines": "2,3,4,8,12,16",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "55,130,217,381,557,796",
+ "endLines": "2,3,7,11,15,16",
+ "endColumns": "74,86,12,12,12,92",
+ "endOffsets": "125,212,376,552,791,884"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v28.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v28.json
new file mode 100644
index 00000000..9ac23918
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v28.json
@@ -0,0 +1,47 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v28/values-v28.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-v28/values-v28.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,249,344,442,530,618,706,794,881,968,1055,1142",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,17",
+ "endColumns": "97,95,94,97,87,87,87,87,86,86,86,86,10",
+ "endOffsets": "148,244,339,437,525,613,701,789,876,963,1050,1137,1424"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,24",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,249,344,442,530,618,706,794,881,968,1055,1676",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,27",
+ "endColumns": "97,95,94,97,87,87,87,87,86,86,86,86,10",
+ "endOffsets": "148,244,339,437,525,613,701,789,876,963,1050,1137,1958"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-v28/values-v28.xml",
+ "from": {
+ "startLines": "2,3,4,8",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,130,217,397",
+ "endLines": "2,3,7,11",
+ "endColumns": "74,86,12,12",
+ "endOffsets": "125,212,392,584"
+ },
+ "to": {
+ "startLines": "14,15,16,20",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "1142,1217,1304,1484",
+ "endLines": "14,15,19,23",
+ "endColumns": "74,86,12,12",
+ "endOffsets": "1212,1299,1479,1671"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v29.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v29.json
new file mode 100644
index 00000000..382c746e
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v29.json
@@ -0,0 +1,37 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v29/values-v29.xml",
+ "map": [
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-v29/arrays.xml",
+ "from": {
+ "startLines": "2,7",
+ "startColumns": "4,4",
+ "startOffsets": "55,327",
+ "endLines": "6,11",
+ "endColumns": "19,19",
+ "endOffsets": "322,490"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-v29/colors.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "71",
+ "endOffsets": "122"
+ },
+ "to": {
+ "startLines": "12",
+ "startColumns": "4",
+ "startOffsets": "495",
+ "endColumns": "71",
+ "endOffsets": "562"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v30.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v30.json
new file mode 100644
index 00000000..6a20e6c8
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v30.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v30/values-v30.xml",
+ "map": [
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-v30/bools.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "38",
+ "endOffsets": "89"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v31.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v31.json
new file mode 100644
index 00000000..83e83b56
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v31.json
@@ -0,0 +1,20 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v31/values-v31.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-v31/values-v31.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,277,342,408",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,149,243,336,430,524,618,712,806,900,994,1088,1181,1274,1376,1478,1579,1681,1783,1885,1987,2089,2191,2293,2395,2496,2597,2690,2783,2875,2968,3061,3154,3247,3340,3433,3526,3619,3711,3803,3898,3993,4087,4182,4277,4372,4467,4562,4657,4752,4847,4941,5035,5129,5223,5316,5410,5504,5598,5692,5786,5880,5974,6068,6161,6254,6364,6475,6583,6691,6797,6900,7013,7120,7237,7340,7459,7564,7679,7787,7903,8003,8113,8217,8331,8438,8553,8671,8794,8920,9042,9166,9277,9393,9495,9607,9719,9831,9940,10049,10156,10261,10375,10484,10602,10706,10826,10933,11049,11158,11275,11376,11487,11592,11707,11816,11932,12051,12175,12302,12425,12552,12665,12782,12885,12998,13102,13214,13322,13438,13544,13658,13759,13864,13969,14078,14181,14288,14379,14490,14587,14704,14797,14910,15009,15128,15219,15312,15407,15500,15593,15686,15779,15872,15965,16058,16151,16244,16337,16444,16553,16664,16773,16882,16991,17100,17209,17318,17427,17536,17645,17754,17845,17938,18033,18126,18219,18312,18405,18498,18591,18684,18777,18870,18963,19058,19155,19254,19351,19448,19545,19642,19739,19836,19933,20030,20127,20224,20317,20412,20509,20604,20699,20794,20889,20984,21079,21174,21269,21364,21459,27071,32713,38445",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,276,341,407,473",
+ "endColumns": "93,93,92,93,93,93,93,93,93,93,93,92,92,101,101,100,101,101,101,101,101,101,101,101,100,100,92,92,91,92,92,92,92,92,92,92,92,91,91,94,94,93,94,94,94,94,94,94,94,94,93,93,93,93,92,93,93,93,93,93,93,93,93,92,92,109,110,107,107,105,102,112,106,116,102,118,104,114,107,115,99,109,103,113,106,114,117,122,125,121,123,110,115,101,111,111,111,108,108,106,104,113,108,117,103,119,106,115,108,116,100,110,104,114,108,115,118,123,126,122,126,112,116,102,112,103,111,107,115,105,113,100,104,104,108,102,106,90,110,96,116,92,112,98,118,90,92,94,92,92,92,92,92,92,92,92,92,92,106,108,110,108,108,108,108,108,108,108,108,108,108,90,92,94,92,92,92,92,92,92,92,92,92,92,94,96,98,96,96,96,96,96,96,96,96,96,96,92,94,96,94,94,94,94,94,94,94,94,94,94,10,10,10,10",
+ "endOffsets": "144,238,331,425,519,613,707,801,895,989,1083,1176,1269,1371,1473,1574,1676,1778,1880,1982,2084,2186,2288,2390,2491,2592,2685,2778,2870,2963,3056,3149,3242,3335,3428,3521,3614,3706,3798,3893,3988,4082,4177,4272,4367,4462,4557,4652,4747,4842,4936,5030,5124,5218,5311,5405,5499,5593,5687,5781,5875,5969,6063,6156,6249,6359,6470,6578,6686,6792,6895,7008,7115,7232,7335,7454,7559,7674,7782,7898,7998,8108,8212,8326,8433,8548,8666,8789,8915,9037,9161,9272,9388,9490,9602,9714,9826,9935,10044,10151,10256,10370,10479,10597,10701,10821,10928,11044,11153,11270,11371,11482,11587,11702,11811,11927,12046,12170,12297,12420,12547,12660,12777,12880,12993,13097,13209,13317,13433,13539,13653,13754,13859,13964,14073,14176,14283,14374,14485,14582,14699,14792,14905,15004,15123,15214,15307,15402,15495,15588,15681,15774,15867,15960,16053,16146,16239,16332,16439,16548,16659,16768,16877,16986,17095,17204,17313,17422,17531,17640,17749,17840,17933,18028,18121,18214,18307,18400,18493,18586,18679,18772,18865,18958,19053,19150,19249,19346,19443,19540,19637,19734,19831,19928,20025,20122,20219,20312,20407,20504,20599,20694,20789,20884,20979,21074,21169,21264,21359,21454,27066,32708,38440,44202"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v34.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v34.json
new file mode 100644
index 00000000..25b34ab6
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-v34.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-v34/values-v34.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-v34/values-v34.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,156,247,358,468,572,676,783,880,997,1098,1219,1324,1449,1550,1667,1770,1893,1988,2099,2194,2309,2408,2527,2622,2731,2846,2971,3102,3225,3354,3457,3568,3665,3782,3885,3978,4091,4201,4305,4409,4518,4617,4736,4839,4962,5069,5196,5299,5418,5523,5648,5745,5858,5955,6072,6173,6294,6391,6502,6619,6746,6879,7004,7135,7240,7353,7452,7571,7674,7793,7900,8023,8128,8249,8346,8451,8552,8661,8760,8867,8966,9085,9190,9315,9416,9537,9644",
+ "endColumns": "100,90,110,109,103,103,106,96,116,100,120,104,124,100,116,102,122,94,110,94,114,98,118,94,108,114,124,130,122,128,102,110,96,116,102,92,112,109,103,103,108,98,118,102,122,106,126,102,118,104,124,96,112,96,116,100,120,96,110,116,126,132,124,130,104,112,98,118,102,118,106,122,104,120,96,104,100,108,98,106,98,118,104,124,100,120,106,126",
+ "endOffsets": "151,242,353,463,567,671,778,875,992,1093,1214,1319,1444,1545,1662,1765,1888,1983,2094,2189,2304,2403,2522,2617,2726,2841,2966,3097,3220,3349,3452,3563,3660,3777,3880,3973,4086,4196,4300,4404,4513,4612,4731,4834,4957,5064,5191,5294,5413,5518,5643,5740,5853,5950,6067,6168,6289,6386,6497,6614,6741,6874,6999,7130,7235,7348,7447,7566,7669,7788,7895,8018,8123,8244,8341,8446,8547,8656,8755,8862,8961,9080,9185,9310,9411,9532,9639,9766"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-vi.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-vi.json
new file mode 100644
index 00000000..694ed76d
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-vi.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-vi/values-vi.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-vi/values-vi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,254,353,453,556,669,785",
+ "endColumns": "96,101,98,99,102,112,115,100",
+ "endOffsets": "147,249,348,448,551,664,780,881"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3402,3499,3601,3700,3800,3903,4016,12252",
+ "endColumns": "96,101,98,99,102,112,115,100",
+ "endOffsets": "3494,3596,3695,3795,3898,4011,4127,12348"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-vi/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "123",
+ "endOffsets": "318"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5441",
+ "endColumns": "127",
+ "endOffsets": "5564"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-vi/values-vi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,212,314,423,507,610,729,807,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1904,2008,2116,2217,2322,2437,2542,2699,2798",
+ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84",
+ "endOffsets": "207,309,418,502,605,724,802,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1899,2003,2111,2212,2317,2432,2537,2694,2793,2878"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "315,422,524,633,717,820,939,1017,1093,1184,1277,1372,1466,1566,1659,1754,1848,1939,2030,2114,2218,2326,2427,2532,2647,2752,2909,12167",
+ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84",
+ "endOffsets": "417,519,628,712,815,934,1012,1088,1179,1272,1367,1461,1561,1654,1749,1843,1934,2025,2109,2213,2321,2422,2527,2642,2747,2904,3003,12247"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-vi/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,291,449,570,675,836,962,1077,1177,1346,1449,1602,1728,1883,2028,2092,2152",
+ "endColumns": "97,157,120,104,160,125,114,99,168,102,152,125,154,144,63,59,78",
+ "endOffsets": "290,448,569,674,835,961,1076,1176,1345,1448,1601,1727,1882,2027,2091,2151,2230"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4425,4527,4689,4814,4923,5088,5218,5337,5569,5742,5849,6006,6136,6295,6444,6512,6576",
+ "endColumns": "101,161,124,108,164,129,118,103,172,106,156,129,158,148,67,63,82",
+ "endOffsets": "4522,4684,4809,4918,5083,5213,5332,5436,5737,5844,6001,6131,6290,6439,6507,6571,6654"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-vi/values-vi.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,265,344,421,499,579,659,758,872,952,1015,1109,1183,1242,1328,1390,1451,1509,1573,1634,1688,1805,1862,1922,1976,2051,2178,2262,2340,2470,2554,2632,2766,2857,2938,2989,3040,3106,3174,3250,3331,3411,3490,3565,3638,3714,3820,3909,3986,4077,4171,4245,4315,4408,4457,4538,4604,4689,4775,4837,4901,4964,5035,5134,5239,5337,5442,5497,5552",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,78,76,77,79,79,98,113,79,62,93,73,58,85,61,60,57,63,60,53,116,56,59,53,74,126,83,77,129,83,77,133,90,80,50,50,65,67,75,80,79,78,74,72,75,105,88,76,90,93,73,69,92,48,80,65,84,85,61,63,62,70,98,104,97,104,54,54,77",
+ "endOffsets": "260,339,416,494,574,654,753,867,947,1010,1104,1178,1237,1323,1385,1446,1504,1568,1629,1683,1800,1857,1917,1971,2046,2173,2257,2335,2465,2549,2627,2761,2852,2933,2984,3035,3101,3169,3245,3326,3406,3485,3560,3633,3709,3815,3904,3981,4072,4166,4240,4310,4403,4452,4533,4599,4684,4770,4832,4896,4959,5030,5129,5234,5332,5437,5492,5547,5625"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3008,3087,3164,3242,3322,4132,4231,4345,6848,6998,7428,7502,7561,7647,7709,7770,7828,7892,7953,8007,8124,8181,8241,8295,8370,8497,8581,8659,8789,8873,8951,9085,9176,9257,9308,9359,9425,9493,9569,9650,9730,9809,9884,9957,10033,10139,10228,10305,10396,10490,10564,10634,10727,10776,10857,10923,11008,11094,11156,11220,11283,11354,11453,11558,11656,11761,11816,11946",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,78,76,77,79,79,98,113,79,62,93,73,58,85,61,60,57,63,60,53,116,56,59,53,74,126,83,77,129,83,77,133,90,80,50,50,65,67,75,80,79,78,74,72,75,105,88,76,90,93,73,69,92,48,80,65,84,85,61,63,62,70,98,104,97,104,54,54,77",
+ "endOffsets": "310,3082,3159,3237,3317,3397,4226,4340,4420,6906,7087,7497,7556,7642,7704,7765,7823,7887,7948,8002,8119,8176,8236,8290,8365,8492,8576,8654,8784,8868,8946,9080,9171,9252,9303,9354,9420,9488,9564,9645,9725,9804,9879,9952,10028,10134,10223,10300,10391,10485,10559,10629,10722,10771,10852,10918,11003,11089,11151,11215,11278,11349,11448,11553,11651,11756,11811,11866,12019"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-vi/values-vi.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,177,264,339,482,651,731",
+ "endColumns": "71,86,74,142,168,79,76",
+ "endOffsets": "172,259,334,477,646,726,803"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6659,6911,11871,12024,12353,12522,12602",
+ "endColumns": "71,86,74,142,168,79,76",
+ "endOffsets": "6726,6993,11941,12162,12517,12597,12674"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-vi/values-vi.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,172,283,397",
+ "endColumns": "116,110,113,110",
+ "endOffsets": "167,278,392,503"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6731,7092,7203,7317",
+ "endColumns": "116,110,113,110",
+ "endOffsets": "6843,7198,7312,7423"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-w320dp-land-v13.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-w320dp-land-v13.json
new file mode 100644
index 00000000..bb6c58e1
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-w320dp-land-v13.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-w320dp-land-v13/values-w320dp-land-v13.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-w320dp-land-v13/values-w320dp-land-v13.xml",
+ "from": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,110",
+ "endColumns": "54,61",
+ "endOffsets": "105,167"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-w360dp-port-v13.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-w360dp-port-v13.json
new file mode 100644
index 00000000..465d88ef
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-w360dp-port-v13.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-w360dp-port-v13/values-w360dp-port-v13.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-w360dp-port-v13/values-w360dp-port-v13.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,114,170,226,293,358,413,478",
+ "endColumns": "58,55,55,66,64,54,64,68",
+ "endOffsets": "109,165,221,288,353,408,473,542"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-w400dp-port-v13.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-w400dp-port-v13.json
new file mode 100644
index 00000000..48cac1e8
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-w400dp-port-v13.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-w400dp-port-v13/values-w400dp-port-v13.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-w400dp-port-v13/values-w400dp-port-v13.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,114,170,226,293,358,413,478",
+ "endColumns": "58,55,55,66,64,54,64,68",
+ "endOffsets": "109,165,221,288,353,408,473,542"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-w600dp-land-v13.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-w600dp-land-v13.json
new file mode 100644
index 00000000..d31b59e3
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-w600dp-land-v13.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-w600dp-land-v13/values-w600dp-land-v13.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-w600dp-land-v13/values-w600dp-land-v13.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "54",
+ "endOffsets": "105"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-watch-v20.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-watch-v20.json
new file mode 100644
index 00000000..456b69f5
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-watch-v20.json
@@ -0,0 +1,20 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-watch-v20/values-watch-v20.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-watch-v20/values-watch-v20.xml",
+ "from": {
+ "startLines": "2,5,8",
+ "startColumns": "4,4,4",
+ "startOffsets": "55,214,385",
+ "endLines": "4,7,10",
+ "endColumns": "12,12,12",
+ "endOffsets": "209,380,553"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-watch-v21.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-watch-v21.json
new file mode 100644
index 00000000..222dede2
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-watch-v21.json
@@ -0,0 +1,20 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-watch-v21/values-watch-v21.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-watch-v21/values-watch-v21.xml",
+ "from": {
+ "startLines": "2,6,10",
+ "startColumns": "4,4,4",
+ "startOffsets": "55,271,499",
+ "endLines": "5,9,13",
+ "endColumns": "12,12,12",
+ "endOffsets": "266,494,724"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-xlarge-v4.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-xlarge-v4.json
new file mode 100644
index 00000000..641450ca
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-xlarge-v4.json
@@ -0,0 +1,19 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-xlarge-v4/values-xlarge-v4.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-xlarge-v4/values-xlarge-v4.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "55,126,197,267,337,405",
+ "endColumns": "70,70,69,69,67,67",
+ "endOffsets": "121,192,262,332,400,468"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-zh-rCN.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-zh-rCN.json
new file mode 100644
index 00000000..85484022
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-zh-rCN.json
@@ -0,0 +1,149 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-zh-rCN/values-zh-rCN.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-zh-rCN/values-zh-rCN.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,147,248,342,436,529,623,719",
+ "endColumns": "91,100,93,93,92,93,95,100",
+ "endOffsets": "142,243,337,431,524,618,714,815"
+ },
+ "to": {
+ "startLines": "63,64,65,66,67,68,69,265",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "4196,4288,4389,4483,4577,4670,4764,19201",
+ "endColumns": "91,100,93,93,92,93,95,100",
+ "endOffsets": "4283,4384,4478,4572,4665,4759,4855,19297"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-zh-rCN/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,294,419,530,628,729,841,939,1027,1131,1228,1354,1465,1565,1669,1721,1774",
+ "endColumns": "96,124,110,97,100,111,97,87,103,96,125,110,99,103,51,52,69",
+ "endOffsets": "293,418,529,627,728,840,938,1026,1130,1227,1353,1464,1564,1668,1720,1773,1843"
+ },
+ "to": {
+ "startLines": "82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "5688,5789,5918,6033,6135,6240,6356,6458,6649,6757,6858,6988,7103,7207,7315,7371,7428",
+ "endColumns": "100,128,114,101,104,115,101,91,107,100,129,114,103,107,55,56,73",
+ "endOffsets": "5784,5913,6028,6130,6235,6351,6453,6545,6752,6853,6983,7098,7202,7310,7366,7423,7497"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,200,295,395,477,574,680,757,832,923,1016,1113,1209,1303,1396,1491,1583,1674,1765,1843,1939,2034,2129,2226,2322,2420,2568,2662",
+ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78",
+ "endOffsets": "195,290,390,472,569,675,752,827,918,1011,1108,1204,1298,1391,1486,1578,1669,1760,1838,1934,2029,2124,2221,2317,2415,2563,2657,2736"
+ },
+ "to": {
+ "startLines": "30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,215",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "1252,1347,1442,1542,1624,1721,1827,1904,1979,2070,2163,2260,2356,2450,2543,2638,2730,2821,2912,2990,3086,3181,3276,3373,3469,3567,3715,15665",
+ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78",
+ "endOffsets": "1342,1437,1537,1619,1716,1822,1899,1974,2065,2158,2255,2351,2445,2538,2633,2725,2816,2907,2985,3081,3176,3271,3368,3464,3562,3710,3804,15739"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-zh-rCN/values-zh-rCN.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,138,230,331",
+ "endColumns": "82,91,100,92",
+ "endOffsets": "133,225,326,419"
+ },
+ "to": {
+ "startLines": "108,122,123,124",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7991,9057,9149,9250",
+ "endColumns": "82,91,100,92",
+ "endOffsets": "8069,9144,9245,9338"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-zh-rCN/values-zh-rCN.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,247,311,373,443,513,590,681,787,860,922,999,1058,1117,1195,1256,1313,1369,1428,1486,1540,1625,1681,1739,1793,1858,1950,2024,2100,2222,2284,2346,2445,2524,2598,2648,2699,2765,2829,2898,2976,3047,3108,3179,3246,3306,3392,3471,3538,3621,3706,3780,3845,3921,3969,4042,4106,4182,4260,4322,4386,4449,4514,4594,4670,4748,4824,4878,4933",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,63,61,69,69,76,90,105,72,61,76,58,58,77,60,56,55,58,57,53,84,55,57,53,64,91,73,75,121,61,61,98,78,73,49,50,65,63,68,77,70,60,70,66,59,85,78,66,82,84,73,64,75,47,72,63,75,77,61,63,62,64,79,75,77,75,53,54,68",
+ "endOffsets": "242,306,368,438,508,585,676,782,855,917,994,1053,1112,1190,1251,1308,1364,1423,1481,1535,1620,1676,1734,1788,1853,1945,2019,2095,2217,2279,2341,2440,2519,2593,2643,2694,2760,2824,2893,2971,3042,3103,3174,3241,3301,3387,3466,3533,3616,3701,3775,3840,3916,3964,4037,4101,4177,4255,4317,4381,4444,4509,4589,4665,4743,4819,4873,4928,4997"
+ },
+ "to": {
+ "startLines": "11,58,59,60,61,62,70,71,72,117,120,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,188",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "496,3853,3917,3979,4049,4119,4860,4951,5057,8710,8922,9343,9402,9461,9539,9600,9657,9713,9772,9830,9884,9969,10025,10083,10137,10202,10294,10368,10444,10566,10628,10690,10789,10868,10942,10992,11043,11109,11173,11242,11320,11391,11452,11523,11590,11650,11736,11815,11882,11965,12050,12124,12189,12265,12313,12386,12450,12526,12604,12666,12730,12793,12858,12938,13014,13092,13168,13222,13676",
+ "endLines": "14,58,59,60,61,62,70,71,72,117,120,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,188",
+ "endColumns": "12,63,61,69,69,76,90,105,72,61,76,58,58,77,60,56,55,58,57,53,84,55,57,53,64,91,73,75,121,61,61,98,78,73,49,50,65,63,68,77,70,60,70,66,59,85,78,66,82,84,73,64,75,47,72,63,75,77,61,63,62,64,79,75,77,75,53,54,68",
+ "endOffsets": "638,3912,3974,4044,4114,4191,4946,5052,5125,8767,8994,9397,9456,9534,9595,9652,9708,9767,9825,9879,9964,10020,10078,10132,10197,10289,10363,10439,10561,10623,10685,10784,10863,10937,10987,11038,11104,11168,11237,11315,11386,11447,11518,11585,11645,11731,11810,11877,11960,12045,12119,12184,12260,12308,12381,12445,12521,12599,12661,12725,12788,12853,12933,13009,13087,13163,13217,13272,13740"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-zh-rCN/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "94",
+ "endOffsets": "293"
+ },
+ "to": {
+ "startLines": "90",
+ "startColumns": "4",
+ "startOffsets": "6550",
+ "endColumns": "98",
+ "endOffsets": "6644"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-zh-rCN/strings.xml",
+ "from": {
+ "startLines": "96,99,102,159,162,166,67,70,2,92,94,93,88,89,87,91,90,95,176,178,177,175,85,83,84,214,221,215,222,217,216,218,219,171,170,172,158,157,165,156,173,9,17,16,21,31,27,29,28,30,33,34,32,19,20,22,23,24,25,10,12,11,15,14,13,107,154,145,144,150,152,151,146,147,148,149,153,114,115,138,139,140,141,112,113,127,128,129,130,131,108,111,109,110,116,117,118,119,120,134,135,132,133,121,123,124,125,126,122,142,143,106,136,137,37,47,59,60,61,48,57,58,80,81,74,75,76,77,78,62,65,63,79,73,44,45,36,38,40,41,39,42,5,3,6,4,7,196,195,201,188,187,200,206,199,197,193,189,190,191,194,186,183,192,184,185,207,208,202,205,203,204,198,182,211,181,179,180,209,210",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "5686,5804,5918,9691,9810,9983,3970,4108,55,5418,5560,5502,5183,5234,5128,5366,5313,5631,10412,10527,10469,10357,5070,4952,5014,13034,13500,13089,13580,13281,13165,13360,13432,10174,10116,10243,9626,9558,9915,9491,10304,338,868,793,1093,1795,1483,1634,1546,1714,1944,2023,1865,945,1030,1170,1249,1330,1398,408,519,458,727,661,576,6082,9441,8862,8817,9175,9289,9227,8907,8963,9028,9091,9374,6557,6620,8344,8407,8502,8573,6403,6472,7561,7626,7701,7788,7852,6133,6326,6197,6260,6706,6777,6875,6964,7050,8080,8141,7928,7997,7144,7281,7343,7414,7488,7216,8667,8735,6033,8211,8273,2151,2719,3395,3457,3547,2772,3279,3337,4806,4885,4303,4378,4467,4557,4644,3611,3833,3693,4742,4223,2607,2657,2089,2217,2365,2437,2291,2520,196,99,243,147,291,11831,11734,12173,11232,11171,12121,12483,12058,11920,11600,11317,11390,11461,11667,11080,10887,11532,10958,11012,12563,12625,12225,12412,12288,12346,12003,10812,12796,10736,10605,10678,12687,12739",
+ "endLines": "98,101,104,161,164,168,69,72,2,92,94,93,88,89,87,91,90,95,176,178,177,175,85,83,84,214,221,215,222,217,216,218,219,171,170,172,158,157,165,156,173,9,17,16,21,31,27,29,28,30,33,34,32,19,20,22,23,24,25,10,12,11,15,14,13,107,154,145,144,150,152,151,146,147,148,149,153,114,115,138,139,140,141,112,113,127,128,129,130,131,108,111,109,110,116,117,118,119,120,134,135,132,133,121,123,124,125,126,122,142,143,106,136,137,37,47,59,60,61,48,57,58,80,81,74,75,76,77,78,62,66,64,79,73,44,45,36,38,40,41,39,42,5,3,6,4,7,196,195,201,188,187,200,206,199,197,193,189,190,191,194,186,183,192,184,185,207,208,202,205,203,204,198,182,211,181,179,180,209,210",
+ "endColumns": "14,14,14,14,14,14,14,14,43,83,70,57,50,78,54,51,52,54,56,77,57,54,56,61,55,54,79,75,90,78,115,71,66,68,57,60,64,67,67,66,51,69,75,74,76,69,62,79,87,80,78,64,78,84,62,78,80,67,83,49,56,60,65,65,84,50,48,44,44,51,84,61,55,64,62,83,66,62,85,62,94,70,93,68,84,64,74,86,63,75,63,76,62,65,70,97,88,85,93,60,69,68,82,71,61,70,73,72,64,67,81,48,61,70,65,52,61,89,63,99,57,57,78,65,74,88,89,86,97,81,22,26,63,79,49,60,61,73,71,82,73,85,46,47,47,48,45,88,96,51,84,60,51,79,62,82,66,72,70,70,66,90,70,67,53,67,61,61,62,70,57,65,54,74,70,75,72,57,51,56",
+ "endOffsets": "5799,5913,6027,9805,9910,10110,4103,4218,94,5497,5626,5555,5229,5308,5178,5413,5361,5681,10464,10600,10522,10407,5122,5009,5065,13084,13575,13160,13666,13355,13276,13427,13494,10238,10169,10299,9686,9621,9978,9553,10351,403,939,863,1165,1860,1541,1709,1629,1790,2018,2083,1939,1025,1088,1244,1325,1393,1477,453,571,514,788,722,656,6128,9485,8902,8857,9222,9369,9284,8958,9023,9086,9170,9436,6615,6701,8402,8497,8568,8662,6467,6552,7621,7696,7783,7847,7923,6192,6398,6255,6321,6772,6870,6959,7045,7139,8136,8206,7992,8075,7211,7338,7409,7483,7556,7276,8730,8812,6077,8268,8339,2212,2767,3452,3542,3606,2867,3332,3390,4880,4946,4373,4462,4552,4639,4737,3688,3965,3828,4801,4298,2652,2713,2146,2286,2432,2515,2360,2601,238,142,286,191,332,11915,11826,12220,11312,11227,12168,12558,12116,11998,11662,11385,11456,11527,11729,11166,10953,11595,11007,11075,12620,12682,12283,12478,12341,12407,12053,10882,12862,10807,10673,10731,12734,12791"
+ },
+ "to": {
+ "startLines": "2,5,8,15,18,21,24,27,57,73,74,75,76,77,78,79,80,81,100,101,102,103,104,105,106,109,110,111,112,113,114,115,116,118,121,182,184,185,186,187,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,285,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,268,382,643,762,867,999,1137,3809,5130,5214,5285,5343,5394,5473,5528,5580,5633,7502,7559,7637,7695,7750,7807,7869,8074,8129,8209,8285,8376,8455,8571,8643,8772,8999,13277,13408,13473,13541,13609,13745,13917,13987,14063,14138,14215,14285,14348,14428,14516,14597,14676,14741,14820,14905,14968,15047,15128,15196,15280,15330,15387,15448,15514,15580,15744,15795,15844,15889,15934,15986,16071,16133,16189,16254,16317,16401,16468,16531,16617,16680,16775,16846,16940,17009,17094,17159,17234,17321,17385,17461,17525,17602,17665,17731,17802,17900,17989,18075,18169,18230,18300,18369,18452,18524,18586,18657,18731,18804,18869,18937,19019,19068,19130,19470,19536,19589,19651,19741,19805,19905,19963,20021,20100,20166,20241,20330,20420,20507,20605,20687,20824,20964,21028,21108,21158,21219,21281,21355,21427,21510,21584,21670,21717,21765,21813,21862,22065,22154,22251,22303,22388,22449,22501,22581,22644,22727,22794,22867,22938,23009,23076,23167,23238,23306,23360,23428,23490,23552,23615,23686,23744,23810,23865,23940,24011,24087,24160,24218,24270",
+ "endLines": "4,7,10,17,20,23,26,29,57,73,74,75,76,77,78,79,80,81,100,101,102,103,104,105,106,109,110,111,112,113,114,115,116,118,121,182,184,185,186,187,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,284,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336",
+ "endColumns": "14,14,14,14,14,14,14,14,43,83,70,57,50,78,54,51,52,54,56,77,57,54,56,61,55,54,79,75,90,78,115,71,66,68,57,60,64,67,67,66,51,69,75,74,76,69,62,79,87,80,78,64,78,84,62,78,80,67,83,49,56,60,65,65,84,50,48,44,44,51,84,61,55,64,62,83,66,62,85,62,94,70,93,68,84,64,74,86,63,75,63,76,62,65,70,97,88,85,93,60,69,68,82,71,61,70,73,72,64,67,81,48,61,70,65,52,61,89,63,99,57,57,78,65,74,88,89,86,97,81,22,26,63,79,49,60,61,73,71,82,73,85,46,47,47,48,45,88,96,51,84,60,51,79,62,82,66,72,70,70,66,90,70,67,53,67,61,61,62,70,57,65,54,74,70,75,72,57,51,56",
+ "endOffsets": "263,377,491,757,862,994,1132,1247,3848,5209,5280,5338,5389,5468,5523,5575,5628,5683,7554,7632,7690,7745,7802,7864,7920,8124,8204,8280,8371,8450,8566,8638,8705,8836,9052,13333,13468,13536,13604,13671,13792,13982,14058,14133,14210,14280,14343,14423,14511,14592,14671,14736,14815,14900,14963,15042,15123,15191,15275,15325,15382,15443,15509,15575,15660,15790,15839,15884,15929,15981,16066,16128,16184,16249,16312,16396,16463,16526,16612,16675,16770,16841,16935,17004,17089,17154,17229,17316,17380,17456,17520,17597,17660,17726,17797,17895,17984,18070,18164,18225,18295,18364,18447,18519,18581,18652,18726,18799,18864,18932,19014,19063,19125,19196,19531,19584,19646,19736,19800,19900,19958,20016,20095,20161,20236,20325,20415,20502,20600,20682,20819,20959,21023,21103,21153,21214,21276,21350,21422,21505,21579,21665,21712,21760,21808,21857,21903,22149,22246,22298,22383,22444,22496,22576,22639,22722,22789,22862,22933,23004,23071,23162,23233,23301,23355,23423,23485,23547,23610,23681,23739,23805,23860,23935,24006,24082,24155,24213,24265,24322"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-zh-rCN/values-zh-rCN.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,171,252,322,442,610,690",
+ "endColumns": "65,80,69,119,167,79,76",
+ "endOffsets": "166,247,317,437,605,685,762"
+ },
+ "to": {
+ "startLines": "107,119,183,190,266,302,303",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "7925,8841,13338,13797,19302,21908,21988",
+ "endColumns": "65,80,69,119,167,79,76",
+ "endOffsets": "7986,8917,13403,13912,19465,21983,22060"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-zh-rHK.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-zh-rHK.json
new file mode 100644
index 00000000..660612fd
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-zh-rHK.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-zh-rHK/values-zh-rHK.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-zh-rHK/values-zh-rHK.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,138,230,331",
+ "endColumns": "82,91,100,92",
+ "endOffsets": "133,225,326,419"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6018,6322,6414,6515",
+ "endColumns": "82,91,100,92",
+ "endOffsets": "6096,6409,6510,6603"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-zh-rHK/values-zh-rHK.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,247,310,371,438,507,584,674,781,854,916,994,1053,1111,1189,1250,1307,1363,1422,1480,1534,1620,1676,1734,1788,1853,1946,2020,2098,2218,2281,2344,2443,2520,2594,2644,2695,2761,2825,2893,2968,3040,3101,3172,3239,3299,3387,3467,3530,3613,3698,3772,3837,3913,3961,4035,4099,4175,4253,4315,4379,4442,4508,4588,4668,4744,4825,4879,4934",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,62,60,66,68,76,89,106,72,61,77,58,57,77,60,56,55,58,57,53,85,55,57,53,64,92,73,77,119,62,62,98,76,73,49,50,65,63,67,74,71,60,70,66,59,87,79,62,82,84,73,64,75,47,73,63,75,77,61,63,62,65,79,79,75,80,53,54,68",
+ "endOffsets": "242,305,366,433,502,579,669,776,849,911,989,1048,1106,1184,1245,1302,1358,1417,1475,1529,1615,1671,1729,1783,1848,1941,2015,2093,2213,2276,2339,2438,2515,2589,2639,2690,2756,2820,2888,2963,3035,3096,3167,3234,3294,3382,3462,3525,3608,3693,3767,3832,3908,3956,4030,4094,4170,4248,4310,4374,4437,4503,4583,4663,4739,4820,4874,4929,4998"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,2858,2921,2982,3049,3118,3856,3946,4053,6101,6244,6608,6667,6725,6803,6864,6921,6977,7036,7094,7148,7234,7290,7348,7402,7467,7560,7634,7712,7832,7895,7958,8057,8134,8208,8258,8309,8375,8439,8507,8582,8654,8715,8786,8853,8913,9001,9081,9144,9227,9312,9386,9451,9527,9575,9649,9713,9789,9867,9929,9993,10056,10122,10202,10282,10358,10439,10493,10618",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,62,60,66,68,76,89,106,72,61,77,58,57,77,60,56,55,58,57,53,85,55,57,53,64,92,73,77,119,62,62,98,76,73,49,50,65,63,67,74,71,60,70,66,59,87,79,62,82,84,73,64,75,47,73,63,75,77,61,63,62,65,79,79,75,80,53,54,68",
+ "endOffsets": "292,2916,2977,3044,3113,3190,3941,4048,4121,6158,6317,6662,6720,6798,6859,6916,6972,7031,7089,7143,7229,7285,7343,7397,7462,7555,7629,7707,7827,7890,7953,8052,8129,8203,8253,8304,8370,8434,8502,8577,8649,8710,8781,8848,8908,8996,9076,9139,9222,9307,9381,9446,9522,9570,9644,9708,9784,9862,9924,9988,10051,10117,10197,10277,10353,10434,10488,10543,10682"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,171,252,322,441,609,688",
+ "endColumns": "65,80,69,118,167,78,75",
+ "endOffsets": "166,247,317,436,604,683,759"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "5952,6163,10548,10687,10986,11154,11233",
+ "endColumns": "65,80,69,118,167,78,75",
+ "endOffsets": "6013,6239,10613,10801,11149,11228,11304"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-zh-rHK/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "103",
+ "endOffsets": "302"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "4990",
+ "endColumns": "107",
+ "endOffsets": "5093"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-zh-rHK/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,294,418,529,627,730,842,940,1029,1135,1232,1357,1468,1571,1675,1726,1779",
+ "endColumns": "96,123,110,97,102,111,97,88,105,96,124,110,102,103,50,52,67",
+ "endOffsets": "293,417,528,626,729,841,939,1028,1134,1231,1356,1467,1570,1674,1725,1778,1846"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4126,4227,4355,4470,4572,4679,4795,4897,5098,5208,5309,5438,5553,5660,5768,5823,5880",
+ "endColumns": "100,127,114,101,106,115,101,92,109,100,128,114,106,107,54,56,71",
+ "endOffsets": "4222,4350,4465,4567,4674,4790,4892,4985,5203,5304,5433,5548,5655,5763,5818,5875,5947"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-zh-rHK/values-zh-rHK.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,147,246,340,434,527,620,716",
+ "endColumns": "91,98,93,93,92,92,95,100",
+ "endOffsets": "142,241,335,429,522,615,711,812"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3195,3287,3386,3480,3574,3667,3760,10885",
+ "endColumns": "91,98,93,93,92,92,95,100",
+ "endOffsets": "3282,3381,3475,3569,3662,3755,3851,10981"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-zh-rHK/values-zh-rHK.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1109,1205,1300,1394,1490,1582,1674,1766,1844,1940,2035,2130,2227,2323,2421,2572,2666",
+ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78",
+ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1104,1200,1295,1389,1485,1577,1669,1761,1839,1935,2030,2125,2222,2318,2416,2567,2661,2740"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "297,392,485,585,667,764,872,949,1024,1116,1210,1301,1397,1492,1586,1682,1774,1866,1958,2036,2132,2227,2322,2419,2515,2613,2764,10806",
+ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78",
+ "endOffsets": "387,480,580,662,759,867,944,1019,1111,1205,1296,1392,1487,1581,1677,1769,1861,1953,2031,2127,2222,2317,2414,2510,2608,2759,2853,10880"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-zh-rTW.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-zh-rTW.json
new file mode 100644
index 00000000..755e8464
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-zh-rTW.json
@@ -0,0 +1,149 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-zh-rTW/values-zh-rTW.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-zh-rTW/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "197,294,418,529,627,730,842,938,1029,1135,1232,1357,1468,1566,1670,1722,1775",
+ "endColumns": "96,123,110,97,102,111,95,90,105,96,124,110,97,103,51,52,69",
+ "endOffsets": "293,417,528,626,729,841,937,1028,1134,1231,1356,1467,1565,1669,1721,1774,1844"
+ },
+ "to": {
+ "startLines": "82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "5698,5799,5927,6042,6144,6251,6367,6467,6665,6775,6876,7005,7120,7222,7330,7386,7443",
+ "endColumns": "100,127,114,101,106,115,99,94,109,100,128,114,101,107,55,56,73",
+ "endOffsets": "5794,5922,6037,6139,6246,6362,6462,6557,6770,6871,7000,7115,7217,7325,7381,7438,7512"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values-zh-rTW/strings.xml",
+ "from": {
+ "startLines": "104,107,110,165,168,172,76,79,12,100,102,101,96,97,95,99,98,103,183,182,181,93,91,92,209,215,210,216,212,211,213,214,177,176,178,164,163,171,162,179,19,27,26,31,40,36,38,37,39,42,43,41,29,30,32,33,34,20,22,21,25,24,23,115,160,151,150,156,158,157,152,153,154,155,159,122,123,144,145,146,147,120,121,133,134,135,136,137,116,119,117,118,124,125,126,140,141,138,139,127,129,130,131,132,128,148,149,114,142,143,46,56,68,69,70,57,66,67,88,89,83,84,85,86,71,74,72,87,82,53,54,45,47,49,50,48,51,15,13,16,14,17,195,200,192,191,199,202,198,196,193,194,190,187,188,189,203,204,201,197,186,206,185,184,205",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "6031,6149,6264,9883,10002,10174,4393,4531,540,5768,5905,5848,5530,5582,5475,5716,5660,5977,10669,10607,10546,5417,5299,5361,12487,12936,12542,13022,12718,12618,12797,12869,10365,10307,10434,9817,9746,10107,9676,10493,820,1350,1278,1581,2204,1890,2043,1953,2123,2353,2432,2274,1428,1518,1659,1737,1820,888,1001,938,1211,1147,1060,6429,9626,9040,8995,9370,9484,9422,9085,9141,9213,9276,9559,6903,6966,8523,8586,8680,8754,6750,6819,7737,7802,7877,7964,8028,6480,6673,6544,6607,7054,7125,7224,8256,8317,8104,8173,7317,7454,7517,7588,7664,7389,8846,8914,6380,8390,8452,2567,3136,3824,3886,3978,3191,3699,3757,5153,5232,4725,4814,4904,4991,4042,4258,4122,5089,4646,3022,3072,2496,2625,2777,2849,2702,2933,683,587,729,634,775,11531,11880,11313,11258,11828,11994,11765,11628,11396,11463,11169,10969,11043,11101,12074,12136,11932,11711,10896,12251,10822,10751,12198",
+ "endLines": "106,109,112,167,170,174,78,81,12,100,102,101,96,97,95,99,98,103,183,182,181,93,91,92,209,215,210,216,212,211,213,214,177,176,178,164,163,171,162,179,19,27,26,31,40,36,38,37,39,42,43,41,29,30,32,33,34,20,22,21,25,24,23,115,160,151,150,156,158,157,152,153,154,155,159,122,123,144,145,146,147,120,121,133,134,135,136,137,116,119,117,118,124,125,126,140,141,138,139,127,129,130,131,132,128,148,149,114,142,143,46,56,68,69,70,57,66,67,88,89,83,84,85,86,71,75,73,87,82,53,54,45,47,49,50,48,51,15,13,16,14,17,195,200,192,191,199,202,198,196,193,194,190,187,188,189,203,204,201,197,186,206,185,184,205",
+ "endColumns": "14,14,14,14,14,14,14,14,46,79,71,56,51,77,54,51,55,53,81,61,60,56,61,55,54,85,75,91,78,99,71,66,68,57,58,65,70,66,69,51,67,76,71,77,69,62,79,89,80,78,62,78,89,62,77,82,68,49,58,62,66,63,86,50,48,44,44,51,74,61,55,71,62,93,66,62,87,62,93,73,91,68,83,64,74,86,63,75,63,76,62,65,70,98,92,60,72,68,82,71,62,70,75,72,64,67,80,48,61,70,57,54,61,91,63,100,57,66,78,65,88,89,86,97,79,24,26,63,78,49,62,70,76,71,83,74,87,45,46,45,48,43,96,51,82,54,51,79,62,82,66,67,88,73,57,67,61,61,61,53,72,68,73,70,52",
+ "endOffsets": "6144,6259,6374,9997,10102,10301,4526,4641,582,5843,5972,5900,5577,5655,5525,5763,5711,6026,10746,10664,10602,5469,5356,5412,12537,13017,12613,13109,12792,12713,12864,12931,10429,10360,10488,9878,9812,10169,9741,10540,883,1422,1345,1654,2269,1948,2118,2038,2199,2427,2490,2348,1513,1576,1732,1815,1884,933,1055,996,1273,1206,1142,6475,9670,9080,9035,9417,9554,9479,9136,9208,9271,9365,9621,6961,7049,8581,8675,8749,8841,6814,6898,7797,7872,7959,8023,8099,6539,6745,6602,6668,7120,7219,7312,8312,8385,8168,8251,7384,7512,7583,7659,7732,7449,8909,8990,6424,8447,8518,2620,3186,3881,3973,4037,3287,3752,3819,5227,5293,4809,4899,4986,5084,4117,4388,4253,5148,4720,3067,3130,2562,2697,2844,2928,2772,3016,724,629,770,678,814,11623,11927,11391,11308,11875,12069,11823,11706,11458,11526,11253,11038,11096,11164,12131,12193,11989,11760,10964,12315,10891,10817,12246"
+ },
+ "to": {
+ "startLines": "2,5,8,15,18,21,24,27,57,73,74,75,76,77,78,79,80,81,100,101,102,103,104,105,108,109,110,111,112,113,114,115,117,120,181,183,184,185,186,188,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,280,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,268,383,645,764,869,1001,1139,3820,5142,5222,5294,5351,5403,5481,5536,5588,5644,7517,7599,7661,7722,7779,7841,8047,8102,8188,8264,8356,8435,8535,8607,8736,8964,13247,13376,13442,13513,13580,13719,13891,13959,14036,14108,14186,14256,14319,14399,14489,14570,14649,14712,14791,14881,14944,15022,15105,15174,15224,15283,15346,15413,15477,15643,15694,15743,15788,15833,15885,15960,16022,16078,16150,16213,16307,16374,16437,16525,16588,16682,16756,16848,16917,17001,17066,17141,17228,17292,17368,17432,17509,17572,17638,17709,17808,17901,17962,18035,18104,18187,18259,18322,18393,18469,18542,18607,18675,18756,18805,18867,19207,19265,19320,19382,19474,19538,19639,19697,19764,19843,19909,19998,20088,20175,20273,20353,20488,20624,20688,20767,20817,20880,20951,21028,21100,21184,21259,21347,21393,21440,21486,21535,21734,21831,21883,21966,22021,22073,22153,22216,22299,22366,22434,22523,22597,22655,22723,22785,22847,22909,22963,23036,23105,23179,23250",
+ "endLines": "4,7,10,17,20,23,26,29,57,73,74,75,76,77,78,79,80,81,100,101,102,103,104,105,108,109,110,111,112,113,114,115,117,120,181,183,184,185,186,188,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,279,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321",
+ "endColumns": "14,14,14,14,14,14,14,14,46,79,71,56,51,77,54,51,55,53,81,61,60,56,61,55,54,85,75,91,78,99,71,66,68,57,58,65,70,66,69,51,67,76,71,77,69,62,79,89,80,78,62,78,89,62,77,82,68,49,58,62,66,63,86,50,48,44,44,51,74,61,55,71,62,93,66,62,87,62,93,73,91,68,83,64,74,86,63,75,63,76,62,65,70,98,92,60,72,68,82,71,62,70,75,72,64,67,80,48,61,70,57,54,61,91,63,100,57,66,78,65,88,89,86,97,79,24,26,63,78,49,62,70,76,71,83,74,87,45,46,45,48,43,96,51,82,54,51,79,62,82,66,67,88,73,57,67,61,61,61,53,72,68,73,70,52",
+ "endOffsets": "263,378,493,759,864,996,1134,1249,3862,5217,5289,5346,5398,5476,5531,5583,5639,5693,7594,7656,7717,7774,7836,7892,8097,8183,8259,8351,8430,8530,8602,8669,8800,9017,13301,13437,13508,13575,13645,13766,13954,14031,14103,14181,14251,14314,14394,14484,14565,14644,14707,14786,14876,14939,15017,15100,15169,15219,15278,15341,15408,15472,15559,15689,15738,15783,15828,15880,15955,16017,16073,16145,16208,16302,16369,16432,16520,16583,16677,16751,16843,16912,16996,17061,17136,17223,17287,17363,17427,17504,17567,17633,17704,17803,17896,17957,18030,18099,18182,18254,18317,18388,18464,18537,18602,18670,18751,18800,18862,18933,19260,19315,19377,19469,19533,19634,19692,19759,19838,19904,19993,20083,20170,20268,20348,20483,20619,20683,20762,20812,20875,20946,21023,21095,21179,21254,21342,21388,21435,21481,21530,21574,21826,21878,21961,22016,22068,22148,22211,22294,22361,22429,22518,22592,22650,22718,22780,22842,22904,22958,23031,23100,23174,23245,23298"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-zh-rTW/values-zh-rTW.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,247,311,373,440,510,587,681,788,861,923,1001,1061,1121,1199,1260,1318,1374,1434,1492,1546,1631,1687,1745,1799,1864,1956,2030,2107,2227,2290,2353,2452,2529,2603,2653,2704,2770,2833,2901,2979,3050,3111,3182,3249,3311,3398,3477,3542,3625,3710,3784,3848,3924,3972,4045,4109,4185,4263,4325,4389,4452,4518,4598,4676,4752,4831,4885,4940",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,63,61,66,69,76,93,106,72,61,77,59,59,77,60,57,55,59,57,53,84,55,57,53,64,91,73,76,119,62,62,98,76,73,49,50,65,62,67,77,70,60,70,66,61,86,78,64,82,84,73,63,75,47,72,63,75,77,61,63,62,65,79,77,75,78,53,54,68",
+ "endOffsets": "242,306,368,435,505,582,676,783,856,918,996,1056,1116,1194,1255,1313,1369,1429,1487,1541,1626,1682,1740,1794,1859,1951,2025,2102,2222,2285,2348,2447,2524,2598,2648,2699,2765,2828,2896,2974,3045,3106,3177,3244,3306,3393,3472,3537,3620,3705,3779,3843,3919,3967,4040,4104,4180,4258,4320,4384,4447,4513,4593,4671,4747,4826,4880,4935,5004"
+ },
+ "to": {
+ "startLines": "11,58,59,60,61,62,70,71,72,116,119,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,187",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "498,3867,3931,3993,4060,4130,4868,4962,5069,8674,8886,9308,9368,9428,9506,9567,9625,9681,9741,9799,9853,9938,9994,10052,10106,10171,10263,10337,10414,10534,10597,10660,10759,10836,10910,10960,11011,11077,11140,11208,11286,11357,11418,11489,11556,11618,11705,11784,11849,11932,12017,12091,12155,12231,12279,12352,12416,12492,12570,12632,12696,12759,12825,12905,12983,13059,13138,13192,13650",
+ "endLines": "14,58,59,60,61,62,70,71,72,116,119,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,187",
+ "endColumns": "12,63,61,66,69,76,93,106,72,61,77,59,59,77,60,57,55,59,57,53,84,55,57,53,64,91,73,76,119,62,62,98,76,73,49,50,65,62,67,77,70,60,70,66,61,86,78,64,82,84,73,63,75,47,72,63,75,77,61,63,62,65,79,77,75,78,53,54,68",
+ "endOffsets": "640,3926,3988,4055,4125,4202,4957,5064,5137,8731,8959,9363,9423,9501,9562,9620,9676,9736,9794,9848,9933,9989,10047,10101,10166,10258,10332,10409,10529,10592,10655,10754,10831,10905,10955,11006,11072,11135,11203,11281,11352,11413,11484,11551,11613,11700,11779,11844,11927,12012,12086,12150,12226,12274,12347,12411,12487,12565,12627,12691,12754,12820,12900,12978,13054,13133,13187,13242,13714"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1115,1211,1306,1400,1496,1588,1680,1772,1850,1946,2041,2136,2233,2329,2427,2577,2671",
+ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78",
+ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1110,1206,1301,1395,1491,1583,1675,1767,1845,1941,2036,2131,2228,2324,2422,2572,2666,2745"
+ },
+ "to": {
+ "startLines": "30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,213",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "1254,1349,1442,1542,1624,1721,1829,1906,1981,2073,2167,2264,2360,2455,2549,2645,2737,2829,2921,2999,3095,3190,3285,3382,3478,3576,3726,15564",
+ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78",
+ "endOffsets": "1344,1437,1537,1619,1716,1824,1901,1976,2068,2162,2259,2355,2450,2544,2640,2732,2824,2916,2994,3090,3185,3280,3377,3473,3571,3721,3815,15638"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-zh-rTW/values-zh-rTW.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,171,252,322,442,610,689",
+ "endColumns": "65,80,69,119,167,78,75",
+ "endOffsets": "166,247,317,437,605,684,760"
+ },
+ "to": {
+ "startLines": "106,118,182,189,262,297,298",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "7897,8805,13306,13771,19039,21579,21658",
+ "endColumns": "65,80,69,119,167,78,75",
+ "endOffsets": "7958,8881,13371,13886,19202,21653,21729"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-zh-rTW/values-zh-rTW.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,139,231,332",
+ "endColumns": "83,91,100,92",
+ "endOffsets": "134,226,327,420"
+ },
+ "to": {
+ "startLines": "107,121,122,123",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7963,9022,9114,9215",
+ "endColumns": "83,91,100,92",
+ "endOffsets": "8042,9109,9210,9303"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-zh-rTW/values-zh-rTW.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,147,246,340,434,527,620,716",
+ "endColumns": "91,98,93,93,92,92,95,100",
+ "endOffsets": "142,241,335,429,522,615,711,812"
+ },
+ "to": {
+ "startLines": "63,64,65,66,67,68,69,261",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "4207,4299,4398,4492,4586,4679,4772,18938",
+ "endColumns": "91,98,93,93,92,92,95,100",
+ "endOffsets": "4294,4393,4487,4581,4674,4767,4863,19034"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-zh-rTW/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "199",
+ "endColumns": "98",
+ "endOffsets": "297"
+ },
+ "to": {
+ "startLines": "90",
+ "startColumns": "4",
+ "startOffsets": "6562",
+ "endColumns": "102",
+ "endOffsets": "6660"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-zu.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-zu.json
new file mode 100644
index 00000000..a4f7234f
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values-zu.json
@@ -0,0 +1,130 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values-zu/values-zu.xml",
+ "map": [
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values-zu/values-zu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,153,257,356,459,565,672,785",
+ "endColumns": "97,103,98,102,105,106,112,100",
+ "endOffsets": "148,252,351,454,560,667,780,881"
+ },
+ "to": {
+ "startLines": "38,39,40,41,42,43,44,135",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "3421,3519,3623,3722,3825,3931,4038,12565",
+ "endColumns": "97,103,98,102,105,106,112,100",
+ "endOffsets": "3514,3618,3717,3820,3926,4033,4146,12661"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values-zu/values-zu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,213,320,432,520,623,738,817,894,985,1078,1173,1267,1367,1460,1555,1649,1740,1833,1914,2018,2121,2219,2326,2433,2538,2695,2791",
+ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81",
+ "endOffsets": "208,315,427,515,618,733,812,889,980,1073,1168,1262,1362,1455,1550,1644,1735,1828,1909,2013,2116,2214,2321,2428,2533,2690,2786,2868"
+ },
+ "to": {
+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,134",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "321,429,536,648,736,839,954,1033,1110,1201,1294,1389,1483,1583,1676,1771,1865,1956,2049,2130,2234,2337,2435,2542,2649,2754,2911,12483",
+ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81",
+ "endOffsets": "424,531,643,731,834,949,1028,1105,1196,1289,1384,1478,1578,1671,1766,1860,1951,2044,2125,2229,2332,2430,2537,2644,2749,2906,3002,12560"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values-zu/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "193,300,472,603,703,867,992,1112,1218,1374,1480,1641,1768,1922,2075,2132,2197",
+ "endColumns": "106,171,130,99,163,124,119,105,155,105,160,126,153,152,56,64,80",
+ "endOffsets": "299,471,602,702,866,991,1111,1217,1373,1479,1640,1767,1921,2074,2131,2196,2277"
+ },
+ "to": {
+ "startLines": "48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "4470,4581,4757,4892,4996,5164,5293,5417,5659,5819,5929,6094,6225,6383,6540,6601,6670",
+ "endColumns": "110,175,134,103,167,128,123,109,159,109,164,130,157,156,60,68,84",
+ "endOffsets": "4576,4752,4887,4991,5159,5288,5412,5522,5814,5924,6089,6220,6378,6535,6596,6665,6750"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values-zu/values-zu.xml",
+ "from": {
+ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "100,271,349,426,503,597,685,797,923,1004,1071,1174,1249,1312,1404,1475,1540,1607,1679,1751,1805,1926,1985,2049,2103,2180,2312,2397,2478,2627,2714,2797,2939,3031,3109,3165,3223,3289,3361,3438,3529,3612,3692,3771,3846,3925,4029,4119,4192,4286,4383,4457,4530,4629,4684,4768,4836,4924,5013,5075,5139,5202,5273,5382,5493,5596,5704,5764,5826",
+ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73",
+ "endColumns": "12,77,76,76,93,87,111,125,80,66,102,74,62,91,70,64,66,71,71,53,120,58,63,53,76,131,84,80,148,86,82,141,91,77,55,57,65,71,76,90,82,79,78,74,78,103,89,72,93,96,73,72,98,54,83,67,87,88,61,63,62,70,108,110,102,107,59,61,81",
+ "endOffsets": "266,344,421,498,592,680,792,918,999,1066,1169,1244,1307,1399,1470,1535,1602,1674,1746,1800,1921,1980,2044,2098,2175,2307,2392,2473,2622,2709,2792,2934,3026,3104,3160,3218,3284,3356,3433,3524,3607,3687,3766,3841,3920,4024,4114,4187,4281,4378,4452,4525,4624,4679,4763,4831,4919,5008,5070,5134,5197,5268,5377,5488,5591,5699,5759,5821,5903"
+ },
+ "to": {
+ "startLines": "2,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,3007,3085,3162,3239,3333,4151,4263,4389,6938,7099,7534,7609,7672,7764,7835,7900,7967,8039,8111,8165,8286,8345,8409,8463,8540,8672,8757,8838,8987,9074,9157,9299,9391,9469,9525,9583,9649,9721,9798,9889,9972,10052,10131,10206,10285,10389,10479,10552,10646,10743,10817,10890,10989,11044,11128,11196,11284,11373,11435,11499,11562,11633,11742,11853,11956,12064,12124,12263",
+ "endLines": "5,33,34,35,36,37,45,46,47,68,70,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,132",
+ "endColumns": "12,77,76,76,93,87,111,125,80,66,102,74,62,91,70,64,66,71,71,53,120,58,63,53,76,131,84,80,148,86,82,141,91,77,55,57,65,71,76,90,82,79,78,74,78,103,89,72,93,96,73,72,98,54,83,67,87,88,61,63,62,70,108,110,102,107,59,61,81",
+ "endOffsets": "316,3080,3157,3234,3328,3416,4258,4384,4465,7000,7197,7604,7667,7759,7830,7895,7962,8034,8106,8160,8281,8340,8404,8458,8535,8667,8752,8833,8982,9069,9152,9294,9386,9464,9520,9578,9644,9716,9793,9884,9967,10047,10126,10201,10280,10384,10474,10547,10641,10738,10812,10885,10984,11039,11123,11191,11279,11368,11430,11494,11557,11628,11737,11848,11951,12059,12119,12181,12340"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values-zu/values.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "0",
+ "startOffsets": "195",
+ "endColumns": "127",
+ "endOffsets": "322"
+ },
+ "to": {
+ "startLines": "56",
+ "startColumns": "4",
+ "startOffsets": "5527",
+ "endColumns": "131",
+ "endOffsets": "5654"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values-zu/values-zu.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "105,176,270,347,485,654,735",
+ "endColumns": "70,93,76,137,168,80,77",
+ "endOffsets": "171,265,342,480,649,730,808"
+ },
+ "to": {
+ "startLines": "66,69,131,133,136,137,138",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "6755,7005,12186,12345,12666,12835,12916",
+ "endColumns": "70,93,76,137,168,80,77",
+ "endOffsets": "6821,7094,12258,12478,12830,12911,12989"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values-zu/values-zu.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,167,275,387",
+ "endColumns": "111,107,111,111",
+ "endOffsets": "162,270,382,494"
+ },
+ "to": {
+ "startLines": "67,71,72,73",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6826,7202,7310,7422",
+ "endColumns": "111,107,111,111",
+ "endOffsets": "6933,7305,7417,7529"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values.json
new file mode 100644
index 00000000..b2284224
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/multi-v2/values.json
@@ -0,0 +1,642 @@
+{
+ "logs": [
+ {
+ "outputFile": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-62:/values/values.xml",
+ "map": [
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values/dimen.xml",
+ "from": {
+ "startLines": "3,4,2",
+ "startColumns": "4,4,4",
+ "startOffsets": "103,171,55",
+ "endColumns": "67,43,47",
+ "endOffsets": "166,210,98"
+ },
+ "to": {
+ "startLines": "1105,1744,1756",
+ "startColumns": "4,4,4",
+ "startOffsets": "67038,117345,118001",
+ "endColumns": "67,43,47",
+ "endOffsets": "67101,117384,118044"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/7bf8b97a50c97fae198c1842347e4d1c/transformed/databinding-adapters-8.2.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4",
+ "startColumns": "4,4,4",
+ "startOffsets": "55,112,155",
+ "endColumns": "56,42,40",
+ "endOffsets": "107,150,191"
+ },
+ "to": {
+ "startLines": "1823,1824,1855",
+ "startColumns": "4,4,4",
+ "startOffsets": "121984,122041,123634",
+ "endColumns": "56,42,40",
+ "endOffsets": "122036,122079,123670"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/974f946db560c84390f432f3dcd91071/transformed/fragment-1.6.2/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,10",
+ "startColumns": "4,4,4,4,4",
+ "startOffsets": "55,112,177,241,411",
+ "endLines": "2,3,4,9,13",
+ "endColumns": "56,64,63,24,24",
+ "endOffsets": "107,172,236,406,555"
+ },
+ "to": {
+ "startLines": "1800,1838,1875,11334,11339",
+ "startColumns": "4,4,4,4,4",
+ "startOffsets": "120755,122699,124610,743098,743268",
+ "endLines": "1800,1838,1875,11338,11342",
+ "endColumns": "56,64,63,24,24",
+ "endOffsets": "120807,122759,124669,743263,743412"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/07ba96a5bb88c0245ec3c58dfbf13b7b/transformed/jetified-appcompat-resources-1.6.1/res/values/values.xml",
+ "from": {
+ "startLines": "2,18,24,34,50",
+ "startColumns": "4,4,4,4,4",
+ "startOffsets": "55,480,658,942,1353",
+ "endLines": "17,23,33,49,53",
+ "endColumns": "24,24,24,24,24",
+ "endOffsets": "475,653,937,1348,1475"
+ },
+ "to": {
+ "startLines": "9796,9812,9818,12679,12695",
+ "startColumns": "4,4,4,4,4",
+ "startOffsets": "675823,676248,676426,797634,798045",
+ "endLines": "9811,9817,9827,12694,12698",
+ "endColumns": "24,24,24,24,24",
+ "endOffsets": "676243,676421,676705,798040,798167"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/8b23fe5f41d4e2f787827edd6cd782ee/transformed/drawerlayout-1.1.1/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,111,159,211",
+ "endLines": "2,3,4,8",
+ "endColumns": "55,47,51,24",
+ "endOffsets": "106,154,206,426"
+ },
+ "to": {
+ "startLines": "158,161,1041,11183",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "7852,8016,62716,737811",
+ "endLines": "158,161,1041,11186",
+ "endColumns": "55,47,51,24",
+ "endOffsets": "7903,8059,62763,737917"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/a33695dde8a169e607a8ae6f38de7bcf/transformed/cardview-1.0.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,35,36,37,38,45,47,50,7",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,107,168,230,292,2179,2238,2295,2349,2763,2827,2953,356",
+ "endLines": "2,3,4,5,6,35,36,37,44,46,49,52,34",
+ "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24",
+ "endOffsets": "102,163,225,287,351,2233,2290,2344,2758,2822,2948,3076,2174"
+ },
+ "to": {
+ "startLines": "63,622,623,624,625,1030,1031,1032,2461,5828,5830,5833,10652",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "2957,32355,32416,32478,32540,62003,62062,62119,177566,412795,412859,412985,705289",
+ "endLines": "63,622,623,624,625,1030,1031,1032,2467,5829,5832,5835,10679",
+ "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24",
+ "endOffsets": "3004,32411,32473,32535,32599,62057,62114,62168,177975,412854,412980,413108,706208"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e608070d69755e6e0f122901919553cb/transformed/transition-1.4.1/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,95,142,185,240,287,341,393,442,503",
+ "endColumns": "39,46,42,54,46,53,51,48,60,49",
+ "endOffsets": "90,137,180,235,282,336,388,437,498,548"
+ },
+ "to": {
+ "startLines": "1801,1802,1825,1833,1834,1864,1865,1866,1867,1868",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "120812,120852,122084,122465,122520,124057,124111,124163,124212,124273",
+ "endColumns": "39,46,42,54,46,53,51,48,60,49",
+ "endOffsets": "120847,120894,122122,122515,122562,124106,124158,124207,124268,124318"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,221,222,226,230,234,239,245,252,256,260,265,269,273,277,281,285,289,295,299,305,309,315,319,324,328,331,335,341,345,351,355,361,364,368,372,376,380,384,385,386,387,390,393,396,399,403,404,405,406,407,410,412,414,416,421,422,426,432,436,437,439,451,452,456,462,466,467,468,472,499,503,504,508,536,708,734,905,931,962,970,976,992,1014,1019,1024,1034,1043,1052,1056,1063,1082,1089,1090,1099,1102,1105,1109,1113,1117,1120,1121,1126,1131,1141,1146,1153,1159,1160,1163,1167,1172,1174,1176,1179,1182,1184,1188,1191,1198,1201,1204,1208,1210,1214,1216,1218,1220,1224,1232,1240,1252,1258,1267,1270,1281,1284,1285,1290,1291,1296,1365,1435,1436,1446,1455,1456,1458,1462,1465,1468,1471,1474,1477,1480,1483,1487,1490,1493,1496,1500,1503,1507,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1533,1535,1536,1537,1538,1539,1540,1541,1542,1544,1545,1547,1548,1550,1552,1553,1555,1556,1557,1558,1559,1560,1562,1563,1564,1565,1566,1567,1569,1571,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1587,1588,1589,1590,1591,1592,1593,1595,1599,1603,1604,1605,1606,1607,1608,1612,1613,1614,1615,1617,1619,1621,1623,1625,1626,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1648,1649,1650,1651,1653,1655,1656,1658,1659,1661,1663,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1678,1679,1680,1681,1683,1684,1685,1686,1687,1689,1691,1693,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1785,1788,1791,1794,1808,1814,1824,1827,1856,1883,1892,1956,2319,2323,2351,2379,2397,2421,2427,2433,2454,2578,2598,2604,2608,2649,2661,2727,2747,2802,2814,2840",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,160,205,254,295,350,412,476,546,607,682,758,835,913,998,1080,1156,1232,1309,1387,1493,1599,1678,1758,1815,1873,1947,2022,2087,2153,2213,2274,2346,2419,2486,2554,2613,2672,2731,2790,2849,2903,2957,3010,3064,3118,3172,3226,3300,3379,3452,3526,3597,3669,3741,3814,3871,3929,4002,4076,4150,4225,4297,4370,4440,4511,4571,4632,4701,4770,4840,4914,4990,5054,5131,5207,5284,5349,5418,5495,5570,5639,5707,5784,5850,5911,6008,6073,6142,6241,6312,6371,6429,6486,6545,6609,6680,6752,6824,6896,6968,7035,7103,7171,7230,7293,7357,7447,7538,7598,7664,7731,7797,7867,7931,7984,8051,8112,8179,8292,8350,8413,8478,8543,8618,8691,8763,8807,8854,8900,8949,9010,9071,9132,9194,9258,9322,9386,9451,9514,9574,9635,9701,9760,9820,9882,9953,10013,10081,10167,10254,10344,10431,10519,10601,10684,10774,10865,10917,10975,11020,11086,11150,11207,11264,11318,11375,11423,11472,11523,11557,11604,11653,11699,11731,11795,11857,11917,11974,12048,12118,12196,12250,12320,12405,12453,12499,12560,12623,12689,12753,12824,12887,12952,13016,13077,13138,13190,13263,13337,13406,13481,13555,13629,13770,13840,13893,13971,14061,14149,14245,14335,14917,15006,15253,15534,15786,16071,16464,16941,17163,17385,17661,17888,18118,18348,18578,18808,19035,19454,19680,20105,20335,20763,20982,21265,21473,21604,21831,22257,22482,22909,23130,23555,23675,23951,24252,24576,24867,25181,25318,25449,25554,25796,25963,26167,26375,26646,26758,26870,26975,27092,27306,27452,27592,27678,28026,28114,28360,28778,29027,29109,29207,29864,29964,30216,30640,30895,30989,31078,31315,33339,33581,33683,33936,36092,46773,48289,58984,60512,62269,62895,63315,64576,65841,66097,66333,66880,67374,67979,68177,68757,70125,70500,70618,71156,71313,71509,71782,72038,72208,72349,72413,72778,73145,73821,74085,74423,74776,74870,75056,75362,75624,75749,75876,76115,76326,76445,76638,76815,77270,77451,77573,77832,77945,78132,78234,78341,78470,78745,79253,79749,80626,80920,81490,81639,82371,82543,82627,82963,83055,83333,88564,93935,93997,94575,95159,95250,95363,95592,95752,95904,96075,96241,96410,96577,96740,96983,97153,97326,97497,97771,97970,98175,98505,98589,98685,98781,98879,98979,99081,99183,99285,99387,99489,99589,99685,99797,99926,100049,100180,100311,100409,100523,100617,100757,100891,100987,101099,101199,101315,101411,101523,101623,101763,101899,102063,102193,102351,102501,102642,102786,102921,103033,103183,103311,103439,103575,103707,103837,103967,104079,104219,104365,104509,104647,104713,104803,104879,104983,105073,105175,105283,105391,105491,105571,105663,105761,105871,105923,106001,106107,106199,106303,106413,106535,106698,106855,106935,107035,107125,107235,107325,107566,107660,107766,107858,107958,108070,108184,108300,108416,108510,108624,108736,108838,108958,109080,109162,109266,109386,109512,109610,109704,109792,109904,110020,110142,110254,110429,110545,110631,110723,110835,110959,111026,111152,111220,111348,111492,111620,111689,111784,111899,112012,112111,112220,112331,112442,112543,112648,112748,112878,112969,113092,113186,113298,113384,113488,113584,113672,113790,113894,113998,114124,114212,114320,114420,114510,114620,114704,114806,114890,114944,115008,115114,115200,115310,115394,115514,118130,118248,118363,118443,118804,119037,119554,119632,120976,122337,122725,125568,135621,135756,137126,138483,139055,139806,140068,140268,140647,144925,145531,145760,145911,147209,147521,150547,151291,153422,153762,155073",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,220,221,225,229,233,238,244,251,255,259,264,268,272,276,280,284,288,294,298,304,308,314,318,323,327,330,334,340,344,350,354,360,363,367,371,375,379,383,384,385,386,389,392,395,398,402,403,404,405,406,409,411,413,415,420,421,425,431,435,436,438,450,451,455,461,465,466,467,471,498,502,503,507,535,707,733,904,930,961,969,975,991,1013,1018,1023,1033,1042,1051,1055,1062,1081,1088,1089,1098,1101,1104,1108,1112,1116,1119,1120,1125,1130,1140,1145,1152,1158,1159,1162,1166,1171,1173,1175,1178,1181,1183,1187,1190,1197,1200,1203,1207,1209,1213,1215,1217,1219,1223,1231,1239,1251,1257,1266,1269,1280,1283,1284,1289,1290,1295,1364,1434,1435,1445,1454,1455,1457,1461,1464,1467,1470,1473,1476,1479,1482,1486,1489,1492,1495,1499,1502,1506,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1532,1534,1535,1536,1537,1538,1539,1540,1541,1543,1544,1546,1547,1549,1551,1552,1554,1555,1556,1557,1558,1559,1561,1562,1563,1564,1565,1566,1568,1570,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1586,1587,1588,1589,1590,1591,1592,1594,1598,1602,1603,1604,1605,1606,1607,1611,1612,1613,1614,1616,1618,1620,1622,1624,1625,1626,1627,1629,1631,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1647,1648,1649,1650,1652,1654,1655,1657,1658,1660,1662,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1677,1678,1679,1680,1682,1683,1684,1685,1686,1688,1690,1692,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1784,1787,1790,1793,1807,1813,1823,1826,1855,1882,1891,1955,2318,2322,2350,2378,2396,2420,2426,2432,2453,2577,2597,2603,2607,2613,2660,2726,2746,2801,2813,2839,2846",
+ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24",
+ "endOffsets": "155,200,249,290,345,407,471,541,602,677,753,830,908,993,1075,1151,1227,1304,1382,1488,1594,1673,1753,1810,1868,1942,2017,2082,2148,2208,2269,2341,2414,2481,2549,2608,2667,2726,2785,2844,2898,2952,3005,3059,3113,3167,3221,3295,3374,3447,3521,3592,3664,3736,3809,3866,3924,3997,4071,4145,4220,4292,4365,4435,4506,4566,4627,4696,4765,4835,4909,4985,5049,5126,5202,5279,5344,5413,5490,5565,5634,5702,5779,5845,5906,6003,6068,6137,6236,6307,6366,6424,6481,6540,6604,6675,6747,6819,6891,6963,7030,7098,7166,7225,7288,7352,7442,7533,7593,7659,7726,7792,7862,7926,7979,8046,8107,8174,8287,8345,8408,8473,8538,8613,8686,8758,8802,8849,8895,8944,9005,9066,9127,9189,9253,9317,9381,9446,9509,9569,9630,9696,9755,9815,9877,9948,10008,10076,10162,10249,10339,10426,10514,10596,10679,10769,10860,10912,10970,11015,11081,11145,11202,11259,11313,11370,11418,11467,11518,11552,11599,11648,11694,11726,11790,11852,11912,11969,12043,12113,12191,12245,12315,12400,12448,12494,12555,12618,12684,12748,12819,12882,12947,13011,13072,13133,13185,13258,13332,13401,13476,13550,13624,13765,13835,13888,13966,14056,14144,14240,14330,14912,15001,15248,15529,15781,16066,16459,16936,17158,17380,17656,17883,18113,18343,18573,18803,19030,19449,19675,20100,20330,20758,20977,21260,21468,21599,21826,22252,22477,22904,23125,23550,23670,23946,24247,24571,24862,25176,25313,25444,25549,25791,25958,26162,26370,26641,26753,26865,26970,27087,27301,27447,27587,27673,28021,28109,28355,28773,29022,29104,29202,29859,29959,30211,30635,30890,30984,31073,31310,33334,33576,33678,33931,36087,46768,48284,58979,60507,62264,62890,63310,64571,65836,66092,66328,66875,67369,67974,68172,68752,70120,70495,70613,71151,71308,71504,71777,72033,72203,72344,72408,72773,73140,73816,74080,74418,74771,74865,75051,75357,75619,75744,75871,76110,76321,76440,76633,76810,77265,77446,77568,77827,77940,78127,78229,78336,78465,78740,79248,79744,80621,80915,81485,81634,82366,82538,82622,82958,83050,83328,88559,93930,93992,94570,95154,95245,95358,95587,95747,95899,96070,96236,96405,96572,96735,96978,97148,97321,97492,97766,97965,98170,98500,98584,98680,98776,98874,98974,99076,99178,99280,99382,99484,99584,99680,99792,99921,100044,100175,100306,100404,100518,100612,100752,100886,100982,101094,101194,101310,101406,101518,101618,101758,101894,102058,102188,102346,102496,102637,102781,102916,103028,103178,103306,103434,103570,103702,103832,103962,104074,104214,104360,104504,104642,104708,104798,104874,104978,105068,105170,105278,105386,105486,105566,105658,105756,105866,105918,105996,106102,106194,106298,106408,106530,106693,106850,106930,107030,107120,107230,107320,107561,107655,107761,107853,107953,108065,108179,108295,108411,108505,108619,108731,108833,108953,109075,109157,109261,109381,109507,109605,109699,109787,109899,110015,110137,110249,110424,110540,110626,110718,110830,110954,111021,111147,111215,111343,111487,111615,111684,111779,111894,112007,112106,112215,112326,112437,112538,112643,112743,112873,112964,113087,113181,113293,113379,113483,113579,113667,113785,113889,113993,114119,114207,114315,114415,114505,114615,114699,114801,114885,114939,115003,115109,115195,115305,115389,115509,118125,118243,118358,118438,118799,119032,119549,119627,120971,122332,122720,125563,135616,135751,137121,138478,139050,139801,140063,140263,140642,144920,145526,145755,145906,146121,147516,150542,151286,153417,153757,155068,155271"
+ },
+ "to": {
+ "startLines": "157,245,248,546,589,590,595,596,597,598,599,600,601,604,605,606,607,608,609,610,611,612,613,618,619,673,674,675,676,677,678,679,680,681,682,855,856,857,858,859,860,861,862,863,864,865,866,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1090,1091,1095,1096,1097,1098,1099,1100,1101,1748,1749,1750,1751,1752,1753,1754,1755,1794,1795,1796,1797,1803,1829,1830,1839,1869,1876,1877,1880,1881,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2254,2390,2391,2392,2393,2394,2440,2448,2449,2453,2457,2468,2473,2502,2509,2513,2517,2522,2526,2530,2534,2538,2542,2546,2552,2556,2562,2566,2572,2576,2581,2585,2588,2592,2598,2602,2608,2612,2618,2621,2625,2629,2633,2637,2641,2642,2643,2644,2647,2650,2653,2656,2660,2661,2662,2663,2704,2707,2709,2711,2713,2718,2719,2723,2729,2733,2734,2736,2748,2749,2753,2759,2763,2840,2841,2845,2872,2876,2877,2881,4678,4850,4876,5047,5073,5104,5112,5118,5134,5156,5161,5166,5176,5185,5194,5198,5205,5224,5231,5232,5241,5244,5247,5251,5255,5259,5262,5263,5268,5273,5283,5288,5295,5301,5302,5305,5309,5314,5316,5318,5321,5324,5326,5330,5333,5340,5343,5346,5350,5352,5356,5358,5360,5362,5366,5374,5382,5394,5400,5409,5412,5423,5426,5427,5432,5433,5930,5999,6073,6074,6084,6093,6266,6268,6272,6275,6278,6281,6284,6287,6290,6293,6297,6300,6303,6306,6310,6313,6317,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6487,6489,6490,6491,6492,6493,6494,6495,6496,6498,6499,6501,6502,6504,6506,6507,6509,6510,6511,6512,6513,6514,6516,6517,6518,6519,6520,6805,6807,6809,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6825,6826,6827,6828,6829,6830,6831,6833,6837,6999,7000,7001,7002,7003,7004,7008,7009,7010,7551,7553,7555,7557,7559,7561,7562,7563,7564,7566,7568,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7584,7585,7586,7587,7589,7591,7592,7594,7595,7597,7599,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7614,7615,7616,7617,7619,7620,7621,7622,7623,7625,7627,7629,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,9672,9747,9750,9753,9756,9770,9786,9902,9905,9934,9961,9970,10034,10642,10700,11022,11165,11407,11431,11469,11839,11860,11984,12197,12203,12359,12638,12704,12909,13224,13308,13320,13349",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "7797,12251,12404,28270,30026,30081,30354,30418,30488,30549,30624,30700,30777,31015,31100,31182,31258,31334,31411,31489,31595,31701,31780,32109,32166,35915,35989,36064,36129,36195,36255,36316,36388,36461,36528,49742,49801,49860,49919,49978,50037,50091,50145,50198,50252,50306,50360,54940,55014,55093,55166,55240,55311,55383,55455,55528,55585,55643,55716,55790,55864,55939,56011,56084,56154,56225,56285,56346,56415,56484,56554,56628,56704,56768,56845,56921,56998,57063,57132,57209,57284,57353,57421,57498,57564,57625,57722,57787,57856,57955,58026,58085,58143,58200,58259,58323,58394,58466,58538,58610,58682,58749,58817,58885,58944,59007,59071,59161,59252,59312,59378,59445,59511,59581,59645,59698,59765,59826,59893,60006,60064,60127,60192,60257,60332,60405,60477,60521,60568,60614,60663,60724,60785,60846,60908,60972,61036,61100,61165,61228,61288,61349,61415,61474,61534,61596,61667,61727,65868,65954,66204,66294,66381,66469,66551,66634,66724,117548,117600,117658,117703,117769,117833,117890,117947,120449,120506,120554,120603,120899,122284,122331,122764,124323,124674,124738,124928,124988,131287,131361,131431,131509,131563,131633,131718,131766,131812,131873,131936,132002,132066,132137,132200,132265,132329,132390,132451,132503,132576,132650,132719,132794,132868,132942,133083,162052,172898,172976,173066,173154,173250,176115,176697,176786,177033,177314,177980,178265,180074,180551,180773,180995,181271,181498,181728,181958,182188,182418,182645,183064,183290,183715,183945,184373,184592,184875,185083,185214,185441,185867,186092,186519,186740,187165,187285,187561,187862,188186,188477,188791,188928,189059,189164,189406,189573,189777,189985,190256,190368,190480,190585,192678,192892,193038,193178,193264,193612,193700,193946,194364,194613,194695,194793,195450,195550,195802,196226,196481,202371,202460,202697,204721,204963,205065,205318,340398,351079,352595,363290,364818,366575,367201,367621,368882,370147,370403,370639,371186,371680,372285,372483,373063,374431,374806,374924,375462,375619,375815,376088,376344,376514,376655,376719,377084,377451,378127,378391,378729,379082,379176,379362,379668,379930,380055,380182,380421,380632,380751,380944,381121,381576,381757,381879,382138,382251,382438,382540,382647,382776,383051,383559,384055,384932,385226,385796,385945,386677,386849,386933,387269,387361,419537,424768,430483,430545,431123,431707,440764,440877,441106,441266,441418,441589,441755,441924,442091,442254,442497,442667,442840,443011,443285,443484,443689,453055,453139,453235,453331,453429,453529,453631,453733,453835,453937,454039,454139,454235,454347,454476,454599,454730,454861,454959,455073,455167,455307,455441,455537,455649,455749,455865,455961,456073,456173,456313,456449,456613,456743,456901,457051,457192,457336,457471,457583,457733,457861,457989,458125,458257,458387,458517,458629,476287,476433,476577,476715,476781,476871,476947,477051,477141,477243,477351,477459,477559,477639,477731,477829,477939,477991,478069,478175,478267,478371,478481,478603,478766,491380,491460,491560,491650,491760,491850,492091,492185,492291,532170,532270,532382,532496,532612,532728,532822,532936,533048,533150,533270,533392,533474,533578,533698,533824,533922,534016,534104,534216,534332,534454,534566,534741,534857,534943,535035,535147,535271,535338,535464,535532,535660,535804,535932,536001,536096,536211,536324,536423,536532,536643,536754,536855,536960,537060,537190,537281,537404,537498,537610,537696,537800,537896,537984,538102,538206,538310,538436,538524,538632,538732,538822,538932,539016,539118,539202,539256,539320,539426,539512,539622,539706,671457,674073,674191,674306,674386,674747,675306,679884,679962,681306,682667,683055,685898,704951,706855,717649,737239,751358,752109,753623,767542,767921,772199,780876,781105,786230,796164,798449,806079,818224,822635,822975,824396",
+ "endLines": "157,245,248,546,589,590,595,596,597,598,599,600,601,604,605,606,607,608,609,610,611,612,613,618,619,673,674,675,676,677,678,679,680,681,682,855,856,857,858,859,860,861,862,863,864,865,866,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1090,1091,1095,1096,1097,1098,1099,1100,1101,1748,1749,1750,1751,1752,1753,1754,1755,1794,1795,1796,1797,1803,1829,1830,1839,1869,1876,1877,1880,1881,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2254,2390,2391,2392,2393,2394,2447,2448,2452,2456,2460,2472,2478,2508,2512,2516,2521,2525,2529,2533,2537,2541,2545,2551,2555,2561,2565,2571,2575,2580,2584,2587,2591,2597,2601,2607,2611,2617,2620,2624,2628,2632,2636,2640,2641,2642,2643,2646,2649,2652,2655,2659,2660,2661,2662,2663,2706,2708,2710,2712,2717,2718,2722,2728,2732,2733,2735,2747,2748,2752,2758,2762,2763,2840,2844,2871,2875,2876,2880,2908,4849,4875,5046,5072,5103,5111,5117,5133,5155,5160,5165,5175,5184,5193,5197,5204,5223,5230,5231,5240,5243,5246,5250,5254,5258,5261,5262,5267,5272,5282,5287,5294,5300,5301,5304,5308,5313,5315,5317,5320,5323,5325,5329,5332,5339,5342,5345,5349,5351,5355,5357,5359,5361,5365,5373,5381,5393,5399,5408,5411,5422,5425,5426,5431,5432,5437,5998,6068,6073,6083,6092,6093,6267,6271,6274,6277,6280,6283,6286,6289,6292,6296,6299,6302,6305,6309,6312,6316,6320,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6486,6488,6489,6490,6491,6492,6493,6494,6495,6497,6498,6500,6501,6503,6505,6506,6508,6509,6510,6511,6512,6513,6515,6516,6517,6518,6519,6520,6806,6808,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6824,6825,6826,6827,6828,6829,6830,6832,6836,6840,6999,7000,7001,7002,7003,7007,7008,7009,7010,7552,7554,7556,7558,7560,7561,7562,7563,7565,7567,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7583,7584,7585,7586,7588,7590,7591,7593,7594,7596,7598,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7613,7614,7615,7616,7618,7619,7620,7621,7622,7624,7626,7628,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,9746,9749,9752,9755,9769,9775,9795,9904,9933,9960,9969,10033,10396,10645,10727,11049,11182,11430,11436,11474,11859,11983,12003,12202,12206,12364,12649,12769,12928,13278,13319,13345,13355",
+ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24",
+ "endOffsets": "7847,12291,12448,28306,30076,30138,30413,30483,30544,30619,30695,30772,30850,31095,31177,31253,31329,31406,31484,31590,31696,31775,31855,32161,32219,35984,36059,36124,36190,36250,36311,36383,36456,36523,36591,49796,49855,49914,49973,50032,50086,50140,50193,50247,50301,50355,50409,55009,55088,55161,55235,55306,55378,55450,55523,55580,55638,55711,55785,55859,55934,56006,56079,56149,56220,56280,56341,56410,56479,56549,56623,56699,56763,56840,56916,56993,57058,57127,57204,57279,57348,57416,57493,57559,57620,57717,57782,57851,57950,58021,58080,58138,58195,58254,58318,58389,58461,58533,58605,58677,58744,58812,58880,58939,59002,59066,59156,59247,59307,59373,59440,59506,59576,59640,59693,59760,59821,59888,60001,60059,60122,60187,60252,60327,60400,60472,60516,60563,60609,60658,60719,60780,60841,60903,60967,61031,61095,61160,61223,61283,61344,61410,61469,61529,61591,61662,61722,61790,65949,66036,66289,66376,66464,66546,66629,66719,66810,117595,117653,117698,117764,117828,117885,117942,117996,120501,120549,120598,120649,120928,122326,122375,122805,124350,124733,124795,124983,125040,131356,131426,131504,131558,131628,131713,131761,131807,131868,131931,131997,132061,132132,132195,132260,132324,132385,132446,132498,132571,132645,132714,132789,132863,132937,133078,133148,162100,172971,173061,173149,173245,173335,176692,176781,177028,177309,177561,178260,178653,180546,180768,180990,181266,181493,181723,181953,182183,182413,182640,183059,183285,183710,183940,184368,184587,184870,185078,185209,185436,185862,186087,186514,186735,187160,187280,187556,187857,188181,188472,188786,188923,189054,189159,189401,189568,189772,189980,190251,190363,190475,190580,190697,192887,193033,193173,193259,193607,193695,193941,194359,194608,194690,194788,195445,195545,195797,196221,196476,196570,202455,202692,204716,204958,205060,205313,207469,351074,352590,363285,364813,366570,367196,367616,368877,370142,370398,370634,371181,371675,372280,372478,373058,374426,374801,374919,375457,375614,375810,376083,376339,376509,376650,376714,377079,377446,378122,378386,378724,379077,379171,379357,379663,379925,380050,380177,380416,380627,380746,380939,381116,381571,381752,381874,382133,382246,382433,382535,382642,382771,383046,383554,384050,384927,385221,385791,385940,386672,386844,386928,387264,387356,387634,424763,430134,430540,431118,431702,431793,440872,441101,441261,441413,441584,441750,441919,442086,442249,442492,442662,442835,443006,443280,443479,443684,444014,453134,453230,453326,453424,453524,453626,453728,453830,453932,454034,454134,454230,454342,454471,454594,454725,454856,454954,455068,455162,455302,455436,455532,455644,455744,455860,455956,456068,456168,456308,456444,456608,456738,456896,457046,457187,457331,457466,457578,457728,457856,457984,458120,458252,458382,458512,458624,458764,476428,476572,476710,476776,476866,476942,477046,477136,477238,477346,477454,477554,477634,477726,477824,477934,477986,478064,478170,478262,478366,478476,478598,478761,478918,491455,491555,491645,491755,491845,492086,492180,492286,492378,532265,532377,532491,532607,532723,532817,532931,533043,533145,533265,533387,533469,533573,533693,533819,533917,534011,534099,534211,534327,534449,534561,534736,534852,534938,535030,535142,535266,535333,535459,535527,535655,535799,535927,535996,536091,536206,536319,536418,536527,536638,536749,536850,536955,537055,537185,537276,537399,537493,537605,537691,537795,537891,537979,538097,538201,538305,538431,538519,538627,538727,538817,538927,539011,539113,539197,539251,539315,539421,539507,539617,539701,539821,674068,674186,674301,674381,674742,674975,675818,679957,681301,682662,683050,685893,695946,705081,708220,719001,737806,752104,752366,753818,767916,772194,772800,781100,781251,786440,796471,801470,806818,820350,822970,824281,824594"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values/bools.xml",
+ "from": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,95",
+ "endColumns": "39,35",
+ "endOffsets": "90,126"
+ },
+ "to": {
+ "startLines": "591,593",
+ "startColumns": "4,4",
+ "startOffsets": "30143,30256",
+ "endColumns": "39,35",
+ "endOffsets": "30178,30287"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/eec92cb44c58adbd0a1c3325c5763359/transformed/jetified-window-1.0.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,7,8,9,10,11,19,23,34,51",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,234,294,346,391,451,869,1066,1790,2904",
+ "endLines": "6,7,8,9,10,18,22,33,50,58",
+ "endColumns": "11,59,51,44,59,24,24,24,24,24",
+ "endOffsets": "229,289,341,386,446,864,1061,1785,2899,3292"
+ },
+ "to": {
+ "startLines": "496,501,502,503,1798,9776,9782,12650,12658,12670",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "25353,25532,25592,25644,120654,674980,675175,796476,796758,797198",
+ "endLines": "500,501,502,503,1798,9781,9785,12657,12669,12677",
+ "endColumns": "11,59,51,44,59,24,24,24,24,24",
+ "endOffsets": "25527,25587,25639,25684,120709,675170,675301,796753,797193,797502"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values/arrays.xml",
+ "from": {
+ "startLines": "30,36,8,13,19,24,2",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "1275,1613,359,655,851,1112,102",
+ "endLines": "35,41,12,17,23,28,6",
+ "endColumns": "19,19,19,19,19,19,19",
+ "endOffsets": "1608,1807,650,845,1107,1269,353"
+ },
+ "to": {
+ "startLines": "2,8,14,19,24,29,34",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "150,488,687,981,1174,1435,1597",
+ "endLines": "7,13,18,23,28,33,38",
+ "endColumns": "19,19,19,19,19,19,19",
+ "endOffsets": "483,682,976,1169,1430,1592,1848"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values/styles.xml",
+ "from": {
+ "startLines": "2,15,19,24,39,49,44,32,53",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "64,866,1014,1345,2105,2609,2390,1718,2768",
+ "endLines": "14,18,21,31,43,52,48,38,59",
+ "endColumns": "12,12,12,12,12,12,12,12,12",
+ "endOffsets": "861,1009,1229,1713,2385,2763,2604,2100,3143"
+ },
+ "to": {
+ "startLines": "2420,2433,2437,9636,9644,9649,9653,9658,9665",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "174997,175747,175895,669654,670027,670312,670471,670690,671077",
+ "endLines": "2432,2436,2439,9643,9648,9652,9657,9664,9671",
+ "endColumns": "12,12,12,12,12,12,12,12,12",
+ "endOffsets": "175742,175890,176110,670022,670307,670466,670685,671072,671452"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1350,1353,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1414,1415,1416,1417,1418,1422,1426,1430,1434,1435,1439,1447,1454,1462,1465,1475,1484,1493,1502,1503,1504,1505,1511,1512,1513,1514,1515,1516,1522,1523,1524,1525,1526,1531,1532,1536,1537,1543,1547,1548,1549,1550,1560,1561,1562,1566,1567,1573,1577,1578,1581,1582,1586,1587,1590,1591,1592,1593,1856,1863,2123,2129,2392,2399,2659,2665,2728,2810,2862,2944,3006,3088,3152,3204,3286,3294,3300,3311,3315,3319,3332,3347,3363,3370,3376,3393,3406,3426,3443,3452,3457,3464,3484,3497,3514,3520,3526,3533,3537,3543,3557,3560,3570,3571,3572,3620,3624,3628,3632,3633,3634,3637,3653,3660,3674,3719,3720,3726,3730,3734,3739,3746,3752,3753,3756,3760,3765,3778,3782,3787,3792,3797,3800,3803,3806,3810,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3840,3844,3848,3852,3856,3860,3864,3865,3866,3867,3868,3869,3870,3871,3875,3879,3880,3884,3885,3888,3892,3895,3898,3901,3905,3908,3911,3915,3919,3923,3927,3930,3931,3932,3933,3936,3940,3943,3946,3949,3952,3955,3958,3962,3965,3966,3969,3972,3973,3976,3977,3978,3982,3983,3988,3995,4002,4009,4016,4023,4030,4037,4044,4051,4060,4069,4078,4085,4094,4103,4106,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4125,4130,4135,4138,4139,4140,4141,4142,4150,4158,4159,4167,4171,4179,4187,4195,4203,4211,4212,4220,4228,4229,4232,4235,4237,4242,4244,4249,4253,4257,4258,4259,4260,4264,4268,4269,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4292,4296,4297,4301,4302,4303,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4332,4333,4334,4340,4341,4345,4347,4348,4353,4354,4355,4356,4357,4358,4362,4363,4364,4370,4371,4375,4377,4381,4385,4389,4393,4394,4395,4396,4399,4402,4405,4408,4411,4416,4420,4423,4424,4429,4433,4438,4444,4450,4455,4459,4464,4468,4472,4513,4514,4515,4516,4517,4521,4522,4523,4524,4528,4532,4536,4540,4544,4548,4552,4556,4562,4563,4604,4618,4623,4649,4656,4659,4670,4675,4678,4681,4736,4742,4743,4746,4749,4752,4755,4758,4761,4764,4768,4771,4772,4773,4781,4789,4792,4797,4802,4807,4812,4816,4820,4821,4829,4830,4831,4832,4833,4841,4846,4851,4852,4853,4854,4879,4885,4890,4893,4897,4900,4904,4914,4917,4922,4925,4929,4933,4941,4955,4968,4972,4987,4998,5001,5012,5017,5021,5056,5057,5058,5070,5078,5086,5094,5102,5122,5125,5152,5157,5177,5180,5183,5190,5203,5212,5215,5235,5245,5249,5253,5266,5270,5274,5278,5284,5288,5305,5313,5317,5321,5325,5328,5332,5336,5340,5350,5357,5364,5368,5394,5404,5429,5438,5458,5468,5472,5482,5507,5517,5520,5524,5525,5526,5527,5531,5537,5543,5544,5557,5558,5559,5562,5565,5568,5571,5574,5577,5580,5583,5586,5589,5592,5595,5598,5601,5604,5607,5610,5613,5616,5619,5622,5623,5628,5629,5642,5652,5656,5661,5666,5670,5673,5677,5681,5684,5688,5691,5695,5700,5705,5708,5715,5719,5723,5732,5737,5742,5743,5747,5750,5754,5767,5772,5780,5784,5788,5805,5809,5814,5832,5839,5843,5873,5876,5879,5882,5885,5888,5891,5910,5916,5924,5931,5943,5951,5956,5961,5965,5976,5980,5988,5991,5996,5997,5998,5999,6003,6007,6011,6015,6050,6053,6057,6061,6095,6098,6102,6106,6115,6121,6124,6134,6138,6139,6146,6150,6157,6158,6159,6162,6167,6172,6173,6177,6192,6211,6215,6216,6228,6238,6239,6251,6256,6280,6283,6289,6292,6301,6309,6313,6316,6319,6322,6326,6329,6346,6350,6353,6368,6371,6379,6384,6391,6396,6397,6402,6403,6409,6415,6421,6453,6464,6481,6488,6492,6495,6508,6517,6521,6526,6530,6534,6538,6542,6546,6550,6554,6559,6562,6574,6579,6588,6591,6598,6599,6603,6612,6618,6622,6623,6627,6648,6654,6658,6662,6663,6681,6682,6683,6684,6685,6690,6693,6694,6700,6701,6713,6725,6732,6733,6738,6743,6744,6748,6762,6767,6773,6779,6785,6790,6796,6802,6803,6809,6824,6829,6838,6847,6850,6864,6869,6880,6884,6893,6902,6903,6910,6918,6935,6945,6992,7059,7105,7162,7174,7232,7241,7350,7370,7391,7397,7405,7511,7525,7548,7554,7598,7602,7608,7614,7625,7657,7664,7672,7687,7743,7754,7767,7779,7817,7864,7870,7882,7888,7894,7946,7951,7956,7963,7998,8010,8056,8085,8148,8153,8159,8162,8166,8220,8258,8276,8294,8351,8359,8383,8387,8395,8488,8492,8771,8779,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "150,206,255,310,366,426,487,552,607,657,707,760,818,866,935,983,1054,1126,1198,1271,1338,1387,1441,1478,1529,1589,1636,1692,1741,1799,1853,1914,1970,2021,2081,2137,2200,2249,2305,2361,2411,2470,2525,2587,2634,2688,2744,2796,2851,2905,2959,3013,3062,3120,3174,3231,3287,3334,3387,3443,3503,3566,3625,3687,3737,3791,3845,3893,3950,4003,4059,4113,4169,4232,4294,4350,4410,4463,4524,4603,4684,4756,4835,4915,4991,5069,5138,5214,5291,5362,5435,5511,5589,5658,5734,5811,5875,5946,6018,6069,6122,6177,6244,6297,6349,6399,6457,6522,6570,6621,6688,6754,6812,6881,6939,7008,7078,7151,7225,7293,7360,7430,7496,7569,7629,7705,7765,7825,7900,7968,8034,8102,8162,8221,8278,8344,8406,8463,8531,8604,8674,8736,8797,8865,8927,8997,9066,9122,9181,9243,9305,9372,9429,9490,9551,9612,9673,9729,9785,9841,9897,9955,10013,10071,10129,10186,10243,10300,10357,10416,10475,10533,10616,10699,10772,10826,10895,10951,11032,11113,11184,11313,11366,11424,11482,11540,11586,11646,11700,11770,11840,11905,11971,12036,12104,12173,12241,12371,12424,12483,12541,12593,12643,12695,12741,12791,12847,12894,12952,13010,13072,13135,13197,13256,13316,13381,13447,13512,13574,13636,13698,13760,13822,13884,13950,14017,14083,14146,14210,14273,14341,14402,14464,14526,14589,14653,14716,14780,14858,14917,14983,15063,15124,15177,15235,15286,15331,15395,15454,15516,15590,15661,15727,15801,15870,15941,16014,16085,16153,16226,16302,16372,16450,16518,16584,16645,16714,16778,16844,16912,16978,17041,17109,17180,17245,17318,17381,17462,17526,17592,17662,17732,17802,17872,17939,17996,18054,18113,18173,18232,18291,18350,18409,18468,18527,18586,18645,18704,18763,18823,18884,18946,19007,19068,19129,19190,19251,19312,19372,19433,19494,19554,19615,19676,19737,19798,19859,19920,19981,20042,20103,20164,20225,20293,20362,20432,20501,20570,20639,20708,20777,20846,20915,20984,21053,21122,21182,21243,21305,21366,21427,21488,21549,21610,21671,21732,21793,21854,21915,21977,22040,22104,22167,22230,22293,22356,22419,22482,22545,22608,22671,22734,22795,22857,22920,22982,23044,23106,23168,23230,23292,23354,23416,23478,23540,23597,23683,23763,23853,23948,24040,24132,24222,24305,24398,24485,24582,24673,24774,24861,24964,25053,25152,25244,25344,25428,25522,25610,25708,25791,25882,25976,26075,26177,26275,26375,26462,26562,26648,26744,26832,26913,27004,27100,27193,27286,27377,27462,27556,27645,27743,27836,27938,28026,28130,28221,28321,28414,28515,28600,28695,28784,28883,28968,29060,29155,29255,29358,29457,29560,29649,29750,29837,29934,30022,30118,30210,30310,30400,30498,30583,30672,30761,30854,30941,31032,31098,31174,31243,31322,31395,31475,31555,31632,31700,31778,31854,31925,32006,32079,32162,32237,32322,32395,32476,32557,32631,32715,32785,32863,32933,33013,33091,33163,33245,33315,33392,33472,33557,33645,33729,33816,33890,33968,34046,34117,34198,34289,34372,34468,34566,34673,34738,34804,34857,34933,34999,35086,35162,35238,35303,35358,35412,35491,35569,35642,35707,35770,35836,35907,35978,36048,36110,36179,36245,36305,36372,36439,36495,36546,36599,36651,36705,36776,36839,36898,36960,37019,37092,37159,37229,37289,37352,37427,37499,37595,37666,37722,37793,37850,37907,37973,38037,38108,38165,38218,38281,38333,38391,38458,38527,38593,38652,38735,38794,38851,38918,38988,39062,39124,39193,39263,39362,39459,39558,39644,39730,39811,39886,39975,40066,40150,40209,40255,40321,40378,40445,40502,40584,40649,40715,40838,40922,41043,41108,41170,41268,41342,41425,41514,41578,41657,41731,41793,41889,41954,42013,42069,42125,42185,42292,42339,42399,42460,42524,42585,42645,42703,42746,42795,42847,42898,42950,42999,43048,43113,43179,43239,43300,43356,43415,43464,43512,43570,43627,43729,43786,43861,43909,43960,44022,44087,44139,44213,44276,44339,44407,44457,44519,44579,44636,44696,44745,44813,44919,45021,45090,45161,45217,45266,45366,45437,45547,45636,45727,45809,45907,45963,46064,46174,46273,46336,46442,46519,46631,46758,46870,46997,47067,47181,47312,47409,47477,47595,47698,47816,47877,47951,48018,48123,48245,48319,48386,48496,48595,48668,48765,48887,49005,49123,49184,49306,49423,49491,49597,49699,49779,49850,49946,50013,50087,50161,50247,50335,50425,50503,50580,50680,50751,50872,50993,51057,51182,51256,51380,51504,51571,51680,51808,51920,51999,52077,52178,52249,52371,52493,52558,52684,52796,52902,52970,53069,53173,53236,53302,53386,53499,53612,53730,53808,53880,54016,54152,54237,54377,54515,54653,54795,54877,54986,55097,55225,55353,55485,55615,55745,55879,55941,56037,56104,56221,56342,56439,56521,56608,56695,56826,56957,57092,57169,57246,57357,57471,57545,57654,57766,57868,57964,58068,58135,58229,58301,58411,58517,58590,58681,58783,58886,58981,59088,59193,59315,59437,59563,59622,59680,59804,59928,60056,60174,60292,60414,60500,60597,60731,60865,60945,61083,61215,61347,61483,61558,61634,61737,61811,61924,62005,62062,62123,62182,62242,62300,62361,62419,62469,62518,62585,62644,62703,62752,62823,62907,62977,63048,63128,63197,63260,63328,63394,63462,63527,63593,63670,63748,63854,63960,64056,64185,64274,64401,64467,64536,64622,64688,64771,64869,64965,65061,65159,65268,65363,65452,65514,65574,65639,65696,65777,65831,65888,65985,66095,66156,66271,66392,66487,66579,66672,66774,66830,66889,66938,67030,67079,67133,67187,67241,67295,67349,67404,67514,67624,67732,67842,67952,68062,68172,68280,68386,68490,68594,68698,68793,68888,68981,69074,69178,69284,69388,69492,69585,69678,69771,69864,69972,70078,70184,70290,70387,70482,70577,70672,70778,70884,70990,71096,71194,71290,71386,71484,71549,71653,71711,71775,71836,71898,71958,72023,72085,72153,72211,72274,72337,72404,72479,72552,72618,72670,72723,72775,72832,72916,73011,73096,73177,73257,73334,73413,73490,73564,73638,73709,73789,73861,73936,74001,74062,74122,74197,74271,74344,74414,74486,74556,74629,74693,74763,74809,74878,74930,75015,75098,75155,75221,75288,75354,75435,75510,75566,75619,75680,75738,75788,75837,75886,75935,75997,76049,76094,76175,76226,76280,76333,76387,76438,76487,76553,76604,76665,76726,76788,76838,76879,76956,77015,77074,77133,77194,77250,77306,77373,77434,77499,77554,77619,77688,77756,77834,77903,77963,78034,78108,78173,78245,78315,78382,78466,78535,78602,78672,78735,78802,78870,78953,79032,79122,79199,79267,79334,79412,79469,79526,79594,79660,79716,79776,79835,79889,79939,79989,80037,80099,80150,80223,80303,80383,80447,80514,80585,80643,80704,80770,80829,80896,80956,81016,81079,81147,81208,81275,81353,81423,81472,81529,81598,81659,81747,81835,81923,82011,82098,82185,82272,82359,82417,82491,82561,82617,82688,82753,82815,82890,82963,83053,83119,83185,83246,83310,83372,83430,83501,83584,83643,83714,83780,83845,83906,83965,84036,84102,84167,84250,84326,84401,84482,84542,84611,84681,84750,84805,84861,84917,84978,85036,85092,85146,85201,85263,85320,85414,85483,85584,85635,85705,85768,85824,85882,85941,85995,86081,86165,86235,86304,86374,86489,86610,86677,86744,86819,86886,86945,86999,87053,87107,87160,87212,87286,87423,87563,87612,87662,87712,87760,87816,87874,87936,87991,88049,88120,88184,88243,88305,88371,88437,88480,88524,88569,88612,88663,88710,88755,88806,88857,88908,88959,89007,89073,89135,89198,89270,89327,89381,89436,89494,89549,89608,89664,89733,89802,89871,89941,90004,90067,90130,90193,90258,90323,90388,90453,90516,90580,90644,90708,90759,90837,90915,90986,91058,91131,91203,91269,91335,91403,91471,91537,91604,91678,91741,91798,91858,91923,91990,92055,92112,92173,92231,92335,92445,92554,92658,92736,92801,92868,92934,93004,93051,93103,93153,93210,93530,93680,93811,93995,94173,94411,94600,94769,94867,94982,95067,95146,95306,95371,95460,95617,95774,95927,96081,96140,96327,96423,96513,96609,96699,96865,96988,97111,97281,97387,97502,97617,97719,97825,97942,98057,98139,98312,98480,98628,98787,98942,99115,99232,99349,99517,99629,99743,99915,100091,100249,100382,100494,100640,100792,100924,101067,101189,101367,101503,101599,101735,101830,101997,102090,102182,102369,102525,102703,102867,103049,103366,103548,103730,103920,104152,104342,104519,104681,104838,104948,105131,105268,105472,105656,105840,106000,106158,106342,106569,106772,106943,107163,107385,107540,107740,107924,108027,108217,108358,108523,108694,108894,109098,109300,109465,109670,109869,110068,110265,110356,110505,110655,110739,110888,111033,111185,111326,111492,111653,111731,112032,112198,112353,112455,112613,112777,112963,113186,113311,113588,113860,114138,114383,114445,114730,115181,115637,116146,116294,116808,117245,117679,118122,118207,118328,118427,118832,118929,119046,119133,119256,119357,119763,119862,119981,120074,120181,120524,120631,120876,120997,121406,121654,121754,121859,121978,122487,122634,122753,123004,123137,123552,123806,123918,124165,124290,124607,124728,124956,125077,125210,125357,145988,146480,166860,167284,187960,188454,208879,209305,214146,219563,223654,229085,233827,239204,243188,247180,252571,253118,253551,254307,254537,254780,255913,256842,257746,258330,258803,260233,260977,262170,263224,263702,263995,264378,265893,266658,267801,268242,268683,269279,269553,269964,270980,271158,271911,272048,272139,274333,274599,274921,275131,275240,275359,275543,276661,277131,277882,280465,280560,280936,281164,281420,281679,282255,282609,282731,282870,283162,283422,284350,284636,285039,285441,285784,285996,286197,286410,286699,286984,287057,287144,287229,287328,287440,287546,287669,287801,287924,288054,288178,288311,288442,288567,288684,288804,288936,289064,289178,289296,289409,289530,289718,289905,290086,290269,290453,290618,290800,290920,291040,291148,291258,291370,291478,291588,291753,291919,292071,292236,292337,292457,292628,292789,292952,293113,293280,293399,293516,293696,293878,294059,294242,294397,294542,294664,294799,294962,295155,295281,295433,295575,295745,295901,296073,296364,296559,296651,296824,296986,297081,297250,297344,297433,297676,297765,298058,298474,298894,299315,299741,300158,300574,300991,301409,301823,302293,302766,303238,303649,304120,304592,304782,304988,305094,305202,305308,305420,305534,305646,305760,305876,305990,306098,306208,306316,306578,306957,307361,307508,307616,307726,307834,307948,308357,308771,308887,309305,309546,309976,310411,310821,311243,311653,311775,312184,312600,312722,312940,313124,313192,313536,313616,313972,314122,314266,314342,314454,314544,314806,315071,315179,315331,315439,315515,315627,315717,315819,315927,316035,316135,316243,316328,316432,316519,316597,316711,316803,317067,317334,317444,317597,317707,317791,318180,318278,318386,318480,318610,318718,318840,318976,319084,319204,319338,319460,319588,319730,319856,319996,320122,320240,320372,320470,320580,320880,320992,321110,321574,321690,321993,322119,322215,322616,322726,322850,322988,323098,323220,323532,323656,323786,324262,324390,324705,324843,325005,325221,325377,325581,325649,325733,325837,326040,326229,326430,326623,326828,327141,327353,327519,327635,327881,328097,328410,328836,329298,329535,329687,329947,330091,330233,333465,333579,333699,333815,333909,334230,334329,334447,334548,334827,335112,335391,335673,335926,336185,336438,336694,337118,337194,340444,341799,342243,344097,344672,344880,345890,346270,346436,346577,351597,352023,352135,352270,352423,352620,352791,352974,353149,353336,353608,353766,353850,353954,354441,354997,355155,355374,355605,355828,356063,356285,356551,356689,357288,357402,357540,357652,357776,358347,358842,359388,359533,359626,359718,361645,362215,362513,362702,362908,363101,363311,364195,364340,364732,364890,365107,365368,365800,366675,367295,367492,368440,369205,369328,370101,370322,370522,372499,372599,372689,373375,374128,374893,375656,376431,377644,377809,379422,379743,380806,381016,381186,381756,382651,383284,383450,384936,385552,385788,386009,386967,387232,387497,387744,388158,388394,389679,390128,390315,390564,390806,390982,391223,391456,391681,392276,392751,393275,393536,394887,395362,396588,397058,398106,398558,398802,399259,400504,400987,401137,401481,401627,401765,401901,402189,402693,403202,403318,404220,404342,404454,404631,404897,405167,405433,405701,405957,406217,406473,406731,406983,407239,407491,407745,407977,408213,408465,408721,408973,409227,409459,409693,409805,410230,410354,411446,412261,412457,412781,413170,413522,413763,413977,414276,414468,414783,414990,415336,415636,416037,416256,416669,416906,417276,418000,418355,418624,418764,419018,419162,419439,420431,420840,421472,421818,422186,423260,423623,424023,425531,426116,426434,428969,429163,429381,429607,429819,430018,430225,431429,431724,432281,432671,433303,433780,434025,434376,434622,435382,435646,436069,436260,436639,436727,436835,436943,437256,437581,437900,438231,440934,441122,441383,441632,444216,444408,444673,444926,445458,445866,446065,446649,446884,447008,447420,447634,448036,448139,448269,448444,448696,448892,449032,449226,450237,451306,451594,451724,452501,453158,453304,454010,454248,455788,455938,456355,456520,457206,457676,457872,457963,458047,458191,458425,458592,459520,459806,459966,460581,460740,461068,461295,461807,462169,462248,462587,462692,463057,463428,463789,465663,466292,467368,467792,468045,468197,469245,469982,470185,470431,470678,470896,471138,471459,471723,472028,472251,472562,472751,473466,473735,474229,474455,474895,475054,475338,476083,476448,476753,476911,477149,478468,478866,479094,479314,479456,480746,480852,480982,481120,481244,481532,481701,481801,482086,482200,483083,483838,484277,484401,484647,484840,484974,485165,485944,486162,486453,486732,487049,487271,487566,487849,487953,488294,489110,489426,489987,490493,490698,491484,491889,492550,492739,493290,493856,493976,494378,494912,495442,495741,498086,500528,502122,504129,504468,506901,507142,509437,509877,510629,510813,511024,515682,516265,516993,517195,518330,518480,518655,518880,519474,520726,521067,521575,522086,523880,524140,524756,525251,526288,528154,528345,528678,528834,529027,531419,531648,531856,532026,533798,534096,535439,536449,538414,538530,538699,538836,538982,540333,541471,542002,542428,544161,544409,545179,545295,545470,548685,548832,559704,559947,560318,560413,560506,560569,560651,560744,560837,560924,561022,561113,561204,561292,561376,561472,561576,561676,561782,561885,561986,562090,562196,562295,562401,562503,562610,562719,562830,562961,563081,563197,563315,563414,563521,563637,563756,563884,563973,564068,564145,564234,564325,564418,564492,564589,564684,564782,564881,564985,565081,565183,565286,565386,565489,565574,565675,565773,565863,565958,566045,566151,566253,566347,566438,566532,566608,566700,566789,566892,567003,567086,567172,567267,567364,567460,567548,567649,567750,567853,567959,568057,568154,568249,568347,568450,568550,568653,568758,568876,568992,569087,569180,569265,569361,569455,569547,569649,569756,569839,569943,570048,570148,570249,570354,570454,570555,570654,570756,570850,570957,571059,571162,571255,571351,571453,571556,571652,571754,571857,571954,572057,572155,572259,572364,572461,572569,572683,572798,572906,573020,573135,573237,573342,573450,573560,573676,573793,573888,573985,574084,574189,574295,574394,574499,574605,574705,574811,574912,575019,575138,575237,575342,575444,575546,575646,575749,575844,575948,576033,576137,576241,576339,576443,576549,576647,576752,576850,576963,577057,577146,577235,577318,577409,577492,577590,577680,577776,577865,577959,578047,578143,578228,578336,578437,578538,578636,578742,578833,578932,579029,579127,579223,579316,579426,579524,579619,579729,579821,579921,580020,580107,580211,580316,580415,580522,580629,580728,580837,580929,581040,581151,581262,581366,581481,581597,581724,581844,581941,582040,582132,582231,582323,582422,582508,582602,582705,582801,582904,583000,583103,583200,583298,583401,583494,583584,583685,583768,583859,583944,584036,584139,584234,584330,584423,584517,584596,584703,584794,584893,584986,585089,585193,585294,585395,585499,585593,585697,585801,585914,586020,586126,586234,586351,586452,586560,586660,586763,586868,586975,587071,587150,587240,587324,587416,587489,587586,587668,587753,587838,587935,588028,588123,588222,588319,588410,588501,588593,588688,588795,588903,589005,589102,589199,589292,589379,589463,589560,589657,589750,589837,589928,590027,590126,590221,590310,590391,590490,590594,590691,590796,590893,590977,591076,591180,591277,591382,591479,591577,591678,591784,591883,591990,592089,592188,592279,592368,592457,592539,592632,592723,592834,592935,593035,593147,593260,593358,593466,593560,593660,593749,593841,593952,594062,594157,594273,594399,594525,594644,594772,594897,595022,595140,595267,595376,595485,595598,595721,595844,595960,596085,596182,596290,596412,596528,596644,596753,596841,596942,597031,597132,597219,597307,597404,597496,597602,597702,597778",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1349,1352,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1413,1414,1415,1416,1417,1421,1425,1429,1433,1434,1438,1446,1453,1461,1464,1474,1483,1492,1501,1502,1503,1504,1510,1511,1512,1513,1514,1515,1521,1522,1523,1524,1525,1530,1531,1535,1536,1542,1546,1547,1548,1549,1559,1560,1561,1565,1566,1572,1576,1577,1580,1581,1585,1586,1589,1590,1591,1592,1855,1862,2122,2128,2391,2398,2658,2664,2727,2809,2861,2943,3005,3087,3151,3203,3285,3293,3299,3310,3314,3318,3331,3346,3362,3369,3375,3392,3405,3425,3442,3451,3456,3463,3483,3496,3513,3519,3525,3532,3536,3542,3556,3559,3569,3570,3571,3619,3623,3627,3631,3632,3633,3636,3652,3659,3673,3718,3719,3725,3729,3733,3738,3745,3751,3752,3755,3759,3764,3777,3781,3786,3791,3796,3799,3802,3805,3809,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3839,3843,3847,3851,3855,3859,3863,3864,3865,3866,3867,3868,3869,3870,3874,3878,3879,3883,3884,3887,3891,3894,3897,3900,3904,3907,3910,3914,3918,3922,3926,3929,3930,3931,3932,3935,3939,3942,3945,3948,3951,3954,3957,3961,3964,3965,3968,3971,3972,3975,3976,3977,3981,3982,3987,3994,4001,4008,4015,4022,4029,4036,4043,4050,4059,4068,4077,4084,4093,4102,4105,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4124,4129,4134,4137,4138,4139,4140,4141,4149,4157,4158,4166,4170,4178,4186,4194,4202,4210,4211,4219,4227,4228,4231,4234,4236,4241,4243,4248,4252,4256,4257,4258,4259,4263,4267,4268,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4291,4295,4296,4300,4301,4302,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4331,4332,4333,4339,4340,4344,4346,4347,4352,4353,4354,4355,4356,4357,4361,4362,4363,4369,4370,4374,4376,4380,4384,4388,4392,4393,4394,4395,4398,4401,4404,4407,4410,4415,4419,4422,4423,4428,4432,4437,4443,4449,4454,4458,4463,4467,4471,4512,4513,4514,4515,4516,4520,4521,4522,4523,4527,4531,4535,4539,4543,4547,4551,4555,4561,4562,4603,4617,4622,4648,4655,4658,4669,4674,4677,4680,4735,4741,4742,4745,4748,4751,4754,4757,4760,4763,4767,4770,4771,4772,4780,4788,4791,4796,4801,4806,4811,4815,4819,4820,4828,4829,4830,4831,4832,4840,4845,4850,4851,4852,4853,4878,4884,4889,4892,4896,4899,4903,4913,4916,4921,4924,4928,4932,4940,4954,4967,4971,4986,4997,5000,5011,5016,5020,5055,5056,5057,5069,5077,5085,5093,5101,5121,5124,5151,5156,5176,5179,5182,5189,5202,5211,5214,5234,5244,5248,5252,5265,5269,5273,5277,5283,5287,5304,5312,5316,5320,5324,5327,5331,5335,5339,5349,5356,5363,5367,5393,5403,5428,5437,5457,5467,5471,5481,5506,5516,5519,5523,5524,5525,5526,5530,5536,5542,5543,5556,5557,5558,5561,5564,5567,5570,5573,5576,5579,5582,5585,5588,5591,5594,5597,5600,5603,5606,5609,5612,5615,5618,5621,5622,5627,5628,5641,5651,5655,5660,5665,5669,5672,5676,5680,5683,5687,5690,5694,5699,5704,5707,5714,5718,5722,5731,5736,5741,5742,5746,5749,5753,5766,5771,5779,5783,5787,5804,5808,5813,5831,5838,5842,5872,5875,5878,5881,5884,5887,5890,5909,5915,5923,5930,5942,5950,5955,5960,5964,5975,5979,5987,5990,5995,5996,5997,5998,6002,6006,6010,6014,6049,6052,6056,6060,6094,6097,6101,6105,6114,6120,6123,6133,6137,6138,6145,6149,6156,6157,6158,6161,6166,6171,6172,6176,6191,6210,6214,6215,6227,6237,6238,6250,6255,6279,6282,6288,6291,6300,6308,6312,6315,6318,6321,6325,6328,6345,6349,6352,6367,6370,6378,6383,6390,6395,6396,6401,6402,6408,6414,6420,6452,6463,6480,6487,6491,6494,6507,6516,6520,6525,6529,6533,6537,6541,6545,6549,6553,6558,6561,6573,6578,6587,6590,6597,6598,6602,6611,6617,6621,6622,6626,6647,6653,6657,6661,6662,6680,6681,6682,6683,6684,6689,6692,6693,6699,6700,6712,6724,6731,6732,6737,6742,6743,6747,6761,6766,6772,6778,6784,6789,6795,6801,6802,6808,6823,6828,6837,6846,6849,6863,6868,6879,6883,6892,6901,6902,6909,6917,6934,6944,6991,7058,7104,7161,7173,7231,7240,7349,7369,7390,7396,7404,7510,7524,7547,7553,7597,7601,7607,7613,7624,7656,7663,7671,7686,7742,7753,7766,7778,7816,7863,7869,7881,7887,7893,7945,7950,7955,7962,7997,8009,8055,8084,8147,8152,8158,8161,8165,8193,8257,8275,8293,8350,8358,8382,8386,8394,8487,8491,8770,8778,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164",
+ "endColumns": "55,48,54,55,59,60,64,54,49,49,52,57,47,68,47,70,71,71,72,66,48,53,36,50,59,46,55,48,57,53,60,55,50,59,55,62,48,55,55,49,58,54,61,46,53,55,51,54,53,53,53,48,57,53,56,55,46,52,55,59,62,58,61,49,53,53,47,56,52,55,53,55,62,61,55,59,52,60,78,80,71,78,79,75,77,68,75,76,70,72,75,77,68,75,76,63,70,71,50,52,54,66,52,51,49,57,64,47,50,66,65,57,68,57,68,69,72,73,67,66,69,65,72,59,75,59,59,74,67,65,67,59,58,56,65,61,56,67,72,69,61,60,67,61,69,68,55,58,61,61,66,56,60,60,60,60,55,55,55,55,57,57,57,57,56,56,56,56,58,58,57,82,82,72,53,68,55,80,80,70,9,52,57,57,57,45,59,53,69,69,64,65,64,67,68,67,9,52,58,57,51,49,51,45,49,55,46,57,57,61,62,61,58,59,64,65,64,61,61,61,61,61,61,65,66,65,62,63,62,67,60,61,61,62,63,62,63,77,58,65,79,60,52,57,50,44,63,58,61,73,70,65,73,68,70,72,70,67,72,75,69,77,67,65,60,68,63,65,67,65,62,67,70,64,72,62,80,63,65,69,69,69,69,66,56,57,58,59,58,58,58,58,58,58,58,58,58,58,59,60,61,60,60,60,60,60,60,59,60,60,59,60,60,60,60,60,60,60,60,60,60,60,67,68,69,68,68,68,68,68,68,68,68,68,68,59,60,61,60,60,60,60,60,60,60,60,60,60,61,62,63,62,62,62,62,62,62,62,62,62,62,60,61,62,61,61,61,61,61,61,61,61,61,61,56,85,79,89,94,91,91,89,82,92,86,96,90,100,86,102,88,98,91,99,83,93,87,97,82,90,93,98,101,97,99,86,99,85,95,87,80,90,95,92,92,90,84,93,88,97,92,101,87,103,90,99,92,100,84,94,88,98,84,91,94,99,102,98,102,88,100,86,96,87,95,91,99,89,97,84,88,88,92,86,90,65,75,68,78,72,79,79,76,67,77,75,70,80,72,82,74,84,72,80,80,73,83,69,77,69,79,77,71,81,69,76,79,84,87,83,86,73,77,77,70,80,90,82,95,97,106,64,65,52,75,65,86,75,75,64,54,53,78,77,72,64,62,65,70,70,69,61,68,65,59,66,66,55,50,52,51,53,70,62,58,61,58,72,66,69,59,62,74,71,95,70,55,70,56,56,65,63,70,56,52,62,51,57,66,68,65,58,82,58,56,66,69,73,61,68,69,98,96,98,85,85,80,74,88,90,83,58,45,65,56,66,56,81,64,65,122,83,120,64,61,97,73,82,88,63,78,73,61,95,64,58,55,55,59,106,46,59,60,63,60,59,57,42,48,51,50,51,48,48,64,65,59,60,55,58,48,47,57,56,101,56,74,47,50,61,64,51,73,62,62,67,49,61,59,56,59,48,67,105,101,68,70,55,48,99,70,109,88,90,81,97,55,100,109,98,62,105,76,111,126,111,126,69,113,130,96,67,117,102,117,60,73,66,104,121,73,66,109,98,72,96,121,117,117,60,121,116,67,105,101,79,70,95,66,73,73,85,87,89,77,76,99,70,120,120,63,124,73,123,123,66,108,127,111,78,77,100,70,121,121,64,125,111,105,67,98,103,62,65,83,112,112,117,77,71,135,135,84,139,137,137,141,81,108,110,127,127,131,129,129,133,61,95,66,116,120,96,81,86,86,130,130,134,76,76,110,113,73,108,111,101,95,103,66,93,71,109,105,72,90,101,102,94,106,104,121,121,125,58,57,123,123,127,117,117,121,85,96,133,133,79,137,131,131,135,74,75,102,73,112,80,56,60,58,59,57,60,57,49,48,66,58,58,48,70,83,69,70,79,68,62,67,65,67,64,65,76,77,105,105,95,128,88,126,65,68,85,65,82,97,95,95,97,108,94,88,61,59,64,56,80,53,56,96,109,60,114,120,94,91,92,101,55,58,48,91,48,53,53,53,53,53,54,109,109,107,109,109,109,109,107,105,103,103,103,94,94,92,92,103,105,103,103,92,92,92,92,107,105,105,105,96,94,94,94,105,105,105,105,97,95,95,97,64,103,57,63,60,61,59,64,61,67,57,62,62,66,74,72,65,51,52,51,56,83,94,84,80,79,76,78,76,73,73,70,79,71,74,64,60,59,74,73,72,69,71,69,72,63,69,45,68,51,84,82,56,65,66,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,50,53,52,53,50,48,65,50,60,60,61,49,40,76,58,58,58,60,55,55,66,60,64,54,64,68,67,77,68,59,70,73,64,71,69,66,83,68,66,69,62,66,67,82,78,89,76,67,66,77,56,56,67,65,55,59,58,53,49,49,47,61,50,72,79,79,63,66,70,57,60,65,58,66,59,59,62,67,60,66,77,69,48,56,68,60,87,87,87,87,86,86,86,86,57,73,69,55,70,64,61,74,72,89,65,65,60,63,61,57,70,82,58,70,65,64,60,58,70,65,64,82,75,74,80,59,68,69,68,54,55,55,60,57,55,53,54,61,56,93,68,100,50,69,62,55,57,58,53,85,83,69,68,69,114,120,66,66,74,66,58,53,53,53,52,51,73,136,139,48,49,49,47,55,57,61,54,57,70,63,58,61,65,65,42,43,44,42,50,46,44,50,50,50,50,47,65,61,62,71,56,53,54,57,54,58,55,68,68,68,69,62,62,62,62,64,64,64,64,62,63,63,63,50,77,77,70,71,72,71,65,65,67,67,65,66,73,62,56,59,64,66,64,56,60,57,103,109,108,103,77,64,66,65,69,46,51,49,56,12,149,130,183,177,237,188,168,97,114,84,78,11,64,88,156,156,152,153,58,186,95,89,95,89,165,122,122,169,105,114,114,101,105,116,114,81,172,167,147,158,154,172,116,116,167,111,113,171,175,157,132,111,145,151,131,142,121,177,135,95,135,94,166,92,91,186,11,11,11,181,316,181,181,189,231,189,176,161,156,109,182,136,203,183,183,159,157,183,226,202,170,219,221,154,199,183,102,189,140,164,170,199,203,201,164,204,198,198,196,90,148,149,83,148,144,151,140,165,160,77,300,165,154,101,11,163,185,222,124,10,10,10,10,61,10,10,10,10,10,10,10,10,10,84,120,98,10,96,116,86,122,100,10,98,118,92,106,10,106,10,120,10,10,99,104,118,10,146,118,10,132,10,10,111,10,124,10,120,10,120,132,146,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,136,90,10,10,10,10,108,118,10,10,10,10,10,94,10,10,10,10,10,10,121,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,111,105,122,131,122,129,123,132,130,124,116,119,131,127,113,117,112,120,10,10,10,10,10,10,10,119,119,107,109,111,107,109,10,10,151,10,100,10,10,10,10,10,10,10,10,10,10,10,10,10,144,121,134,10,10,10,10,10,10,10,10,10,10,91,10,10,94,10,93,88,10,88,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,105,107,105,111,113,111,113,115,113,107,109,107,10,10,10,10,107,109,107,113,10,10,115,10,10,10,10,10,10,10,121,10,10,121,10,10,10,10,10,10,10,10,75,111,89,10,10,107,10,107,75,111,89,101,107,107,99,107,84,103,86,77,113,91,10,10,109,10,109,83,10,97,107,93,129,107,121,135,107,119,133,121,127,141,125,139,125,117,131,97,109,10,111,117,10,115,10,10,95,10,109,123,137,109,121,10,123,129,10,127,10,10,10,10,10,10,67,83,103,10,10,10,10,10,10,10,10,115,10,10,10,10,10,10,10,10,10,10,10,113,119,115,93,10,98,117,100,10,10,10,10,10,10,10,10,10,75,10,10,10,10,10,10,10,10,10,10,10,10,111,10,10,10,10,10,10,10,10,10,83,103,10,10,10,10,10,10,10,10,10,137,10,113,137,111,123,10,10,10,144,92,91,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,99,89,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,145,137,135,10,10,10,115,10,121,111,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,111,10,123,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,139,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,87,107,107,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,123,10,10,10,102,129,10,10,10,139,10,10,10,10,129,10,10,145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,78,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,158,10,10,10,10,157,10,10,10,10,10,141,10,105,129,137,123,10,10,99,10,113,10,10,10,123,10,10,133,10,10,10,10,10,10,10,10,10,103,10,10,10,10,10,10,10,10,10,10,10,10,119,10,10,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,94,92,62,81,92,92,86,97,90,90,87,83,95,103,99,105,102,100,103,105,98,105,101,106,108,110,130,119,115,117,98,106,115,118,127,88,94,76,88,90,92,73,96,94,97,98,103,95,101,102,99,102,84,100,97,89,94,86,105,101,93,90,93,75,91,88,102,110,82,85,94,96,95,87,100,100,102,105,97,96,94,97,102,99,102,104,117,115,94,92,84,95,93,91,101,106,82,103,104,99,100,104,99,100,98,101,93,106,101,102,92,95,101,102,95,101,102,96,102,97,103,104,96,107,113,114,107,113,114,101,104,107,109,115,116,94,96,98,104,105,98,104,105,99,105,100,106,118,98,104,101,101,99,102,94,103,84,103,103,97,103,105,97,104,97,112,93,88,88,82,90,82,97,89,95,88,93,87,95,84,107,100,100,97,105,90,98,96,97,95,92,109,97,94,109,91,99,98,86,103,104,98,106,106,98,108,91,110,110,110,103,114,115,126,119,96,98,91,98,91,98,85,93,102,95,102,95,102,96,97,102,92,89,100,82,90,84,91,102,94,95,92,93,78,106,90,98,92,102,103,100,100,103,93,103,103,112,105,105,107,116,100,107,99,102,104,106,95,78,89,83,91,72,96,81,84,84,96,92,94,98,96,90,90,91,94,106,107,101,96,96,92,86,83,96,96,92,86,90,98,98,94,88,80,98,103,96,104,96,83,98,103,96,104,96,97,100,105,98,106,98,98,90,88,88,81,92,90,110,100,99,111,112,97,107,93,99,88,91,110,109,94,115,125,125,118,127,124,124,117,126,108,108,112,122,122,115,124,96,107,121,115,115,108,87,100,88,100,86,87,96,91,105,99,75,76",
+ "endOffsets": "201,250,305,361,421,482,547,602,652,702,755,813,861,930,978,1049,1121,1193,1266,1333,1382,1436,1473,1524,1584,1631,1687,1736,1794,1848,1909,1965,2016,2076,2132,2195,2244,2300,2356,2406,2465,2520,2582,2629,2683,2739,2791,2846,2900,2954,3008,3057,3115,3169,3226,3282,3329,3382,3438,3498,3561,3620,3682,3732,3786,3840,3888,3945,3998,4054,4108,4164,4227,4289,4345,4405,4458,4519,4598,4679,4751,4830,4910,4986,5064,5133,5209,5286,5357,5430,5506,5584,5653,5729,5806,5870,5941,6013,6064,6117,6172,6239,6292,6344,6394,6452,6517,6565,6616,6683,6749,6807,6876,6934,7003,7073,7146,7220,7288,7355,7425,7491,7564,7624,7700,7760,7820,7895,7963,8029,8097,8157,8216,8273,8339,8401,8458,8526,8599,8669,8731,8792,8860,8922,8992,9061,9117,9176,9238,9300,9367,9424,9485,9546,9607,9668,9724,9780,9836,9892,9950,10008,10066,10124,10181,10238,10295,10352,10411,10470,10528,10611,10694,10767,10821,10890,10946,11027,11108,11179,11308,11361,11419,11477,11535,11581,11641,11695,11765,11835,11900,11966,12031,12099,12168,12236,12366,12419,12478,12536,12588,12638,12690,12736,12786,12842,12889,12947,13005,13067,13130,13192,13251,13311,13376,13442,13507,13569,13631,13693,13755,13817,13879,13945,14012,14078,14141,14205,14268,14336,14397,14459,14521,14584,14648,14711,14775,14853,14912,14978,15058,15119,15172,15230,15281,15326,15390,15449,15511,15585,15656,15722,15796,15865,15936,16009,16080,16148,16221,16297,16367,16445,16513,16579,16640,16709,16773,16839,16907,16973,17036,17104,17175,17240,17313,17376,17457,17521,17587,17657,17727,17797,17867,17934,17991,18049,18108,18168,18227,18286,18345,18404,18463,18522,18581,18640,18699,18758,18818,18879,18941,19002,19063,19124,19185,19246,19307,19367,19428,19489,19549,19610,19671,19732,19793,19854,19915,19976,20037,20098,20159,20220,20288,20357,20427,20496,20565,20634,20703,20772,20841,20910,20979,21048,21117,21177,21238,21300,21361,21422,21483,21544,21605,21666,21727,21788,21849,21910,21972,22035,22099,22162,22225,22288,22351,22414,22477,22540,22603,22666,22729,22790,22852,22915,22977,23039,23101,23163,23225,23287,23349,23411,23473,23535,23592,23678,23758,23848,23943,24035,24127,24217,24300,24393,24480,24577,24668,24769,24856,24959,25048,25147,25239,25339,25423,25517,25605,25703,25786,25877,25971,26070,26172,26270,26370,26457,26557,26643,26739,26827,26908,26999,27095,27188,27281,27372,27457,27551,27640,27738,27831,27933,28021,28125,28216,28316,28409,28510,28595,28690,28779,28878,28963,29055,29150,29250,29353,29452,29555,29644,29745,29832,29929,30017,30113,30205,30305,30395,30493,30578,30667,30756,30849,30936,31027,31093,31169,31238,31317,31390,31470,31550,31627,31695,31773,31849,31920,32001,32074,32157,32232,32317,32390,32471,32552,32626,32710,32780,32858,32928,33008,33086,33158,33240,33310,33387,33467,33552,33640,33724,33811,33885,33963,34041,34112,34193,34284,34367,34463,34561,34668,34733,34799,34852,34928,34994,35081,35157,35233,35298,35353,35407,35486,35564,35637,35702,35765,35831,35902,35973,36043,36105,36174,36240,36300,36367,36434,36490,36541,36594,36646,36700,36771,36834,36893,36955,37014,37087,37154,37224,37284,37347,37422,37494,37590,37661,37717,37788,37845,37902,37968,38032,38103,38160,38213,38276,38328,38386,38453,38522,38588,38647,38730,38789,38846,38913,38983,39057,39119,39188,39258,39357,39454,39553,39639,39725,39806,39881,39970,40061,40145,40204,40250,40316,40373,40440,40497,40579,40644,40710,40833,40917,41038,41103,41165,41263,41337,41420,41509,41573,41652,41726,41788,41884,41949,42008,42064,42120,42180,42287,42334,42394,42455,42519,42580,42640,42698,42741,42790,42842,42893,42945,42994,43043,43108,43174,43234,43295,43351,43410,43459,43507,43565,43622,43724,43781,43856,43904,43955,44017,44082,44134,44208,44271,44334,44402,44452,44514,44574,44631,44691,44740,44808,44914,45016,45085,45156,45212,45261,45361,45432,45542,45631,45722,45804,45902,45958,46059,46169,46268,46331,46437,46514,46626,46753,46865,46992,47062,47176,47307,47404,47472,47590,47693,47811,47872,47946,48013,48118,48240,48314,48381,48491,48590,48663,48760,48882,49000,49118,49179,49301,49418,49486,49592,49694,49774,49845,49941,50008,50082,50156,50242,50330,50420,50498,50575,50675,50746,50867,50988,51052,51177,51251,51375,51499,51566,51675,51803,51915,51994,52072,52173,52244,52366,52488,52553,52679,52791,52897,52965,53064,53168,53231,53297,53381,53494,53607,53725,53803,53875,54011,54147,54232,54372,54510,54648,54790,54872,54981,55092,55220,55348,55480,55610,55740,55874,55936,56032,56099,56216,56337,56434,56516,56603,56690,56821,56952,57087,57164,57241,57352,57466,57540,57649,57761,57863,57959,58063,58130,58224,58296,58406,58512,58585,58676,58778,58881,58976,59083,59188,59310,59432,59558,59617,59675,59799,59923,60051,60169,60287,60409,60495,60592,60726,60860,60940,61078,61210,61342,61478,61553,61629,61732,61806,61919,62000,62057,62118,62177,62237,62295,62356,62414,62464,62513,62580,62639,62698,62747,62818,62902,62972,63043,63123,63192,63255,63323,63389,63457,63522,63588,63665,63743,63849,63955,64051,64180,64269,64396,64462,64531,64617,64683,64766,64864,64960,65056,65154,65263,65358,65447,65509,65569,65634,65691,65772,65826,65883,65980,66090,66151,66266,66387,66482,66574,66667,66769,66825,66884,66933,67025,67074,67128,67182,67236,67290,67344,67399,67509,67619,67727,67837,67947,68057,68167,68275,68381,68485,68589,68693,68788,68883,68976,69069,69173,69279,69383,69487,69580,69673,69766,69859,69967,70073,70179,70285,70382,70477,70572,70667,70773,70879,70985,71091,71189,71285,71381,71479,71544,71648,71706,71770,71831,71893,71953,72018,72080,72148,72206,72269,72332,72399,72474,72547,72613,72665,72718,72770,72827,72911,73006,73091,73172,73252,73329,73408,73485,73559,73633,73704,73784,73856,73931,73996,74057,74117,74192,74266,74339,74409,74481,74551,74624,74688,74758,74804,74873,74925,75010,75093,75150,75216,75283,75349,75430,75505,75561,75614,75675,75733,75783,75832,75881,75930,75992,76044,76089,76170,76221,76275,76328,76382,76433,76482,76548,76599,76660,76721,76783,76833,76874,76951,77010,77069,77128,77189,77245,77301,77368,77429,77494,77549,77614,77683,77751,77829,77898,77958,78029,78103,78168,78240,78310,78377,78461,78530,78597,78667,78730,78797,78865,78948,79027,79117,79194,79262,79329,79407,79464,79521,79589,79655,79711,79771,79830,79884,79934,79984,80032,80094,80145,80218,80298,80378,80442,80509,80580,80638,80699,80765,80824,80891,80951,81011,81074,81142,81203,81270,81348,81418,81467,81524,81593,81654,81742,81830,81918,82006,82093,82180,82267,82354,82412,82486,82556,82612,82683,82748,82810,82885,82958,83048,83114,83180,83241,83305,83367,83425,83496,83579,83638,83709,83775,83840,83901,83960,84031,84097,84162,84245,84321,84396,84477,84537,84606,84676,84745,84800,84856,84912,84973,85031,85087,85141,85196,85258,85315,85409,85478,85579,85630,85700,85763,85819,85877,85936,85990,86076,86160,86230,86299,86369,86484,86605,86672,86739,86814,86881,86940,86994,87048,87102,87155,87207,87281,87418,87558,87607,87657,87707,87755,87811,87869,87931,87986,88044,88115,88179,88238,88300,88366,88432,88475,88519,88564,88607,88658,88705,88750,88801,88852,88903,88954,89002,89068,89130,89193,89265,89322,89376,89431,89489,89544,89603,89659,89728,89797,89866,89936,89999,90062,90125,90188,90253,90318,90383,90448,90511,90575,90639,90703,90754,90832,90910,90981,91053,91126,91198,91264,91330,91398,91466,91532,91599,91673,91736,91793,91853,91918,91985,92050,92107,92168,92226,92330,92440,92549,92653,92731,92796,92863,92929,92999,93046,93098,93148,93205,93525,93675,93806,93990,94168,94406,94595,94764,94862,94977,95062,95141,95301,95366,95455,95612,95769,95922,96076,96135,96322,96418,96508,96604,96694,96860,96983,97106,97276,97382,97497,97612,97714,97820,97937,98052,98134,98307,98475,98623,98782,98937,99110,99227,99344,99512,99624,99738,99910,100086,100244,100377,100489,100635,100787,100919,101062,101184,101362,101498,101594,101730,101825,101992,102085,102177,102364,102520,102698,102862,103044,103361,103543,103725,103915,104147,104337,104514,104676,104833,104943,105126,105263,105467,105651,105835,105995,106153,106337,106564,106767,106938,107158,107380,107535,107735,107919,108022,108212,108353,108518,108689,108889,109093,109295,109460,109665,109864,110063,110260,110351,110500,110650,110734,110883,111028,111180,111321,111487,111648,111726,112027,112193,112348,112450,112608,112772,112958,113181,113306,113583,113855,114133,114378,114440,114725,115176,115632,116141,116289,116803,117240,117674,118117,118202,118323,118422,118827,118924,119041,119128,119251,119352,119758,119857,119976,120069,120176,120519,120626,120871,120992,121401,121649,121749,121854,121973,122482,122629,122748,122999,123132,123547,123801,123913,124160,124285,124602,124723,124951,125072,125205,125352,145983,146475,166855,167279,187955,188449,208874,209300,214141,219558,223649,229080,233822,239199,243183,247175,252566,253113,253546,254302,254532,254775,255908,256837,257741,258325,258798,260228,260972,262165,263219,263697,263990,264373,265888,266653,267796,268237,268678,269274,269548,269959,270975,271153,271906,272043,272134,274328,274594,274916,275126,275235,275354,275538,276656,277126,277877,280460,280555,280931,281159,281415,281674,282250,282604,282726,282865,283157,283417,284345,284631,285034,285436,285779,285991,286192,286405,286694,286979,287052,287139,287224,287323,287435,287541,287664,287796,287919,288049,288173,288306,288437,288562,288679,288799,288931,289059,289173,289291,289404,289525,289713,289900,290081,290264,290448,290613,290795,290915,291035,291143,291253,291365,291473,291583,291748,291914,292066,292231,292332,292452,292623,292784,292947,293108,293275,293394,293511,293691,293873,294054,294237,294392,294537,294659,294794,294957,295150,295276,295428,295570,295740,295896,296068,296359,296554,296646,296819,296981,297076,297245,297339,297428,297671,297760,298053,298469,298889,299310,299736,300153,300569,300986,301404,301818,302288,302761,303233,303644,304115,304587,304777,304983,305089,305197,305303,305415,305529,305641,305755,305871,305985,306093,306203,306311,306573,306952,307356,307503,307611,307721,307829,307943,308352,308766,308882,309300,309541,309971,310406,310816,311238,311648,311770,312179,312595,312717,312935,313119,313187,313531,313611,313967,314117,314261,314337,314449,314539,314801,315066,315174,315326,315434,315510,315622,315712,315814,315922,316030,316130,316238,316323,316427,316514,316592,316706,316798,317062,317329,317439,317592,317702,317786,318175,318273,318381,318475,318605,318713,318835,318971,319079,319199,319333,319455,319583,319725,319851,319991,320117,320235,320367,320465,320575,320875,320987,321105,321569,321685,321988,322114,322210,322611,322721,322845,322983,323093,323215,323527,323651,323781,324257,324385,324700,324838,325000,325216,325372,325576,325644,325728,325832,326035,326224,326425,326618,326823,327136,327348,327514,327630,327876,328092,328405,328831,329293,329530,329682,329942,330086,330228,333460,333574,333694,333810,333904,334225,334324,334442,334543,334822,335107,335386,335668,335921,336180,336433,336689,337113,337189,340439,341794,342238,344092,344667,344875,345885,346265,346431,346572,351592,352018,352130,352265,352418,352615,352786,352969,353144,353331,353603,353761,353845,353949,354436,354992,355150,355369,355600,355823,356058,356280,356546,356684,357283,357397,357535,357647,357771,358342,358837,359383,359528,359621,359713,361640,362210,362508,362697,362903,363096,363306,364190,364335,364727,364885,365102,365363,365795,366670,367290,367487,368435,369200,369323,370096,370317,370517,372494,372594,372684,373370,374123,374888,375651,376426,377639,377804,379417,379738,380801,381011,381181,381751,382646,383279,383445,384931,385547,385783,386004,386962,387227,387492,387739,388153,388389,389674,390123,390310,390559,390801,390977,391218,391451,391676,392271,392746,393270,393531,394882,395357,396583,397053,398101,398553,398797,399254,400499,400982,401132,401476,401622,401760,401896,402184,402688,403197,403313,404215,404337,404449,404626,404892,405162,405428,405696,405952,406212,406468,406726,406978,407234,407486,407740,407972,408208,408460,408716,408968,409222,409454,409688,409800,410225,410349,411441,412256,412452,412776,413165,413517,413758,413972,414271,414463,414778,414985,415331,415631,416032,416251,416664,416901,417271,417995,418350,418619,418759,419013,419157,419434,420426,420835,421467,421813,422181,423255,423618,424018,425526,426111,426429,428964,429158,429376,429602,429814,430013,430220,431424,431719,432276,432666,433298,433775,434020,434371,434617,435377,435641,436064,436255,436634,436722,436830,436938,437251,437576,437895,438226,440929,441117,441378,441627,444211,444403,444668,444921,445453,445861,446060,446644,446879,447003,447415,447629,448031,448134,448264,448439,448691,448887,449027,449221,450232,451301,451589,451719,452496,453153,453299,454005,454243,455783,455933,456350,456515,457201,457671,457867,457958,458042,458186,458420,458587,459515,459801,459961,460576,460735,461063,461290,461802,462164,462243,462582,462687,463052,463423,463784,465658,466287,467363,467787,468040,468192,469240,469977,470180,470426,470673,470891,471133,471454,471718,472023,472246,472557,472746,473461,473730,474224,474450,474890,475049,475333,476078,476443,476748,476906,477144,478463,478861,479089,479309,479451,480741,480847,480977,481115,481239,481527,481696,481796,482081,482195,483078,483833,484272,484396,484642,484835,484969,485160,485939,486157,486448,486727,487044,487266,487561,487844,487948,488289,489105,489421,489982,490488,490693,491479,491884,492545,492734,493285,493851,493971,494373,494907,495437,495736,498081,500523,502117,504124,504463,506896,507137,509432,509872,510624,510808,511019,515677,516260,516988,517190,518325,518475,518650,518875,519469,520721,521062,521570,522081,523875,524135,524751,525246,526283,528149,528340,528673,528829,529022,531414,531643,531851,532021,533793,534091,535434,536444,538409,538525,538694,538831,538977,539662,541466,541997,542423,544156,544404,545174,545290,545465,548680,548827,559699,559942,560313,560408,560501,560564,560646,560739,560832,560919,561017,561108,561199,561287,561371,561467,561571,561671,561777,561880,561981,562085,562191,562290,562396,562498,562605,562714,562825,562956,563076,563192,563310,563409,563516,563632,563751,563879,563968,564063,564140,564229,564320,564413,564487,564584,564679,564777,564876,564980,565076,565178,565281,565381,565484,565569,565670,565768,565858,565953,566040,566146,566248,566342,566433,566527,566603,566695,566784,566887,566998,567081,567167,567262,567359,567455,567543,567644,567745,567848,567954,568052,568149,568244,568342,568445,568545,568648,568753,568871,568987,569082,569175,569260,569356,569450,569542,569644,569751,569834,569938,570043,570143,570244,570349,570449,570550,570649,570751,570845,570952,571054,571157,571250,571346,571448,571551,571647,571749,571852,571949,572052,572150,572254,572359,572456,572564,572678,572793,572901,573015,573130,573232,573337,573445,573555,573671,573788,573883,573980,574079,574184,574290,574389,574494,574600,574700,574806,574907,575014,575133,575232,575337,575439,575541,575641,575744,575839,575943,576028,576132,576236,576334,576438,576544,576642,576747,576845,576958,577052,577141,577230,577313,577404,577487,577585,577675,577771,577860,577954,578042,578138,578223,578331,578432,578533,578631,578737,578828,578927,579024,579122,579218,579311,579421,579519,579614,579724,579816,579916,580015,580102,580206,580311,580410,580517,580624,580723,580832,580924,581035,581146,581257,581361,581476,581592,581719,581839,581936,582035,582127,582226,582318,582417,582503,582597,582700,582796,582899,582995,583098,583195,583293,583396,583489,583579,583680,583763,583854,583939,584031,584134,584229,584325,584418,584512,584591,584698,584789,584888,584981,585084,585188,585289,585390,585494,585588,585692,585796,585909,586015,586121,586229,586346,586447,586555,586655,586758,586863,586970,587066,587145,587235,587319,587411,587484,587581,587663,587748,587833,587930,588023,588118,588217,588314,588405,588496,588588,588683,588790,588898,589000,589097,589194,589287,589374,589458,589555,589652,589745,589832,589923,590022,590121,590216,590305,590386,590485,590589,590686,590791,590888,590972,591071,591175,591272,591377,591474,591572,591673,591779,591878,591985,592084,592183,592274,592363,592452,592534,592627,592718,592829,592930,593030,593142,593255,593353,593461,593555,593655,593744,593836,593947,594057,594152,594268,594394,594520,594639,594767,594892,595017,595135,595262,595371,595480,595593,595716,595839,595955,596080,596177,596285,596407,596523,596639,596748,596836,596937,597026,597127,597214,597302,597399,597491,597597,597697,597773,597850"
+ },
+ "to": {
+ "startLines": "40,46,57,58,59,60,61,62,65,66,67,68,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,139,140,160,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,244,246,247,249,250,251,252,253,254,255,256,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,453,454,455,473,475,476,477,478,479,480,481,482,483,484,485,486,490,491,492,493,495,504,505,506,507,508,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,547,548,559,567,568,594,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,1027,1033,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1757,1758,1807,1808,1809,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1832,1835,1836,1837,1856,1857,1858,1859,1860,1861,1862,1870,1878,1879,1882,1883,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1945,1960,2013,2014,2015,2016,2017,2018,2019,2027,2028,2029,2030,2077,2080,2083,2084,2085,2096,2097,2098,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2152,2155,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2216,2217,2218,2219,2220,2255,2258,2259,2314,2315,2395,2399,2403,2407,2411,2412,2479,2487,2494,2664,2667,2677,2686,2695,2764,2765,2766,2767,2773,2774,2775,2776,2777,2778,2784,2785,2786,2787,2788,2793,2794,2798,2799,2805,2809,2810,2811,2812,2822,2823,2824,2828,2829,2835,2839,2909,2912,2913,2917,2918,2921,2922,2923,2924,3187,3194,3454,3460,3723,3730,3990,3996,4059,4141,4193,4275,4337,4419,4483,4535,4617,4625,4631,4642,4646,4650,4663,5438,5454,5461,5467,5484,5497,5517,5534,5543,5548,5555,5575,5588,5605,5611,5617,5624,5628,5634,5648,5651,5661,5662,5663,5711,5715,5719,5723,5724,5725,5728,5744,5751,5765,5810,5836,5842,5846,5850,5855,5862,5868,5869,5872,5876,5881,5894,5898,5903,5908,5913,5916,5919,5922,5926,6069,6070,6071,6072,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6343,6347,6351,6355,6359,6363,6367,6368,6369,6370,6371,6372,6373,6374,6378,6382,6383,6387,6388,6391,6395,6398,6401,6404,6408,6411,6414,6418,6422,6426,6430,6433,6434,6435,6436,6439,6443,6446,6449,6452,6455,6458,6461,6532,6535,6536,6539,6542,6543,6546,6547,6548,6552,6553,6558,6565,6572,6579,6586,6593,6600,6607,6614,6621,6630,6639,6648,6655,6664,6673,6676,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6695,6700,6705,6708,6709,6710,6711,6712,6720,6728,6729,6737,6741,6749,6757,6765,6773,6781,6782,6790,6798,6799,6802,6841,6843,6848,6850,6855,6859,6863,6864,6865,6866,6870,6874,6875,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6898,6902,6903,6907,6908,6909,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6938,6939,6940,6946,6947,6951,6953,6954,6959,6960,6961,6962,6963,6964,6968,6969,6970,6976,6977,6981,6983,6987,6991,6995,7011,7012,7013,7014,7017,7020,7023,7026,7029,7034,7038,7041,7042,7047,7051,7056,7062,7068,7073,7077,7082,7086,7090,7131,7132,7133,7134,7135,7139,7140,7141,7142,7146,7150,7154,7158,7162,7166,7170,7174,7180,7181,7222,7236,7241,7267,7274,7277,7288,7293,7296,7299,7354,7360,7361,7364,7367,7370,7373,7376,7379,7382,7386,7389,7390,7391,7399,7407,7410,7415,7420,7425,7430,7434,7438,7439,7447,7448,7449,7450,7451,7459,7464,7469,7470,7471,7472,7497,7503,7508,7511,7515,7518,7522,7532,7535,7540,7543,7547,7648,7656,7670,7683,7687,7702,7713,7716,7727,7732,7736,7771,7772,7773,7785,7793,7801,7809,7817,7837,7840,7867,7872,7892,7895,7898,7905,7918,7927,7930,7950,7960,7964,7968,7981,7985,7989,7993,7999,8003,8020,8028,8032,8036,8040,8043,8047,8051,8055,8065,8072,8079,8083,8109,8119,8144,8153,8173,8183,8187,8197,8222,8232,8235,8239,8240,8241,8242,8246,8252,8258,8259,8272,8273,8274,8277,8280,8283,8286,8289,8292,8295,8298,8301,8304,8307,8310,8313,8316,8319,8322,8325,8328,8331,8334,8337,8338,8343,8344,8357,8367,8371,8376,8381,8385,8388,8392,8396,8399,8403,8406,8410,8415,8420,8423,8430,8434,8438,8447,8452,8457,8458,8462,8465,8469,8482,8487,8495,8499,8503,8520,8524,8529,8547,8554,8558,8588,8591,8594,8597,8600,8603,8606,8625,8631,8639,8646,8658,8666,8671,8676,8680,8691,8695,8703,8706,8711,8712,8713,8714,8718,8722,8726,8730,8765,8768,8772,8776,8810,8813,8817,8821,8830,8836,8839,8849,8853,8854,8861,8865,8872,8873,8874,8877,8882,8887,8888,8892,8907,8926,8930,8931,8943,8953,8954,8966,8971,8995,8998,9004,9007,9016,9024,9028,9031,9034,9037,9041,9044,9061,9065,9068,9083,9086,9094,9099,9106,9111,9112,9117,9118,9124,9130,9136,9168,9179,9196,9203,9207,9210,9223,9232,9236,9241,9245,9249,9253,9257,9261,9265,9269,9274,9277,9289,9294,9303,9306,9313,9314,9318,9327,9333,9337,9338,9342,9363,9369,9373,9377,9378,9396,9397,9398,9399,9400,9405,9408,9409,9415,9416,9428,9440,9447,9448,9453,9458,9459,9463,9477,9482,9488,9494,9500,9505,9511,9517,9518,9524,9539,9544,9553,9562,9565,9579,9584,9595,9599,9608,9617,9618,9625,9828,9845,9855,10402,10469,10515,10572,10584,10680,10728,10837,10857,10878,10884,10892,10998,11191,11214,11220,11264,11268,11328,11383,11437,11498,11505,11513,11528,11584,11595,11608,11620,11658,11705,11711,11723,11729,11735,11787,11792,11797,11804,12028,12040,12086,12115,12348,12353,12386,12389,12393,12435,12473,12491,12549,12606,12614,12770,12808,12816,12929,12933,13216,13279,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "1910,2152,2605,2660,2716,2776,2837,2902,3057,3107,3157,3210,3268,3367,3436,3484,3555,3627,3699,3772,3839,3888,3942,3979,4030,4090,4137,4193,4242,4300,4354,4415,4471,4522,4582,4638,4701,4750,4806,4862,4912,4971,5026,5088,5135,5189,5245,5297,5352,5406,5460,5514,5563,5621,5675,5732,5788,5835,5888,5944,6004,6067,6126,6188,6238,6292,6346,6394,6451,6504,7066,7120,7953,8064,8126,8182,8242,8295,8356,8435,8516,8588,8667,8747,8823,8901,8970,9046,9123,9194,9267,9343,9421,9490,9566,9643,9707,9778,12200,12296,12349,12453,12520,12573,12625,12675,12733,12798,12846,18340,18407,18473,18531,18600,18658,18727,18797,18870,18944,19012,19079,19149,19215,19288,19348,19424,19484,19544,19619,19687,19753,19821,19881,19940,19997,20063,20125,20182,20250,20323,20393,20455,20516,20584,20646,20716,20785,20841,20900,20962,21024,21091,21148,21209,21270,21331,21392,21448,21504,21560,21616,21674,21732,21790,21848,21905,21962,22019,22076,22135,22194,22252,22335,22418,22491,22545,22614,22670,22751,22832,22903,23238,23291,23349,24090,24204,24250,24310,24364,24434,24504,24569,24635,24700,24768,24837,24905,25035,25088,25147,25205,25303,25689,25741,25787,25837,25893,25987,26045,26103,26165,26228,26290,26349,26409,26474,26540,26605,26667,26729,26791,26853,26915,26977,27043,27110,27176,27239,27303,27366,27434,27495,27557,27619,27682,27746,27809,27873,27951,28010,28076,28156,28217,28311,28369,28802,29140,29204,30292,33492,33566,33637,33703,33777,33846,33917,33990,34061,34129,34202,34278,34348,34426,34494,34560,34621,34690,34754,34820,34888,34954,35017,35085,35156,35221,35294,35357,35438,35502,35568,35638,35708,35778,35848,36649,36706,36764,36823,36883,36942,37001,37060,37119,37178,37237,37296,37355,37414,37473,37533,37594,37656,37717,37778,37839,37900,37961,38022,38082,38143,38204,38264,38325,38386,38447,38508,38569,38630,38691,38752,38813,38874,38935,39003,39072,39142,39211,39280,39349,39418,39487,39556,39625,39694,39763,39832,39892,39953,40015,40076,40137,40198,40259,40320,40381,40442,40503,40564,40625,40687,40750,40814,40877,40940,41003,41066,41129,41192,41255,41318,41381,41444,41505,41567,41630,41692,41754,41816,41878,41940,42002,42064,42126,42188,42250,42307,42393,42473,42563,42658,42750,42842,42932,43015,43108,43195,43292,43383,43484,43571,43674,43763,43862,43954,44054,44138,44232,44320,44418,44501,44592,44686,44785,44887,44985,45085,45172,45272,45358,45454,45542,45623,45714,45810,45903,45996,46087,46172,46266,46355,46453,46546,46648,46736,46840,46931,47031,47124,47225,47310,47405,47494,47593,47678,47770,47865,47965,48068,48167,48270,48359,48460,48547,48644,48732,48828,48920,49020,49110,49208,49293,49382,49471,49564,49651,50414,50480,50556,50625,50704,50777,50857,50937,51014,51082,51160,51236,51307,51388,51461,51544,51619,51704,51777,51858,51939,52013,52097,52167,52245,52315,52395,52473,52545,52627,52697,52774,52854,52939,53027,53111,53198,53272,53350,53428,53499,53580,53671,53754,53850,53948,54055,54120,54186,54239,54315,54381,54468,54544,61795,62173,62768,62822,62901,62979,63052,63117,63180,63246,63317,63388,63458,63520,63589,63655,63715,63782,63849,63905,63956,64009,64061,64115,64186,64249,64308,64370,64429,64502,64569,64639,64699,64762,64837,64909,65005,65076,65132,65203,65260,65317,65383,65447,65518,65575,65628,65691,65743,65801,67106,67175,67241,67300,67383,67442,67499,67566,67636,67710,67772,67841,67911,68010,68107,68206,68292,68378,68459,68534,68623,68714,68798,68857,68903,68969,69026,69093,69150,69232,69297,69363,69486,69570,69691,69756,69818,69916,69990,70073,70162,70226,70305,70379,70441,70537,70602,70661,70717,70773,70833,70940,70987,71047,71108,71172,71233,71293,71351,71394,71443,71495,71546,71598,71647,71696,71761,71827,71887,71948,72004,72063,72112,72160,72218,72275,72377,72434,72509,72557,72608,72670,72735,72787,72861,72924,72987,73055,73105,73167,73227,73284,73344,73393,73461,73567,73669,73738,73809,73865,73914,74014,74085,74195,74284,74375,74457,74555,74611,74712,74822,74921,74984,75090,75167,75279,75406,75518,75645,75715,75829,75960,76057,76125,76243,76346,76464,76525,76599,76666,76771,76893,76967,77034,77144,77243,77316,77413,77535,77653,77771,77832,77954,78071,78139,78245,78347,78427,78498,78594,78661,78735,78809,78895,78983,79073,79151,79228,79328,79399,79520,79641,79705,79830,79904,80028,80152,80219,80328,80456,80568,80647,80725,80826,80897,81019,81141,81206,81332,81444,81550,81618,81717,81821,81884,81950,82034,82147,82260,82378,82456,82528,82664,82800,82885,83025,83163,83301,83443,83525,83634,83745,83873,84001,84133,84263,84393,84527,84589,84685,84752,84869,84990,85087,85169,85256,85343,85474,85605,85740,85817,85894,86005,86119,86193,86302,86414,86516,86612,86716,86783,86877,86949,87059,87165,87238,87329,87431,87534,87629,87736,87841,87963,88085,88211,88270,88328,88452,88576,88704,88822,88940,89062,89148,89245,89379,89513,89593,89731,89863,89995,90131,90206,90282,90385,90459,90572,90653,90710,90771,90830,90890,90948,91009,91067,91117,91166,91233,91292,91351,91400,91471,91555,91625,91696,91776,91845,91908,91976,92042,92110,92175,92241,92318,92396,92502,92608,92704,92833,92922,93049,93115,93184,93270,93336,93419,93517,93613,93709,93807,93916,94011,94100,94162,94222,94287,94344,94425,94479,94536,94633,94743,94804,94919,95040,95135,95227,95320,95422,95478,95537,95586,95678,95727,95781,95835,95889,95943,95997,96052,96162,96272,96380,96490,96600,96710,96820,96928,97034,97138,97242,97346,97441,97536,97629,97722,97826,97932,98036,98140,98233,98326,98419,98512,98620,98726,98832,98938,99035,99130,99225,99320,99426,99532,99638,99744,99842,99938,100034,100132,100197,100301,100359,100423,100484,100546,100606,100671,100733,100801,100859,100922,100985,101052,101127,101200,101266,101318,101371,101423,101480,101564,101659,101744,101825,101905,101982,102061,102138,102212,102286,102357,102437,102509,102584,102649,102710,102770,102845,102919,102992,103062,103134,103204,103277,103341,103411,103457,103526,103578,103663,103746,103803,103869,103936,104002,104083,104158,104214,104267,104328,104386,104436,104485,104534,104583,104645,104697,104742,104823,104874,104928,104981,105035,105086,105135,105201,105252,105313,105374,105436,105486,105527,105604,105663,105722,105781,105842,105898,105954,106021,106082,106147,106202,106267,106336,106404,106482,106551,106611,106682,106756,106821,106893,106963,107030,107114,107183,107250,107320,107383,107450,107518,107601,107680,107770,107847,107915,107982,108060,108117,108174,108242,108308,108364,108424,108483,108537,108587,108637,108685,108747,108798,108871,108951,109031,109095,109162,109233,109291,109352,109418,109477,109544,109604,109664,109727,109795,109856,109923,110001,110071,110120,110177,110246,110307,110395,110483,110571,110659,110746,110833,110920,111007,111065,111139,111209,111265,111336,111401,111463,111538,111611,111701,111767,111833,111894,111958,112020,112078,112149,112232,112291,112362,112428,112493,112554,112613,112684,112750,112815,112898,112974,113049,113130,113190,113259,113329,113398,113453,113509,113565,113626,113684,113740,113794,113849,113911,113968,114062,114131,114232,114283,114353,114416,114472,114530,114589,114643,114729,114813,114883,114952,115022,115137,115258,115325,115392,115467,115534,115593,115647,115701,115755,115808,115860,118049,118186,121069,121118,121168,121259,121307,121363,121421,121483,121538,121596,121667,121731,121790,121852,121918,122422,122567,122611,122656,123675,123726,123773,123818,123869,123920,123971,124355,124800,124866,125045,125108,125248,125305,125359,125414,125472,125527,125586,125642,125711,125780,125849,125919,125982,126045,126108,126171,126236,126301,126366,126431,126494,126558,126622,126686,126737,126815,126893,126964,127036,127109,127181,127247,127313,127381,127449,127515,127582,127656,127719,127776,127836,127901,127968,128033,128090,128151,128209,128313,128423,128532,128636,128714,128779,128846,128912,128982,129029,129081,129257,129996,133289,133439,133570,133754,133932,134170,134359,135039,135137,135252,135337,140154,140314,140532,140621,140778,141831,141984,142138,142445,142632,142728,142818,142914,143004,143170,143293,143416,143586,143692,143807,143922,144024,144130,144247,144362,144444,144617,144785,144933,145092,145247,145420,145537,145654,145822,145934,146048,146220,146396,146554,146687,146799,146945,147097,147229,147372,147494,147672,147808,147904,148040,148135,148302,148395,148487,148674,148830,149008,149172,149354,149671,149853,150035,150225,150457,150647,150824,150986,151143,151253,151436,151573,151777,151961,152145,152305,152463,152647,152874,153077,153248,153468,153690,153845,154045,154229,154332,154522,154663,154828,154999,155199,155403,155605,155770,155975,156174,156373,156570,156661,156810,156960,157044,157193,157338,157490,157631,157797,158582,158660,158961,159127,159282,162105,162263,162427,166893,167116,173340,173617,173889,174167,174412,174474,178658,179109,179565,190702,190850,191364,191801,192235,196575,196660,196781,196880,197285,197382,197499,197586,197709,197810,198216,198315,198434,198527,198634,198977,199084,199329,199450,199859,200107,200207,200312,200431,200940,201087,201206,201457,201590,202005,202259,207474,207721,207846,208163,208284,208512,208633,208766,208913,229544,230036,250416,250840,271516,272010,292435,292861,297702,303119,307210,312641,317383,322760,326744,330736,336127,336674,337107,337863,338093,338336,339469,387639,388543,389127,389600,391030,391774,392967,394021,394499,394792,395175,396690,397455,398598,399039,399480,400076,400350,400761,401777,401955,402708,402845,402936,405130,405396,405718,405928,406037,406156,406340,407458,407928,408679,411262,413113,413489,413717,413973,414232,414808,415162,415284,415423,415715,415975,416903,417189,417592,417994,418337,418549,418750,418963,419252,430139,430212,430299,430384,444019,444131,444237,444360,444492,444615,444745,444869,445002,445133,445258,445375,445495,445627,445755,445869,445987,446100,446221,446409,446596,446777,446960,447144,447309,447491,447611,447731,447839,447949,448061,448169,448279,448444,448610,448762,448927,449028,449148,449319,449480,449643,449804,449971,450090,450207,450387,450569,450750,450933,451088,451233,451355,451490,451653,451846,451972,452124,452266,452436,452592,452764,459527,459722,459814,459987,460149,460244,460413,460507,460596,460839,460928,461221,461637,462057,462478,462904,463321,463737,464154,464572,464986,465456,465929,466401,466812,467283,467755,467945,468151,468257,468365,468471,468583,468697,468809,468923,469039,469153,469261,469371,469479,469741,470120,470524,470671,470779,470889,470997,471111,471520,471934,472050,472468,472709,473139,473574,473984,474406,474816,474938,475347,475763,475885,476103,478923,478991,479335,479415,479771,479921,480065,480141,480253,480343,480605,480870,480978,481130,481238,481314,481426,481516,481618,481726,481834,481934,482042,482127,482231,482318,482396,482510,482602,482866,483133,483243,483396,483506,483590,483979,484077,484185,484279,484409,484517,484639,484775,484883,485003,485137,485259,485387,485529,485655,485795,485921,486039,486171,486269,486379,486679,486791,486909,487373,487489,487792,487918,488014,488415,488525,488649,488787,488897,489019,489331,489455,489585,490061,490189,490504,490642,490804,491020,491176,492383,492451,492535,492639,492842,493031,493232,493425,493630,493943,494155,494321,494437,494683,494899,495212,495638,496100,496337,496489,496749,496893,497035,500267,500381,500501,500617,500711,501032,501131,501249,501350,501629,501914,502193,502475,502728,502987,503240,503496,503920,503996,507246,508601,509045,510899,511474,511682,512692,513072,513238,513379,518399,518825,518937,519072,519225,519422,519593,519776,519951,520138,520410,520568,520652,520756,521243,521799,521957,522176,522407,522630,522865,523087,523353,523491,524090,524204,524342,524454,524578,525149,525644,526190,526335,526428,526520,528447,529017,529315,529504,529710,529903,530113,530997,531142,531534,531692,531909,539965,540397,541272,541892,542089,543037,543802,543925,544698,544919,545119,547096,547196,547286,547972,548725,549490,550253,551028,552241,552406,554019,554340,555403,555613,555783,556353,557248,557881,558047,559533,560149,560385,560606,561564,561829,562094,562341,562755,562991,564276,564725,564912,565161,565403,565579,565820,566053,566278,566873,567348,567872,568133,569484,569959,571185,571655,572703,573155,573399,573856,575101,575584,575734,576078,576224,576362,576498,576786,577290,577799,577915,578817,578939,579051,579228,579494,579764,580030,580298,580554,580814,581070,581328,581580,581836,582088,582342,582574,582810,583062,583318,583570,583824,584056,584290,584402,584827,584951,586043,586858,587054,587378,587767,588119,588360,588574,588873,589065,589380,589587,589933,590233,590634,590853,591266,591503,591873,592597,592952,593221,593361,593615,593759,594036,595028,595437,596069,596415,596783,597857,598220,598620,600128,600713,601031,603566,603760,603978,604204,604416,604615,604822,606026,606321,606878,607268,607900,608377,608622,608973,609219,609979,610243,610666,610857,611236,611324,611432,611540,611853,612178,612497,612828,615531,615719,615980,616229,618813,619005,619270,619523,620055,620463,620662,621246,621481,621605,622017,622231,622633,622736,622866,623041,623293,623489,623629,623823,624834,625903,626191,626321,627098,627755,627901,628607,628845,630385,630535,630952,631117,631803,632273,632469,632560,632644,632788,633022,633189,634117,634403,634563,635178,635337,635665,635892,636404,636766,636845,637184,637289,637654,638025,638386,640260,640889,641965,642389,642642,642794,643842,644579,644782,645028,645275,645493,645735,646056,646320,646625,646848,647159,647348,648063,648332,648826,649052,649492,649651,649935,650680,651045,651350,651508,651746,653065,653463,653691,653911,654053,655343,655449,655579,655717,655841,656129,656298,656398,656683,656797,657680,658435,658874,658998,659244,659437,659571,659762,660541,660759,661050,661329,661646,661868,662163,662446,662550,662891,663707,664023,664584,665090,665295,666081,666486,667147,667336,667887,668453,668573,668975,676710,677240,677539,696136,698578,700172,702179,702518,706213,708225,710520,710960,711712,711896,712107,716765,738071,738799,739001,740136,740286,742873,744686,752371,754470,754811,755319,755830,757624,757884,758500,758995,760032,761898,762089,762422,762578,762771,765163,765392,765600,765770,774833,775131,776474,777484,785945,786061,787285,787422,787568,789967,791105,791636,793413,795146,795394,801475,802689,802864,806823,806970,817981,820355,824599,824694,824787,824850,824932,825025,825118,825205,825303,825394,825485,825573,825657,825753,825857,825957,826063,826166,826267,826371,826477,826576,826682,826784,826891,827000,827111,827242,827362,827478,827596,827695,827802,827918,828037,828165,828254,828349,828426,828515,828606,828699,828773,828870,828965,829063,829162,829266,829362,829464,829567,829667,829770,829855,829956,830054,830144,830239,830326,830432,830534,830628,830719,830813,830889,830981,831070,831173,831284,831367,831453,831548,831645,831741,831829,831930,832031,832134,832240,832338,832435,832530,832628,832731,832831,832934,833039,833157,833273,833368,833461,833546,833642,833736,833828,833930,834037,834120,834224,834329,834429,834530,834635,834735,834836,834935,835037,835131,835238,835340,835443,835536,835632,835734,835837,835933,836035,836138,836235,836338,836436,836540,836645,836742,836850,836964,837079,837187,837301,837416,837518,837623,837731,837841,837957,838074,838169,838266,838365,838470,838576,838675,838780,838886,838986,839092,839193,839300,839419,839518,839623,839725,839827,839927,840030,840125,840229,840314,840418,840522,840620,840724,840830,840928,841033,841131,841244,841338,841427,841516,841599,841690,841773,841871,841961,842057,842146,842240,842328,842424,842509,842617,842718,842819,842917,843023,843114,843213,843310,843408,843504,843597,843707,843805,843900,844010,844102,844202,844301,844388,844492,844597,844696,844803,844910,845009,845118,845210,845321,845432,845543,845647,845762,845878,846005,846125,846222,846321,846413,846512,846604,846703,846789,846883,846986,847082,847185,847281,847384,847481,847579,847682,847775,847865,847966,848049,848140,848225,848317,848420,848515,848611,848704,848798,848877,848984,849075,849174,849267,849370,849474,849575,849676,849780,849874,849978,850082,850195,850301,850407,850515,850632,850733,850841,850941,851044,851149,851256,851352,851431,851521,851605,851697,851770,851867,851949,852034,852119,852216,852309,852404,852503,852600,852691,852782,852874,852969,853076,853184,853286,853383,853480,853573,853660,853744,853841,853938,854031,854118,854209,854308,854407,854502,854591,854672,854771,854875,854972,855077,855174,855258,855357,855461,855558,855663,855760,855858,855959,856065,856164,856271,856370,856469,856560,856649,856738,856820,856913,857004,857115,857216,857316,857428,857541,857639,857747,857841,857941,858030,858122,858233,858343,858438,858554,858680,858806,858925,859053,859178,859303,859421,859548,859657,859766,859879,860002,860125,860241,860366,860463,860571,860693,860809,860925,861034,861122,861223,861312,861413,861500,861588,861685,861777,861883,861983,862059",
+ "endLines": "40,46,57,58,59,60,61,62,65,66,67,68,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,139,140,160,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,244,246,247,249,250,251,252,253,254,255,256,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,448,453,454,455,473,475,476,477,478,479,480,481,482,483,484,485,489,490,491,492,493,495,504,505,506,507,508,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,547,548,559,567,568,594,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,1027,1033,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1757,1758,1807,1808,1809,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1832,1835,1836,1837,1856,1857,1858,1859,1860,1861,1862,1870,1878,1879,1882,1883,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1945,1963,2013,2014,2015,2016,2017,2018,2019,2027,2028,2029,2030,2079,2080,2083,2084,2085,2096,2097,2098,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2151,2154,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2216,2217,2218,2219,2220,2257,2258,2259,2314,2315,2398,2402,2406,2410,2411,2415,2486,2493,2501,2666,2676,2685,2694,2703,2764,2765,2766,2772,2773,2774,2775,2776,2777,2783,2784,2785,2786,2787,2792,2793,2797,2798,2804,2808,2809,2810,2811,2821,2822,2823,2827,2828,2834,2838,2839,2911,2912,2916,2917,2920,2921,2922,2923,3186,3193,3453,3459,3722,3729,3989,3995,4058,4140,4192,4274,4336,4418,4482,4534,4616,4624,4630,4641,4645,4649,4662,4677,5453,5460,5466,5483,5496,5516,5533,5542,5547,5554,5574,5587,5604,5610,5616,5623,5627,5633,5647,5650,5660,5661,5662,5710,5714,5718,5722,5723,5724,5727,5743,5750,5764,5809,5810,5841,5845,5849,5854,5861,5867,5868,5871,5875,5880,5893,5897,5902,5907,5912,5915,5918,5921,5925,5929,6069,6070,6071,6072,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6342,6346,6350,6354,6358,6362,6366,6367,6368,6369,6370,6371,6372,6373,6377,6381,6382,6386,6387,6390,6394,6397,6400,6403,6407,6410,6413,6417,6421,6425,6429,6432,6433,6434,6435,6438,6442,6445,6448,6451,6454,6457,6460,6464,6534,6535,6538,6541,6542,6545,6546,6547,6551,6552,6557,6564,6571,6578,6585,6592,6599,6606,6613,6620,6629,6638,6647,6654,6663,6672,6675,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6694,6699,6704,6707,6708,6709,6710,6711,6719,6727,6728,6736,6740,6748,6756,6764,6772,6780,6781,6789,6797,6798,6801,6804,6842,6847,6849,6854,6858,6862,6863,6864,6865,6869,6873,6874,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6897,6901,6902,6906,6907,6908,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6937,6938,6939,6945,6946,6950,6952,6953,6958,6959,6960,6961,6962,6963,6967,6968,6969,6975,6976,6980,6982,6986,6990,6994,6998,7011,7012,7013,7016,7019,7022,7025,7028,7033,7037,7040,7041,7046,7050,7055,7061,7067,7072,7076,7081,7085,7089,7130,7131,7132,7133,7134,7138,7139,7140,7141,7145,7149,7153,7157,7161,7165,7169,7173,7179,7180,7221,7235,7240,7266,7273,7276,7287,7292,7295,7298,7353,7359,7360,7363,7366,7369,7372,7375,7378,7381,7385,7388,7389,7390,7398,7406,7409,7414,7419,7424,7429,7433,7437,7438,7446,7447,7448,7449,7450,7458,7463,7468,7469,7470,7471,7496,7502,7507,7510,7514,7517,7521,7531,7534,7539,7542,7546,7550,7655,7669,7682,7686,7701,7712,7715,7726,7731,7735,7770,7771,7772,7784,7792,7800,7808,7816,7836,7839,7866,7871,7891,7894,7897,7904,7917,7926,7929,7949,7959,7963,7967,7980,7984,7988,7992,7998,8002,8019,8027,8031,8035,8039,8042,8046,8050,8054,8064,8071,8078,8082,8108,8118,8143,8152,8172,8182,8186,8196,8221,8231,8234,8238,8239,8240,8241,8245,8251,8257,8258,8271,8272,8273,8276,8279,8282,8285,8288,8291,8294,8297,8300,8303,8306,8309,8312,8315,8318,8321,8324,8327,8330,8333,8336,8337,8342,8343,8356,8366,8370,8375,8380,8384,8387,8391,8395,8398,8402,8405,8409,8414,8419,8422,8429,8433,8437,8446,8451,8456,8457,8461,8464,8468,8481,8486,8494,8498,8502,8519,8523,8528,8546,8553,8557,8587,8590,8593,8596,8599,8602,8605,8624,8630,8638,8645,8657,8665,8670,8675,8679,8690,8694,8702,8705,8710,8711,8712,8713,8717,8721,8725,8729,8764,8767,8771,8775,8809,8812,8816,8820,8829,8835,8838,8848,8852,8853,8860,8864,8871,8872,8873,8876,8881,8886,8887,8891,8906,8925,8929,8930,8942,8952,8953,8965,8970,8994,8997,9003,9006,9015,9023,9027,9030,9033,9036,9040,9043,9060,9064,9067,9082,9085,9093,9098,9105,9110,9111,9116,9117,9123,9129,9135,9167,9178,9195,9202,9206,9209,9222,9231,9235,9240,9244,9248,9252,9256,9260,9264,9268,9273,9276,9288,9293,9302,9305,9312,9313,9317,9326,9332,9336,9337,9341,9362,9368,9372,9376,9377,9395,9396,9397,9398,9399,9404,9407,9408,9414,9415,9427,9439,9446,9447,9452,9457,9458,9462,9476,9481,9487,9493,9499,9504,9510,9516,9517,9523,9538,9543,9552,9561,9564,9578,9583,9594,9598,9607,9616,9617,9624,9632,9844,9854,9901,10468,10514,10571,10583,10641,10688,10836,10856,10877,10883,10891,10997,11011,11213,11219,11263,11267,11273,11333,11393,11468,11504,11512,11527,11583,11594,11607,11619,11657,11704,11710,11722,11728,11734,11786,11791,11796,11803,11838,12039,12085,12114,12177,12352,12358,12388,12392,12420,12472,12490,12508,12605,12613,12637,12773,12815,12908,12932,13211,13223,13288,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731",
+ "endColumns": "55,48,54,55,59,60,64,54,49,49,52,57,47,68,47,70,71,71,72,66,48,53,36,50,59,46,55,48,57,53,60,55,50,59,55,62,48,55,55,49,58,54,61,46,53,55,51,54,53,53,53,48,57,53,56,55,46,52,55,59,62,58,61,49,53,53,47,56,52,55,53,55,62,61,55,59,52,60,78,80,71,78,79,75,77,68,75,76,70,72,75,77,68,75,76,63,70,71,50,52,54,66,52,51,49,57,64,47,50,66,65,57,68,57,68,69,72,73,67,66,69,65,72,59,75,59,59,74,67,65,67,59,58,56,65,61,56,67,72,69,61,60,67,61,69,68,55,58,61,61,66,56,60,60,60,60,55,55,55,55,57,57,57,57,56,56,56,56,58,58,57,82,82,72,53,68,55,80,80,70,9,52,57,57,57,45,59,53,69,69,64,65,64,67,68,67,9,52,58,57,51,49,51,45,49,55,46,57,57,61,62,61,58,59,64,65,64,61,61,61,61,61,61,65,66,65,62,63,62,67,60,61,61,62,63,62,63,77,58,65,79,60,52,57,50,44,63,58,61,73,70,65,73,68,70,72,70,67,72,75,69,77,67,65,60,68,63,65,67,65,62,67,70,64,72,62,80,63,65,69,69,69,69,66,56,57,58,59,58,58,58,58,58,58,58,58,58,58,59,60,61,60,60,60,60,60,60,59,60,60,59,60,60,60,60,60,60,60,60,60,60,60,67,68,69,68,68,68,68,68,68,68,68,68,68,59,60,61,60,60,60,60,60,60,60,60,60,60,61,62,63,62,62,62,62,62,62,62,62,62,62,60,61,62,61,61,61,61,61,61,61,61,61,61,56,85,79,89,94,91,91,89,82,92,86,96,90,100,86,102,88,98,91,99,83,93,87,97,82,90,93,98,101,97,99,86,99,85,95,87,80,90,95,92,92,90,84,93,88,97,92,101,87,103,90,99,92,100,84,94,88,98,84,91,94,99,102,98,102,88,100,86,96,87,95,91,99,89,97,84,88,88,92,86,90,65,75,68,78,72,79,79,76,67,77,75,70,80,72,82,74,84,72,80,80,73,83,69,77,69,79,77,71,81,69,76,79,84,87,83,86,73,77,77,70,80,90,82,95,97,106,64,65,52,75,65,86,75,75,64,54,53,78,77,72,64,62,65,70,70,69,61,68,65,59,66,66,55,50,52,51,53,70,62,58,61,58,72,66,69,59,62,74,71,95,70,55,70,56,56,65,63,70,56,52,62,51,57,66,68,65,58,82,58,56,66,69,73,61,68,69,98,96,98,85,85,80,74,88,90,83,58,45,65,56,66,56,81,64,65,122,83,120,64,61,97,73,82,88,63,78,73,61,95,64,58,55,55,59,106,46,59,60,63,60,59,57,42,48,51,50,51,48,48,64,65,59,60,55,58,48,47,57,56,101,56,74,47,50,61,64,51,73,62,62,67,49,61,59,56,59,48,67,105,101,68,70,55,48,99,70,109,88,90,81,97,55,100,109,98,62,105,76,111,126,111,126,69,113,130,96,67,117,102,117,60,73,66,104,121,73,66,109,98,72,96,121,117,117,60,121,116,67,105,101,79,70,95,66,73,73,85,87,89,77,76,99,70,120,120,63,124,73,123,123,66,108,127,111,78,77,100,70,121,121,64,125,111,105,67,98,103,62,65,83,112,112,117,77,71,135,135,84,139,137,137,141,81,108,110,127,127,131,129,129,133,61,95,66,116,120,96,81,86,86,130,130,134,76,76,110,113,73,108,111,101,95,103,66,93,71,109,105,72,90,101,102,94,106,104,121,121,125,58,57,123,123,127,117,117,121,85,96,133,133,79,137,131,131,135,74,75,102,73,112,80,56,60,58,59,57,60,57,49,48,66,58,58,48,70,83,69,70,79,68,62,67,65,67,64,65,76,77,105,105,95,128,88,126,65,68,85,65,82,97,95,95,97,108,94,88,61,59,64,56,80,53,56,96,109,60,114,120,94,91,92,101,55,58,48,91,48,53,53,53,53,53,54,109,109,107,109,109,109,109,107,105,103,103,103,94,94,92,92,103,105,103,103,92,92,92,92,107,105,105,105,96,94,94,94,105,105,105,105,97,95,95,97,64,103,57,63,60,61,59,64,61,67,57,62,62,66,74,72,65,51,52,51,56,83,94,84,80,79,76,78,76,73,73,70,79,71,74,64,60,59,74,73,72,69,71,69,72,63,69,45,68,51,84,82,56,65,66,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,50,53,52,53,50,48,65,50,60,60,61,49,40,76,58,58,58,60,55,55,66,60,64,54,64,68,67,77,68,59,70,73,64,71,69,66,83,68,66,69,62,66,67,82,78,89,76,67,66,77,56,56,67,65,55,59,58,53,49,49,47,61,50,72,79,79,63,66,70,57,60,65,58,66,59,59,62,67,60,66,77,69,48,56,68,60,87,87,87,87,86,86,86,86,57,73,69,55,70,64,61,74,72,89,65,65,60,63,61,57,70,82,58,70,65,64,60,58,70,65,64,82,75,74,80,59,68,69,68,54,55,55,60,57,55,53,54,61,56,93,68,100,50,69,62,55,57,58,53,85,83,69,68,69,114,120,66,66,74,66,58,53,53,53,52,51,73,136,139,48,49,49,47,55,57,61,54,57,70,63,58,61,65,65,42,43,44,42,50,46,44,50,50,50,50,47,65,61,62,71,56,53,54,57,54,58,55,68,68,68,69,62,62,62,62,64,64,64,64,62,63,63,63,50,77,77,70,71,72,71,65,65,67,67,65,66,73,62,56,59,64,66,64,56,60,57,103,109,108,103,77,64,66,65,69,46,51,49,56,12,149,130,183,177,237,188,168,97,114,84,78,11,64,88,156,156,152,153,58,186,95,89,95,89,165,122,122,169,105,114,114,101,105,116,114,81,172,167,147,158,154,172,116,116,167,111,113,171,175,157,132,111,145,151,131,142,121,177,135,95,135,94,166,92,91,186,11,11,11,181,316,181,181,189,231,189,176,161,156,109,182,136,203,183,183,159,157,183,226,202,170,219,221,154,199,183,102,189,140,164,170,199,203,201,164,204,198,198,196,90,148,149,83,148,144,151,140,165,160,77,300,165,154,101,11,163,185,222,124,10,10,10,10,61,10,10,10,10,10,10,10,10,10,84,120,98,10,96,116,86,122,100,10,98,118,92,106,10,106,10,120,10,10,99,104,118,10,146,118,10,132,10,10,111,10,124,10,120,10,120,132,146,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,136,90,10,10,10,10,108,118,10,10,10,10,10,94,10,10,10,10,10,10,121,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,111,105,122,131,122,129,123,132,130,124,116,119,131,127,113,117,112,120,10,10,10,10,10,10,10,119,119,107,109,111,107,109,10,10,151,10,100,10,10,10,10,10,10,10,10,10,10,10,10,10,144,121,134,10,10,10,10,10,10,10,10,10,10,91,10,10,94,10,93,88,10,88,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,105,107,105,111,113,111,113,115,113,107,109,107,10,10,10,10,107,109,107,113,10,10,115,10,10,10,10,10,10,10,121,10,10,121,10,10,10,10,10,10,10,10,75,111,89,10,10,107,10,107,75,111,89,101,107,107,99,107,84,103,86,77,113,91,10,10,109,10,109,83,10,97,107,93,129,107,121,135,107,119,133,121,127,141,125,139,125,117,131,97,109,10,111,117,10,115,10,10,95,10,109,123,137,109,121,10,123,129,10,127,10,10,10,10,10,10,67,83,103,10,10,10,10,10,10,10,10,115,10,10,10,10,10,10,10,10,10,10,10,113,119,115,93,10,98,117,100,10,10,10,10,10,10,10,10,10,75,10,10,10,10,10,10,10,10,10,10,10,10,111,10,10,10,10,10,10,10,10,10,83,103,10,10,10,10,10,10,10,10,10,137,10,113,137,111,123,10,10,10,144,92,91,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,99,89,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,145,137,135,10,10,10,115,10,121,111,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,111,10,123,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,139,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,87,107,107,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,123,10,10,10,102,129,10,10,10,139,10,10,10,10,129,10,10,145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,78,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,158,10,10,10,10,157,10,10,10,10,10,141,10,105,129,137,123,10,10,99,10,113,10,10,10,123,10,10,133,10,10,10,10,10,10,10,10,10,103,10,10,10,10,10,10,10,10,10,10,10,10,119,10,10,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,94,92,62,81,92,92,86,97,90,90,87,83,95,103,99,105,102,100,103,105,98,105,101,106,108,110,130,119,115,117,98,106,115,118,127,88,94,76,88,90,92,73,96,94,97,98,103,95,101,102,99,102,84,100,97,89,94,86,105,101,93,90,93,75,91,88,102,110,82,85,94,96,95,87,100,100,102,105,97,96,94,97,102,99,102,104,117,115,94,92,84,95,93,91,101,106,82,103,104,99,100,104,99,100,98,101,93,106,101,102,92,95,101,102,95,101,102,96,102,97,103,104,96,107,113,114,107,113,114,101,104,107,109,115,116,94,96,98,104,105,98,104,105,99,105,100,106,118,98,104,101,101,99,102,94,103,84,103,103,97,103,105,97,104,97,112,93,88,88,82,90,82,97,89,95,88,93,87,95,84,107,100,100,97,105,90,98,96,97,95,92,109,97,94,109,91,99,98,86,103,104,98,106,106,98,108,91,110,110,110,103,114,115,126,119,96,98,91,98,91,98,85,93,102,95,102,95,102,96,97,102,92,89,100,82,90,84,91,102,94,95,92,93,78,106,90,98,92,102,103,100,100,103,93,103,103,112,105,105,107,116,100,107,99,102,104,106,95,78,89,83,91,72,96,81,84,84,96,92,94,98,96,90,90,91,94,106,107,101,96,96,92,86,83,96,96,92,86,90,98,98,94,88,80,98,103,96,104,96,83,98,103,96,104,96,97,100,105,98,106,98,98,90,88,88,81,92,90,110,100,99,111,112,97,107,93,99,88,91,110,109,94,115,125,125,118,127,124,124,117,126,108,108,112,122,122,115,124,96,107,121,115,115,108,87,100,88,100,86,87,96,91,105,99,75,76",
+ "endOffsets": "1961,2196,2655,2711,2771,2832,2897,2952,3102,3152,3205,3263,3311,3431,3479,3550,3622,3694,3767,3834,3883,3937,3974,4025,4085,4132,4188,4237,4295,4349,4410,4466,4517,4577,4633,4696,4745,4801,4857,4907,4966,5021,5083,5130,5184,5240,5292,5347,5401,5455,5509,5558,5616,5670,5727,5783,5830,5883,5939,5999,6062,6121,6183,6233,6287,6341,6389,6446,6499,6555,7115,7171,8011,8121,8177,8237,8290,8351,8430,8511,8583,8662,8742,8818,8896,8965,9041,9118,9189,9262,9338,9416,9485,9561,9638,9702,9773,9845,12246,12344,12399,12515,12568,12620,12670,12728,12793,12841,12892,18402,18468,18526,18595,18653,18722,18792,18865,18939,19007,19074,19144,19210,19283,19343,19419,19479,19539,19614,19682,19748,19816,19876,19935,19992,20058,20120,20177,20245,20318,20388,20450,20511,20579,20641,20711,20780,20836,20895,20957,21019,21086,21143,21204,21265,21326,21387,21443,21499,21555,21611,21669,21727,21785,21843,21900,21957,22014,22071,22130,22189,22247,22330,22413,22486,22540,22609,22665,22746,22827,22898,23027,23286,23344,23402,24143,24245,24305,24359,24429,24499,24564,24630,24695,24763,24832,24900,25030,25083,25142,25200,25252,25348,25736,25782,25832,25888,25935,26040,26098,26160,26223,26285,26344,26404,26469,26535,26600,26662,26724,26786,26848,26910,26972,27038,27105,27171,27234,27298,27361,27429,27490,27552,27614,27677,27741,27804,27868,27946,28005,28071,28151,28212,28265,28364,28415,28842,29199,29258,30349,33561,33632,33698,33772,33841,33912,33985,34056,34124,34197,34273,34343,34421,34489,34555,34616,34685,34749,34815,34883,34949,35012,35080,35151,35216,35289,35352,35433,35497,35563,35633,35703,35773,35843,35910,36701,36759,36818,36878,36937,36996,37055,37114,37173,37232,37291,37350,37409,37468,37528,37589,37651,37712,37773,37834,37895,37956,38017,38077,38138,38199,38259,38320,38381,38442,38503,38564,38625,38686,38747,38808,38869,38930,38998,39067,39137,39206,39275,39344,39413,39482,39551,39620,39689,39758,39827,39887,39948,40010,40071,40132,40193,40254,40315,40376,40437,40498,40559,40620,40682,40745,40809,40872,40935,40998,41061,41124,41187,41250,41313,41376,41439,41500,41562,41625,41687,41749,41811,41873,41935,41997,42059,42121,42183,42245,42302,42388,42468,42558,42653,42745,42837,42927,43010,43103,43190,43287,43378,43479,43566,43669,43758,43857,43949,44049,44133,44227,44315,44413,44496,44587,44681,44780,44882,44980,45080,45167,45267,45353,45449,45537,45618,45709,45805,45898,45991,46082,46167,46261,46350,46448,46541,46643,46731,46835,46926,47026,47119,47220,47305,47400,47489,47588,47673,47765,47860,47960,48063,48162,48265,48354,48455,48542,48639,48727,48823,48915,49015,49105,49203,49288,49377,49466,49559,49646,49737,50475,50551,50620,50699,50772,50852,50932,51009,51077,51155,51231,51302,51383,51456,51539,51614,51699,51772,51853,51934,52008,52092,52162,52240,52310,52390,52468,52540,52622,52692,52769,52849,52934,53022,53106,53193,53267,53345,53423,53494,53575,53666,53749,53845,53943,54050,54115,54181,54234,54310,54376,54463,54539,54615,61855,62223,62817,62896,62974,63047,63112,63175,63241,63312,63383,63453,63515,63584,63650,63710,63777,63844,63900,63951,64004,64056,64110,64181,64244,64303,64365,64424,64497,64564,64634,64694,64757,64832,64904,65000,65071,65127,65198,65255,65312,65378,65442,65513,65570,65623,65686,65738,65796,65863,67170,67236,67295,67378,67437,67494,67561,67631,67705,67767,67836,67906,68005,68102,68201,68287,68373,68454,68529,68618,68709,68793,68852,68898,68964,69021,69088,69145,69227,69292,69358,69481,69565,69686,69751,69813,69911,69985,70068,70157,70221,70300,70374,70436,70532,70597,70656,70712,70768,70828,70935,70982,71042,71103,71167,71228,71288,71346,71389,71438,71490,71541,71593,71642,71691,71756,71822,71882,71943,71999,72058,72107,72155,72213,72270,72372,72429,72504,72552,72603,72665,72730,72782,72856,72919,72982,73050,73100,73162,73222,73279,73339,73388,73456,73562,73664,73733,73804,73860,73909,74009,74080,74190,74279,74370,74452,74550,74606,74707,74817,74916,74979,75085,75162,75274,75401,75513,75640,75710,75824,75955,76052,76120,76238,76341,76459,76520,76594,76661,76766,76888,76962,77029,77139,77238,77311,77408,77530,77648,77766,77827,77949,78066,78134,78240,78342,78422,78493,78589,78656,78730,78804,78890,78978,79068,79146,79223,79323,79394,79515,79636,79700,79825,79899,80023,80147,80214,80323,80451,80563,80642,80720,80821,80892,81014,81136,81201,81327,81439,81545,81613,81712,81816,81879,81945,82029,82142,82255,82373,82451,82523,82659,82795,82880,83020,83158,83296,83438,83520,83629,83740,83868,83996,84128,84258,84388,84522,84584,84680,84747,84864,84985,85082,85164,85251,85338,85469,85600,85735,85812,85889,86000,86114,86188,86297,86409,86511,86607,86711,86778,86872,86944,87054,87160,87233,87324,87426,87529,87624,87731,87836,87958,88080,88206,88265,88323,88447,88571,88699,88817,88935,89057,89143,89240,89374,89508,89588,89726,89858,89990,90126,90201,90277,90380,90454,90567,90648,90705,90766,90825,90885,90943,91004,91062,91112,91161,91228,91287,91346,91395,91466,91550,91620,91691,91771,91840,91903,91971,92037,92105,92170,92236,92313,92391,92497,92603,92699,92828,92917,93044,93110,93179,93265,93331,93414,93512,93608,93704,93802,93911,94006,94095,94157,94217,94282,94339,94420,94474,94531,94628,94738,94799,94914,95035,95130,95222,95315,95417,95473,95532,95581,95673,95722,95776,95830,95884,95938,95992,96047,96157,96267,96375,96485,96595,96705,96815,96923,97029,97133,97237,97341,97436,97531,97624,97717,97821,97927,98031,98135,98228,98321,98414,98507,98615,98721,98827,98933,99030,99125,99220,99315,99421,99527,99633,99739,99837,99933,100029,100127,100192,100296,100354,100418,100479,100541,100601,100666,100728,100796,100854,100917,100980,101047,101122,101195,101261,101313,101366,101418,101475,101559,101654,101739,101820,101900,101977,102056,102133,102207,102281,102352,102432,102504,102579,102644,102705,102765,102840,102914,102987,103057,103129,103199,103272,103336,103406,103452,103521,103573,103658,103741,103798,103864,103931,103997,104078,104153,104209,104262,104323,104381,104431,104480,104529,104578,104640,104692,104737,104818,104869,104923,104976,105030,105081,105130,105196,105247,105308,105369,105431,105481,105522,105599,105658,105717,105776,105837,105893,105949,106016,106077,106142,106197,106262,106331,106399,106477,106546,106606,106677,106751,106816,106888,106958,107025,107109,107178,107245,107315,107378,107445,107513,107596,107675,107765,107842,107910,107977,108055,108112,108169,108237,108303,108359,108419,108478,108532,108582,108632,108680,108742,108793,108866,108946,109026,109090,109157,109228,109286,109347,109413,109472,109539,109599,109659,109722,109790,109851,109918,109996,110066,110115,110172,110241,110302,110390,110478,110566,110654,110741,110828,110915,111002,111060,111134,111204,111260,111331,111396,111458,111533,111606,111696,111762,111828,111889,111953,112015,112073,112144,112227,112286,112357,112423,112488,112549,112608,112679,112745,112810,112893,112969,113044,113125,113185,113254,113324,113393,113448,113504,113560,113621,113679,113735,113789,113844,113906,113963,114057,114126,114227,114278,114348,114411,114467,114525,114584,114638,114724,114808,114878,114947,115017,115132,115253,115320,115387,115462,115529,115588,115642,115696,115750,115803,115855,115929,118181,118321,121113,121163,121213,121302,121358,121416,121478,121533,121591,121662,121726,121785,121847,121913,121979,122460,122606,122651,122694,123721,123768,123813,123864,123915,123966,124017,124398,124861,124923,125103,125175,125300,125354,125409,125467,125522,125581,125637,125706,125775,125844,125914,125977,126040,126103,126166,126231,126296,126361,126426,126489,126553,126617,126681,126732,126810,126888,126959,127031,127104,127176,127242,127308,127376,127444,127510,127577,127651,127714,127771,127831,127896,127963,128028,128085,128146,128204,128308,128418,128527,128631,128709,128774,128841,128907,128977,129024,129076,129126,129309,130311,133434,133565,133749,133927,134165,134354,134523,135132,135247,135332,135411,140309,140374,140616,140773,140930,141979,142133,142192,142627,142723,142813,142909,142999,143165,143288,143411,143581,143687,143802,143917,144019,144125,144242,144357,144439,144612,144780,144928,145087,145242,145415,145532,145649,145817,145929,146043,146215,146391,146549,146682,146794,146940,147092,147224,147367,147489,147667,147803,147899,148035,148130,148297,148390,148482,148669,148825,149003,149167,149349,149666,149848,150030,150220,150452,150642,150819,150981,151138,151248,151431,151568,151772,151956,152140,152300,152458,152642,152869,153072,153243,153463,153685,153840,154040,154224,154327,154517,154658,154823,154994,155194,155398,155600,155765,155970,156169,156368,156565,156656,156805,156955,157039,157188,157333,157485,157626,157792,157953,158655,158956,159122,159277,159379,162258,162422,162608,167111,167236,173612,173884,174162,174407,174469,174754,179104,179560,180069,190845,191359,191796,192230,192673,196655,196776,196875,197280,197377,197494,197581,197704,197805,198211,198310,198429,198522,198629,198972,199079,199324,199445,199854,200102,200202,200307,200426,200935,201082,201201,201452,201585,202000,202254,202366,207716,207841,208158,208279,208507,208628,208761,208908,229539,230031,250411,250835,271511,272005,292430,292856,297697,303114,307205,312636,317378,322755,326739,330731,336122,336669,337102,337858,338088,338331,339464,340393,388538,389122,389595,391025,391769,392962,394016,394494,394787,395170,396685,397450,398593,399034,399475,400071,400345,400756,401772,401950,402703,402840,402931,405125,405391,405713,405923,406032,406151,406335,407453,407923,408674,411257,411352,413484,413712,413968,414227,414803,415157,415279,415418,415710,415970,416898,417184,417587,417989,418332,418544,418745,418958,419247,419532,430207,430294,430379,430478,444126,444232,444355,444487,444610,444740,444864,444997,445128,445253,445370,445490,445622,445750,445864,445982,446095,446216,446404,446591,446772,446955,447139,447304,447486,447606,447726,447834,447944,448056,448164,448274,448439,448605,448757,448922,449023,449143,449314,449475,449638,449799,449966,450085,450202,450382,450564,450745,450928,451083,451228,451350,451485,451648,451841,451967,452119,452261,452431,452587,452759,453050,459717,459809,459982,460144,460239,460408,460502,460591,460834,460923,461216,461632,462052,462473,462899,463316,463732,464149,464567,464981,465451,465924,466396,466807,467278,467750,467940,468146,468252,468360,468466,468578,468692,468804,468918,469034,469148,469256,469366,469474,469736,470115,470519,470666,470774,470884,470992,471106,471515,471929,472045,472463,472704,473134,473569,473979,474401,474811,474933,475342,475758,475880,476098,476282,478986,479330,479410,479766,479916,480060,480136,480248,480338,480600,480865,480973,481125,481233,481309,481421,481511,481613,481721,481829,481929,482037,482122,482226,482313,482391,482505,482597,482861,483128,483238,483391,483501,483585,483974,484072,484180,484274,484404,484512,484634,484770,484878,484998,485132,485254,485382,485524,485650,485790,485916,486034,486166,486264,486374,486674,486786,486904,487368,487484,487787,487913,488009,488410,488520,488644,488782,488892,489014,489326,489450,489580,490056,490184,490499,490637,490799,491015,491171,491375,492446,492530,492634,492837,493026,493227,493420,493625,493938,494150,494316,494432,494678,494894,495207,495633,496095,496332,496484,496744,496888,497030,500262,500376,500496,500612,500706,501027,501126,501244,501345,501624,501909,502188,502470,502723,502982,503235,503491,503915,503991,507241,508596,509040,510894,511469,511677,512687,513067,513233,513374,518394,518820,518932,519067,519220,519417,519588,519771,519946,520133,520405,520563,520647,520751,521238,521794,521952,522171,522402,522625,522860,523082,523348,523486,524085,524199,524337,524449,524573,525144,525639,526185,526330,526423,526515,528442,529012,529310,529499,529705,529898,530108,530992,531137,531529,531687,531904,532165,540392,541267,541887,542084,543032,543797,543920,544693,544914,545114,547091,547191,547281,547967,548720,549485,550248,551023,552236,552401,554014,554335,555398,555608,555778,556348,557243,557876,558042,559528,560144,560380,560601,561559,561824,562089,562336,562750,562986,564271,564720,564907,565156,565398,565574,565815,566048,566273,566868,567343,567867,568128,569479,569954,571180,571650,572698,573150,573394,573851,575096,575579,575729,576073,576219,576357,576493,576781,577285,577794,577910,578812,578934,579046,579223,579489,579759,580025,580293,580549,580809,581065,581323,581575,581831,582083,582337,582569,582805,583057,583313,583565,583819,584051,584285,584397,584822,584946,586038,586853,587049,587373,587762,588114,588355,588569,588868,589060,589375,589582,589928,590228,590629,590848,591261,591498,591868,592592,592947,593216,593356,593610,593754,594031,595023,595432,596064,596410,596778,597852,598215,598615,600123,600708,601026,603561,603755,603973,604199,604411,604610,604817,606021,606316,606873,607263,607895,608372,608617,608968,609214,609974,610238,610661,610852,611231,611319,611427,611535,611848,612173,612492,612823,615526,615714,615975,616224,618808,619000,619265,619518,620050,620458,620657,621241,621476,621600,622012,622226,622628,622731,622861,623036,623288,623484,623624,623818,624829,625898,626186,626316,627093,627750,627896,628602,628840,630380,630530,630947,631112,631798,632268,632464,632555,632639,632783,633017,633184,634112,634398,634558,635173,635332,635660,635887,636399,636761,636840,637179,637284,637649,638020,638381,640255,640884,641960,642384,642637,642789,643837,644574,644777,645023,645270,645488,645730,646051,646315,646620,646843,647154,647343,648058,648327,648821,649047,649487,649646,649930,650675,651040,651345,651503,651741,653060,653458,653686,653906,654048,655338,655444,655574,655712,655836,656124,656293,656393,656678,656792,657675,658430,658869,658993,659239,659432,659566,659757,660536,660754,661045,661324,661641,661863,662158,662441,662545,662886,663702,664018,664579,665085,665290,666076,666481,667142,667331,667882,668448,668568,668970,669504,677235,677534,679879,698573,700167,702174,702513,704946,706449,710515,710955,711707,711891,712102,716760,717343,738794,738996,740131,740281,740456,743093,745275,753618,754806,755314,755825,757619,757879,758495,758990,760027,761893,762084,762417,762573,762766,765158,765387,765595,765765,767537,775126,776469,777479,779444,786056,786225,787417,787563,788248,791100,791631,792057,795141,795389,796159,801586,802859,806074,806965,817837,818219,820721,824689,824782,824845,824927,825020,825113,825200,825298,825389,825480,825568,825652,825748,825852,825952,826058,826161,826262,826366,826472,826571,826677,826779,826886,826995,827106,827237,827357,827473,827591,827690,827797,827913,828032,828160,828249,828344,828421,828510,828601,828694,828768,828865,828960,829058,829157,829261,829357,829459,829562,829662,829765,829850,829951,830049,830139,830234,830321,830427,830529,830623,830714,830808,830884,830976,831065,831168,831279,831362,831448,831543,831640,831736,831824,831925,832026,832129,832235,832333,832430,832525,832623,832726,832826,832929,833034,833152,833268,833363,833456,833541,833637,833731,833823,833925,834032,834115,834219,834324,834424,834525,834630,834730,834831,834930,835032,835126,835233,835335,835438,835531,835627,835729,835832,835928,836030,836133,836230,836333,836431,836535,836640,836737,836845,836959,837074,837182,837296,837411,837513,837618,837726,837836,837952,838069,838164,838261,838360,838465,838571,838670,838775,838881,838981,839087,839188,839295,839414,839513,839618,839720,839822,839922,840025,840120,840224,840309,840413,840517,840615,840719,840825,840923,841028,841126,841239,841333,841422,841511,841594,841685,841768,841866,841956,842052,842141,842235,842323,842419,842504,842612,842713,842814,842912,843018,843109,843208,843305,843403,843499,843592,843702,843800,843895,844005,844097,844197,844296,844383,844487,844592,844691,844798,844905,845004,845113,845205,845316,845427,845538,845642,845757,845873,846000,846120,846217,846316,846408,846507,846599,846698,846784,846878,846981,847077,847180,847276,847379,847476,847574,847677,847770,847860,847961,848044,848135,848220,848312,848415,848510,848606,848699,848793,848872,848979,849070,849169,849262,849365,849469,849570,849671,849775,849869,849973,850077,850190,850296,850402,850510,850627,850728,850836,850936,851039,851144,851251,851347,851426,851516,851600,851692,851765,851862,851944,852029,852114,852211,852304,852399,852498,852595,852686,852777,852869,852964,853071,853179,853281,853378,853475,853568,853655,853739,853836,853933,854026,854113,854204,854303,854402,854497,854586,854667,854766,854870,854967,855072,855169,855253,855352,855456,855553,855658,855755,855853,855954,856060,856159,856266,856365,856464,856555,856644,856733,856815,856908,856999,857110,857211,857311,857423,857536,857634,857742,857836,857936,858025,858117,858228,858338,858433,858549,858675,858801,858920,859048,859173,859298,859416,859543,859652,859761,859874,859997,860120,860236,860361,860458,860566,860688,860804,860920,861029,861117,861218,861307,861408,861495,861583,861680,861772,861878,861978,862054,862131"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/af29352e176ea3b8abedc6c07df19817/transformed/lifecycle-runtime-2.6.2/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "42",
+ "endOffsets": "93"
+ },
+ "to": {
+ "startLines": "1871",
+ "startColumns": "4",
+ "startOffsets": "124403",
+ "endColumns": "42",
+ "endOffsets": "124441"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/b73c48e7945b65b0f2e33750a3e043ff/transformed/jetified-startup-runtime-1.1.1/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "82",
+ "endOffsets": "133"
+ },
+ "to": {
+ "startLines": "2011",
+ "startColumns": "4",
+ "startOffsets": "133153",
+ "endColumns": "82",
+ "endOffsets": "133231"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/96596d913bdc5ef7499b36edf6e5d946/transformed/jetified-preferencex-simplemenu-1.1.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,11,15,32,50,53",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,123,184,234,282,336,574,836,1684,2539,2674",
+ "endLines": "2,3,4,5,6,10,14,31,49,52,56",
+ "endColumns": "67,60,49,47,53,12,12,12,24,24,24",
+ "endOffsets": "118,179,229,277,331,569,831,1679,2534,2669,2859"
+ },
+ "to": {
+ "startLines": "925,1745,1746,1747,1946,2416,6186,6190,12528,12546,13212",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "54872,117389,117450,117500,129314,174759,436554,436816,792479,793278,817842",
+ "endLines": "925,1745,1746,1747,1946,2419,6189,6206,12545,12548,13215",
+ "endColumns": "67,60,49,47,53,12,12,12,24,24,24",
+ "endOffsets": "54935,117445,117495,117543,129363,174992,436811,437659,793273,793408,817976"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/b9781f640fb34cbb0ce36e1194115f38/transformed/databinding-runtime-8.2.0/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "40",
+ "endOffsets": "91"
+ },
+ "to": {
+ "startLines": "1799",
+ "startColumns": "4",
+ "startOffsets": "120714",
+ "endColumns": "40",
+ "endOffsets": "120750"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/96f28d80a8df0531564877dc46411590/transformed/jetified-savedstate-1.2.1/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "53",
+ "endOffsets": "104"
+ },
+ "to": {
+ "startLines": "1873",
+ "startColumns": "4",
+ "startOffsets": "124506",
+ "endColumns": "53",
+ "endOffsets": "124555"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,23,24,25,42,45,51,57,60,66,70,73,80,86,89,95,100,105,112,114,120,126,134,139,146,151,157,161,168,172,178,184,187,192,193,194,199,215,238,243,257,268,348,358,368,386,392,439,461,485",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "105,178,247,311,366,434,501,566,623,680,728,776,837,900,963,1001,1058,1102,1242,1381,1431,1479,2917,3022,3378,3716,3862,4202,4414,4577,4984,5322,5445,5784,6023,6280,6651,6711,7049,7335,7784,8076,8464,8769,9113,9358,9688,9895,10163,10436,10580,10949,10996,11052,11308,12367,13788,14126,15012,15622,20168,20687,21229,22503,22763,25467,26989,28470",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,21,22,23,24,41,44,50,56,59,65,69,72,79,85,88,94,99,104,111,113,119,125,133,138,145,150,156,160,167,171,177,183,186,191,192,193,198,214,237,242,256,267,347,357,367,385,391,438,460,484,508",
+ "endColumns": "72,68,63,54,67,66,64,56,56,47,47,60,62,62,37,56,43,13,138,49,47,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,46,55,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24",
+ "endOffsets": "173,242,306,361,429,496,561,618,675,723,771,832,895,958,996,1053,1097,1237,1376,1426,1474,2912,3017,3373,3711,3857,4197,4409,4572,4979,5317,5440,5779,6018,6275,6646,6706,7044,7330,7779,8071,8459,8764,9108,9353,9683,9890,10158,10431,10575,10944,10991,11047,11303,12362,13783,14121,15007,15617,20163,20682,21224,22498,22758,25462,26984,28465,29984"
+ },
+ "to": {
+ "startLines": "592,924,1737,1738,1739,1740,1741,1742,1743,1826,1827,1828,1943,1944,2066,2082,2210,2222,2317,2354,2355,5811,6094,6097,6103,6109,6112,6118,6122,6125,6132,6138,6141,6147,6152,6157,6164,6166,6172,6178,6207,6212,6219,6224,6230,6234,6241,6245,6251,6257,6260,6264,6265,10397,10689,11145,11187,11475,12020,12207,12271,12281,12291,12298,12304,12422,12774,12791",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "30183,54803,116912,116976,117031,117099,117166,117231,117288,122127,122175,122223,129131,129194,139101,140475,158160,159450,167312,170277,170327,411357,431798,431903,432148,432486,432632,432972,433184,433347,433754,434092,434215,434554,434793,435050,435421,435481,435819,436105,437664,437956,438344,438649,438993,439238,439568,439775,440043,440316,440460,440661,440708,695951,706454,736510,737922,753823,774585,781256,783181,783463,783768,784030,784290,789515,801591,802121",
+ "endLines": "592,924,1737,1738,1739,1740,1741,1742,1743,1826,1827,1828,1943,1944,2066,2082,2210,2224,2317,2354,2355,5827,6096,6102,6108,6111,6117,6121,6124,6131,6137,6140,6146,6151,6156,6163,6165,6171,6177,6185,6211,6218,6223,6229,6233,6240,6244,6250,6256,6259,6263,6264,6265,10401,10699,11164,11190,11484,12027,12270,12280,12290,12297,12303,12346,12434,12790,12807",
+ "endColumns": "72,68,63,54,67,66,64,56,56,47,47,60,62,62,37,56,43,13,138,49,47,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,46,55,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24",
+ "endOffsets": "30251,54867,116971,117026,117094,117161,117226,117283,117340,122170,122218,122279,129189,129252,139134,140527,158199,159585,167446,170322,170370,412790,431898,432143,432481,432627,432967,433179,433342,433749,434087,434210,434549,434788,435045,435416,435476,435814,436100,436549,437951,438339,438644,438988,439233,439563,439770,440038,440311,440455,440656,440703,440759,696131,706850,737234,738066,754150,774828,783176,783458,783763,784025,784285,785708,789962,802116,802684"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,113,179,242,304,375,447,515,582,661",
+ "endColumns": "57,65,62,61,70,71,67,66,78,68",
+ "endOffsets": "108,174,237,299,370,442,510,577,656,725"
+ },
+ "to": {
+ "startLines": "614,615,616,617,1028,1029,2067,2087,2088,2089",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "31860,31918,31984,32047,61860,61931,139139,140998,141065,141144",
+ "endColumns": "57,65,62,61,70,71,67,66,78,68",
+ "endOffsets": "31913,31979,32042,32104,61926,61998,139202,141060,141139,141208"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values/colors.xml",
+ "from": {
+ "startLines": "5,6,7,3,2,8",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "161,226,277,108,55,326",
+ "endColumns": "64,50,48,51,52,50",
+ "endOffsets": "221,272,321,155,103,372"
+ },
+ "to": {
+ "startLines": "626,627,628,637,683,921",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "32604,32669,32720,33440,36596,54620",
+ "endColumns": "64,50,48,51,52,50",
+ "endOffsets": "32664,32715,32764,33487,36644,54666"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/src/main/res/values/strings.xml",
+ "from": {
+ "startLines": "110,114,118,181,185,190,79,83,18,106,108,107,102,103,101,105,104,109,201,203,202,200,99,97,98,240,241,242,244,245,243,246,247,196,195,197,180,179,189,178,198,25,34,33,38,48,44,46,45,47,51,53,49,36,37,39,40,41,42,26,28,27,32,31,29,124,176,167,166,172,174,173,168,169,170,171,175,131,132,161,162,159,160,129,130,148,149,150,151,152,125,128,126,127,134,135,137,139,140,155,156,153,154,142,144,145,146,147,143,164,165,123,157,158,56,66,71,72,73,67,69,70,94,95,88,89,90,91,92,74,77,75,93,87,63,64,55,57,59,60,58,61,21,19,22,20,23,221,220,226,213,212,225,231,224,222,218,214,215,216,219,211,208,217,209,232,210,233,234,227,230,228,229,223,207,237,206,204,205,235,236",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "7280,7474,7652,12357,12551,12786,5179,5431,821,6976,7144,7077,6688,6742,6627,6921,6863,7219,13370,13517,13451,13298,6565,6429,6500,16311,16369,16522,16754,16855,16601,16938,17014,13032,12969,13128,12272,12191,12712,12120,13231,1131,1794,1686,2076,2949,2584,2755,2657,2853,3176,3351,3044,1900,2009,2174,2272,2378,2475,1210,1330,1266,1604,1532,1394,7894,12068,11383,11336,11763,11889,11819,11430,11504,11582,11658,11974,8447,8523,10908,10987,10707,10791,8246,8327,9789,9873,9953,10048,10114,7953,8164,8028,8094,8668,8751,8922,9059,9175,10366,10447,10195,10275,9315,9467,9530,9617,9705,9392,11141,11232,7839,10529,10612,3502,4181,4552,4627,4700,4251,4420,4483,6276,6360,5707,5796,5893,5997,6095,4769,5018,4859,6209,5613,4056,4111,3422,3601,3778,3859,3697,3954,980,874,1030,926,1082,14850,14778,15254,14225,14164,15184,15609,15094,14960,14622,14282,14367,14450,14699,14101,13845,14533,13956,15737,14022,15834,15900,15324,15528,15394,15455,15023,13794,16104,13743,13624,13675,15966,16039",
+ "endLines": "113,117,121,184,188,193,82,86,18,106,108,107,102,103,101,105,104,109,201,203,202,200,99,97,98,240,241,242,244,245,243,246,247,196,195,197,180,179,189,178,198,25,34,33,38,48,44,46,45,47,52,53,50,36,37,39,40,41,42,26,28,27,32,31,30,124,176,167,166,172,174,173,168,169,170,171,175,131,133,161,163,159,160,129,130,148,149,150,151,152,125,128,126,127,134,136,138,139,141,155,156,153,154,142,144,145,146,147,143,164,165,123,157,158,56,66,71,72,73,68,69,70,94,95,88,89,90,91,92,74,78,76,93,87,63,64,55,57,59,60,58,61,21,19,22,20,23,221,220,226,213,212,225,231,224,222,218,214,215,216,219,211,208,217,209,232,210,233,234,227,230,228,229,223,207,237,206,204,205,235,236",
+ "endColumns": "14,14,14,14,14,14,14,14,52,100,74,66,53,120,60,54,57,60,80,106,65,71,60,70,64,57,152,78,100,82,152,75,100,95,62,102,84,80,73,70,65,78,104,107,97,94,72,97,97,95,53,69,25,108,66,97,105,96,107,55,63,63,81,71,24,58,50,46,46,55,84,69,73,77,75,104,93,75,23,78,33,83,116,80,119,83,79,94,65,80,74,81,65,69,82,51,22,115,24,80,81,79,90,76,62,86,87,83,74,90,103,54,82,94,98,69,74,72,68,48,62,68,83,67,88,96,103,97,113,89,50,49,66,93,54,68,79,95,80,94,80,100,49,51,51,53,47,109,71,69,56,60,69,127,89,62,76,84,82,82,78,62,110,88,65,96,78,65,65,69,80,60,72,70,50,42,50,50,67,72,64",
+ "endOffsets": "7469,7647,7833,12546,12707,12963,5426,5608,869,7072,7214,7139,6737,6858,6683,6971,6916,7275,13446,13619,13512,13365,6621,6495,6560,16364,16517,16596,16850,16933,16749,17009,17110,13123,13027,13226,12352,12267,12781,12186,13292,1205,1894,1789,2169,3039,2652,2848,2750,2944,3346,3416,3171,2004,2071,2267,2373,2470,2578,1261,1389,1325,1681,1599,1527,7948,12114,11425,11378,11814,11969,11884,11499,11577,11653,11758,12063,8518,8663,10982,11136,10786,10903,8322,8442,9868,9948,10043,10109,10190,8023,8241,8089,8159,8746,8917,9054,9170,9310,10442,10524,10270,10361,9387,9525,9612,9700,9784,9462,11227,11331,7889,10607,10702,3596,4246,4622,4695,4764,4415,4478,4547,6355,6423,5791,5888,5992,6090,6204,4854,5174,5013,6271,5702,4106,4175,3497,3692,3854,3949,3773,4050,1025,921,1077,975,1125,14955,14845,15319,14277,14220,15249,15732,15179,15018,14694,14362,14445,14528,14773,14159,13951,14617,14017,15829,14096,15895,15961,15389,15604,15450,15523,15089,13840,16142,13789,13670,13738,16034,16099"
+ },
+ "to": {
+ "startLines": "1948,1952,1956,1964,1968,1972,1976,1980,2012,2031,2032,2033,2034,2035,2036,2037,2038,2039,2059,2060,2061,2062,2063,2064,2065,2069,2070,2071,2072,2073,2074,2075,2076,2081,2086,2209,2211,2212,2213,2214,2221,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2238,2239,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2275,2276,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2294,2296,2297,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2318,2319,2320,2321,2322,2323,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2337,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "129438,129632,129810,130316,130510,130671,130853,131105,133236,135416,135517,135592,135659,135713,135834,135895,135950,136008,138578,138659,138766,138832,138904,138965,139036,139350,139408,139561,139640,139741,139824,139977,140053,140379,140935,158057,158204,158289,158370,158444,159384,159764,159843,159948,160056,160154,160249,160322,160420,160518,160614,160789,160859,160991,161100,161167,161265,161371,161468,161576,161632,161696,161760,161842,161914,162613,162672,162723,162770,162817,162873,162958,163028,163102,163180,163256,163361,163455,163531,163676,163755,163909,163993,164110,164191,164311,164395,164475,164570,164636,164717,164792,164874,164940,165010,165093,165264,165401,165517,165657,165738,165820,165900,165991,166068,166131,166218,166306,166390,166465,166556,166660,166715,166798,167451,167550,167620,167695,167768,167837,168006,168069,168138,168222,168290,168379,168476,168580,168678,168792,168882,169043,169202,169269,169363,169418,169487,169567,169663,169744,169839,169920,170021,170071,170123,170175,170229,170375,170485,170557,170627,170684,170745,170815,170943,171033,171096,171173,171258,171341,171424,171503,171566,171677,171766,171832,171929,172008,172074,172140,172210,172291,172352,172425,172496,172547,172590,172641,172692,172760,172833",
+ "endLines": "1951,1955,1959,1967,1971,1975,1979,1983,2012,2031,2032,2033,2034,2035,2036,2037,2038,2039,2059,2060,2061,2062,2063,2064,2065,2069,2070,2071,2072,2073,2074,2075,2076,2081,2086,2209,2211,2212,2213,2214,2221,2227,2228,2229,2230,2231,2232,2233,2234,2235,2237,2238,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2253,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2274,2275,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2293,2295,2296,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2318,2319,2320,2321,2322,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2336,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389",
+ "endColumns": "14,14,14,14,14,14,14,14,52,100,74,66,53,120,60,54,57,60,80,106,65,71,60,70,64,57,152,78,100,82,152,75,100,95,62,102,84,80,73,70,65,78,104,107,97,94,72,97,97,95,53,69,25,108,66,97,105,96,107,55,63,63,81,71,24,58,50,46,46,55,84,69,73,77,75,104,93,75,23,78,33,83,116,80,119,83,79,94,65,80,74,81,65,69,82,51,22,115,24,80,81,79,90,76,62,86,87,83,74,90,103,54,82,94,98,69,74,72,68,48,62,68,83,67,88,96,103,97,113,89,50,49,66,93,54,68,79,95,80,94,80,100,49,51,51,53,47,109,71,69,56,60,69,127,89,62,76,84,82,82,78,62,110,88,65,96,78,65,65,69,80,60,72,70,50,42,50,50,67,72,64",
+ "endOffsets": "129627,129805,129991,130505,130666,130848,131100,131282,133284,135512,135587,135654,135708,135829,135890,135945,136003,136064,138654,138761,138827,138899,138960,139031,139096,139403,139556,139635,139736,139819,139972,140048,140149,140470,140993,158155,158284,158365,158439,158510,159445,159838,159943,160051,160149,160244,160317,160415,160513,160609,160784,160854,160986,161095,161162,161260,161366,161463,161571,161627,161691,161755,161837,161909,162047,162667,162718,162765,162812,162868,162953,163023,163097,163175,163251,163356,163450,163526,163671,163750,163904,163988,164105,164186,164306,164390,164470,164565,164631,164712,164787,164869,164935,165005,165088,165259,165396,165512,165652,165733,165815,165895,165986,166063,166126,166213,166301,166385,166460,166551,166655,166710,166793,166888,167545,167615,167690,167763,167832,168001,168064,168133,168217,168285,168374,168471,168575,168673,168787,168877,169038,169197,169264,169358,169413,169482,169562,169658,169739,169834,169915,170016,170066,170118,170170,170224,170272,170480,170552,170622,170679,170740,170810,170938,171028,171091,171168,171253,171336,171419,171498,171561,171672,171761,171827,171924,172003,172069,172135,172205,172286,172347,172420,172491,172542,172585,172636,172687,172755,172828,172893"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/build/generated/crashlytics/res/freedom/debug/values/com_google_firebase_crashlytics_mappingfileid.xml",
+ "from": {
+ "startLines": "8",
+ "startColumns": "0",
+ "startOffsets": "278",
+ "endColumns": "173",
+ "endOffsets": "451"
+ },
+ "to": {
+ "startLines": "2040",
+ "startColumns": "4",
+ "startOffsets": "136069",
+ "endColumns": "175",
+ "endOffsets": "136240"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/ec5ff7c3ed671d28e624de1bf91058ca/transformed/lifecycle-viewmodel-2.6.2/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "49",
+ "endOffsets": "100"
+ },
+ "to": {
+ "startLines": "1874",
+ "startColumns": "4",
+ "startOffsets": "124560",
+ "endColumns": "49",
+ "endOffsets": "124605"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,98,99,103,104,105,106,112,122,155,176,209",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,115,187,275,340,406,475,538,608,676,748,818,879,953,1026,1087,1148,1210,1274,1336,1397,1465,1565,1625,1691,1764,1833,1890,1942,2004,2076,2152,2217,2276,2335,2395,2455,2515,2575,2635,2695,2755,2815,2875,2935,2994,3054,3114,3174,3234,3294,3354,3414,3474,3534,3594,3653,3713,3773,3832,3891,3950,4009,4068,4127,4162,4197,4252,4315,4370,4428,4486,4547,4610,4667,4718,4768,4829,4886,4952,4986,5021,5056,5126,5193,5265,5334,5403,5477,5549,5637,5708,5825,6026,6136,6337,6466,6538,6605,6808,7109,8840,9521,10203",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,97,98,102,103,104,105,111,121,154,175,208,214",
+ "endColumns": "59,71,87,64,65,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,66,71,68,68,73,71,87,70,116,12,109,12,128,71,66,24,24,24,24,24,24",
+ "endOffsets": "110,182,270,335,401,470,533,603,671,743,813,874,948,1021,1082,1143,1205,1269,1331,1392,1460,1560,1620,1686,1759,1828,1885,1937,1999,2071,2147,2212,2271,2330,2390,2450,2510,2570,2630,2690,2750,2810,2870,2930,2989,3049,3109,3169,3229,3289,3349,3409,3469,3529,3589,3648,3708,3768,3827,3886,3945,4004,4063,4122,4157,4192,4247,4310,4365,4423,4481,4542,4605,4662,4713,4763,4824,4881,4947,4981,5016,5051,5121,5188,5260,5329,5398,5472,5544,5632,5703,5820,6021,6131,6332,6461,6533,6600,6803,7104,8835,9516,10198,10365"
+ },
+ "to": {
+ "startLines": "456,602,603,620,621,922,923,1034,1035,1036,1037,1038,1039,1040,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1805,1806,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1863,1947,2020,2021,2022,2023,2024,2025,2026,2316,6521,6522,6526,6527,6531,7646,7647,10646,11012,11274,11307,11343,11376",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "23407,30855,30927,32224,32289,54671,54740,62228,62298,62366,62438,62508,62569,62643,115934,115995,116056,116118,116182,116244,116305,116373,116473,116533,116599,116672,116741,116798,116850,118326,118398,118474,118539,118598,118657,118717,118777,118837,118897,118957,119017,119077,119137,119197,119257,119316,119376,119436,119496,119556,119616,119676,119736,119796,119856,119916,119975,120035,120095,120154,120213,120272,120331,120390,120999,121034,122810,122865,122928,122983,123041,123099,123160,123223,123280,123331,123381,123442,123499,123565,123599,124022,129368,134528,134595,134667,134736,134805,134879,134951,167241,458769,458886,459087,459197,459398,539826,539898,705086,717348,740461,742192,743417,744099",
+ "endLines": "456,602,603,620,621,922,923,1034,1035,1036,1037,1038,1039,1040,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1805,1806,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1863,1947,2020,2021,2022,2023,2024,2025,2026,2316,6521,6525,6526,6530,6531,7646,7647,10651,11021,11306,11327,11375,11381",
+ "endColumns": "59,71,87,64,65,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,66,71,68,68,73,71,87,70,116,12,109,12,128,71,66,24,24,24,24,24,24",
+ "endOffsets": "23462,30922,31010,32284,32350,54735,54798,62293,62361,62433,62503,62564,62638,62711,115990,116051,116113,116177,116239,116300,116368,116468,116528,116594,116667,116736,116793,116845,116907,118393,118469,118534,118593,118652,118712,118772,118832,118892,118952,119012,119072,119132,119192,119252,119311,119371,119431,119491,119551,119611,119671,119731,119791,119851,119911,119970,120030,120090,120149,120208,120267,120326,120385,120444,121029,121064,122860,122923,122978,123036,123094,123155,123218,123275,123326,123376,123437,123494,123560,123594,123629,124052,129433,134590,134662,134731,134800,134874,134946,135034,167307,458881,459082,459192,459393,459522,539893,539960,705284,717644,742187,742868,744094,744261"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/2f2d8db9ce5a92716a7b278131d3edc4/transformed/coordinatorlayout-1.1.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,6,16",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,116,261,869",
+ "endLines": "2,5,15,104",
+ "endColumns": "60,12,24,24",
+ "endOffsets": "111,256,864,6075"
+ },
+ "to": {
+ "startLines": "131,9633,11054,11060",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "6719,669509,731280,731491",
+ "endLines": "131,9635,11059,11143",
+ "endColumns": "60,12,24,24",
+ "endOffsets": "6775,669649,731486,736002"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/e0a8b88020286343a0b41a7733e08913/transformed/jetified-play-services-oss-licenses-17.0.1/res/values/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9",
+ "startColumns": "0,0,0,0,0,0",
+ "startOffsets": "172,267,335,408,503,566",
+ "endColumns": "94,67,72,94,62,92",
+ "endOffsets": "266,334,407,502,565,658"
+ },
+ "to": {
+ "startLines": "2099,2100,2101,2208,2215,2225",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "142197,142296,142368,157958,158515,159590",
+ "endColumns": "98,71,76,98,66,96",
+ "endOffsets": "142291,142363,142440,158052,158577,159682"
+ }
+ },
+ {
+ "source": "/home/brian/Desktop/vpnhotspotmod/mobile/build/generated/res/processFreedomDebugGoogleServices/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "55,198,309,390,494,596,716,816",
+ "endColumns": "142,110,80,103,101,119,99,76",
+ "endOffsets": "193,304,385,489,591,711,811,888"
+ },
+ "to": {
+ "startLines": "2068,2090,2091,2092,2093,2094,2095,2226",
+ "startColumns": "4,4,4,4,4,4,4,4",
+ "startOffsets": "139207,141213,141324,141405,141509,141611,141731,159687",
+ "endColumns": "142,110,80,103,101,119,99,76",
+ "endOffsets": "139345,141319,141400,141504,141606,141726,141826,159759"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1a93693452ed0f01a93593682cd1380b/transformed/swiperefreshlayout-1.1.0/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "5",
+ "endColumns": "24",
+ "endOffsets": "287"
+ },
+ "to": {
+ "startLines": "12700",
+ "startColumns": "4",
+ "startOffsets": "798278",
+ "endLines": "12703",
+ "endColumns": "24",
+ "endOffsets": "798444"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/4cc022fbce7c02763a5fa4ea0cc4c6ef/transformed/recyclerview-1.1.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,4,5,6,7,8,9,10",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,111,170,218,274,349,425,497,563",
+ "endLines": "2,3,4,5,6,7,8,9,38",
+ "endColumns": "55,58,47,55,74,75,71,65,24",
+ "endOffsets": "106,165,213,269,344,420,492,558,2084"
+ },
+ "to": {
+ "startLines": "474,1092,1093,1094,1102,1103,1104,1804,12365",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "24148,66041,66100,66148,66815,66890,66966,120933,786445",
+ "endLines": "474,1092,1093,1094,1102,1103,1104,1804,12385",
+ "endColumns": "55,58,47,55,74,75,71,65,24",
+ "endOffsets": "24199,66095,66143,66199,66885,66961,67033,120994,787280"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/05e1501b39d811203dff176d82853387/transformed/constraintlayout-2.0.1/res/values/values.xml",
+ "from": {
+ "startLines": "2,3,8,9,17,18,19,20,21,22,23,27,28,29,30,38,46,47,48,53,54,59,64,65,66,71,72,77,78,83,84,85,91,92,93,98,103,104,105,109,110,111,112,115,116,119,122,123,124,125,126,129,132,133,134,135,140,143,146,147,148,153,154,155,158,161,162,165,168,171,174,175,176,179,182,183,188,189,194,197,200,201,202,203,204,205,206,207,208,209,221,222,223,224,225,231,232,233,236,241,242,243,244,253,259,260,264,265,266,267,276,356,280,281,282,283,284,285,286,287,288,289,290,291,296,297,298,299,300,301,302,308,309,315,322,334,335,336,337,338,355",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,112,298,359,650,702,750,801,853,914,960,1093,1145,1195,1246,1555,1867,1912,1971,2168,2225,2420,2602,2656,2713,2905,2963,3159,3215,3409,3466,3517,3739,3791,3846,4036,4212,4262,4318,4478,4539,4599,4669,4802,4870,4999,5125,5187,5252,5320,5387,5510,5635,5702,5767,5832,6013,6134,6255,6321,6388,6598,6667,6733,6858,6984,7051,7177,7304,7429,7556,7612,7677,7803,7926,7991,8199,8266,8446,8566,8686,8751,8813,8875,8937,8996,9056,9117,9178,9237,9738,9789,9838,9886,9944,10174,10221,10281,10387,10567,10613,10660,10712,11042,11280,11335,11474,11520,11575,11620,11961,36954,12098,16317,19922,20066,24372,24875,25295,25926,26578,26619,26673,26723,27345,27998,28496,31373,31719,31951,32091,32596,32726,33153,33548,34580,34812,34939,35045,35529,36651",
+ "endLines": "2,7,8,16,17,18,19,20,21,22,26,27,28,29,37,45,46,47,52,53,58,63,64,65,70,71,76,77,82,83,84,90,91,92,97,102,103,104,108,109,110,111,114,115,118,121,122,123,124,125,128,131,132,133,134,139,142,145,146,147,152,153,154,157,160,161,164,167,170,173,174,175,178,181,182,187,188,193,196,199,200,201,202,203,204,205,206,207,208,220,221,222,223,224,230,231,232,235,240,241,242,243,252,258,259,263,264,265,266,275,279,356,280,281,282,283,284,285,286,287,288,289,290,295,296,297,298,299,300,301,307,308,314,321,333,334,335,336,337,354,355",
+ "endColumns": "56,11,60,11,51,47,50,51,60,45,11,51,49,50,11,11,44,58,11,56,11,11,53,56,11,57,11,55,11,56,50,11,51,54,11,11,49,55,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,55,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11,50,48,47,57,11,46,59,11,11,45,46,51,11,11,54,11,45,54,44,11,11,40,4218,3604,143,4305,502,419,630,651,40,53,49,382,652,497,2876,345,231,139,35,129,133,35,35,231,126,105,483,35,302",
+ "endOffsets": "107,293,354,645,697,745,796,848,909,955,1088,1140,1190,1241,1550,1862,1907,1966,2163,2220,2415,2597,2651,2708,2900,2958,3154,3210,3404,3461,3512,3734,3786,3841,4031,4207,4257,4313,4473,4534,4594,4664,4797,4865,4994,5120,5182,5247,5315,5382,5505,5630,5697,5762,5827,6008,6129,6250,6316,6383,6593,6662,6728,6853,6979,7046,7172,7299,7424,7551,7607,7672,7798,7921,7986,8194,8261,8441,8561,8681,8746,8808,8870,8932,8991,9051,9112,9173,9232,9733,9784,9833,9881,9939,10169,10216,10276,10382,10562,10608,10655,10707,11037,11275,11330,11469,11515,11570,11615,11956,12093,36990,16312,19917,20061,24367,24870,25290,25921,26573,26614,26668,26718,27340,27993,28491,31368,31714,31946,32086,32591,32721,33148,33543,34575,34807,34934,35040,35524,36646,36949"
+ },
+ "to": {
+ "startLines": "39,41,47,48,56,64,70,128,129,130,132,136,137,138,141,149,159,187,188,193,194,199,204,205,206,211,212,217,218,223,224,225,231,232,233,238,243,257,258,262,263,264,265,268,269,272,275,276,277,278,279,282,285,286,287,288,293,296,299,300,301,306,307,308,311,314,315,318,321,324,327,328,329,332,335,336,341,342,347,350,353,354,355,356,357,358,359,360,361,362,449,450,451,452,457,463,464,465,468,494,509,549,550,560,566,569,573,574,575,576,585,1810,11050,11051,11052,11053,11144,11382,11394,11395,11396,11397,11398,11399,11404,11405,11406,12004,12005,12006,12007,12013,12014,12178,12185,12347,12678,12699,13289,13290,13307",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "1853,1966,2201,2262,2553,3009,3316,6560,6612,6673,6780,6913,6965,7015,7176,7485,7908,9850,9909,10106,10163,10358,10540,10594,10651,10843,10901,11097,11153,11347,11404,11455,11677,11729,11784,11974,12150,12897,12953,13113,13174,13234,13304,13437,13505,13634,13760,13822,13887,13955,14022,14145,14270,14337,14402,14467,14648,14769,14890,14956,15023,15233,15302,15368,15493,15619,15686,15812,15939,16064,16191,16247,16312,16438,16561,16626,16834,16901,17081,17201,17321,17386,17448,17510,17572,17631,17691,17752,17813,17872,23032,23083,23132,23180,23467,23697,23744,23804,23910,25257,25940,28420,28472,28847,29085,29263,29402,29448,29503,29548,29889,121218,719006,723225,726830,726974,736007,744266,745280,745911,746563,746604,746658,746708,747330,747983,748481,772805,773151,773383,773523,774028,774158,779449,779844,785713,797507,798172,820726,821210,822332",
+ "endLines": "39,45,47,55,56,64,70,128,129,130,135,136,137,138,148,156,159,187,192,193,198,203,204,205,210,211,216,217,222,223,224,230,231,232,237,242,243,257,261,262,263,264,267,268,271,274,275,276,277,278,281,284,285,286,287,292,295,298,299,300,305,306,307,310,313,314,317,320,323,326,327,328,331,334,335,340,341,346,349,352,353,354,355,356,357,358,359,360,361,373,449,450,451,452,462,463,464,467,472,494,509,549,558,565,566,572,573,574,575,584,588,1810,11050,11051,11052,11053,11144,11382,11394,11395,11396,11397,11398,11403,11404,11405,11406,12004,12005,12006,12012,12013,12019,12184,12196,12347,12678,12699,13289,13306,13307",
+ "endColumns": "56,11,60,11,51,47,50,51,60,45,11,51,49,50,11,11,44,58,11,56,11,11,53,56,11,57,11,55,11,56,50,11,51,54,11,11,49,55,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,55,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11,50,48,47,57,11,46,59,11,11,45,46,51,11,11,54,11,45,54,44,11,11,40,4218,3604,143,4305,502,419,630,651,40,53,49,382,652,497,2876,345,231,139,35,129,133,35,35,231,126,105,483,35,302",
+ "endOffsets": "1905,2147,2257,2548,2600,3052,3362,6607,6668,6714,6908,6960,7010,7061,7480,7792,7948,9904,10101,10158,10353,10535,10589,10646,10838,10896,11092,11148,11342,11399,11450,11672,11724,11779,11969,12145,12195,12948,13108,13169,13229,13299,13432,13500,13629,13755,13817,13882,13950,14017,14140,14265,14332,14397,14462,14643,14764,14885,14951,15018,15228,15297,15363,15488,15614,15681,15807,15934,16059,16186,16242,16307,16433,16556,16621,16829,16896,17076,17196,17316,17381,17443,17505,17567,17626,17686,17747,17808,17867,18335,23078,23127,23175,23233,23692,23739,23799,23905,24085,25298,25982,28467,28797,29080,29135,29397,29443,29498,29543,29884,30021,121254,723220,726825,726969,731275,736505,744681,745906,746558,746599,746653,746703,747325,747978,748476,751353,773146,773378,773518,774023,774153,774580,779839,780871,785940,797629,798273,821205,822327,822630"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res/values/values.xml",
+ "from": {
+ "startLines": "4,7",
+ "startColumns": "0,0",
+ "startOffsets": "243,406",
+ "endColumns": "63,166",
+ "endOffsets": "306,572"
+ },
+ "to": {
+ "startLines": "1884,2049",
+ "startColumns": "4,4",
+ "startOffsets": "125180,137285",
+ "endColumns": "67,166",
+ "endOffsets": "125243,137447"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res/values/values.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,33,46",
+ "startColumns": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
+ "startOffsets": "215,301,377,463,549,625,702,778,951,1052,1233,1354,1457,1637,1756,1868,1967,2155,2256,2437,2558,2733,2877,2936,2994,3164,3475",
+ "endLines": "4,5,6,7,8,9,10,11,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,45,64",
+ "endColumns": "85,75,85,85,75,76,75,75,100,180,120,102,179,118,111,98,187,100,180,120,174,143,58,57,74,20,20",
+ "endOffsets": "300,376,462,548,624,701,777,853,1051,1232,1353,1456,1636,1755,1867,1966,2154,2255,2436,2557,2732,2876,2935,2993,3068,3474,3887"
+ },
+ "to": {
+ "startLines": "629,630,631,632,633,634,635,636,2041,2042,2043,2044,2045,2046,2047,2048,2050,2051,2052,2053,2054,2055,2056,2057,2058,11485,12509",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "32769,32859,32939,33029,33119,33199,33280,33360,136245,136350,136531,136656,136763,136943,137066,137182,137452,137640,137745,137926,138051,138226,138374,138437,138499,754155,792062",
+ "endLines": "629,630,631,632,633,634,635,636,2041,2042,2043,2044,2045,2046,2047,2048,2050,2051,2052,2053,2054,2055,2056,2057,2058,11497,12527",
+ "endColumns": "89,79,89,89,79,80,79,79,104,180,124,106,179,122,115,102,187,104,180,124,174,147,62,61,78,20,20",
+ "endOffsets": "32854,32934,33024,33114,33194,33275,33355,33435,136345,136526,136651,136758,136938,137061,137177,137280,137635,137740,137921,138046,138221,138369,138432,138494,138573,754465,792474"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/622b253a2e7965522a66ea0393a411dd/transformed/jetified-activity-1.8.0/res/values/values.xml",
+ "from": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,97",
+ "endColumns": "41,59",
+ "endOffsets": "92,152"
+ },
+ "to": {
+ "startLines": "1831,1872",
+ "startColumns": "4,4",
+ "startOffsets": "122380,124446",
+ "endColumns": "41,59",
+ "endOffsets": "122417,124501"
+ }
+ },
+ {
+ "source": "/home/brian/.gradle/caches/transforms-3/66a888bdcfe85efcb169e9a3ffc92699/transformed/jetified-viewpager2-1.0.0/res/values/values.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "4",
+ "endColumns": "24",
+ "endOffsets": "160"
+ },
+ "to": {
+ "startLines": "13346",
+ "startColumns": "4",
+ "startOffsets": "824286",
+ "endLines": "13348",
+ "endColumns": "24",
+ "endOffsets": "824391"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/single/freedomDebug.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/single/freedomDebug.json
new file mode 100644
index 00000000..338ed0b5
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/single/freedomDebug.json
@@ -0,0 +1,262 @@
+[
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_action_settings_input_component.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_action_settings_input_component.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/xml_pref_settings.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/xml/pref_settings.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_listitem_manage.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/listitem_manage.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_device_battery_charging_full.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_device_battery_charging_full.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_launcher_monochrome.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_launcher_monochrome.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/raw_third_party_license_metadata.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-freedomDebug-61:/raw/third_party_license_metadata"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/menu_popup_client.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/menu/popup_client.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_toggle_hex.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/toggle_hex.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_device_bluetooth.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_device_bluetooth.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_preference_widget_edittext_autocomplete.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/preference_widget_edittext_autocomplete.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_fragment_ebeg.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/fragment_ebeg.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_action_code.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_action_code.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_action_settings_backup_restore.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_action_settings_backup_restore.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_action_settings_input_antenna.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_action_settings_input_antenna.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_action_build.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_action_build.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/raw_third_party_licenses.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-freedomDebug-61:/raw/third_party_licenses"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_image_flash_on.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_image_flash_on.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_settings_qrcode.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_settings_qrcode.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_action_perm_scan_wifi.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_action_perm_scan_wifi.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_listitem_repeater.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/listitem_repeater.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_action_settings.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_action_settings.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_launcher_background.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_launcher_background.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_dialog_wifi_ap.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/dialog_wifi_ap.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_alert_warning.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_alert_warning.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_action_autorenew.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_action_autorenew.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/xml_no_backup.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/xml/no_backup.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_fragment_tethering.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/fragment_tethering.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_hardware_device_hub.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_hardware_device_hub.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/mipmap_ic_launcher.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/mipmap/ic_launcher.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/xml_log_paths.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/xml/log_paths.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_image_remove_red_eye.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_image_remove_red_eye.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_dialog_nickname.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/dialog_nickname.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_content_add.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_content_add.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_action_update.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_action_update.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/menu_navigation.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/menu/navigation.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_device_network_wifi.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_device_network_wifi.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_device_devices.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_device_devices.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_social_people.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_social_people.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_preference_material.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/preference_material.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/menu_toolbar_tethering.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/menu/toolbar_tethering.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_device_wifi_lock.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_device_wifi_lock.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_device_usb.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_device_usb.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_image_looks_6.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_image_looks_6.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_listitem_interface.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/listitem_interface.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/menu_toolbar_configuration.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/menu/toolbar_configuration.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_content_inbox.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_content_inbox.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_toggle_star.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_toggle_star.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/xml_locales_config.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/xml/locales_config.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_action_settings_ethernet.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_action_settings_ethernet.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_quick_settings_tile_on.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_quick_settings_tile_on.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_preference_widget_material_switch.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/preference_widget_material_switch.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_device_wifi_tethering.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_device_wifi_tethering.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_fragment_clients.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/fragment_clients.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_av_closed_caption_off.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_av_closed_caption_off.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_dialog_wps.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/dialog_wps.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_action_wifi_protected_setup.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_action_wifi_protected_setup.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_file_downloading.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_file_downloading.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_action_card_giftcard.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_action_card_giftcard.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_content_file_copy.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_content_file_copy.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/mipmap_banner.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/mipmap/banner.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_activity_main.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/activity_main.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_av_closed_caption.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_av_closed_caption.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_launcher_foreground.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_launcher_foreground.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/layout_listitem_client.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/listitem_client.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-merged_res-64:/drawable_ic_action_bug_report.xml.flat",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/drawable/ic_action_bug_report.xml"
+ }
+]
\ No newline at end of file
diff --git a/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/single/layout.json b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/single/layout.json
new file mode 100644
index 00000000..7da94ffb
--- /dev/null
+++ b/mobile/build/intermediates/merged_res_blame_folder/freedomDebug/out/single/layout.json
@@ -0,0 +1,50 @@
+[
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63:/layout/preference_widget_edittext_autocomplete.xml",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/preference_widget_edittext_autocomplete.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63:/layout/preference_widget_material_switch.xml",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/preference_widget_material_switch.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63:/layout/listitem_manage.xml",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/listitem_manage.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63:/layout/activity_main.xml",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/activity_main.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63:/layout/fragment_tethering.xml",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/fragment_tethering.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63:/layout/fragment_clients.xml",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/fragment_clients.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63:/layout/dialog_wifi_ap.xml",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/dialog_wifi_ap.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63:/layout/listitem_client.xml",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/listitem_client.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63:/layout/listitem_repeater.xml",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/listitem_repeater.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63:/layout/listitem_interface.xml",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/listitem_interface.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63:/layout/preference_material.xml",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/preference_material.xml"
+ },
+ {
+ "merged": "hanson.xyz.vpnhotspotmod.mobile-mergeFreedomDebugResources-63:/layout/fragment_ebeg.xml",
+ "source": "hanson.xyz.vpnhotspotmod.mobile-main-68:/layout/fragment_ebeg.xml"
+ }
+]
\ No newline at end of file
diff --git a/mobile/build/intermediates/navigation_json/freedomDebug/navigation.json b/mobile/build/intermediates/navigation_json/freedomDebug/navigation.json
new file mode 100644
index 00000000..0637a088
--- /dev/null
+++ b/mobile/build/intermediates/navigation_json/freedomDebug/navigation.json
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_manifests/freedomDebug/AndroidManifest.xml b/mobile/build/intermediates/packaged_manifests/freedomDebug/AndroidManifest.xml
new file mode 100644
index 00000000..37174bc7
--- /dev/null
+++ b/mobile/build/intermediates/packaged_manifests/freedomDebug/AndroidManifest.xml
@@ -0,0 +1,412 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_manifests/freedomDebug/output-metadata.json b/mobile/build/intermediates/packaged_manifests/freedomDebug/output-metadata.json
new file mode 100644
index 00000000..c6b8742e
--- /dev/null
+++ b/mobile/build/intermediates/packaged_manifests/freedomDebug/output-metadata.json
@@ -0,0 +1,20 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "PACKAGED_MANIFESTS",
+ "kind": "Directory"
+ },
+ "applicationId": "hanson.xyz.vpnhotspotmod",
+ "variantName": "freedomDebug",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "versionCode": 1005,
+ "versionName": "2.16.5",
+ "outputFile": "AndroidManifest.xml"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_autorenew.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_autorenew.xml
new file mode 100644
index 00000000..17486792
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_autorenew.xml
@@ -0,0 +1,6 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_bug_report.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_bug_report.xml
new file mode 100644
index 00000000..cc0fa09b
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_bug_report.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_build.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_build.xml
new file mode 100644
index 00000000..fa5477d9
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_build.xml
@@ -0,0 +1,6 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_card_giftcard.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_card_giftcard.xml
new file mode 100644
index 00000000..c8f76dfc
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_card_giftcard.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_code.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_code.xml
new file mode 100644
index 00000000..0dd58ee1
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_code.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_perm_scan_wifi.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_perm_scan_wifi.xml
new file mode 100644
index 00000000..a71c7496
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_perm_scan_wifi.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings.xml
new file mode 100644
index 00000000..c5205275
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_backup_restore.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_backup_restore.xml
new file mode 100644
index 00000000..7167e7a2
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_backup_restore.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_ethernet.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_ethernet.xml
new file mode 100644
index 00000000..da3ca6a8
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_ethernet.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_input_antenna.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_input_antenna.xml
new file mode 100644
index 00000000..0da55e23
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_input_antenna.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_input_component.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_input_component.xml
new file mode 100644
index 00000000..2a87e5bd
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_settings_input_component.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_update.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_update.xml
new file mode 100644
index 00000000..3b923020
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_update.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_wifi_protected_setup.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_wifi_protected_setup.xml
new file mode 100644
index 00000000..467bfe25
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_action_wifi_protected_setup.xml
@@ -0,0 +1,13 @@
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_alert_warning.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_alert_warning.xml
new file mode 100644
index 00000000..a02bc138
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_alert_warning.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_av_closed_caption.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_av_closed_caption.xml
new file mode 100644
index 00000000..359f268b
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_av_closed_caption.xml
@@ -0,0 +1,5 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_av_closed_caption_off.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_av_closed_caption_off.xml
new file mode 100644
index 00000000..a21d5963
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_av_closed_caption_off.xml
@@ -0,0 +1,5 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_content_add.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_content_add.xml
new file mode 100644
index 00000000..0258249c
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_content_add.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_content_file_copy.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_content_file_copy.xml
new file mode 100644
index 00000000..bb623caa
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_content_file_copy.xml
@@ -0,0 +1,5 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_content_inbox.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_content_inbox.xml
new file mode 100644
index 00000000..028c1333
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_content_inbox.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_battery_charging_full.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_battery_charging_full.xml
new file mode 100644
index 00000000..d50dc4a6
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_battery_charging_full.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_bluetooth.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_bluetooth.xml
new file mode 100644
index 00000000..1094756b
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_bluetooth.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_devices.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_devices.xml
new file mode 100644
index 00000000..150ced43
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_devices.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_network_wifi.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_network_wifi.xml
new file mode 100644
index 00000000..caac288f
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_network_wifi.xml
@@ -0,0 +1,13 @@
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_usb.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_usb.xml
new file mode 100644
index 00000000..4ea66568
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_usb.xml
@@ -0,0 +1,5 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_wifi_lock.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_wifi_lock.xml
new file mode 100644
index 00000000..877f0d44
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_wifi_lock.xml
@@ -0,0 +1,11 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_wifi_tethering.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_wifi_tethering.xml
new file mode 100644
index 00000000..4e556352
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_device_wifi_tethering.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_file_downloading.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_file_downloading.xml
new file mode 100644
index 00000000..03774184
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_file_downloading.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_hardware_device_hub.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_hardware_device_hub.xml
new file mode 100644
index 00000000..6af6c649
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_hardware_device_hub.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_image_flash_on.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_image_flash_on.xml
new file mode 100644
index 00000000..168d13a6
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_image_flash_on.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_image_looks_6.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_image_looks_6.xml
new file mode 100644
index 00000000..441f83ef
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_image_looks_6.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_image_remove_red_eye.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_image_remove_red_eye.xml
new file mode 100644
index 00000000..c9c622d7
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_image_remove_red_eye.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_launcher_background.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_launcher_background.xml
new file mode 100644
index 00000000..8ab430cc
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_launcher_background.xml
@@ -0,0 +1,5 @@
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_launcher_foreground.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_launcher_foreground.xml
new file mode 100644
index 00000000..27b0fdc6
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_launcher_monochrome.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_launcher_monochrome.xml
new file mode 100644
index 00000000..27a05108
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_launcher_monochrome.xml
@@ -0,0 +1,5 @@
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_quick_settings_tile_on.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_quick_settings_tile_on.xml
new file mode 100644
index 00000000..4a858b04
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_quick_settings_tile_on.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_settings_qrcode.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_settings_qrcode.xml
new file mode 100644
index 00000000..6c4f3877
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_settings_qrcode.xml
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_social_people.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_social_people.xml
new file mode 100644
index 00000000..25056626
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_social_people.xml
@@ -0,0 +1,6 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_toggle_star.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_toggle_star.xml
new file mode 100644
index 00000000..667ac95c
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/ic_toggle_star.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/drawable/toggle_hex.xml b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/toggle_hex.xml
new file mode 100644
index 00000000..fa5ce92c
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/drawable/toggle_hex.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/activity_main.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/activity_main.xml
new file mode 100644
index 00000000..0c4c7e59
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/activity_main.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/dialog_nickname.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/dialog_nickname.xml
new file mode 100644
index 00000000..b67eaa09
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/dialog_nickname.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/dialog_wifi_ap.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/dialog_wifi_ap.xml
new file mode 100644
index 00000000..94604f2b
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/dialog_wifi_ap.xml
@@ -0,0 +1,461 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/dialog_wps.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/dialog_wps.xml
new file mode 100644
index 00000000..0ec188b3
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/dialog_wps.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/fragment_clients.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/fragment_clients.xml
new file mode 100644
index 00000000..0863c13b
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/fragment_clients.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/fragment_ebeg.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/fragment_ebeg.xml
new file mode 100644
index 00000000..d1ba4cea
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/fragment_ebeg.xml
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/fragment_tethering.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/fragment_tethering.xml
new file mode 100644
index 00000000..29d963e5
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/fragment_tethering.xml
@@ -0,0 +1,10 @@
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_client.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_client.xml
new file mode 100644
index 00000000..2137538c
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_client.xml
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_interface.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_interface.xml
new file mode 100644
index 00000000..c21f327f
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_interface.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_manage.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_manage.xml
new file mode 100644
index 00000000..16f4fb3c
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_manage.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_repeater.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_repeater.xml
new file mode 100644
index 00000000..e42e391f
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/listitem_repeater.xml
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/preference_material.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/preference_material.xml
new file mode 100644
index 00000000..dcd2ae80
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/preference_material.xml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/preference_widget_edittext_autocomplete.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/preference_widget_edittext_autocomplete.xml
new file mode 100644
index 00000000..03f3bd47
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/preference_widget_edittext_autocomplete.xml
@@ -0,0 +1,12 @@
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/layout/preference_widget_material_switch.xml b/mobile/build/intermediates/packaged_res/freedomDebug/layout/preference_widget_material_switch.xml
new file mode 100644
index 00000000..7ede5c1b
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/layout/preference_widget_material_switch.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/menu/navigation.xml b/mobile/build/intermediates/packaged_res/freedomDebug/menu/navigation.xml
new file mode 100644
index 00000000..ed92125e
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/menu/navigation.xml
@@ -0,0 +1,25 @@
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/menu/popup_client.xml b/mobile/build/intermediates/packaged_res/freedomDebug/menu/popup_client.xml
new file mode 100644
index 00000000..d43dae73
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/menu/popup_client.xml
@@ -0,0 +1,11 @@
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/menu/toolbar_configuration.xml b/mobile/build/intermediates/packaged_res/freedomDebug/menu/toolbar_configuration.xml
new file mode 100644
index 00000000..6e48873f
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/menu/toolbar_configuration.xml
@@ -0,0 +1,26 @@
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/menu/toolbar_tethering.xml b/mobile/build/intermediates/packaged_res/freedomDebug/menu/toolbar_tethering.xml
new file mode 100644
index 00000000..d67e6f58
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/menu/toolbar_tethering.xml
@@ -0,0 +1,26 @@
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/mipmap/banner.xml b/mobile/build/intermediates/packaged_res/freedomDebug/mipmap/banner.xml
new file mode 100644
index 00000000..e6c3da85
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/mipmap/banner.xml
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/mipmap/ic_launcher.xml b/mobile/build/intermediates/packaged_res/freedomDebug/mipmap/ic_launcher.xml
new file mode 100644
index 00000000..80faec84
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/mipmap/ic_launcher.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/raw/third_party_license_metadata b/mobile/build/intermediates/packaged_res/freedomDebug/raw/third_party_license_metadata
new file mode 100644
index 00000000..dc74e448
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/raw/third_party_license_metadata
@@ -0,0 +1 @@
+0:125 Debug License Info
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/raw/third_party_licenses b/mobile/build/intermediates/packaged_res/freedomDebug/raw/third_party_licenses
new file mode 100644
index 00000000..420bbfe7
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/raw/third_party_licenses
@@ -0,0 +1 @@
+Licenses are only provided in build variants (e.g. release) where the Android Gradle Plugin generates an app dependency list.
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/values-it/values-it.xml b/mobile/build/intermediates/packaged_res/freedomDebug/values-it/values-it.xml
new file mode 100644
index 00000000..10f36bfe
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/values-it/values-it.xml
@@ -0,0 +1,148 @@
+
+
+
+ - Connesso 1 volta dal %2$s
+ - Connesso %1$s volte dal %2$s
+
+
+ - Inviato 1 pacchetto, %2$s
+ - Inviati %1$s pacchetti, %2$s
+
+
+ - Ricevuto 1 pacchetto, %2$s
+ - Ricevuti %1$s pacchetti, %2$s
+
+
+ - %d dispositivo connesso a %s
+ - %d dispositivi connessi a %s
+
+
+ - %d interfaccia
+ - %d interfacce
+
+
+ - %d dispositivi
+ - %d dispositivo
+
+ VPN Hotspot
+ Il server ha restituito questo errore per %1$s: %2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ Venditore
+ Nickname per %s
+ Blocca
+ Abilita il servizio per questa interfaccia per bloccare il client.
+ Nickname…
+ Statistiche…
+ Sblocca
+ Statistiche per %s
+ Il sistema Android rifiuta questa configurazione. (vedi logcat)
+ Condividi con Codice QR
+ Configurazione Wi\u2011Fi
+ " (perso)"
+ " (in connessione)"
+ " (raggiungibile)"
+ Chiudi
+ Trovi che questa applicazione sia utile?\nSupportane lo sviluppo inviando una donazione al suo sviluppatore!
+ Google Play Store
+ Google addebita una commissione del 30%
+ Dona!
+ Donazioni In-App non supportate. Google Play Store è installato correttamente?
+ Quanto?
+ Grazie per la tua donazione!\nLo apprezzo molto!
+ Fatale: Interfaccia Downstream non trovata
+ sconosciuta #%d
+ Qualcosa è andato storto, per favore controlla le informazioni di debug.
+ Servizio Tethering VPN
+ Inattivi: %s
+ Tethering VPN attivo
+ Ripetitore (%1$d MHz, channel %2$d)
+ Rimozione del gruppo P2P ridondante fallita (causa: %s)
+ File di configurazione valido non trovato. Per favore accendi il ripetitore prima.
+ Creazione del gruppo P2P fallita (causa: %s)
+ Servizio non disponibile. Riprova dopo
+ errore interno
+ nessuna richiesta di servizio aggiunta
+ Wi\u2011Fi direct non supportato
+ operazione non supportata
+ Wi\u2011Fi direct non disponibile, per favore abilita il Wi\u2011Fi
+ Abilita
+ Rimozione del gruppo P2P fallita (causa: %s)
+ Rimozione del vecchio gruppo P2P fallita (causa: %s)
+ Impostazione del canale operativo fallita (causa: %s)
+ WPS (non sicuro)
+ Premi il bottone
+ Inserisci PIN
+ Avvio WPS fallito (causa: %s)
+ PIN registrato.
+ Utilizza il pulsante WPS entro i prossimi 2 minuti per collegare il
+ dispositivo.
+ Downstream
+ Esci
+ Aiuto
+ Miscellanea
+ Dona
+ GitHub sponsors, PayPal, altro…
+ Amo i soldi
+ Esporta informazioni di debug
+ Così utile molto wow
+ Homepage progetto su GitHub
+ Leggi il manuale, metti tra i preferiti, segnala problemi e contribuisci
+ Riavvia l\'applicazione per applicare questa impostazione.
+ Pulisci/riapplica regole di routing
+ Aggiorna le impostazioni modificate ai servizi attivi. Può anche sistemare rare
+ condizioni.
+ Abilita DHCP alternativo
+ Usalo se i client non riescono ad ottenere gli indirizzi IP.
+ Disabilita tethering IPv6
+ Abilitando questa funzione si preveniranno perdite della VPN via IPv6.
+ Modalità di monitoraggio dello stato della rete
+ Monitoraggio Netlink
+ Monitoraggio Netlink con root
+ Poll
+ Poll con root
+ Modalità IP Masquerade
+ Servizio Android Netd
+ Nessuno
+ Semplice
+ Interfaccia di rete upstream
+ Individua automaticamente VPN del sistema
+ Tieni il Wi\u2011Fi attivo
+ Attivo
+ Modalità prestazioni elevate
+ Disabilita il risparmio batteria
+ Modalità latenza bassa
+ Default di sistema
+ Accelerazione hardware Tethering
+ Scorciatoia alle opzioni sviluppatore del sistema
+ Upstream
+ Interfaccia fallback upstream
+ Individua automaticamente la rete default del sistema
+ L\'hotspot temporaneo richiede che la localizzazione sia attiva.
+ Gestisci il tethering del sistema…
+ Tethering Bluetooth
+ "Tethering Ethernet"
+ Per favore disabilita l\'accelerazione hardware tethering nelle opzioni sviluppatore
+ se il tethering VPN non funziona.
+ Tethering USB
+ Hotspot Wi\u2011Fi
+ Monitora…
+ %s (monitorato)
+ Hotspot Wi\u2011Fi temporaneo
+ Avvio dell\'hotspot fallito (causa: %s)
+ errore generico
+ modalità incompatibile
+ nessun canale
+ tethering non permesso
+ Client
+ Ripetitore
+ Impostazioni
+ Tethering
+ "Indirizzo MAC"
+ "Banda a %s GHz"
+ "Rete nascosta"
+ Banda AP
+ "L\'hotspot Wi‑Fi viene disattivato se non ci sono dispositivi collegati"
+ Password
+ Salva
+ Sicurezza
+ "Nome rete"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/values-night-v8/values-night-v8.xml b/mobile/build/intermediates/packaged_res/freedomDebug/values-night-v8/values-night-v8.xml
new file mode 100644
index 00000000..0e38592a
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/values-night-v8/values-night-v8.xml
@@ -0,0 +1,7 @@
+
+
+ false
+ @color/dark_colorPrimary
+ #005005
+ #AEEA00
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/values-pt-rBR/values-pt-rBR.xml b/mobile/build/intermediates/packaged_res/freedomDebug/values-pt-rBR/values-pt-rBR.xml
new file mode 100644
index 00000000..90275d6f
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/values-pt-rBR/values-pt-rBR.xml
@@ -0,0 +1,206 @@
+
+
+
+ - Conectado 1 vez desde %2$s
+ - Conectado %1$s vezes desde %2$s
+
+
+ - Enviado 1 pacote, %2$s
+ - Enviados %1$s pacotes, %2$s
+
+
+ - Recebido 1 pacote, %2$s
+ - Recebidos %1$s pacotes, %2$s
+
+
+ - %d dispotivivo conectado ao %s
+ - %d dispositivos conectados ao %s
+
+
+ - %d interface
+ - %d interfaces
+
+
+ - %d dispositivo
+ - %d dispositivos
+
+
+ - %1$s/%2$d cliente conectado\nFunções suportadas: %3$s
+ - %1$s/%2$d clientes conectados\nFunções suportadas: %3$s
+
+
+ - %d cliente conectado
+ - %1d clientes conectados
+
+ VPN Hotspot
+ O servidor retornou um erro para %1$s: %2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ Fornecedor
+ Apelido para %s
+ Bloquear
+ Ative o serviço para esta interface para bloquear o cliente.
+ Apelido…
+ Status…
+ Desbloquear
+ Status para %s
+ O sistema Android recusa essa configuração. (olhe o logcat)
+ Compartilhar via Código QR
+ Configuração Wi\u2011Fi
+ " (perdido)"
+ " (conectando)"
+ " (alcançável)"
+ Fechar
+ Você acha esse aplicativo útil?\nDê um apoio para o desenvolvedor, envie um mimo!
+ Google Play Store
+ O Google cobra uma taxa de 30%
+ Doe!
+ Acho que algo está errado com os pagamentos pelo aplicativo. Certifique-se que sua Google Play Store está instalada corretamente.
+ Quanto?
+ Obrigado mesmo por doar!\nEu lhe agradeço muito!
+ Fatal: Interface de downstream não encontrada
+ desconhecido #%d
+ Algo se saiu errado. Por favor, verifique o log de depuração
+ Monitorar interfaces inativas
+ Serviço de Tethering de VPN
+ Inativo: %s
+ VPN tethering
+ Permissão faltando.
+ Repetidor (%1$d MHz, channel %2$d)
+ Falha ao remover grupo P2P redundante (motivo: %s)
+ Não foi encontrada uma configuração válida. Por favor, inicie o repetidor primeiro.
+ Falha ao criar grupo P2P (motivo: %s)
+ Serviço indisponÃvel. Tente novamente mais tarde
+ erro interno
+ Nenhuma solicitação de serviço adicionada
+ Wi\u2011Fi direct não suportado
+ Operação não suportada
+ Por restrições de sistema, desativar a localização pode deixar o repetidor ineficiente e aumentar o consumo de bateria
+ Configurar
+ O repetidor necessita de permissões para acessar esta localização
+ Wi\u2011Fi direct não disponÃvel, por favor, ative o Wi\u2011Fi
+ Ativar
+ Falha ao remover grupo P2P (motivo: %s)
+ Falha ao remover antigo grupo P2P (motivo: %s)
+ Falha ao definir canal operacional (motivo: %s)
+ Falha ao definir elementos do fornecedor (motivo: %s)
+ WPS (inseguro)
+ Push Button
+ Insira um PIN
+ Ocorreu um erro ao acionar o WPS (motivo: %s)
+ PIN registrado.
+ Por favor, use o botão WPS dentro de 2 minutos para conectar seu dispositivo.
+ Downstream
+ Sair
+ Ajuda
+ Diversos
+ Doe
+ GitHub sponsors, PayPal, e mais…
+ Eu amo dinheiro!
+ Exportar configurações de depuração
+ Muito útil… Uau
+ Página do GitHub do projeto
+ Leia o manual, marque com estrela, envie problemas e contribua (Tipo o Konny :D)
+ Reinicie o aplicativo para aplicar essa função.
+ Auto inicialização de serviços
+ Restaurar serviços que estavam em execução antes do aplicativo / dispositivo reiniciar ou atualizar
+ Limpar/re-aplicar regras de roteamento
+ Atualize as configurações alteradas para os serviços ativos atualmente. Isso pode corrigir condições raras.
+ Ativar DHCP workaround
+ Use isso se o cliente não consegue obter endereço IP.
+ Desative Tethering IPv6
+ Ativar esta opção evitará vazamentos de VPN via IPv6.
+ Modo de monitoramento de rede
+ Monitor netlink
+ Monitor netlink com root
+ Poll
+ Poll com root
+ Modo de máscara de IP
+ Serviço Android Netd
+ Nenhum
+ Simples
+ Modo de repetidor seguro
+ Não faz alterações no seu sistema mas pode causar mal funcionamento com nomes de rede curtos.
+ Nomes curtos de rede podem exigir o desligamento do modo seguro.
+ Interface de upstream de rede
+ Detectar automaticamente VPN de sistema
+ Upstreams atuais
+ %1$s; fallback: %2$s
+ Deixe o Wi\u2011Fi ativo
+ Ativo
+ Modo de alta performance
+ Desativar o modo de economia de energia
+ Modo de baixa latência
+ Padrão do sistema
+ Aceleração de Tethering do hardware
+ Atalho para a opção de desenvolvedor
+ Upstream
+ Interface upstream de fallback
+ Detectar automaticamente a rede padrão do sistema
+ Essa função precisa que sua localização esteja ativada para funcionar.
+ Gerenciar tethering do sistema…
+ Tethering Bluetooth
+ Tethering Ethernet
+ Tethering USB (NCM)
+ Por favor, desative a Aceleração de hardware de tethering nas configurações de desenvolvedor caso o VPN Hotspot não funcionar corretamente.
+ Tethering USB
+ Ponto de acesso Wi\u2011Fi
+ Bloqueado %1$s: %2$s
+ Copiar MAC
+ \nCódigo do paÃs do Driver: %s
+ MAC AP aleatório
+ Simultaneidade de AP em ponte
+ STA + AP simultâneos
+ STA + Bridged AP simultâneos
+ %1$d MHz, canal %2$d, largura %3$s
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, largura %2$d,
+ largura %3$s, tempo ocioso desabilitado
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, canal %2$d,
+ largura %3$s, tempo ocioso em %6$s
+ Nenhum
+ \nCanais suportados: %s
+ Monitor…
+ %s (monitorado)
+ Hotspot Wi\u2011Fi temporário
+ Houve uma falha ao iniciar o hotspot (motivo: %s)
+ erro genérico
+ modo incompatÃvel
+ sem canal
+ tethering não permitido
+ Clientes
+ Repetidor
+ Configurações
+ Tethering
+ Atualização
+ Endereço MAC aleatório persistente
+ Endereço MAC
+ Lista de clientes permitidos
+ %s GHz
+ Desativado
+ Lista de clientes bloqueados
+ Habilite o desligamento oportunista de uma instância no AP em ponte
+ Controle de qual cliente pode usar o hotspot
+ Rede oculta
+ Controle de acesso
+ Canais permitidos 2.4 GHz ACS
+ Canais permitidos 5 GHz ACS
+ Canais permitidos 6 GHz ACS
+ Opções de AP avançadas
+ Banda do AP
+ Desative o roteamento se não houver nenhum dispositivo conectado
+ Maximum channel bandwidth
+ Tempo inativo
+ Tempo limite inativo para uma instância em ponte
+ Tempo inativo padrão: %dms
+ Ative Wi\u2011Fi 6
+ Ative Wi\u2011Fi 7
+ Usar um MAC aleatório
+ Não persistente
+ Nenhum
+ Persistente
+ Número máximo de clientes
+ Senha
+ Salvar
+ Segurança
+ Nome da rede
+ Configuração fornecida pelo usuário
+ Elementos do fornecedor
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/values-ru/values-ru.xml b/mobile/build/intermediates/packaged_res/freedomDebug/values-ru/values-ru.xml
new file mode 100644
index 00000000..11d1b094
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/values-ru/values-ru.xml
@@ -0,0 +1,60 @@
+
+
+
+ - %d уÑтройÑтво
+ - %d уÑтройÑтва
+ - %d уÑтройÑтв
+ - %d уÑтройÑтва
+
+ Сервер вернул ошибку Ð´Ð»Ñ %1$s: %2$s
+ Ð˜Ð¼Ñ Ð²ÐµÐ½Ð´Ð¾Ñ€Ð°
+ ÐикнÑйм Ð´Ð»Ñ %s
+ Блок
+ Включите Ñлужбу Ð´Ð»Ñ Ñтого интерфейÑа, чтобы заблокировать клиента.
+ ÐикнÑйм…
+ СтатиÑтика…
+ Разблокировать
+ СтатиÑтика Ð´Ð»Ñ %s
+ ÐаÑтройка Wi-Fi ретранÑлÑтора
+ " (потерÑ)"
+ " (подключение)"
+ " (доÑтупный)"
+ Закрыть
+ Считаете Ñто приложение полезным?\nПоддержите его разработку, отправив пожертвование разработчику!
+ Google Play Store
+ Google взимает 30% комиÑÑии Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ пожертвованиÑ!
+ Пожертвовать!
+ ÐŸÐ¾Ð¶ÐµÑ€Ñ‚Ð²Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ‡ÐµÑ€ÐµÐ· приложение не поддерживаютÑÑ. Google Play Store уÑтановлен правильно?
+ Сколько?
+ Благодарю за пожертвование! Я очень Ñто ценю!
+ Ошибка: ÐиÑходÑщий Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð½Ðµ найден
+ ÐеизвеÑтно #%d
+ Что-то пошло не так, пожалуйÑта, проверьте отладочную информацию.
+ VPN Ð¼Ð¾Ð´ÐµÐ¼Ð½Ð°Ñ Ñлужба
+ Ðеактивных: %s
+ VPN-модем активен
+ Ðе удалоÑÑŒ удалить избыточную группу P2P (причина: %s)
+ ДейÑтвительный конфиг не найден. ПожалуйÑта, Ñначала запуÑтите ретранÑлÑтор.
+ Ðе удалоÑÑŒ Ñоздать группу P2P (причина: %s)
+ Ð¡ÐµÑ€Ð²Ð¸Ñ Ð½ÐµÐ´Ð¾Ñтупен. Попробуйте позже
+ внутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°
+ запроÑÑ‹ на обÑлуживание не добавлены
+ Wi-Fi напрÑмую не поддерживаетÑÑ
+ Ð½ÐµÐ¿Ð¾Ð´Ð´ÐµÑ€Ð¶Ð¸Ð²Ð°ÐµÐ¼Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ
+ Wi-Fi директ недоÑтупен, пожалуйÑта включите Wi-Fi
+ Ðе удалоÑÑŒ удалить группу P2P (причина: %s)
+ Ðе удалоÑÑŒ удалить Ñтарую группу P2P (причина:%s)
+ "Bluetooth-модем"
+ "Режим Ethernet-модема"
+ "USB-модем"
+ "Точка доÑтупа Wi‑Fi"
+ "MAC-адреÑ"
+ "%s ГГц"
+ "Ð¡ÐºÑ€Ñ‹Ñ‚Ð°Ñ Ñеть"
+ "Диапазон чаÑтот Wi-Fi"
+ "Выключать точку доÑтупа Wi‑Fi автоматичеÑки, еÑли к ней не подключено ни одного уÑтройÑтва"
+ "Пароль"
+ "Сохранить"
+ "Защита"
+ "Ð˜Ð¼Ñ Ñети"
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/values-v29/values-v29.xml b/mobile/build/intermediates/packaged_res/freedomDebug/values-v29/values-v29.xml
new file mode 100644
index 00000000..25619afb
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/values-v29/values-v29.xml
@@ -0,0 +1,14 @@
+
+
+
+ - @string/settings_service_wifi_lock_none
+ - @string/settings_service_wifi_lock_high_perf_v29
+ - @string/settings_service_wifi_lock_low_latency
+
+
+ - None
+ - HighPerf
+ - LowLatency
+
+ @android:color/transparent
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/values-v30/values-v30.xml b/mobile/build/intermediates/packaged_res/freedomDebug/values-v30/values-v30.xml
new file mode 100644
index 00000000..6385721d
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/values-v30/values-v30.xml
@@ -0,0 +1,4 @@
+
+
+ true
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/values-zh-rCN/values-zh-rCN.xml b/mobile/build/intermediates/packaged_res/freedomDebug/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 00000000..3bb143ae
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,201 @@
+
+
+
+ - 自 %2$s 以æ¥è¿žæŽ¥äº† %1$s 次
+
+
+ - ä¸Šä¼ %1$s 个包,%2$s
+
+
+ - 下载 %1$s 个包,%2$s
+
+
+ - %d 个设备已连接到 %s
+
+
+ - %d 个接å£
+
+
+ - %d å°è®¾å¤‡
+
+
+ - 已连接 %1$s/%2$d 个设备\n支æŒåŠŸèƒ½ï¼š%3$s
+
+
+ - 已连接 %d 个设备
+
+ VPN çƒç‚¹
+ æœåŠ¡å™¨ä¸º %1$s 返回错误:%2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ 厂商
+ %s 的昵称
+ 拉黑
+ 拉黑需è¦ä¸ºè¯¥æŽ¥å£æ‰“å¼€æœåŠ¡ã€‚
+ 昵称…
+ æµé‡â€¦
+ 洗白
+ %s çš„æµé‡
+ é…ç½®å¯èƒ½æ— 效
+ Android 系统拒ç»ä½¿ç”¨æ¤é…置。(详情å‚è§æ—¥å¿—)
+ 使用 QR ç 分享
+ 设置 WLAN
+ (已æ–开)
+ (æ£åœ¨è¿žæŽ¥ï¼‰
+ (已连接)
+ å…³é—
+ 觉得æ¤åº”用很有用?\næèµ 给该开å‘è€…ä»¥æ”¯æŒæ¤åº”用的开å‘ï¼
+ Google Play 商店
+ Google æ”¶å– 30% 的费用
+ æèµ ï¼
+ 䏿”¯æŒ In-App æèµ ã€‚ä½ çš„ Google Play 商店是å¦å®‰è£…æ£ç¡®äº†å‘¢ï¼Ÿ
+ æèµ 多少?
+ 谢谢æèµ ï¼\néžå¸¸æ„Ÿè°¢æ‚¨ï¼
+ 错误:未找到下游接å£
+ 未知 #%d
+ å‘生异常,详情请查看调试信æ¯ã€‚
+ ç›‘è§†ä¸æ´»è·ƒæŽ¥å£
+ VPN 共享æœåŠ¡
+ 䏿´»è·ƒï¼š%s
+ VPN 共享已å¯ç”¨
+ æƒé™ä¸è¶³
+ æ— çº¿ä¸ç»§ (%1$d MHz, é¢‘é“ %2$d)
+ åˆ é™¤å¤šä½™ P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ 未能找到有效的档案。请å°è¯•先打开ä¸ç»§ã€‚
+ 创建 P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ æœåŠ¡ä¸å¯ç”¨ï¼Œè¯·ç¨åŽé‡è¯•
+ 内部异常
+ æœªæ·»åŠ æœåŠ¡è¯·æ±‚
+ è®¾å¤‡ä¸æ”¯æŒ Wi\u2011Fi 直连
+ 䏿”¯æŒæ¤æ“作
+ 由于系统é™åˆ¶ï¼Œå…³é—ä½ç½®ä¿¡æ¯æœåŠ¡å¯èƒ½äº§ç”Ÿé—®é¢˜å¹¶å¯¼è‡´ç»èˆªç¼©çŸ
+ 进入设置
+ æ— çº¿ä¸ç»§éœ€è¦ç²¾ç¡®ä½ç½®æƒé™
+ Wi\u2011Fi 直连ä¸å¯ç”¨ï¼Œè¯·æ‰“å¼€ Wi\u2011Fi
+ 打开
+ å…³é—已有 P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ å…³é— P2P ç¾¤ç»„å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ 设置è¿è¡Œé¢‘æ®µå¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ è®¾ç½®ä¾›åº”å•†ç‰¹å®šå…ƒç´ å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ WPS(ä¸å®‰å…¨ï¼‰
+ ä¸€é”®åŠ å¯†
+ 输入 PIN
+ 打开 WPS å¤±è´¥ï¼ˆåŽŸå› ï¼š%s)
+ æˆåŠŸæ³¨å†Œ PIN。
+ 请在 2 分钟内在需è¦è¿žæŽ¥çš„è®¾å¤‡ä¸Šä½¿ç”¨ä¸€é”®åŠ å¯†ä»¥è¿žæŽ¥åˆ°æ¤ä¸ç»§ã€‚
+ 下游
+ 退出
+ 帮助
+ æ‚项
+ ææ¬¾
+ GitHub sponsors, PayPal ç‰å…¶ä»–æ–¹å¼â€¦
+ 请给我钱
+ 导出调试信æ¯
+ è¿™ç§éžå¸¸æœ‰ç”¨å“‡
+ 项目首页 @ GitHub
+ 查看使用手册,star, æäº¤ issues, åˆä½œ
+ é‡å¯åº”用以应用新的设置。
+ 自动å¯åЍæœåŠ¡
+ 设备é‡å¯æˆ–应用å‡çº§åŽè‡ªåЍæ¢å¤ä¹‹å‰è¿è¡Œçš„æœåŠ¡
+ 清ç†/釿–°åº”用路由规则
+ 将修改的设置应用到当å‰å¯ç”¨çš„æœåŠ¡ä¸Šã€‚ä¹Ÿå¯ç”¨äºŽä¿®å¤å¶å°”会å‘ç”Ÿçš„ç«žæ€æ¡ä»¶ã€‚
+ å°è¯•ä¿®å¤ DHCP
+ å¦‚æžœè®¾å¤‡æ— æ³•èŽ·å– IP 地å€ï¼Œå°è¯•打开这个选项。
+ ç¦ç”¨ IPv6 共享
+ é˜²æ¢ VPN 通过 IPv6 泄æ¼ã€‚
+ 网络状æ€ç›‘嬿¨¡å¼
+ Netlink 监å¬
+ Netlink ç›‘å¬ (root)
+ 轮询
+ 轮询 (root)
+ IP 掩蔽模å¼
+ Android Netd æœåŠ¡
+ æ—
+ 简易
+ ä¸ç»§å®‰å…¨æ¨¡å¼
+ ä¸å¯¹ç³»ç»Ÿé…置进行修改,但是å¯èƒ½é¡»è¦è¾ƒé•¿çš„网络å称。
+ 使用çŸåç§°å¯èƒ½éœ€è¦å…³é—安全模å¼ã€‚
+ 临时 WLAN çƒç‚¹ä½¿ç”¨ç³»ç»Ÿé…ç½®
+ 这将与其他使用本地çƒç‚¹çš„应用冲çª
+ 上游网络接å£
+ 自动检测系统 VPN
+ 当å‰ä¸Šæ¸¸æŽ¥å£
+ %1$s;备用:%2$s
+ ä¿æŒ Wi\u2011Fi å¼€å¯
+ å¼€
+ 高性能模å¼
+ ç¦ç”¨çœç”µ
+ 低延迟模å¼
+ 系统默认
+ ç½‘ç»œå…±äº«ç¡¬ä»¶åŠ é€Ÿ
+ 系统“开å‘者选项â€çš„å¿«æ·æ–¹å¼
+ 上游
+ 备用上游接å£
+ 自动检测系统默认网络
+ 使用æ¤åŠŸèƒ½éœ€è¦æ‰“å¼€ä½ç½®æœåŠ¡ã€‚
+ 管ç†ç³»ç»Ÿå…±äº«â€¦
+ è“牙网络共享
+ "以太网络共享"
+ USB 网络共享 (NCM)
+ è‹¥ VPN å…±äº«æ— æ³•ä½¿ç”¨ï¼Œè¯·å°è¯•ç¦ç”¨â€œå¼€å‘者选项â€ä¸çš„â€œç½‘ç»œå…±äº«ç¡¬ä»¶åŠ é€Ÿâ€ã€‚
+ USB 网络共享
+ WLAN çƒç‚¹
+ å·²å±è”½ %1$s:%2$s
+ å¤åˆ¶ MAC
+ \n驱动国家代ç :%s
+ éšæœºæŽ¥å…¥ç‚¹ MAC
+ 桥接 AP å¹¶å‘
+ STA/AP å¹¶å‘
+ STA/桥接 AP å¹¶å‘
+ %1$d MHz, é¢‘é“ %2$d, 频宽 %3$s
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, é¢‘é“ %2$d, 频宽 %3$s,
+ ä¸è‡ªåЍ关é—
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, é¢‘é“ %2$d, 频宽 %3$s,
+ å…³é—延迟 %6$s
+ æ—
+ \n支æŒé¢‘é“: %s
+ 监视…
+ %s(监视)
+ 临时 WLAN çƒç‚¹
+ 打开çƒç‚¹å¤±è´¥ (åŽŸå› ï¼š%s)
+ 通用错误
+ 模å¼ä¸å…¼å®¹
+ æ— é¢‘æ®µ
+ 共享被ç¦ç”¨
+ 已连设备
+ æ— çº¿ä¸ç»§
+ 设置选项
+ 共享管ç†
+ 更新应用
+ æŒä¹…æ€§éšæœº MAC 地å€
+ "MAC 地å€"
+ 设备白åå•
+ "%s GHz 频段"
+ Disabled
+ 设备黑åå•
+ å¯ç”¨æ¡¥æŽ¥æ¨¡å¼ä¼ºæœºå…³é—
+ 过滤å¯ä»¥è¿žæŽ¥çš„设备
+ "éšè—的网络"
+ 访问控制
+ 2.4 GHz ACS å¯é€‰é¢‘段
+ 5 GHz ACS å¯é€‰é¢‘段
+ 6 GHz ACS å¯é€‰é¢‘段
+ 高级接入点设置
+ "AP 频段"
+ æœªè¿žæŽ¥ä»»ä½•è®¾å¤‡æ—¶è‡ªåŠ¨å…³é— WLAN çƒç‚¹
+ 最大频宽
+ å…³é—延迟
+ 默认延迟:%d 毫秒
+ å¯ç”¨ Wi\u2011Fi 6
+ å¯ç”¨ Wi\u2011Fi 7
+ éšæœºç”Ÿæˆ MAC 地å€
+ 䏿Œä¹…化
+ æ—
+ æŒä¹…化
+ å…许连接设备数上é™
+ "密ç "
+ "ä¿å˜"
+ "安全性"
+ "网络åç§°"
+ 切æ¢åå…进制显示
+ 用户æä¾›é…ç½®
+ 供应商特定元ç´
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/values-zh-rTW/values-zh-rTW.xml b/mobile/build/intermediates/packaged_res/freedomDebug/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 00000000..672fab69
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,186 @@
+
+
+
+ - 自 %2$s 以來連線了 %1$s 次
+
+
+ - 上傳 %1$s 個å°åŒ…,%2$s
+
+
+ - 下載 %1$s 個å°åŒ…,%2$s
+
+
+ - %d 個è£ç½®å·²é€£ç·šåˆ° %s
+
+
+ - %d 個介é¢
+
+
+ - %d 個è£ç½®
+
+
+ - 已連線 %1$s/%2$d 個è£ç½®\n支æ´åŠŸèƒ½ï¼š%3$s
+
+
+ - 已連線 %d 個è£ç½®
+
+ VPN 無線基地å°
+ 伺æœå™¨éŒ¯èª¤ %1$s:%2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ 供應商
+ 暱稱 %s
+ 黑åå–®
+ é–‹å•Ÿæ¤æœå‹™ä»¥é˜»æ¢è£ç½®é€£ç·š
+ 暱稱…
+ 狀態…
+ 解除黑åå–®
+ 狀態 %s
+ Android 系統拒絕使用æ¤çµ„態。(請檢視 Logcat)
+ 使用 QR Code 分享
+ Wi\u2011Fi 組態
+ ï¼ˆå·²ä¸æ–·ï¼‰
+ (æ£åœ¨é€£ç·šï¼‰
+ (已連線)
+ 關閉
+ é€™å€‹æ‡‰ç”¨ç¨‹å¼æœ‰ç”¨å—Žï¼Ÿ\nå°é¡çš„æŠ–å…§çµ¦é–‹ç™¼äººå“¡ç”¨ä¾†æ”¯æ´æ¤æ‡‰ç”¨ç¨‹å¼çš„開發
+ Google Play 商店
+ Google å°‡æ”¶å– 30% 的費用
+ 抖內ï¼
+ 䏿”¯æ´æ‡‰ç”¨ç¨‹å¼å…§è³¼ï¼ŒPlay å•†åº—æ˜¯å¦æ£ç¢ºå®‰è£ï¼Ÿ
+ 抖內多少錢
+ æ„Ÿè¬æŠ–å…§ï¼\nååˆ†æ„Ÿè¬æ‚¨ï¼
+ 錯誤:找ä¸åˆ°ä¸‹æ¸¸ä»‹é¢
+ 未知 #%d
+ 發生錯誤,請檢查åµéŒ¯è³‡è¨Šã€‚
+ 監視éžä½œç”¨ä¸ä»‹é¢
+ VPN ç„¡ç·šåŸºåœ°å°æœå‹™
+ åœç”¨ï¼š%s
+ VPN 無線基地å°å·²å•Ÿç”¨
+ 權é™ä¸è¶³
+ ä¸ç¹¼å™¨ (%1$d MHzï¼Œé »é“ %2$d)
+ 刪除冗餘 P2P 群組失敗 (åŽŸå› ï¼š%s)
+ 未找到有效的組態,請先啟動ä¸ç¹¼å™¨
+ 建立 P2P 群組失敗 (åŽŸå› ï¼š%s)
+ æœå‹™ä¸å¯ç”¨ï¼Œè«‹ç¨å¾Œå†è©¦
+ 內部錯誤
+ æœªæ·»åŠ æœå‹™è«‹æ±‚
+ Wi\u2011Fi Direct 䏿”¯æ´
+ 䏿”¯æ´çš„作æ¥
+ 由於系統é™åˆ¶ï¼Œé—œé–‰å®šä½æœå‹™å¯èƒ½æœƒå°Žè‡´å•é¡Œä¸¦å¢žåŠ é›»æ± ä½¿ç”¨é‡
+ è¨å®š
+ ä¸ç¹¼å™¨éœ€è¦ç²¾ç¢ºä½ç½®å˜å–權
+ Wi\u2011Fi Direct ä¸å¯ç”¨ï¼Œè«‹å•Ÿç”¨ Wi\u2011Fi
+ 開啟
+ 移除 P2P 群組失敗 (åŽŸå› ï¼š%s)
+ 移除舊 P2P 群組失敗 (åŽŸå› ï¼š%s)
+ è¨å®šå·¥ä½œé »é“失敗 (åŽŸå› ï¼š%s)
+ WPS(ä¸å®‰å…¨ï¼‰
+ WPS 按鈕
+ 輸入 PIN 碼
+ 開啟 WPS 失敗 (åŽŸå› ï¼š%s)
+ PIN å·²è¨å®š
+ 請在兩分é˜å…§åœ¨éœ€è¦é€£ç·šçš„è£ç½®ä¸Šï¼ŒæŒ‰ä¸‹ WPS 按鈕以連線到æ¤ä¸ç¹¼å™¨
+ 下游
+ 離開
+ 說明
+ é›œé …
+ 抖內
+ PayPalã€Flattr ç‰å…¶ä»–æ–¹å¼â€¦
+ 我喜æ¡éŒ¢
+ 匯出åµéŒ¯è³‡è¨Š
+ 這種éžå¸¸æœ‰ç”¨å•Š (^O^)ï¼
+ 專案首é @ GitHub
+ é–±è®€ä½¿ç”¨èªªæ˜Žï¼Œå° GitHub repo åŠ æ˜Ÿè™Ÿï¼Œæäº¤å•題並åˆä½œåƒèˆ‡é–‹ç™¼
+ é‡å•Ÿæ‡‰ç”¨ç¨‹å¼ä»¥å¥—用è¨å®šå€¼
+ 自動啟動æœå‹™
+ è£ç½®é‡æ–°å•Ÿå‹•或應用å‡ç´šå¾Œè‡ªå‹•æ¢å¾©ä¹‹å‰åŸ·è¡Œçš„æœå‹™
+ 清ç†/釿–°å¥—用路由è¦å‰‡
+ 將修改的è¨å®šå¥—用到目å‰å•Ÿç”¨çš„æœå‹™ä¸Šï¼Œä¹Ÿå¯ç”¨æ–¼ä¿®å¾©å¶çˆ¾æœƒç™¼ç”Ÿçš„ç«¶æ…‹æ¢ä»¶
+ 啟用 DHCP å› æ‡‰æŽªæ–½
+ 如果è£ç½®ç„¡æ³•å–å¾— IP ä½å€ï¼Œå˜—試開啟這é¸é …
+ åœç”¨ IPv6 共用
+ é˜²æ¢ VPN é€éŽ IPv6 æ´©æ¼
+ 網路狀態監視模å¼
+ Netlink 監視
+ Netlink 監視 (root)
+ 輪詢
+ 輪詢 (root)
+ IP å½è£æ¨¡å¼
+ Android Netd æœå‹™
+ ç„¡
+ 簡易
+ ä¸ç¹¼å®‰å…¨æ¨¡å¼
+ ä¸å°ç³»çµ±çµ„æ…‹åšä»»ä½•變更,但是å¯èƒ½éœ€è¦è¼ƒé•·çš„ SSID
+ ä½¿ç”¨çŸ SSID å¯èƒ½éœ€è¦é—œé–‰å®‰å…¨æ¨¡å¼ã€‚
+ 上游網路介é¢
+ 自動檢測系統 VPN æœå‹™
+ ç›®å‰ä¸Šæ¸¸ä»‹é¢
+ %1$s;後æ´ï¼š%2$s
+ ä¿æŒ Wi\u2011Fi 開啟
+ 開啟
+ 高效能模å¼
+ 關閉çœé›»æ¨¡å¼
+ ä½Žå»¶é²æ¨¡å¼
+ 系統é è¨
+ ç¶²è·¯å…±ç”¨ç¡¬é«”åŠ é€Ÿ
+ 系統「開發人員é¸é …ã€çš„æ·å¾‘
+ 上游
+ 後æ´ä¸Šæ¸¸ä»‹é¢
+ 自動檢測系統é è¨ç¶²è·¯
+ 需è¦é–‹å•Ÿå®šä½
+ 系統網路共用管ç†â€¦
+ è—牙網路共用
+ "乙太網路網路共用"
+ USB 網路共用 (NCM)
+ 如果 VPN 網路共用ä¸èµ·ä½œç”¨ï¼Œè«‹åœ¨ã€Œé–‹ç™¼äººå“¡é¸é …ã€ä¸é—œé–‰ã€Œç¶²è·¯å…±ç”¨ç¡¬é«”åŠ é€Ÿã€
+ USB 網路共用
+ Wi\u2011Fi 無線基地å°
+ å·²éš±è— %1$s:%2$s
+ 複製 MAC
+ 隨機 AP MAC
+ 橋接 AP 並行
+ STA/AP 並行
+ STA/橋接 AP 並行
+ %1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s
+ %4$s:Wi\u2011Fi %5$d,%1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s,
+ 閒置逾時已åœç”¨
+ %4$s:Wi\u2011Fi %5$d,%1$d MHzï¼Œé »é“ %2$dï¼Œé »å¯¬ %3$s,
+ 閒置逾時 %6$s
+ ç„¡
+ \n支æ´é »é“:%s
+ 監視…
+ %s (å—監視)
+ 臨時 Wi\u2011Fi 無線基地å°
+ 啟動無線基地å°å¤±æ•— (åŽŸå› ï¼š%s)
+ 一般錯誤
+ ä¸ç›¸å®¹çš„æ¨¡å¼
+ æ²’æœ‰é »é“
+ ç¶²è·¯å…±ç”¨å·²ç¦æ¢
+ 用戶端
+ ä¸ç¹¼å™¨
+ è¨å®š
+ 網路共用
+ æ›´æ–°
+ "MAC ä½å€"
+ è£ç½®ç™½åå–®
+ %s GHz é »å¸¶
+ åœç”¨
+ è£ç½®é»‘åå–®
+ 啟用橋接模å¼éš¨æ©Ÿé—œé–‰
+ éŽæ¿¾å¯ä»¥é€£ç·šçš„è£ç½®
+ "éš±è—的網路"
+ å˜å–控制
+ 進階 AP é¸é …
+ AP é »å¸¶
+ 在沒有任何è£ç½®é€£ç·šæ™‚關閉 WIFI 無線基地å°
+ éžä½¿ç”¨ä¸é—œé–‰é€¾æ™‚
+ é è¨é€¾æ™‚:%d 毫秒
+ 啟用 Wi\u2011Fi 6
+ 啟用 Wi\u2011Fi 7
+ 隨機化 MAC ä½å€
+ 最大連線è£ç½®æ•¸é‡
+ 密碼
+ 儲å˜
+ 安全性
+ 網路å稱
+ 使用者æä¾›çµ„æ…‹
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/values/values.xml b/mobile/build/intermediates/packaged_res/freedomDebug/values/values.xml
new file mode 100644
index 00000000..9f75c1db
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/values/values.xml
@@ -0,0 +1,332 @@
+
+
+
+ - @string/settings_service_ip_monitor_monitor
+ - @string/settings_service_ip_monitor_monitor_root
+ - @string/settings_service_ip_monitor_poll
+ - @string/settings_service_ip_monitor_poll_root
+
+
+ - Monitor
+ - MonitorRoot
+ - Poll
+ - PollRoot
+
+
+ - @string/settings_service_masquerade_none
+ - @string/settings_service_masquerade_simple
+ - @string/settings_service_masquerade_netd
+
+
+ - None
+ - Simple
+ - Netd
+
+
+ - @string/settings_service_wifi_lock_none
+ - @string/settings_service_wifi_lock_full
+ - @string/settings_service_wifi_lock_high_perf
+
+
+ - None
+ - Full
+ - HighPerf
+
+
+ - @string/wifi_mac_randomization_none
+ - @string/wifi_mac_randomization_persistent
+ - @string/wifi_mac_randomization_non_persistent
+
+ false
+ true
+ @color/light_colorPrimary
+ #087f23
+ #AEEA00
+ #2e7d32
+ #4CAF50
+ #6000
+ 56dp
+ 264dp
+ 48dp
+
+ - Connected 1 time since %2$s
+ - Connected %1$s times since %2$s
+
+
+ - Sent 1 packet, %2$s
+ - Sent %1$s packets, %2$s
+
+
+ - Received 1 packet, %2$s
+ - Received %1$s packets, %2$s
+
+
+ - %d device connected to %s
+ - %d devices connected to %s
+
+
+ - %d interface
+ - %d interfaces
+
+
+ - %d device
+ - %d devices
+
+
+ - %1$s/%2$d client connected\nSupported features: %3$s
+ - %1$s/%2$d clients connected\nSupported features: %3$s
+
+
+ - %d client connected
+ - %1d clients connected
+
+ VPN Hotspot MOD
+ Server returned error for %1$s: %2$s
+ ↠ðŸ³ï¸â€ðŸŒˆ Vendor
+ Nickname for %s
+ Block
+ Turn on service for this interface to block the client.
+ Nickname…
+ Stats…
+ Unblock
+ Stats for %s
+ 00000000000000000000000000000000
+ Possibly invalid configuration
+ Android system refuses such configuration. (see logcat)
+ Share via QR code
+ Wi\u2011Fi configuration
+ " (lost)"
+ " (connecting)"
+ " (reachable)"
+ 13108846109-5iemp5pbapg7n5epbk0mv96007m9bhmg.apps.googleusercontent.com
+ Close
+ Do you find this application useful?\nSupport its development by sending a donation to the developer!
+ Google Play Store
+ Google charges a fee of 30%
+ Donate!
+ In-App Donations are not supported. Is Google Play Store installed correctly?
+ How much?
+ Thanks for donating!\nI really appreciate this!
+ Fatal: Downstream interface not found
+ unknown #%d
+ https://mygod-vpnhotspot.firebaseio.com
+ 13108846109
+ AIzaSyADp0gTf25H6H3KxDRKwvp0EaWq_XvYUmg
+ 1:13108846109:android:63120dcb2e900ed0
+ AIzaSyADp0gTf25H6H3KxDRKwvp0EaWq_XvYUmg
+ mygod-vpnhotspot.appspot.com
+ Something went wrong, please check the debug information.
+ Monitor Inactive Interfaces
+ VPN Tethering Service
+ Inactive: %s
+ VPN tethering
+ Permission missing
+ mygod-vpnhotspot
+ Repeater (%1$d MHz, channel %2$d)
+ Failed to remove redundant P2P group (reason: %s)
+ Valid config not found. Please start repeater first.
+ Failed to create P2P group (reason: %s)
+ Service unavailable. Try again later
+ internal error
+ no service requests added
+ Wi\u2011Fi direct unsupported
+ unsupported operation
+ Due to system restrictions, turning Location off may lead to things not working
+ properly and increased battery usage
+ Configure
+ Repeater requires permissions for accessing fine
+ location
+ Wi\u2011Fi direct unavailable, please enable Wi\u2011Fi
+ Enable
+ Failed to remove P2P group (reason: %s)
+ Failed to remove old P2P group (reason: %s)
+ Failed to set operating channel (reason: %s)
+ Failed to set vendor elements (reason: %s)
+ WPS (insecure)
+ Push Button
+ Enter PIN
+ Failed to start WPS (reason: %s)
+ PIN registered.
+ Please use WPS push button within the next 2 minutes to connect your
+ device.
+ Downstream
+ Exit
+ Help
+ Misc
+ Donate
+ GitHub sponsors, PayPal, more…
+ I love money
+ Export debug information
+ Such useful very wow
+ Project homepage at GitHub
+ Read manual, star, submit issues and contribute
+ Restart this app to apply this setting.
+ Auto start services
+ Restore services if they were running before device reboot or app
+ update
+ Clean/reapply routing rules
+ Update changed settings to current active services. Can also fix rare
+ race conditions.
+ Enable DHCP workaround
+ Use this if clients cannot obtain IP addresses.
+ Disable IPv6 tethering
+ Enabling this option will prevent VPN leaks via IPv6.
+ Network status monitor mode
+ Netlink monitor
+ Netlink monitor with root
+ Poll
+ Poll with root
+ IP Masquerade Mode
+ Android Netd Service
+ None
+ Simple
+ Repeater safe mode
+ Makes no changes to your system configuration but might
+ not work with short network names.
+ Short network names might require turning off safe
+ mode.
+ Use system configuration for temporary hotspot
+ Will conflict with other apps using local only
+ hotspot
+ Upstream network interface
+ Auto detect system VPN
+ Current upstreams
+ %1$s; fallback: %2$s
+ Keep Wi\u2011Fi alive
+ On
+ High Performance Mode
+ Disable power save
+ Low latency mode
+ System default
+ Tethering hardware acceleration
+ Shortcut to system developer options
+ Upstream
+ Fallback upstream interface
+ Auto detect system default network
+ This feature requires location to be turned on.
+ Manage system tethering…
+ Bluetooth tethering
+ Ethernet tethering
+ USB tethering (NCM)
+ Please disable Tethering hardware acceleration in Developer options
+ if VPN tethering does not work.
+ USB tethering
+ Wi\u2011Fi hotspot
+ Blocked %1$s: %2$s
+ Copy MAC
+ \nDriver country code: %s
+ Randomized AP MAC
+ Bridged AP concurrency
+ STA + AP concurrency
+ STA + Bridged AP concurrency
+ %1$d MHz, channel %2$d, width %3$s
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, channel %2$d,
+ width %3$s, idle timeout disabled
+ %4$s: Wi\u2011Fi %5$d, %1$d MHz, channel %2$d,
+ width %3$s, idle timeout in %6$s
+ None
+ \nSupported channels: %s
+ Monitor…
+ %s (monitored)
+ Temporary Wi\u2011Fi hotspot
+ Failed to start hotspot (reason: %s)
+ generic error
+ incompatible mode
+ no channel
+ tethering disallowed
+ Clients
+ Repeater
+ Settings
+ Tethering
+ Update
+ Persistent Randomized MAC address
+ MAC address
+ Allowed list of clients
+ %s GHz Band
+ Disabled
+ Blocked list of clients
+ Enable opportunistic shutdown of an instance in bridged AP
+ Control which client can use hotspot
+ Hidden network
+ Access Control
+ Allowed 2.4 GHz ACS channels
+ Allowed 5 GHz ACS channels
+ Allowed 6 GHz ACS channels
+ Advanced AP Options
+ AP Band
+ Turn off hotspot automatically when no devices are connected
+ Maximum channel bandwidth
+ Inactive timeout
+ Inactive timeout for a bridged instance
+ Default timeout: %dms
+ Enable Wi\u2011Fi 6
+ Enable Wi\u2011Fi 7
+ Use randomized MAC
+ Non-persistent
+ None
+ Persistent
+ Maximum number of clients
+ Password
+ Save
+ Security
+ Network name
+ Toggle hex display
+ User supplied configuration
+ Vendor elements
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/xml/locales_config.xml b/mobile/build/intermediates/packaged_res/freedomDebug/xml/locales_config.xml
new file mode 100644
index 00000000..4695e232
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/xml/locales_config.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/xml/log_paths.xml b/mobile/build/intermediates/packaged_res/freedomDebug/xml/log_paths.xml
new file mode 100644
index 00000000..68afdc67
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/xml/log_paths.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/xml/no_backup.xml b/mobile/build/intermediates/packaged_res/freedomDebug/xml/no_backup.xml
new file mode 100644
index 00000000..3e2c649f
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/xml/no_backup.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/packaged_res/freedomDebug/xml/pref_settings.xml b/mobile/build/intermediates/packaged_res/freedomDebug/xml/pref_settings.xml
new file mode 100644
index 00000000..f9820314
--- /dev/null
+++ b/mobile/build/intermediates/packaged_res/freedomDebug/xml/pref_settings.xml
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mobile/build/intermediates/processed_res/freedomDebug/out/output-metadata.json b/mobile/build/intermediates/processed_res/freedomDebug/out/output-metadata.json
new file mode 100644
index 00000000..1e3838bb
--- /dev/null
+++ b/mobile/build/intermediates/processed_res/freedomDebug/out/output-metadata.json
@@ -0,0 +1,20 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "PROCESSED_RES",
+ "kind": "Directory"
+ },
+ "applicationId": "hanson.xyz.vpnhotspotmod",
+ "variantName": "freedomDebug",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "versionCode": 1005,
+ "versionName": "2.16.5",
+ "outputFile": "resources-freedomDebug.ap_"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/mobile/build/intermediates/processed_res/freedomDebug/out/resources-freedomDebug.ap_ b/mobile/build/intermediates/processed_res/freedomDebug/out/resources-freedomDebug.ap_
new file mode 100644
index 00000000..4736fc17
Binary files /dev/null and b/mobile/build/intermediates/processed_res/freedomDebug/out/resources-freedomDebug.ap_ differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/androidx/databinding/DataBinderMapperImpl.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/androidx/databinding/DataBinderMapperImpl.dex
new file mode 100644
index 00000000..7031d21a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/androidx/databinding/DataBinderMapperImpl.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/androidx/databinding/DataBindingComponent.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/androidx/databinding/DataBindingComponent.dex
new file mode 100644
index 00000000..e80739bf
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/androidx/databinding/DataBindingComponent.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/androidx/databinding/library/baseAdapters/BR.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/androidx/databinding/library/baseAdapters/BR.dex
new file mode 100644
index 00000000..6728b235
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/androidx/databinding/library/baseAdapters/BR.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/c9143d713fcfcef5833adf6680970e40887892d2ca82eadad95df53f1d3aad85_0.jar b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/c9143d713fcfcef5833adf6680970e40887892d2ca82eadad95df53f1d3aad85_0.jar
new file mode 100644
index 00000000..04c5d7f1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/c9143d713fcfcef5833adf6680970e40887892d2ca82eadad95df53f1d3aad85_0.jar differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/AlertDialogFragment$Companion$setResultListener$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/AlertDialogFragment$Companion$setResultListener$1.dex
new file mode 100644
index 00000000..e3257eea
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/AlertDialogFragment$Companion$setResultListener$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/AlertDialogFragment$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/AlertDialogFragment$Companion.dex
new file mode 100644
index 00000000..3f8aa273
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/AlertDialogFragment$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/AlertDialogFragment$arg$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/AlertDialogFragment$arg$2.dex
new file mode 100644
index 00000000..5f34ac1f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/AlertDialogFragment$arg$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/AlertDialogFragment.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/AlertDialogFragment.dex
new file mode 100644
index 00000000..87bd3574
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/AlertDialogFragment.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$Companion.dex
new file mode 100644
index 00000000..008e30a7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$clipboard$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$clipboard$2.dex
new file mode 100644
index 00000000..dd1a8a8d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$clipboard$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$customTabsIntent$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$customTabsIntent$2.dex
new file mode 100644
index 00000000..9095c913
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$customTabsIntent$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$english$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$english$2.dex
new file mode 100644
index 00000000..b7edf0ce
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$english$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$hasTouch$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$hasTouch$2.dex
new file mode 100644
index 00000000..1b873af9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$hasTouch$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$location$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$location$2.dex
new file mode 100644
index 00000000..4c889c18
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$location$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$logEvent$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$logEvent$1.dex
new file mode 100644
index 00000000..96510280
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$logEvent$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$onCreate$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$onCreate$1.dex
new file mode 100644
index 00000000..219bf2a7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$onCreate$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$onCreate$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$onCreate$2.dex
new file mode 100644
index 00000000..ee268193
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$onCreate$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$onTrimMemory$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$onTrimMemory$1.dex
new file mode 100644
index 00000000..aae4c291
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$onTrimMemory$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$pref$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$pref$2.dex
new file mode 100644
index 00000000..57685ee6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$pref$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$startServiceWithLocation$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$startServiceWithLocation$1.dex
new file mode 100644
index 00000000..12b0d87d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App$startServiceWithLocation$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App.dex
new file mode 100644
index 00000000..13f1ac22
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/App.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BR.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BR.dex
new file mode 100644
index 00000000..9f0af690
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BR.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion$add$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion$add$1.dex
new file mode 100644
index 00000000..084d3d89
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion$add$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion$componentName$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion$componentName$2.dex
new file mode 100644
index 00000000..7d8a0699
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion$componentName$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion$configFile$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion$configFile$2.dex
new file mode 100644
index 00000000..a842c06e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion$configFile$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion$delete$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion$delete$1.dex
new file mode 100644
index 00000000..9f9bdb1b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion$delete$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion.dex
new file mode 100644
index 00000000..fa60030e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Config$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Config$Creator.dex
new file mode 100644
index 00000000..54622b12
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Config$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Config.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Config.dex
new file mode 100644
index 00000000..792cf8f8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Config.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Startable.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Startable.dex
new file mode 100644
index 00000000..2d5add2f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver$Startable.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver.dex
new file mode 100644
index 00000000..495ae879
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BootReceiver.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BuildConfig.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BuildConfig.dex
new file mode 100644
index 00000000..4fc59929
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/BuildConfig.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl$InnerBrLookup.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl$InnerBrLookup.dex
new file mode 100644
index 00000000..474f220c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl$InnerBrLookup.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl$InnerLayoutIdLookup.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl$InnerLayoutIdLookup.dex
new file mode 100644
index 00000000..5f18297b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl$InnerLayoutIdLookup.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl.dex
new file mode 100644
index 00000000..e4cf41ba
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/DataBinderMapperImpl.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/DataBindingTriggerClass.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/DataBindingTriggerClass.dex
new file mode 100644
index 00000000..a18d1062
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/DataBindingTriggerClass.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$Companion$billingClient$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$Companion$billingClient$2.dex
new file mode 100644
index 00000000..9a942887
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$Companion$billingClient$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$Companion$consumePurchase$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$Companion$consumePurchase$1.dex
new file mode 100644
index 00000000..55de9805
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$Companion$consumePurchase$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$Companion$onBillingSetupFinished$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$Companion$onBillingSetupFinished$1.dex
new file mode 100644
index 00000000..5e1b9579
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$Companion$onBillingSetupFinished$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$Companion.dex
new file mode 100644
index 00000000..4ea2c24a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$onBillingConnected$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$onBillingConnected$1.dex
new file mode 100644
index 00000000..be84957d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment$onBillingConnected$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment.dex
new file mode 100644
index 00000000..9cd61bfd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/EBegFragment.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/Empty$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/Empty$Creator.dex
new file mode 100644
index 00000000..71901405
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/Empty$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/Empty.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/Empty.dex
new file mode 100644
index 00000000..fbaea0c7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/Empty.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/IpNeighbourMonitoringService.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/IpNeighbourMonitoringService.dex
new file mode 100644
index 00000000..ef36606f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/IpNeighbourMonitoringService.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Binder$ifaceChanged$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Binder$ifaceChanged$1.dex
new file mode 100644
index 00000000..ef361fe0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Binder$ifaceChanged$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Binder.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Binder.dex
new file mode 100644
index 00000000..560d817c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Binder.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Companion.dex
new file mode 100644
index 00000000..ca6b99ad
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Framework.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Framework.dex
new file mode 100644
index 00000000..825cea6e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Framework.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Reservation.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Reservation.dex
new file mode 100644
index 00000000..20a01c8f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Reservation.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Root$work$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Root$work$1.dex
new file mode 100644
index 00000000..75396d65
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Root$work$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Root.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Root.dex
new file mode 100644
index 00000000..fdc927a3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Root.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Starter$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Starter$Creator.dex
new file mode 100644
index 00000000..6c6bd529
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Starter$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Starter.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Starter.dex
new file mode 100644
index 00000000..75cfda8c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$Starter.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$doStart$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$doStart$1.dex
new file mode 100644
index 00000000..5bfd9171
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$doStart$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$lohCallback$1$onStarted$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$lohCallback$1$onStarted$1.dex
new file mode 100644
index 00000000..04a64f94
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$lohCallback$1$onStarted$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$lohCallback$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$lohCallback$1.dex
new file mode 100644
index 00000000..41836aa2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$lohCallback$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$onFrameworkStarted$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$onFrameworkStarted$1.dex
new file mode 100644
index 00000000..9db2c73c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$onFrameworkStarted$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$onStartCommand$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$onStartCommand$1.dex
new file mode 100644
index 00000000..043948e4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$onStartCommand$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$receiver$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$receiver$1.dex
new file mode 100644
index 00000000..48833431
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$receiver$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$unregisterReceiver$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$unregisterReceiver$1.dex
new file mode 100644
index 00000000..6d9d4dba
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService$unregisterReceiver$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService.dex
new file mode 100644
index 00000000..17f8e92e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/LocalOnlyHotspotService.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$$inlined$viewModels$default$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$$inlined$viewModels$default$1.dex
new file mode 100644
index 00000000..96718379
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$$inlined$viewModels$default$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$$inlined$viewModels$default$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$$inlined$viewModels$default$2.dex
new file mode 100644
index 00000000..0d3e9ba7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$$inlined$viewModels$default$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$$inlined$viewModels$default$3.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$$inlined$viewModels$default$3.dex
new file mode 100644
index 00000000..a47f0e2e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$$inlined$viewModels$default$3.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$3.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$3.dex
new file mode 100644
index 00000000..b7730e17
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$3.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$4$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$4$1$1.dex
new file mode 100644
index 00000000..ec1da288
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$4$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$4$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$4$1.dex
new file mode 100644
index 00000000..579cafd4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$4$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$4.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$4.dex
new file mode 100644
index 00000000..6663444f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$onCreate$4.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$sam$androidx_lifecycle_Observer$0.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$sam$androidx_lifecycle_Observer$0.dex
new file mode 100644
index 00000000..eec76efe
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity$sam$androidx_lifecycle_Observer$0.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity.dex
new file mode 100644
index 00000000..60c675e5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MainActivity.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MyBroadcastReceiver.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MyBroadcastReceiver.dex
new file mode 100644
index 00000000..826c1aac
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/MyBroadcastReceiver.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder$fetchPersistentGroup$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder$fetchPersistentGroup$1.dex
new file mode 100644
index 00000000..0ffa286b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder$fetchPersistentGroup$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder$groupChanged$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder$groupChanged$1.dex
new file mode 100644
index 00000000..f4ceee5d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder$groupChanged$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder$obtainDeviceAddress$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder$obtainDeviceAddress$1.dex
new file mode 100644
index 00000000..2fdf28e0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder$obtainDeviceAddress$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder$startWps$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder$startWps$2.dex
new file mode 100644
index 00000000..0d36ca2e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder$startWps$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder.dex
new file mode 100644
index 00000000..22c19141
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Binder.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Companion$hasP2pValidateName$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Companion$hasP2pValidateName$2.dex
new file mode 100644
index 00000000..4e8ba7d1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Companion$hasP2pValidateName$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Companion$mNetworkName$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Companion$mNetworkName$2.dex
new file mode 100644
index 00000000..605185dd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Companion$mNetworkName$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Companion.dex
new file mode 100644
index 00000000..b5f1711a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Starter$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Starter$Creator.dex
new file mode 100644
index 00000000..564d0996
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Starter$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Starter.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Starter.dex
new file mode 100644
index 00000000..52e4c609
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Starter.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Status.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Status.dex
new file mode 100644
index 00000000..614a9a0c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$Status.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$deviceListener$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$deviceListener$1.dex
new file mode 100644
index 00000000..13007654
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$deviceListener$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$doStart$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$doStart$1.dex
new file mode 100644
index 00000000..f37eb9bc
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$doStart$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$doStart$listener$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$doStart$listener$1.dex
new file mode 100644
index 00000000..2630e58e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$doStart$listener$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$doStartLocked$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$doStartLocked$1.dex
new file mode 100644
index 00000000..be72d120
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$doStartLocked$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onChannelDisconnected$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onChannelDisconnected$1.dex
new file mode 100644
index 00000000..5d23dd90
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onChannelDisconnected$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onDestroy$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onDestroy$1.dex
new file mode 100644
index 00000000..b0843fc0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onDestroy$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$1$1.dex
new file mode 100644
index 00000000..4fc10d21
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$2$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$2$1$1.dex
new file mode 100644
index 00000000..919f97fa
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$2$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$2$1$info$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$2$1$info$1.dex
new file mode 100644
index 00000000..9387adb3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$2$1$info$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$2$1.dex
new file mode 100644
index 00000000..727eed59
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$2.dex
new file mode 100644
index 00000000..4645f1ee
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onLocationModeChanged$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onP2pConnectionChanged$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onP2pConnectionChanged$1.dex
new file mode 100644
index 00000000..978c0291
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onP2pConnectionChanged$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onSharedPreferenceChanged$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onSharedPreferenceChanged$1.dex
new file mode 100644
index 00000000..bf561d11
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onSharedPreferenceChanged$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onSharedPreferenceChanged$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onSharedPreferenceChanged$2.dex
new file mode 100644
index 00000000..24f9b194
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onSharedPreferenceChanged$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onStartCommand$1$1$onSuccess$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onStartCommand$1$1$onSuccess$1.dex
new file mode 100644
index 00000000..58acd64d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onStartCommand$1$1$onSuccess$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onStartCommand$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onStartCommand$1$1.dex
new file mode 100644
index 00000000..1a170313
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onStartCommand$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onStartCommand$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onStartCommand$1.dex
new file mode 100644
index 00000000..9054fa1f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$onStartCommand$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$receiver$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$receiver$1$1.dex
new file mode 100644
index 00000000..d5b8dcbe
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$receiver$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$receiver$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$receiver$1.dex
new file mode 100644
index 00000000..0934d805
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$receiver$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$removeGroup$1$onSuccess$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$removeGroup$1$onSuccess$1.dex
new file mode 100644
index 00000000..07877fe2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$removeGroup$1$onSuccess$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$removeGroup$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$removeGroup$1.dex
new file mode 100644
index 00000000..cd93b392
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$removeGroup$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$setOperatingChannel$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$setOperatingChannel$1.dex
new file mode 100644
index 00000000..f7476dad
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$setOperatingChannel$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$setVendorElements$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$setVendorElements$1.dex
new file mode 100644
index 00000000..3e514026
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$setVendorElements$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$startFailure$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$startFailure$1$1.dex
new file mode 100644
index 00000000..561a6930
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$startFailure$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$startFailure$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$startFailure$2.dex
new file mode 100644
index 00000000..8cf45c54
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService$startFailure$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService.dex
new file mode 100644
index 00000000..c8df5577
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RepeaterService.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager$Companion$clean$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager$Companion$clean$1$1.dex
new file mode 100644
index 00000000..8520b358
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager$Companion$clean$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager$Companion.dex
new file mode 100644
index 00000000..ae132d9b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager$LocalOnly.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager$LocalOnly.dex
new file mode 100644
index 00000000..d69ea31a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager$LocalOnly.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager$start$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager$start$1$1.dex
new file mode 100644
index 00000000..f65909c6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager$start$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager.dex
new file mode 100644
index 00000000..3bc6c5c9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/RoutingManager.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/ServiceNotification$buildNotification$$inlined$sortedBy$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/ServiceNotification$buildNotification$$inlined$sortedBy$1.dex
new file mode 100644
index 00000000..63272c7c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/ServiceNotification$buildNotification$$inlined$sortedBy$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/ServiceNotification.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/ServiceNotification.dex
new file mode 100644
index 00000000..4edb9c23
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/ServiceNotification.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment$onCreatePreferences$1$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment$onCreatePreferences$1$1$1.dex
new file mode 100644
index 00000000..a773f7b1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment$onCreatePreferences$1$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment$onCreatePreferences$3$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment$onCreatePreferences$3$1.dex
new file mode 100644
index 00000000..9a77028f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment$onCreatePreferences$3$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment$onCreatePreferences$4$1$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment$onCreatePreferences$4$1$1$1.dex
new file mode 100644
index 00000000..b096f6de
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment$onCreatePreferences$4$1$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment$onCreatePreferences$5$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment$onCreatePreferences$5$1.dex
new file mode 100644
index 00000000..7a0f728b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment$onCreatePreferences$5$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment.dex
new file mode 100644
index 00000000..312d106a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/SettingsPreferenceFragment.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Binder.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Binder.dex
new file mode 100644
index 00000000..8113af2e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Binder.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Companion.dex
new file mode 100644
index 00000000..dc57cd84
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Downstream.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Downstream.dex
new file mode 100644
index 00000000..665f7d8a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Downstream.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Starter$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Starter$Creator.dex
new file mode 100644
index 00000000..1d105808
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Starter$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Starter.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Starter.dex
new file mode 100644
index 00000000..8f217eac
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$Starter.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$onDestroy$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$onDestroy$1.dex
new file mode 100644
index 00000000..5ae1f362
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$onDestroy$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$onDownstreamsChangedLocked$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$onDownstreamsChangedLocked$2.dex
new file mode 100644
index 00000000..cb25c523
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$onDownstreamsChangedLocked$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$onStartCommand$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$onStartCommand$1.dex
new file mode 100644
index 00000000..30addbe1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$onStartCommand$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$onTetheredInterfacesChanged$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$onTetheredInterfacesChanged$1.dex
new file mode 100644
index 00000000..c68996f7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$onTetheredInterfacesChanged$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$updateNotification$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$updateNotification$1.dex
new file mode 100644
index 00000000..06aa7752
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService$updateNotification$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService.dex
new file mode 100644
index 00000000..915ab56b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/TetheringService.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$DiffCallback.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$DiffCallback.dex
new file mode 100644
index 00000000..53f91ab4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$DiffCallback.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$description$1$WhenMappings.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$description$1$WhenMappings.dex
new file mode 100644
index 00000000..3f25287d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$description$1$WhenMappings.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$description$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$description$1.dex
new file mode 100644
index 00000000..49f8949a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$description$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$macString$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$macString$2.dex
new file mode 100644
index 00000000..432c3336
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$macString$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$title$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$title$1.dex
new file mode 100644
index 00000000..4b9ce6f6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$title$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$titleSelectable$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$titleSelectable$1.dex
new file mode 100644
index 00000000..e86a0703
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client$titleSelectable$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client.dex
new file mode 100644
index 00000000..918a0cbb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/Client.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$fullMode$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$fullMode$1.dex
new file mode 100644
index 00000000..cf563160
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$fullMode$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$onServiceConnected$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$onServiceConnected$1.dex
new file mode 100644
index 00000000..aa4b7393
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$onServiceConnected$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$onServiceConnected$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$onServiceConnected$2.dex
new file mode 100644
index 00000000..6c17e4c9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$onServiceConnected$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$populateClients$$inlined$compareBy$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$populateClients$$inlined$compareBy$1.dex
new file mode 100644
index 00000000..fff13e00
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$populateClients$$inlined$compareBy$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$populateClients$$inlined$thenBy$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$populateClients$$inlined$thenBy$1.dex
new file mode 100644
index 00000000..61c1d9a6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$populateClients$$inlined$thenBy$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$populateClients$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$populateClients$1$1.dex
new file mode 100644
index 00000000..923d53b2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$populateClients$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$populateClients$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$populateClients$2.dex
new file mode 100644
index 00000000..45669cb9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$populateClients$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$receiver$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$receiver$1.dex
new file mode 100644
index 00000000..3371f2cb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel$receiver$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel.dex
new file mode 100644
index 00000000..a4ec01ad
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientViewModel.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientAdapter$onBindViewHolder$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientAdapter$onBindViewHolder$1.dex
new file mode 100644
index 00000000..a69361df
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientAdapter$onBindViewHolder$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientAdapter$updateTraffic$rate$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientAdapter$updateTraffic$rate$1.dex
new file mode 100644
index 00000000..d3c660f5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientAdapter$updateTraffic$rate$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientAdapter.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientAdapter.dex
new file mode 100644
index 00000000..741d86ce
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientAdapter.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder$onMenuItemClick$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder$onMenuItemClick$2$1.dex
new file mode 100644
index 00000000..c682fe11
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder$onMenuItemClick$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder$onMenuItemClick$3$invokeSuspend$$inlined$withStarted$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder$onMenuItemClick$3$invokeSuspend$$inlined$withStarted$1.dex
new file mode 100644
index 00000000..926ee36b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder$onMenuItemClick$3$invokeSuspend$$inlined$withStarted$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder$onMenuItemClick$3$stats$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder$onMenuItemClick$3$stats$1.dex
new file mode 100644
index 00000000..ffe580b9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder$onMenuItemClick$3$stats$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder$onMenuItemClick$3.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder$onMenuItemClick$3.dex
new file mode 100644
index 00000000..c54cadd9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder$onMenuItemClick$3.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder.dex
new file mode 100644
index 00000000..4569c81c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$ClientViewHolder.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameArg$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameArg$Creator.dex
new file mode 100644
index 00000000..efdf67ee
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameArg$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameArg.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameArg.dex
new file mode 100644
index 00000000..b052a069
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameArg.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameDialogFragment$onClick$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameDialogFragment$onClick$1$1.dex
new file mode 100644
index 00000000..461e494c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameDialogFragment$onClick$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameDialogFragment$onClick$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameDialogFragment$onClick$1.dex
new file mode 100644
index 00000000..65b6840a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameDialogFragment$onClick$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameDialogFragment.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameDialogFragment.dex
new file mode 100644
index 00000000..e11528cb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$NicknameDialogFragment.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$StatsArg$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$StatsArg$Creator.dex
new file mode 100644
index 00000000..1d58d585
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$StatsArg$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$StatsArg.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$StatsArg.dex
new file mode 100644
index 00000000..82bdf305
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$StatsArg.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$StatsDialogFragment.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$StatsDialogFragment.dex
new file mode 100644
index 00000000..0ffa9530
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$StatsDialogFragment.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$TrafficRate.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$TrafficRate.dex
new file mode 100644
index 00000000..d51f9b20
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$TrafficRate.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onCreateView$$inlined$activityViewModels$default$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onCreateView$$inlined$activityViewModels$default$1.dex
new file mode 100644
index 00000000..b9d11dfb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onCreateView$$inlined$activityViewModels$default$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onCreateView$$inlined$activityViewModels$default$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onCreateView$$inlined$activityViewModels$default$2.dex
new file mode 100644
index 00000000..d53ef158
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onCreateView$$inlined$activityViewModels$default$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onCreateView$$inlined$activityViewModels$default$3.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onCreateView$$inlined$activityViewModels$default$3.dex
new file mode 100644
index 00000000..d3bd9abd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onCreateView$$inlined$activityViewModels$default$3.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onCreateView$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onCreateView$2$1.dex
new file mode 100644
index 00000000..9cce405d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onCreateView$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$1$1$invokeSuspend$$inlined$withStarted$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$1$1$invokeSuspend$$inlined$withStarted$1.dex
new file mode 100644
index 00000000..8746879b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$1$1$invokeSuspend$$inlined$withStarted$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$1$1.dex
new file mode 100644
index 00000000..c14dac78
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$1.dex
new file mode 100644
index 00000000..cb2be569
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$2$1$invokeSuspend$$inlined$withStarted$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$2$1$invokeSuspend$$inlined$withStarted$1.dex
new file mode 100644
index 00000000..c0c6f6ee
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$2$1$invokeSuspend$$inlined$withStarted$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$2$1.dex
new file mode 100644
index 00000000..b12ea778
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$2.dex
new file mode 100644
index 00000000..29c5ee35
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$3$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$3$1.dex
new file mode 100644
index 00000000..17b56012
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$3$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$3.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$3.dex
new file mode 100644
index 00000000..71fc93fe
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$onStart$3.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$sam$androidx_lifecycle_Observer$0.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$sam$androidx_lifecycle_Observer$0.dex
new file mode 100644
index 00000000..80376377
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment$sam$androidx_lifecycle_Observer$0.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment.dex
new file mode 100644
index 00000000..ffeb2364
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/ClientsFragment.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$UnexpectedError$formatMessage$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$UnexpectedError$formatMessage$1.dex
new file mode 100644
index 00000000..b36aec9e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$UnexpectedError$formatMessage$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$UnexpectedError.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$UnexpectedError.dex
new file mode 100644
index 00000000..83a145b2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$UnexpectedError.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$buildIdPattern$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$buildIdPattern$2.dex
new file mode 100644
index 00000000..d4858e89
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$buildIdPattern$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$extractCountry$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$extractCountry$1.dex
new file mode 100644
index 00000000..339d510d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$extractCountry$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$perform$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$perform$1$1.dex
new file mode 100644
index 00000000..d7446c78
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$perform$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$perform$1$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$perform$1$2.dex
new file mode 100644
index 00000000..24a009c8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$perform$1$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$perform$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$perform$1.dex
new file mode 100644
index 00000000..a7442a61
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$perform$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$readResponse$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$readResponse$1.dex
new file mode 100644
index 00000000..fbd39761
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$readResponse$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$readResponse$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$readResponse$2$1.dex
new file mode 100644
index 00000000..6804f7c3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup$readResponse$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup.dex
new file mode 100644
index 00000000..ab4bf7aa
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/client/MacLookup.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ActivityMainBinding.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ActivityMainBinding.dex
new file mode 100644
index 00000000..371bebf1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ActivityMainBinding.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/DialogWifiApBinding.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/DialogWifiApBinding.dex
new file mode 100644
index 00000000..3852a0c4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/DialogWifiApBinding.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentClientsBinding.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentClientsBinding.dex
new file mode 100644
index 00000000..fdb849bf
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentClientsBinding.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentEbegBinding.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentEbegBinding.dex
new file mode 100644
index 00000000..d5b906ba
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentEbegBinding.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentTetheringBinding.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentTetheringBinding.dex
new file mode 100644
index 00000000..e7ca262e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/FragmentTetheringBinding.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBinding.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBinding.dex
new file mode 100644
index 00000000..87f79cdf
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBinding.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBindingImpl.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBindingImpl.dex
new file mode 100644
index 00000000..4d05c6cf
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemClientBindingImpl.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBinding.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBinding.dex
new file mode 100644
index 00000000..4b19cb14
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBinding.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBindingImpl.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBindingImpl.dex
new file mode 100644
index 00000000..2966f5b7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemInterfaceBindingImpl.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBinding.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBinding.dex
new file mode 100644
index 00000000..a6f0c1b7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBinding.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBindingImpl.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBindingImpl.dex
new file mode 100644
index 00000000..a1acdf57
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemManageBindingImpl.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBinding.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBinding.dex
new file mode 100644
index 00000000..77412cd0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBinding.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBindingImpl.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBindingImpl.dex
new file mode 100644
index 00000000..b1293364
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/ListitemRepeaterBindingImpl.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceMaterialBinding.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceMaterialBinding.dex
new file mode 100644
index 00000000..03ae47af
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceMaterialBinding.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetEdittextAutocompleteBinding.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetEdittextAutocompleteBinding.dex
new file mode 100644
index 00000000..6d290c15
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetEdittextAutocompleteBinding.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetMaterialSwitchBinding.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetMaterialSwitchBinding.dex
new file mode 100644
index 00000000..f1e2ebfe
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/databinding/PreferenceWidgetMaterialSwitchBinding.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener$Listener.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener$Listener.dex
new file mode 100644
index 00000000..79b9300b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener$Listener.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener.dex
new file mode 100644
index 00000000..55e0bf7f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/generated/callback/OnClickListener.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering$Companion$clazz$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering$Companion$clazz$2.dex
new file mode 100644
index 00000000..790b77eb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering$Companion$clazz$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering$Companion$isTetheringOn$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering$Companion$isTetheringOn$2.dex
new file mode 100644
index 00000000..d24eb427
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering$Companion$isTetheringOn$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering$Companion.dex
new file mode 100644
index 00000000..38d599ed
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering$receiver$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering$receiver$1.dex
new file mode 100644
index 00000000..c7ff4b5c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering$receiver$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering.dex
new file mode 100644
index 00000000..3bfdf6c5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/BluetoothTethering.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/Data.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/Data.dex
new file mode 100644
index 00000000..599f3a09
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/Data.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/InterfaceManager$Data.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/InterfaceManager$Data.dex
new file mode 100644
index 00000000..f7a86ccd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/InterfaceManager$Data.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/InterfaceManager$ViewHolder.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/InterfaceManager$ViewHolder.dex
new file mode 100644
index 00000000..b63b0e75
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/InterfaceManager$ViewHolder.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/InterfaceManager.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/InterfaceManager.dex
new file mode 100644
index 00000000..cefbc8fc
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/InterfaceManager.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/IpNeighbourMonitoringTileService.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/IpNeighbourMonitoringTileService.dex
new file mode 100644
index 00000000..764adaad
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/IpNeighbourMonitoringTileService.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager$Companion.dex
new file mode 100644
index 00000000..4c2df138
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager$Data.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager$Data.dex
new file mode 100644
index 00000000..fc645ebb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager$Data.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager$ViewHolder.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager$ViewHolder.dex
new file mode 100644
index 00000000..53ef4603
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager$ViewHolder.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager$onServiceConnected$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager$onServiceConnected$1.dex
new file mode 100644
index 00000000..768f4005
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager$onServiceConnected$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager.dex
new file mode 100644
index 00000000..7b940901
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotManager.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotTileService$onServiceConnected$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotTileService$onServiceConnected$1.dex
new file mode 100644
index 00000000..ecb2c5c5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotTileService$onServiceConnected$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotTileService$tile$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotTileService$tile$2.dex
new file mode 100644
index 00000000..cffe1e0c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotTileService$tile$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotTileService$updateTile$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotTileService$updateTile$1$1.dex
new file mode 100644
index 00000000..5013b290
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotTileService$updateTile$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotTileService.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotTileService.dex
new file mode 100644
index 00000000..6101c0e6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/LocalOnlyHotspotTileService.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar$Data.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar$Data.dex
new file mode 100644
index 00000000..3ca78ad8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar$Data.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar$ViewHolder.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar$ViewHolder.dex
new file mode 100644
index 00000000..9a74a55a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar$ViewHolder.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar$start$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar$start$1.dex
new file mode 100644
index 00000000..cf637569
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar$start$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar$start$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar$start$2.dex
new file mode 100644
index 00000000..7c7ff44b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar$start$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar.dex
new file mode 100644
index 00000000..49c855ab
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/ManageBar.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/Manager$DiffCallback.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/Manager$DiffCallback.dex
new file mode 100644
index 00000000..a7b09a4f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/Manager$DiffCallback.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/Manager.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/Manager.dex
new file mode 100644
index 00000000..be5df8b1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/Manager.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$1$1.dex
new file mode 100644
index 00000000..6716431e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$1.dex
new file mode 100644
index 00000000..e1056902
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$2.dex
new file mode 100644
index 00000000..1fd8f2c3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$ConfigHolder.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$ConfigHolder.dex
new file mode 100644
index 00000000..64b3c509
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$ConfigHolder.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$Data$WhenMappings.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$Data$WhenMappings.dex
new file mode 100644
index 00000000..9c85ed7c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$Data$WhenMappings.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$Data.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$Data.dex
new file mode 100644
index 00000000..0d0c13d9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$Data.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$ViewHolder.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$ViewHolder.dex
new file mode 100644
index 00000000..10c41126
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$ViewHolder.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$WpsDialogFragment.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$WpsDialogFragment.dex
new file mode 100644
index 00000000..9ebc4cf7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$WpsDialogFragment.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$WpsRet$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$WpsRet$Creator.dex
new file mode 100644
index 00000000..6fa261ea
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$WpsRet$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$WpsRet.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$WpsRet.dex
new file mode 100644
index 00000000..510c8f0d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$WpsRet.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$configure$1$invokeSuspend$$inlined$withStarted$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$configure$1$invokeSuspend$$inlined$withStarted$1.dex
new file mode 100644
index 00000000..87d6ca7e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$configure$1$invokeSuspend$$inlined$withStarted$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$configure$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$configure$1.dex
new file mode 100644
index 00000000..c25a6d8a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$configure$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$getConfiguration$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$getConfiguration$1.dex
new file mode 100644
index 00000000..8b71cee2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$getConfiguration$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$onServiceConnected$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$onServiceConnected$1.dex
new file mode 100644
index 00000000..0cbe9b09
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$onServiceConnected$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$onServiceConnected$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$onServiceConnected$2.dex
new file mode 100644
index 00000000..d770b76a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$onServiceConnected$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$1.dex
new file mode 100644
index 00000000..cfb9b9c3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$2.dex
new file mode 100644
index 00000000..024eda49
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$3.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$3.dex
new file mode 100644
index 00000000..75d3dbae
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$3.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$4.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$4.dex
new file mode 100644
index 00000000..0e36a9c6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$4.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$5.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$5.dex
new file mode 100644
index 00000000..8cd29e47
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$special$$inlined$viewModels$default$5.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$updateConfiguration$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$updateConfiguration$1.dex
new file mode 100644
index 00000000..b50fb5db
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$updateConfiguration$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$updateConfiguration$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$updateConfiguration$2$1.dex
new file mode 100644
index 00000000..d74e2040
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager$updateConfiguration$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager.dex
new file mode 100644
index 00000000..3fa7d5f6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterManager.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService$WhenMappings.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService$WhenMappings.dex
new file mode 100644
index 00000000..67896bb9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService$WhenMappings.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService$onServiceConnected$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService$onServiceConnected$1.dex
new file mode 100644
index 00000000..4d9702f0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService$onServiceConnected$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService$onServiceConnected$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService$onServiceConnected$2.dex
new file mode 100644
index 00000000..4e2473ef
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService$onServiceConnected$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService$tile$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService$tile$2.dex
new file mode 100644
index 00000000..aeb676ab
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService$tile$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService.dex
new file mode 100644
index 00000000..2c987fca
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/RepeaterTileService.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Bluetooth$stop$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Bluetooth$stop$1.dex
new file mode 100644
index 00000000..55f6a8d8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Bluetooth$stop$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Bluetooth$tethering$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Bluetooth$tethering$1.dex
new file mode 100644
index 00000000..8b27c08c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Bluetooth$tethering$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Bluetooth.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Bluetooth.dex
new file mode 100644
index 00000000..7922454b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Bluetooth.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Data.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Data.dex
new file mode 100644
index 00000000..f395e9fd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Data.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Ethernet$stop$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Ethernet$stop$1.dex
new file mode 100644
index 00000000..06ab1d0b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Ethernet$stop$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Ethernet.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Ethernet.dex
new file mode 100644
index 00000000..c7b3566d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Ethernet.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Usb$stop$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Usb$stop$1.dex
new file mode 100644
index 00000000..2c8df185
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Usb$stop$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Usb.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Usb.dex
new file mode 100644
index 00000000..0d10152e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Usb.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$ViewHolder$onClick$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$ViewHolder$onClick$1.dex
new file mode 100644
index 00000000..ae1bb894
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$ViewHolder$onClick$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$ViewHolder.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$ViewHolder.dex
new file mode 100644
index 00000000..5b158fc9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$ViewHolder.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Wifi$formatCapability$1$result$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Wifi$formatCapability$1$result$1.dex
new file mode 100644
index 00000000..99545dc5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Wifi$formatCapability$1$result$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Wifi$stop$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Wifi$stop$1.dex
new file mode 100644
index 00000000..cbe48542
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Wifi$stop$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Wifi$text$1$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Wifi$text$1$2$1.dex
new file mode 100644
index 00000000..13f51743
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Wifi$text$1$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Wifi.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Wifi.dex
new file mode 100644
index 00000000..c6f10332
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$Wifi.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$onException$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$onException$1.dex
new file mode 100644
index 00000000..1628b8dd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$onException$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$onTetheringFailed$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$onTetheringFailed$2.dex
new file mode 100644
index 00000000..617063bd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$onTetheringFailed$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$updateErrorMessage$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$updateErrorMessage$1.dex
new file mode 100644
index 00000000..2e59c569
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager$updateErrorMessage$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager.dex
new file mode 100644
index 00000000..7e190c22
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetherManager.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$bluetoothManager$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$bluetoothManager$2.dex
new file mode 100644
index 00000000..17793b96
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$bluetoothManager$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$ethernetManager$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$ethernetManager$2.dex
new file mode 100644
index 00000000..59c2c775
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$ethernetManager$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$localOnlyHotspotManager$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$localOnlyHotspotManager$2.dex
new file mode 100644
index 00000000..00ee64da
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$localOnlyHotspotManager$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$notifyTetherTypeChanged$$inlined$withStarted$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$notifyTetherTypeChanged$$inlined$withStarted$1.dex
new file mode 100644
index 00000000..4ea0b1b3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$notifyTetherTypeChanged$$inlined$withStarted$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$notifyTetherTypeChanged$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$notifyTetherTypeChanged$1.dex
new file mode 100644
index 00000000..0e72c123
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$notifyTetherTypeChanged$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$repeaterManager$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$repeaterManager$2.dex
new file mode 100644
index 00000000..10bc1a0e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$repeaterManager$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$tetherManagers$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$tetherManagers$2.dex
new file mode 100644
index 00000000..b5fe8af8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter$tetherManagers$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter.dex
new file mode 100644
index 00000000..8ca09c9b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$ManagerAdapter.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onCreateView$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onCreateView$1$1.dex
new file mode 100644
index 00000000..685fdfe5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onCreateView$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onCreateView$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onCreateView$1.dex
new file mode 100644
index 00000000..b0b94f5b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onCreateView$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onMenuItemClick$3$invokeSuspend$$inlined$withStarted$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onMenuItemClick$3$invokeSuspend$$inlined$withStarted$1.dex
new file mode 100644
index 00000000..031a67e8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onMenuItemClick$3$invokeSuspend$$inlined$withStarted$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onMenuItemClick$3.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onMenuItemClick$3.dex
new file mode 100644
index 00000000..b28e4b35
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onMenuItemClick$3.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$1$1$invokeSuspend$$inlined$withStarted$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$1$1$invokeSuspend$$inlined$withStarted$1.dex
new file mode 100644
index 00000000..839e47d9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$1$1$invokeSuspend$$inlined$withStarted$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$1$1.dex
new file mode 100644
index 00000000..518b023e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$1.dex
new file mode 100644
index 00000000..4646586b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$2$1.dex
new file mode 100644
index 00000000..696a9dc7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$2.dex
new file mode 100644
index 00000000..88d68f51
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$onServiceConnected$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$receiver$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$receiver$1.dex
new file mode 100644
index 00000000..77bc6537
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment$receiver$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment.dex
new file mode 100644
index 00000000..e8bea35e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringFragment.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Bluetooth$onStartListening$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Bluetooth$onStartListening$1$1.dex
new file mode 100644
index 00000000..05f7a582
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Bluetooth$onStartListening$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Bluetooth$stop$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Bluetooth$stop$1.dex
new file mode 100644
index 00000000..0d1b0121
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Bluetooth$stop$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Bluetooth$updateTile$1$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Bluetooth$updateTile$1$2.dex
new file mode 100644
index 00000000..fb76ef2d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Bluetooth$updateTile$1$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Bluetooth.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Bluetooth.dex
new file mode 100644
index 00000000..83b1d28b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Bluetooth.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Ethernet$stop$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Ethernet$stop$1.dex
new file mode 100644
index 00000000..c0271bdf
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Ethernet$stop$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Ethernet.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Ethernet.dex
new file mode 100644
index 00000000..97ed3349
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Ethernet.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Usb$stop$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Usb$stop$1.dex
new file mode 100644
index 00000000..944018dc
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Usb$stop$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Usb.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Usb.dex
new file mode 100644
index 00000000..92f9b8d8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Usb.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Wifi$stop$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Wifi$stop$1.dex
new file mode 100644
index 00000000..19986165
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Wifi$stop$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Wifi.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Wifi.dex
new file mode 100644
index 00000000..ad15b503
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$Wifi.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$onException$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$onException$1.dex
new file mode 100644
index 00000000..c37377d9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$onException$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$onServiceConnected$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$onServiceConnected$1.dex
new file mode 100644
index 00000000..c526d882
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$onServiceConnected$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$onStartListening$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$onStartListening$1.dex
new file mode 100644
index 00000000..1ed14696
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$onStartListening$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$onTetheringFailed$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$onTetheringFailed$1.dex
new file mode 100644
index 00000000..58de488b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$onTetheringFailed$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$receiver$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$receiver$1.dex
new file mode 100644
index 00000000..209c1421
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$receiver$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$tileOff$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$tileOff$2.dex
new file mode 100644
index 00000000..a2a739d3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$tileOff$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$tileOn$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$tileOn$2.dex
new file mode 100644
index 00000000..916ec6be
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$tileOn$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$updateTile$1$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$updateTile$1$2.dex
new file mode 100644
index 00000000..27d218c4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService$updateTile$1$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService.dex
new file mode 100644
index 00000000..c605e08e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/manage/TetheringTileService.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/DhcpWorkaround$enable$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/DhcpWorkaround$enable$1$1.dex
new file mode 100644
index 00000000..6df8688d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/DhcpWorkaround$enable$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/DhcpWorkaround$enable$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/DhcpWorkaround$enable$1.dex
new file mode 100644
index 00000000..dc62d23c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/DhcpWorkaround$enable$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/DhcpWorkaround.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/DhcpWorkaround.dex
new file mode 100644
index 00000000..7e3fb22b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/DhcpWorkaround.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/InetAddressComparator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/InetAddressComparator.dex
new file mode 100644
index 00000000..28c1290e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/InetAddressComparator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpDev.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpDev.dex
new file mode 100644
index 00000000..0b1769e0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpDev.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$arp$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$arp$1.dex
new file mode 100644
index 00000000..2f70a013
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$arp$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$makeArp$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$makeArp$1.dex
new file mode 100644
index 00000000..7e64bfc6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$makeArp$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$makeArp$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$makeArp$2.dex
new file mode 100644
index 00000000..8d89e8cb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$makeArp$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$parse$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$parse$1.dex
new file mode 100644
index 00000000..5651a3e1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$parse$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$parse$list$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$parse$list$1.dex
new file mode 100644
index 00000000..7fdf6b5d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$parse$list$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$parse$list$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$parse$list$2.dex
new file mode 100644
index 00000000..356ba8cf
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$parse$list$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$parse$list$3.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$parse$list$3.dex
new file mode 100644
index 00000000..b0ee155d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion$parse$list$3.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion.dex
new file mode 100644
index 00000000..de550ba5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$State.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$State.dex
new file mode 100644
index 00000000..a217021d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour$State.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour.dex
new file mode 100644
index 00000000..f51405f6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbour.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbourKt.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbourKt.dex
new file mode 100644
index 00000000..3490b581
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/IpNeighbourKt.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/MacAddressCompat$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/MacAddressCompat$Companion.dex
new file mode 100644
index 00000000..5af6b8ec
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/MacAddressCompat$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/MacAddressCompat.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/MacAddressCompat.dex
new file mode 100644
index 00000000..41166ab0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/MacAddressCompat.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Client$transaction$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Client$transaction$1.dex
new file mode 100644
index 00000000..68e32c8e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Client$transaction$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Client.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Client.dex
new file mode 100644
index 00000000..b08e6189
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Client.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Companion$clean$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Companion$clean$1.dex
new file mode 100644
index 00000000..7c454c27
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Companion$clean$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Companion.dex
new file mode 100644
index 00000000..f2bc0855
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$DnsRoute$transaction$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$DnsRoute$transaction$1.dex
new file mode 100644
index 00000000..c72914b1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$DnsRoute$transaction$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$DnsRoute.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$DnsRoute.dex
new file mode 100644
index 00000000..95130e57
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$DnsRoute.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$InterfaceGoneException.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$InterfaceGoneException.dex
new file mode 100644
index 00000000..de0260a5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$InterfaceGoneException.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$InterfaceNotFoundException.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$InterfaceNotFoundException.dex
new file mode 100644
index 00000000..b4725524
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$InterfaceNotFoundException.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$MasqueradeMode.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$MasqueradeMode.dex
new file mode 100644
index 00000000..d05adff3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$MasqueradeMode.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Upstream$Subrouting$transaction$1$WhenMappings.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Upstream$Subrouting$transaction$1$WhenMappings.dex
new file mode 100644
index 00000000..6433a3dd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Upstream$Subrouting$transaction$1$WhenMappings.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Upstream$Subrouting$transaction$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Upstream$Subrouting$transaction$1.dex
new file mode 100644
index 00000000..e396722c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Upstream$Subrouting$transaction$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Upstream$Subrouting.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Upstream$Subrouting.dex
new file mode 100644
index 00000000..c0abb6c9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Upstream$Subrouting.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Upstream.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Upstream.dex
new file mode 100644
index 00000000..08e9b1bc
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$Upstream.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$onIpNeighbourAvailable$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$onIpNeighbourAvailable$1$1.dex
new file mode 100644
index 00000000..82997fc1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$onIpNeighbourAvailable$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$updateDnsRoute$selected$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$updateDnsRoute$selected$1$1.dex
new file mode 100644
index 00000000..da31278e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$updateDnsRoute$selected$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$updateDnsRoute$selected$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$updateDnsRoute$selected$1.dex
new file mode 100644
index 00000000..18c11057
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing$updateDnsRoute$selected$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing.dex
new file mode 100644
index 00000000..b7a76fde
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/Routing.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetherOffloadManager.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetherOffloadManager.dex
new file mode 100644
index 00000000..d2117d62
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetherOffloadManager.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetherType$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetherType$Companion.dex
new file mode 100644
index 00000000..a22c403a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetherType$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetherType$WhenMappings.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetherType$WhenMappings.dex
new file mode 100644
index 00000000..7945d1a9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetherType$WhenMappings.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetherType.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetherType.dex
new file mode 100644
index 00000000..b78fe69c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetherType.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$InPlaceExecutor.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$InPlaceExecutor.dex
new file mode 100644
index 00000000..fb50bccb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$InPlaceExecutor.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$StartTetheringCallback$DefaultImpls.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$StartTetheringCallback$DefaultImpls.dex
new file mode 100644
index 00000000..77a1ca30
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$StartTetheringCallback$DefaultImpls.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$StartTetheringCallback.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$StartTetheringCallback.dex
new file mode 100644
index 00000000..1a152e6b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$StartTetheringCallback.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$TetheringEventCallback$DefaultImpls.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$TetheringEventCallback$DefaultImpls.dex
new file mode 100644
index 00000000..de8156c8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$TetheringEventCallback$DefaultImpls.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$TetheringEventCallback.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$TetheringEventCallback.dex
new file mode 100644
index 00000000..bd16463f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$TetheringEventCallback.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$build$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$build$2.dex
new file mode 100644
index 00000000..17a61b63
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$build$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$classOnStartTetheringCallback$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$classOnStartTetheringCallback$2.dex
new file mode 100644
index 00000000..5840883b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$classOnStartTetheringCallback$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$classTetheringRequestBuilder$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$classTetheringRequestBuilder$2.dex
new file mode 100644
index 00000000..5dd77120
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$classTetheringRequestBuilder$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$clazz$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$clazz$2.dex
new file mode 100644
index 00000000..df4f7b53
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$clazz$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$getLastTetherError$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$getLastTetherError$2.dex
new file mode 100644
index 00000000..a3f41a7c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$getLastTetherError$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$instance$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$instance$2.dex
new file mode 100644
index 00000000..0658c52f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$instance$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$interfaceStartTetheringCallback$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$interfaceStartTetheringCallback$2.dex
new file mode 100644
index 00000000..017cefb4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$interfaceStartTetheringCallback$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$interfaceTetheringEventCallback$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$interfaceTetheringEventCallback$2.dex
new file mode 100644
index 00000000..4909e17f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$interfaceTetheringEventCallback$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$newTetheringRequestBuilder$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$newTetheringRequestBuilder$2.dex
new file mode 100644
index 00000000..fc9a0f11
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$newTetheringRequestBuilder$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$proxy$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$proxy$1.dex
new file mode 100644
index 00000000..247316e7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$proxy$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallback$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallback$2.dex
new file mode 100644
index 00000000..420d4489
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallback$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallback$proxy$1$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallback$proxy$1$1$1.dex
new file mode 100644
index 00000000..4f37dea5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallback$proxy$1$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallback$proxy$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallback$proxy$1$1.dex
new file mode 100644
index 00000000..e28d784f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallback$proxy$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallbackCompat$1$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallbackCompat$1$1$1.dex
new file mode 100644
index 00000000..c41e4e9b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallbackCompat$1$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallbackCompat$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallbackCompat$1$1.dex
new file mode 100644
index 00000000..66ddc91b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$registerTetheringEventCallbackCompat$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$resolvedService$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$resolvedService$1.dex
new file mode 100644
index 00000000..9d1e9a04
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$resolvedService$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$setExemptFromEntitlementCheck$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$setExemptFromEntitlementCheck$2.dex
new file mode 100644
index 00000000..4b468661
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$setExemptFromEntitlementCheck$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$setShouldShowEntitlementUi$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$setShouldShowEntitlementUi$2.dex
new file mode 100644
index 00000000..9f468a48
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$setShouldShowEntitlementUi$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTethering$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTethering$2.dex
new file mode 100644
index 00000000..58d85563
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTethering$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTethering$5$onTetheringFailed$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTethering$5$onTetheringFailed$1.dex
new file mode 100644
index 00000000..3e05082f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTethering$5$onTetheringFailed$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTethering$5.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTethering$5.dex
new file mode 100644
index 00000000..78b612cc
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTethering$5.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTethering$6.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTethering$6.dex
new file mode 100644
index 00000000..bf96be79
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTethering$6.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTetheringLegacy$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTetheringLegacy$2.dex
new file mode 100644
index 00000000..55e274ae
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$startTetheringLegacy$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$stopTethering$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$stopTethering$2.dex
new file mode 100644
index 00000000..68a741c2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$stopTethering$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$stopTethering$4.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$stopTethering$4.dex
new file mode 100644
index 00000000..29986fe5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$stopTethering$4.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$stopTetheringLegacy$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$stopTetheringLegacy$2.dex
new file mode 100644
index 00000000..ec8129db
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$stopTetheringLegacy$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$tetherErrorLookup$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$tetherErrorLookup$1.dex
new file mode 100644
index 00000000..6f1d15a2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$tetherErrorLookup$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$unregisterTetheringEventCallback$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$unregisterTetheringEventCallback$2.dex
new file mode 100644
index 00000000..409cdfb2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager$unregisterTetheringEventCallback$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager.dex
new file mode 100644
index 00000000..fe6b06b1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/TetheringManager.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/DefaultNetworkMonitor$networkCallback$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/DefaultNetworkMonitor$networkCallback$1.dex
new file mode 100644
index 00000000..51e99ff5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/DefaultNetworkMonitor$networkCallback$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/DefaultNetworkMonitor$registerCallbackLocked$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/DefaultNetworkMonitor$registerCallbackLocked$1.dex
new file mode 100644
index 00000000..093c11c5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/DefaultNetworkMonitor$registerCallbackLocked$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/DefaultNetworkMonitor.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/DefaultNetworkMonitor.dex
new file mode 100644
index 00000000..362a05c1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/DefaultNetworkMonitor.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/FallbackUpstreamMonitor$Companion$onSharedPreferenceChanged$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/FallbackUpstreamMonitor$Companion$onSharedPreferenceChanged$1.dex
new file mode 100644
index 00000000..918cc480
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/FallbackUpstreamMonitor$Companion$onSharedPreferenceChanged$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/FallbackUpstreamMonitor$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/FallbackUpstreamMonitor$Companion.dex
new file mode 100644
index 00000000..aa920a8b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/FallbackUpstreamMonitor$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/FallbackUpstreamMonitor.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/FallbackUpstreamMonitor.dex
new file mode 100644
index 00000000..b3aab38b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/FallbackUpstreamMonitor.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor$iface$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor$iface$1.dex
new file mode 100644
index 00000000..ba9f4d3c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor$iface$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor$iface$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor$iface$2.dex
new file mode 100644
index 00000000..2a37f53a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor$iface$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor$networkCallback$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor$networkCallback$1.dex
new file mode 100644
index 00000000..b1d14ae4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor$networkCallback$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor$registerCallbackLocked$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor$registerCallbackLocked$1.dex
new file mode 100644
index 00000000..a105b1ec
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor$registerCallbackLocked$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor.dex
new file mode 100644
index 00000000..ce67a05d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/InterfaceMonitor.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$Companion.dex
new file mode 100644
index 00000000..1c84cd7c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$FlushFailure.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$FlushFailure.dex
new file mode 100644
index 00000000..8e1e693a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$FlushFailure.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$Mode.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$Mode.dex
new file mode 100644
index 00000000..7a0eac85
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$Mode.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$flush$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$flush$1.dex
new file mode 100644
index 00000000..06d7a9c8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$flush$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$flushAsync$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$flushAsync$1.dex
new file mode 100644
index 00000000..e6bc2dcd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$flushAsync$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleChannel$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleChannel$1.dex
new file mode 100644
index 00000000..d1393d16
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleChannel$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleProcess$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleProcess$1.dex
new file mode 100644
index 00000000..0a465bc0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleProcess$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleProcess$2$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleProcess$2$1$1.dex
new file mode 100644
index 00000000..b307819f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleProcess$2$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleProcess$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleProcess$2$1.dex
new file mode 100644
index 00000000..7441e9c0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleProcess$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleProcess$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleProcess$2.dex
new file mode 100644
index 00000000..d229c995
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$handleProcess$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$init$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$init$1$1.dex
new file mode 100644
index 00000000..ee5857d4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$init$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$init$1$3.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$init$1$3.dex
new file mode 100644
index 00000000..a3fbb916
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$init$1$3.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$init$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$init$1.dex
new file mode 100644
index 00000000..9263a003
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$init$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$poll$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$poll$1.dex
new file mode 100644
index 00000000..d88e989e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$poll$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$poll$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$poll$2.dex
new file mode 100644
index 00000000..83da9ed2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$poll$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$poll$3$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$poll$3$1.dex
new file mode 100644
index 00000000..f15a898e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$poll$3$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$work$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$work$1.dex
new file mode 100644
index 00000000..23f74c85
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$work$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$work$3.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$work$3.dex
new file mode 100644
index 00000000..b9d22590
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor$work$3.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor.dex
new file mode 100644
index 00000000..7f7d3724
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpMonitor.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$Callback.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$Callback.dex
new file mode 100644
index 00000000..8db9ead8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$Callback.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$Companion.dex
new file mode 100644
index 00000000..dcc68542
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$WhenMappings.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$WhenMappings.dex
new file mode 100644
index 00000000..74a845a6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$WhenMappings.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$aggregator$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$aggregator$1.dex
new file mode 100644
index 00000000..fa3eede1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$aggregator$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$processLine$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$processLine$1.dex
new file mode 100644
index 00000000..feee335c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$processLine$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$processLines$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$processLines$1.dex
new file mode 100644
index 00000000..6e21fcd7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor$processLines$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor.dex
new file mode 100644
index 00000000..4350c262
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/IpNeighbourMonitor.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TetherTimeoutMonitor$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TetherTimeoutMonitor$Companion.dex
new file mode 100644
index 00000000..02fcc38b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TetherTimeoutMonitor$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TetherTimeoutMonitor$onClientsChanged$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TetherTimeoutMonitor$onClientsChanged$1.dex
new file mode 100644
index 00000000..d581cf42
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TetherTimeoutMonitor$onClientsChanged$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TetherTimeoutMonitor.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TetherTimeoutMonitor.dex
new file mode 100644
index 00000000..3a435d6f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TetherTimeoutMonitor.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TrafficRecorder$doUpdate$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TrafficRecorder$doUpdate$1.dex
new file mode 100644
index 00000000..58e6078a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TrafficRecorder$doUpdate$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TrafficRecorder$scheduleUpdateLocked$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TrafficRecorder$scheduleUpdateLocked$1.dex
new file mode 100644
index 00000000..57f07711
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TrafficRecorder$scheduleUpdateLocked$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TrafficRecorder.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TrafficRecorder.dex
new file mode 100644
index 00000000..0ee3dc8e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/TrafficRecorder.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor$Callback$DefaultImpls.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor$Callback$DefaultImpls.dex
new file mode 100644
index 00000000..18c812e1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor$Callback$DefaultImpls.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor$Callback.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor$Callback.dex
new file mode 100644
index 00000000..150fe422
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor$Callback.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor$Companion$onSharedPreferenceChanged$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor$Companion$onSharedPreferenceChanged$1.dex
new file mode 100644
index 00000000..50092b86
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor$Companion$onSharedPreferenceChanged$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor$Companion.dex
new file mode 100644
index 00000000..9b6b79f4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor.dex
new file mode 100644
index 00000000..c0f5e934
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/UpstreamMonitor.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/VpnMonitor$networkCallback$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/VpnMonitor$networkCallback$1.dex
new file mode 100644
index 00000000..be500ca9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/VpnMonitor$networkCallback$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/VpnMonitor$registerCallbackLocked$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/VpnMonitor$registerCallbackLocked$1.dex
new file mode 100644
index 00000000..12b7d5f6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/VpnMonitor$registerCallbackLocked$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/VpnMonitor.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/VpnMonitor.dex
new file mode 100644
index 00000000..cd2d2ba4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/monitor/VpnMonitor.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$Companion.dex
new file mode 100644
index 00000000..b2885c24
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$Content.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$Content.dex
new file mode 100644
index 00000000..b2730a0a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$Content.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$NetworkBlock.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$NetworkBlock.dex
new file mode 100644
index 00000000..8b856fcf
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$NetworkBlock.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$Parser.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$Parser.dex
new file mode 100644
index 00000000..4f482995
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$Parser.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$bssid$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$bssid$2.dex
new file mode 100644
index 00000000..ea8a4348
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$bssid$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$init$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$init$1.dex
new file mode 100644
index 00000000..b73e9e25
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$init$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$psk$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$psk$2.dex
new file mode 100644
index 00000000..6a636335
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$psk$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$update$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$update$1.dex
new file mode 100644
index 00000000..2f63c092
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration$update$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration.dex
new file mode 100644
index 00000000..83df66e3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/P2pSupplicantConfiguration.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$areFeaturesSupported$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$areFeaturesSupported$2.dex
new file mode 100644
index 00000000..74a8d9d5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$areFeaturesSupported$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$clazz$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$clazz$2.dex
new file mode 100644
index 00000000..96ee52ea
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$clazz$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$featureLookup$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$featureLookup$2.dex
new file mode 100644
index 00000000..03e28d68
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$featureLookup$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$getCountryCode$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$getCountryCode$2.dex
new file mode 100644
index 00000000..4da2bd2c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$getCountryCode$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$getMaxSupportedClients$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$getMaxSupportedClients$2.dex
new file mode 100644
index 00000000..43bb1150
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$getMaxSupportedClients$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$getSupportedChannelList$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$getSupportedChannelList$2.dex
new file mode 100644
index 00000000..c20a4258
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion$getSupportedChannelList$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion.dex
new file mode 100644
index 00000000..33bdfed6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability.dex
new file mode 100644
index 00000000..30e3fb9a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApCapability.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$BAND_TYPES$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$BAND_TYPES$2.dex
new file mode 100644
index 00000000..1c5e3073
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$BAND_TYPES$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$apBand$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$apBand$2.dex
new file mode 100644
index 00000000..a92fba2f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$apBand$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$apChannel$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$apChannel$2.dex
new file mode 100644
index 00000000..ebbeb454
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$apChannel$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$build$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$build$2.dex
new file mode 100644
index 00000000..2493ce45
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$build$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$classBuilder$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$classBuilder$2.dex
new file mode 100644
index 00000000..f1eadd53
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$classBuilder$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getAllowedAcsChannels$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getAllowedAcsChannels$2.dex
new file mode 100644
index 00000000..5f2cc065
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getAllowedAcsChannels$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getAllowedClientList$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getAllowedClientList$2.dex
new file mode 100644
index 00000000..e180969b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getAllowedClientList$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getBand$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getBand$2.dex
new file mode 100644
index 00000000..2b9e0a63
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getBand$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getBlockedClientList$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getBlockedClientList$2.dex
new file mode 100644
index 00000000..857171f7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getBlockedClientList$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getBridgedModeOpportunisticShutdownTimeoutMillis$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getBridgedModeOpportunisticShutdownTimeoutMillis$2.dex
new file mode 100644
index 00000000..283c73dd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getBridgedModeOpportunisticShutdownTimeoutMillis$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getChannel$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getChannel$2.dex
new file mode 100644
index 00000000..ed067809
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getChannel$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getChannels$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getChannels$2.dex
new file mode 100644
index 00000000..a7f3dd5d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getChannels$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getMacRandomizationSetting$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getMacRandomizationSetting$2.dex
new file mode 100644
index 00000000..80077c83
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getMacRandomizationSetting$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getMaxChannelBandwidth$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getMaxChannelBandwidth$2.dex
new file mode 100644
index 00000000..5114f3b0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getMaxChannelBandwidth$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getMaxNumberOfClients$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getMaxNumberOfClients$2.dex
new file mode 100644
index 00000000..b05b7efe
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getMaxNumberOfClients$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getPersistentRandomizedMacAddress$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getPersistentRandomizedMacAddress$2.dex
new file mode 100644
index 00000000..15ce81a1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getPersistentRandomizedMacAddress$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getShutdownTimeoutMillis$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getShutdownTimeoutMillis$2.dex
new file mode 100644
index 00000000..ba4b0a70
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getShutdownTimeoutMillis$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getVendorElements$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getVendorElements$2.dex
new file mode 100644
index 00000000..adc40a32
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$getVendorElements$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isAutoShutdownEnabled$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isAutoShutdownEnabled$2.dex
new file mode 100644
index 00000000..81065721
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isAutoShutdownEnabled$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isBridgedModeOpportunisticShutdownEnabled$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isBridgedModeOpportunisticShutdownEnabled$2.dex
new file mode 100644
index 00000000..dfcbb949
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isBridgedModeOpportunisticShutdownEnabled$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isClientControlByUserEnabled$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isClientControlByUserEnabled$2.dex
new file mode 100644
index 00000000..416f9cda
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isClientControlByUserEnabled$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isIeee80211axEnabled$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isIeee80211axEnabled$2.dex
new file mode 100644
index 00000000..87f456ae
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isIeee80211axEnabled$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isIeee80211beEnabled$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isIeee80211beEnabled$2.dex
new file mode 100644
index 00000000..ab8dc032
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isIeee80211beEnabled$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isUserConfiguration$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isUserConfiguration$2.dex
new file mode 100644
index 00000000..8a8f18d0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$isUserConfiguration$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$newBuilder0$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$newBuilder0$2.dex
new file mode 100644
index 00000000..a1a009fd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$newBuilder0$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$newBuilder1$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$newBuilder1$2.dex
new file mode 100644
index 00000000..36257430
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$newBuilder1$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setAllowedAcsChannels$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setAllowedAcsChannels$2.dex
new file mode 100644
index 00000000..2fa26a8a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setAllowedAcsChannels$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setAllowedClientList$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setAllowedClientList$2.dex
new file mode 100644
index 00000000..4b9463b3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setAllowedClientList$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setAutoShutdownEnabled$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setAutoShutdownEnabled$2.dex
new file mode 100644
index 00000000..8e7e8e79
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setAutoShutdownEnabled$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBand$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBand$2.dex
new file mode 100644
index 00000000..89115d5c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBand$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBlockedClientList$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBlockedClientList$2.dex
new file mode 100644
index 00000000..7582bc35
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBlockedClientList$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBridgedModeOpportunisticShutdownEnabled$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBridgedModeOpportunisticShutdownEnabled$2.dex
new file mode 100644
index 00000000..66c4ada0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBridgedModeOpportunisticShutdownEnabled$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBridgedModeOpportunisticShutdownTimeoutMillis$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBridgedModeOpportunisticShutdownTimeoutMillis$2.dex
new file mode 100644
index 00000000..f89d227f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBridgedModeOpportunisticShutdownTimeoutMillis$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBssid$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBssid$2.dex
new file mode 100644
index 00000000..5df3726b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setBssid$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setChannel$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setChannel$2.dex
new file mode 100644
index 00000000..9c603a88
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setChannel$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setChannels$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setChannels$2.dex
new file mode 100644
index 00000000..d8f5586d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setChannels$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setClientControlByUserEnabled$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setClientControlByUserEnabled$2.dex
new file mode 100644
index 00000000..a1d1fb8d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setClientControlByUserEnabled$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setHiddenSsid$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setHiddenSsid$2.dex
new file mode 100644
index 00000000..c3c3bfe2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setHiddenSsid$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setIeee80211axEnabled$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setIeee80211axEnabled$2.dex
new file mode 100644
index 00000000..58fcf626
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setIeee80211axEnabled$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setIeee80211beEnabled$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setIeee80211beEnabled$2.dex
new file mode 100644
index 00000000..119f765a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setIeee80211beEnabled$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setMacRandomizationSetting$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setMacRandomizationSetting$2.dex
new file mode 100644
index 00000000..a65243b0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setMacRandomizationSetting$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setMaxChannelBandwidth$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setMaxChannelBandwidth$2.dex
new file mode 100644
index 00000000..1333a7ff
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setMaxChannelBandwidth$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setMaxNumberOfClients$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setMaxNumberOfClients$2.dex
new file mode 100644
index 00000000..438c09ab
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setMaxNumberOfClients$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setPassphrase$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setPassphrase$2.dex
new file mode 100644
index 00000000..fdb753cb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setPassphrase$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setRandomizedMacAddress$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setRandomizedMacAddress$2.dex
new file mode 100644
index 00000000..74a3fdfa
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setRandomizedMacAddress$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setShutdownTimeoutMillis$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setShutdownTimeoutMillis$2.dex
new file mode 100644
index 00000000..42d79f83
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setShutdownTimeoutMillis$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setSsid$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setSsid$2.dex
new file mode 100644
index 00000000..b0a86fa6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setSsid$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setVendorElements$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setVendorElements$2.dex
new file mode 100644
index 00000000..d809f0a8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setVendorElements$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setWifiSsid$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setWifiSsid$2.dex
new file mode 100644
index 00000000..d97a7646
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$setWifiSsid$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$staticBuilder$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$staticBuilder$2.dex
new file mode 100644
index 00000000..ef4b452d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion$staticBuilder$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion.dex
new file mode 100644
index 00000000..de6f0e3b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Creator.dex
new file mode 100644
index 00000000..9f91fc24
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$special$$inlined$ConstantLookup$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$special$$inlined$ConstantLookup$1.dex
new file mode 100644
index 00000000..1d1de62f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat$special$$inlined$ConstantLookup$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat.dex
new file mode 100644
index 00000000..b4fea57e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApConfigurationCompat.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$channelWidthLookup$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$channelWidthLookup$1.dex
new file mode 100644
index 00000000..5c34827d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$channelWidthLookup$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$clazz$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$clazz$2.dex
new file mode 100644
index 00000000..df728ee7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$clazz$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getApInstanceIdentifier$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getApInstanceIdentifier$2.dex
new file mode 100644
index 00000000..92ad4d3d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getApInstanceIdentifier$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getAutoShutdownTimeoutMillis$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getAutoShutdownTimeoutMillis$2.dex
new file mode 100644
index 00000000..699893ee
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getAutoShutdownTimeoutMillis$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getBandwidth$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getBandwidth$2.dex
new file mode 100644
index 00000000..3b7471da
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getBandwidth$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getBssid$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getBssid$2.dex
new file mode 100644
index 00000000..ed6085b1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getBssid$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getFrequency$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getFrequency$2.dex
new file mode 100644
index 00000000..0e5ac574
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getFrequency$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getWifiStandard$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getWifiStandard$2.dex
new file mode 100644
index 00000000..7c6ee4d4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion$getWifiStandard$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion.dex
new file mode 100644
index 00000000..f81bc9df
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo.dex
new file mode 100644
index 00000000..99cd85d0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/SoftApInfo.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/VendorElements$serialize$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/VendorElements$serialize$1.dex
new file mode 100644
index 00000000..350c0726
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/VendorElements$serialize$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/VendorElements.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/VendorElements.dex
new file mode 100644
index 00000000..555ea7aa
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/VendorElements.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Arg$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Arg$Creator.dex
new file mode 100644
index 00000000..5a5b6790
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Arg$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Arg.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Arg.dex
new file mode 100644
index 00000000..5acdfa8a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Arg.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$BandWidth.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$BandWidth.dex
new file mode 100644
index 00000000..0a6d0ef1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$BandWidth.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$ChannelOption$Disabled.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$ChannelOption$Disabled.dex
new file mode 100644
index 00000000..6b653fcc
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$ChannelOption$Disabled.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$ChannelOption$toString$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$ChannelOption$toString$2.dex
new file mode 100644
index 00000000..0cf71a46
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$ChannelOption$toString$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$ChannelOption.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$ChannelOption.dex
new file mode 100644
index 00000000..a8a59575
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$ChannelOption.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$bandWidthOptions$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$bandWidthOptions$2.dex
new file mode 100644
index 00000000..7a2dc7f6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$bandWidthOptions$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$channels5G$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$channels5G$2.dex
new file mode 100644
index 00000000..8362a324
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$channels5G$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$p2pSafeOptions$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$p2pSafeOptions$2.dex
new file mode 100644
index 00000000..8ab990ef
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$p2pSafeOptions$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$p2pUnsafeOptions$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$p2pUnsafeOptions$2.dex
new file mode 100644
index 00000000..d5d130c9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$p2pUnsafeOptions$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$softApOptions$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$softApOptions$2.dex
new file mode 100644
index 00000000..f9237080
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion$softApOptions$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion.dex
new file mode 100644
index 00000000..62357d13
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$acsList$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$acsList$2.dex
new file mode 100644
index 00000000..aa73caff
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$acsList$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$prepare$3$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$prepare$3$2.dex
new file mode 100644
index 00000000..936a1b2b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment$prepare$3$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment.dex
new file mode 100644
index 00000000..05dcb062
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApDialogFragment.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$SoftApCallbackCompat$DefaultImpls.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$SoftApCallbackCompat$DefaultImpls.dex
new file mode 100644
index 00000000..e11e87ed
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$SoftApCallbackCompat$DefaultImpls.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$SoftApCallbackCompat.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$SoftApCallbackCompat.dex
new file mode 100644
index 00000000..3e70e5a4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$SoftApCallbackCompat.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$apMacRandomizationSupported$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$apMacRandomizationSupported$2.dex
new file mode 100644
index 00000000..5b597aff
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$apMacRandomizationSupported$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$cancelLocalOnlyHotspotRequest$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$cancelLocalOnlyHotspotRequest$2.dex
new file mode 100644
index 00000000..725b148a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$cancelLocalOnlyHotspotRequest$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$clientBlockLookup$2$invoke$$inlined$ConstantLookup$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$clientBlockLookup$2$invoke$$inlined$ConstantLookup$1.dex
new file mode 100644
index 00000000..a57822d5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$clientBlockLookup$2$invoke$$inlined$ConstantLookup$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$clientBlockLookup$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$clientBlockLookup$2.dex
new file mode 100644
index 00000000..6c72da38
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$clientBlockLookup$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$getSoftApConfiguration$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$getSoftApConfiguration$2.dex
new file mode 100644
index 00000000..8d0ddc33
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$getSoftApConfiguration$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$getWifiApConfiguration$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$getWifiApConfiguration$2.dex
new file mode 100644
index 00000000..5d7d3178
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$getWifiApConfiguration$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$interfaceSoftApCallback$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$interfaceSoftApCallback$2.dex
new file mode 100644
index 00000000..41146224
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$interfaceSoftApCallback$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$registerSoftApCallback$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$registerSoftApCallback$2.dex
new file mode 100644
index 00000000..fba5bafa
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$registerSoftApCallback$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$registerSoftApCallback$proxy$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$registerSoftApCallback$proxy$1.dex
new file mode 100644
index 00000000..6814d499
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$registerSoftApCallback$proxy$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$resolvedActivity$4.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$resolvedActivity$4.dex
new file mode 100644
index 00000000..b399e9f7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$resolvedActivity$4.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$setSoftApConfiguration$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$setSoftApConfiguration$2.dex
new file mode 100644
index 00000000..3c026d69
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$setSoftApConfiguration$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$setWifiApConfiguration$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$setWifiApConfiguration$2.dex
new file mode 100644
index 00000000..8df771c6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$setWifiApConfiguration$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$special$$inlined$ConstantLookup$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$special$$inlined$ConstantLookup$1.dex
new file mode 100644
index 00000000..182bffa5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$special$$inlined$ConstantLookup$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$startLocalOnlyHotspot$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$startLocalOnlyHotspot$2.dex
new file mode 100644
index 00000000..c3d5a9b9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$startLocalOnlyHotspot$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$unregisterSoftApCallback$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$unregisterSoftApCallback$2.dex
new file mode 100644
index 00000000..4fdb4c7e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager$unregisterSoftApCallback$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager.dex
new file mode 100644
index 00000000..01135d52
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiApManager.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient$Companion$clazz$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient$Companion$clazz$2.dex
new file mode 100644
index 00000000..baf58ecc
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient$Companion$clazz$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient$Companion$getApInstanceIdentifier$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient$Companion$getApInstanceIdentifier$2.dex
new file mode 100644
index 00000000..843859f8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient$Companion$getApInstanceIdentifier$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient$Companion$getMacAddress$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient$Companion$getMacAddress$2.dex
new file mode 100644
index 00000000..efe821c3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient$Companion$getMacAddress$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient$Companion.dex
new file mode 100644
index 00000000..0f63d5db
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient.dex
new file mode 100644
index 00000000..6da527e6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiClient.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock$ActivityListener.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock$ActivityListener.dex
new file mode 100644
index 00000000..51394f2e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock$ActivityListener.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock$Companion$service$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock$Companion$service$2.dex
new file mode 100644
index 00000000..a90a57ee
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock$Companion$service$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock$Companion.dex
new file mode 100644
index 00000000..bff36e6d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock$Mode.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock$Mode.dex
new file mode 100644
index 00000000..0cf8c04c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock$Mode.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock.dex
new file mode 100644
index 00000000..b0166b5f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiDoubleLock.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$ResultListener.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$ResultListener.dex
new file mode 100644
index 00000000..ac10954f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$ResultListener.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$classWifiP2pGroupList$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$classWifiP2pGroupList$2.dex
new file mode 100644
index 00000000..c397114a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$classWifiP2pGroupList$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$deletePersistentGroup$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$deletePersistentGroup$2.dex
new file mode 100644
index 00000000..b3ec6e00
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$deletePersistentGroup$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$getGroupList$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$getGroupList$2.dex
new file mode 100644
index 00000000..cf45e0b0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$getGroupList$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$interfacePersistentGroupInfoListener$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$interfacePersistentGroupInfoListener$2.dex
new file mode 100644
index 00000000..104b9787
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$interfacePersistentGroupInfoListener$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$requestDeviceAddress$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$requestDeviceAddress$1.dex
new file mode 100644
index 00000000..3e23ff86
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$requestDeviceAddress$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$requestPersistentGroupInfo$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$requestPersistentGroupInfo$2.dex
new file mode 100644
index 00000000..351a95b9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$requestPersistentGroupInfo$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$requestPersistentGroupInfo$5.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$requestPersistentGroupInfo$5.dex
new file mode 100644
index 00000000..741983a1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$requestPersistentGroupInfo$5.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$setWifiP2pChannels$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$setWifiP2pChannels$2.dex
new file mode 100644
index 00000000..5c8c61e6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$setWifiP2pChannels$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$startWps$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$startWps$2.dex
new file mode 100644
index 00000000..0284b49c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper$startWps$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper.dex
new file mode 100644
index 00000000..4bb4062c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiP2pManagerHelper.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat$Companion$toMeCard$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat$Companion$toMeCard$1.dex
new file mode 100644
index 00000000..6842884c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat$Companion$toMeCard$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat$Companion.dex
new file mode 100644
index 00000000..f7a0abad
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat$Creator.dex
new file mode 100644
index 00000000..41e9d4e6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat$hex$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat$hex$1.dex
new file mode 100644
index 00000000..77692f62
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat$hex$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat.dex
new file mode 100644
index 00000000..339900e5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/net/wifi/WifiSsidCompat.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1$onLinkPropertiesChanged$1$invokeSuspend$$inlined$withStarted$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1$onLinkPropertiesChanged$1$invokeSuspend$$inlined$withStarted$1.dex
new file mode 100644
index 00000000..355b0b1f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1$onLinkPropertiesChanged$1$invokeSuspend$$inlined$withStarted$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1$onLinkPropertiesChanged$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1$onLinkPropertiesChanged$1.dex
new file mode 100644
index 00000000..2db8f73d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1$onLinkPropertiesChanged$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1$onLost$1$invokeSuspend$$inlined$withStarted$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1$onLost$1$invokeSuspend$$inlined$withStarted$1.dex
new file mode 100644
index 00000000..3df33cdb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1$onLost$1$invokeSuspend$$inlined$withStarted$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1$onLost$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1$onLost$1.dex
new file mode 100644
index 00000000..9da84ce1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1$onLost$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1.dex
new file mode 100644
index 00000000..a19e9fe6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment$callback$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment.dex
new file mode 100644
index 00000000..72de22cb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/AutoCompleteNetworkPreferenceDialogFragment.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/SharedPreferenceDataStore.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/SharedPreferenceDataStore.dex
new file mode 100644
index 00000000..71dc41ca
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/SharedPreferenceDataStore.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/SummaryFallbackProvider.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/SummaryFallbackProvider.dex
new file mode 100644
index 00000000..e759ff42
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/SummaryFallbackProvider.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference$Companion.dex
new file mode 100644
index 00000000..6fc6a535
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference$Monitor$onAvailable$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference$Monitor$onAvailable$1.dex
new file mode 100644
index 00000000..136fa4d2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference$Monitor$onAvailable$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference$Monitor.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference$Monitor.dex
new file mode 100644
index 00000000..b71204a8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference$Monitor.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference$onUpdate$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference$onUpdate$1.dex
new file mode 100644
index 00000000..e10280d5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference$onUpdate$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference.dex
new file mode 100644
index 00000000..c4aaef4c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/preference/UpstreamsPreference.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase$Companion$instance$2$1$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase$Companion$instance$2$1$1$1.dex
new file mode 100644
index 00000000..437fec80
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase$Companion$instance$2$1$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase$Companion$instance$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase$Companion$instance$2.dex
new file mode 100644
index 00000000..93408e8d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase$Companion$instance$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase$Companion.dex
new file mode 100644
index 00000000..bea76dd9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase$Migration2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase$Migration2.dex
new file mode 100644
index 00000000..283beea9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase$Migration2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase.dex
new file mode 100644
index 00000000..ee56e58d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl$1.dex
new file mode 100644
index 00000000..d75b7267
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl.dex
new file mode 100644
index 00000000..6a2509d7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/AppDatabase_Impl.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao$lookupOrDefault$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao$lookupOrDefault$1.dex
new file mode 100644
index 00000000..ecc04d44
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao$lookupOrDefault$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao$lookupOrDefaultSync$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao$lookupOrDefaultSync$1.dex
new file mode 100644
index 00000000..17ee40f8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao$lookupOrDefaultSync$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao$update$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao$update$1.dex
new file mode 100644
index 00000000..cd93a40e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao$update$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao$upsert$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao$upsert$1.dex
new file mode 100644
index 00000000..d310fef7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao$upsert$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao.dex
new file mode 100644
index 00000000..1b4fab94
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord$Dao.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord.dex
new file mode 100644
index 00000000..7c6b9e22
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$1.dex
new file mode 100644
index 00000000..91e8dae5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$2.dex
new file mode 100644
index 00000000..c0596ae3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$3.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$3.dex
new file mode 100644
index 00000000..0e745c09
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$3.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$4.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$4.dex
new file mode 100644
index 00000000..d0a5cebf
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl$4.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl.dex
new file mode 100644
index 00000000..315bb4ab
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientRecord_Dao_Impl.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientStats$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientStats$Creator.dex
new file mode 100644
index 00000000..9240bed9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientStats$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientStats.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientStats.dex
new file mode 100644
index 00000000..9600997f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/ClientStats.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/Converters.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/Converters.dex
new file mode 100644
index 00000000..7eecb5d2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/Converters.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord$Dao.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord$Dao.dex
new file mode 100644
index 00000000..f3329105
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord$Dao.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord.dex
new file mode 100644
index 00000000..dd00046a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl$1.dex
new file mode 100644
index 00000000..7b5a65d0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl$2.dex
new file mode 100644
index 00000000..a9be6e83
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl.dex
new file mode 100644
index 00000000..00ac4535
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/room/TrafficRecord_Dao_Impl.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/Dump$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/Dump$Creator.dex
new file mode 100644
index 00000000..587371ce
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/Dump$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/Dump$execute$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/Dump$execute$2.dex
new file mode 100644
index 00000000..adf64bcf
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/Dump$execute$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/Dump.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/Dump.dex
new file mode 100644
index 00000000..700d1a16
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/Dump.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnFailed$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnFailed$Creator.dex
new file mode 100644
index 00000000..9950fc9c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnFailed$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnFailed.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnFailed.dex
new file mode 100644
index 00000000..fb37c922
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnFailed.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnStarted$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnStarted$Creator.dex
new file mode 100644
index 00000000..743fc5f0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnStarted$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnStarted.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnStarted.dex
new file mode 100644
index 00000000..dda616c7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnStarted.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnStopped$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnStopped$Creator.dex
new file mode 100644
index 00000000..fb16a9b7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnStopped$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnStopped.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnStopped.dex
new file mode 100644
index 00000000..b5aeffc8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks$OnStopped.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks.dex
new file mode 100644
index 00000000..f30138ee
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/LocalOnlyHotspotCallbacks.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/MiscCommandsKt$fixPath$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/MiscCommandsKt$fixPath$1$1.dex
new file mode 100644
index 00000000..4175c16e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/MiscCommandsKt$fixPath$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/MiscCommandsKt.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/MiscCommandsKt.dex
new file mode 100644
index 00000000..aaa8ad69
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/MiscCommandsKt.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$Exit$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$Exit$Creator.dex
new file mode 100644
index 00000000..52c5cea4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$Exit$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$Exit.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$Exit.dex
new file mode 100644
index 00000000..16771c16
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$Exit.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$StderrLine$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$StderrLine$Creator.dex
new file mode 100644
index 00000000..d11cf684
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$StderrLine$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$StderrLine.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$StderrLine.dex
new file mode 100644
index 00000000..88a0cc02
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$StderrLine.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$StdoutLine$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$StdoutLine$Creator.dex
new file mode 100644
index 00000000..43ac2806
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$StdoutLine$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$StdoutLine.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$StdoutLine.dex
new file mode 100644
index 00000000..c4927fb5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData$StdoutLine.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData.dex
new file mode 100644
index 00000000..20ce0a87
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessData.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$Creator.dex
new file mode 100644
index 00000000..39b436b8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$create$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$create$1$1.dex
new file mode 100644
index 00000000..2a116d85
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$create$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$create$1$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$create$1$2.dex
new file mode 100644
index 00000000..d9879604
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$create$1$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$create$1$3.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$create$1$3.dex
new file mode 100644
index 00000000..d0283514
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$create$1$3.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$create$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$create$1.dex
new file mode 100644
index 00000000..490edad8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener$create$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener.dex
new file mode 100644
index 00000000..904dfdd1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ProcessListener.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ReadArp$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ReadArp$Creator.dex
new file mode 100644
index 00000000..9096c907
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ReadArp$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ReadArp$execute$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ReadArp$execute$2.dex
new file mode 100644
index 00000000..d0056817
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ReadArp$execute$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ReadArp.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ReadArp.dex
new file mode 100644
index 00000000..9353b283
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/ReadArp.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$Deinit$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$Deinit$Creator.dex
new file mode 100644
index 00000000..f2fa2382
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$Deinit$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$Deinit.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$Deinit.dex
new file mode 100644
index 00000000..de30da0e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$Deinit.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$DeletePersistentGroup$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$DeletePersistentGroup$Creator.dex
new file mode 100644
index 00000000..84641eab
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$DeletePersistentGroup$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$DeletePersistentGroup$execute$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$DeletePersistentGroup$execute$1.dex
new file mode 100644
index 00000000..c7d379e5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$DeletePersistentGroup$execute$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$DeletePersistentGroup.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$DeletePersistentGroup.dex
new file mode 100644
index 00000000..36e9274c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$DeletePersistentGroup.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$ReadP2pConfig$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$ReadP2pConfig$Creator.dex
new file mode 100644
index 00000000..8c275cc8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$ReadP2pConfig$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$ReadP2pConfig.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$ReadP2pConfig.dex
new file mode 100644
index 00000000..9f2dc9c5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$ReadP2pConfig.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestDeviceAddress$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestDeviceAddress$Creator.dex
new file mode 100644
index 00000000..ad4e7947
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestDeviceAddress$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestDeviceAddress.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestDeviceAddress.dex
new file mode 100644
index 00000000..d81737a8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestDeviceAddress.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestPersistentGroupInfo$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestPersistentGroupInfo$Creator.dex
new file mode 100644
index 00000000..5b5788f2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestPersistentGroupInfo$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestPersistentGroupInfo$execute$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestPersistentGroupInfo$execute$1.dex
new file mode 100644
index 00000000..9810b9f2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestPersistentGroupInfo$execute$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestPersistentGroupInfo.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestPersistentGroupInfo.dex
new file mode 100644
index 00000000..cfa9e23a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$RequestPersistentGroupInfo.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetChannel$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetChannel$Creator.dex
new file mode 100644
index 00000000..516e05d5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetChannel$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetChannel$execute$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetChannel$execute$1.dex
new file mode 100644
index 00000000..d4a373ea
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetChannel$execute$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetChannel.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetChannel.dex
new file mode 100644
index 00000000..7101fdb5
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetChannel.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetVendorElements$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetVendorElements$Creator.dex
new file mode 100644
index 00000000..86230052
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetVendorElements$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetVendorElements$execute$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetVendorElements$execute$1.dex
new file mode 100644
index 00000000..3facf299
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetVendorElements$execute$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetVendorElements.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetVendorElements.dex
new file mode 100644
index 00000000..bd36adda
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$SetVendorElements.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$WriteP2pConfig$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$WriteP2pConfig$Creator.dex
new file mode 100644
index 00000000..41eb3d48
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$WriteP2pConfig$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$WriteP2pConfig.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$WriteP2pConfig.dex
new file mode 100644
index 00000000..aca5f7f3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$WriteP2pConfig.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$obtainChannel$uninitializer$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$obtainChannel$uninitializer$1.dex
new file mode 100644
index 00000000..398680c9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands$obtainChannel$uninitializer$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands.dex
new file mode 100644
index 00000000..1f4186d4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RepeaterCommands.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$RootInit$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$RootInit$Creator.dex
new file mode 100644
index 00000000..2317d67c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$RootInit$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$RootInit$execute$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$RootInit$execute$2.dex
new file mode 100644
index 00000000..16742480
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$RootInit$execute$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$RootInit$execute$3.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$RootInit$execute$3.dex
new file mode 100644
index 00000000..a020cc67
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$RootInit$execute$3.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$RootInit.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$RootInit.dex
new file mode 100644
index 00000000..8a330ff9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$RootInit.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$initServer$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$initServer$1.dex
new file mode 100644
index 00000000..0db94793
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager$initServer$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager.dex
new file mode 100644
index 00000000..3f6228ff
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RootManager.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Clean$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Clean$Creator.dex
new file mode 100644
index 00000000..b0867690
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Clean$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Clean$execute$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Clean$execute$2.dex
new file mode 100644
index 00000000..e7ef2966
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Clean$execute$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Clean.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Clean.dex
new file mode 100644
index 00000000..ce11c99c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Clean.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$Creator.dex
new file mode 100644
index 00000000..3b2438b4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$execute$2$1$error$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$execute$2$1$error$1.dex
new file mode 100644
index 00000000..bfe2aa16
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$execute$2$1$error$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$execute$2$1$output$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$execute$2$1$output$1.dex
new file mode 100644
index 00000000..ba5b5ff3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$execute$2$1$output$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$execute$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$execute$2$1.dex
new file mode 100644
index 00000000..dc043a01
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$execute$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$execute$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$execute$2.dex
new file mode 100644
index 00000000..b165a119
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process$execute$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process.dex
new file mode 100644
index 00000000..c31e46c4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$Process.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$ProcessResult$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$ProcessResult$Creator.dex
new file mode 100644
index 00000000..f3269a49
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$ProcessResult$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$ProcessResult.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$ProcessResult.dex
new file mode 100644
index 00000000..1269387b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$ProcessResult.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$UnexpectedOutputException.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$UnexpectedOutputException.dex
new file mode 100644
index 00000000..2377d606
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands$UnexpectedOutputException.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands.dex
new file mode 100644
index 00000000..629ef48e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/RoutingCommands.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut$Companion$int$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut$Companion$int$1.dex
new file mode 100644
index 00000000..2443f26f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut$Companion$int$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut$Companion.dex
new file mode 100644
index 00000000..a796eadb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut$Creator.dex
new file mode 100644
index 00000000..6a2969f8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut$execute$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut$execute$2.dex
new file mode 100644
index 00000000..8a1542a9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut$execute$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut.dex
new file mode 100644
index 00000000..871a8632
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/SettingsGlobalPut.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering$Creator.dex
new file mode 100644
index 00000000..c74c9fdd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering$execute$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering$execute$1.dex
new file mode 100644
index 00000000..e740f93d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering$execute$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering$execute$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering$execute$2$1.dex
new file mode 100644
index 00000000..ab6ee4f8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering$execute$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering$execute$callback$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering$execute$callback$1.dex
new file mode 100644
index 00000000..5fedcbed
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering$execute$callback$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering.dex
new file mode 100644
index 00000000..6be01edd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTethering.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTetheringLegacy$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTetheringLegacy$Creator.dex
new file mode 100644
index 00000000..90929507
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTetheringLegacy$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTetheringLegacy$execute$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTetheringLegacy$execute$1.dex
new file mode 100644
index 00000000..e898e37d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTetheringLegacy$execute$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTetheringLegacy$execute$callback$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTetheringLegacy$execute$callback$1.dex
new file mode 100644
index 00000000..d00e63b4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTetheringLegacy$execute$callback$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTetheringLegacy.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTetheringLegacy.dex
new file mode 100644
index 00000000..79c7d776
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StartTetheringLegacy.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StopTethering$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StopTethering$Creator.dex
new file mode 100644
index 00000000..a007c53c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StopTethering$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StopTethering.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StopTethering.dex
new file mode 100644
index 00000000..9aa2f528
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/StopTethering.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$AutoFiringCallbacks.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$AutoFiringCallbacks.dex
new file mode 100644
index 00000000..06b08a22
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$AutoFiringCallbacks.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$GetConfiguration$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$GetConfiguration$Creator.dex
new file mode 100644
index 00000000..87fb6e51
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$GetConfiguration$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$GetConfiguration.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$GetConfiguration.dex
new file mode 100644
index 00000000..d61b0d3c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$GetConfiguration.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$GetConfigurationLegacy$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$GetConfigurationLegacy$Creator.dex
new file mode 100644
index 00000000..450db32f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$GetConfigurationLegacy$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$GetConfigurationLegacy.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$GetConfigurationLegacy.dex
new file mode 100644
index 00000000..702b71af
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$GetConfigurationLegacy.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback$Creator.dex
new file mode 100644
index 00000000..55fa87b2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback$create$1$key$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback$create$1$key$1.dex
new file mode 100644
index 00000000..085865a1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback$create$1$key$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback$create$1$key$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback$create$1$key$2$1.dex
new file mode 100644
index 00000000..142a55e1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback$create$1$key$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback$create$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback$create$1.dex
new file mode 100644
index 00000000..cf0c1635
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback$create$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback.dex
new file mode 100644
index 00000000..c4fa5e5b
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$RegisterSoftApCallback.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SetConfiguration$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SetConfiguration$Creator.dex
new file mode 100644
index 00000000..379c9381
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SetConfiguration$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SetConfiguration.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SetConfiguration.dex
new file mode 100644
index 00000000..55316c64
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SetConfiguration.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SetConfigurationLegacy$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SetConfigurationLegacy$Creator.dex
new file mode 100644
index 00000000..5f0c3a35
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SetConfigurationLegacy$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SetConfigurationLegacy.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SetConfigurationLegacy.dex
new file mode 100644
index 00000000..9daf5603
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SetConfigurationLegacy.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnBlockedClientConnecting$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnBlockedClientConnecting$Creator.dex
new file mode 100644
index 00000000..5a1c3f83
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnBlockedClientConnecting$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnBlockedClientConnecting.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnBlockedClientConnecting.dex
new file mode 100644
index 00000000..0140fa85
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnBlockedClientConnecting.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnCapabilityChanged$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnCapabilityChanged$Creator.dex
new file mode 100644
index 00000000..7e3b7ca1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnCapabilityChanged$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnCapabilityChanged.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnCapabilityChanged.dex
new file mode 100644
index 00000000..43ed3fdf
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnCapabilityChanged.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnConnectedClientsChanged$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnConnectedClientsChanged$Creator.dex
new file mode 100644
index 00000000..de94a7a8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnConnectedClientsChanged$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnConnectedClientsChanged.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnConnectedClientsChanged.dex
new file mode 100644
index 00000000..0dec41d1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnConnectedClientsChanged.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnInfoChanged$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnInfoChanged$Creator.dex
new file mode 100644
index 00000000..d903b008
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnInfoChanged$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnInfoChanged.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnInfoChanged.dex
new file mode 100644
index 00000000..785145df
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnInfoChanged.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnNumClientsChanged$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnNumClientsChanged$Creator.dex
new file mode 100644
index 00000000..507ac22e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnNumClientsChanged$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnNumClientsChanged.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnNumClientsChanged.dex
new file mode 100644
index 00000000..62ac5ccf
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnNumClientsChanged.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnStateChanged$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnStateChanged$Creator.dex
new file mode 100644
index 00000000..3d459b6a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnStateChanged$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnStateChanged.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnStateChanged.dex
new file mode 100644
index 00000000..cb9cdef0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel$OnStateChanged.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel.dex
new file mode 100644
index 00000000..7d486fd9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$SoftApCallbackParcel.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot$Creator.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot$Creator.dex
new file mode 100644
index 00000000..1737ae1f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot$Creator.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot$create$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot$create$1$1.dex
new file mode 100644
index 00000000..a1f5cadf
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot$create$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot$create$1$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot$create$1$2$1.dex
new file mode 100644
index 00000000..82a96528
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot$create$1$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot$create$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot$create$1.dex
new file mode 100644
index 00000000..2f7bc179
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot$create$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot.dex
new file mode 100644
index 00000000..1607b91d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$StartLocalOnlyHotspot.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$handleChannel$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$handleChannel$1.dex
new file mode 100644
index 00000000..5dbe86d0
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$handleChannel$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$handleChannel$2$7$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$handleChannel$2$7$1.dex
new file mode 100644
index 00000000..5eff124e
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$handleChannel$2$7$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$registerSoftApCallback$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$registerSoftApCallback$1$1.dex
new file mode 100644
index 00000000..db0b16fe
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands$registerSoftApCallback$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands.dex
new file mode 100644
index 00000000..d24ac5ed
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/root/WifiApCommands.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/AppUpdate$DefaultImpls.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/AppUpdate$DefaultImpls.dex
new file mode 100644
index 00000000..90e1765f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/AppUpdate$DefaultImpls.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/AppUpdate$IgnoredException.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/AppUpdate$IgnoredException.dex
new file mode 100644
index 00000000..359467a8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/AppUpdate$IgnoredException.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/AppUpdate.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/AppUpdate.dex
new file mode 100644
index 00000000..6afd29cd
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/AppUpdate.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ConstantLookup$lookup$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ConstantLookup$lookup$2.dex
new file mode 100644
index 00000000..c980262f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ConstantLookup$lookup$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ConstantLookup.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ConstantLookup.dex
new file mode 100644
index 00000000..de8f63c1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ConstantLookup.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ConstantLookupKt$ConstantLookup$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ConstantLookupKt$ConstantLookup$1.dex
new file mode 100644
index 00000000..5e9f9381
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ConstantLookupKt$ConstantLookup$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ConstantLookupKt.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ConstantLookupKt.dex
new file mode 100644
index 00000000..4fcb7c62
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ConstantLookupKt.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/CustomTabsUrlSpan.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/CustomTabsUrlSpan.dex
new file mode 100644
index 00000000..5f5173bc
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/CustomTabsUrlSpan.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/DeviceStorageApp.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/DeviceStorageApp.dex
new file mode 100644
index 00000000..9d4d15eb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/DeviceStorageApp.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Event0.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Event0.dex
new file mode 100644
index 00000000..a3fa72a2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Event0.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Event1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Event1.dex
new file mode 100644
index 00000000..7b748b2a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Event1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Event2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Event2.dex
new file mode 100644
index 00000000..56dfe083
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Event2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/KillableTileService.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/KillableTileService.dex
new file mode 100644
index 00000000..784a4f90
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/KillableTileService.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/LongConstantLookup.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/LongConstantLookup.dex
new file mode 100644
index 00000000..f4bc5753
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/LongConstantLookup.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/QRCodeDialog$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/QRCodeDialog$Companion.dex
new file mode 100644
index 00000000..dfbbbfc6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/QRCodeDialog$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/QRCodeDialog.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/QRCodeDialog.dex
new file mode 100644
index 00000000..c29da732
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/QRCodeDialog.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RangeInput.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RangeInput.dex
new file mode 100644
index 00000000..dcdcd407
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RangeInput.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$Companion.dex
new file mode 100644
index 00000000..49185b31
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$Transaction.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$Transaction.dex
new file mode 100644
index 00000000..ee16b2b8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$Transaction.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$close$1$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$close$1$1.dex
new file mode 100644
index 00000000..343b94ec
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$close$1$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$execQuiet$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$execQuiet$1.dex
new file mode 100644
index 00000000..a4d23bb1
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$execQuiet$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$server$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$server$1.dex
new file mode 100644
index 00000000..c18da72a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession$server$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession.dex
new file mode 100644
index 00000000..e54e96fe
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/RootSession.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ServiceForegroundConnector.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ServiceForegroundConnector.dex
new file mode 100644
index 00000000..42c6665c
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/ServiceForegroundConnector.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$connectivity$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$connectivity$2.dex
new file mode 100644
index 00000000..ccd6114a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$connectivity$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$context$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$context$2.dex
new file mode 100644
index 00000000..9890b546
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$context$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$mainHandler$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$mainHandler$2.dex
new file mode 100644
index 00000000..550a2524
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$mainHandler$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$p2p$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$p2p$2.dex
new file mode 100644
index 00000000..6e181612
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$p2p$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$wifi$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$wifi$2.dex
new file mode 100644
index 00000000..ea5dbc1d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services$wifi$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services.dex
new file mode 100644
index 00000000..fb4599a9
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/Services.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/StickyEvent0.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/StickyEvent0.dex
new file mode 100644
index 00000000..c6e9c8b3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/StickyEvent0.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/StickyEvent1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/StickyEvent1.dex
new file mode 100644
index 00000000..8a37b705
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/StickyEvent1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UnblockCentral$init$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UnblockCentral$init$2.dex
new file mode 100644
index 00000000..1fb006a4
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UnblockCentral$init$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UnblockCentral.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UnblockCentral.dex
new file mode 100644
index 00000000..592df15d
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UnblockCentral.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker$GitHubUpdate.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker$GitHubUpdate.dex
new file mode 100644
index 00000000..bc4855a2
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker$GitHubUpdate.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker$SemVer.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker$SemVer.dex
new file mode 100644
index 00000000..1a28c726
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker$SemVer.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker$check$1$2$update$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker$check$1$2$update$1.dex
new file mode 100644
index 00000000..234492ee
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker$check$1$2$update$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker$check$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker$check$1.dex
new file mode 100644
index 00000000..1553e054
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker$check$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker.dex
new file mode 100644
index 00000000..0a3246ac
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UpdateChecker.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$broadcastReceiver$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$broadcastReceiver$1.dex
new file mode 100644
index 00000000..3ca31242
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$broadcastReceiver$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$connectCancellable$2$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$connectCancellable$2$1.dex
new file mode 100644
index 00000000..3c4eba42
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$connectCancellable$2$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$connectCancellable$2$job$1.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$connectCancellable$2$job$1.dex
new file mode 100644
index 00000000..10eeeb35
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$connectCancellable$2$job$1.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$engine$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$engine$2.dex
new file mode 100644
index 00000000..84a591c7
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$engine$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$getAllInterfaceNames$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$getAllInterfaceNames$2.dex
new file mode 100644
index 00000000..e606f3df
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$getAllInterfaceNames$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$getAllRoutes$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$getAllRoutes$2.dex
new file mode 100644
index 00000000..8f822b65
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$getAllRoutes$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$newLookup$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$newLookup$2.dex
new file mode 100644
index 00000000..fdea8cb6
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$newLookup$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$parseNumericAddress$2.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$parseNumericAddress$2.dex
new file mode 100644
index 00000000..e8b79fde
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt$parseNumericAddress$2.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt.dex
new file mode 100644
index 00000000..43eb156f
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/util/UtilsKt.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/AlwaysAutoCompleteEditText.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/AlwaysAutoCompleteEditText.dex
new file mode 100644
index 00000000..8f98a59a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/AlwaysAutoCompleteEditText.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/AutoCollapseTextView.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/AutoCollapseTextView.dex
new file mode 100644
index 00000000..737eecbb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/AutoCollapseTextView.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/LinkTextView.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/LinkTextView.dex
new file mode 100644
index 00000000..6f57f045
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/LinkTextView.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/SmartSnackbar$Companion.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/SmartSnackbar$Companion.dex
new file mode 100644
index 00000000..95ffe8e3
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/SmartSnackbar$Companion.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/SmartSnackbar$Register.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/SmartSnackbar$Register.dex
new file mode 100644
index 00000000..c805dfa8
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/SmartSnackbar$Register.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/SmartSnackbar.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/SmartSnackbar.dex
new file mode 100644
index 00000000..9204f1cb
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/SmartSnackbar.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/SnackbarWrapper.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/SnackbarWrapper.dex
new file mode 100644
index 00000000..cfdc257a
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/SnackbarWrapper.dex differ
diff --git a/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/ToastWrapper.dex b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/ToastWrapper.dex
new file mode 100644
index 00000000..e37b5b63
Binary files /dev/null and b/mobile/build/intermediates/project_dex_archive/freedomDebug/out/hanson/xyz/vpnhotspotmod/widget/ToastWrapper.dex differ
diff --git a/mobile/build/intermediates/runtime_symbol_list/freedomDebug/R.txt b/mobile/build/intermediates/runtime_symbol_list/freedomDebug/R.txt
new file mode 100644
index 00000000..0e112473
--- /dev/null
+++ b/mobile/build/intermediates/runtime_symbol_list/freedomDebug/R.txt
@@ -0,0 +1,7545 @@
+int anim abc_fade_in 0x7f010000
+int anim abc_fade_out 0x7f010001
+int anim abc_grow_fade_in_from_bottom 0x7f010002
+int anim abc_popup_enter 0x7f010003
+int anim abc_popup_exit 0x7f010004
+int anim abc_shrink_fade_out_center 0x7f010005
+int anim abc_shrink_fade_out_from_bottom 0x7f010006
+int anim abc_slide_in_bottom 0x7f010007
+int anim abc_slide_in_top 0x7f010008
+int anim abc_slide_out_bottom 0x7f010009
+int anim abc_slide_out_top 0x7f01000a
+int anim abc_tooltip_enter 0x7f01000b
+int anim abc_tooltip_exit 0x7f01000c
+int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000d
+int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000e
+int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000f
+int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f010010
+int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010011
+int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010012
+int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010013
+int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010014
+int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010015
+int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010016
+int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010017
+int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010018
+int anim design_bottom_sheet_slide_in 0x7f010019
+int anim design_bottom_sheet_slide_out 0x7f01001a
+int anim design_snackbar_in 0x7f01001b
+int anim design_snackbar_out 0x7f01001c
+int anim fragment_fast_out_extra_slow_in 0x7f01001d
+int anim linear_indeterminate_line1_head_interpolator 0x7f01001e
+int anim linear_indeterminate_line1_tail_interpolator 0x7f01001f
+int anim linear_indeterminate_line2_head_interpolator 0x7f010020
+int anim linear_indeterminate_line2_tail_interpolator 0x7f010021
+int anim m3_bottom_sheet_slide_in 0x7f010022
+int anim m3_bottom_sheet_slide_out 0x7f010023
+int anim m3_motion_fade_enter 0x7f010024
+int anim m3_motion_fade_exit 0x7f010025
+int anim m3_side_sheet_enter_from_left 0x7f010026
+int anim m3_side_sheet_enter_from_right 0x7f010027
+int anim m3_side_sheet_exit_to_left 0x7f010028
+int anim m3_side_sheet_exit_to_right 0x7f010029
+int anim mtrl_bottom_sheet_slide_in 0x7f01002a
+int anim mtrl_bottom_sheet_slide_out 0x7f01002b
+int anim mtrl_card_lowers_interpolator 0x7f01002c
+int animator design_appbar_state_list_animator 0x7f020000
+int animator design_fab_hide_motion_spec 0x7f020001
+int animator design_fab_show_motion_spec 0x7f020002
+int animator fragment_close_enter 0x7f020003
+int animator fragment_close_exit 0x7f020004
+int animator fragment_fade_enter 0x7f020005
+int animator fragment_fade_exit 0x7f020006
+int animator fragment_open_enter 0x7f020007
+int animator fragment_open_exit 0x7f020008
+int animator m3_appbar_state_list_animator 0x7f020009
+int animator m3_btn_elevated_btn_state_list_anim 0x7f02000a
+int animator m3_btn_state_list_anim 0x7f02000b
+int animator m3_card_elevated_state_list_anim 0x7f02000c
+int animator m3_card_state_list_anim 0x7f02000d
+int animator m3_chip_state_list_anim 0x7f02000e
+int animator m3_elevated_chip_state_list_anim 0x7f02000f
+int animator m3_extended_fab_change_size_collapse_motion_spec 0x7f020010
+int animator m3_extended_fab_change_size_expand_motion_spec 0x7f020011
+int animator m3_extended_fab_hide_motion_spec 0x7f020012
+int animator m3_extended_fab_show_motion_spec 0x7f020013
+int animator m3_extended_fab_state_list_animator 0x7f020014
+int animator mtrl_btn_state_list_anim 0x7f020015
+int animator mtrl_btn_unelevated_state_list_anim 0x7f020016
+int animator mtrl_card_state_list_anim 0x7f020017
+int animator mtrl_chip_state_list_anim 0x7f020018
+int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x7f020019
+int animator mtrl_extended_fab_change_size_expand_motion_spec 0x7f02001a
+int animator mtrl_extended_fab_hide_motion_spec 0x7f02001b
+int animator mtrl_extended_fab_show_motion_spec 0x7f02001c
+int animator mtrl_extended_fab_state_list_animator 0x7f02001d
+int animator mtrl_fab_hide_motion_spec 0x7f02001e
+int animator mtrl_fab_show_motion_spec 0x7f02001f
+int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020020
+int animator mtrl_fab_transformation_sheet_expand_spec 0x7f020021
+int array settings_service_ip_monitor 0x7f030000
+int array settings_service_ip_monitor_values 0x7f030001
+int array settings_service_masquerade 0x7f030002
+int array settings_service_masquerade_values 0x7f030003
+int array settings_service_wifi_lock 0x7f030004
+int array settings_service_wifi_lock_values 0x7f030005
+int array wifi_mac_randomization 0x7f030006
+int attr actionBarDivider 0x7f040000
+int attr actionBarItemBackground 0x7f040001
+int attr actionBarPopupTheme 0x7f040002
+int attr actionBarSize 0x7f040003
+int attr actionBarSplitStyle 0x7f040004
+int attr actionBarStyle 0x7f040005
+int attr actionBarTabBarStyle 0x7f040006
+int attr actionBarTabStyle 0x7f040007
+int attr actionBarTabTextStyle 0x7f040008
+int attr actionBarTheme 0x7f040009
+int attr actionBarWidgetTheme 0x7f04000a
+int attr actionButtonStyle 0x7f04000b
+int attr actionDropDownStyle 0x7f04000c
+int attr actionLayout 0x7f04000d
+int attr actionMenuTextAppearance 0x7f04000e
+int attr actionMenuTextColor 0x7f04000f
+int attr actionModeBackground 0x7f040010
+int attr actionModeCloseButtonStyle 0x7f040011
+int attr actionModeCloseContentDescription 0x7f040012
+int attr actionModeCloseDrawable 0x7f040013
+int attr actionModeCopyDrawable 0x7f040014
+int attr actionModeCutDrawable 0x7f040015
+int attr actionModeFindDrawable 0x7f040016
+int attr actionModePasteDrawable 0x7f040017
+int attr actionModePopupWindowStyle 0x7f040018
+int attr actionModeSelectAllDrawable 0x7f040019
+int attr actionModeShareDrawable 0x7f04001a
+int attr actionModeSplitBackground 0x7f04001b
+int attr actionModeStyle 0x7f04001c
+int attr actionModeTheme 0x7f04001d
+int attr actionModeWebSearchDrawable 0x7f04001e
+int attr actionOverflowButtonStyle 0x7f04001f
+int attr actionOverflowMenuStyle 0x7f040020
+int attr actionProviderClass 0x7f040021
+int attr actionTextColorAlpha 0x7f040022
+int attr actionViewClass 0x7f040023
+int attr activeIndicatorLabelPadding 0x7f040024
+int attr activityAction 0x7f040025
+int attr activityChooserViewStyle 0x7f040026
+int attr activityName 0x7f040027
+int attr addElevationShadow 0x7f040028
+int attr adjustable 0x7f040029
+int attr alertDialogButtonGroupStyle 0x7f04002a
+int attr alertDialogCenterButtons 0x7f04002b
+int attr alertDialogStyle 0x7f04002c
+int attr alertDialogTheme 0x7f04002d
+int attr allowDividerAbove 0x7f04002e
+int attr allowDividerAfterLastItem 0x7f04002f
+int attr allowDividerBelow 0x7f040030
+int attr allowStacking 0x7f040031
+int attr alpha 0x7f040032
+int attr alphabeticModifiers 0x7f040033
+int attr altSrc 0x7f040034
+int attr alwaysExpand 0x7f040035
+int attr animateMenuItems 0x7f040036
+int attr animateNavigationIcon 0x7f040037
+int attr animate_relativeTo 0x7f040038
+int attr animationMode 0x7f040039
+int attr appBarLayoutStyle 0x7f04003a
+int attr applyMotionScene 0x7f04003b
+int attr arcMode 0x7f04003c
+int attr arrowHeadLength 0x7f04003d
+int attr arrowShaftLength 0x7f04003e
+int attr attributeName 0x7f04003f
+int attr autoAdjustToWithinGrandparentBounds 0x7f040040
+int attr autoCompleteTextViewStyle 0x7f040041
+int attr autoShowKeyboard 0x7f040042
+int attr autoSizeMaxTextSize 0x7f040043
+int attr autoSizeMinTextSize 0x7f040044
+int attr autoSizePresetSizes 0x7f040045
+int attr autoSizeStepGranularity 0x7f040046
+int attr autoSizeTextType 0x7f040047
+int attr autoTransition 0x7f040048
+int attr backHandlingEnabled 0x7f040049
+int attr background 0x7f04004a
+int attr backgroundColor 0x7f04004b
+int attr backgroundInsetBottom 0x7f04004c
+int attr backgroundInsetEnd 0x7f04004d
+int attr backgroundInsetStart 0x7f04004e
+int attr backgroundInsetTop 0x7f04004f
+int attr backgroundOverlayColorAlpha 0x7f040050
+int attr backgroundSplit 0x7f040051
+int attr backgroundStacked 0x7f040052
+int attr backgroundTint 0x7f040053
+int attr backgroundTintMode 0x7f040054
+int attr badgeGravity 0x7f040055
+int attr badgeHeight 0x7f040056
+int attr badgeRadius 0x7f040057
+int attr badgeShapeAppearance 0x7f040058
+int attr badgeShapeAppearanceOverlay 0x7f040059
+int attr badgeStyle 0x7f04005a
+int attr badgeText 0x7f04005b
+int attr badgeTextAppearance 0x7f04005c
+int attr badgeTextColor 0x7f04005d
+int attr badgeVerticalPadding 0x7f04005e
+int attr badgeWidePadding 0x7f04005f
+int attr badgeWidth 0x7f040060
+int attr badgeWithTextHeight 0x7f040061
+int attr badgeWithTextRadius 0x7f040062
+int attr badgeWithTextShapeAppearance 0x7f040063
+int attr badgeWithTextShapeAppearanceOverlay 0x7f040064
+int attr badgeWithTextWidth 0x7f040065
+int attr barLength 0x7f040066
+int attr barrierAllowsGoneWidgets 0x7f040067
+int attr barrierDirection 0x7f040068
+int attr barrierMargin 0x7f040069
+int attr behavior_autoHide 0x7f04006a
+int attr behavior_autoShrink 0x7f04006b
+int attr behavior_draggable 0x7f04006c
+int attr behavior_expandedOffset 0x7f04006d
+int attr behavior_fitToContents 0x7f04006e
+int attr behavior_halfExpandedRatio 0x7f04006f
+int attr behavior_hideable 0x7f040070
+int attr behavior_overlapTop 0x7f040071
+int attr behavior_peekHeight 0x7f040072
+int attr behavior_saveFlags 0x7f040073
+int attr behavior_significantVelocityThreshold 0x7f040074
+int attr behavior_skipCollapsed 0x7f040075
+int attr borderWidth 0x7f040076
+int attr borderlessButtonStyle 0x7f040077
+int attr bottomAppBarStyle 0x7f040078
+int attr bottomInsetScrimEnabled 0x7f040079
+int attr bottomNavigationStyle 0x7f04007a
+int attr bottomSheetDialogTheme 0x7f04007b
+int attr bottomSheetDragHandleStyle 0x7f04007c
+int attr bottomSheetStyle 0x7f04007d
+int attr boxBackgroundColor 0x7f04007e
+int attr boxBackgroundMode 0x7f04007f
+int attr boxCollapsedPaddingTop 0x7f040080
+int attr boxCornerRadiusBottomEnd 0x7f040081
+int attr boxCornerRadiusBottomStart 0x7f040082
+int attr boxCornerRadiusTopEnd 0x7f040083
+int attr boxCornerRadiusTopStart 0x7f040084
+int attr boxStrokeColor 0x7f040085
+int attr boxStrokeErrorColor 0x7f040086
+int attr boxStrokeWidth 0x7f040087
+int attr boxStrokeWidthFocused 0x7f040088
+int attr brightness 0x7f040089
+int attr buttonBarButtonStyle 0x7f04008a
+int attr buttonBarNegativeButtonStyle 0x7f04008b
+int attr buttonBarNeutralButtonStyle 0x7f04008c
+int attr buttonBarPositiveButtonStyle 0x7f04008d
+int attr buttonBarStyle 0x7f04008e
+int attr buttonCompat 0x7f04008f
+int attr buttonGravity 0x7f040090
+int attr buttonIcon 0x7f040091
+int attr buttonIconDimen 0x7f040092
+int attr buttonIconTint 0x7f040093
+int attr buttonIconTintMode 0x7f040094
+int attr buttonPanelSideLayout 0x7f040095
+int attr buttonSize 0x7f040096
+int attr buttonStyle 0x7f040097
+int attr buttonStyleSmall 0x7f040098
+int attr buttonTint 0x7f040099
+int attr buttonTintMode 0x7f04009a
+int attr cardBackgroundColor 0x7f04009b
+int attr cardCornerRadius 0x7f04009c
+int attr cardElevation 0x7f04009d
+int attr cardForegroundColor 0x7f04009e
+int attr cardMaxElevation 0x7f04009f
+int attr cardPreventCornerOverlap 0x7f0400a0
+int attr cardUseCompatPadding 0x7f0400a1
+int attr cardViewStyle 0x7f0400a2
+int attr carousel_alignment 0x7f0400a3
+int attr centerIfNoTextEnabled 0x7f0400a4
+int attr chainUseRtl 0x7f0400a5
+int attr checkBoxPreferenceStyle 0x7f0400a6
+int attr checkMarkCompat 0x7f0400a7
+int attr checkMarkTint 0x7f0400a8
+int attr checkMarkTintMode 0x7f0400a9
+int attr checkboxStyle 0x7f0400aa
+int attr checkedButton 0x7f0400ab
+int attr checkedChip 0x7f0400ac
+int attr checkedIcon 0x7f0400ad
+int attr checkedIconEnabled 0x7f0400ae
+int attr checkedIconGravity 0x7f0400af
+int attr checkedIconMargin 0x7f0400b0
+int attr checkedIconSize 0x7f0400b1
+int attr checkedIconTint 0x7f0400b2
+int attr checkedIconVisible 0x7f0400b3
+int attr checkedState 0x7f0400b4
+int attr checkedTextViewStyle 0x7f0400b5
+int attr chipBackgroundColor 0x7f0400b6
+int attr chipCornerRadius 0x7f0400b7
+int attr chipEndPadding 0x7f0400b8
+int attr chipGroupStyle 0x7f0400b9
+int attr chipIcon 0x7f0400ba
+int attr chipIconEnabled 0x7f0400bb
+int attr chipIconSize 0x7f0400bc
+int attr chipIconTint 0x7f0400bd
+int attr chipIconVisible 0x7f0400be
+int attr chipMinHeight 0x7f0400bf
+int attr chipMinTouchTargetSize 0x7f0400c0
+int attr chipSpacing 0x7f0400c1
+int attr chipSpacingHorizontal 0x7f0400c2
+int attr chipSpacingVertical 0x7f0400c3
+int attr chipStandaloneStyle 0x7f0400c4
+int attr chipStartPadding 0x7f0400c5
+int attr chipStrokeColor 0x7f0400c6
+int attr chipStrokeWidth 0x7f0400c7
+int attr chipStyle 0x7f0400c8
+int attr chipSurfaceColor 0x7f0400c9
+int attr circleCrop 0x7f0400ca
+int attr circleRadius 0x7f0400cb
+int attr circularProgressIndicatorStyle 0x7f0400cc
+int attr clearTop 0x7f0400cd
+int attr clickAction 0x7f0400ce
+int attr clockFaceBackgroundColor 0x7f0400cf
+int attr clockHandColor 0x7f0400d0
+int attr clockIcon 0x7f0400d1
+int attr clockNumberTextColor 0x7f0400d2
+int attr closeIcon 0x7f0400d3
+int attr closeIconEnabled 0x7f0400d4
+int attr closeIconEndPadding 0x7f0400d5
+int attr closeIconSize 0x7f0400d6
+int attr closeIconStartPadding 0x7f0400d7
+int attr closeIconTint 0x7f0400d8
+int attr closeIconVisible 0x7f0400d9
+int attr closeItemLayout 0x7f0400da
+int attr collapseContentDescription 0x7f0400db
+int attr collapseIcon 0x7f0400dc
+int attr collapsedSize 0x7f0400dd
+int attr collapsedTitleGravity 0x7f0400de
+int attr collapsedTitleTextAppearance 0x7f0400df
+int attr collapsedTitleTextColor 0x7f0400e0
+int attr collapsingToolbarLayoutLargeSize 0x7f0400e1
+int attr collapsingToolbarLayoutLargeStyle 0x7f0400e2
+int attr collapsingToolbarLayoutMediumSize 0x7f0400e3
+int attr collapsingToolbarLayoutMediumStyle 0x7f0400e4
+int attr collapsingToolbarLayoutStyle 0x7f0400e5
+int attr color 0x7f0400e6
+int attr colorAccent 0x7f0400e7
+int attr colorBackgroundFloating 0x7f0400e8
+int attr colorButtonNormal 0x7f0400e9
+int attr colorContainer 0x7f0400ea
+int attr colorControlActivated 0x7f0400eb
+int attr colorControlHighlight 0x7f0400ec
+int attr colorControlNormal 0x7f0400ed
+int attr colorError 0x7f0400ee
+int attr colorErrorContainer 0x7f0400ef
+int attr colorOnBackground 0x7f0400f0
+int attr colorOnContainer 0x7f0400f1
+int attr colorOnContainerUnchecked 0x7f0400f2
+int attr colorOnError 0x7f0400f3
+int attr colorOnErrorContainer 0x7f0400f4
+int attr colorOnPrimary 0x7f0400f5
+int attr colorOnPrimaryContainer 0x7f0400f6
+int attr colorOnPrimaryFixed 0x7f0400f7
+int attr colorOnPrimaryFixedVariant 0x7f0400f8
+int attr colorOnPrimarySurface 0x7f0400f9
+int attr colorOnSecondary 0x7f0400fa
+int attr colorOnSecondaryContainer 0x7f0400fb
+int attr colorOnSecondaryFixed 0x7f0400fc
+int attr colorOnSecondaryFixedVariant 0x7f0400fd
+int attr colorOnSurface 0x7f0400fe
+int attr colorOnSurfaceInverse 0x7f0400ff
+int attr colorOnSurfaceVariant 0x7f040100
+int attr colorOnTertiary 0x7f040101
+int attr colorOnTertiaryContainer 0x7f040102
+int attr colorOnTertiaryFixed 0x7f040103
+int attr colorOnTertiaryFixedVariant 0x7f040104
+int attr colorOutline 0x7f040105
+int attr colorOutlineVariant 0x7f040106
+int attr colorPrimary 0x7f040107
+int attr colorPrimaryContainer 0x7f040108
+int attr colorPrimaryDark 0x7f040109
+int attr colorPrimaryFixed 0x7f04010a
+int attr colorPrimaryFixedDim 0x7f04010b
+int attr colorPrimaryInverse 0x7f04010c
+int attr colorPrimarySurface 0x7f04010d
+int attr colorPrimaryVariant 0x7f04010e
+int attr colorScheme 0x7f04010f
+int attr colorSecondary 0x7f040110
+int attr colorSecondaryContainer 0x7f040111
+int attr colorSecondaryFixed 0x7f040112
+int attr colorSecondaryFixedDim 0x7f040113
+int attr colorSecondaryVariant 0x7f040114
+int attr colorSurface 0x7f040115
+int attr colorSurfaceBright 0x7f040116
+int attr colorSurfaceContainer 0x7f040117
+int attr colorSurfaceContainerHigh 0x7f040118
+int attr colorSurfaceContainerHighest 0x7f040119
+int attr colorSurfaceContainerLow 0x7f04011a
+int attr colorSurfaceContainerLowest 0x7f04011b
+int attr colorSurfaceDim 0x7f04011c
+int attr colorSurfaceInverse 0x7f04011d
+int attr colorSurfaceVariant 0x7f04011e
+int attr colorSwitchThumbNormal 0x7f04011f
+int attr colorTertiary 0x7f040120
+int attr colorTertiaryContainer 0x7f040121
+int attr colorTertiaryFixed 0x7f040122
+int attr colorTertiaryFixedDim 0x7f040123
+int attr commitIcon 0x7f040124
+int attr compatShadowEnabled 0x7f040125
+int attr constraintSet 0x7f040126
+int attr constraintSetEnd 0x7f040127
+int attr constraintSetStart 0x7f040128
+int attr constraint_referenced_ids 0x7f040129
+int attr constraints 0x7f04012a
+int attr content 0x7f04012b
+int attr contentDescription 0x7f04012c
+int attr contentInsetEnd 0x7f04012d
+int attr contentInsetEndWithActions 0x7f04012e
+int attr contentInsetLeft 0x7f04012f
+int attr contentInsetRight 0x7f040130
+int attr contentInsetStart 0x7f040131
+int attr contentInsetStartWithNavigation 0x7f040132
+int attr contentPadding 0x7f040133
+int attr contentPaddingBottom 0x7f040134
+int attr contentPaddingEnd 0x7f040135
+int attr contentPaddingLeft 0x7f040136
+int attr contentPaddingRight 0x7f040137
+int attr contentPaddingStart 0x7f040138
+int attr contentPaddingTop 0x7f040139
+int attr contentScrim 0x7f04013a
+int attr contrast 0x7f04013b
+int attr controlBackground 0x7f04013c
+int attr coordinatorLayoutStyle 0x7f04013d
+int attr coplanarSiblingViewId 0x7f04013e
+int attr cornerFamily 0x7f04013f
+int attr cornerFamilyBottomLeft 0x7f040140
+int attr cornerFamilyBottomRight 0x7f040141
+int attr cornerFamilyTopLeft 0x7f040142
+int attr cornerFamilyTopRight 0x7f040143
+int attr cornerRadius 0x7f040144
+int attr cornerSize 0x7f040145
+int attr cornerSizeBottomLeft 0x7f040146
+int attr cornerSizeBottomRight 0x7f040147
+int attr cornerSizeTopLeft 0x7f040148
+int attr cornerSizeTopRight 0x7f040149
+int attr counterEnabled 0x7f04014a
+int attr counterMaxLength 0x7f04014b
+int attr counterOverflowTextAppearance 0x7f04014c
+int attr counterOverflowTextColor 0x7f04014d
+int attr counterTextAppearance 0x7f04014e
+int attr counterTextColor 0x7f04014f
+int attr crossfade 0x7f040150
+int attr currentState 0x7f040151
+int attr cursorColor 0x7f040152
+int attr cursorErrorColor 0x7f040153
+int attr curveFit 0x7f040154
+int attr customBoolean 0x7f040155
+int attr customColorDrawableValue 0x7f040156
+int attr customColorValue 0x7f040157
+int attr customDimension 0x7f040158
+int attr customFloatValue 0x7f040159
+int attr customIntegerValue 0x7f04015a
+int attr customNavigationLayout 0x7f04015b
+int attr customPixelDimension 0x7f04015c
+int attr customStringValue 0x7f04015d
+int attr dayInvalidStyle 0x7f04015e
+int attr daySelectedStyle 0x7f04015f
+int attr dayStyle 0x7f040160
+int attr dayTodayStyle 0x7f040161
+int attr defaultDuration 0x7f040162
+int attr defaultMarginsEnabled 0x7f040163
+int attr defaultQueryHint 0x7f040164
+int attr defaultScrollFlagsEnabled 0x7f040165
+int attr defaultState 0x7f040166
+int attr defaultValue 0x7f040167
+int attr deltaPolarAngle 0x7f040168
+int attr deltaPolarRadius 0x7f040169
+int attr dependency 0x7f04016a
+int attr deriveConstraintsFrom 0x7f04016b
+int attr dialogCornerRadius 0x7f04016c
+int attr dialogIcon 0x7f04016d
+int attr dialogLayout 0x7f04016e
+int attr dialogMessage 0x7f04016f
+int attr dialogPreferenceStyle 0x7f040170
+int attr dialogPreferredPadding 0x7f040171
+int attr dialogTheme 0x7f040172
+int attr dialogTitle 0x7f040173
+int attr disableDependentsState 0x7f040174
+int attr displayOptions 0x7f040175
+int attr divider 0x7f040176
+int attr dividerColor 0x7f040177
+int attr dividerHorizontal 0x7f040178
+int attr dividerInsetEnd 0x7f040179
+int attr dividerInsetStart 0x7f04017a
+int attr dividerPadding 0x7f04017b
+int attr dividerThickness 0x7f04017c
+int attr dividerVertical 0x7f04017d
+int attr dragDirection 0x7f04017e
+int attr dragScale 0x7f04017f
+int attr dragThreshold 0x7f040180
+int attr drawPath 0x7f040181
+int attr drawableBottomCompat 0x7f040182
+int attr drawableEndCompat 0x7f040183
+int attr drawableLeftCompat 0x7f040184
+int attr drawableRightCompat 0x7f040185
+int attr drawableSize 0x7f040186
+int attr drawableStartCompat 0x7f040187
+int attr drawableTint 0x7f040188
+int attr drawableTintMode 0x7f040189
+int attr drawableTopCompat 0x7f04018a
+int attr drawerArrowStyle 0x7f04018b
+int attr drawerLayoutCornerSize 0x7f04018c
+int attr drawerLayoutStyle 0x7f04018d
+int attr dropDownBackgroundTint 0x7f04018e
+int attr dropDownListViewStyle 0x7f04018f
+int attr dropdownListPreferredItemHeight 0x7f040190
+int attr dropdownPreferenceStyle 0x7f040191
+int attr duration 0x7f040192
+int attr dynamicColorThemeOverlay 0x7f040193
+int attr editTextBackground 0x7f040194
+int attr editTextColor 0x7f040195
+int attr editTextPreferenceStyle 0x7f040196
+int attr editTextStyle 0x7f040197
+int attr elevation 0x7f040198
+int attr elevationOverlayAccentColor 0x7f040199
+int attr elevationOverlayColor 0x7f04019a
+int attr elevationOverlayEnabled 0x7f04019b
+int attr emojiCompatEnabled 0x7f04019c
+int attr enableCopying 0x7f04019d
+int attr enableEdgeToEdge 0x7f04019e
+int attr enabled 0x7f04019f
+int attr endIconCheckable 0x7f0401a0
+int attr endIconContentDescription 0x7f0401a1
+int attr endIconDrawable 0x7f0401a2
+int attr endIconMinSize 0x7f0401a3
+int attr endIconMode 0x7f0401a4
+int attr endIconScaleType 0x7f0401a5
+int attr endIconTint 0x7f0401a6
+int attr endIconTintMode 0x7f0401a7
+int attr enforceMaterialTheme 0x7f0401a8
+int attr enforceTextAppearance 0x7f0401a9
+int attr ensureMinTouchTargetSize 0x7f0401aa
+int attr entries 0x7f0401ab
+int attr entryValues 0x7f0401ac
+int attr errorAccessibilityLabel 0x7f0401ad
+int attr errorAccessibilityLiveRegion 0x7f0401ae
+int attr errorContentDescription 0x7f0401af
+int attr errorEnabled 0x7f0401b0
+int attr errorIconDrawable 0x7f0401b1
+int attr errorIconTint 0x7f0401b2
+int attr errorIconTintMode 0x7f0401b3
+int attr errorShown 0x7f0401b4
+int attr errorTextAppearance 0x7f0401b5
+int attr errorTextColor 0x7f0401b6
+int attr expandActivityOverflowButtonDrawable 0x7f0401b7
+int attr expanded 0x7f0401b8
+int attr expandedHintEnabled 0x7f0401b9
+int attr expandedTitleGravity 0x7f0401ba
+int attr expandedTitleMargin 0x7f0401bb
+int attr expandedTitleMarginBottom 0x7f0401bc
+int attr expandedTitleMarginEnd 0x7f0401bd
+int attr expandedTitleMarginStart 0x7f0401be
+int attr expandedTitleMarginTop 0x7f0401bf
+int attr expandedTitleTextAppearance 0x7f0401c0
+int attr expandedTitleTextColor 0x7f0401c1
+int attr extendMotionSpec 0x7f0401c2
+int attr extendStrategy 0x7f0401c3
+int attr extendedFloatingActionButtonPrimaryStyle 0x7f0401c4
+int attr extendedFloatingActionButtonSecondaryStyle 0x7f0401c5
+int attr extendedFloatingActionButtonStyle 0x7f0401c6
+int attr extendedFloatingActionButtonSurfaceStyle 0x7f0401c7
+int attr extendedFloatingActionButtonTertiaryStyle 0x7f0401c8
+int attr extraMultilineHeightEnabled 0x7f0401c9
+int attr fabAlignmentMode 0x7f0401ca
+int attr fabAlignmentModeEndMargin 0x7f0401cb
+int attr fabAnchorMode 0x7f0401cc
+int attr fabAnimationMode 0x7f0401cd
+int attr fabCradleMargin 0x7f0401ce
+int attr fabCradleRoundedCornerRadius 0x7f0401cf
+int attr fabCradleVerticalOffset 0x7f0401d0
+int attr fabCustomSize 0x7f0401d1
+int attr fabSize 0x7f0401d2
+int attr fastScrollEnabled 0x7f0401d3
+int attr fastScrollHorizontalThumbDrawable 0x7f0401d4
+int attr fastScrollHorizontalTrackDrawable 0x7f0401d5
+int attr fastScrollVerticalThumbDrawable 0x7f0401d6
+int attr fastScrollVerticalTrackDrawable 0x7f0401d7
+int attr finishPrimaryWithSecondary 0x7f0401d8
+int attr finishSecondaryWithPrimary 0x7f0401d9
+int attr firstBaselineToTopHeight 0x7f0401da
+int attr floatingActionButtonLargePrimaryStyle 0x7f0401db
+int attr floatingActionButtonLargeSecondaryStyle 0x7f0401dc
+int attr floatingActionButtonLargeStyle 0x7f0401dd
+int attr floatingActionButtonLargeSurfaceStyle 0x7f0401de
+int attr floatingActionButtonLargeTertiaryStyle 0x7f0401df
+int attr floatingActionButtonPrimaryStyle 0x7f0401e0
+int attr floatingActionButtonSecondaryStyle 0x7f0401e1
+int attr floatingActionButtonSmallPrimaryStyle 0x7f0401e2
+int attr floatingActionButtonSmallSecondaryStyle 0x7f0401e3
+int attr floatingActionButtonSmallStyle 0x7f0401e4
+int attr floatingActionButtonSmallSurfaceStyle 0x7f0401e5
+int attr floatingActionButtonSmallTertiaryStyle 0x7f0401e6
+int attr floatingActionButtonStyle 0x7f0401e7
+int attr floatingActionButtonSurfaceStyle 0x7f0401e8
+int attr floatingActionButtonTertiaryStyle 0x7f0401e9
+int attr flow_firstHorizontalBias 0x7f0401ea
+int attr flow_firstHorizontalStyle 0x7f0401eb
+int attr flow_firstVerticalBias 0x7f0401ec
+int attr flow_firstVerticalStyle 0x7f0401ed
+int attr flow_horizontalAlign 0x7f0401ee
+int attr flow_horizontalBias 0x7f0401ef
+int attr flow_horizontalGap 0x7f0401f0
+int attr flow_horizontalStyle 0x7f0401f1
+int attr flow_lastHorizontalBias 0x7f0401f2
+int attr flow_lastHorizontalStyle 0x7f0401f3
+int attr flow_lastVerticalBias 0x7f0401f4
+int attr flow_lastVerticalStyle 0x7f0401f5
+int attr flow_maxElementsWrap 0x7f0401f6
+int attr flow_padding 0x7f0401f7
+int attr flow_verticalAlign 0x7f0401f8
+int attr flow_verticalBias 0x7f0401f9
+int attr flow_verticalGap 0x7f0401fa
+int attr flow_verticalStyle 0x7f0401fb
+int attr flow_wrapMode 0x7f0401fc
+int attr font 0x7f0401fd
+int attr fontFamily 0x7f0401fe
+int attr fontProviderAuthority 0x7f0401ff
+int attr fontProviderCerts 0x7f040200
+int attr fontProviderFetchStrategy 0x7f040201
+int attr fontProviderFetchTimeout 0x7f040202
+int attr fontProviderPackage 0x7f040203
+int attr fontProviderQuery 0x7f040204
+int attr fontProviderSystemFontFamily 0x7f040205
+int attr fontStyle 0x7f040206
+int attr fontVariationSettings 0x7f040207
+int attr fontWeight 0x7f040208
+int attr forceApplySystemWindowInsetTop 0x7f040209
+int attr forceDefaultNavigationOnClickListener 0x7f04020a
+int attr foregroundInsidePadding 0x7f04020b
+int attr fragment 0x7f04020c
+int attr framePosition 0x7f04020d
+int attr gapBetweenBars 0x7f04020e
+int attr gestureInsetBottomIgnored 0x7f04020f
+int attr goIcon 0x7f040210
+int attr haloColor 0x7f040211
+int attr haloRadius 0x7f040212
+int attr headerLayout 0x7f040213
+int attr height 0x7f040214
+int attr helperText 0x7f040215
+int attr helperTextEnabled 0x7f040216
+int attr helperTextTextAppearance 0x7f040217
+int attr helperTextTextColor 0x7f040218
+int attr hideAnimationBehavior 0x7f040219
+int attr hideMotionSpec 0x7f04021a
+int attr hideNavigationIcon 0x7f04021b
+int attr hideOnContentScroll 0x7f04021c
+int attr hideOnScroll 0x7f04021d
+int attr hintAnimationEnabled 0x7f04021e
+int attr hintEnabled 0x7f04021f
+int attr hintTextAppearance 0x7f040220
+int attr hintTextColor 0x7f040221
+int attr homeAsUpIndicator 0x7f040222
+int attr homeLayout 0x7f040223
+int attr horizontalOffset 0x7f040224
+int attr horizontalOffsetWithText 0x7f040225
+int attr hoveredFocusedTranslationZ 0x7f040226
+int attr icon 0x7f040227
+int attr iconEndPadding 0x7f040228
+int attr iconGravity 0x7f040229
+int attr iconPadding 0x7f04022a
+int attr iconSize 0x7f04022b
+int attr iconSpaceReserved 0x7f04022c
+int attr iconStartPadding 0x7f04022d
+int attr iconTint 0x7f04022e
+int attr iconTintMode 0x7f04022f
+int attr iconifiedByDefault 0x7f040230
+int attr imageAspectRatio 0x7f040231
+int attr imageAspectRatioAdjust 0x7f040232
+int attr imageButtonStyle 0x7f040233
+int attr indeterminateAnimationType 0x7f040234
+int attr indeterminateProgressStyle 0x7f040235
+int attr indicatorColor 0x7f040236
+int attr indicatorDirectionCircular 0x7f040237
+int attr indicatorDirectionLinear 0x7f040238
+int attr indicatorInset 0x7f040239
+int attr indicatorSize 0x7f04023a
+int attr initialActivityCount 0x7f04023b
+int attr initialExpandedChildrenCount 0x7f04023c
+int attr insetForeground 0x7f04023d
+int attr isLightTheme 0x7f04023e
+int attr isMaterial3DynamicColorApplied 0x7f04023f
+int attr isMaterial3Theme 0x7f040240
+int attr isMaterialTheme 0x7f040241
+int attr isPreferenceVisible 0x7f040242
+int attr itemActiveIndicatorStyle 0x7f040243
+int attr itemBackground 0x7f040244
+int attr itemFillColor 0x7f040245
+int attr itemHorizontalPadding 0x7f040246
+int attr itemHorizontalTranslationEnabled 0x7f040247
+int attr itemIconPadding 0x7f040248
+int attr itemIconSize 0x7f040249
+int attr itemIconTint 0x7f04024a
+int attr itemMaxLines 0x7f04024b
+int attr itemMinHeight 0x7f04024c
+int attr itemPadding 0x7f04024d
+int attr itemPaddingBottom 0x7f04024e
+int attr itemPaddingTop 0x7f04024f
+int attr itemRippleColor 0x7f040250
+int attr itemShapeAppearance 0x7f040251
+int attr itemShapeAppearanceOverlay 0x7f040252
+int attr itemShapeFillColor 0x7f040253
+int attr itemShapeInsetBottom 0x7f040254
+int attr itemShapeInsetEnd 0x7f040255
+int attr itemShapeInsetStart 0x7f040256
+int attr itemShapeInsetTop 0x7f040257
+int attr itemSpacing 0x7f040258
+int attr itemStrokeColor 0x7f040259
+int attr itemStrokeWidth 0x7f04025a
+int attr itemTextAppearance 0x7f04025b
+int attr itemTextAppearanceActive 0x7f04025c
+int attr itemTextAppearanceActiveBoldEnabled 0x7f04025d
+int attr itemTextAppearanceInactive 0x7f04025e
+int attr itemTextColor 0x7f04025f
+int attr itemVerticalPadding 0x7f040260
+int attr key 0x7f040261
+int attr keyPositionType 0x7f040262
+int attr keyboardIcon 0x7f040263
+int attr keylines 0x7f040264
+int attr lStar 0x7f040265
+int attr labelBehavior 0x7f040266
+int attr labelStyle 0x7f040267
+int attr labelVisibilityMode 0x7f040268
+int attr largeFontVerticalOffsetAdjustment 0x7f040269
+int attr lastBaselineToBottomHeight 0x7f04026a
+int attr lastItemDecorated 0x7f04026b
+int attr layout 0x7f04026c
+int attr layoutDescription 0x7f04026d
+int attr layoutDuringTransition 0x7f04026e
+int attr layoutManager 0x7f04026f
+int attr layout_anchor 0x7f040270
+int attr layout_anchorGravity 0x7f040271
+int attr layout_behavior 0x7f040272
+int attr layout_collapseMode 0x7f040273
+int attr layout_collapseParallaxMultiplier 0x7f040274
+int attr layout_constrainedHeight 0x7f040275
+int attr layout_constrainedWidth 0x7f040276
+int attr layout_constraintBaseline_creator 0x7f040277
+int attr layout_constraintBaseline_toBaselineOf 0x7f040278
+int attr layout_constraintBottom_creator 0x7f040279
+int attr layout_constraintBottom_toBottomOf 0x7f04027a
+int attr layout_constraintBottom_toTopOf 0x7f04027b
+int attr layout_constraintCircle 0x7f04027c
+int attr layout_constraintCircleAngle 0x7f04027d
+int attr layout_constraintCircleRadius 0x7f04027e
+int attr layout_constraintDimensionRatio 0x7f04027f
+int attr layout_constraintEnd_toEndOf 0x7f040280
+int attr layout_constraintEnd_toStartOf 0x7f040281
+int attr layout_constraintGuide_begin 0x7f040282
+int attr layout_constraintGuide_end 0x7f040283
+int attr layout_constraintGuide_percent 0x7f040284
+int attr layout_constraintHeight_default 0x7f040285
+int attr layout_constraintHeight_max 0x7f040286
+int attr layout_constraintHeight_min 0x7f040287
+int attr layout_constraintHeight_percent 0x7f040288
+int attr layout_constraintHorizontal_bias 0x7f040289
+int attr layout_constraintHorizontal_chainStyle 0x7f04028a
+int attr layout_constraintHorizontal_weight 0x7f04028b
+int attr layout_constraintLeft_creator 0x7f04028c
+int attr layout_constraintLeft_toLeftOf 0x7f04028d
+int attr layout_constraintLeft_toRightOf 0x7f04028e
+int attr layout_constraintRight_creator 0x7f04028f
+int attr layout_constraintRight_toLeftOf 0x7f040290
+int attr layout_constraintRight_toRightOf 0x7f040291
+int attr layout_constraintStart_toEndOf 0x7f040292
+int attr layout_constraintStart_toStartOf 0x7f040293
+int attr layout_constraintTag 0x7f040294
+int attr layout_constraintTop_creator 0x7f040295
+int attr layout_constraintTop_toBottomOf 0x7f040296
+int attr layout_constraintTop_toTopOf 0x7f040297
+int attr layout_constraintVertical_bias 0x7f040298
+int attr layout_constraintVertical_chainStyle 0x7f040299
+int attr layout_constraintVertical_weight 0x7f04029a
+int attr layout_constraintWidth_default 0x7f04029b
+int attr layout_constraintWidth_max 0x7f04029c
+int attr layout_constraintWidth_min 0x7f04029d
+int attr layout_constraintWidth_percent 0x7f04029e
+int attr layout_dodgeInsetEdges 0x7f04029f
+int attr layout_editor_absoluteX 0x7f0402a0
+int attr layout_editor_absoluteY 0x7f0402a1
+int attr layout_goneMarginBottom 0x7f0402a2
+int attr layout_goneMarginEnd 0x7f0402a3
+int attr layout_goneMarginLeft 0x7f0402a4
+int attr layout_goneMarginRight 0x7f0402a5
+int attr layout_goneMarginStart 0x7f0402a6
+int attr layout_goneMarginTop 0x7f0402a7
+int attr layout_insetEdge 0x7f0402a8
+int attr layout_keyline 0x7f0402a9
+int attr layout_optimizationLevel 0x7f0402aa
+int attr layout_scrollEffect 0x7f0402ab
+int attr layout_scrollFlags 0x7f0402ac
+int attr layout_scrollInterpolator 0x7f0402ad
+int attr liftOnScroll 0x7f0402ae
+int attr liftOnScrollColor 0x7f0402af
+int attr liftOnScrollTargetViewId 0x7f0402b0
+int attr limitBoundsTo 0x7f0402b1
+int attr lineHeight 0x7f0402b2
+int attr lineSpacing 0x7f0402b3
+int attr linearProgressIndicatorStyle 0x7f0402b4
+int attr listChoiceBackgroundIndicator 0x7f0402b5
+int attr listChoiceIndicatorMultipleAnimated 0x7f0402b6
+int attr listChoiceIndicatorSingleAnimated 0x7f0402b7
+int attr listDividerAlertDialog 0x7f0402b8
+int attr listItemLayout 0x7f0402b9
+int attr listLayout 0x7f0402ba
+int attr listMenuViewStyle 0x7f0402bb
+int attr listPopupWindowStyle 0x7f0402bc
+int attr listPreferredItemHeight 0x7f0402bd
+int attr listPreferredItemHeightLarge 0x7f0402be
+int attr listPreferredItemHeightSmall 0x7f0402bf
+int attr listPreferredItemPaddingEnd 0x7f0402c0
+int attr listPreferredItemPaddingLeft 0x7f0402c1
+int attr listPreferredItemPaddingRight 0x7f0402c2
+int attr listPreferredItemPaddingStart 0x7f0402c3
+int attr logo 0x7f0402c4
+int attr logoAdjustViewBounds 0x7f0402c5
+int attr logoDescription 0x7f0402c6
+int attr logoScaleType 0x7f0402c7
+int attr marginHorizontal 0x7f0402c8
+int attr marginLeftSystemWindowInsets 0x7f0402c9
+int attr marginRightSystemWindowInsets 0x7f0402ca
+int attr marginTopSystemWindowInsets 0x7f0402cb
+int attr materialAlertDialogBodyTextStyle 0x7f0402cc
+int attr materialAlertDialogButtonSpacerVisibility 0x7f0402cd
+int attr materialAlertDialogTheme 0x7f0402ce
+int attr materialAlertDialogTitleIconStyle 0x7f0402cf
+int attr materialAlertDialogTitlePanelStyle 0x7f0402d0
+int attr materialAlertDialogTitleTextStyle 0x7f0402d1
+int attr materialButtonOutlinedStyle 0x7f0402d2
+int attr materialButtonStyle 0x7f0402d3
+int attr materialButtonToggleGroupStyle 0x7f0402d4
+int attr materialCalendarDay 0x7f0402d5
+int attr materialCalendarDayOfWeekLabel 0x7f0402d6
+int attr materialCalendarFullscreenTheme 0x7f0402d7
+int attr materialCalendarHeaderCancelButton 0x7f0402d8
+int attr materialCalendarHeaderConfirmButton 0x7f0402d9
+int attr materialCalendarHeaderDivider 0x7f0402da
+int attr materialCalendarHeaderLayout 0x7f0402db
+int attr materialCalendarHeaderSelection 0x7f0402dc
+int attr materialCalendarHeaderTitle 0x7f0402dd
+int attr materialCalendarHeaderToggleButton 0x7f0402de
+int attr materialCalendarMonth 0x7f0402df
+int attr materialCalendarMonthNavigationButton 0x7f0402e0
+int attr materialCalendarStyle 0x7f0402e1
+int attr materialCalendarTheme 0x7f0402e2
+int attr materialCalendarYearNavigationButton 0x7f0402e3
+int attr materialCardViewElevatedStyle 0x7f0402e4
+int attr materialCardViewFilledStyle 0x7f0402e5
+int attr materialCardViewOutlinedStyle 0x7f0402e6
+int attr materialCardViewStyle 0x7f0402e7
+int attr materialCircleRadius 0x7f0402e8
+int attr materialClockStyle 0x7f0402e9
+int attr materialDisplayDividerStyle 0x7f0402ea
+int attr materialDividerHeavyStyle 0x7f0402eb
+int attr materialDividerStyle 0x7f0402ec
+int attr materialIconButtonFilledStyle 0x7f0402ed
+int attr materialIconButtonFilledTonalStyle 0x7f0402ee
+int attr materialIconButtonOutlinedStyle 0x7f0402ef
+int attr materialIconButtonStyle 0x7f0402f0
+int attr materialSearchBarStyle 0x7f0402f1
+int attr materialSearchViewPrefixStyle 0x7f0402f2
+int attr materialSearchViewStyle 0x7f0402f3
+int attr materialSearchViewToolbarHeight 0x7f0402f4
+int attr materialSearchViewToolbarStyle 0x7f0402f5
+int attr materialSwitchStyle 0x7f0402f6
+int attr materialThemeOverlay 0x7f0402f7
+int attr materialTimePickerStyle 0x7f0402f8
+int attr materialTimePickerTheme 0x7f0402f9
+int attr materialTimePickerTitleStyle 0x7f0402fa
+int attr maxAcceleration 0x7f0402fb
+int attr maxActionInlineWidth 0x7f0402fc
+int attr maxButtonHeight 0x7f0402fd
+int attr maxCharacterCount 0x7f0402fe
+int attr maxHeight 0x7f0402ff
+int attr maxImageSize 0x7f040300
+int attr maxLines 0x7f040301
+int attr maxNumber 0x7f040302
+int attr maxVelocity 0x7f040303
+int attr maxWidth 0x7f040304
+int attr measureWithLargestChild 0x7f040305
+int attr menu 0x7f040306
+int attr menuAlignmentMode 0x7f040307
+int attr menuGravity 0x7f040308
+int attr min 0x7f040309
+int attr minHeight 0x7f04030a
+int attr minHideDelay 0x7f04030b
+int attr minSeparation 0x7f04030c
+int attr minTouchTargetSize 0x7f04030d
+int attr minWidth 0x7f04030e
+int attr mock_diagonalsColor 0x7f04030f
+int attr mock_label 0x7f040310
+int attr mock_labelBackgroundColor 0x7f040311
+int attr mock_labelColor 0x7f040312
+int attr mock_showDiagonals 0x7f040313
+int attr mock_showLabel 0x7f040314
+int attr motionDebug 0x7f040315
+int attr motionDurationExtraLong1 0x7f040316
+int attr motionDurationExtraLong2 0x7f040317
+int attr motionDurationExtraLong3 0x7f040318
+int attr motionDurationExtraLong4 0x7f040319
+int attr motionDurationLong1 0x7f04031a
+int attr motionDurationLong2 0x7f04031b
+int attr motionDurationLong3 0x7f04031c
+int attr motionDurationLong4 0x7f04031d
+int attr motionDurationMedium1 0x7f04031e
+int attr motionDurationMedium2 0x7f04031f
+int attr motionDurationMedium3 0x7f040320
+int attr motionDurationMedium4 0x7f040321
+int attr motionDurationShort1 0x7f040322
+int attr motionDurationShort2 0x7f040323
+int attr motionDurationShort3 0x7f040324
+int attr motionDurationShort4 0x7f040325
+int attr motionEasingAccelerated 0x7f040326
+int attr motionEasingDecelerated 0x7f040327
+int attr motionEasingEmphasized 0x7f040328
+int attr motionEasingEmphasizedAccelerateInterpolator 0x7f040329
+int attr motionEasingEmphasizedDecelerateInterpolator 0x7f04032a
+int attr motionEasingEmphasizedInterpolator 0x7f04032b
+int attr motionEasingLinear 0x7f04032c
+int attr motionEasingLinearInterpolator 0x7f04032d
+int attr motionEasingStandard 0x7f04032e
+int attr motionEasingStandardAccelerateInterpolator 0x7f04032f
+int attr motionEasingStandardDecelerateInterpolator 0x7f040330
+int attr motionEasingStandardInterpolator 0x7f040331
+int attr motionInterpolator 0x7f040332
+int attr motionPath 0x7f040333
+int attr motionPathRotate 0x7f040334
+int attr motionProgress 0x7f040335
+int attr motionStagger 0x7f040336
+int attr motionTarget 0x7f040337
+int attr motion_postLayoutCollision 0x7f040338
+int attr motion_triggerOnCollision 0x7f040339
+int attr moveWhenScrollAtTop 0x7f04033a
+int attr multiChoiceItemLayout 0x7f04033b
+int attr navigationContentDescription 0x7f04033c
+int attr navigationIcon 0x7f04033d
+int attr navigationIconTint 0x7f04033e
+int attr navigationMode 0x7f04033f
+int attr navigationRailStyle 0x7f040340
+int attr navigationViewStyle 0x7f040341
+int attr negativeButtonText 0x7f040342
+int attr nestedScrollFlags 0x7f040343
+int attr nestedScrollViewStyle 0x7f040344
+int attr nestedScrollable 0x7f040345
+int attr number 0x7f040346
+int attr numericModifiers 0x7f040347
+int attr offsetAlignmentMode 0x7f040348
+int attr onCross 0x7f040349
+int attr onHide 0x7f04034a
+int attr onNegativeCross 0x7f04034b
+int attr onPositiveCross 0x7f04034c
+int attr onShow 0x7f04034d
+int attr onTouchUp 0x7f04034e
+int attr order 0x7f04034f
+int attr orderingFromXml 0x7f040350
+int attr overlapAnchor 0x7f040351
+int attr overlay 0x7f040352
+int attr paddingBottomNoButtons 0x7f040353
+int attr paddingBottomSystemWindowInsets 0x7f040354
+int attr paddingEnd 0x7f040355
+int attr paddingLeftSystemWindowInsets 0x7f040356
+int attr paddingRightSystemWindowInsets 0x7f040357
+int attr paddingStart 0x7f040358
+int attr paddingStartSystemWindowInsets 0x7f040359
+int attr paddingTopNoTitle 0x7f04035a
+int attr paddingTopSystemWindowInsets 0x7f04035b
+int attr panelBackground 0x7f04035c
+int attr panelMenuListTheme 0x7f04035d
+int attr panelMenuListWidth 0x7f04035e
+int attr passwordToggleContentDescription 0x7f04035f
+int attr passwordToggleDrawable 0x7f040360
+int attr passwordToggleEnabled 0x7f040361
+int attr passwordToggleTint 0x7f040362
+int attr passwordToggleTintMode 0x7f040363
+int attr pathMotionArc 0x7f040364
+int attr path_percent 0x7f040365
+int attr percentHeight 0x7f040366
+int attr percentWidth 0x7f040367
+int attr percentX 0x7f040368
+int attr percentY 0x7f040369
+int attr perpendicularPath_percent 0x7f04036a
+int attr persistent 0x7f04036b
+int attr pivotAnchor 0x7f04036c
+int attr placeholderActivityName 0x7f04036d
+int attr placeholderText 0x7f04036e
+int attr placeholderTextAppearance 0x7f04036f
+int attr placeholderTextColor 0x7f040370
+int attr placeholder_emptyVisibility 0x7f040371
+int attr popupMenuBackground 0x7f040372
+int attr popupMenuStyle 0x7f040373
+int attr popupTheme 0x7f040374
+int attr popupWindowStyle 0x7f040375
+int attr positiveButtonText 0x7f040376
+int attr pref_dialogElevation 0x7f040377
+int attr pref_dialogItemPadding 0x7f040378
+int attr pref_dialogMarginHorizontal 0x7f040379
+int attr pref_dialogMarginVertical 0x7f04037a
+int attr pref_dialogMaxWidth 0x7f04037b
+int attr pref_listElevation 0x7f04037c
+int attr pref_listItemPadding 0x7f04037d
+int attr pref_listMarginHorizontal 0x7f04037e
+int attr pref_listMarginVertical 0x7f04037f
+int attr pref_maxUnits 0x7f040380
+int attr pref_popupStyle 0x7f040381
+int attr pref_unit 0x7f040382
+int attr preferenceCategoryStyle 0x7f040383
+int attr preferenceCategoryTitleTextAppearance 0x7f040384
+int attr preferenceCategoryTitleTextColor 0x7f040385
+int attr preferenceFragmentCompatStyle 0x7f040386
+int attr preferenceFragmentListStyle 0x7f040387
+int attr preferenceFragmentStyle 0x7f040388
+int attr preferenceInformationStyle 0x7f040389
+int attr preferenceScreenStyle 0x7f04038a
+int attr preferenceStyle 0x7f04038b
+int attr preferenceTheme 0x7f04038c
+int attr prefixText 0x7f04038d
+int attr prefixTextAppearance 0x7f04038e
+int attr prefixTextColor 0x7f04038f
+int attr preserveIconSpacing 0x7f040390
+int attr pressedTranslationZ 0x7f040391
+int attr primaryActivityName 0x7f040392
+int attr progressBarPadding 0x7f040393
+int attr progressBarStyle 0x7f040394
+int attr queryBackground 0x7f040395
+int attr queryHint 0x7f040396
+int attr queryPatterns 0x7f040397
+int attr radioButtonStyle 0x7f040398
+int attr rangeFillColor 0x7f040399
+int attr ratingBarStyle 0x7f04039a
+int attr ratingBarStyleIndicator 0x7f04039b
+int attr ratingBarStyleSmall 0x7f04039c
+int attr recyclerViewStyle 0x7f04039d
+int attr region_heightLessThan 0x7f04039e
+int attr region_heightMoreThan 0x7f04039f
+int attr region_widthLessThan 0x7f0403a0
+int attr region_widthMoreThan 0x7f0403a1
+int attr removeEmbeddedFabElevation 0x7f0403a2
+int attr reverseLayout 0x7f0403a3
+int attr rippleColor 0x7f0403a4
+int attr round 0x7f0403a5
+int attr roundPercent 0x7f0403a6
+int attr saturation 0x7f0403a7
+int attr scopeUris 0x7f0403a8
+int attr scrimAnimationDuration 0x7f0403a9
+int attr scrimBackground 0x7f0403aa
+int attr scrimVisibleHeightTrigger 0x7f0403ab
+int attr searchHintIcon 0x7f0403ac
+int attr searchIcon 0x7f0403ad
+int attr searchPrefixText 0x7f0403ae
+int attr searchViewStyle 0x7f0403af
+int attr secondaryActivityAction 0x7f0403b0
+int attr secondaryActivityName 0x7f0403b1
+int attr seekBarIncrement 0x7f0403b2
+int attr seekBarPreferenceStyle 0x7f0403b3
+int attr seekBarStyle 0x7f0403b4
+int attr selectable 0x7f0403b5
+int attr selectableItemBackground 0x7f0403b6
+int attr selectableItemBackgroundBorderless 0x7f0403b7
+int attr selectionRequired 0x7f0403b8
+int attr selectorSize 0x7f0403b9
+int attr shapeAppearance 0x7f0403ba
+int attr shapeAppearanceCornerExtraLarge 0x7f0403bb
+int attr shapeAppearanceCornerExtraSmall 0x7f0403bc
+int attr shapeAppearanceCornerLarge 0x7f0403bd
+int attr shapeAppearanceCornerMedium 0x7f0403be
+int attr shapeAppearanceCornerSmall 0x7f0403bf
+int attr shapeAppearanceLargeComponent 0x7f0403c0
+int attr shapeAppearanceMediumComponent 0x7f0403c1
+int attr shapeAppearanceOverlay 0x7f0403c2
+int attr shapeAppearanceSmallComponent 0x7f0403c3
+int attr shapeCornerFamily 0x7f0403c4
+int attr shortcutMatchRequired 0x7f0403c5
+int attr shouldDisableView 0x7f0403c6
+int attr shouldRemoveExpandedCorners 0x7f0403c7
+int attr showAnimationBehavior 0x7f0403c8
+int attr showAsAction 0x7f0403c9
+int attr showDelay 0x7f0403ca
+int attr showDividers 0x7f0403cb
+int attr showMotionSpec 0x7f0403cc
+int attr showPaths 0x7f0403cd
+int attr showSeekBarValue 0x7f0403ce
+int attr showText 0x7f0403cf
+int attr showTitle 0x7f0403d0
+int attr shrinkMotionSpec 0x7f0403d1
+int attr sideSheetDialogTheme 0x7f0403d2
+int attr sideSheetModalStyle 0x7f0403d3
+int attr simpleItemLayout 0x7f0403d4
+int attr simpleItemSelectedColor 0x7f0403d5
+int attr simpleItemSelectedRippleColor 0x7f0403d6
+int attr simpleItems 0x7f0403d7
+int attr simpleMenuPreferenceStyle 0x7f0403d8
+int attr singleChoiceItemLayout 0x7f0403d9
+int attr singleLine 0x7f0403da
+int attr singleLineTitle 0x7f0403db
+int attr singleSelection 0x7f0403dc
+int attr sizePercent 0x7f0403dd
+int attr sliderStyle 0x7f0403de
+int attr snackbarButtonStyle 0x7f0403df
+int attr snackbarStyle 0x7f0403e0
+int attr snackbarTextViewStyle 0x7f0403e1
+int attr spanCount 0x7f0403e2
+int attr spinBars 0x7f0403e3
+int attr spinnerDropDownItemStyle 0x7f0403e4
+int attr spinnerStyle 0x7f0403e5
+int attr splitLayoutDirection 0x7f0403e6
+int attr splitMinSmallestWidth 0x7f0403e7
+int attr splitMinWidth 0x7f0403e8
+int attr splitRatio 0x7f0403e9
+int attr splitTrack 0x7f0403ea
+int attr srcCompat 0x7f0403eb
+int attr stackFromEnd 0x7f0403ec
+int attr staggered 0x7f0403ed
+int attr startIconCheckable 0x7f0403ee
+int attr startIconContentDescription 0x7f0403ef
+int attr startIconDrawable 0x7f0403f0
+int attr startIconMinSize 0x7f0403f1
+int attr startIconScaleType 0x7f0403f2
+int attr startIconTint 0x7f0403f3
+int attr startIconTintMode 0x7f0403f4
+int attr state_above_anchor 0x7f0403f5
+int attr state_collapsed 0x7f0403f6
+int attr state_collapsible 0x7f0403f7
+int attr state_dragged 0x7f0403f8
+int attr state_error 0x7f0403f9
+int attr state_indeterminate 0x7f0403fa
+int attr state_liftable 0x7f0403fb
+int attr state_lifted 0x7f0403fc
+int attr state_with_icon 0x7f0403fd
+int attr statusBarBackground 0x7f0403fe
+int attr statusBarForeground 0x7f0403ff
+int attr statusBarScrim 0x7f040400
+int attr strokeColor 0x7f040401
+int attr strokeWidth 0x7f040402
+int attr subMenuArrow 0x7f040403
+int attr subheaderColor 0x7f040404
+int attr subheaderInsetEnd 0x7f040405
+int attr subheaderInsetStart 0x7f040406
+int attr subheaderTextAppearance 0x7f040407
+int attr submitBackground 0x7f040408
+int attr subtitle 0x7f040409
+int attr subtitleCentered 0x7f04040a
+int attr subtitleTextAppearance 0x7f04040b
+int attr subtitleTextColor 0x7f04040c
+int attr subtitleTextStyle 0x7f04040d
+int attr suffixText 0x7f04040e
+int attr suffixTextAppearance 0x7f04040f
+int attr suffixTextColor 0x7f040410
+int attr suggestionRowLayout 0x7f040411
+int attr summary 0x7f040412
+int attr summaryOff 0x7f040413
+int attr summaryOn 0x7f040414
+int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x7f040415
+int attr switchMinWidth 0x7f040416
+int attr switchPadding 0x7f040417
+int attr switchPreferenceCompatStyle 0x7f040418
+int attr switchPreferenceStyle 0x7f040419
+int attr switchStyle 0x7f04041a
+int attr switchTextAppearance 0x7f04041b
+int attr switchTextOff 0x7f04041c
+int attr switchTextOn 0x7f04041d
+int attr tabBackground 0x7f04041e
+int attr tabContentStart 0x7f04041f
+int attr tabGravity 0x7f040420
+int attr tabIconTint 0x7f040421
+int attr tabIconTintMode 0x7f040422
+int attr tabIndicator 0x7f040423
+int attr tabIndicatorAnimationDuration 0x7f040424
+int attr tabIndicatorAnimationMode 0x7f040425
+int attr tabIndicatorColor 0x7f040426
+int attr tabIndicatorFullWidth 0x7f040427
+int attr tabIndicatorGravity 0x7f040428
+int attr tabIndicatorHeight 0x7f040429
+int attr tabInlineLabel 0x7f04042a
+int attr tabMaxWidth 0x7f04042b
+int attr tabMinWidth 0x7f04042c
+int attr tabMode 0x7f04042d
+int attr tabPadding 0x7f04042e
+int attr tabPaddingBottom 0x7f04042f
+int attr tabPaddingEnd 0x7f040430
+int attr tabPaddingStart 0x7f040431
+int attr tabPaddingTop 0x7f040432
+int attr tabRippleColor 0x7f040433
+int attr tabSecondaryStyle 0x7f040434
+int attr tabSelectedTextAppearance 0x7f040435
+int attr tabSelectedTextColor 0x7f040436
+int attr tabStyle 0x7f040437
+int attr tabTextAppearance 0x7f040438
+int attr tabTextColor 0x7f040439
+int attr tabUnboundedRipple 0x7f04043a
+int attr targetId 0x7f04043b
+int attr telltales_tailColor 0x7f04043c
+int attr telltales_tailScale 0x7f04043d
+int attr telltales_velocityMode 0x7f04043e
+int attr textAllCaps 0x7f04043f
+int attr textAppearanceBody1 0x7f040440
+int attr textAppearanceBody2 0x7f040441
+int attr textAppearanceBodyLarge 0x7f040442
+int attr textAppearanceBodyMedium 0x7f040443
+int attr textAppearanceBodySmall 0x7f040444
+int attr textAppearanceButton 0x7f040445
+int attr textAppearanceCaption 0x7f040446
+int attr textAppearanceDisplayLarge 0x7f040447
+int attr textAppearanceDisplayMedium 0x7f040448
+int attr textAppearanceDisplaySmall 0x7f040449
+int attr textAppearanceHeadline1 0x7f04044a
+int attr textAppearanceHeadline2 0x7f04044b
+int attr textAppearanceHeadline3 0x7f04044c
+int attr textAppearanceHeadline4 0x7f04044d
+int attr textAppearanceHeadline5 0x7f04044e
+int attr textAppearanceHeadline6 0x7f04044f
+int attr textAppearanceHeadlineLarge 0x7f040450
+int attr textAppearanceHeadlineMedium 0x7f040451
+int attr textAppearanceHeadlineSmall 0x7f040452
+int attr textAppearanceLabelLarge 0x7f040453
+int attr textAppearanceLabelMedium 0x7f040454
+int attr textAppearanceLabelSmall 0x7f040455
+int attr textAppearanceLargePopupMenu 0x7f040456
+int attr textAppearanceLineHeightEnabled 0x7f040457
+int attr textAppearanceListItem 0x7f040458
+int attr textAppearanceListItemSecondary 0x7f040459
+int attr textAppearanceListItemSmall 0x7f04045a
+int attr textAppearanceOverline 0x7f04045b
+int attr textAppearancePopupMenuHeader 0x7f04045c
+int attr textAppearanceSearchResultSubtitle 0x7f04045d
+int attr textAppearanceSearchResultTitle 0x7f04045e
+int attr textAppearanceSmallPopupMenu 0x7f04045f
+int attr textAppearanceSubtitle1 0x7f040460
+int attr textAppearanceSubtitle2 0x7f040461
+int attr textAppearanceTitleLarge 0x7f040462
+int attr textAppearanceTitleMedium 0x7f040463
+int attr textAppearanceTitleSmall 0x7f040464
+int attr textColorAlertDialogListItem 0x7f040465
+int attr textColorSearchUrl 0x7f040466
+int attr textEndPadding 0x7f040467
+int attr textInputFilledDenseStyle 0x7f040468
+int attr textInputFilledExposedDropdownMenuStyle 0x7f040469
+int attr textInputFilledStyle 0x7f04046a
+int attr textInputLayoutFocusedRectEnabled 0x7f04046b
+int attr textInputOutlinedDenseStyle 0x7f04046c
+int attr textInputOutlinedExposedDropdownMenuStyle 0x7f04046d
+int attr textInputOutlinedStyle 0x7f04046e
+int attr textInputStyle 0x7f04046f
+int attr textLocale 0x7f040470
+int attr textStartPadding 0x7f040471
+int attr theme 0x7f040472
+int attr thickness 0x7f040473
+int attr thumbColor 0x7f040474
+int attr thumbElevation 0x7f040475
+int attr thumbIcon 0x7f040476
+int attr thumbIconSize 0x7f040477
+int attr thumbIconTint 0x7f040478
+int attr thumbIconTintMode 0x7f040479
+int attr thumbRadius 0x7f04047a
+int attr thumbStrokeColor 0x7f04047b
+int attr thumbStrokeWidth 0x7f04047c
+int attr thumbTextPadding 0x7f04047d
+int attr thumbTint 0x7f04047e
+int attr thumbTintMode 0x7f04047f
+int attr tickColor 0x7f040480
+int attr tickColorActive 0x7f040481
+int attr tickColorInactive 0x7f040482
+int attr tickMark 0x7f040483
+int attr tickMarkTint 0x7f040484
+int attr tickMarkTintMode 0x7f040485
+int attr tickRadiusActive 0x7f040486
+int attr tickRadiusInactive 0x7f040487
+int attr tickVisible 0x7f040488
+int attr tint 0x7f040489
+int attr tintMode 0x7f04048a
+int attr tintNavigationIcon 0x7f04048b
+int attr title 0x7f04048c
+int attr titleCentered 0x7f04048d
+int attr titleCollapseMode 0x7f04048e
+int attr titleEnabled 0x7f04048f
+int attr titleMargin 0x7f040490
+int attr titleMarginBottom 0x7f040491
+int attr titleMarginEnd 0x7f040492
+int attr titleMarginStart 0x7f040493
+int attr titleMarginTop 0x7f040494
+int attr titleMargins 0x7f040495
+int attr titlePositionInterpolator 0x7f040496
+int attr titleTextAppearance 0x7f040497
+int attr titleTextColor 0x7f040498
+int attr titleTextEllipsize 0x7f040499
+int attr titleTextStyle 0x7f04049a
+int attr toggleCheckedStateOnClick 0x7f04049b
+int attr toolbarId 0x7f04049c
+int attr toolbarNavigationButtonStyle 0x7f04049d
+int attr toolbarStyle 0x7f04049e
+int attr toolbarSurfaceStyle 0x7f04049f
+int attr tooltipForegroundColor 0x7f0404a0
+int attr tooltipFrameBackground 0x7f0404a1
+int attr tooltipStyle 0x7f0404a2
+int attr tooltipText 0x7f0404a3
+int attr topInsetScrimEnabled 0x7f0404a4
+int attr touchAnchorId 0x7f0404a5
+int attr touchAnchorSide 0x7f0404a6
+int attr touchRegionId 0x7f0404a7
+int attr track 0x7f0404a8
+int attr trackColor 0x7f0404a9
+int attr trackColorActive 0x7f0404aa
+int attr trackColorInactive 0x7f0404ab
+int attr trackCornerRadius 0x7f0404ac
+int attr trackDecoration 0x7f0404ad
+int attr trackDecorationTint 0x7f0404ae
+int attr trackDecorationTintMode 0x7f0404af
+int attr trackHeight 0x7f0404b0
+int attr trackThickness 0x7f0404b1
+int attr trackTint 0x7f0404b2
+int attr trackTintMode 0x7f0404b3
+int attr transitionDisable 0x7f0404b4
+int attr transitionEasing 0x7f0404b5
+int attr transitionFlags 0x7f0404b6
+int attr transitionPathRotate 0x7f0404b7
+int attr transitionShapeAppearance 0x7f0404b8
+int attr triggerId 0x7f0404b9
+int attr triggerReceiver 0x7f0404ba
+int attr triggerSlack 0x7f0404bb
+int attr ttcIndex 0x7f0404bc
+int attr updatesContinuously 0x7f0404bd
+int attr useCompatPadding 0x7f0404be
+int attr useDrawerArrowDrawable 0x7f0404bf
+int attr useMaterialThemeColors 0x7f0404c0
+int attr useSimpleSummaryProvider 0x7f0404c1
+int attr values 0x7f0404c2
+int attr verticalOffset 0x7f0404c3
+int attr verticalOffsetWithText 0x7f0404c4
+int attr viewInflaterClass 0x7f0404c5
+int attr visibilityMode 0x7f0404c6
+int attr voiceIcon 0x7f0404c7
+int attr warmth 0x7f0404c8
+int attr waveDecay 0x7f0404c9
+int attr waveOffset 0x7f0404ca
+int attr wavePeriod 0x7f0404cb
+int attr waveShape 0x7f0404cc
+int attr waveVariesBy 0x7f0404cd
+int attr widgetLayout 0x7f0404ce
+int attr windowActionBar 0x7f0404cf
+int attr windowActionBarOverlay 0x7f0404d0
+int attr windowActionModeOverlay 0x7f0404d1
+int attr windowFixedHeightMajor 0x7f0404d2
+int attr windowFixedHeightMinor 0x7f0404d3
+int attr windowFixedWidthMajor 0x7f0404d4
+int attr windowFixedWidthMinor 0x7f0404d5
+int attr windowMinWidthMajor 0x7f0404d6
+int attr windowMinWidthMinor 0x7f0404d7
+int attr windowNoTitle 0x7f0404d8
+int attr yearSelectedStyle 0x7f0404d9
+int attr yearStyle 0x7f0404da
+int attr yearTodayStyle 0x7f0404db
+int bool abc_action_bar_embed_tabs 0x7f050000
+int bool abc_config_actionMenuItemAllCaps 0x7f050001
+int bool api_ge_30 0x7f050002
+int bool config_materialPreferenceIconSpaceReserved 0x7f050003
+int bool is_day 0x7f050004
+int bool mtrl_btn_textappearance_all_caps 0x7f050005
+int color abc_background_cache_hint_selector_material_dark 0x7f060000
+int color abc_background_cache_hint_selector_material_light 0x7f060001
+int color abc_btn_colored_borderless_text_material 0x7f060002
+int color abc_btn_colored_text_material 0x7f060003
+int color abc_color_highlight_material 0x7f060004
+int color abc_decor_view_status_guard 0x7f060005
+int color abc_decor_view_status_guard_light 0x7f060006
+int color abc_hint_foreground_material_dark 0x7f060007
+int color abc_hint_foreground_material_light 0x7f060008
+int color abc_primary_text_disable_only_material_dark 0x7f060009
+int color abc_primary_text_disable_only_material_light 0x7f06000a
+int color abc_primary_text_material_dark 0x7f06000b
+int color abc_primary_text_material_light 0x7f06000c
+int color abc_search_url_text 0x7f06000d
+int color abc_search_url_text_normal 0x7f06000e
+int color abc_search_url_text_pressed 0x7f06000f
+int color abc_search_url_text_selected 0x7f060010
+int color abc_secondary_text_material_dark 0x7f060011
+int color abc_secondary_text_material_light 0x7f060012
+int color abc_tint_btn_checkable 0x7f060013
+int color abc_tint_default 0x7f060014
+int color abc_tint_edittext 0x7f060015
+int color abc_tint_seek_thumb 0x7f060016
+int color abc_tint_spinner 0x7f060017
+int color abc_tint_switch_track 0x7f060018
+int color accent_material_dark 0x7f060019
+int color accent_material_light 0x7f06001a
+int color androidx_core_ripple_material_light 0x7f06001b
+int color androidx_core_secondary_text_default_material_light 0x7f06001c
+int color background_floating_material_dark 0x7f06001d
+int color background_floating_material_light 0x7f06001e
+int color background_material_dark 0x7f06001f
+int color background_material_light 0x7f060020
+int color bright_foreground_disabled_material_dark 0x7f060021
+int color bright_foreground_disabled_material_light 0x7f060022
+int color bright_foreground_inverse_material_dark 0x7f060023
+int color bright_foreground_inverse_material_light 0x7f060024
+int color bright_foreground_material_dark 0x7f060025
+int color bright_foreground_material_light 0x7f060026
+int color browser_actions_bg_grey 0x7f060027
+int color browser_actions_divider_color 0x7f060028
+int color browser_actions_text_color 0x7f060029
+int color browser_actions_title_color 0x7f06002a
+int color button_material_dark 0x7f06002b
+int color button_material_light 0x7f06002c
+int color call_notification_answer_color 0x7f06002d
+int color call_notification_decline_color 0x7f06002e
+int color cardview_dark_background 0x7f06002f
+int color cardview_light_background 0x7f060030
+int color cardview_shadow_end_color 0x7f060031
+int color cardview_shadow_start_color 0x7f060032
+int color colorPrimary 0x7f060033
+int color colorPrimaryDark 0x7f060034
+int color colorSecondary 0x7f060035
+int color common_google_signin_btn_text_dark 0x7f060036
+int color common_google_signin_btn_text_dark_default 0x7f060037
+int color common_google_signin_btn_text_dark_disabled 0x7f060038
+int color common_google_signin_btn_text_dark_focused 0x7f060039
+int color common_google_signin_btn_text_dark_pressed 0x7f06003a
+int color common_google_signin_btn_text_light 0x7f06003b
+int color common_google_signin_btn_text_light_default 0x7f06003c
+int color common_google_signin_btn_text_light_disabled 0x7f06003d
+int color common_google_signin_btn_text_light_focused 0x7f06003e
+int color common_google_signin_btn_text_light_pressed 0x7f06003f
+int color common_google_signin_btn_tint 0x7f060040
+int color dark_colorPrimary 0x7f060041
+int color design_bottom_navigation_shadow_color 0x7f060042
+int color design_box_stroke_color 0x7f060043
+int color design_dark_default_color_background 0x7f060044
+int color design_dark_default_color_error 0x7f060045
+int color design_dark_default_color_on_background 0x7f060046
+int color design_dark_default_color_on_error 0x7f060047
+int color design_dark_default_color_on_primary 0x7f060048
+int color design_dark_default_color_on_secondary 0x7f060049
+int color design_dark_default_color_on_surface 0x7f06004a
+int color design_dark_default_color_primary 0x7f06004b
+int color design_dark_default_color_primary_dark 0x7f06004c
+int color design_dark_default_color_primary_variant 0x7f06004d
+int color design_dark_default_color_secondary 0x7f06004e
+int color design_dark_default_color_secondary_variant 0x7f06004f
+int color design_dark_default_color_surface 0x7f060050
+int color design_default_color_background 0x7f060051
+int color design_default_color_error 0x7f060052
+int color design_default_color_on_background 0x7f060053
+int color design_default_color_on_error 0x7f060054
+int color design_default_color_on_primary 0x7f060055
+int color design_default_color_on_secondary 0x7f060056
+int color design_default_color_on_surface 0x7f060057
+int color design_default_color_primary 0x7f060058
+int color design_default_color_primary_dark 0x7f060059
+int color design_default_color_primary_variant 0x7f06005a
+int color design_default_color_secondary 0x7f06005b
+int color design_default_color_secondary_variant 0x7f06005c
+int color design_default_color_surface 0x7f06005d
+int color design_error 0x7f06005e
+int color design_fab_shadow_end_color 0x7f06005f
+int color design_fab_shadow_mid_color 0x7f060060
+int color design_fab_shadow_start_color 0x7f060061
+int color design_fab_stroke_end_inner_color 0x7f060062
+int color design_fab_stroke_end_outer_color 0x7f060063
+int color design_fab_stroke_top_inner_color 0x7f060064
+int color design_fab_stroke_top_outer_color 0x7f060065
+int color design_icon_tint 0x7f060066
+int color design_snackbar_background_color 0x7f060067
+int color dim_foreground_disabled_material_dark 0x7f060068
+int color dim_foreground_disabled_material_light 0x7f060069
+int color dim_foreground_material_dark 0x7f06006a
+int color dim_foreground_material_light 0x7f06006b
+int color error_color_material_dark 0x7f06006c
+int color error_color_material_light 0x7f06006d
+int color foreground_material_dark 0x7f06006e
+int color foreground_material_light 0x7f06006f
+int color highlighted_text_material_dark 0x7f060070
+int color highlighted_text_material_light 0x7f060071
+int color light_colorPrimary 0x7f060072
+int color m3_appbar_overlay_color 0x7f060073
+int color m3_assist_chip_icon_tint_color 0x7f060074
+int color m3_assist_chip_stroke_color 0x7f060075
+int color m3_bottom_sheet_drag_handle_color 0x7f060076
+int color m3_button_background_color_selector 0x7f060077
+int color m3_button_foreground_color_selector 0x7f060078
+int color m3_button_outline_color_selector 0x7f060079
+int color m3_button_ripple_color 0x7f06007a
+int color m3_button_ripple_color_selector 0x7f06007b
+int color m3_calendar_item_disabled_text 0x7f06007c
+int color m3_calendar_item_stroke_color 0x7f06007d
+int color m3_card_foreground_color 0x7f06007e
+int color m3_card_ripple_color 0x7f06007f
+int color m3_card_stroke_color 0x7f060080
+int color m3_checkbox_button_icon_tint 0x7f060081
+int color m3_checkbox_button_tint 0x7f060082
+int color m3_chip_assist_text_color 0x7f060083
+int color m3_chip_background_color 0x7f060084
+int color m3_chip_ripple_color 0x7f060085
+int color m3_chip_stroke_color 0x7f060086
+int color m3_chip_text_color 0x7f060087
+int color m3_dark_default_color_primary_text 0x7f060088
+int color m3_dark_default_color_secondary_text 0x7f060089
+int color m3_dark_highlighted_text 0x7f06008a
+int color m3_dark_hint_foreground 0x7f06008b
+int color m3_dark_primary_text_disable_only 0x7f06008c
+int color m3_default_color_primary_text 0x7f06008d
+int color m3_default_color_secondary_text 0x7f06008e
+int color m3_dynamic_dark_default_color_primary_text 0x7f06008f
+int color m3_dynamic_dark_default_color_secondary_text 0x7f060090
+int color m3_dynamic_dark_highlighted_text 0x7f060091
+int color m3_dynamic_dark_hint_foreground 0x7f060092
+int color m3_dynamic_dark_primary_text_disable_only 0x7f060093
+int color m3_dynamic_default_color_primary_text 0x7f060094
+int color m3_dynamic_default_color_secondary_text 0x7f060095
+int color m3_dynamic_highlighted_text 0x7f060096
+int color m3_dynamic_hint_foreground 0x7f060097
+int color m3_dynamic_primary_text_disable_only 0x7f060098
+int color m3_efab_ripple_color_selector 0x7f060099
+int color m3_elevated_chip_background_color 0x7f06009a
+int color m3_fab_efab_background_color_selector 0x7f06009b
+int color m3_fab_efab_foreground_color_selector 0x7f06009c
+int color m3_fab_ripple_color_selector 0x7f06009d
+int color m3_filled_icon_button_container_color_selector 0x7f06009e
+int color m3_highlighted_text 0x7f06009f
+int color m3_hint_foreground 0x7f0600a0
+int color m3_icon_button_icon_color_selector 0x7f0600a1
+int color m3_navigation_bar_item_with_indicator_icon_tint 0x7f0600a2
+int color m3_navigation_bar_item_with_indicator_label_tint 0x7f0600a3
+int color m3_navigation_bar_ripple_color_selector 0x7f0600a4
+int color m3_navigation_item_background_color 0x7f0600a5
+int color m3_navigation_item_icon_tint 0x7f0600a6
+int color m3_navigation_item_ripple_color 0x7f0600a7
+int color m3_navigation_item_text_color 0x7f0600a8
+int color m3_navigation_rail_item_with_indicator_icon_tint 0x7f0600a9
+int color m3_navigation_rail_item_with_indicator_label_tint 0x7f0600aa
+int color m3_navigation_rail_ripple_color_selector 0x7f0600ab
+int color m3_popupmenu_overlay_color 0x7f0600ac
+int color m3_primary_text_disable_only 0x7f0600ad
+int color m3_radiobutton_button_tint 0x7f0600ae
+int color m3_radiobutton_ripple_tint 0x7f0600af
+int color m3_ref_palette_black 0x7f0600b0
+int color m3_ref_palette_dynamic_neutral0 0x7f0600b1
+int color m3_ref_palette_dynamic_neutral10 0x7f0600b2
+int color m3_ref_palette_dynamic_neutral100 0x7f0600b3
+int color m3_ref_palette_dynamic_neutral12 0x7f0600b4
+int color m3_ref_palette_dynamic_neutral17 0x7f0600b5
+int color m3_ref_palette_dynamic_neutral20 0x7f0600b6
+int color m3_ref_palette_dynamic_neutral22 0x7f0600b7
+int color m3_ref_palette_dynamic_neutral24 0x7f0600b8
+int color m3_ref_palette_dynamic_neutral30 0x7f0600b9
+int color m3_ref_palette_dynamic_neutral4 0x7f0600ba
+int color m3_ref_palette_dynamic_neutral40 0x7f0600bb
+int color m3_ref_palette_dynamic_neutral50 0x7f0600bc
+int color m3_ref_palette_dynamic_neutral6 0x7f0600bd
+int color m3_ref_palette_dynamic_neutral60 0x7f0600be
+int color m3_ref_palette_dynamic_neutral70 0x7f0600bf
+int color m3_ref_palette_dynamic_neutral80 0x7f0600c0
+int color m3_ref_palette_dynamic_neutral87 0x7f0600c1
+int color m3_ref_palette_dynamic_neutral90 0x7f0600c2
+int color m3_ref_palette_dynamic_neutral92 0x7f0600c3
+int color m3_ref_palette_dynamic_neutral94 0x7f0600c4
+int color m3_ref_palette_dynamic_neutral95 0x7f0600c5
+int color m3_ref_palette_dynamic_neutral96 0x7f0600c6
+int color m3_ref_palette_dynamic_neutral98 0x7f0600c7
+int color m3_ref_palette_dynamic_neutral99 0x7f0600c8
+int color m3_ref_palette_dynamic_neutral_variant0 0x7f0600c9
+int color m3_ref_palette_dynamic_neutral_variant10 0x7f0600ca
+int color m3_ref_palette_dynamic_neutral_variant100 0x7f0600cb
+int color m3_ref_palette_dynamic_neutral_variant12 0x7f0600cc
+int color m3_ref_palette_dynamic_neutral_variant17 0x7f0600cd
+int color m3_ref_palette_dynamic_neutral_variant20 0x7f0600ce
+int color m3_ref_palette_dynamic_neutral_variant22 0x7f0600cf
+int color m3_ref_palette_dynamic_neutral_variant24 0x7f0600d0
+int color m3_ref_palette_dynamic_neutral_variant30 0x7f0600d1
+int color m3_ref_palette_dynamic_neutral_variant4 0x7f0600d2
+int color m3_ref_palette_dynamic_neutral_variant40 0x7f0600d3
+int color m3_ref_palette_dynamic_neutral_variant50 0x7f0600d4
+int color m3_ref_palette_dynamic_neutral_variant6 0x7f0600d5
+int color m3_ref_palette_dynamic_neutral_variant60 0x7f0600d6
+int color m3_ref_palette_dynamic_neutral_variant70 0x7f0600d7
+int color m3_ref_palette_dynamic_neutral_variant80 0x7f0600d8
+int color m3_ref_palette_dynamic_neutral_variant87 0x7f0600d9
+int color m3_ref_palette_dynamic_neutral_variant90 0x7f0600da
+int color m3_ref_palette_dynamic_neutral_variant92 0x7f0600db
+int color m3_ref_palette_dynamic_neutral_variant94 0x7f0600dc
+int color m3_ref_palette_dynamic_neutral_variant95 0x7f0600dd
+int color m3_ref_palette_dynamic_neutral_variant96 0x7f0600de
+int color m3_ref_palette_dynamic_neutral_variant98 0x7f0600df
+int color m3_ref_palette_dynamic_neutral_variant99 0x7f0600e0
+int color m3_ref_palette_dynamic_primary0 0x7f0600e1
+int color m3_ref_palette_dynamic_primary10 0x7f0600e2
+int color m3_ref_palette_dynamic_primary100 0x7f0600e3
+int color m3_ref_palette_dynamic_primary20 0x7f0600e4
+int color m3_ref_palette_dynamic_primary30 0x7f0600e5
+int color m3_ref_palette_dynamic_primary40 0x7f0600e6
+int color m3_ref_palette_dynamic_primary50 0x7f0600e7
+int color m3_ref_palette_dynamic_primary60 0x7f0600e8
+int color m3_ref_palette_dynamic_primary70 0x7f0600e9
+int color m3_ref_palette_dynamic_primary80 0x7f0600ea
+int color m3_ref_palette_dynamic_primary90 0x7f0600eb
+int color m3_ref_palette_dynamic_primary95 0x7f0600ec
+int color m3_ref_palette_dynamic_primary99 0x7f0600ed
+int color m3_ref_palette_dynamic_secondary0 0x7f0600ee
+int color m3_ref_palette_dynamic_secondary10 0x7f0600ef
+int color m3_ref_palette_dynamic_secondary100 0x7f0600f0
+int color m3_ref_palette_dynamic_secondary20 0x7f0600f1
+int color m3_ref_palette_dynamic_secondary30 0x7f0600f2
+int color m3_ref_palette_dynamic_secondary40 0x7f0600f3
+int color m3_ref_palette_dynamic_secondary50 0x7f0600f4
+int color m3_ref_palette_dynamic_secondary60 0x7f0600f5
+int color m3_ref_palette_dynamic_secondary70 0x7f0600f6
+int color m3_ref_palette_dynamic_secondary80 0x7f0600f7
+int color m3_ref_palette_dynamic_secondary90 0x7f0600f8
+int color m3_ref_palette_dynamic_secondary95 0x7f0600f9
+int color m3_ref_palette_dynamic_secondary99 0x7f0600fa
+int color m3_ref_palette_dynamic_tertiary0 0x7f0600fb
+int color m3_ref_palette_dynamic_tertiary10 0x7f0600fc
+int color m3_ref_palette_dynamic_tertiary100 0x7f0600fd
+int color m3_ref_palette_dynamic_tertiary20 0x7f0600fe
+int color m3_ref_palette_dynamic_tertiary30 0x7f0600ff
+int color m3_ref_palette_dynamic_tertiary40 0x7f060100
+int color m3_ref_palette_dynamic_tertiary50 0x7f060101
+int color m3_ref_palette_dynamic_tertiary60 0x7f060102
+int color m3_ref_palette_dynamic_tertiary70 0x7f060103
+int color m3_ref_palette_dynamic_tertiary80 0x7f060104
+int color m3_ref_palette_dynamic_tertiary90 0x7f060105
+int color m3_ref_palette_dynamic_tertiary95 0x7f060106
+int color m3_ref_palette_dynamic_tertiary99 0x7f060107
+int color m3_ref_palette_error0 0x7f060108
+int color m3_ref_palette_error10 0x7f060109
+int color m3_ref_palette_error100 0x7f06010a
+int color m3_ref_palette_error20 0x7f06010b
+int color m3_ref_palette_error30 0x7f06010c
+int color m3_ref_palette_error40 0x7f06010d
+int color m3_ref_palette_error50 0x7f06010e
+int color m3_ref_palette_error60 0x7f06010f
+int color m3_ref_palette_error70 0x7f060110
+int color m3_ref_palette_error80 0x7f060111
+int color m3_ref_palette_error90 0x7f060112
+int color m3_ref_palette_error95 0x7f060113
+int color m3_ref_palette_error99 0x7f060114
+int color m3_ref_palette_neutral0 0x7f060115
+int color m3_ref_palette_neutral10 0x7f060116
+int color m3_ref_palette_neutral100 0x7f060117
+int color m3_ref_palette_neutral12 0x7f060118
+int color m3_ref_palette_neutral17 0x7f060119
+int color m3_ref_palette_neutral20 0x7f06011a
+int color m3_ref_palette_neutral22 0x7f06011b
+int color m3_ref_palette_neutral24 0x7f06011c
+int color m3_ref_palette_neutral30 0x7f06011d
+int color m3_ref_palette_neutral4 0x7f06011e
+int color m3_ref_palette_neutral40 0x7f06011f
+int color m3_ref_palette_neutral50 0x7f060120
+int color m3_ref_palette_neutral6 0x7f060121
+int color m3_ref_palette_neutral60 0x7f060122
+int color m3_ref_palette_neutral70 0x7f060123
+int color m3_ref_palette_neutral80 0x7f060124
+int color m3_ref_palette_neutral87 0x7f060125
+int color m3_ref_palette_neutral90 0x7f060126
+int color m3_ref_palette_neutral92 0x7f060127
+int color m3_ref_palette_neutral94 0x7f060128
+int color m3_ref_palette_neutral95 0x7f060129
+int color m3_ref_palette_neutral96 0x7f06012a
+int color m3_ref_palette_neutral98 0x7f06012b
+int color m3_ref_palette_neutral99 0x7f06012c
+int color m3_ref_palette_neutral_variant0 0x7f06012d
+int color m3_ref_palette_neutral_variant10 0x7f06012e
+int color m3_ref_palette_neutral_variant100 0x7f06012f
+int color m3_ref_palette_neutral_variant20 0x7f060130
+int color m3_ref_palette_neutral_variant30 0x7f060131
+int color m3_ref_palette_neutral_variant40 0x7f060132
+int color m3_ref_palette_neutral_variant50 0x7f060133
+int color m3_ref_palette_neutral_variant60 0x7f060134
+int color m3_ref_palette_neutral_variant70 0x7f060135
+int color m3_ref_palette_neutral_variant80 0x7f060136
+int color m3_ref_palette_neutral_variant90 0x7f060137
+int color m3_ref_palette_neutral_variant95 0x7f060138
+int color m3_ref_palette_neutral_variant99 0x7f060139
+int color m3_ref_palette_primary0 0x7f06013a
+int color m3_ref_palette_primary10 0x7f06013b
+int color m3_ref_palette_primary100 0x7f06013c
+int color m3_ref_palette_primary20 0x7f06013d
+int color m3_ref_palette_primary30 0x7f06013e
+int color m3_ref_palette_primary40 0x7f06013f
+int color m3_ref_palette_primary50 0x7f060140
+int color m3_ref_palette_primary60 0x7f060141
+int color m3_ref_palette_primary70 0x7f060142
+int color m3_ref_palette_primary80 0x7f060143
+int color m3_ref_palette_primary90 0x7f060144
+int color m3_ref_palette_primary95 0x7f060145
+int color m3_ref_palette_primary99 0x7f060146
+int color m3_ref_palette_secondary0 0x7f060147
+int color m3_ref_palette_secondary10 0x7f060148
+int color m3_ref_palette_secondary100 0x7f060149
+int color m3_ref_palette_secondary20 0x7f06014a
+int color m3_ref_palette_secondary30 0x7f06014b
+int color m3_ref_palette_secondary40 0x7f06014c
+int color m3_ref_palette_secondary50 0x7f06014d
+int color m3_ref_palette_secondary60 0x7f06014e
+int color m3_ref_palette_secondary70 0x7f06014f
+int color m3_ref_palette_secondary80 0x7f060150
+int color m3_ref_palette_secondary90 0x7f060151
+int color m3_ref_palette_secondary95 0x7f060152
+int color m3_ref_palette_secondary99 0x7f060153
+int color m3_ref_palette_tertiary0 0x7f060154
+int color m3_ref_palette_tertiary10 0x7f060155
+int color m3_ref_palette_tertiary100 0x7f060156
+int color m3_ref_palette_tertiary20 0x7f060157
+int color m3_ref_palette_tertiary30 0x7f060158
+int color m3_ref_palette_tertiary40 0x7f060159
+int color m3_ref_palette_tertiary50 0x7f06015a
+int color m3_ref_palette_tertiary60 0x7f06015b
+int color m3_ref_palette_tertiary70 0x7f06015c
+int color m3_ref_palette_tertiary80 0x7f06015d
+int color m3_ref_palette_tertiary90 0x7f06015e
+int color m3_ref_palette_tertiary95 0x7f06015f
+int color m3_ref_palette_tertiary99 0x7f060160
+int color m3_ref_palette_white 0x7f060161
+int color m3_selection_control_ripple_color_selector 0x7f060162
+int color m3_simple_item_ripple_color 0x7f060163
+int color m3_slider_active_track_color 0x7f060164
+int color m3_slider_halo_color 0x7f060165
+int color m3_slider_inactive_track_color 0x7f060166
+int color m3_slider_thumb_color 0x7f060167
+int color m3_switch_thumb_tint 0x7f060168
+int color m3_switch_track_tint 0x7f060169
+int color m3_sys_color_dark_background 0x7f06016a
+int color m3_sys_color_dark_error 0x7f06016b
+int color m3_sys_color_dark_error_container 0x7f06016c
+int color m3_sys_color_dark_inverse_on_surface 0x7f06016d
+int color m3_sys_color_dark_inverse_primary 0x7f06016e
+int color m3_sys_color_dark_inverse_surface 0x7f06016f
+int color m3_sys_color_dark_on_background 0x7f060170
+int color m3_sys_color_dark_on_error 0x7f060171
+int color m3_sys_color_dark_on_error_container 0x7f060172
+int color m3_sys_color_dark_on_primary 0x7f060173
+int color m3_sys_color_dark_on_primary_container 0x7f060174
+int color m3_sys_color_dark_on_secondary 0x7f060175
+int color m3_sys_color_dark_on_secondary_container 0x7f060176
+int color m3_sys_color_dark_on_surface 0x7f060177
+int color m3_sys_color_dark_on_surface_variant 0x7f060178
+int color m3_sys_color_dark_on_tertiary 0x7f060179
+int color m3_sys_color_dark_on_tertiary_container 0x7f06017a
+int color m3_sys_color_dark_outline 0x7f06017b
+int color m3_sys_color_dark_outline_variant 0x7f06017c
+int color m3_sys_color_dark_primary 0x7f06017d
+int color m3_sys_color_dark_primary_container 0x7f06017e
+int color m3_sys_color_dark_secondary 0x7f06017f
+int color m3_sys_color_dark_secondary_container 0x7f060180
+int color m3_sys_color_dark_surface 0x7f060181
+int color m3_sys_color_dark_surface_bright 0x7f060182
+int color m3_sys_color_dark_surface_container 0x7f060183
+int color m3_sys_color_dark_surface_container_high 0x7f060184
+int color m3_sys_color_dark_surface_container_highest 0x7f060185
+int color m3_sys_color_dark_surface_container_low 0x7f060186
+int color m3_sys_color_dark_surface_container_lowest 0x7f060187
+int color m3_sys_color_dark_surface_dim 0x7f060188
+int color m3_sys_color_dark_surface_variant 0x7f060189
+int color m3_sys_color_dark_tertiary 0x7f06018a
+int color m3_sys_color_dark_tertiary_container 0x7f06018b
+int color m3_sys_color_dynamic_dark_background 0x7f06018c
+int color m3_sys_color_dynamic_dark_error 0x7f06018d
+int color m3_sys_color_dynamic_dark_error_container 0x7f06018e
+int color m3_sys_color_dynamic_dark_inverse_on_surface 0x7f06018f
+int color m3_sys_color_dynamic_dark_inverse_primary 0x7f060190
+int color m3_sys_color_dynamic_dark_inverse_surface 0x7f060191
+int color m3_sys_color_dynamic_dark_on_background 0x7f060192
+int color m3_sys_color_dynamic_dark_on_error 0x7f060193
+int color m3_sys_color_dynamic_dark_on_error_container 0x7f060194
+int color m3_sys_color_dynamic_dark_on_primary 0x7f060195
+int color m3_sys_color_dynamic_dark_on_primary_container 0x7f060196
+int color m3_sys_color_dynamic_dark_on_secondary 0x7f060197
+int color m3_sys_color_dynamic_dark_on_secondary_container 0x7f060198
+int color m3_sys_color_dynamic_dark_on_surface 0x7f060199
+int color m3_sys_color_dynamic_dark_on_surface_variant 0x7f06019a
+int color m3_sys_color_dynamic_dark_on_tertiary 0x7f06019b
+int color m3_sys_color_dynamic_dark_on_tertiary_container 0x7f06019c
+int color m3_sys_color_dynamic_dark_outline 0x7f06019d
+int color m3_sys_color_dynamic_dark_outline_variant 0x7f06019e
+int color m3_sys_color_dynamic_dark_primary 0x7f06019f
+int color m3_sys_color_dynamic_dark_primary_container 0x7f0601a0
+int color m3_sys_color_dynamic_dark_secondary 0x7f0601a1
+int color m3_sys_color_dynamic_dark_secondary_container 0x7f0601a2
+int color m3_sys_color_dynamic_dark_surface 0x7f0601a3
+int color m3_sys_color_dynamic_dark_surface_bright 0x7f0601a4
+int color m3_sys_color_dynamic_dark_surface_container 0x7f0601a5
+int color m3_sys_color_dynamic_dark_surface_container_high 0x7f0601a6
+int color m3_sys_color_dynamic_dark_surface_container_highest 0x7f0601a7
+int color m3_sys_color_dynamic_dark_surface_container_low 0x7f0601a8
+int color m3_sys_color_dynamic_dark_surface_container_lowest 0x7f0601a9
+int color m3_sys_color_dynamic_dark_surface_dim 0x7f0601aa
+int color m3_sys_color_dynamic_dark_surface_variant 0x7f0601ab
+int color m3_sys_color_dynamic_dark_tertiary 0x7f0601ac
+int color m3_sys_color_dynamic_dark_tertiary_container 0x7f0601ad
+int color m3_sys_color_dynamic_light_background 0x7f0601ae
+int color m3_sys_color_dynamic_light_error 0x7f0601af
+int color m3_sys_color_dynamic_light_error_container 0x7f0601b0
+int color m3_sys_color_dynamic_light_inverse_on_surface 0x7f0601b1
+int color m3_sys_color_dynamic_light_inverse_primary 0x7f0601b2
+int color m3_sys_color_dynamic_light_inverse_surface 0x7f0601b3
+int color m3_sys_color_dynamic_light_on_background 0x7f0601b4
+int color m3_sys_color_dynamic_light_on_error 0x7f0601b5
+int color m3_sys_color_dynamic_light_on_error_container 0x7f0601b6
+int color m3_sys_color_dynamic_light_on_primary 0x7f0601b7
+int color m3_sys_color_dynamic_light_on_primary_container 0x7f0601b8
+int color m3_sys_color_dynamic_light_on_secondary 0x7f0601b9
+int color m3_sys_color_dynamic_light_on_secondary_container 0x7f0601ba
+int color m3_sys_color_dynamic_light_on_surface 0x7f0601bb
+int color m3_sys_color_dynamic_light_on_surface_variant 0x7f0601bc
+int color m3_sys_color_dynamic_light_on_tertiary 0x7f0601bd
+int color m3_sys_color_dynamic_light_on_tertiary_container 0x7f0601be
+int color m3_sys_color_dynamic_light_outline 0x7f0601bf
+int color m3_sys_color_dynamic_light_outline_variant 0x7f0601c0
+int color m3_sys_color_dynamic_light_primary 0x7f0601c1
+int color m3_sys_color_dynamic_light_primary_container 0x7f0601c2
+int color m3_sys_color_dynamic_light_secondary 0x7f0601c3
+int color m3_sys_color_dynamic_light_secondary_container 0x7f0601c4
+int color m3_sys_color_dynamic_light_surface 0x7f0601c5
+int color m3_sys_color_dynamic_light_surface_bright 0x7f0601c6
+int color m3_sys_color_dynamic_light_surface_container 0x7f0601c7
+int color m3_sys_color_dynamic_light_surface_container_high 0x7f0601c8
+int color m3_sys_color_dynamic_light_surface_container_highest 0x7f0601c9
+int color m3_sys_color_dynamic_light_surface_container_low 0x7f0601ca
+int color m3_sys_color_dynamic_light_surface_container_lowest 0x7f0601cb
+int color m3_sys_color_dynamic_light_surface_dim 0x7f0601cc
+int color m3_sys_color_dynamic_light_surface_variant 0x7f0601cd
+int color m3_sys_color_dynamic_light_tertiary 0x7f0601ce
+int color m3_sys_color_dynamic_light_tertiary_container 0x7f0601cf
+int color m3_sys_color_dynamic_on_primary_fixed 0x7f0601d0
+int color m3_sys_color_dynamic_on_primary_fixed_variant 0x7f0601d1
+int color m3_sys_color_dynamic_on_secondary_fixed 0x7f0601d2
+int color m3_sys_color_dynamic_on_secondary_fixed_variant 0x7f0601d3
+int color m3_sys_color_dynamic_on_tertiary_fixed 0x7f0601d4
+int color m3_sys_color_dynamic_on_tertiary_fixed_variant 0x7f0601d5
+int color m3_sys_color_dynamic_primary_fixed 0x7f0601d6
+int color m3_sys_color_dynamic_primary_fixed_dim 0x7f0601d7
+int color m3_sys_color_dynamic_secondary_fixed 0x7f0601d8
+int color m3_sys_color_dynamic_secondary_fixed_dim 0x7f0601d9
+int color m3_sys_color_dynamic_tertiary_fixed 0x7f0601da
+int color m3_sys_color_dynamic_tertiary_fixed_dim 0x7f0601db
+int color m3_sys_color_light_background 0x7f0601dc
+int color m3_sys_color_light_error 0x7f0601dd
+int color m3_sys_color_light_error_container 0x7f0601de
+int color m3_sys_color_light_inverse_on_surface 0x7f0601df
+int color m3_sys_color_light_inverse_primary 0x7f0601e0
+int color m3_sys_color_light_inverse_surface 0x7f0601e1
+int color m3_sys_color_light_on_background 0x7f0601e2
+int color m3_sys_color_light_on_error 0x7f0601e3
+int color m3_sys_color_light_on_error_container 0x7f0601e4
+int color m3_sys_color_light_on_primary 0x7f0601e5
+int color m3_sys_color_light_on_primary_container 0x7f0601e6
+int color m3_sys_color_light_on_secondary 0x7f0601e7
+int color m3_sys_color_light_on_secondary_container 0x7f0601e8
+int color m3_sys_color_light_on_surface 0x7f0601e9
+int color m3_sys_color_light_on_surface_variant 0x7f0601ea
+int color m3_sys_color_light_on_tertiary 0x7f0601eb
+int color m3_sys_color_light_on_tertiary_container 0x7f0601ec
+int color m3_sys_color_light_outline 0x7f0601ed
+int color m3_sys_color_light_outline_variant 0x7f0601ee
+int color m3_sys_color_light_primary 0x7f0601ef
+int color m3_sys_color_light_primary_container 0x7f0601f0
+int color m3_sys_color_light_secondary 0x7f0601f1
+int color m3_sys_color_light_secondary_container 0x7f0601f2
+int color m3_sys_color_light_surface 0x7f0601f3
+int color m3_sys_color_light_surface_bright 0x7f0601f4
+int color m3_sys_color_light_surface_container 0x7f0601f5
+int color m3_sys_color_light_surface_container_high 0x7f0601f6
+int color m3_sys_color_light_surface_container_highest 0x7f0601f7
+int color m3_sys_color_light_surface_container_low 0x7f0601f8
+int color m3_sys_color_light_surface_container_lowest 0x7f0601f9
+int color m3_sys_color_light_surface_dim 0x7f0601fa
+int color m3_sys_color_light_surface_variant 0x7f0601fb
+int color m3_sys_color_light_tertiary 0x7f0601fc
+int color m3_sys_color_light_tertiary_container 0x7f0601fd
+int color m3_sys_color_on_primary_fixed 0x7f0601fe
+int color m3_sys_color_on_primary_fixed_variant 0x7f0601ff
+int color m3_sys_color_on_secondary_fixed 0x7f060200
+int color m3_sys_color_on_secondary_fixed_variant 0x7f060201
+int color m3_sys_color_on_tertiary_fixed 0x7f060202
+int color m3_sys_color_on_tertiary_fixed_variant 0x7f060203
+int color m3_sys_color_primary_fixed 0x7f060204
+int color m3_sys_color_primary_fixed_dim 0x7f060205
+int color m3_sys_color_secondary_fixed 0x7f060206
+int color m3_sys_color_secondary_fixed_dim 0x7f060207
+int color m3_sys_color_tertiary_fixed 0x7f060208
+int color m3_sys_color_tertiary_fixed_dim 0x7f060209
+int color m3_tabs_icon_color 0x7f06020a
+int color m3_tabs_icon_color_secondary 0x7f06020b
+int color m3_tabs_ripple_color 0x7f06020c
+int color m3_tabs_ripple_color_secondary 0x7f06020d
+int color m3_tabs_text_color 0x7f06020e
+int color m3_tabs_text_color_secondary 0x7f06020f
+int color m3_text_button_background_color_selector 0x7f060210
+int color m3_text_button_foreground_color_selector 0x7f060211
+int color m3_text_button_ripple_color_selector 0x7f060212
+int color m3_textfield_filled_background_color 0x7f060213
+int color m3_textfield_indicator_text_color 0x7f060214
+int color m3_textfield_input_text_color 0x7f060215
+int color m3_textfield_label_color 0x7f060216
+int color m3_textfield_stroke_color 0x7f060217
+int color m3_timepicker_button_background_color 0x7f060218
+int color m3_timepicker_button_ripple_color 0x7f060219
+int color m3_timepicker_button_text_color 0x7f06021a
+int color m3_timepicker_clock_text_color 0x7f06021b
+int color m3_timepicker_display_background_color 0x7f06021c
+int color m3_timepicker_display_ripple_color 0x7f06021d
+int color m3_timepicker_display_text_color 0x7f06021e
+int color m3_timepicker_secondary_text_button_ripple_color 0x7f06021f
+int color m3_timepicker_secondary_text_button_text_color 0x7f060220
+int color m3_timepicker_time_input_stroke_color 0x7f060221
+int color m3_tonal_button_ripple_color_selector 0x7f060222
+int color material_blue_grey_800 0x7f060223
+int color material_blue_grey_900 0x7f060224
+int color material_blue_grey_950 0x7f060225
+int color material_cursor_color 0x7f060226
+int color material_deep_teal_200 0x7f060227
+int color material_deep_teal_500 0x7f060228
+int color material_divider_color 0x7f060229
+int color material_dynamic_color_dark_error 0x7f06022a
+int color material_dynamic_color_dark_error_container 0x7f06022b
+int color material_dynamic_color_dark_on_error 0x7f06022c
+int color material_dynamic_color_dark_on_error_container 0x7f06022d
+int color material_dynamic_color_light_error 0x7f06022e
+int color material_dynamic_color_light_error_container 0x7f06022f
+int color material_dynamic_color_light_on_error 0x7f060230
+int color material_dynamic_color_light_on_error_container 0x7f060231
+int color material_dynamic_neutral0 0x7f060232
+int color material_dynamic_neutral10 0x7f060233
+int color material_dynamic_neutral100 0x7f060234
+int color material_dynamic_neutral20 0x7f060235
+int color material_dynamic_neutral30 0x7f060236
+int color material_dynamic_neutral40 0x7f060237
+int color material_dynamic_neutral50 0x7f060238
+int color material_dynamic_neutral60 0x7f060239
+int color material_dynamic_neutral70 0x7f06023a
+int color material_dynamic_neutral80 0x7f06023b
+int color material_dynamic_neutral90 0x7f06023c
+int color material_dynamic_neutral95 0x7f06023d
+int color material_dynamic_neutral99 0x7f06023e
+int color material_dynamic_neutral_variant0 0x7f06023f
+int color material_dynamic_neutral_variant10 0x7f060240
+int color material_dynamic_neutral_variant100 0x7f060241
+int color material_dynamic_neutral_variant20 0x7f060242
+int color material_dynamic_neutral_variant30 0x7f060243
+int color material_dynamic_neutral_variant40 0x7f060244
+int color material_dynamic_neutral_variant50 0x7f060245
+int color material_dynamic_neutral_variant60 0x7f060246
+int color material_dynamic_neutral_variant70 0x7f060247
+int color material_dynamic_neutral_variant80 0x7f060248
+int color material_dynamic_neutral_variant90 0x7f060249
+int color material_dynamic_neutral_variant95 0x7f06024a
+int color material_dynamic_neutral_variant99 0x7f06024b
+int color material_dynamic_primary0 0x7f06024c
+int color material_dynamic_primary10 0x7f06024d
+int color material_dynamic_primary100 0x7f06024e
+int color material_dynamic_primary20 0x7f06024f
+int color material_dynamic_primary30 0x7f060250
+int color material_dynamic_primary40 0x7f060251
+int color material_dynamic_primary50 0x7f060252
+int color material_dynamic_primary60 0x7f060253
+int color material_dynamic_primary70 0x7f060254
+int color material_dynamic_primary80 0x7f060255
+int color material_dynamic_primary90 0x7f060256
+int color material_dynamic_primary95 0x7f060257
+int color material_dynamic_primary99 0x7f060258
+int color material_dynamic_secondary0 0x7f060259
+int color material_dynamic_secondary10 0x7f06025a
+int color material_dynamic_secondary100 0x7f06025b
+int color material_dynamic_secondary20 0x7f06025c
+int color material_dynamic_secondary30 0x7f06025d
+int color material_dynamic_secondary40 0x7f06025e
+int color material_dynamic_secondary50 0x7f06025f
+int color material_dynamic_secondary60 0x7f060260
+int color material_dynamic_secondary70 0x7f060261
+int color material_dynamic_secondary80 0x7f060262
+int color material_dynamic_secondary90 0x7f060263
+int color material_dynamic_secondary95 0x7f060264
+int color material_dynamic_secondary99 0x7f060265
+int color material_dynamic_tertiary0 0x7f060266
+int color material_dynamic_tertiary10 0x7f060267
+int color material_dynamic_tertiary100 0x7f060268
+int color material_dynamic_tertiary20 0x7f060269
+int color material_dynamic_tertiary30 0x7f06026a
+int color material_dynamic_tertiary40 0x7f06026b
+int color material_dynamic_tertiary50 0x7f06026c
+int color material_dynamic_tertiary60 0x7f06026d
+int color material_dynamic_tertiary70 0x7f06026e
+int color material_dynamic_tertiary80 0x7f06026f
+int color material_dynamic_tertiary90 0x7f060270
+int color material_dynamic_tertiary95 0x7f060271
+int color material_dynamic_tertiary99 0x7f060272
+int color material_grey_100 0x7f060273
+int color material_grey_300 0x7f060274
+int color material_grey_50 0x7f060275
+int color material_grey_600 0x7f060276
+int color material_grey_800 0x7f060277
+int color material_grey_850 0x7f060278
+int color material_grey_900 0x7f060279
+int color material_harmonized_color_error 0x7f06027a
+int color material_harmonized_color_error_container 0x7f06027b
+int color material_harmonized_color_on_error 0x7f06027c
+int color material_harmonized_color_on_error_container 0x7f06027d
+int color material_on_background_disabled 0x7f06027e
+int color material_on_background_emphasis_high_type 0x7f06027f
+int color material_on_background_emphasis_medium 0x7f060280
+int color material_on_primary_disabled 0x7f060281
+int color material_on_primary_emphasis_high_type 0x7f060282
+int color material_on_primary_emphasis_medium 0x7f060283
+int color material_on_surface_disabled 0x7f060284
+int color material_on_surface_emphasis_high_type 0x7f060285
+int color material_on_surface_emphasis_medium 0x7f060286
+int color material_on_surface_stroke 0x7f060287
+int color material_personalized__highlighted_text 0x7f060288
+int color material_personalized__highlighted_text_inverse 0x7f060289
+int color material_personalized_color_background 0x7f06028a
+int color material_personalized_color_control_activated 0x7f06028b
+int color material_personalized_color_control_highlight 0x7f06028c
+int color material_personalized_color_control_normal 0x7f06028d
+int color material_personalized_color_error 0x7f06028e
+int color material_personalized_color_error_container 0x7f06028f
+int color material_personalized_color_on_background 0x7f060290
+int color material_personalized_color_on_error 0x7f060291
+int color material_personalized_color_on_error_container 0x7f060292
+int color material_personalized_color_on_primary 0x7f060293
+int color material_personalized_color_on_primary_container 0x7f060294
+int color material_personalized_color_on_secondary 0x7f060295
+int color material_personalized_color_on_secondary_container 0x7f060296
+int color material_personalized_color_on_surface 0x7f060297
+int color material_personalized_color_on_surface_inverse 0x7f060298
+int color material_personalized_color_on_surface_variant 0x7f060299
+int color material_personalized_color_on_tertiary 0x7f06029a
+int color material_personalized_color_on_tertiary_container 0x7f06029b
+int color material_personalized_color_outline 0x7f06029c
+int color material_personalized_color_outline_variant 0x7f06029d
+int color material_personalized_color_primary 0x7f06029e
+int color material_personalized_color_primary_container 0x7f06029f
+int color material_personalized_color_primary_inverse 0x7f0602a0
+int color material_personalized_color_primary_text 0x7f0602a1
+int color material_personalized_color_primary_text_inverse 0x7f0602a2
+int color material_personalized_color_secondary 0x7f0602a3
+int color material_personalized_color_secondary_container 0x7f0602a4
+int color material_personalized_color_secondary_text 0x7f0602a5
+int color material_personalized_color_secondary_text_inverse 0x7f0602a6
+int color material_personalized_color_surface 0x7f0602a7
+int color material_personalized_color_surface_bright 0x7f0602a8
+int color material_personalized_color_surface_container 0x7f0602a9
+int color material_personalized_color_surface_container_high 0x7f0602aa
+int color material_personalized_color_surface_container_highest 0x7f0602ab
+int color material_personalized_color_surface_container_low 0x7f0602ac
+int color material_personalized_color_surface_container_lowest 0x7f0602ad
+int color material_personalized_color_surface_dim 0x7f0602ae
+int color material_personalized_color_surface_inverse 0x7f0602af
+int color material_personalized_color_surface_variant 0x7f0602b0
+int color material_personalized_color_tertiary 0x7f0602b1
+int color material_personalized_color_tertiary_container 0x7f0602b2
+int color material_personalized_color_text_hint_foreground_inverse 0x7f0602b3
+int color material_personalized_color_text_primary_inverse 0x7f0602b4
+int color material_personalized_color_text_primary_inverse_disable_only 0x7f0602b5
+int color material_personalized_color_text_secondary_and_tertiary_inverse 0x7f0602b6
+int color material_personalized_color_text_secondary_and_tertiary_inverse_disabled 0x7f0602b7
+int color material_personalized_hint_foreground 0x7f0602b8
+int color material_personalized_hint_foreground_inverse 0x7f0602b9
+int color material_personalized_primary_inverse_text_disable_only 0x7f0602ba
+int color material_personalized_primary_text_disable_only 0x7f0602bb
+int color material_slider_active_tick_marks_color 0x7f0602bc
+int color material_slider_active_track_color 0x7f0602bd
+int color material_slider_halo_color 0x7f0602be
+int color material_slider_inactive_tick_marks_color 0x7f0602bf
+int color material_slider_inactive_track_color 0x7f0602c0
+int color material_slider_thumb_color 0x7f0602c1
+int color material_timepicker_button_background 0x7f0602c2
+int color material_timepicker_button_stroke 0x7f0602c3
+int color material_timepicker_clock_text_color 0x7f0602c4
+int color material_timepicker_clockface 0x7f0602c5
+int color material_timepicker_modebutton_tint 0x7f0602c6
+int color mtrl_btn_bg_color_selector 0x7f0602c7
+int color mtrl_btn_ripple_color 0x7f0602c8
+int color mtrl_btn_stroke_color_selector 0x7f0602c9
+int color mtrl_btn_text_btn_bg_color_selector 0x7f0602ca
+int color mtrl_btn_text_btn_ripple_color 0x7f0602cb
+int color mtrl_btn_text_color_disabled 0x7f0602cc
+int color mtrl_btn_text_color_selector 0x7f0602cd
+int color mtrl_btn_transparent_bg_color 0x7f0602ce
+int color mtrl_calendar_item_stroke_color 0x7f0602cf
+int color mtrl_calendar_selected_range 0x7f0602d0
+int color mtrl_card_view_foreground 0x7f0602d1
+int color mtrl_card_view_ripple 0x7f0602d2
+int color mtrl_chip_background_color 0x7f0602d3
+int color mtrl_chip_close_icon_tint 0x7f0602d4
+int color mtrl_chip_surface_color 0x7f0602d5
+int color mtrl_chip_text_color 0x7f0602d6
+int color mtrl_choice_chip_background_color 0x7f0602d7
+int color mtrl_choice_chip_ripple_color 0x7f0602d8
+int color mtrl_choice_chip_text_color 0x7f0602d9
+int color mtrl_error 0x7f0602da
+int color mtrl_fab_bg_color_selector 0x7f0602db
+int color mtrl_fab_icon_text_color_selector 0x7f0602dc
+int color mtrl_fab_ripple_color 0x7f0602dd
+int color mtrl_filled_background_color 0x7f0602de
+int color mtrl_filled_icon_tint 0x7f0602df
+int color mtrl_filled_stroke_color 0x7f0602e0
+int color mtrl_indicator_text_color 0x7f0602e1
+int color mtrl_navigation_bar_colored_item_tint 0x7f0602e2
+int color mtrl_navigation_bar_colored_ripple_color 0x7f0602e3
+int color mtrl_navigation_bar_item_tint 0x7f0602e4
+int color mtrl_navigation_bar_ripple_color 0x7f0602e5
+int color mtrl_navigation_item_background_color 0x7f0602e6
+int color mtrl_navigation_item_icon_tint 0x7f0602e7
+int color mtrl_navigation_item_text_color 0x7f0602e8
+int color mtrl_on_primary_text_btn_text_color_selector 0x7f0602e9
+int color mtrl_on_surface_ripple_color 0x7f0602ea
+int color mtrl_outlined_icon_tint 0x7f0602eb
+int color mtrl_outlined_stroke_color 0x7f0602ec
+int color mtrl_popupmenu_overlay_color 0x7f0602ed
+int color mtrl_scrim_color 0x7f0602ee
+int color mtrl_switch_thumb_icon_tint 0x7f0602ef
+int color mtrl_switch_thumb_tint 0x7f0602f0
+int color mtrl_switch_track_decoration_tint 0x7f0602f1
+int color mtrl_switch_track_tint 0x7f0602f2
+int color mtrl_tabs_colored_ripple_color 0x7f0602f3
+int color mtrl_tabs_icon_color_selector 0x7f0602f4
+int color mtrl_tabs_icon_color_selector_colored 0x7f0602f5
+int color mtrl_tabs_legacy_text_color_selector 0x7f0602f6
+int color mtrl_tabs_ripple_color 0x7f0602f7
+int color mtrl_text_btn_text_color_selector 0x7f0602f8
+int color mtrl_textinput_default_box_stroke_color 0x7f0602f9
+int color mtrl_textinput_disabled_color 0x7f0602fa
+int color mtrl_textinput_filled_box_default_background_color 0x7f0602fb
+int color mtrl_textinput_focused_box_stroke_color 0x7f0602fc
+int color mtrl_textinput_hovered_box_stroke_color 0x7f0602fd
+int color navigationBarColor 0x7f0602fe
+int color notification_action_color_filter 0x7f0602ff
+int color notification_icon_bg_color 0x7f060300
+int color preference_fallback_accent_color 0x7f060301
+int color preference_simple_menu_background 0x7f060302
+int color primary_dark_material_dark 0x7f060303
+int color primary_dark_material_light 0x7f060304
+int color primary_material_dark 0x7f060305
+int color primary_material_light 0x7f060306
+int color primary_text_default_material_dark 0x7f060307
+int color primary_text_default_material_light 0x7f060308
+int color primary_text_disabled_material_dark 0x7f060309
+int color primary_text_disabled_material_light 0x7f06030a
+int color ripple_material_dark 0x7f06030b
+int color ripple_material_light 0x7f06030c
+int color secondary_text_default_material_dark 0x7f06030d
+int color secondary_text_default_material_light 0x7f06030e
+int color secondary_text_disabled_material_dark 0x7f06030f
+int color secondary_text_disabled_material_light 0x7f060310
+int color switch_thumb_disabled_material_dark 0x7f060311
+int color switch_thumb_disabled_material_light 0x7f060312
+int color switch_thumb_material_dark 0x7f060313
+int color switch_thumb_material_light 0x7f060314
+int color switch_thumb_normal_material_dark 0x7f060315
+int color switch_thumb_normal_material_light 0x7f060316
+int color tooltip_background_dark 0x7f060317
+int color tooltip_background_light 0x7f060318
+int dimen abc_action_bar_content_inset_material 0x7f070000
+int dimen abc_action_bar_content_inset_with_nav 0x7f070001
+int dimen abc_action_bar_default_height_material 0x7f070002
+int dimen abc_action_bar_default_padding_end_material 0x7f070003
+int dimen abc_action_bar_default_padding_start_material 0x7f070004
+int dimen abc_action_bar_elevation_material 0x7f070005
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f070006
+int dimen abc_action_bar_overflow_padding_end_material 0x7f070007
+int dimen abc_action_bar_overflow_padding_start_material 0x7f070008
+int dimen abc_action_bar_stacked_max_height 0x7f070009
+int dimen abc_action_bar_stacked_tab_max_width 0x7f07000a
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000b
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000c
+int dimen abc_action_button_min_height_material 0x7f07000d
+int dimen abc_action_button_min_width_material 0x7f07000e
+int dimen abc_action_button_min_width_overflow_material 0x7f07000f
+int dimen abc_alert_dialog_button_bar_height 0x7f070010
+int dimen abc_alert_dialog_button_dimen 0x7f070011
+int dimen abc_button_inset_horizontal_material 0x7f070012
+int dimen abc_button_inset_vertical_material 0x7f070013
+int dimen abc_button_padding_horizontal_material 0x7f070014
+int dimen abc_button_padding_vertical_material 0x7f070015
+int dimen abc_cascading_menus_min_smallest_width 0x7f070016
+int dimen abc_config_prefDialogWidth 0x7f070017
+int dimen abc_control_corner_material 0x7f070018
+int dimen abc_control_inset_material 0x7f070019
+int dimen abc_control_padding_material 0x7f07001a
+int dimen abc_dialog_corner_radius_material 0x7f07001b
+int dimen abc_dialog_fixed_height_major 0x7f07001c
+int dimen abc_dialog_fixed_height_minor 0x7f07001d
+int dimen abc_dialog_fixed_width_major 0x7f07001e
+int dimen abc_dialog_fixed_width_minor 0x7f07001f
+int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070020
+int dimen abc_dialog_list_padding_top_no_title 0x7f070021
+int dimen abc_dialog_min_width_major 0x7f070022
+int dimen abc_dialog_min_width_minor 0x7f070023
+int dimen abc_dialog_padding_material 0x7f070024
+int dimen abc_dialog_padding_top_material 0x7f070025
+int dimen abc_dialog_title_divider_material 0x7f070026
+int dimen abc_disabled_alpha_material_dark 0x7f070027
+int dimen abc_disabled_alpha_material_light 0x7f070028
+int dimen abc_dropdownitem_icon_width 0x7f070029
+int dimen abc_dropdownitem_text_padding_left 0x7f07002a
+int dimen abc_dropdownitem_text_padding_right 0x7f07002b
+int dimen abc_edit_text_inset_bottom_material 0x7f07002c
+int dimen abc_edit_text_inset_horizontal_material 0x7f07002d
+int dimen abc_edit_text_inset_top_material 0x7f07002e
+int dimen abc_floating_window_z 0x7f07002f
+int dimen abc_list_item_height_large_material 0x7f070030
+int dimen abc_list_item_height_material 0x7f070031
+int dimen abc_list_item_height_small_material 0x7f070032
+int dimen abc_list_item_padding_horizontal_material 0x7f070033
+int dimen abc_panel_menu_list_width 0x7f070034
+int dimen abc_progress_bar_height_material 0x7f070035
+int dimen abc_search_view_preferred_height 0x7f070036
+int dimen abc_search_view_preferred_width 0x7f070037
+int dimen abc_seekbar_track_background_height_material 0x7f070038
+int dimen abc_seekbar_track_progress_height_material 0x7f070039
+int dimen abc_select_dialog_padding_start_material 0x7f07003a
+int dimen abc_star_big 0x7f07003b
+int dimen abc_star_medium 0x7f07003c
+int dimen abc_star_small 0x7f07003d
+int dimen abc_switch_padding 0x7f07003e
+int dimen abc_text_size_body_1_material 0x7f07003f
+int dimen abc_text_size_body_2_material 0x7f070040
+int dimen abc_text_size_button_material 0x7f070041
+int dimen abc_text_size_caption_material 0x7f070042
+int dimen abc_text_size_display_1_material 0x7f070043
+int dimen abc_text_size_display_2_material 0x7f070044
+int dimen abc_text_size_display_3_material 0x7f070045
+int dimen abc_text_size_display_4_material 0x7f070046
+int dimen abc_text_size_headline_material 0x7f070047
+int dimen abc_text_size_large_material 0x7f070048
+int dimen abc_text_size_medium_material 0x7f070049
+int dimen abc_text_size_menu_header_material 0x7f07004a
+int dimen abc_text_size_menu_material 0x7f07004b
+int dimen abc_text_size_small_material 0x7f07004c
+int dimen abc_text_size_subhead_material 0x7f07004d
+int dimen abc_text_size_subtitle_material_toolbar 0x7f07004e
+int dimen abc_text_size_title_material 0x7f07004f
+int dimen abc_text_size_title_material_toolbar 0x7f070050
+int dimen appcompat_dialog_background_inset 0x7f070051
+int dimen browser_actions_context_menu_max_width 0x7f070052
+int dimen browser_actions_context_menu_min_padding 0x7f070053
+int dimen cardview_compat_inset_shadow 0x7f070054
+int dimen cardview_default_elevation 0x7f070055
+int dimen cardview_default_radius 0x7f070056
+int dimen clock_face_margin_start 0x7f070057
+int dimen compat_button_inset_horizontal_material 0x7f070058
+int dimen compat_button_inset_vertical_material 0x7f070059
+int dimen compat_button_padding_horizontal_material 0x7f07005a
+int dimen compat_button_padding_vertical_material 0x7f07005b
+int dimen compat_control_corner_material 0x7f07005c
+int dimen compat_notification_large_icon_max_height 0x7f07005d
+int dimen compat_notification_large_icon_max_width 0x7f07005e
+int dimen def_drawer_elevation 0x7f07005f
+int dimen design_appbar_elevation 0x7f070060
+int dimen design_bottom_navigation_active_item_max_width 0x7f070061
+int dimen design_bottom_navigation_active_item_min_width 0x7f070062
+int dimen design_bottom_navigation_active_text_size 0x7f070063
+int dimen design_bottom_navigation_elevation 0x7f070064
+int dimen design_bottom_navigation_height 0x7f070065
+int dimen design_bottom_navigation_icon_size 0x7f070066
+int dimen design_bottom_navigation_item_max_width 0x7f070067
+int dimen design_bottom_navigation_item_min_width 0x7f070068
+int dimen design_bottom_navigation_label_padding 0x7f070069
+int dimen design_bottom_navigation_margin 0x7f07006a
+int dimen design_bottom_navigation_shadow_height 0x7f07006b
+int dimen design_bottom_navigation_text_size 0x7f07006c
+int dimen design_bottom_sheet_elevation 0x7f07006d
+int dimen design_bottom_sheet_modal_elevation 0x7f07006e
+int dimen design_bottom_sheet_peek_height_min 0x7f07006f
+int dimen design_fab_border_width 0x7f070070
+int dimen design_fab_elevation 0x7f070071
+int dimen design_fab_image_size 0x7f070072
+int dimen design_fab_size_mini 0x7f070073
+int dimen design_fab_size_normal 0x7f070074
+int dimen design_fab_translation_z_hovered_focused 0x7f070075
+int dimen design_fab_translation_z_pressed 0x7f070076
+int dimen design_navigation_elevation 0x7f070077
+int dimen design_navigation_icon_padding 0x7f070078
+int dimen design_navigation_icon_size 0x7f070079
+int dimen design_navigation_item_horizontal_padding 0x7f07007a
+int dimen design_navigation_item_icon_padding 0x7f07007b
+int dimen design_navigation_item_vertical_padding 0x7f07007c
+int dimen design_navigation_max_width 0x7f07007d
+int dimen design_navigation_padding_bottom 0x7f07007e
+int dimen design_navigation_separator_vertical_padding 0x7f07007f
+int dimen design_snackbar_action_inline_max_width 0x7f070080
+int dimen design_snackbar_action_text_color_alpha 0x7f070081
+int dimen design_snackbar_background_corner_radius 0x7f070082
+int dimen design_snackbar_elevation 0x7f070083
+int dimen design_snackbar_extra_spacing_horizontal 0x7f070084
+int dimen design_snackbar_max_width 0x7f070085
+int dimen design_snackbar_min_width 0x7f070086
+int dimen design_snackbar_padding_horizontal 0x7f070087
+int dimen design_snackbar_padding_vertical 0x7f070088
+int dimen design_snackbar_padding_vertical_2lines 0x7f070089
+int dimen design_snackbar_text_size 0x7f07008a
+int dimen design_tab_max_width 0x7f07008b
+int dimen design_tab_scrollable_min_width 0x7f07008c
+int dimen design_tab_text_size 0x7f07008d
+int dimen design_tab_text_size_2line 0x7f07008e
+int dimen design_textinput_caption_translate_y 0x7f07008f
+int dimen disabled_alpha_material_dark 0x7f070090
+int dimen disabled_alpha_material_light 0x7f070091
+int dimen fastscroll_default_thickness 0x7f070092
+int dimen fastscroll_margin 0x7f070093
+int dimen fastscroll_minimum_range 0x7f070094
+int dimen highlight_alpha_material_colored 0x7f070095
+int dimen highlight_alpha_material_dark 0x7f070096
+int dimen highlight_alpha_material_light 0x7f070097
+int dimen hint_alpha_material_dark 0x7f070098
+int dimen hint_alpha_material_light 0x7f070099
+int dimen hint_pressed_alpha_material_dark 0x7f07009a
+int dimen hint_pressed_alpha_material_light 0x7f07009b
+int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f07009c
+int dimen item_touch_helper_swipe_escape_max_velocity 0x7f07009d
+int dimen item_touch_helper_swipe_escape_velocity 0x7f07009e
+int dimen listitem_manage_tether_padding_start 0x7f07009f
+int dimen m3_alert_dialog_action_bottom_padding 0x7f0700a0
+int dimen m3_alert_dialog_action_top_padding 0x7f0700a1
+int dimen m3_alert_dialog_corner_size 0x7f0700a2
+int dimen m3_alert_dialog_elevation 0x7f0700a3
+int dimen m3_alert_dialog_icon_margin 0x7f0700a4
+int dimen m3_alert_dialog_icon_size 0x7f0700a5
+int dimen m3_alert_dialog_title_bottom_margin 0x7f0700a6
+int dimen m3_appbar_expanded_title_margin_bottom 0x7f0700a7
+int dimen m3_appbar_expanded_title_margin_horizontal 0x7f0700a8
+int dimen m3_appbar_scrim_height_trigger 0x7f0700a9
+int dimen m3_appbar_scrim_height_trigger_large 0x7f0700aa
+int dimen m3_appbar_scrim_height_trigger_medium 0x7f0700ab
+int dimen m3_appbar_size_compact 0x7f0700ac
+int dimen m3_appbar_size_large 0x7f0700ad
+int dimen m3_appbar_size_medium 0x7f0700ae
+int dimen m3_back_progress_bottom_container_max_scale_x_distance 0x7f0700af
+int dimen m3_back_progress_bottom_container_max_scale_y_distance 0x7f0700b0
+int dimen m3_back_progress_main_container_max_translation_y 0x7f0700b1
+int dimen m3_back_progress_main_container_min_edge_gap 0x7f0700b2
+int dimen m3_back_progress_side_container_max_scale_x_distance_grow 0x7f0700b3
+int dimen m3_back_progress_side_container_max_scale_x_distance_shrink 0x7f0700b4
+int dimen m3_back_progress_side_container_max_scale_y_distance 0x7f0700b5
+int dimen m3_badge_horizontal_offset 0x7f0700b6
+int dimen m3_badge_offset 0x7f0700b7
+int dimen m3_badge_size 0x7f0700b8
+int dimen m3_badge_vertical_offset 0x7f0700b9
+int dimen m3_badge_with_text_horizontal_offset 0x7f0700ba
+int dimen m3_badge_with_text_offset 0x7f0700bb
+int dimen m3_badge_with_text_size 0x7f0700bc
+int dimen m3_badge_with_text_vertical_offset 0x7f0700bd
+int dimen m3_badge_with_text_vertical_padding 0x7f0700be
+int dimen m3_bottom_nav_item_active_indicator_height 0x7f0700bf
+int dimen m3_bottom_nav_item_active_indicator_margin_horizontal 0x7f0700c0
+int dimen m3_bottom_nav_item_active_indicator_width 0x7f0700c1
+int dimen m3_bottom_nav_item_padding_bottom 0x7f0700c2
+int dimen m3_bottom_nav_item_padding_top 0x7f0700c3
+int dimen m3_bottom_nav_min_height 0x7f0700c4
+int dimen m3_bottom_sheet_drag_handle_bottom_padding 0x7f0700c5
+int dimen m3_bottom_sheet_elevation 0x7f0700c6
+int dimen m3_bottom_sheet_modal_elevation 0x7f0700c7
+int dimen m3_bottomappbar_fab_cradle_margin 0x7f0700c8
+int dimen m3_bottomappbar_fab_cradle_rounded_corner_radius 0x7f0700c9
+int dimen m3_bottomappbar_fab_cradle_vertical_offset 0x7f0700ca
+int dimen m3_bottomappbar_fab_end_margin 0x7f0700cb
+int dimen m3_bottomappbar_height 0x7f0700cc
+int dimen m3_bottomappbar_horizontal_padding 0x7f0700cd
+int dimen m3_btn_dialog_btn_min_width 0x7f0700ce
+int dimen m3_btn_dialog_btn_spacing 0x7f0700cf
+int dimen m3_btn_disabled_elevation 0x7f0700d0
+int dimen m3_btn_disabled_translation_z 0x7f0700d1
+int dimen m3_btn_elevated_btn_elevation 0x7f0700d2
+int dimen m3_btn_elevation 0x7f0700d3
+int dimen m3_btn_icon_btn_padding_left 0x7f0700d4
+int dimen m3_btn_icon_btn_padding_right 0x7f0700d5
+int dimen m3_btn_icon_only_default_padding 0x7f0700d6
+int dimen m3_btn_icon_only_default_size 0x7f0700d7
+int dimen m3_btn_icon_only_icon_padding 0x7f0700d8
+int dimen m3_btn_icon_only_min_width 0x7f0700d9
+int dimen m3_btn_inset 0x7f0700da
+int dimen m3_btn_max_width 0x7f0700db
+int dimen m3_btn_padding_bottom 0x7f0700dc
+int dimen m3_btn_padding_left 0x7f0700dd
+int dimen m3_btn_padding_right 0x7f0700de
+int dimen m3_btn_padding_top 0x7f0700df
+int dimen m3_btn_stroke_size 0x7f0700e0
+int dimen m3_btn_text_btn_icon_padding_left 0x7f0700e1
+int dimen m3_btn_text_btn_icon_padding_right 0x7f0700e2
+int dimen m3_btn_text_btn_padding_left 0x7f0700e3
+int dimen m3_btn_text_btn_padding_right 0x7f0700e4
+int dimen m3_btn_translation_z_base 0x7f0700e5
+int dimen m3_btn_translation_z_hovered 0x7f0700e6
+int dimen m3_card_disabled_z 0x7f0700e7
+int dimen m3_card_dragged_z 0x7f0700e8
+int dimen m3_card_elevated_disabled_z 0x7f0700e9
+int dimen m3_card_elevated_dragged_z 0x7f0700ea
+int dimen m3_card_elevated_elevation 0x7f0700eb
+int dimen m3_card_elevated_hovered_z 0x7f0700ec
+int dimen m3_card_elevation 0x7f0700ed
+int dimen m3_card_hovered_z 0x7f0700ee
+int dimen m3_card_stroke_width 0x7f0700ef
+int dimen m3_carousel_debug_keyline_width 0x7f0700f0
+int dimen m3_carousel_extra_small_item_size 0x7f0700f1
+int dimen m3_carousel_gone_size 0x7f0700f2
+int dimen m3_carousel_small_item_default_corner_size 0x7f0700f3
+int dimen m3_carousel_small_item_size_max 0x7f0700f4
+int dimen m3_carousel_small_item_size_min 0x7f0700f5
+int dimen m3_chip_checked_hovered_translation_z 0x7f0700f6
+int dimen m3_chip_corner_size 0x7f0700f7
+int dimen m3_chip_disabled_translation_z 0x7f0700f8
+int dimen m3_chip_dragged_translation_z 0x7f0700f9
+int dimen m3_chip_elevated_elevation 0x7f0700fa
+int dimen m3_chip_hovered_translation_z 0x7f0700fb
+int dimen m3_chip_icon_size 0x7f0700fc
+int dimen m3_comp_assist_chip_container_height 0x7f0700fd
+int dimen m3_comp_assist_chip_elevated_container_elevation 0x7f0700fe
+int dimen m3_comp_assist_chip_flat_container_elevation 0x7f0700ff
+int dimen m3_comp_assist_chip_flat_outline_width 0x7f070100
+int dimen m3_comp_assist_chip_with_icon_icon_size 0x7f070101
+int dimen m3_comp_badge_large_size 0x7f070102
+int dimen m3_comp_badge_size 0x7f070103
+int dimen m3_comp_bottom_app_bar_container_elevation 0x7f070104
+int dimen m3_comp_bottom_app_bar_container_height 0x7f070105
+int dimen m3_comp_checkbox_selected_disabled_container_opacity 0x7f070106
+int dimen m3_comp_circular_progress_indicator_active_indicator_width 0x7f070107
+int dimen m3_comp_date_picker_modal_date_today_container_outline_width 0x7f070108
+int dimen m3_comp_date_picker_modal_header_container_height 0x7f070109
+int dimen m3_comp_date_picker_modal_range_selection_header_container_height 0x7f07010a
+int dimen m3_comp_divider_thickness 0x7f07010b
+int dimen m3_comp_elevated_button_container_elevation 0x7f07010c
+int dimen m3_comp_elevated_button_disabled_container_elevation 0x7f07010d
+int dimen m3_comp_elevated_card_container_elevation 0x7f07010e
+int dimen m3_comp_elevated_card_icon_size 0x7f07010f
+int dimen m3_comp_extended_fab_primary_container_elevation 0x7f070110
+int dimen m3_comp_extended_fab_primary_container_height 0x7f070111
+int dimen m3_comp_extended_fab_primary_focus_container_elevation 0x7f070112
+int dimen m3_comp_extended_fab_primary_focus_state_layer_opacity 0x7f070113
+int dimen m3_comp_extended_fab_primary_hover_container_elevation 0x7f070114
+int dimen m3_comp_extended_fab_primary_hover_state_layer_opacity 0x7f070115
+int dimen m3_comp_extended_fab_primary_icon_size 0x7f070116
+int dimen m3_comp_extended_fab_primary_pressed_container_elevation 0x7f070117
+int dimen m3_comp_extended_fab_primary_pressed_state_layer_opacity 0x7f070118
+int dimen m3_comp_fab_primary_container_elevation 0x7f070119
+int dimen m3_comp_fab_primary_container_height 0x7f07011a
+int dimen m3_comp_fab_primary_focus_state_layer_opacity 0x7f07011b
+int dimen m3_comp_fab_primary_hover_container_elevation 0x7f07011c
+int dimen m3_comp_fab_primary_hover_state_layer_opacity 0x7f07011d
+int dimen m3_comp_fab_primary_icon_size 0x7f07011e
+int dimen m3_comp_fab_primary_large_container_height 0x7f07011f
+int dimen m3_comp_fab_primary_large_icon_size 0x7f070120
+int dimen m3_comp_fab_primary_pressed_container_elevation 0x7f070121
+int dimen m3_comp_fab_primary_pressed_state_layer_opacity 0x7f070122
+int dimen m3_comp_fab_primary_small_container_height 0x7f070123
+int dimen m3_comp_fab_primary_small_icon_size 0x7f070124
+int dimen m3_comp_filled_autocomplete_menu_container_elevation 0x7f070125
+int dimen m3_comp_filled_button_container_elevation 0x7f070126
+int dimen m3_comp_filled_button_with_icon_icon_size 0x7f070127
+int dimen m3_comp_filled_card_container_elevation 0x7f070128
+int dimen m3_comp_filled_card_dragged_state_layer_opacity 0x7f070129
+int dimen m3_comp_filled_card_focus_state_layer_opacity 0x7f07012a
+int dimen m3_comp_filled_card_hover_state_layer_opacity 0x7f07012b
+int dimen m3_comp_filled_card_icon_size 0x7f07012c
+int dimen m3_comp_filled_card_pressed_state_layer_opacity 0x7f07012d
+int dimen m3_comp_filled_text_field_disabled_active_indicator_opacity 0x7f07012e
+int dimen m3_comp_filter_chip_container_height 0x7f07012f
+int dimen m3_comp_filter_chip_elevated_container_elevation 0x7f070130
+int dimen m3_comp_filter_chip_flat_container_elevation 0x7f070131
+int dimen m3_comp_filter_chip_flat_unselected_outline_width 0x7f070132
+int dimen m3_comp_filter_chip_with_icon_icon_size 0x7f070133
+int dimen m3_comp_input_chip_container_elevation 0x7f070134
+int dimen m3_comp_input_chip_container_height 0x7f070135
+int dimen m3_comp_input_chip_unselected_outline_width 0x7f070136
+int dimen m3_comp_input_chip_with_avatar_avatar_size 0x7f070137
+int dimen m3_comp_input_chip_with_leading_icon_leading_icon_size 0x7f070138
+int dimen m3_comp_linear_progress_indicator_active_indicator_height 0x7f070139
+int dimen m3_comp_menu_container_elevation 0x7f07013a
+int dimen m3_comp_navigation_bar_active_indicator_height 0x7f07013b
+int dimen m3_comp_navigation_bar_active_indicator_width 0x7f07013c
+int dimen m3_comp_navigation_bar_container_elevation 0x7f07013d
+int dimen m3_comp_navigation_bar_container_height 0x7f07013e
+int dimen m3_comp_navigation_bar_focus_state_layer_opacity 0x7f07013f
+int dimen m3_comp_navigation_bar_hover_state_layer_opacity 0x7f070140
+int dimen m3_comp_navigation_bar_icon_size 0x7f070141
+int dimen m3_comp_navigation_bar_pressed_state_layer_opacity 0x7f070142
+int dimen m3_comp_navigation_drawer_container_width 0x7f070143
+int dimen m3_comp_navigation_drawer_focus_state_layer_opacity 0x7f070144
+int dimen m3_comp_navigation_drawer_hover_state_layer_opacity 0x7f070145
+int dimen m3_comp_navigation_drawer_icon_size 0x7f070146
+int dimen m3_comp_navigation_drawer_modal_container_elevation 0x7f070147
+int dimen m3_comp_navigation_drawer_pressed_state_layer_opacity 0x7f070148
+int dimen m3_comp_navigation_drawer_standard_container_elevation 0x7f070149
+int dimen m3_comp_navigation_rail_active_indicator_height 0x7f07014a
+int dimen m3_comp_navigation_rail_active_indicator_width 0x7f07014b
+int dimen m3_comp_navigation_rail_container_elevation 0x7f07014c
+int dimen m3_comp_navigation_rail_container_width 0x7f07014d
+int dimen m3_comp_navigation_rail_focus_state_layer_opacity 0x7f07014e
+int dimen m3_comp_navigation_rail_hover_state_layer_opacity 0x7f07014f
+int dimen m3_comp_navigation_rail_icon_size 0x7f070150
+int dimen m3_comp_navigation_rail_pressed_state_layer_opacity 0x7f070151
+int dimen m3_comp_outlined_autocomplete_menu_container_elevation 0x7f070152
+int dimen m3_comp_outlined_button_disabled_outline_opacity 0x7f070153
+int dimen m3_comp_outlined_button_outline_width 0x7f070154
+int dimen m3_comp_outlined_card_container_elevation 0x7f070155
+int dimen m3_comp_outlined_card_disabled_outline_opacity 0x7f070156
+int dimen m3_comp_outlined_card_icon_size 0x7f070157
+int dimen m3_comp_outlined_card_outline_width 0x7f070158
+int dimen m3_comp_outlined_icon_button_unselected_outline_width 0x7f070159
+int dimen m3_comp_outlined_text_field_disabled_input_text_opacity 0x7f07015a
+int dimen m3_comp_outlined_text_field_disabled_label_text_opacity 0x7f07015b
+int dimen m3_comp_outlined_text_field_disabled_supporting_text_opacity 0x7f07015c
+int dimen m3_comp_outlined_text_field_focus_outline_width 0x7f07015d
+int dimen m3_comp_outlined_text_field_outline_width 0x7f07015e
+int dimen m3_comp_primary_navigation_tab_active_focus_state_layer_opacity 0x7f07015f
+int dimen m3_comp_primary_navigation_tab_active_hover_state_layer_opacity 0x7f070160
+int dimen m3_comp_primary_navigation_tab_active_indicator_height 0x7f070161
+int dimen m3_comp_primary_navigation_tab_active_pressed_state_layer_opacity 0x7f070162
+int dimen m3_comp_primary_navigation_tab_inactive_focus_state_layer_opacity 0x7f070163
+int dimen m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity 0x7f070164
+int dimen m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity 0x7f070165
+int dimen m3_comp_primary_navigation_tab_with_icon_icon_size 0x7f070166
+int dimen m3_comp_radio_button_disabled_selected_icon_opacity 0x7f070167
+int dimen m3_comp_radio_button_disabled_unselected_icon_opacity 0x7f070168
+int dimen m3_comp_radio_button_selected_focus_state_layer_opacity 0x7f070169
+int dimen m3_comp_radio_button_selected_hover_state_layer_opacity 0x7f07016a
+int dimen m3_comp_radio_button_selected_pressed_state_layer_opacity 0x7f07016b
+int dimen m3_comp_radio_button_unselected_focus_state_layer_opacity 0x7f07016c
+int dimen m3_comp_radio_button_unselected_hover_state_layer_opacity 0x7f07016d
+int dimen m3_comp_radio_button_unselected_pressed_state_layer_opacity 0x7f07016e
+int dimen m3_comp_search_bar_avatar_size 0x7f07016f
+int dimen m3_comp_search_bar_container_elevation 0x7f070170
+int dimen m3_comp_search_bar_container_height 0x7f070171
+int dimen m3_comp_search_bar_hover_state_layer_opacity 0x7f070172
+int dimen m3_comp_search_bar_pressed_state_layer_opacity 0x7f070173
+int dimen m3_comp_search_view_container_elevation 0x7f070174
+int dimen m3_comp_search_view_docked_header_container_height 0x7f070175
+int dimen m3_comp_search_view_full_screen_header_container_height 0x7f070176
+int dimen m3_comp_secondary_navigation_tab_active_indicator_height 0x7f070177
+int dimen m3_comp_secondary_navigation_tab_focus_state_layer_opacity 0x7f070178
+int dimen m3_comp_secondary_navigation_tab_hover_state_layer_opacity 0x7f070179
+int dimen m3_comp_secondary_navigation_tab_pressed_state_layer_opacity 0x7f07017a
+int dimen m3_comp_sheet_bottom_docked_drag_handle_height 0x7f07017b
+int dimen m3_comp_sheet_bottom_docked_drag_handle_width 0x7f07017c
+int dimen m3_comp_sheet_bottom_docked_modal_container_elevation 0x7f07017d
+int dimen m3_comp_sheet_bottom_docked_standard_container_elevation 0x7f07017e
+int dimen m3_comp_sheet_side_docked_container_width 0x7f07017f
+int dimen m3_comp_sheet_side_docked_modal_container_elevation 0x7f070180
+int dimen m3_comp_sheet_side_docked_standard_container_elevation 0x7f070181
+int dimen m3_comp_slider_disabled_active_track_opacity 0x7f070182
+int dimen m3_comp_slider_disabled_handle_opacity 0x7f070183
+int dimen m3_comp_slider_disabled_inactive_track_opacity 0x7f070184
+int dimen m3_comp_slider_inactive_track_height 0x7f070185
+int dimen m3_comp_snackbar_container_elevation 0x7f070186
+int dimen m3_comp_suggestion_chip_container_height 0x7f070187
+int dimen m3_comp_suggestion_chip_elevated_container_elevation 0x7f070188
+int dimen m3_comp_suggestion_chip_flat_container_elevation 0x7f070189
+int dimen m3_comp_suggestion_chip_flat_outline_width 0x7f07018a
+int dimen m3_comp_suggestion_chip_with_leading_icon_leading_icon_size 0x7f07018b
+int dimen m3_comp_switch_disabled_selected_handle_opacity 0x7f07018c
+int dimen m3_comp_switch_disabled_selected_icon_opacity 0x7f07018d
+int dimen m3_comp_switch_disabled_track_opacity 0x7f07018e
+int dimen m3_comp_switch_disabled_unselected_handle_opacity 0x7f07018f
+int dimen m3_comp_switch_disabled_unselected_icon_opacity 0x7f070190
+int dimen m3_comp_switch_selected_focus_state_layer_opacity 0x7f070191
+int dimen m3_comp_switch_selected_hover_state_layer_opacity 0x7f070192
+int dimen m3_comp_switch_selected_pressed_state_layer_opacity 0x7f070193
+int dimen m3_comp_switch_track_height 0x7f070194
+int dimen m3_comp_switch_track_width 0x7f070195
+int dimen m3_comp_switch_unselected_focus_state_layer_opacity 0x7f070196
+int dimen m3_comp_switch_unselected_hover_state_layer_opacity 0x7f070197
+int dimen m3_comp_switch_unselected_pressed_state_layer_opacity 0x7f070198
+int dimen m3_comp_text_button_focus_state_layer_opacity 0x7f070199
+int dimen m3_comp_text_button_hover_state_layer_opacity 0x7f07019a
+int dimen m3_comp_text_button_pressed_state_layer_opacity 0x7f07019b
+int dimen m3_comp_time_input_time_input_field_focus_outline_width 0x7f07019c
+int dimen m3_comp_time_picker_container_elevation 0x7f07019d
+int dimen m3_comp_time_picker_period_selector_focus_state_layer_opacity 0x7f07019e
+int dimen m3_comp_time_picker_period_selector_hover_state_layer_opacity 0x7f07019f
+int dimen m3_comp_time_picker_period_selector_outline_width 0x7f0701a0
+int dimen m3_comp_time_picker_period_selector_pressed_state_layer_opacity 0x7f0701a1
+int dimen m3_comp_time_picker_time_selector_focus_state_layer_opacity 0x7f0701a2
+int dimen m3_comp_time_picker_time_selector_hover_state_layer_opacity 0x7f0701a3
+int dimen m3_comp_time_picker_time_selector_pressed_state_layer_opacity 0x7f0701a4
+int dimen m3_comp_top_app_bar_large_container_height 0x7f0701a5
+int dimen m3_comp_top_app_bar_medium_container_height 0x7f0701a6
+int dimen m3_comp_top_app_bar_small_container_elevation 0x7f0701a7
+int dimen m3_comp_top_app_bar_small_container_height 0x7f0701a8
+int dimen m3_comp_top_app_bar_small_on_scroll_container_elevation 0x7f0701a9
+int dimen m3_datepicker_elevation 0x7f0701aa
+int dimen m3_divider_heavy_thickness 0x7f0701ab
+int dimen m3_extended_fab_bottom_padding 0x7f0701ac
+int dimen m3_extended_fab_end_padding 0x7f0701ad
+int dimen m3_extended_fab_icon_padding 0x7f0701ae
+int dimen m3_extended_fab_min_height 0x7f0701af
+int dimen m3_extended_fab_start_padding 0x7f0701b0
+int dimen m3_extended_fab_top_padding 0x7f0701b1
+int dimen m3_fab_border_width 0x7f0701b2
+int dimen m3_fab_corner_size 0x7f0701b3
+int dimen m3_fab_translation_z_hovered_focused 0x7f0701b4
+int dimen m3_fab_translation_z_pressed 0x7f0701b5
+int dimen m3_large_fab_max_image_size 0x7f0701b6
+int dimen m3_large_fab_size 0x7f0701b7
+int dimen m3_large_text_vertical_offset_adjustment 0x7f0701b8
+int dimen m3_menu_elevation 0x7f0701b9
+int dimen m3_nav_badge_with_text_vertical_offset 0x7f0701ba
+int dimen m3_navigation_drawer_layout_corner_size 0x7f0701bb
+int dimen m3_navigation_item_active_indicator_label_padding 0x7f0701bc
+int dimen m3_navigation_item_horizontal_padding 0x7f0701bd
+int dimen m3_navigation_item_icon_padding 0x7f0701be
+int dimen m3_navigation_item_shape_inset_bottom 0x7f0701bf
+int dimen m3_navigation_item_shape_inset_end 0x7f0701c0
+int dimen m3_navigation_item_shape_inset_start 0x7f0701c1
+int dimen m3_navigation_item_shape_inset_top 0x7f0701c2
+int dimen m3_navigation_item_vertical_padding 0x7f0701c3
+int dimen m3_navigation_menu_divider_horizontal_padding 0x7f0701c4
+int dimen m3_navigation_menu_headline_horizontal_padding 0x7f0701c5
+int dimen m3_navigation_rail_default_width 0x7f0701c6
+int dimen m3_navigation_rail_elevation 0x7f0701c7
+int dimen m3_navigation_rail_icon_size 0x7f0701c8
+int dimen m3_navigation_rail_item_active_indicator_height 0x7f0701c9
+int dimen m3_navigation_rail_item_active_indicator_margin_horizontal 0x7f0701ca
+int dimen m3_navigation_rail_item_active_indicator_width 0x7f0701cb
+int dimen m3_navigation_rail_item_min_height 0x7f0701cc
+int dimen m3_navigation_rail_item_padding_bottom 0x7f0701cd
+int dimen m3_navigation_rail_item_padding_bottom_with_large_font 0x7f0701ce
+int dimen m3_navigation_rail_item_padding_top 0x7f0701cf
+int dimen m3_navigation_rail_item_padding_top_with_large_font 0x7f0701d0
+int dimen m3_ripple_default_alpha 0x7f0701d1
+int dimen m3_ripple_focused_alpha 0x7f0701d2
+int dimen m3_ripple_hovered_alpha 0x7f0701d3
+int dimen m3_ripple_pressed_alpha 0x7f0701d4
+int dimen m3_ripple_selectable_pressed_alpha 0x7f0701d5
+int dimen m3_searchbar_elevation 0x7f0701d6
+int dimen m3_searchbar_height 0x7f0701d7
+int dimen m3_searchbar_margin_horizontal 0x7f0701d8
+int dimen m3_searchbar_margin_vertical 0x7f0701d9
+int dimen m3_searchbar_outlined_stroke_width 0x7f0701da
+int dimen m3_searchbar_padding_start 0x7f0701db
+int dimen m3_searchbar_text_margin_start_no_navigation_icon 0x7f0701dc
+int dimen m3_searchbar_text_size 0x7f0701dd
+int dimen m3_searchview_divider_size 0x7f0701de
+int dimen m3_searchview_elevation 0x7f0701df
+int dimen m3_searchview_height 0x7f0701e0
+int dimen m3_side_sheet_margin_detached 0x7f0701e1
+int dimen m3_side_sheet_modal_elevation 0x7f0701e2
+int dimen m3_side_sheet_standard_elevation 0x7f0701e3
+int dimen m3_side_sheet_width 0x7f0701e4
+int dimen m3_simple_item_color_hovered_alpha 0x7f0701e5
+int dimen m3_simple_item_color_selected_alpha 0x7f0701e6
+int dimen m3_slider_inactive_track_height 0x7f0701e7
+int dimen m3_slider_thumb_elevation 0x7f0701e8
+int dimen m3_small_fab_max_image_size 0x7f0701e9
+int dimen m3_small_fab_size 0x7f0701ea
+int dimen m3_snackbar_action_text_color_alpha 0x7f0701eb
+int dimen m3_snackbar_margin 0x7f0701ec
+int dimen m3_sys_elevation_level0 0x7f0701ed
+int dimen m3_sys_elevation_level1 0x7f0701ee
+int dimen m3_sys_elevation_level2 0x7f0701ef
+int dimen m3_sys_elevation_level3 0x7f0701f0
+int dimen m3_sys_elevation_level4 0x7f0701f1
+int dimen m3_sys_elevation_level5 0x7f0701f2
+int dimen m3_sys_motion_easing_emphasized_accelerate_control_x1 0x7f0701f3
+int dimen m3_sys_motion_easing_emphasized_accelerate_control_x2 0x7f0701f4
+int dimen m3_sys_motion_easing_emphasized_accelerate_control_y1 0x7f0701f5
+int dimen m3_sys_motion_easing_emphasized_accelerate_control_y2 0x7f0701f6
+int dimen m3_sys_motion_easing_emphasized_decelerate_control_x1 0x7f0701f7
+int dimen m3_sys_motion_easing_emphasized_decelerate_control_x2 0x7f0701f8
+int dimen m3_sys_motion_easing_emphasized_decelerate_control_y1 0x7f0701f9
+int dimen m3_sys_motion_easing_emphasized_decelerate_control_y2 0x7f0701fa
+int dimen m3_sys_motion_easing_legacy_accelerate_control_x1 0x7f0701fb
+int dimen m3_sys_motion_easing_legacy_accelerate_control_x2 0x7f0701fc
+int dimen m3_sys_motion_easing_legacy_accelerate_control_y1 0x7f0701fd
+int dimen m3_sys_motion_easing_legacy_accelerate_control_y2 0x7f0701fe
+int dimen m3_sys_motion_easing_legacy_control_x1 0x7f0701ff
+int dimen m3_sys_motion_easing_legacy_control_x2 0x7f070200
+int dimen m3_sys_motion_easing_legacy_control_y1 0x7f070201
+int dimen m3_sys_motion_easing_legacy_control_y2 0x7f070202
+int dimen m3_sys_motion_easing_legacy_decelerate_control_x1 0x7f070203
+int dimen m3_sys_motion_easing_legacy_decelerate_control_x2 0x7f070204
+int dimen m3_sys_motion_easing_legacy_decelerate_control_y1 0x7f070205
+int dimen m3_sys_motion_easing_legacy_decelerate_control_y2 0x7f070206
+int dimen m3_sys_motion_easing_linear_control_x1 0x7f070207
+int dimen m3_sys_motion_easing_linear_control_x2 0x7f070208
+int dimen m3_sys_motion_easing_linear_control_y1 0x7f070209
+int dimen m3_sys_motion_easing_linear_control_y2 0x7f07020a
+int dimen m3_sys_motion_easing_standard_accelerate_control_x1 0x7f07020b
+int dimen m3_sys_motion_easing_standard_accelerate_control_x2 0x7f07020c
+int dimen m3_sys_motion_easing_standard_accelerate_control_y1 0x7f07020d
+int dimen m3_sys_motion_easing_standard_accelerate_control_y2 0x7f07020e
+int dimen m3_sys_motion_easing_standard_control_x1 0x7f07020f
+int dimen m3_sys_motion_easing_standard_control_x2 0x7f070210
+int dimen m3_sys_motion_easing_standard_control_y1 0x7f070211
+int dimen m3_sys_motion_easing_standard_control_y2 0x7f070212
+int dimen m3_sys_motion_easing_standard_decelerate_control_x1 0x7f070213
+int dimen m3_sys_motion_easing_standard_decelerate_control_x2 0x7f070214
+int dimen m3_sys_motion_easing_standard_decelerate_control_y1 0x7f070215
+int dimen m3_sys_motion_easing_standard_decelerate_control_y2 0x7f070216
+int dimen m3_sys_state_dragged_state_layer_opacity 0x7f070217
+int dimen m3_sys_state_focus_state_layer_opacity 0x7f070218
+int dimen m3_sys_state_hover_state_layer_opacity 0x7f070219
+int dimen m3_sys_state_pressed_state_layer_opacity 0x7f07021a
+int dimen m3_timepicker_display_stroke_width 0x7f07021b
+int dimen m3_timepicker_window_elevation 0x7f07021c
+int dimen m3_toolbar_text_size_title 0x7f07021d
+int dimen material_bottom_sheet_max_width 0x7f07021e
+int dimen material_clock_display_height 0x7f07021f
+int dimen material_clock_display_padding 0x7f070220
+int dimen material_clock_display_width 0x7f070221
+int dimen material_clock_face_margin_bottom 0x7f070222
+int dimen material_clock_face_margin_top 0x7f070223
+int dimen material_clock_hand_center_dot_radius 0x7f070224
+int dimen material_clock_hand_padding 0x7f070225
+int dimen material_clock_hand_stroke_width 0x7f070226
+int dimen material_clock_number_text_size 0x7f070227
+int dimen material_clock_period_toggle_height 0x7f070228
+int dimen material_clock_period_toggle_horizontal_gap 0x7f070229
+int dimen material_clock_period_toggle_vertical_gap 0x7f07022a
+int dimen material_clock_period_toggle_width 0x7f07022b
+int dimen material_clock_size 0x7f07022c
+int dimen material_cursor_inset 0x7f07022d
+int dimen material_cursor_width 0x7f07022e
+int dimen material_divider_thickness 0x7f07022f
+int dimen material_emphasis_disabled 0x7f070230
+int dimen material_emphasis_disabled_background 0x7f070231
+int dimen material_emphasis_high_type 0x7f070232
+int dimen material_emphasis_medium 0x7f070233
+int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f070234
+int dimen material_filled_edittext_font_1_3_padding_top 0x7f070235
+int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f070236
+int dimen material_filled_edittext_font_2_0_padding_top 0x7f070237
+int dimen material_font_1_3_box_collapsed_padding_top 0x7f070238
+int dimen material_font_2_0_box_collapsed_padding_top 0x7f070239
+int dimen material_helper_text_default_padding_top 0x7f07023a
+int dimen material_helper_text_font_1_3_padding_horizontal 0x7f07023b
+int dimen material_helper_text_font_1_3_padding_top 0x7f07023c
+int dimen material_input_text_to_prefix_suffix_padding 0x7f07023d
+int dimen material_textinput_default_width 0x7f07023e
+int dimen material_textinput_max_width 0x7f07023f
+int dimen material_textinput_min_width 0x7f070240
+int dimen material_time_picker_minimum_screen_height 0x7f070241
+int dimen material_time_picker_minimum_screen_width 0x7f070242
+int dimen mtrl_alert_dialog_background_inset_bottom 0x7f070243
+int dimen mtrl_alert_dialog_background_inset_end 0x7f070244
+int dimen mtrl_alert_dialog_background_inset_start 0x7f070245
+int dimen mtrl_alert_dialog_background_inset_top 0x7f070246
+int dimen mtrl_alert_dialog_picker_background_inset 0x7f070247
+int dimen mtrl_badge_horizontal_edge_offset 0x7f070248
+int dimen mtrl_badge_long_text_horizontal_padding 0x7f070249
+int dimen mtrl_badge_size 0x7f07024a
+int dimen mtrl_badge_text_horizontal_edge_offset 0x7f07024b
+int dimen mtrl_badge_text_size 0x7f07024c
+int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f07024d
+int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f07024e
+int dimen mtrl_badge_with_text_size 0x7f07024f
+int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f070250
+int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f070251
+int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f070252
+int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f070253
+int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f070254
+int dimen mtrl_bottomappbar_height 0x7f070255
+int dimen mtrl_btn_corner_radius 0x7f070256
+int dimen mtrl_btn_dialog_btn_min_width 0x7f070257
+int dimen mtrl_btn_disabled_elevation 0x7f070258
+int dimen mtrl_btn_disabled_z 0x7f070259
+int dimen mtrl_btn_elevation 0x7f07025a
+int dimen mtrl_btn_focused_z 0x7f07025b
+int dimen mtrl_btn_hovered_z 0x7f07025c
+int dimen mtrl_btn_icon_btn_padding_left 0x7f07025d
+int dimen mtrl_btn_icon_padding 0x7f07025e
+int dimen mtrl_btn_inset 0x7f07025f
+int dimen mtrl_btn_letter_spacing 0x7f070260
+int dimen mtrl_btn_max_width 0x7f070261
+int dimen mtrl_btn_padding_bottom 0x7f070262
+int dimen mtrl_btn_padding_left 0x7f070263
+int dimen mtrl_btn_padding_right 0x7f070264
+int dimen mtrl_btn_padding_top 0x7f070265
+int dimen mtrl_btn_pressed_z 0x7f070266
+int dimen mtrl_btn_snackbar_margin_horizontal 0x7f070267
+int dimen mtrl_btn_stroke_size 0x7f070268
+int dimen mtrl_btn_text_btn_icon_padding 0x7f070269
+int dimen mtrl_btn_text_btn_padding_left 0x7f07026a
+int dimen mtrl_btn_text_btn_padding_right 0x7f07026b
+int dimen mtrl_btn_text_size 0x7f07026c
+int dimen mtrl_btn_z 0x7f07026d
+int dimen mtrl_calendar_action_confirm_button_min_width 0x7f07026e
+int dimen mtrl_calendar_action_height 0x7f07026f
+int dimen mtrl_calendar_action_padding 0x7f070270
+int dimen mtrl_calendar_bottom_padding 0x7f070271
+int dimen mtrl_calendar_content_padding 0x7f070272
+int dimen mtrl_calendar_day_corner 0x7f070273
+int dimen mtrl_calendar_day_height 0x7f070274
+int dimen mtrl_calendar_day_horizontal_padding 0x7f070275
+int dimen mtrl_calendar_day_today_stroke 0x7f070276
+int dimen mtrl_calendar_day_vertical_padding 0x7f070277
+int dimen mtrl_calendar_day_width 0x7f070278
+int dimen mtrl_calendar_days_of_week_height 0x7f070279
+int dimen mtrl_calendar_dialog_background_inset 0x7f07027a
+int dimen mtrl_calendar_header_content_padding 0x7f07027b
+int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f07027c
+int dimen mtrl_calendar_header_divider_thickness 0x7f07027d
+int dimen mtrl_calendar_header_height 0x7f07027e
+int dimen mtrl_calendar_header_height_fullscreen 0x7f07027f
+int dimen mtrl_calendar_header_selection_line_height 0x7f070280
+int dimen mtrl_calendar_header_text_padding 0x7f070281
+int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f070282
+int dimen mtrl_calendar_header_toggle_margin_top 0x7f070283
+int dimen mtrl_calendar_landscape_header_width 0x7f070284
+int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f070285
+int dimen mtrl_calendar_month_horizontal_padding 0x7f070286
+int dimen mtrl_calendar_month_vertical_padding 0x7f070287
+int dimen mtrl_calendar_navigation_bottom_padding 0x7f070288
+int dimen mtrl_calendar_navigation_height 0x7f070289
+int dimen mtrl_calendar_navigation_top_padding 0x7f07028a
+int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f07028b
+int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f07028c
+int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f07028d
+int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f07028e
+int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f07028f
+int dimen mtrl_calendar_text_input_padding_top 0x7f070290
+int dimen mtrl_calendar_title_baseline_to_top 0x7f070291
+int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f070292
+int dimen mtrl_calendar_year_corner 0x7f070293
+int dimen mtrl_calendar_year_height 0x7f070294
+int dimen mtrl_calendar_year_horizontal_padding 0x7f070295
+int dimen mtrl_calendar_year_vertical_padding 0x7f070296
+int dimen mtrl_calendar_year_width 0x7f070297
+int dimen mtrl_card_checked_icon_margin 0x7f070298
+int dimen mtrl_card_checked_icon_size 0x7f070299
+int dimen mtrl_card_corner_radius 0x7f07029a
+int dimen mtrl_card_dragged_z 0x7f07029b
+int dimen mtrl_card_elevation 0x7f07029c
+int dimen mtrl_card_spacing 0x7f07029d
+int dimen mtrl_chip_pressed_translation_z 0x7f07029e
+int dimen mtrl_chip_text_size 0x7f07029f
+int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f0702a0
+int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f0702a1
+int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f0702a2
+int dimen mtrl_extended_fab_bottom_padding 0x7f0702a3
+int dimen mtrl_extended_fab_disabled_elevation 0x7f0702a4
+int dimen mtrl_extended_fab_disabled_translation_z 0x7f0702a5
+int dimen mtrl_extended_fab_elevation 0x7f0702a6
+int dimen mtrl_extended_fab_end_padding 0x7f0702a7
+int dimen mtrl_extended_fab_end_padding_icon 0x7f0702a8
+int dimen mtrl_extended_fab_icon_size 0x7f0702a9
+int dimen mtrl_extended_fab_icon_text_spacing 0x7f0702aa
+int dimen mtrl_extended_fab_min_height 0x7f0702ab
+int dimen mtrl_extended_fab_min_width 0x7f0702ac
+int dimen mtrl_extended_fab_start_padding 0x7f0702ad
+int dimen mtrl_extended_fab_start_padding_icon 0x7f0702ae
+int dimen mtrl_extended_fab_top_padding 0x7f0702af
+int dimen mtrl_extended_fab_translation_z_base 0x7f0702b0
+int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f0702b1
+int dimen mtrl_extended_fab_translation_z_pressed 0x7f0702b2
+int dimen mtrl_fab_elevation 0x7f0702b3
+int dimen mtrl_fab_min_touch_target 0x7f0702b4
+int dimen mtrl_fab_translation_z_hovered_focused 0x7f0702b5
+int dimen mtrl_fab_translation_z_pressed 0x7f0702b6
+int dimen mtrl_high_ripple_default_alpha 0x7f0702b7
+int dimen mtrl_high_ripple_focused_alpha 0x7f0702b8
+int dimen mtrl_high_ripple_hovered_alpha 0x7f0702b9
+int dimen mtrl_high_ripple_pressed_alpha 0x7f0702ba
+int dimen mtrl_low_ripple_default_alpha 0x7f0702bb
+int dimen mtrl_low_ripple_focused_alpha 0x7f0702bc
+int dimen mtrl_low_ripple_hovered_alpha 0x7f0702bd
+int dimen mtrl_low_ripple_pressed_alpha 0x7f0702be
+int dimen mtrl_min_touch_target_size 0x7f0702bf
+int dimen mtrl_navigation_bar_item_default_icon_size 0x7f0702c0
+int dimen mtrl_navigation_bar_item_default_margin 0x7f0702c1
+int dimen mtrl_navigation_elevation 0x7f0702c2
+int dimen mtrl_navigation_item_horizontal_padding 0x7f0702c3
+int dimen mtrl_navigation_item_icon_padding 0x7f0702c4
+int dimen mtrl_navigation_item_icon_size 0x7f0702c5
+int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f0702c6
+int dimen mtrl_navigation_item_shape_vertical_margin 0x7f0702c7
+int dimen mtrl_navigation_rail_active_text_size 0x7f0702c8
+int dimen mtrl_navigation_rail_compact_width 0x7f0702c9
+int dimen mtrl_navigation_rail_default_width 0x7f0702ca
+int dimen mtrl_navigation_rail_elevation 0x7f0702cb
+int dimen mtrl_navigation_rail_icon_margin 0x7f0702cc
+int dimen mtrl_navigation_rail_icon_size 0x7f0702cd
+int dimen mtrl_navigation_rail_margin 0x7f0702ce
+int dimen mtrl_navigation_rail_text_bottom_margin 0x7f0702cf
+int dimen mtrl_navigation_rail_text_size 0x7f0702d0
+int dimen mtrl_progress_circular_inset 0x7f0702d1
+int dimen mtrl_progress_circular_inset_extra_small 0x7f0702d2
+int dimen mtrl_progress_circular_inset_medium 0x7f0702d3
+int dimen mtrl_progress_circular_inset_small 0x7f0702d4
+int dimen mtrl_progress_circular_radius 0x7f0702d5
+int dimen mtrl_progress_circular_size 0x7f0702d6
+int dimen mtrl_progress_circular_size_extra_small 0x7f0702d7
+int dimen mtrl_progress_circular_size_medium 0x7f0702d8
+int dimen mtrl_progress_circular_size_small 0x7f0702d9
+int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f0702da
+int dimen mtrl_progress_circular_track_thickness_medium 0x7f0702db
+int dimen mtrl_progress_circular_track_thickness_small 0x7f0702dc
+int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f0702dd
+int dimen mtrl_progress_track_thickness 0x7f0702de
+int dimen mtrl_shape_corner_size_large_component 0x7f0702df
+int dimen mtrl_shape_corner_size_medium_component 0x7f0702e0
+int dimen mtrl_shape_corner_size_small_component 0x7f0702e1
+int dimen mtrl_slider_halo_radius 0x7f0702e2
+int dimen mtrl_slider_label_padding 0x7f0702e3
+int dimen mtrl_slider_label_radius 0x7f0702e4
+int dimen mtrl_slider_label_square_side 0x7f0702e5
+int dimen mtrl_slider_thumb_elevation 0x7f0702e6
+int dimen mtrl_slider_thumb_radius 0x7f0702e7
+int dimen mtrl_slider_tick_radius 0x7f0702e8
+int dimen mtrl_slider_track_height 0x7f0702e9
+int dimen mtrl_slider_track_side_padding 0x7f0702ea
+int dimen mtrl_slider_widget_height 0x7f0702eb
+int dimen mtrl_snackbar_action_text_color_alpha 0x7f0702ec
+int dimen mtrl_snackbar_background_corner_radius 0x7f0702ed
+int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f0702ee
+int dimen mtrl_snackbar_margin 0x7f0702ef
+int dimen mtrl_snackbar_message_margin_horizontal 0x7f0702f0
+int dimen mtrl_snackbar_padding_horizontal 0x7f0702f1
+int dimen mtrl_switch_text_padding 0x7f0702f2
+int dimen mtrl_switch_thumb_elevation 0x7f0702f3
+int dimen mtrl_switch_thumb_icon_size 0x7f0702f4
+int dimen mtrl_switch_thumb_size 0x7f0702f5
+int dimen mtrl_switch_track_height 0x7f0702f6
+int dimen mtrl_switch_track_width 0x7f0702f7
+int dimen mtrl_textinput_box_corner_radius_medium 0x7f0702f8
+int dimen mtrl_textinput_box_corner_radius_small 0x7f0702f9
+int dimen mtrl_textinput_box_label_cutout_padding 0x7f0702fa
+int dimen mtrl_textinput_box_stroke_width_default 0x7f0702fb
+int dimen mtrl_textinput_box_stroke_width_focused 0x7f0702fc
+int dimen mtrl_textinput_counter_margin_start 0x7f0702fd
+int dimen mtrl_textinput_end_icon_margin_start 0x7f0702fe
+int dimen mtrl_textinput_outline_box_expanded_padding 0x7f0702ff
+int dimen mtrl_textinput_start_icon_margin_end 0x7f070300
+int dimen mtrl_toolbar_default_height 0x7f070301
+int dimen mtrl_tooltip_arrowSize 0x7f070302
+int dimen mtrl_tooltip_cornerSize 0x7f070303
+int dimen mtrl_tooltip_minHeight 0x7f070304
+int dimen mtrl_tooltip_minWidth 0x7f070305
+int dimen mtrl_tooltip_padding 0x7f070306
+int dimen mtrl_transition_shared_axis_slide_distance 0x7f070307
+int dimen notification_action_icon_size 0x7f070308
+int dimen notification_action_text_size 0x7f070309
+int dimen notification_big_circle_margin 0x7f07030a
+int dimen notification_content_margin_start 0x7f07030b
+int dimen notification_large_icon_height 0x7f07030c
+int dimen notification_large_icon_width 0x7f07030d
+int dimen notification_main_column_padding_top 0x7f07030e
+int dimen notification_media_narrow_margin 0x7f07030f
+int dimen notification_right_icon_size 0x7f070310
+int dimen notification_right_side_padding_top 0x7f070311
+int dimen notification_small_icon_background_padding 0x7f070312
+int dimen notification_small_icon_size_as_large 0x7f070313
+int dimen notification_subtext_size 0x7f070314
+int dimen notification_top_pad 0x7f070315
+int dimen notification_top_pad_large_text 0x7f070316
+int dimen preference_dropdown_padding_start 0x7f070317
+int dimen preference_icon_minWidth 0x7f070318
+int dimen preference_seekbar_padding_horizontal 0x7f070319
+int dimen preference_seekbar_padding_vertical 0x7f07031a
+int dimen preference_seekbar_value_minWidth 0x7f07031b
+int dimen preferences_detail_width 0x7f07031c
+int dimen preferences_header_width 0x7f07031d
+int dimen qrcode_size 0x7f07031e
+int dimen simple_menu_dialog_max_width 0x7f07031f
+int dimen simple_menu_margin 0x7f070320
+int dimen simple_menu_unit 0x7f070321
+int dimen tooltip_corner_radius 0x7f070322
+int dimen tooltip_horizontal_padding 0x7f070323
+int dimen tooltip_margin 0x7f070324
+int dimen tooltip_precise_anchor_extra_offset 0x7f070325
+int dimen tooltip_precise_anchor_threshold 0x7f070326
+int dimen tooltip_vertical_padding 0x7f070327
+int dimen tooltip_y_offset_non_touch 0x7f070328
+int dimen tooltip_y_offset_touch 0x7f070329
+int dimen touch_target_min 0x7f07032a
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f080029
+int drawable abc_action_bar_item_background_material 0x7f08002a
+int drawable abc_btn_borderless_material 0x7f08002b
+int drawable abc_btn_check_material 0x7f08002c
+int drawable abc_btn_check_material_anim 0x7f08002d
+int drawable abc_btn_check_to_on_mtrl_000 0x7f08002e
+int drawable abc_btn_check_to_on_mtrl_015 0x7f08002f
+int drawable abc_btn_colored_material 0x7f080030
+int drawable abc_btn_default_mtrl_shape 0x7f080031
+int drawable abc_btn_radio_material 0x7f080032
+int drawable abc_btn_radio_material_anim 0x7f080033
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f080034
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f080035
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f080036
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f080037
+int drawable abc_cab_background_internal_bg 0x7f080038
+int drawable abc_cab_background_top_material 0x7f080039
+int drawable abc_cab_background_top_mtrl_alpha 0x7f08003a
+int drawable abc_control_background_material 0x7f08003b
+int drawable abc_dialog_material_background 0x7f08003c
+int drawable abc_edit_text_material 0x7f08003d
+int drawable abc_ic_ab_back_material 0x7f08003e
+int drawable abc_ic_arrow_drop_right_black_24dp 0x7f08003f
+int drawable abc_ic_clear_material 0x7f080040
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080041
+int drawable abc_ic_go_search_api_material 0x7f080042
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f080043
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f080044
+int drawable abc_ic_menu_overflow_material 0x7f080045
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f080046
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f080047
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f080048
+int drawable abc_ic_search_api_material 0x7f080049
+int drawable abc_ic_voice_search_api_material 0x7f08004a
+int drawable abc_item_background_holo_dark 0x7f08004b
+int drawable abc_item_background_holo_light 0x7f08004c
+int drawable abc_list_divider_material 0x7f08004d
+int drawable abc_list_divider_mtrl_alpha 0x7f08004e
+int drawable abc_list_focused_holo 0x7f08004f
+int drawable abc_list_longpressed_holo 0x7f080050
+int drawable abc_list_pressed_holo_dark 0x7f080051
+int drawable abc_list_pressed_holo_light 0x7f080052
+int drawable abc_list_selector_background_transition_holo_dark 0x7f080053
+int drawable abc_list_selector_background_transition_holo_light 0x7f080054
+int drawable abc_list_selector_disabled_holo_dark 0x7f080055
+int drawable abc_list_selector_disabled_holo_light 0x7f080056
+int drawable abc_list_selector_holo_dark 0x7f080057
+int drawable abc_list_selector_holo_light 0x7f080058
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080059
+int drawable abc_popup_background_mtrl_mult 0x7f08005a
+int drawable abc_ratingbar_indicator_material 0x7f08005b
+int drawable abc_ratingbar_material 0x7f08005c
+int drawable abc_ratingbar_small_material 0x7f08005d
+int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08005e
+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08005f
+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f080060
+int drawable abc_scrubber_primary_mtrl_alpha 0x7f080061
+int drawable abc_scrubber_track_mtrl_alpha 0x7f080062
+int drawable abc_seekbar_thumb_material 0x7f080063
+int drawable abc_seekbar_tick_mark_material 0x7f080064
+int drawable abc_seekbar_track_material 0x7f080065
+int drawable abc_spinner_mtrl_am_alpha 0x7f080066
+int drawable abc_spinner_textfield_background_material 0x7f080067
+int drawable abc_star_black_48dp 0x7f080068
+int drawable abc_star_half_black_48dp 0x7f080069
+int drawable abc_switch_thumb_material 0x7f08006a
+int drawable abc_switch_track_mtrl_alpha 0x7f08006b
+int drawable abc_tab_indicator_material 0x7f08006c
+int drawable abc_tab_indicator_mtrl_alpha 0x7f08006d
+int drawable abc_text_cursor_material 0x7f08006e
+int drawable abc_text_select_handle_left_mtrl 0x7f08006f
+int drawable abc_text_select_handle_middle_mtrl 0x7f080070
+int drawable abc_text_select_handle_right_mtrl 0x7f080071
+int drawable abc_textfield_activated_mtrl_alpha 0x7f080072
+int drawable abc_textfield_default_mtrl_alpha 0x7f080073
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080074
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f080075
+int drawable abc_textfield_search_material 0x7f080076
+int drawable abc_vector_test 0x7f080077
+int drawable avd_hide_password 0x7f080078
+int drawable avd_show_password 0x7f080079
+int drawable btn_checkbox_checked_mtrl 0x7f08007a
+int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f08007b
+int drawable btn_checkbox_unchecked_mtrl 0x7f08007c
+int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f08007d
+int drawable btn_radio_off_mtrl 0x7f08007e
+int drawable btn_radio_off_to_on_mtrl_animation 0x7f08007f
+int drawable btn_radio_on_mtrl 0x7f080080
+int drawable btn_radio_on_to_off_mtrl_animation 0x7f080081
+int drawable common_full_open_on_phone 0x7f080082
+int drawable common_google_signin_btn_icon_dark 0x7f080083
+int drawable common_google_signin_btn_icon_dark_focused 0x7f080084
+int drawable common_google_signin_btn_icon_dark_normal 0x7f080085
+int drawable common_google_signin_btn_icon_dark_normal_background 0x7f080086
+int drawable common_google_signin_btn_icon_disabled 0x7f080087
+int drawable common_google_signin_btn_icon_light 0x7f080088
+int drawable common_google_signin_btn_icon_light_focused 0x7f080089
+int drawable common_google_signin_btn_icon_light_normal 0x7f08008a
+int drawable common_google_signin_btn_icon_light_normal_background 0x7f08008b
+int drawable common_google_signin_btn_text_dark 0x7f08008c
+int drawable common_google_signin_btn_text_dark_focused 0x7f08008d
+int drawable common_google_signin_btn_text_dark_normal 0x7f08008e
+int drawable common_google_signin_btn_text_dark_normal_background 0x7f08008f
+int drawable common_google_signin_btn_text_disabled 0x7f080090
+int drawable common_google_signin_btn_text_light 0x7f080091
+int drawable common_google_signin_btn_text_light_focused 0x7f080092
+int drawable common_google_signin_btn_text_light_normal 0x7f080093
+int drawable common_google_signin_btn_text_light_normal_background 0x7f080094
+int drawable design_fab_background 0x7f080095
+int drawable design_ic_visibility 0x7f080096
+int drawable design_ic_visibility_off 0x7f080097
+int drawable design_password_eye 0x7f080098
+int drawable design_snackbar_background 0x7f080099
+int drawable googleg_disabled_color_18 0x7f08009a
+int drawable googleg_standard_color_18 0x7f08009b
+int drawable ic_action_autorenew 0x7f08009c
+int drawable ic_action_bug_report 0x7f08009d
+int drawable ic_action_build 0x7f08009e
+int drawable ic_action_card_giftcard 0x7f08009f
+int drawable ic_action_code 0x7f0800a0
+int drawable ic_action_perm_scan_wifi 0x7f0800a1
+int drawable ic_action_settings 0x7f0800a2
+int drawable ic_action_settings_backup_restore 0x7f0800a3
+int drawable ic_action_settings_ethernet 0x7f0800a4
+int drawable ic_action_settings_input_antenna 0x7f0800a5
+int drawable ic_action_settings_input_component 0x7f0800a6
+int drawable ic_action_update 0x7f0800a7
+int drawable ic_action_wifi_protected_setup 0x7f0800a8
+int drawable ic_alert_warning 0x7f0800a9
+int drawable ic_arrow_back_black_24 0x7f0800aa
+int drawable ic_arrow_down_24dp 0x7f0800ab
+int drawable ic_av_closed_caption 0x7f0800ac
+int drawable ic_av_closed_caption_off 0x7f0800ad
+int drawable ic_call_answer 0x7f0800ae
+int drawable ic_call_answer_low 0x7f0800af
+int drawable ic_call_answer_video 0x7f0800b0
+int drawable ic_call_answer_video_low 0x7f0800b1
+int drawable ic_call_decline 0x7f0800b2
+int drawable ic_call_decline_low 0x7f0800b3
+int drawable ic_clear_black_24 0x7f0800b4
+int drawable ic_clock_black_24dp 0x7f0800b5
+int drawable ic_content_add 0x7f0800b6
+int drawable ic_content_file_copy 0x7f0800b7
+int drawable ic_content_inbox 0x7f0800b8
+int drawable ic_device_battery_charging_full 0x7f0800b9
+int drawable ic_device_bluetooth 0x7f0800ba
+int drawable ic_device_devices 0x7f0800bb
+int drawable ic_device_network_wifi 0x7f0800bc
+int drawable ic_device_usb 0x7f0800bd
+int drawable ic_device_wifi_lock 0x7f0800be
+int drawable ic_device_wifi_tethering 0x7f0800bf
+int drawable ic_file_downloading 0x7f0800c0
+int drawable ic_hardware_device_hub 0x7f0800c1
+int drawable ic_image_flash_on 0x7f0800c2
+int drawable ic_image_looks_6 0x7f0800c3
+int drawable ic_image_remove_red_eye 0x7f0800c4
+int drawable ic_keyboard_black_24dp 0x7f0800c5
+int drawable ic_launcher_background 0x7f0800c6
+int drawable ic_launcher_foreground 0x7f0800c7
+int drawable ic_launcher_monochrome 0x7f0800c8
+int drawable ic_m3_chip_check 0x7f0800c9
+int drawable ic_m3_chip_checked_circle 0x7f0800ca
+int drawable ic_m3_chip_close 0x7f0800cb
+int drawable ic_mtrl_checked_circle 0x7f0800cc
+int drawable ic_mtrl_chip_checked_black 0x7f0800cd
+int drawable ic_mtrl_chip_checked_circle 0x7f0800ce
+int drawable ic_mtrl_chip_close_circle 0x7f0800cf
+int drawable ic_quick_settings_tile_on 0x7f0800d0
+int drawable ic_search_black_24 0x7f0800d1
+int drawable ic_settings_qrcode 0x7f0800d2
+int drawable ic_social_people 0x7f0800d3
+int drawable ic_toggle_star 0x7f0800d4
+int drawable m3_avd_hide_password 0x7f0800d5
+int drawable m3_avd_show_password 0x7f0800d6
+int drawable m3_bottom_sheet_drag_handle 0x7f0800d7
+int drawable m3_password_eye 0x7f0800d8
+int drawable m3_popupmenu_background_overlay 0x7f0800d9
+int drawable m3_radiobutton_ripple 0x7f0800da
+int drawable m3_selection_control_ripple 0x7f0800db
+int drawable m3_tabs_background 0x7f0800dc
+int drawable m3_tabs_line_indicator 0x7f0800dd
+int drawable m3_tabs_rounded_line_indicator 0x7f0800de
+int drawable m3_tabs_transparent_background 0x7f0800df
+int drawable material_cursor_drawable 0x7f0800e0
+int drawable material_ic_calendar_black_24dp 0x7f0800e1
+int drawable material_ic_clear_black_24dp 0x7f0800e2
+int drawable material_ic_edit_black_24dp 0x7f0800e3
+int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f0800e4
+int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f0800e5
+int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f0800e6
+int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f0800e7
+int drawable material_ic_menu_arrow_down_black_24dp 0x7f0800e8
+int drawable material_ic_menu_arrow_up_black_24dp 0x7f0800e9
+int drawable mtrl_bottomsheet_drag_handle 0x7f0800ea
+int drawable mtrl_checkbox_button 0x7f0800eb
+int drawable mtrl_checkbox_button_checked_unchecked 0x7f0800ec
+int drawable mtrl_checkbox_button_icon 0x7f0800ed
+int drawable mtrl_checkbox_button_icon_checked_indeterminate 0x7f0800ee
+int drawable mtrl_checkbox_button_icon_checked_unchecked 0x7f0800ef
+int drawable mtrl_checkbox_button_icon_indeterminate_checked 0x7f0800f0
+int drawable mtrl_checkbox_button_icon_indeterminate_unchecked 0x7f0800f1
+int drawable mtrl_checkbox_button_icon_unchecked_checked 0x7f0800f2
+int drawable mtrl_checkbox_button_icon_unchecked_indeterminate 0x7f0800f3
+int drawable mtrl_checkbox_button_unchecked_checked 0x7f0800f4
+int drawable mtrl_dialog_background 0x7f0800f5
+int drawable mtrl_dropdown_arrow 0x7f0800f6
+int drawable mtrl_ic_arrow_drop_down 0x7f0800f7
+int drawable mtrl_ic_arrow_drop_up 0x7f0800f8
+int drawable mtrl_ic_cancel 0x7f0800f9
+int drawable mtrl_ic_check_mark 0x7f0800fa
+int drawable mtrl_ic_checkbox_checked 0x7f0800fb
+int drawable mtrl_ic_checkbox_unchecked 0x7f0800fc
+int drawable mtrl_ic_error 0x7f0800fd
+int drawable mtrl_ic_indeterminate 0x7f0800fe
+int drawable mtrl_navigation_bar_item_background 0x7f0800ff
+int drawable mtrl_popupmenu_background 0x7f080100
+int drawable mtrl_popupmenu_background_overlay 0x7f080101
+int drawable mtrl_switch_thumb 0x7f080102
+int drawable mtrl_switch_thumb_checked 0x7f080103
+int drawable mtrl_switch_thumb_checked_pressed 0x7f080104
+int drawable mtrl_switch_thumb_checked_unchecked 0x7f080105
+int drawable mtrl_switch_thumb_pressed 0x7f080106
+int drawable mtrl_switch_thumb_pressed_checked 0x7f080107
+int drawable mtrl_switch_thumb_pressed_unchecked 0x7f080108
+int drawable mtrl_switch_thumb_unchecked 0x7f080109
+int drawable mtrl_switch_thumb_unchecked_checked 0x7f08010a
+int drawable mtrl_switch_thumb_unchecked_pressed 0x7f08010b
+int drawable mtrl_switch_track 0x7f08010c
+int drawable mtrl_switch_track_decoration 0x7f08010d
+int drawable mtrl_tabs_default_indicator 0x7f08010e
+int drawable navigation_empty_icon 0x7f08010f
+int drawable notification_action_background 0x7f080110
+int drawable notification_bg 0x7f080111
+int drawable notification_bg_low 0x7f080112
+int drawable notification_bg_low_normal 0x7f080113
+int drawable notification_bg_low_pressed 0x7f080114
+int drawable notification_bg_normal 0x7f080115
+int drawable notification_bg_normal_pressed 0x7f080116
+int drawable notification_icon_background 0x7f080117
+int drawable notification_oversize_large_icon_bg 0x7f080118
+int drawable notification_template_icon_bg 0x7f080119
+int drawable notification_template_icon_low_bg 0x7f08011a
+int drawable notification_tile_bg 0x7f08011b
+int drawable notify_panel_notification_icon_bg 0x7f08011c
+int drawable preference_list_divider_material 0x7f08011d
+int drawable simple_menu_background 0x7f08011e
+int drawable simple_menu_item_background 0x7f08011f
+int drawable test_level_drawable 0x7f080120
+int drawable toggle_hex 0x7f080121
+int drawable tooltip_frame_dark 0x7f080122
+int drawable tooltip_frame_light 0x7f080123
+int id ALT 0x7f090000
+int id BOTTOM_END 0x7f090001
+int id BOTTOM_START 0x7f090002
+int id CTRL 0x7f090003
+int id FUNCTION 0x7f090004
+int id META 0x7f090005
+int id NO_DEBUG 0x7f090006
+int id SHIFT 0x7f090007
+int id SHOW_ALL 0x7f090008
+int id SHOW_PATH 0x7f090009
+int id SHOW_PROGRESS 0x7f09000a
+int id SYM 0x7f09000b
+int id TOP_END 0x7f09000c
+int id TOP_START 0x7f09000d
+int id accelerate 0x7f09000e
+int id access_control_group 0x7f09000f
+int id accessibility_action_clickable_span 0x7f090010
+int id accessibility_custom_action_0 0x7f090011
+int id accessibility_custom_action_1 0x7f090012
+int id accessibility_custom_action_10 0x7f090013
+int id accessibility_custom_action_11 0x7f090014
+int id accessibility_custom_action_12 0x7f090015
+int id accessibility_custom_action_13 0x7f090016
+int id accessibility_custom_action_14 0x7f090017
+int id accessibility_custom_action_15 0x7f090018
+int id accessibility_custom_action_16 0x7f090019
+int id accessibility_custom_action_17 0x7f09001a
+int id accessibility_custom_action_18 0x7f09001b
+int id accessibility_custom_action_19 0x7f09001c
+int id accessibility_custom_action_2 0x7f09001d
+int id accessibility_custom_action_20 0x7f09001e
+int id accessibility_custom_action_21 0x7f09001f
+int id accessibility_custom_action_22 0x7f090020
+int id accessibility_custom_action_23 0x7f090021
+int id accessibility_custom_action_24 0x7f090022
+int id accessibility_custom_action_25 0x7f090023
+int id accessibility_custom_action_26 0x7f090024
+int id accessibility_custom_action_27 0x7f090025
+int id accessibility_custom_action_28 0x7f090026
+int id accessibility_custom_action_29 0x7f090027
+int id accessibility_custom_action_3 0x7f090028
+int id accessibility_custom_action_30 0x7f090029
+int id accessibility_custom_action_31 0x7f09002a
+int id accessibility_custom_action_4 0x7f09002b
+int id accessibility_custom_action_5 0x7f09002c
+int id accessibility_custom_action_6 0x7f09002d
+int id accessibility_custom_action_7 0x7f09002e
+int id accessibility_custom_action_8 0x7f09002f
+int id accessibility_custom_action_9 0x7f090030
+int id acs_2g 0x7f090031
+int id acs_2g_wrapper 0x7f090032
+int id acs_5g 0x7f090033
+int id acs_5g_wrapper 0x7f090034
+int id acs_6g 0x7f090035
+int id acs_6g_wrapper 0x7f090036
+int id action_bar 0x7f090037
+int id action_bar_activity_content 0x7f090038
+int id action_bar_container 0x7f090039
+int id action_bar_root 0x7f09003a
+int id action_bar_spinner 0x7f09003b
+int id action_bar_subtitle 0x7f09003c
+int id action_bar_title 0x7f09003d
+int id action_container 0x7f09003e
+int id action_context_bar 0x7f09003f
+int id action_divider 0x7f090040
+int id action_image 0x7f090041
+int id action_menu_divider 0x7f090042
+int id action_menu_presenter 0x7f090043
+int id action_mode_bar 0x7f090044
+int id action_mode_bar_stub 0x7f090045
+int id action_mode_close_button 0x7f090046
+int id action_text 0x7f090047
+int id actions 0x7f090048
+int id activity_chooser_view_content 0x7f090049
+int id add 0x7f09004a
+int id addresses 0x7f09004b
+int id adjust_height 0x7f09004c
+int id adjust_width 0x7f09004d
+int id advanced_ap_group 0x7f09004e
+int id alertTitle 0x7f09004f
+int id aligned 0x7f090050
+int id all 0x7f090051
+int id allowed_list 0x7f090052
+int id allowed_list_wrapper 0x7f090053
+int id always 0x7f090054
+int id androidx_window_activity_scope 0x7f090055
+int id animateToEnd 0x7f090056
+int id animateToStart 0x7f090057
+int id arc 0x7f090058
+int id asConfigured 0x7f090059
+int id async 0x7f09005a
+int id auto 0x7f09005b
+int id autoComplete 0x7f09005c
+int id autoCompleteToEnd 0x7f09005d
+int id autoCompleteToStart 0x7f09005e
+int id auto_shutdown 0x7f09005f
+int id band_error 0x7f090060
+int id band_group 0x7f090061
+int id band_primary 0x7f090062
+int id band_secondary 0x7f090063
+int id barrier 0x7f090064
+int id baseline 0x7f090065
+int id beginOnFirstDraw 0x7f090066
+int id beginning 0x7f090067
+int id block 0x7f090068
+int id blocked_list 0x7f090069
+int id blocked_list_wrapper 0x7f09006a
+int id blocking 0x7f09006b
+int id bottom 0x7f09006c
+int id bounce 0x7f09006d
+int id bridged_mode_opportunistic_shutdown 0x7f09006e
+int id bridged_timeout 0x7f09006f
+int id bridged_timeout_wrapper 0x7f090070
+int id browser_actions_header_text 0x7f090071
+int id browser_actions_menu_item_icon 0x7f090072
+int id browser_actions_menu_item_text 0x7f090073
+int id browser_actions_menu_items 0x7f090074
+int id browser_actions_menu_view 0x7f090075
+int id bssid 0x7f090076
+int id bssid_wrapper 0x7f090077
+int id buttonPanel 0x7f090078
+int id cancel_button 0x7f090079
+int id center 0x7f09007a
+int id centerCrop 0x7f09007b
+int id centerInside 0x7f09007c
+int id center_horizontal 0x7f09007d
+int id center_vertical 0x7f09007e
+int id chain 0x7f09007f
+int id chains 0x7f090080
+int id checkbox 0x7f090081
+int id checked 0x7f090082
+int id chronometer 0x7f090083
+int id circle_center 0x7f090084
+int id clear_text 0x7f090085
+int id client_user_control 0x7f090086
+int id clients 0x7f090087
+int id clip_horizontal 0x7f090088
+int id clip_vertical 0x7f090089
+int id clockwise 0x7f09008a
+int id collapseActionView 0x7f09008b
+int id compress 0x7f09008c
+int id configuration 0x7f09008d
+int id configuration_ap 0x7f09008e
+int id configuration_repeater 0x7f09008f
+int id configuration_temp_hotspot 0x7f090090
+int id confirm_button 0x7f090091
+int id container 0x7f090092
+int id content 0x7f090093
+int id contentPanel 0x7f090094
+int id contiguous 0x7f090095
+int id coordinator 0x7f090096
+int id cos 0x7f090097
+int id counterclockwise 0x7f090098
+int id cradle 0x7f090099
+int id custom 0x7f09009a
+int id customPanel 0x7f09009b
+int id cut 0x7f09009c
+int id dark 0x7f09009d
+int id dataBinding 0x7f09009e
+int id date_picker_actions 0x7f09009f
+int id decelerate 0x7f0900a0
+int id decelerateAndComplete 0x7f0900a1
+int id decor_content_parent 0x7f0900a2
+int id default_activity_button 0x7f0900a3
+int id deltaRelative 0x7f0900a4
+int id description 0x7f0900a5
+int id design_bottom_sheet 0x7f0900a6
+int id design_menu_item_action_area 0x7f0900a7
+int id design_menu_item_action_area_stub 0x7f0900a8
+int id design_menu_item_text 0x7f0900a9
+int id design_navigation_view 0x7f0900aa
+int id dialog_button 0x7f0900ab
+int id dimensions 0x7f0900ac
+int id direct 0x7f0900ad
+int id disableHome 0x7f0900ae
+int id disablePostScroll 0x7f0900af
+int id disableScroll 0x7f0900b0
+int id disjoint 0x7f0900b1
+int id donations__google 0x7f0900b2
+int id donations__google_android_market_donate_button 0x7f0900b3
+int id donations__google_android_market_spinner 0x7f0900b4
+int id donations__more_donate_button 0x7f0900b5
+int id dragDown 0x7f0900b6
+int id dragEnd 0x7f0900b7
+int id dragLeft 0x7f0900b8
+int id dragRight 0x7f0900b9
+int id dragStart 0x7f0900ba
+int id dragUp 0x7f0900bb
+int id dropdown_menu 0x7f0900bc
+int id easeIn 0x7f0900bd
+int id easeInOut 0x7f0900be
+int id easeOut 0x7f0900bf
+int id edge 0x7f0900c0
+int id edit_query 0x7f0900c1
+int id edit_text_id 0x7f0900c2
+int id elastic 0x7f0900c3
+int id embed 0x7f0900c4
+int id end 0x7f0900c5
+int id endToStart 0x7f0900c6
+int id enterAlways 0x7f0900c7
+int id enterAlwaysCollapsed 0x7f0900c8
+int id exitUntilCollapsed 0x7f0900c9
+int id expand_activities_button 0x7f0900ca
+int id expanded_menu 0x7f0900cb
+int id fade 0x7f0900cc
+int id fill 0x7f0900cd
+int id fill_horizontal 0x7f0900ce
+int id fill_vertical 0x7f0900cf
+int id filled 0x7f0900d0
+int id fitCenter 0x7f0900d1
+int id fitEnd 0x7f0900d2
+int id fitStart 0x7f0900d3
+int id fitToContents 0x7f0900d4
+int id fitXY 0x7f0900d5
+int id fixed 0x7f0900d6
+int id flip 0x7f0900d7
+int id floating 0x7f0900d8
+int id forever 0x7f0900d9
+int id fragmentHolder 0x7f0900da
+int id fragment_container_view_tag 0x7f0900db
+int id fullscreen_header 0x7f0900dc
+int id ghost_view 0x7f0900dd
+int id ghost_view_holder 0x7f0900de
+int id gone 0x7f0900df
+int id graph 0x7f0900e0
+int id graph_wrap 0x7f0900e1
+int id group_divider 0x7f0900e2
+int id groups 0x7f0900e3
+int id header_title 0x7f0900e4
+int id hidden_ssid 0x7f0900e5
+int id hide_ime_id 0x7f0900e6
+int id hideable 0x7f0900e7
+int id home 0x7f0900e8
+int id homeAsUp 0x7f0900e9
+int id honorRequest 0x7f0900ea
+int id icon 0x7f0900eb
+int id icon_frame 0x7f0900ec
+int id icon_group 0x7f0900ed
+int id icon_only 0x7f0900ee
+int id ieee_80211ax 0x7f0900ef
+int id ieee_80211be 0x7f0900f0
+int id ifRoom 0x7f0900f1
+int id ignore 0x7f0900f2
+int id ignoreRequest 0x7f0900f3
+int id image 0x7f0900f4
+int id indeterminate 0x7f0900f5
+int id info 0x7f0900f6
+int id interfaces 0x7f0900f7
+int id invalid 0x7f0900f8
+int id invisible 0x7f0900f9
+int id inward 0x7f0900fa
+int id italic 0x7f0900fb
+int id item_touch_helper_previous_elevation 0x7f0900fc
+int id jumpToEnd 0x7f0900fd
+int id jumpToStart 0x7f0900fe
+int id labeled 0x7f0900ff
+int id layout 0x7f090100
+int id left 0x7f090101
+int id leftToRight 0x7f090102
+int id legacy 0x7f090103
+int id license 0x7f090104
+int id license_activity_scrollview 0x7f090105
+int id license_activity_textview 0x7f090106
+int id license_list 0x7f090107
+int id light 0x7f090108
+int id line1 0x7f090109
+int id line3 0x7f09010a
+int id linear 0x7f09010b
+int id listMode 0x7f09010c
+int id list_item 0x7f09010d
+int id locale 0x7f09010e
+int id ltr 0x7f09010f
+int id m3_side_sheet 0x7f090110
+int id mac_randomization 0x7f090111
+int id mac_randomization_wrapper 0x7f090112
+int id marquee 0x7f090113
+int id masked 0x7f090114
+int id match_parent 0x7f090115
+int id material_clock_display 0x7f090116
+int id material_clock_display_and_toggle 0x7f090117
+int id material_clock_face 0x7f090118
+int id material_clock_hand 0x7f090119
+int id material_clock_level 0x7f09011a
+int id material_clock_period_am_button 0x7f09011b
+int id material_clock_period_pm_button 0x7f09011c
+int id material_clock_period_toggle 0x7f09011d
+int id material_hour_text_input 0x7f09011e
+int id material_hour_tv 0x7f09011f
+int id material_label 0x7f090120
+int id material_minute_text_input 0x7f090121
+int id material_minute_tv 0x7f090122
+int id material_textinput_timepicker 0x7f090123
+int id material_timepicker_cancel_button 0x7f090124
+int id material_timepicker_container 0x7f090125
+int id material_timepicker_mode_button 0x7f090126
+int id material_timepicker_ok_button 0x7f090127
+int id material_timepicker_view 0x7f090128
+int id material_value_index 0x7f090129
+int id matrix 0x7f09012a
+int id max_channel_bandwidth 0x7f09012b
+int id max_channel_bandwidth_error 0x7f09012c
+int id max_channel_bandwidth_wrapper 0x7f09012d
+int id max_client 0x7f09012e
+int id max_client_wrapper 0x7f09012f
+int id message 0x7f090130
+int id middle 0x7f090131
+int id mini 0x7f090132
+int id monitor 0x7f090133
+int id month_grid 0x7f090134
+int id month_navigation_bar 0x7f090135
+int id month_navigation_fragment_toggle 0x7f090136
+int id month_navigation_next 0x7f090137
+int id month_navigation_previous 0x7f090138
+int id month_title 0x7f090139
+int id motion_base 0x7f09013a
+int id mtrl_anchor_parent 0x7f09013b
+int id mtrl_calendar_day_selector_frame 0x7f09013c
+int id mtrl_calendar_days_of_week 0x7f09013d
+int id mtrl_calendar_frame 0x7f09013e
+int id mtrl_calendar_main_pane 0x7f09013f
+int id mtrl_calendar_months 0x7f090140
+int id mtrl_calendar_selection_frame 0x7f090141
+int id mtrl_calendar_text_input_frame 0x7f090142
+int id mtrl_calendar_year_selector_frame 0x7f090143
+int id mtrl_card_checked_layer_id 0x7f090144
+int id mtrl_child_content_container 0x7f090145
+int id mtrl_internal_children_alpha_tag 0x7f090146
+int id mtrl_motion_snapshot_view 0x7f090147
+int id mtrl_picker_fullscreen 0x7f090148
+int id mtrl_picker_header 0x7f090149
+int id mtrl_picker_header_selection_text 0x7f09014a
+int id mtrl_picker_header_title_and_selection 0x7f09014b
+int id mtrl_picker_header_toggle 0x7f09014c
+int id mtrl_picker_text_input_date 0x7f09014d
+int id mtrl_picker_text_input_range_end 0x7f09014e
+int id mtrl_picker_text_input_range_start 0x7f09014f
+int id mtrl_picker_title_text 0x7f090150
+int id mtrl_view_tag_bottom_padding 0x7f090151
+int id multiply 0x7f090152
+int id navigation 0x7f090153
+int id navigation_bar_item_active_indicator_view 0x7f090154
+int id navigation_bar_item_icon_container 0x7f090155
+int id navigation_bar_item_icon_view 0x7f090156
+int id navigation_bar_item_labels_group 0x7f090157
+int id navigation_bar_item_large_label_view 0x7f090158
+int id navigation_bar_item_small_label_view 0x7f090159
+int id navigation_clients 0x7f09015a
+int id navigation_header_container 0x7f09015b
+int id navigation_settings 0x7f09015c
+int id navigation_tethering 0x7f09015d
+int id navigation_update 0x7f09015e
+int id never 0x7f09015f
+int id nickname 0x7f090160
+int id noScroll 0x7f090161
+int id no_licenses_text 0x7f090162
+int id none 0x7f090163
+int id normal 0x7f090164
+int id notification_background 0x7f090165
+int id notification_main_column 0x7f090166
+int id notification_main_column_container 0x7f090167
+int id off 0x7f090168
+int id offloadEnabled 0x7f090169
+int id on 0x7f09016a
+int id onAttachStateChangeListener 0x7f09016b
+int id onDateChanged 0x7f09016c
+int id open_search_bar_text_view 0x7f09016d
+int id open_search_view_background 0x7f09016e
+int id open_search_view_clear_button 0x7f09016f
+int id open_search_view_content_container 0x7f090170
+int id open_search_view_divider 0x7f090171
+int id open_search_view_dummy_toolbar 0x7f090172
+int id open_search_view_edit_text 0x7f090173
+int id open_search_view_header_container 0x7f090174
+int id open_search_view_root 0x7f090175
+int id open_search_view_scrim 0x7f090176
+int id open_search_view_search_prefix 0x7f090177
+int id open_search_view_status_bar_spacer 0x7f090178
+int id open_search_view_toolbar 0x7f090179
+int id open_search_view_toolbar_container 0x7f09017a
+int id outline 0x7f09017b
+int id outward 0x7f09017c
+int id packed 0x7f09017d
+int id parallax 0x7f09017e
+int id parent 0x7f09017f
+int id parentPanel 0x7f090180
+int id parentRelative 0x7f090181
+int id parent_matrix 0x7f090182
+int id password 0x7f090183
+int id password_toggle 0x7f090184
+int id password_wrapper 0x7f090185
+int id path 0x7f090186
+int id pathRelative 0x7f090187
+int id peekHeight 0x7f090188
+int id percent 0x7f090189
+int id persistent_randomized_mac 0x7f09018a
+int id persistent_randomized_mac_wrapper 0x7f09018b
+int id pin 0x7f09018c
+int id position 0x7f09018d
+int id postLayout 0x7f09018e
+int id preferences_detail 0x7f09018f
+int id preferences_header 0x7f090190
+int id preferences_sliding_pane_layout 0x7f090191
+int id pressed 0x7f090192
+int id progress_circular 0x7f090193
+int id progress_horizontal 0x7f090194
+int id radio 0x7f090195
+int id ratio 0x7f090196
+int id rectangles 0x7f090197
+int id recycler_view 0x7f090198
+int id report_drawn 0x7f090199
+int id reverseSawtooth 0x7f09019a
+int id right 0x7f09019b
+int id rightToLeft 0x7f09019c
+int id right_icon 0x7f09019d
+int id right_side 0x7f09019e
+int id rounded 0x7f09019f
+int id row_index_key 0x7f0901a0
+int id rtl 0x7f0901a1
+int id save_non_transition_alpha 0x7f0901a2
+int id save_overlay_view 0x7f0901a3
+int id sawtooth 0x7f0901a4
+int id scale 0x7f0901a5
+int id screen 0x7f0901a6
+int id scroll 0x7f0901a7
+int id scrollIndicatorDown 0x7f0901a8
+int id scrollIndicatorUp 0x7f0901a9
+int id scrollView 0x7f0901aa
+int id scrollable 0x7f0901ab
+int id search_badge 0x7f0901ac
+int id search_bar 0x7f0901ad
+int id search_button 0x7f0901ae
+int id search_close_btn 0x7f0901af
+int id search_edit_frame 0x7f0901b0
+int id search_go_btn 0x7f0901b1
+int id search_mag_icon 0x7f0901b2
+int id search_plate 0x7f0901b3
+int id search_src_text 0x7f0901b4
+int id search_voice_btn 0x7f0901b5
+int id security 0x7f0901b6
+int id security_wrapper 0x7f0901b7
+int id seekbar 0x7f0901b8
+int id seekbar_value 0x7f0901b9
+int id select_dialog_listview 0x7f0901ba
+int id selected 0x7f0901bb
+int id selection_type 0x7f0901bc
+int id share_qr 0x7f0901bd
+int id shortcut 0x7f0901be
+int id showCustom 0x7f0901bf
+int id showHome 0x7f0901c0
+int id showTitle 0x7f0901c1
+int id sin 0x7f0901c2
+int id skipCollapsed 0x7f0901c3
+int id slide 0x7f0901c4
+int id snackbar_action 0x7f0901c5
+int id snackbar_text 0x7f0901c6
+int id snap 0x7f0901c7
+int id snapMargins 0x7f0901c8
+int id spacer 0x7f0901c9
+int id special_effects_controller_view_tag 0x7f0901ca
+int id spinner 0x7f0901cb
+int id spline 0x7f0901cc
+int id split_action_bar 0x7f0901cd
+int id spread 0x7f0901ce
+int id spread_inside 0x7f0901cf
+int id square 0x7f0901d0
+int id src_atop 0x7f0901d1
+int id src_in 0x7f0901d2
+int id src_over 0x7f0901d3
+int id ssid 0x7f0901d4
+int id ssid_wrapper 0x7f0901d5
+int id standard 0x7f0901d6
+int id start 0x7f0901d7
+int id startHorizontal 0x7f0901d8
+int id startToEnd 0x7f0901d9
+int id startVertical 0x7f0901da
+int id staticLayout 0x7f0901db
+int id staticPostLayout 0x7f0901dc
+int id stats 0x7f0901dd
+int id stop 0x7f0901de
+int id stretch 0x7f0901df
+int id submenuarrow 0x7f0901e0
+int id submit_area 0x7f0901e1
+int id swipeRefresher 0x7f0901e2
+int id switchWidget 0x7f0901e3
+int id tabMode 0x7f0901e4
+int id tag_accessibility_actions 0x7f0901e5
+int id tag_accessibility_clickable_spans 0x7f0901e6
+int id tag_accessibility_heading 0x7f0901e7
+int id tag_accessibility_pane_title 0x7f0901e8
+int id tag_on_apply_window_listener 0x7f0901e9
+int id tag_on_receive_content_listener 0x7f0901ea
+int id tag_on_receive_content_mime_types 0x7f0901eb
+int id tag_screen_reader_focusable 0x7f0901ec
+int id tag_state_description 0x7f0901ed
+int id tag_transition_group 0x7f0901ee
+int id tag_unhandled_key_event_manager 0x7f0901ef
+int id tag_unhandled_key_listeners 0x7f0901f0
+int id tag_window_insets_animation_callback 0x7f0901f1
+int id text 0x7f0901f2
+int id text2 0x7f0901f3
+int id textEnd 0x7f0901f4
+int id textSpacerNoButtons 0x7f0901f5
+int id textSpacerNoTitle 0x7f0901f6
+int id textStart 0x7f0901f7
+int id textTop 0x7f0901f8
+int id textWatcher 0x7f0901f9
+int id text_input_end_icon 0x7f0901fa
+int id text_input_error_icon 0x7f0901fb
+int id text_input_start_icon 0x7f0901fc
+int id textinput_counter 0x7f0901fd
+int id textinput_error 0x7f0901fe
+int id textinput_helper_text 0x7f0901ff
+int id textinput_placeholder 0x7f090200
+int id textinput_prefix_text 0x7f090201
+int id textinput_suffix_text 0x7f090202
+int id time 0x7f090203
+int id timeout 0x7f090204
+int id timeout_wrapper 0x7f090205
+int id title 0x7f090206
+int id titleDividerNoCustom 0x7f090207
+int id title_template 0x7f090208
+int id toggle 0x7f090209
+int id toolbar 0x7f09020a
+int id top 0x7f09020b
+int id topPanel 0x7f09020c
+int id touch_outside 0x7f09020d
+int id transitionToEnd 0x7f09020e
+int id transitionToStart 0x7f09020f
+int id transition_current_scene 0x7f090210
+int id transition_layout_save 0x7f090211
+int id transition_position 0x7f090212
+int id transition_scene_layoutid_cache 0x7f090213
+int id transition_transform 0x7f090214
+int id triangle 0x7f090215
+int id unblock 0x7f090216
+int id unchecked 0x7f090217
+int id uniform 0x7f090218
+int id unlabeled 0x7f090219
+int id up 0x7f09021a
+int id useLogo 0x7f09021b
+int id user_config 0x7f09021c
+int id vendor_elements 0x7f09021d
+int id vendor_elements_wrapper 0x7f09021e
+int id view_offset_helper 0x7f09021f
+int id view_tree_lifecycle_owner 0x7f090220
+int id view_tree_on_back_pressed_dispatcher_owner 0x7f090221
+int id view_tree_saved_state_registry_owner 0x7f090222
+int id view_tree_view_model_store_owner 0x7f090223
+int id visible 0x7f090224
+int id visible_removing_fragment_view_tag 0x7f090225
+int id wide 0x7f090226
+int id withText 0x7f090227
+int id with_icon 0x7f090228
+int id withinBounds 0x7f090229
+int id wrap 0x7f09022a
+int id wrap_content 0x7f09022b
+int integer abc_config_activityDefaultDur 0x7f0a0000
+int integer abc_config_activityShortDur 0x7f0a0001
+int integer app_bar_elevation_anim_duration 0x7f0a0002
+int integer bottom_sheet_slide_duration 0x7f0a0003
+int integer cancel_button_image_alpha 0x7f0a0004
+int integer config_tooltipAnimTime 0x7f0a0005
+int integer design_snackbar_text_max_lines 0x7f0a0006
+int integer design_tab_indicator_anim_duration_ms 0x7f0a0007
+int integer google_play_services_version 0x7f0a0008
+int integer hide_password_duration 0x7f0a0009
+int integer m3_badge_max_number 0x7f0a000a
+int integer m3_btn_anim_delay_ms 0x7f0a000b
+int integer m3_btn_anim_duration_ms 0x7f0a000c
+int integer m3_card_anim_delay_ms 0x7f0a000d
+int integer m3_card_anim_duration_ms 0x7f0a000e
+int integer m3_chip_anim_duration 0x7f0a000f
+int integer m3_sys_motion_duration_extra_long1 0x7f0a0010
+int integer m3_sys_motion_duration_extra_long2 0x7f0a0011
+int integer m3_sys_motion_duration_extra_long3 0x7f0a0012
+int integer m3_sys_motion_duration_extra_long4 0x7f0a0013
+int integer m3_sys_motion_duration_long1 0x7f0a0014
+int integer m3_sys_motion_duration_long2 0x7f0a0015
+int integer m3_sys_motion_duration_long3 0x7f0a0016
+int integer m3_sys_motion_duration_long4 0x7f0a0017
+int integer m3_sys_motion_duration_medium1 0x7f0a0018
+int integer m3_sys_motion_duration_medium2 0x7f0a0019
+int integer m3_sys_motion_duration_medium3 0x7f0a001a
+int integer m3_sys_motion_duration_medium4 0x7f0a001b
+int integer m3_sys_motion_duration_short1 0x7f0a001c
+int integer m3_sys_motion_duration_short2 0x7f0a001d
+int integer m3_sys_motion_duration_short3 0x7f0a001e
+int integer m3_sys_motion_duration_short4 0x7f0a001f
+int integer m3_sys_motion_path 0x7f0a0020
+int integer m3_sys_shape_corner_extra_large_corner_family 0x7f0a0021
+int integer m3_sys_shape_corner_extra_small_corner_family 0x7f0a0022
+int integer m3_sys_shape_corner_full_corner_family 0x7f0a0023
+int integer m3_sys_shape_corner_large_corner_family 0x7f0a0024
+int integer m3_sys_shape_corner_medium_corner_family 0x7f0a0025
+int integer m3_sys_shape_corner_small_corner_family 0x7f0a0026
+int integer material_motion_duration_long_1 0x7f0a0027
+int integer material_motion_duration_long_2 0x7f0a0028
+int integer material_motion_duration_medium_1 0x7f0a0029
+int integer material_motion_duration_medium_2 0x7f0a002a
+int integer material_motion_duration_short_1 0x7f0a002b
+int integer material_motion_duration_short_2 0x7f0a002c
+int integer material_motion_path 0x7f0a002d
+int integer mtrl_badge_max_character_count 0x7f0a002e
+int integer mtrl_btn_anim_delay_ms 0x7f0a002f
+int integer mtrl_btn_anim_duration_ms 0x7f0a0030
+int integer mtrl_calendar_header_orientation 0x7f0a0031
+int integer mtrl_calendar_selection_text_lines 0x7f0a0032
+int integer mtrl_calendar_year_selector_span 0x7f0a0033
+int integer mtrl_card_anim_delay_ms 0x7f0a0034
+int integer mtrl_card_anim_duration_ms 0x7f0a0035
+int integer mtrl_chip_anim_duration 0x7f0a0036
+int integer mtrl_switch_thumb_motion_duration 0x7f0a0037
+int integer mtrl_switch_thumb_post_morphing_duration 0x7f0a0038
+int integer mtrl_switch_thumb_pre_morphing_duration 0x7f0a0039
+int integer mtrl_switch_thumb_pressed_duration 0x7f0a003a
+int integer mtrl_switch_thumb_viewport_center_coordinate 0x7f0a003b
+int integer mtrl_switch_thumb_viewport_size 0x7f0a003c
+int integer mtrl_switch_track_viewport_height 0x7f0a003d
+int integer mtrl_switch_track_viewport_width 0x7f0a003e
+int integer mtrl_tab_indicator_anim_duration_ms 0x7f0a003f
+int integer mtrl_view_gone 0x7f0a0040
+int integer mtrl_view_invisible 0x7f0a0041
+int integer mtrl_view_visible 0x7f0a0042
+int integer preferences_detail_pane_weight 0x7f0a0043
+int integer preferences_header_pane_weight 0x7f0a0044
+int integer show_password_duration 0x7f0a0045
+int integer simple_menu_max_units 0x7f0a0046
+int integer status_bar_notification_info_maxnum 0x7f0a0047
+int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0b0000
+int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0b0001
+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0b0002
+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0b0003
+int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0b0004
+int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0b0005
+int interpolator fast_out_slow_in 0x7f0b0006
+int interpolator m3_sys_motion_easing_emphasized 0x7f0b0007
+int interpolator m3_sys_motion_easing_emphasized_accelerate 0x7f0b0008
+int interpolator m3_sys_motion_easing_emphasized_decelerate 0x7f0b0009
+int interpolator m3_sys_motion_easing_linear 0x7f0b000a
+int interpolator m3_sys_motion_easing_standard 0x7f0b000b
+int interpolator m3_sys_motion_easing_standard_accelerate 0x7f0b000c
+int interpolator m3_sys_motion_easing_standard_decelerate 0x7f0b000d
+int interpolator mtrl_fast_out_linear_in 0x7f0b000e
+int interpolator mtrl_fast_out_slow_in 0x7f0b000f
+int interpolator mtrl_linear 0x7f0b0010
+int interpolator mtrl_linear_out_slow_in 0x7f0b0011
+int layout abc_action_bar_title_item 0x7f0c0000
+int layout abc_action_bar_up_container 0x7f0c0001
+int layout abc_action_menu_item_layout 0x7f0c0002
+int layout abc_action_menu_layout 0x7f0c0003
+int layout abc_action_mode_bar 0x7f0c0004
+int layout abc_action_mode_close_item_material 0x7f0c0005
+int layout abc_activity_chooser_view 0x7f0c0006
+int layout abc_activity_chooser_view_list_item 0x7f0c0007
+int layout abc_alert_dialog_button_bar_material 0x7f0c0008
+int layout abc_alert_dialog_material 0x7f0c0009
+int layout abc_alert_dialog_title_material 0x7f0c000a
+int layout abc_cascading_menu_item_layout 0x7f0c000b
+int layout abc_dialog_title_material 0x7f0c000c
+int layout abc_expanded_menu_layout 0x7f0c000d
+int layout abc_list_menu_item_checkbox 0x7f0c000e
+int layout abc_list_menu_item_icon 0x7f0c000f
+int layout abc_list_menu_item_layout 0x7f0c0010
+int layout abc_list_menu_item_radio 0x7f0c0011
+int layout abc_popup_menu_header_item_layout 0x7f0c0012
+int layout abc_popup_menu_item_layout 0x7f0c0013
+int layout abc_screen_content_include 0x7f0c0014
+int layout abc_screen_simple 0x7f0c0015
+int layout abc_screen_simple_overlay_action_mode 0x7f0c0016
+int layout abc_screen_toolbar 0x7f0c0017
+int layout abc_search_dropdown_item_icons_2line 0x7f0c0018
+int layout abc_search_view 0x7f0c0019
+int layout abc_select_dialog_material 0x7f0c001a
+int layout abc_tooltip 0x7f0c001b
+int layout activity_main 0x7f0c001c
+int layout browser_actions_context_menu_page 0x7f0c001d
+int layout browser_actions_context_menu_row 0x7f0c001e
+int layout custom_dialog 0x7f0c001f
+int layout design_bottom_navigation_item 0x7f0c0020
+int layout design_bottom_sheet_dialog 0x7f0c0021
+int layout design_layout_snackbar 0x7f0c0022
+int layout design_layout_snackbar_include 0x7f0c0023
+int layout design_layout_tab_icon 0x7f0c0024
+int layout design_layout_tab_text 0x7f0c0025
+int layout design_menu_item_action_area 0x7f0c0026
+int layout design_navigation_item 0x7f0c0027
+int layout design_navigation_item_header 0x7f0c0028
+int layout design_navigation_item_separator 0x7f0c0029
+int layout design_navigation_item_subheader 0x7f0c002a
+int layout design_navigation_menu 0x7f0c002b
+int layout design_navigation_menu_item 0x7f0c002c
+int layout design_text_input_end_icon 0x7f0c002d
+int layout design_text_input_start_icon 0x7f0c002e
+int layout dialog_nickname 0x7f0c002f
+int layout dialog_wifi_ap 0x7f0c0030
+int layout dialog_wps 0x7f0c0031
+int layout expand_button 0x7f0c0032
+int layout fragment_clients 0x7f0c0033
+int layout fragment_ebeg 0x7f0c0034
+int layout fragment_tethering 0x7f0c0035
+int layout image_frame 0x7f0c0036
+int layout ime_base_split_test_activity 0x7f0c0037
+int layout ime_secondary_split_test_activity 0x7f0c0038
+int layout libraries_social_licenses_license 0x7f0c0039
+int layout libraries_social_licenses_license_activity 0x7f0c003a
+int layout libraries_social_licenses_license_loading 0x7f0c003b
+int layout libraries_social_licenses_license_menu_activity 0x7f0c003c
+int layout license_menu_activity_loading 0x7f0c003d
+int layout license_menu_activity_no_licenses 0x7f0c003e
+int layout listitem_client 0x7f0c003f
+int layout listitem_interface 0x7f0c0040
+int layout listitem_manage 0x7f0c0041
+int layout listitem_repeater 0x7f0c0042
+int layout m3_alert_dialog 0x7f0c0043
+int layout m3_alert_dialog_actions 0x7f0c0044
+int layout m3_alert_dialog_title 0x7f0c0045
+int layout m3_auto_complete_simple_item 0x7f0c0046
+int layout m3_side_sheet_dialog 0x7f0c0047
+int layout material_chip_input_combo 0x7f0c0048
+int layout material_clock_display 0x7f0c0049
+int layout material_clock_display_divider 0x7f0c004a
+int layout material_clock_period_toggle 0x7f0c004b
+int layout material_clock_period_toggle_land 0x7f0c004c
+int layout material_clockface_textview 0x7f0c004d
+int layout material_clockface_view 0x7f0c004e
+int layout material_radial_view_group 0x7f0c004f
+int layout material_textinput_timepicker 0x7f0c0050
+int layout material_time_chip 0x7f0c0051
+int layout material_time_input 0x7f0c0052
+int layout material_timepicker 0x7f0c0053
+int layout material_timepicker_dialog 0x7f0c0054
+int layout material_timepicker_textinput_display 0x7f0c0055
+int layout mtrl_alert_dialog 0x7f0c0056
+int layout mtrl_alert_dialog_actions 0x7f0c0057
+int layout mtrl_alert_dialog_title 0x7f0c0058
+int layout mtrl_alert_select_dialog_item 0x7f0c0059
+int layout mtrl_alert_select_dialog_multichoice 0x7f0c005a
+int layout mtrl_alert_select_dialog_singlechoice 0x7f0c005b
+int layout mtrl_auto_complete_simple_item 0x7f0c005c
+int layout mtrl_calendar_day 0x7f0c005d
+int layout mtrl_calendar_day_of_week 0x7f0c005e
+int layout mtrl_calendar_days_of_week 0x7f0c005f
+int layout mtrl_calendar_horizontal 0x7f0c0060
+int layout mtrl_calendar_month 0x7f0c0061
+int layout mtrl_calendar_month_labeled 0x7f0c0062
+int layout mtrl_calendar_month_navigation 0x7f0c0063
+int layout mtrl_calendar_months 0x7f0c0064
+int layout mtrl_calendar_vertical 0x7f0c0065
+int layout mtrl_calendar_year 0x7f0c0066
+int layout mtrl_layout_snackbar 0x7f0c0067
+int layout mtrl_layout_snackbar_include 0x7f0c0068
+int layout mtrl_navigation_rail_item 0x7f0c0069
+int layout mtrl_picker_actions 0x7f0c006a
+int layout mtrl_picker_dialog 0x7f0c006b
+int layout mtrl_picker_fullscreen 0x7f0c006c
+int layout mtrl_picker_header_dialog 0x7f0c006d
+int layout mtrl_picker_header_fullscreen 0x7f0c006e
+int layout mtrl_picker_header_selection_text 0x7f0c006f
+int layout mtrl_picker_header_title_text 0x7f0c0070
+int layout mtrl_picker_header_toggle 0x7f0c0071
+int layout mtrl_picker_text_input_date 0x7f0c0072
+int layout mtrl_picker_text_input_date_range 0x7f0c0073
+int layout mtrl_search_bar 0x7f0c0074
+int layout mtrl_search_view 0x7f0c0075
+int layout notification_action 0x7f0c0076
+int layout notification_action_tombstone 0x7f0c0077
+int layout notification_template_custom_big 0x7f0c0078
+int layout notification_template_icon_group 0x7f0c0079
+int layout notification_template_part_chronometer 0x7f0c007a
+int layout notification_template_part_time 0x7f0c007b
+int layout preference 0x7f0c007c
+int layout preference_category 0x7f0c007d
+int layout preference_category_material 0x7f0c007e
+int layout preference_dialog_edittext 0x7f0c007f
+int layout preference_dropdown 0x7f0c0080
+int layout preference_dropdown_material 0x7f0c0081
+int layout preference_information 0x7f0c0082
+int layout preference_information_material 0x7f0c0083
+int layout preference_list_fragment 0x7f0c0084
+int layout preference_material 0x7f0c0085
+int layout preference_recyclerview 0x7f0c0086
+int layout preference_simplemenu 0x7f0c0087
+int layout preference_widget_checkbox 0x7f0c0088
+int layout preference_widget_edittext_autocomplete 0x7f0c0089
+int layout preference_widget_material_switch 0x7f0c008a
+int layout preference_widget_seekbar 0x7f0c008b
+int layout preference_widget_seekbar_material 0x7f0c008c
+int layout preference_widget_switch 0x7f0c008d
+int layout preference_widget_switch_compat 0x7f0c008e
+int layout select_dialog_item_material 0x7f0c008f
+int layout select_dialog_multichoice_material 0x7f0c0090
+int layout select_dialog_singlechoice_material 0x7f0c0091
+int layout simple_menu_item 0x7f0c0092
+int layout simple_menu_list 0x7f0c0093
+int layout support_simple_spinner_dropdown_item 0x7f0c0094
+int menu navigation 0x7f0e0000
+int menu popup_client 0x7f0e0001
+int menu toolbar_configuration 0x7f0e0002
+int menu toolbar_tethering 0x7f0e0003
+int mipmap banner 0x7f0f0001
+int mipmap ic_launcher 0x7f0f0002
+int plurals clients_stats_message_1 0x7f100000
+int plurals clients_stats_message_2 0x7f100001
+int plurals clients_stats_message_3 0x7f100002
+int plurals mtrl_badge_content_description 0x7f100003
+int plurals notification_connected_devices 0x7f100004
+int plurals notification_interfaces 0x7f100005
+int plurals quick_settings_hotspot_secondary_label_num_devices 0x7f100006
+int plurals tethering_manage_wifi_capabilities 0x7f100007
+int plurals tethering_manage_wifi_clients 0x7f100008
+int raw com_android_billingclient_heterodyne_info 0x7f110000
+int raw com_android_billingclient_registration_info 0x7f110001
+int raw firebase_common_keep 0x7f110002
+int raw keep_third_party_licenses 0x7f110003
+int raw third_party_license_metadata 0x7f110004
+int raw third_party_licenses 0x7f110005
+int string abc_action_bar_home_description 0x7f120000
+int string abc_action_bar_up_description 0x7f120001
+int string abc_action_menu_overflow_description 0x7f120002
+int string abc_action_mode_done 0x7f120003
+int string abc_activity_chooser_view_see_all 0x7f120004
+int string abc_activitychooserview_choose_application 0x7f120005
+int string abc_capital_off 0x7f120006
+int string abc_capital_on 0x7f120007
+int string abc_menu_alt_shortcut_label 0x7f120008
+int string abc_menu_ctrl_shortcut_label 0x7f120009
+int string abc_menu_delete_shortcut_label 0x7f12000a
+int string abc_menu_enter_shortcut_label 0x7f12000b
+int string abc_menu_function_shortcut_label 0x7f12000c
+int string abc_menu_meta_shortcut_label 0x7f12000d
+int string abc_menu_shift_shortcut_label 0x7f12000e
+int string abc_menu_space_shortcut_label 0x7f12000f
+int string abc_menu_sym_shortcut_label 0x7f120010
+int string abc_prepend_shortcut_label 0x7f120011
+int string abc_search_hint 0x7f120012
+int string abc_searchview_description_clear 0x7f120013
+int string abc_searchview_description_query 0x7f120014
+int string abc_searchview_description_search 0x7f120015
+int string abc_searchview_description_submit 0x7f120016
+int string abc_searchview_description_voice 0x7f120017
+int string abc_shareactionprovider_share_with 0x7f120018
+int string abc_shareactionprovider_share_with_application 0x7f120019
+int string abc_toolbar_collapse_description 0x7f12001a
+int string androidx_startup 0x7f12001b
+int string app_name 0x7f12001c
+int string appbar_scrolling_view_behavior 0x7f12001d
+int string bottom_sheet_behavior 0x7f12001e
+int string bottomsheet_action_collapse 0x7f12001f
+int string bottomsheet_action_expand 0x7f120020
+int string bottomsheet_action_expand_halfway 0x7f120021
+int string bottomsheet_drag_handle_clicked 0x7f120022
+int string bottomsheet_drag_handle_content_description 0x7f120023
+int string call_notification_answer_action 0x7f120024
+int string call_notification_answer_video_action 0x7f120025
+int string call_notification_decline_action 0x7f120026
+int string call_notification_hang_up_action 0x7f120027
+int string call_notification_incoming_text 0x7f120028
+int string call_notification_ongoing_text 0x7f120029
+int string call_notification_screening_text 0x7f12002a
+int string character_counter_content_description 0x7f12002b
+int string character_counter_overflowed_content_description 0x7f12002c
+int string character_counter_pattern 0x7f12002d
+int string clear_text_end_icon_content_description 0x7f12002e
+int string clients_mac_lookup_unexpected_error 0x7f12002f
+int string clients_nickname_set_to_vendor 0x7f120030
+int string clients_nickname_title 0x7f120031
+int string clients_popup_block 0x7f120032
+int string clients_popup_block_service_inactive 0x7f120033
+int string clients_popup_nickname 0x7f120034
+int string clients_popup_stats 0x7f120035
+int string clients_popup_unblock 0x7f120036
+int string clients_stats_title 0x7f120037
+int string com_google_firebase_crashlytics_mapping_file_id 0x7f120038
+int string common_google_play_services_enable_button 0x7f120039
+int string common_google_play_services_enable_text 0x7f12003a
+int string common_google_play_services_enable_title 0x7f12003b
+int string common_google_play_services_install_button 0x7f12003c
+int string common_google_play_services_install_text 0x7f12003d
+int string common_google_play_services_install_title 0x7f12003e
+int string common_google_play_services_notification_channel_name 0x7f12003f
+int string common_google_play_services_notification_ticker 0x7f120040
+int string common_google_play_services_unknown_issue 0x7f120041
+int string common_google_play_services_unsupported_text 0x7f120042
+int string common_google_play_services_update_button 0x7f120043
+int string common_google_play_services_update_text 0x7f120044
+int string common_google_play_services_update_title 0x7f120045
+int string common_google_play_services_updating_text 0x7f120046
+int string common_google_play_services_wear_update_text 0x7f120047
+int string common_open_on_phone 0x7f120048
+int string common_signin_button_text 0x7f120049
+int string common_signin_button_text_long 0x7f12004a
+int string configuration_invalid 0x7f12004b
+int string configuration_rejected 0x7f12004c
+int string configuration_share 0x7f12004d
+int string configuration_view 0x7f12004e
+int string connected_state_failed 0x7f12004f
+int string connected_state_incomplete 0x7f120050
+int string connected_state_valid 0x7f120051
+int string copy 0x7f120052
+int string copy_toast_msg 0x7f120053
+int string default_web_client_id 0x7f120054
+int string donations__button_close 0x7f120055
+int string donations__description 0x7f120056
+int string donations__google_android_market 0x7f120057
+int string donations__google_android_market_description 0x7f120058
+int string donations__google_android_market_donate_button 0x7f120059
+int string donations__google_android_market_not_supported 0x7f12005a
+int string donations__google_android_market_text 0x7f12005b
+int string donations__thanks_dialog 0x7f12005c
+int string error_a11y_label 0x7f12005d
+int string error_icon_content_description 0x7f12005e
+int string exception_interface_not_found 0x7f12005f
+int string expand_button_title 0x7f120060
+int string exposed_dropdown_menu_content_description 0x7f120061
+int string fab_transformation_scrim_behavior 0x7f120062
+int string fab_transformation_sheet_behavior 0x7f120063
+int string failure_reason_unknown 0x7f120064
+int string fallback_menu_item_copy_link 0x7f120065
+int string fallback_menu_item_open_in_browser 0x7f120066
+int string fallback_menu_item_share_link 0x7f120067
+int string firebase_database_url 0x7f120068
+int string gcm_defaultSenderId 0x7f120069
+int string google_api_key 0x7f12006a
+int string google_app_id 0x7f12006b
+int string google_crash_reporting_api_key 0x7f12006c
+int string google_storage_bucket 0x7f12006d
+int string hide_bottom_view_on_scroll_behavior 0x7f12006e
+int string icon_content_description 0x7f12006f
+int string item_view_role_description 0x7f120070
+int string license_content_error 0x7f120071
+int string license_is_loading 0x7f120072
+int string license_list_is_loading 0x7f120073
+int string m3_exceed_max_badge_text_suffix 0x7f120074
+int string m3_ref_typeface_brand_medium 0x7f120075
+int string m3_ref_typeface_brand_regular 0x7f120076
+int string m3_ref_typeface_plain_medium 0x7f120077
+int string m3_ref_typeface_plain_regular 0x7f120078
+int string m3_sys_motion_easing_emphasized 0x7f120079
+int string m3_sys_motion_easing_emphasized_accelerate 0x7f12007a
+int string m3_sys_motion_easing_emphasized_decelerate 0x7f12007b
+int string m3_sys_motion_easing_emphasized_path_data 0x7f12007c
+int string m3_sys_motion_easing_legacy 0x7f12007d
+int string m3_sys_motion_easing_legacy_accelerate 0x7f12007e
+int string m3_sys_motion_easing_legacy_decelerate 0x7f12007f
+int string m3_sys_motion_easing_linear 0x7f120080
+int string m3_sys_motion_easing_standard 0x7f120081
+int string m3_sys_motion_easing_standard_accelerate 0x7f120082
+int string m3_sys_motion_easing_standard_decelerate 0x7f120083
+int string material_clock_display_divider 0x7f120084
+int string material_clock_toggle_content_description 0x7f120085
+int string material_hour_24h_suffix 0x7f120086
+int string material_hour_selection 0x7f120087
+int string material_hour_suffix 0x7f120088
+int string material_minute_selection 0x7f120089
+int string material_minute_suffix 0x7f12008a
+int string material_motion_easing_accelerated 0x7f12008b
+int string material_motion_easing_decelerated 0x7f12008c
+int string material_motion_easing_emphasized 0x7f12008d
+int string material_motion_easing_linear 0x7f12008e
+int string material_motion_easing_standard 0x7f12008f
+int string material_slider_range_end 0x7f120090
+int string material_slider_range_start 0x7f120091
+int string material_slider_value 0x7f120092
+int string material_timepicker_am 0x7f120093
+int string material_timepicker_clock_mode_description 0x7f120094
+int string material_timepicker_hour 0x7f120095
+int string material_timepicker_minute 0x7f120096
+int string material_timepicker_pm 0x7f120097
+int string material_timepicker_select_time 0x7f120098
+int string material_timepicker_text_input_mode_description 0x7f120099
+int string mtrl_badge_numberless_content_description 0x7f12009a
+int string mtrl_checkbox_button_icon_path_checked 0x7f12009b
+int string mtrl_checkbox_button_icon_path_group_name 0x7f12009c
+int string mtrl_checkbox_button_icon_path_indeterminate 0x7f12009d
+int string mtrl_checkbox_button_icon_path_name 0x7f12009e
+int string mtrl_checkbox_button_path_checked 0x7f12009f
+int string mtrl_checkbox_button_path_group_name 0x7f1200a0
+int string mtrl_checkbox_button_path_name 0x7f1200a1
+int string mtrl_checkbox_button_path_unchecked 0x7f1200a2
+int string mtrl_checkbox_state_description_checked 0x7f1200a3
+int string mtrl_checkbox_state_description_indeterminate 0x7f1200a4
+int string mtrl_checkbox_state_description_unchecked 0x7f1200a5
+int string mtrl_chip_close_icon_content_description 0x7f1200a6
+int string mtrl_exceed_max_badge_number_content_description 0x7f1200a7
+int string mtrl_exceed_max_badge_number_suffix 0x7f1200a8
+int string mtrl_picker_a11y_next_month 0x7f1200a9
+int string mtrl_picker_a11y_prev_month 0x7f1200aa
+int string mtrl_picker_announce_current_range_selection 0x7f1200ab
+int string mtrl_picker_announce_current_selection 0x7f1200ac
+int string mtrl_picker_announce_current_selection_none 0x7f1200ad
+int string mtrl_picker_cancel 0x7f1200ae
+int string mtrl_picker_confirm 0x7f1200af
+int string mtrl_picker_date_header_selected 0x7f1200b0
+int string mtrl_picker_date_header_title 0x7f1200b1
+int string mtrl_picker_date_header_unselected 0x7f1200b2
+int string mtrl_picker_day_of_week_column_header 0x7f1200b3
+int string mtrl_picker_end_date_description 0x7f1200b4
+int string mtrl_picker_invalid_format 0x7f1200b5
+int string mtrl_picker_invalid_format_example 0x7f1200b6
+int string mtrl_picker_invalid_format_use 0x7f1200b7
+int string mtrl_picker_invalid_range 0x7f1200b8
+int string mtrl_picker_navigate_to_current_year_description 0x7f1200b9
+int string mtrl_picker_navigate_to_year_description 0x7f1200ba
+int string mtrl_picker_out_of_range 0x7f1200bb
+int string mtrl_picker_range_header_only_end_selected 0x7f1200bc
+int string mtrl_picker_range_header_only_start_selected 0x7f1200bd
+int string mtrl_picker_range_header_selected 0x7f1200be
+int string mtrl_picker_range_header_title 0x7f1200bf
+int string mtrl_picker_range_header_unselected 0x7f1200c0
+int string mtrl_picker_save 0x7f1200c1
+int string mtrl_picker_start_date_description 0x7f1200c2
+int string mtrl_picker_text_input_date_hint 0x7f1200c3
+int string mtrl_picker_text_input_date_range_end_hint 0x7f1200c4
+int string mtrl_picker_text_input_date_range_start_hint 0x7f1200c5
+int string mtrl_picker_text_input_day_abbr 0x7f1200c6
+int string mtrl_picker_text_input_month_abbr 0x7f1200c7
+int string mtrl_picker_text_input_year_abbr 0x7f1200c8
+int string mtrl_picker_today_description 0x7f1200c9
+int string mtrl_picker_toggle_to_calendar_input_mode 0x7f1200ca
+int string mtrl_picker_toggle_to_day_selection 0x7f1200cb
+int string mtrl_picker_toggle_to_text_input_mode 0x7f1200cc
+int string mtrl_picker_toggle_to_year_selection 0x7f1200cd
+int string mtrl_switch_thumb_group_name 0x7f1200ce
+int string mtrl_switch_thumb_path_checked 0x7f1200cf
+int string mtrl_switch_thumb_path_morphing 0x7f1200d0
+int string mtrl_switch_thumb_path_name 0x7f1200d1
+int string mtrl_switch_thumb_path_pressed 0x7f1200d2
+int string mtrl_switch_thumb_path_unchecked 0x7f1200d3
+int string mtrl_switch_track_decoration_path 0x7f1200d4
+int string mtrl_switch_track_path 0x7f1200d5
+int string mtrl_timepicker_cancel 0x7f1200d6
+int string mtrl_timepicker_confirm 0x7f1200d7
+int string no_licenses_available 0x7f1200d8
+int string noisy_su_failure 0x7f1200d9
+int string not_set 0x7f1200da
+int string notification_channel_monitor 0x7f1200db
+int string notification_channel_tethering 0x7f1200dc
+int string notification_interfaces_inactive 0x7f1200dd
+int string notification_tethering_title 0x7f1200de
+int string oss_license_title 0x7f1200df
+int string password_toggle_content_description 0x7f1200e0
+int string path_password_eye 0x7f1200e1
+int string path_password_eye_mask_strike_through 0x7f1200e2
+int string path_password_eye_mask_visible 0x7f1200e3
+int string path_password_strike_through 0x7f1200e4
+int string permission_missing 0x7f1200e5
+int string preference_copied 0x7f1200e6
+int string preferences_license_summary 0x7f1200e7
+int string project_id 0x7f1200e8
+int string repeater_channel 0x7f1200e9
+int string repeater_clean_pog_failure 0x7f1200ea
+int string repeater_configure_failure 0x7f1200eb
+int string repeater_create_group_failure 0x7f1200ec
+int string repeater_failure_disconnected 0x7f1200ed
+int string repeater_failure_reason_error 0x7f1200ee
+int string repeater_failure_reason_no_service_requests 0x7f1200ef
+int string repeater_failure_reason_p2p_unsupported 0x7f1200f0
+int string repeater_failure_reason_unsupported_operation 0x7f1200f1
+int string repeater_location_off 0x7f1200f2
+int string repeater_location_off_configure 0x7f1200f3
+int string repeater_missing_location_permissions 0x7f1200f4
+int string repeater_p2p_unavailable 0x7f1200f5
+int string repeater_p2p_unavailable_enable 0x7f1200f6
+int string repeater_remove_group_failure 0x7f1200f7
+int string repeater_remove_old_group_failure 0x7f1200f8
+int string repeater_set_oc_failure 0x7f1200f9
+int string repeater_set_vendor_elements_failure 0x7f1200fa
+int string repeater_wps 0x7f1200fb
+int string repeater_wps_dialog_pbc 0x7f1200fc
+int string repeater_wps_dialog_title 0x7f1200fd
+int string repeater_wps_failure 0x7f1200fe
+int string repeater_wps_success_keypad 0x7f1200ff
+int string repeater_wps_success_pbc 0x7f120100
+int string search_menu_title 0x7f120101
+int string searchbar_scrolling_view_behavior 0x7f120102
+int string searchview_clear_text_content_description 0x7f120103
+int string searchview_navigation_content_description 0x7f120104
+int string settings_downstream 0x7f120105
+int string settings_exit_app 0x7f120106
+int string settings_help 0x7f120107
+int string settings_misc 0x7f120108
+int string settings_misc_donate 0x7f120109
+int string settings_misc_donate_more 0x7f12010a
+int string settings_misc_donate_summary 0x7f12010b
+int string settings_misc_logcat 0x7f12010c
+int string settings_misc_logcat_summary 0x7f12010d
+int string settings_misc_source 0x7f12010e
+int string settings_misc_source_summary 0x7f12010f
+int string settings_restart_required 0x7f120110
+int string settings_service_auto_start 0x7f120111
+int string settings_service_auto_start_summary 0x7f120112
+int string settings_service_clean 0x7f120113
+int string settings_service_clean_summary 0x7f120114
+int string settings_service_dhcp_workaround 0x7f120115
+int string settings_service_dhcp_workaround_summary 0x7f120116
+int string settings_service_disable_ipv6 0x7f120117
+int string settings_service_disable_ipv6_summary 0x7f120118
+int string settings_service_ip_monitor 0x7f120119
+int string settings_service_ip_monitor_monitor 0x7f12011a
+int string settings_service_ip_monitor_monitor_root 0x7f12011b
+int string settings_service_ip_monitor_poll 0x7f12011c
+int string settings_service_ip_monitor_poll_root 0x7f12011d
+int string settings_service_masquerade 0x7f12011e
+int string settings_service_masquerade_netd 0x7f12011f
+int string settings_service_masquerade_none 0x7f120120
+int string settings_service_masquerade_simple 0x7f120121
+int string settings_service_repeater_safe_mode 0x7f120122
+int string settings_service_repeater_safe_mode_summary 0x7f120123
+int string settings_service_repeater_safe_mode_warning 0x7f120124
+int string settings_service_temp_hotspot_use_system 0x7f120125
+int string settings_service_temp_hotspot_use_system_summary 0x7f120126
+int string settings_service_upstream 0x7f120127
+int string settings_service_upstream_auto 0x7f120128
+int string settings_service_upstream_monitor 0x7f120129
+int string settings_service_upstream_monitor_summary 0x7f12012a
+int string settings_service_wifi_lock 0x7f12012b
+int string settings_service_wifi_lock_full 0x7f12012c
+int string settings_service_wifi_lock_high_perf 0x7f12012d
+int string settings_service_wifi_lock_high_perf_v29 0x7f12012e
+int string settings_service_wifi_lock_low_latency 0x7f12012f
+int string settings_service_wifi_lock_none 0x7f120130
+int string settings_system_tether_offload 0x7f120131
+int string settings_system_tether_offload_summary 0x7f120132
+int string settings_upstream 0x7f120133
+int string settings_upstream_fallback 0x7f120134
+int string settings_upstream_fallback_auto 0x7f120135
+int string side_sheet_accessibility_pane_title 0x7f120136
+int string side_sheet_behavior 0x7f120137
+int string status_bar_notification_info_overflow 0x7f120138
+int string summary_collapsed_preference_list 0x7f120139
+int string tethering_location_off 0x7f12013a
+int string tethering_manage 0x7f12013b
+int string tethering_manage_bluetooth 0x7f12013c
+int string tethering_manage_ethernet 0x7f12013d
+int string tethering_manage_ncm 0x7f12013e
+int string tethering_manage_offload_enabled 0x7f12013f
+int string tethering_manage_usb 0x7f120140
+int string tethering_manage_wifi 0x7f120141
+int string tethering_manage_wifi_client_blocked 0x7f120142
+int string tethering_manage_wifi_copy_mac 0x7f120143
+int string tethering_manage_wifi_country_code 0x7f120144
+int string tethering_manage_wifi_feature_ap_mac_randomization 0x7f120145
+int string tethering_manage_wifi_feature_bridged_ap_concurrency 0x7f120146
+int string tethering_manage_wifi_feature_sta_ap_concurrency 0x7f120147
+int string tethering_manage_wifi_feature_sta_bridged_ap_concurrency 0x7f120148
+int string tethering_manage_wifi_info 0x7f120149
+int string tethering_manage_wifi_info_timeout_disabled 0x7f12014a
+int string tethering_manage_wifi_info_timeout_enabled 0x7f12014b
+int string tethering_manage_wifi_no_features 0x7f12014c
+int string tethering_manage_wifi_supported_channels 0x7f12014d
+int string tethering_monitor 0x7f12014e
+int string tethering_state_monitored 0x7f12014f
+int string tethering_temp_hotspot 0x7f120150
+int string tethering_temp_hotspot_failure 0x7f120151
+int string tethering_temp_hotspot_failure_generic 0x7f120152
+int string tethering_temp_hotspot_failure_incompatible_mode 0x7f120153
+int string tethering_temp_hotspot_failure_no_channel 0x7f120154
+int string tethering_temp_hotspot_failure_tethering_disallowed 0x7f120155
+int string title_clients 0x7f120156
+int string title_repeater 0x7f120157
+int string title_settings 0x7f120158
+int string title_tethering 0x7f120159
+int string title_update 0x7f12015a
+int string v7_preference_off 0x7f12015b
+int string v7_preference_on 0x7f12015c
+int string wifi_advanced_mac_address_persistent_randomized 0x7f12015d
+int string wifi_advanced_mac_address_title 0x7f12015e
+int string wifi_allowed_list 0x7f12015f
+int string wifi_ap_choose_G 0x7f120160
+int string wifi_ap_choose_disabled 0x7f120161
+int string wifi_blocked_list 0x7f120162
+int string wifi_bridged_mode_opportunistic_shutdown 0x7f120163
+int string wifi_client_user_control 0x7f120164
+int string wifi_hidden_network 0x7f120165
+int string wifi_hotspot_access_control_title 0x7f120166
+int string wifi_hotspot_acs_channel_2g 0x7f120167
+int string wifi_hotspot_acs_channel_5g 0x7f120168
+int string wifi_hotspot_acs_channel_6g 0x7f120169
+int string wifi_hotspot_ap_advanced_title 0x7f12016a
+int string wifi_hotspot_ap_band_title 0x7f12016b
+int string wifi_hotspot_auto_off 0x7f12016c
+int string wifi_hotspot_max_channel_bandwidth 0x7f12016d
+int string wifi_hotspot_timeout 0x7f12016e
+int string wifi_hotspot_timeout_bridged 0x7f12016f
+int string wifi_hotspot_timeout_default 0x7f120170
+int string wifi_ieee_80211ax 0x7f120171
+int string wifi_ieee_80211be 0x7f120172
+int string wifi_mac_randomization 0x7f120173
+int string wifi_mac_randomization_non_persistent 0x7f120174
+int string wifi_mac_randomization_none 0x7f120175
+int string wifi_mac_randomization_persistent 0x7f120176
+int string wifi_max_clients 0x7f120177
+int string wifi_password 0x7f120178
+int string wifi_save 0x7f120179
+int string wifi_security 0x7f12017a
+int string wifi_ssid 0x7f12017b
+int string wifi_ssid_toggle_hex 0x7f12017c
+int string wifi_user_config 0x7f12017d
+int string wifi_vendor_elements 0x7f12017e
+int style AlertDialog_AppCompat 0x7f130000
+int style AlertDialog_AppCompat_Light 0x7f130001
+int style Animation_AppCompat_Dialog 0x7f130002
+int style Animation_AppCompat_DropDownUp 0x7f130003
+int style Animation_AppCompat_Tooltip 0x7f130004
+int style Animation_Design_BottomSheetDialog 0x7f130005
+int style Animation_Material3_BottomSheetDialog 0x7f130006
+int style Animation_Material3_SideSheetDialog 0x7f130007
+int style Animation_Material3_SideSheetDialog_Left 0x7f130008
+int style Animation_Material3_SideSheetDialog_Right 0x7f130009
+int style Animation_MaterialComponents_BottomSheetDialog 0x7f13000a
+int style Animation_SimpleMenuCenter 0x7f13000b
+int style AppTheme 0x7f13000c
+int style AppTheme_ActionBar 0x7f13000d
+int style AppTheme_Preference_MaterialSwitchPreference 0x7f13000e
+int style Base_AlertDialog_AppCompat 0x7f13000f
+int style Base_AlertDialog_AppCompat_Light 0x7f130010
+int style Base_Animation_AppCompat_Dialog 0x7f130011
+int style Base_Animation_AppCompat_DropDownUp 0x7f130012
+int style Base_Animation_AppCompat_Tooltip 0x7f130013
+int style Base_CardView 0x7f130014
+int style Base_DialogWindowTitle_AppCompat 0x7f130015
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f130016
+int style Base_MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f130017
+int style Base_MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f130018
+int style Base_MaterialAlertDialog_MaterialComponents_Title_Text 0x7f130019
+int style Base_TextAppearance_AppCompat 0x7f13001a
+int style Base_TextAppearance_AppCompat_Body1 0x7f13001b
+int style Base_TextAppearance_AppCompat_Body2 0x7f13001c
+int style Base_TextAppearance_AppCompat_Button 0x7f13001d
+int style Base_TextAppearance_AppCompat_Caption 0x7f13001e
+int style Base_TextAppearance_AppCompat_Display1 0x7f13001f
+int style Base_TextAppearance_AppCompat_Display2 0x7f130020
+int style Base_TextAppearance_AppCompat_Display3 0x7f130021
+int style Base_TextAppearance_AppCompat_Display4 0x7f130022
+int style Base_TextAppearance_AppCompat_Headline 0x7f130023
+int style Base_TextAppearance_AppCompat_Inverse 0x7f130024
+int style Base_TextAppearance_AppCompat_Large 0x7f130025
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f130026
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f130027
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f130028
+int style Base_TextAppearance_AppCompat_Medium 0x7f130029
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f13002a
+int style Base_TextAppearance_AppCompat_Menu 0x7f13002b
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f13002c
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f13002d
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f13002e
+int style Base_TextAppearance_AppCompat_Small 0x7f13002f
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f130030
+int style Base_TextAppearance_AppCompat_Subhead 0x7f130031
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f130032
+int style Base_TextAppearance_AppCompat_Title 0x7f130033
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f130034
+int style Base_TextAppearance_AppCompat_Tooltip 0x7f130035
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f130036
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f130037
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f130038
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f130039
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f13003a
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f13003b
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f13003c
+int style Base_TextAppearance_AppCompat_Widget_Button 0x7f13003d
+int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f13003e
+int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f13003f
+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f130040
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f130041
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f130042
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f130043
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f130044
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f130045
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f130046
+int style Base_TextAppearance_Material3_Search 0x7f130047
+int style Base_TextAppearance_MaterialComponents_Badge 0x7f130048
+int style Base_TextAppearance_MaterialComponents_Button 0x7f130049
+int style Base_TextAppearance_MaterialComponents_Headline6 0x7f13004a
+int style Base_TextAppearance_MaterialComponents_Subtitle2 0x7f13004b
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f13004c
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f13004d
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f13004e
+int style Base_Theme_AppCompat 0x7f13004f
+int style Base_Theme_AppCompat_CompactMenu 0x7f130050
+int style Base_Theme_AppCompat_Dialog 0x7f130051
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f130052
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f130053
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f130054
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f130055
+int style Base_Theme_AppCompat_Light 0x7f130056
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f130057
+int style Base_Theme_AppCompat_Light_Dialog 0x7f130058
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f130059
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f13005a
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f13005b
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f13005c
+int style Base_Theme_Material3_Dark 0x7f13005d
+int style Base_Theme_Material3_Dark_BottomSheetDialog 0x7f13005e
+int style Base_Theme_Material3_Dark_Dialog 0x7f13005f
+int style Base_Theme_Material3_Dark_Dialog_FixedSize 0x7f130060
+int style Base_Theme_Material3_Dark_DialogWhenLarge 0x7f130061
+int style Base_Theme_Material3_Dark_SideSheetDialog 0x7f130062
+int style Base_Theme_Material3_Light 0x7f130063
+int style Base_Theme_Material3_Light_BottomSheetDialog 0x7f130064
+int style Base_Theme_Material3_Light_Dialog 0x7f130065
+int style Base_Theme_Material3_Light_Dialog_FixedSize 0x7f130066
+int style Base_Theme_Material3_Light_DialogWhenLarge 0x7f130067
+int style Base_Theme_Material3_Light_SideSheetDialog 0x7f130068
+int style Base_Theme_MaterialComponents 0x7f130069
+int style Base_Theme_MaterialComponents_Bridge 0x7f13006a
+int style Base_Theme_MaterialComponents_CompactMenu 0x7f13006b
+int style Base_Theme_MaterialComponents_Dialog 0x7f13006c
+int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f13006d
+int style Base_Theme_MaterialComponents_Dialog_Bridge 0x7f13006e
+int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f13006f
+int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f130070
+int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f130071
+int style Base_Theme_MaterialComponents_Light 0x7f130072
+int style Base_Theme_MaterialComponents_Light_Bridge 0x7f130073
+int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f130074
+int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f130075
+int style Base_Theme_MaterialComponents_Light_Dialog 0x7f130076
+int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f130077
+int style Base_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f130078
+int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f130079
+int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f13007a
+int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f13007b
+int style Base_ThemeOverlay_AppCompat 0x7f13007c
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f13007d
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f13007e
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f13007f
+int style Base_ThemeOverlay_AppCompat_Dialog 0x7f130080
+int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f130081
+int style Base_ThemeOverlay_AppCompat_Light 0x7f130082
+int style Base_ThemeOverlay_Material3_AutoCompleteTextView 0x7f130083
+int style Base_ThemeOverlay_Material3_BottomSheetDialog 0x7f130084
+int style Base_ThemeOverlay_Material3_Dialog 0x7f130085
+int style Base_ThemeOverlay_Material3_SideSheetDialog 0x7f130086
+int style Base_ThemeOverlay_Material3_TextInputEditText 0x7f130087
+int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f130088
+int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f130089
+int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f13008a
+int style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f13008b
+int style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f13008c
+int style Base_V14_Theme_Material3_Dark 0x7f13008d
+int style Base_V14_Theme_Material3_Dark_BottomSheetDialog 0x7f13008e
+int style Base_V14_Theme_Material3_Dark_Dialog 0x7f13008f
+int style Base_V14_Theme_Material3_Dark_SideSheetDialog 0x7f130090
+int style Base_V14_Theme_Material3_Light 0x7f130091
+int style Base_V14_Theme_Material3_Light_BottomSheetDialog 0x7f130092
+int style Base_V14_Theme_Material3_Light_Dialog 0x7f130093
+int style Base_V14_Theme_Material3_Light_SideSheetDialog 0x7f130094
+int style Base_V14_Theme_MaterialComponents 0x7f130095
+int style Base_V14_Theme_MaterialComponents_Bridge 0x7f130096
+int style Base_V14_Theme_MaterialComponents_Dialog 0x7f130097
+int style Base_V14_Theme_MaterialComponents_Dialog_Bridge 0x7f130098
+int style Base_V14_Theme_MaterialComponents_Light 0x7f130099
+int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f13009a
+int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f13009b
+int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f13009c
+int style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f13009d
+int style Base_V14_ThemeOverlay_Material3_BottomSheetDialog 0x7f13009e
+int style Base_V14_ThemeOverlay_Material3_SideSheetDialog 0x7f13009f
+int style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f1300a0
+int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f1300a1
+int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f1300a2
+int style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f1300a3
+int style Base_V14_Widget_MaterialComponents_AutoCompleteTextView 0x7f1300a4
+int style Base_V21_Theme_AppCompat 0x7f1300a5
+int style Base_V21_Theme_AppCompat_Dialog 0x7f1300a6
+int style Base_V21_Theme_AppCompat_Light 0x7f1300a7
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f1300a8
+int style Base_V21_Theme_MaterialComponents 0x7f1300a9
+int style Base_V21_Theme_MaterialComponents_Dialog 0x7f1300aa
+int style Base_V21_Theme_MaterialComponents_Light 0x7f1300ab
+int style Base_V21_Theme_MaterialComponents_Light_Dialog 0x7f1300ac
+int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f1300ad
+int style Base_V21_ThemeOverlay_Material3_BottomSheetDialog 0x7f1300ae
+int style Base_V21_ThemeOverlay_Material3_SideSheetDialog 0x7f1300af
+int style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f1300b0
+int style Base_V22_Theme_AppCompat 0x7f1300b1
+int style Base_V22_Theme_AppCompat_Light 0x7f1300b2
+int style Base_V23_Theme_AppCompat 0x7f1300b3
+int style Base_V23_Theme_AppCompat_Light 0x7f1300b4
+int style Base_V24_Theme_Material3_Dark 0x7f1300b5
+int style Base_V24_Theme_Material3_Dark_Dialog 0x7f1300b6
+int style Base_V24_Theme_Material3_Light 0x7f1300b7
+int style Base_V24_Theme_Material3_Light_Dialog 0x7f1300b8
+int style Base_V26_Theme_AppCompat 0x7f1300b9
+int style Base_V26_Theme_AppCompat_Light 0x7f1300ba
+int style Base_V26_Widget_AppCompat_Toolbar 0x7f1300bb
+int style Base_V28_Theme_AppCompat 0x7f1300bc
+int style Base_V28_Theme_AppCompat_Light 0x7f1300bd
+int style Base_V7_Theme_AppCompat 0x7f1300be
+int style Base_V7_Theme_AppCompat_Dialog 0x7f1300bf
+int style Base_V7_Theme_AppCompat_Light 0x7f1300c0
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f1300c1
+int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f1300c2
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f1300c3
+int style Base_V7_Widget_AppCompat_EditText 0x7f1300c4
+int style Base_V7_Widget_AppCompat_Toolbar 0x7f1300c5
+int style Base_Widget_AppCompat_ActionBar 0x7f1300c6
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f1300c7
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f1300c8
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f1300c9
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f1300ca
+int style Base_Widget_AppCompat_ActionButton 0x7f1300cb
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f1300cc
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f1300cd
+int style Base_Widget_AppCompat_ActionMode 0x7f1300ce
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f1300cf
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f1300d0
+int style Base_Widget_AppCompat_Button 0x7f1300d1
+int style Base_Widget_AppCompat_Button_Borderless 0x7f1300d2
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f1300d3
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f1300d4
+int style Base_Widget_AppCompat_Button_Colored 0x7f1300d5
+int style Base_Widget_AppCompat_Button_Small 0x7f1300d6
+int style Base_Widget_AppCompat_ButtonBar 0x7f1300d7
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f1300d8
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f1300d9
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f1300da
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f1300db
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f1300dc
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f1300dd
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f1300de
+int style Base_Widget_AppCompat_EditText 0x7f1300df
+int style Base_Widget_AppCompat_ImageButton 0x7f1300e0
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f1300e1
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f1300e2
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f1300e3
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f1300e4
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1300e5
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f1300e6
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f1300e7
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1300e8
+int style Base_Widget_AppCompat_ListMenuView 0x7f1300e9
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f1300ea
+int style Base_Widget_AppCompat_ListView 0x7f1300eb
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f1300ec
+int style Base_Widget_AppCompat_ListView_Menu 0x7f1300ed
+int style Base_Widget_AppCompat_PopupMenu 0x7f1300ee
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f1300ef
+int style Base_Widget_AppCompat_PopupWindow 0x7f1300f0
+int style Base_Widget_AppCompat_ProgressBar 0x7f1300f1
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f1300f2
+int style Base_Widget_AppCompat_RatingBar 0x7f1300f3
+int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f1300f4
+int style Base_Widget_AppCompat_RatingBar_Small 0x7f1300f5
+int style Base_Widget_AppCompat_SearchView 0x7f1300f6
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f1300f7
+int style Base_Widget_AppCompat_SeekBar 0x7f1300f8
+int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f1300f9
+int style Base_Widget_AppCompat_Spinner 0x7f1300fa
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f1300fb
+int style Base_Widget_AppCompat_TextView 0x7f1300fc
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1300fd
+int style Base_Widget_AppCompat_Toolbar 0x7f1300fe
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1300ff
+int style Base_Widget_Design_TabLayout 0x7f130100
+int style Base_Widget_Material3_ActionBar_Solid 0x7f130101
+int style Base_Widget_Material3_ActionMode 0x7f130102
+int style Base_Widget_Material3_BottomNavigationView 0x7f130103
+int style Base_Widget_Material3_CardView 0x7f130104
+int style Base_Widget_Material3_Chip 0x7f130105
+int style Base_Widget_Material3_CollapsingToolbar 0x7f130106
+int style Base_Widget_Material3_CompoundButton_CheckBox 0x7f130107
+int style Base_Widget_Material3_CompoundButton_RadioButton 0x7f130108
+int style Base_Widget_Material3_CompoundButton_Switch 0x7f130109
+int style Base_Widget_Material3_ExtendedFloatingActionButton 0x7f13010a
+int style Base_Widget_Material3_ExtendedFloatingActionButton_Icon 0x7f13010b
+int style Base_Widget_Material3_FloatingActionButton 0x7f13010c
+int style Base_Widget_Material3_FloatingActionButton_Large 0x7f13010d
+int style Base_Widget_Material3_FloatingActionButton_Small 0x7f13010e
+int style Base_Widget_Material3_Light_ActionBar_Solid 0x7f13010f
+int style Base_Widget_Material3_MaterialCalendar_NavigationButton 0x7f130110
+int style Base_Widget_Material3_Snackbar 0x7f130111
+int style Base_Widget_Material3_TabLayout 0x7f130112
+int style Base_Widget_Material3_TabLayout_OnSurface 0x7f130113
+int style Base_Widget_Material3_TabLayout_Secondary 0x7f130114
+int style Base_Widget_MaterialComponents_AutoCompleteTextView 0x7f130115
+int style Base_Widget_MaterialComponents_CheckedTextView 0x7f130116
+int style Base_Widget_MaterialComponents_Chip 0x7f130117
+int style Base_Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x7f130118
+int style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton 0x7f130119
+int style Base_Widget_MaterialComponents_PopupMenu 0x7f13011a
+int style Base_Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f13011b
+int style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f13011c
+int style Base_Widget_MaterialComponents_PopupMenu_Overflow 0x7f13011d
+int style Base_Widget_MaterialComponents_Slider 0x7f13011e
+int style Base_Widget_MaterialComponents_Snackbar 0x7f13011f
+int style Base_Widget_MaterialComponents_TextInputEditText 0x7f130120
+int style Base_Widget_MaterialComponents_TextInputLayout 0x7f130121
+int style Base_Widget_MaterialComponents_TextView 0x7f130122
+int style BasePreferenceThemeOverlay 0x7f130123
+int style CardView 0x7f130124
+int style CardView_Dark 0x7f130125
+int style CardView_Light 0x7f130126
+int style MaterialAlertDialog_Material3 0x7f130127
+int style MaterialAlertDialog_Material3_Animation 0x7f130128
+int style MaterialAlertDialog_Material3_Body_Text 0x7f130129
+int style MaterialAlertDialog_Material3_Body_Text_CenterStacked 0x7f13012a
+int style MaterialAlertDialog_Material3_Title_Icon 0x7f13012b
+int style MaterialAlertDialog_Material3_Title_Icon_CenterStacked 0x7f13012c
+int style MaterialAlertDialog_Material3_Title_Panel 0x7f13012d
+int style MaterialAlertDialog_Material3_Title_Panel_CenterStacked 0x7f13012e
+int style MaterialAlertDialog_Material3_Title_Text 0x7f13012f
+int style MaterialAlertDialog_Material3_Title_Text_CenterStacked 0x7f130130
+int style MaterialAlertDialog_MaterialComponents 0x7f130131
+int style MaterialAlertDialog_MaterialComponents_Body_Text 0x7f130132
+int style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar 0x7f130133
+int style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner 0x7f130134
+int style MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f130135
+int style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked 0x7f130136
+int style MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f130137
+int style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked 0x7f130138
+int style MaterialAlertDialog_MaterialComponents_Title_Text 0x7f130139
+int style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked 0x7f13013a
+int style Platform_AppCompat 0x7f13013b
+int style Platform_AppCompat_Light 0x7f13013c
+int style Platform_MaterialComponents 0x7f13013d
+int style Platform_MaterialComponents_Dialog 0x7f13013e
+int style Platform_MaterialComponents_Light 0x7f13013f
+int style Platform_MaterialComponents_Light_Dialog 0x7f130140
+int style Platform_ThemeOverlay_AppCompat 0x7f130141
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f130142
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f130143
+int style Platform_V21_AppCompat 0x7f130144
+int style Platform_V21_AppCompat_Light 0x7f130145
+int style Platform_V25_AppCompat 0x7f130146
+int style Platform_V25_AppCompat_Light 0x7f130147
+int style Platform_Widget_AppCompat_Spinner 0x7f130148
+int style Preference 0x7f130149
+int style Preference_Category 0x7f13014a
+int style Preference_Category_Material 0x7f13014b
+int style Preference_CheckBoxPreference 0x7f13014c
+int style Preference_CheckBoxPreference_Material 0x7f13014d
+int style Preference_DialogPreference 0x7f13014e
+int style Preference_DialogPreference_EditTextPreference 0x7f13014f
+int style Preference_DialogPreference_EditTextPreference_Material 0x7f130150
+int style Preference_DialogPreference_Material 0x7f130151
+int style Preference_DropDown 0x7f130152
+int style Preference_DropDown_Material 0x7f130153
+int style Preference_Information 0x7f130154
+int style Preference_Information_Material 0x7f130155
+int style Preference_Material 0x7f130156
+int style Preference_PreferenceScreen 0x7f130157
+int style Preference_PreferenceScreen_Material 0x7f130158
+int style Preference_SeekBarPreference 0x7f130159
+int style Preference_SeekBarPreference_Material 0x7f13015a
+int style Preference_SimpleMenuPreference 0x7f13015b
+int style Preference_SimpleMenuPreference_Popup 0x7f13015c
+int style Preference_SwitchPreference 0x7f13015d
+int style Preference_SwitchPreference_Material 0x7f13015e
+int style Preference_SwitchPreferenceCompat 0x7f13015f
+int style Preference_SwitchPreferenceCompat_Material 0x7f130160
+int style PreferenceCategoryTitleTextStyle 0x7f130161
+int style PreferenceFragment 0x7f130162
+int style PreferenceFragment_Material 0x7f130163
+int style PreferenceFragmentList 0x7f130164
+int style PreferenceFragmentList_Material 0x7f130165
+int style PreferenceSummaryTextStyle 0x7f130166
+int style PreferenceThemeOverlay 0x7f130167
+int style PreferenceThemeOverlay_v14 0x7f130168
+int style PreferenceThemeOverlay_v14_Material 0x7f130169
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f13016a
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f13016b
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f13016c
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f13016d
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f13016e
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f13016f
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f130170
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f130171
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f130172
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f130173
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f130174
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f130175
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f130176
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f130177
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f130178
+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f130179
+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f13017a
+int style ShapeAppearance_M3_Comp_Badge_Large_Shape 0x7f13017b
+int style ShapeAppearance_M3_Comp_Badge_Shape 0x7f13017c
+int style ShapeAppearance_M3_Comp_BottomAppBar_Container_Shape 0x7f13017d
+int style ShapeAppearance_M3_Comp_DatePicker_Modal_Date_Container_Shape 0x7f13017e
+int style ShapeAppearance_M3_Comp_FilledButton_Container_Shape 0x7f13017f
+int style ShapeAppearance_M3_Comp_NavigationBar_ActiveIndicator_Shape 0x7f130180
+int style ShapeAppearance_M3_Comp_NavigationBar_Container_Shape 0x7f130181
+int style ShapeAppearance_M3_Comp_NavigationDrawer_ActiveIndicator_Shape 0x7f130182
+int style ShapeAppearance_M3_Comp_NavigationRail_ActiveIndicator_Shape 0x7f130183
+int style ShapeAppearance_M3_Comp_NavigationRail_Container_Shape 0x7f130184
+int style ShapeAppearance_M3_Comp_SearchBar_Avatar_Shape 0x7f130185
+int style ShapeAppearance_M3_Comp_SearchBar_Container_Shape 0x7f130186
+int style ShapeAppearance_M3_Comp_SearchView_FullScreen_Container_Shape 0x7f130187
+int style ShapeAppearance_M3_Comp_Sheet_Side_Docked_Container_Shape 0x7f130188
+int style ShapeAppearance_M3_Comp_Switch_Handle_Shape 0x7f130189
+int style ShapeAppearance_M3_Comp_Switch_StateLayer_Shape 0x7f13018a
+int style ShapeAppearance_M3_Comp_Switch_Track_Shape 0x7f13018b
+int style ShapeAppearance_M3_Comp_TextButton_Container_Shape 0x7f13018c
+int style ShapeAppearance_M3_Sys_Shape_Corner_ExtraLarge 0x7f13018d
+int style ShapeAppearance_M3_Sys_Shape_Corner_ExtraSmall 0x7f13018e
+int style ShapeAppearance_M3_Sys_Shape_Corner_Full 0x7f13018f
+int style ShapeAppearance_M3_Sys_Shape_Corner_Large 0x7f130190
+int style ShapeAppearance_M3_Sys_Shape_Corner_Medium 0x7f130191
+int style ShapeAppearance_M3_Sys_Shape_Corner_None 0x7f130192
+int style ShapeAppearance_M3_Sys_Shape_Corner_Small 0x7f130193
+int style ShapeAppearance_Material3_Corner_ExtraLarge 0x7f130194
+int style ShapeAppearance_Material3_Corner_ExtraSmall 0x7f130195
+int style ShapeAppearance_Material3_Corner_Full 0x7f130196
+int style ShapeAppearance_Material3_Corner_Large 0x7f130197
+int style ShapeAppearance_Material3_Corner_Medium 0x7f130198
+int style ShapeAppearance_Material3_Corner_None 0x7f130199
+int style ShapeAppearance_Material3_Corner_Small 0x7f13019a
+int style ShapeAppearance_Material3_LargeComponent 0x7f13019b
+int style ShapeAppearance_Material3_MediumComponent 0x7f13019c
+int style ShapeAppearance_Material3_NavigationBarView_ActiveIndicator 0x7f13019d
+int style ShapeAppearance_Material3_SmallComponent 0x7f13019e
+int style ShapeAppearance_Material3_Tooltip 0x7f13019f
+int style ShapeAppearance_MaterialComponents 0x7f1301a0
+int style ShapeAppearance_MaterialComponents_Badge 0x7f1301a1
+int style ShapeAppearance_MaterialComponents_LargeComponent 0x7f1301a2
+int style ShapeAppearance_MaterialComponents_MediumComponent 0x7f1301a3
+int style ShapeAppearance_MaterialComponents_SmallComponent 0x7f1301a4
+int style ShapeAppearance_MaterialComponents_Tooltip 0x7f1301a5
+int style ShapeAppearanceOverlay_Material3_Button 0x7f1301a6
+int style ShapeAppearanceOverlay_Material3_Chip 0x7f1301a7
+int style ShapeAppearanceOverlay_Material3_Corner_Bottom 0x7f1301a8
+int style ShapeAppearanceOverlay_Material3_Corner_Left 0x7f1301a9
+int style ShapeAppearanceOverlay_Material3_Corner_Right 0x7f1301aa
+int style ShapeAppearanceOverlay_Material3_Corner_Top 0x7f1301ab
+int style ShapeAppearanceOverlay_Material3_FloatingActionButton 0x7f1301ac
+int style ShapeAppearanceOverlay_Material3_NavigationView_Item 0x7f1301ad
+int style ShapeAppearanceOverlay_Material3_SearchBar 0x7f1301ae
+int style ShapeAppearanceOverlay_Material3_SearchView 0x7f1301af
+int style ShapeAppearanceOverlay_MaterialAlertDialog_Material3 0x7f1301b0
+int style ShapeAppearanceOverlay_MaterialComponents_BottomSheet 0x7f1301b1
+int style ShapeAppearanceOverlay_MaterialComponents_Chip 0x7f1301b2
+int style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton 0x7f1301b3
+int style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton 0x7f1301b4
+int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f1301b5
+int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen 0x7f1301b6
+int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year 0x7f1301b7
+int style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox 0x7f1301b8
+int style TextAppearance_AppCompat 0x7f1301b9
+int style TextAppearance_AppCompat_Body1 0x7f1301ba
+int style TextAppearance_AppCompat_Body2 0x7f1301bb
+int style TextAppearance_AppCompat_Button 0x7f1301bc
+int style TextAppearance_AppCompat_Caption 0x7f1301bd
+int style TextAppearance_AppCompat_Display1 0x7f1301be
+int style TextAppearance_AppCompat_Display2 0x7f1301bf
+int style TextAppearance_AppCompat_Display3 0x7f1301c0
+int style TextAppearance_AppCompat_Display4 0x7f1301c1
+int style TextAppearance_AppCompat_Headline 0x7f1301c2
+int style TextAppearance_AppCompat_Inverse 0x7f1301c3
+int style TextAppearance_AppCompat_Large 0x7f1301c4
+int style TextAppearance_AppCompat_Large_Inverse 0x7f1301c5
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1301c6
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1301c7
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1301c8
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1301c9
+int style TextAppearance_AppCompat_Medium 0x7f1301ca
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f1301cb
+int style TextAppearance_AppCompat_Menu 0x7f1301cc
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f1301cd
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f1301ce
+int style TextAppearance_AppCompat_Small 0x7f1301cf
+int style TextAppearance_AppCompat_Small_Inverse 0x7f1301d0
+int style TextAppearance_AppCompat_Subhead 0x7f1301d1
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f1301d2
+int style TextAppearance_AppCompat_Title 0x7f1301d3
+int style TextAppearance_AppCompat_Title_Inverse 0x7f1301d4
+int style TextAppearance_AppCompat_Tooltip 0x7f1301d5
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f1301d6
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f1301d7
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f1301d8
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f1301d9
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f1301da
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f1301db
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f1301dc
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f1301dd
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f1301de
+int style TextAppearance_AppCompat_Widget_Button 0x7f1301df
+int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f1301e0
+int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f1301e1
+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f1301e2
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f1301e3
+int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f1301e4
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f1301e5
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f1301e6
+int style TextAppearance_AppCompat_Widget_Switch 0x7f1301e7
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f1301e8
+int style TextAppearance_Compat_Notification 0x7f1301e9
+int style TextAppearance_Compat_Notification_Info 0x7f1301ea
+int style TextAppearance_Compat_Notification_Line2 0x7f1301eb
+int style TextAppearance_Compat_Notification_Time 0x7f1301ec
+int style TextAppearance_Compat_Notification_Title 0x7f1301ed
+int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f1301ee
+int style TextAppearance_Design_Counter 0x7f1301ef
+int style TextAppearance_Design_Counter_Overflow 0x7f1301f0
+int style TextAppearance_Design_Error 0x7f1301f1
+int style TextAppearance_Design_HelperText 0x7f1301f2
+int style TextAppearance_Design_Hint 0x7f1301f3
+int style TextAppearance_Design_Placeholder 0x7f1301f4
+int style TextAppearance_Design_Prefix 0x7f1301f5
+int style TextAppearance_Design_Snackbar_Message 0x7f1301f6
+int style TextAppearance_Design_Suffix 0x7f1301f7
+int style TextAppearance_Design_Tab 0x7f1301f8
+int style TextAppearance_M3_Sys_Typescale_BodyLarge 0x7f1301f9
+int style TextAppearance_M3_Sys_Typescale_BodyMedium 0x7f1301fa
+int style TextAppearance_M3_Sys_Typescale_BodySmall 0x7f1301fb
+int style TextAppearance_M3_Sys_Typescale_DisplayLarge 0x7f1301fc
+int style TextAppearance_M3_Sys_Typescale_DisplayMedium 0x7f1301fd
+int style TextAppearance_M3_Sys_Typescale_DisplaySmall 0x7f1301fe
+int style TextAppearance_M3_Sys_Typescale_HeadlineLarge 0x7f1301ff
+int style TextAppearance_M3_Sys_Typescale_HeadlineMedium 0x7f130200
+int style TextAppearance_M3_Sys_Typescale_HeadlineSmall 0x7f130201
+int style TextAppearance_M3_Sys_Typescale_LabelLarge 0x7f130202
+int style TextAppearance_M3_Sys_Typescale_LabelMedium 0x7f130203
+int style TextAppearance_M3_Sys_Typescale_LabelSmall 0x7f130204
+int style TextAppearance_M3_Sys_Typescale_TitleLarge 0x7f130205
+int style TextAppearance_M3_Sys_Typescale_TitleMedium 0x7f130206
+int style TextAppearance_M3_Sys_Typescale_TitleSmall 0x7f130207
+int style TextAppearance_Material3_ActionBar_Subtitle 0x7f130208
+int style TextAppearance_Material3_ActionBar_Title 0x7f130209
+int style TextAppearance_Material3_BodyLarge 0x7f13020a
+int style TextAppearance_Material3_BodyMedium 0x7f13020b
+int style TextAppearance_Material3_BodySmall 0x7f13020c
+int style TextAppearance_Material3_DisplayLarge 0x7f13020d
+int style TextAppearance_Material3_DisplayMedium 0x7f13020e
+int style TextAppearance_Material3_DisplaySmall 0x7f13020f
+int style TextAppearance_Material3_HeadlineLarge 0x7f130210
+int style TextAppearance_Material3_HeadlineMedium 0x7f130211
+int style TextAppearance_Material3_HeadlineSmall 0x7f130212
+int style TextAppearance_Material3_LabelLarge 0x7f130213
+int style TextAppearance_Material3_LabelMedium 0x7f130214
+int style TextAppearance_Material3_LabelSmall 0x7f130215
+int style TextAppearance_Material3_MaterialTimePicker_Title 0x7f130216
+int style TextAppearance_Material3_SearchBar 0x7f130217
+int style TextAppearance_Material3_SearchView 0x7f130218
+int style TextAppearance_Material3_SearchView_Prefix 0x7f130219
+int style TextAppearance_Material3_TitleLarge 0x7f13021a
+int style TextAppearance_Material3_TitleMedium 0x7f13021b
+int style TextAppearance_Material3_TitleSmall 0x7f13021c
+int style TextAppearance_MaterialComponents_Badge 0x7f13021d
+int style TextAppearance_MaterialComponents_Body1 0x7f13021e
+int style TextAppearance_MaterialComponents_Body2 0x7f13021f
+int style TextAppearance_MaterialComponents_Button 0x7f130220
+int style TextAppearance_MaterialComponents_Caption 0x7f130221
+int style TextAppearance_MaterialComponents_Chip 0x7f130222
+int style TextAppearance_MaterialComponents_Headline1 0x7f130223
+int style TextAppearance_MaterialComponents_Headline2 0x7f130224
+int style TextAppearance_MaterialComponents_Headline3 0x7f130225
+int style TextAppearance_MaterialComponents_Headline4 0x7f130226
+int style TextAppearance_MaterialComponents_Headline5 0x7f130227
+int style TextAppearance_MaterialComponents_Headline6 0x7f130228
+int style TextAppearance_MaterialComponents_Overline 0x7f130229
+int style TextAppearance_MaterialComponents_Subtitle1 0x7f13022a
+int style TextAppearance_MaterialComponents_Subtitle2 0x7f13022b
+int style TextAppearance_MaterialComponents_TimePicker_Title 0x7f13022c
+int style TextAppearance_MaterialComponents_Tooltip 0x7f13022d
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f13022e
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f13022f
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f130230
+int style Theme_AppCompat 0x7f130231
+int style Theme_AppCompat_CompactMenu 0x7f130232
+int style Theme_AppCompat_DayNight 0x7f130233
+int style Theme_AppCompat_DayNight_DarkActionBar 0x7f130234
+int style Theme_AppCompat_DayNight_Dialog 0x7f130235
+int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f130236
+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f130237
+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f130238
+int style Theme_AppCompat_DayNight_NoActionBar 0x7f130239
+int style Theme_AppCompat_Dialog 0x7f13023a
+int style Theme_AppCompat_Dialog_Alert 0x7f13023b
+int style Theme_AppCompat_Dialog_MinWidth 0x7f13023c
+int style Theme_AppCompat_DialogWhenLarge 0x7f13023d
+int style Theme_AppCompat_Empty 0x7f13023e
+int style Theme_AppCompat_Light 0x7f13023f
+int style Theme_AppCompat_Light_DarkActionBar 0x7f130240
+int style Theme_AppCompat_Light_Dialog 0x7f130241
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f130242
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f130243
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f130244
+int style Theme_AppCompat_Light_NoActionBar 0x7f130245
+int style Theme_AppCompat_NoActionBar 0x7f130246
+int style Theme_Design 0x7f130247
+int style Theme_Design_BottomSheetDialog 0x7f130248
+int style Theme_Design_Light 0x7f130249
+int style Theme_Design_Light_BottomSheetDialog 0x7f13024a
+int style Theme_Design_Light_NoActionBar 0x7f13024b
+int style Theme_Design_NoActionBar 0x7f13024c
+int style Theme_Material3_Dark 0x7f13024d
+int style Theme_Material3_Dark_BottomSheetDialog 0x7f13024e
+int style Theme_Material3_Dark_Dialog 0x7f13024f
+int style Theme_Material3_Dark_Dialog_Alert 0x7f130250
+int style Theme_Material3_Dark_Dialog_MinWidth 0x7f130251
+int style Theme_Material3_Dark_DialogWhenLarge 0x7f130252
+int style Theme_Material3_Dark_NoActionBar 0x7f130253
+int style Theme_Material3_Dark_SideSheetDialog 0x7f130254
+int style Theme_Material3_DayNight 0x7f130255
+int style Theme_Material3_DayNight_BottomSheetDialog 0x7f130256
+int style Theme_Material3_DayNight_Dialog 0x7f130257
+int style Theme_Material3_DayNight_Dialog_Alert 0x7f130258
+int style Theme_Material3_DayNight_Dialog_MinWidth 0x7f130259
+int style Theme_Material3_DayNight_DialogWhenLarge 0x7f13025a
+int style Theme_Material3_DayNight_NoActionBar 0x7f13025b
+int style Theme_Material3_DayNight_SideSheetDialog 0x7f13025c
+int style Theme_Material3_DynamicColors_Dark 0x7f13025d
+int style Theme_Material3_DynamicColors_DayNight 0x7f13025e
+int style Theme_Material3_DynamicColors_Light 0x7f13025f
+int style Theme_Material3_Light 0x7f130260
+int style Theme_Material3_Light_BottomSheetDialog 0x7f130261
+int style Theme_Material3_Light_Dialog 0x7f130262
+int style Theme_Material3_Light_Dialog_Alert 0x7f130263
+int style Theme_Material3_Light_Dialog_MinWidth 0x7f130264
+int style Theme_Material3_Light_DialogWhenLarge 0x7f130265
+int style Theme_Material3_Light_NoActionBar 0x7f130266
+int style Theme_Material3_Light_SideSheetDialog 0x7f130267
+int style Theme_MaterialComponents 0x7f130268
+int style Theme_MaterialComponents_BottomSheetDialog 0x7f130269
+int style Theme_MaterialComponents_Bridge 0x7f13026a
+int style Theme_MaterialComponents_CompactMenu 0x7f13026b
+int style Theme_MaterialComponents_DayNight 0x7f13026c
+int style Theme_MaterialComponents_DayNight_BottomSheetDialog 0x7f13026d
+int style Theme_MaterialComponents_DayNight_Bridge 0x7f13026e
+int style Theme_MaterialComponents_DayNight_DarkActionBar 0x7f13026f
+int style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge 0x7f130270
+int style Theme_MaterialComponents_DayNight_Dialog 0x7f130271
+int style Theme_MaterialComponents_DayNight_Dialog_Alert 0x7f130272
+int style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge 0x7f130273
+int style Theme_MaterialComponents_DayNight_Dialog_Bridge 0x7f130274
+int style Theme_MaterialComponents_DayNight_Dialog_FixedSize 0x7f130275
+int style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge 0x7f130276
+int style Theme_MaterialComponents_DayNight_Dialog_MinWidth 0x7f130277
+int style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge 0x7f130278
+int style Theme_MaterialComponents_DayNight_DialogWhenLarge 0x7f130279
+int style Theme_MaterialComponents_DayNight_NoActionBar 0x7f13027a
+int style Theme_MaterialComponents_DayNight_NoActionBar_Bridge 0x7f13027b
+int style Theme_MaterialComponents_Dialog 0x7f13027c
+int style Theme_MaterialComponents_Dialog_Alert 0x7f13027d
+int style Theme_MaterialComponents_Dialog_Alert_Bridge 0x7f13027e
+int style Theme_MaterialComponents_Dialog_Bridge 0x7f13027f
+int style Theme_MaterialComponents_Dialog_FixedSize 0x7f130280
+int style Theme_MaterialComponents_Dialog_FixedSize_Bridge 0x7f130281
+int style Theme_MaterialComponents_Dialog_MinWidth 0x7f130282
+int style Theme_MaterialComponents_Dialog_MinWidth_Bridge 0x7f130283
+int style Theme_MaterialComponents_DialogWhenLarge 0x7f130284
+int style Theme_MaterialComponents_Light 0x7f130285
+int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f130286
+int style Theme_MaterialComponents_Light_Bridge 0x7f130287
+int style Theme_MaterialComponents_Light_DarkActionBar 0x7f130288
+int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f130289
+int style Theme_MaterialComponents_Light_Dialog 0x7f13028a
+int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f13028b
+int style Theme_MaterialComponents_Light_Dialog_Alert_Bridge 0x7f13028c
+int style Theme_MaterialComponents_Light_Dialog_Bridge 0x7f13028d
+int style Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f13028e
+int style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge 0x7f13028f
+int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f130290
+int style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge 0x7f130291
+int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f130292
+int style Theme_MaterialComponents_Light_NoActionBar 0x7f130293
+int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f130294
+int style Theme_MaterialComponents_NoActionBar 0x7f130295
+int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f130296
+int style ThemeOverlay_AppCompat 0x7f130297
+int style ThemeOverlay_AppCompat_ActionBar 0x7f130298
+int style ThemeOverlay_AppCompat_Dark 0x7f130299
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f13029a
+int style ThemeOverlay_AppCompat_DayNight 0x7f13029b
+int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f13029c
+int style ThemeOverlay_AppCompat_Dialog 0x7f13029d
+int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f13029e
+int style ThemeOverlay_AppCompat_Light 0x7f13029f
+int style ThemeOverlay_Design_TextInputEditText 0x7f1302a0
+int style ThemeOverlay_Material3 0x7f1302a1
+int style ThemeOverlay_Material3_ActionBar 0x7f1302a2
+int style ThemeOverlay_Material3_AutoCompleteTextView 0x7f1302a3
+int style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox 0x7f1302a4
+int style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox_Dense 0x7f1302a5
+int style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox 0x7f1302a6
+int style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox_Dense 0x7f1302a7
+int style ThemeOverlay_Material3_BottomAppBar 0x7f1302a8
+int style ThemeOverlay_Material3_BottomAppBar_Legacy 0x7f1302a9
+int style ThemeOverlay_Material3_BottomNavigationView 0x7f1302aa
+int style ThemeOverlay_Material3_BottomSheetDialog 0x7f1302ab
+int style ThemeOverlay_Material3_Button 0x7f1302ac
+int style ThemeOverlay_Material3_Button_ElevatedButton 0x7f1302ad
+int style ThemeOverlay_Material3_Button_IconButton 0x7f1302ae
+int style ThemeOverlay_Material3_Button_IconButton_Filled 0x7f1302af
+int style ThemeOverlay_Material3_Button_IconButton_Filled_Tonal 0x7f1302b0
+int style ThemeOverlay_Material3_Button_TextButton 0x7f1302b1
+int style ThemeOverlay_Material3_Button_TextButton_Snackbar 0x7f1302b2
+int style ThemeOverlay_Material3_Button_TonalButton 0x7f1302b3
+int style ThemeOverlay_Material3_Chip 0x7f1302b4
+int style ThemeOverlay_Material3_Chip_Assist 0x7f1302b5
+int style ThemeOverlay_Material3_Dark 0x7f1302b6
+int style ThemeOverlay_Material3_Dark_ActionBar 0x7f1302b7
+int style ThemeOverlay_Material3_DayNight_BottomSheetDialog 0x7f1302b8
+int style ThemeOverlay_Material3_DayNight_SideSheetDialog 0x7f1302b9
+int style ThemeOverlay_Material3_Dialog 0x7f1302ba
+int style ThemeOverlay_Material3_Dialog_Alert 0x7f1302bb
+int style ThemeOverlay_Material3_Dialog_Alert_Framework 0x7f1302bc
+int style ThemeOverlay_Material3_DynamicColors_Dark 0x7f1302bd
+int style ThemeOverlay_Material3_DynamicColors_DayNight 0x7f1302be
+int style ThemeOverlay_Material3_DynamicColors_Light 0x7f1302bf
+int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Primary 0x7f1302c0
+int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Secondary 0x7f1302c1
+int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Surface 0x7f1302c2
+int style ThemeOverlay_Material3_ExtendedFloatingActionButton_Tertiary 0x7f1302c3
+int style ThemeOverlay_Material3_FloatingActionButton_Primary 0x7f1302c4
+int style ThemeOverlay_Material3_FloatingActionButton_Secondary 0x7f1302c5
+int style ThemeOverlay_Material3_FloatingActionButton_Surface 0x7f1302c6
+int style ThemeOverlay_Material3_FloatingActionButton_Tertiary 0x7f1302c7
+int style ThemeOverlay_Material3_HarmonizedColors 0x7f1302c8
+int style ThemeOverlay_Material3_HarmonizedColors_Empty 0x7f1302c9
+int style ThemeOverlay_Material3_Light 0x7f1302ca
+int style ThemeOverlay_Material3_Light_Dialog_Alert_Framework 0x7f1302cb
+int style ThemeOverlay_Material3_MaterialAlertDialog 0x7f1302cc
+int style ThemeOverlay_Material3_MaterialAlertDialog_Centered 0x7f1302cd
+int style ThemeOverlay_Material3_MaterialCalendar 0x7f1302ce
+int style ThemeOverlay_Material3_MaterialCalendar_Fullscreen 0x7f1302cf
+int style ThemeOverlay_Material3_MaterialCalendar_HeaderCancelButton 0x7f1302d0
+int style ThemeOverlay_Material3_MaterialTimePicker 0x7f1302d1
+int style ThemeOverlay_Material3_MaterialTimePicker_Display_TextInputEditText 0x7f1302d2
+int style ThemeOverlay_Material3_NavigationRailView 0x7f1302d3
+int style ThemeOverlay_Material3_NavigationView 0x7f1302d4
+int style ThemeOverlay_Material3_PersonalizedColors 0x7f1302d5
+int style ThemeOverlay_Material3_Search 0x7f1302d6
+int style ThemeOverlay_Material3_SideSheetDialog 0x7f1302d7
+int style ThemeOverlay_Material3_Snackbar 0x7f1302d8
+int style ThemeOverlay_Material3_TabLayout 0x7f1302d9
+int style ThemeOverlay_Material3_TextInputEditText 0x7f1302da
+int style ThemeOverlay_Material3_TextInputEditText_FilledBox 0x7f1302db
+int style ThemeOverlay_Material3_TextInputEditText_FilledBox_Dense 0x7f1302dc
+int style ThemeOverlay_Material3_TextInputEditText_OutlinedBox 0x7f1302dd
+int style ThemeOverlay_Material3_TextInputEditText_OutlinedBox_Dense 0x7f1302de
+int style ThemeOverlay_Material3_Toolbar_Surface 0x7f1302df
+int style ThemeOverlay_MaterialAlertDialog_Material3_Title_Icon 0x7f1302e0
+int style ThemeOverlay_MaterialComponents 0x7f1302e1
+int style ThemeOverlay_MaterialComponents_ActionBar 0x7f1302e2
+int style ThemeOverlay_MaterialComponents_ActionBar_Primary 0x7f1302e3
+int style ThemeOverlay_MaterialComponents_ActionBar_Surface 0x7f1302e4
+int style ThemeOverlay_MaterialComponents_AutoCompleteTextView 0x7f1302e5
+int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f1302e6
+int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f1302e7
+int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f1302e8
+int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f1302e9
+int style ThemeOverlay_MaterialComponents_BottomAppBar_Primary 0x7f1302ea
+int style ThemeOverlay_MaterialComponents_BottomAppBar_Surface 0x7f1302eb
+int style ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f1302ec
+int style ThemeOverlay_MaterialComponents_Dark 0x7f1302ed
+int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f1302ee
+int style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog 0x7f1302ef
+int style ThemeOverlay_MaterialComponents_Dialog 0x7f1302f0
+int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f1302f1
+int style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f1302f2
+int style ThemeOverlay_MaterialComponents_Light 0x7f1302f3
+int style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f1302f4
+int style ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f1302f5
+int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered 0x7f1302f6
+int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date 0x7f1302f7
+int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar 0x7f1302f8
+int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text 0x7f1302f9
+int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day 0x7f1302fa
+int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner 0x7f1302fb
+int style ThemeOverlay_MaterialComponents_MaterialCalendar 0x7f1302fc
+int style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen 0x7f1302fd
+int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f1302fe
+int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f1302ff
+int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f130300
+int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f130301
+int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f130302
+int style ThemeOverlay_MaterialComponents_TimePicker 0x7f130303
+int style ThemeOverlay_MaterialComponents_TimePicker_Display 0x7f130304
+int style ThemeOverlay_MaterialComponents_TimePicker_Display_TextInputEditText 0x7f130305
+int style ThemeOverlay_MaterialComponents_Toolbar_Popup_Primary 0x7f130306
+int style ThemeOverlay_MaterialComponents_Toolbar_Primary 0x7f130307
+int style ThemeOverlay_MaterialComponents_Toolbar_Surface 0x7f130308
+int style Widget_AppCompat_ActionBar 0x7f130309
+int style Widget_AppCompat_ActionBar_Solid 0x7f13030a
+int style Widget_AppCompat_ActionBar_TabBar 0x7f13030b
+int style Widget_AppCompat_ActionBar_TabText 0x7f13030c
+int style Widget_AppCompat_ActionBar_TabView 0x7f13030d
+int style Widget_AppCompat_ActionButton 0x7f13030e
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f13030f
+int style Widget_AppCompat_ActionButton_Overflow 0x7f130310
+int style Widget_AppCompat_ActionMode 0x7f130311
+int style Widget_AppCompat_ActivityChooserView 0x7f130312
+int style Widget_AppCompat_AutoCompleteTextView 0x7f130313
+int style Widget_AppCompat_Button 0x7f130314
+int style Widget_AppCompat_Button_Borderless 0x7f130315
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f130316
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f130317
+int style Widget_AppCompat_Button_Colored 0x7f130318
+int style Widget_AppCompat_Button_Small 0x7f130319
+int style Widget_AppCompat_ButtonBar 0x7f13031a
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f13031b
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f13031c
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f13031d
+int style Widget_AppCompat_CompoundButton_Switch 0x7f13031e
+int style Widget_AppCompat_DrawerArrowToggle 0x7f13031f
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f130320
+int style Widget_AppCompat_EditText 0x7f130321
+int style Widget_AppCompat_ImageButton 0x7f130322
+int style Widget_AppCompat_Light_ActionBar 0x7f130323
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f130324
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f130325
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f130326
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f130327
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f130328
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f130329
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f13032a
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f13032b
+int style Widget_AppCompat_Light_ActionButton 0x7f13032c
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f13032d
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f13032e
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f13032f
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f130330
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f130331
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f130332
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f130333
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f130334
+int style Widget_AppCompat_Light_PopupMenu 0x7f130335
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f130336
+int style Widget_AppCompat_Light_SearchView 0x7f130337
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f130338
+int style Widget_AppCompat_ListMenuView 0x7f130339
+int style Widget_AppCompat_ListPopupWindow 0x7f13033a
+int style Widget_AppCompat_ListView 0x7f13033b
+int style Widget_AppCompat_ListView_DropDown 0x7f13033c
+int style Widget_AppCompat_ListView_Menu 0x7f13033d
+int style Widget_AppCompat_PopupMenu 0x7f13033e
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f13033f
+int style Widget_AppCompat_PopupWindow 0x7f130340
+int style Widget_AppCompat_ProgressBar 0x7f130341
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f130342
+int style Widget_AppCompat_RatingBar 0x7f130343
+int style Widget_AppCompat_RatingBar_Indicator 0x7f130344
+int style Widget_AppCompat_RatingBar_Small 0x7f130345
+int style Widget_AppCompat_SearchView 0x7f130346
+int style Widget_AppCompat_SearchView_ActionBar 0x7f130347
+int style Widget_AppCompat_SeekBar 0x7f130348
+int style Widget_AppCompat_SeekBar_Discrete 0x7f130349
+int style Widget_AppCompat_Spinner 0x7f13034a
+int style Widget_AppCompat_Spinner_DropDown 0x7f13034b
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f13034c
+int style Widget_AppCompat_Spinner_Underlined 0x7f13034d
+int style Widget_AppCompat_TextView 0x7f13034e
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f13034f
+int style Widget_AppCompat_Toolbar 0x7f130350
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f130351
+int style Widget_Compat_NotificationActionContainer 0x7f130352
+int style Widget_Compat_NotificationActionText 0x7f130353
+int style Widget_Design_AppBarLayout 0x7f130354
+int style Widget_Design_BottomNavigationView 0x7f130355
+int style Widget_Design_BottomSheet_Modal 0x7f130356
+int style Widget_Design_CollapsingToolbar 0x7f130357
+int style Widget_Design_FloatingActionButton 0x7f130358
+int style Widget_Design_NavigationView 0x7f130359
+int style Widget_Design_ScrimInsetsFrameLayout 0x7f13035a
+int style Widget_Design_Snackbar 0x7f13035b
+int style Widget_Design_TabLayout 0x7f13035c
+int style Widget_Design_TextInputEditText 0x7f13035d
+int style Widget_Design_TextInputLayout 0x7f13035e
+int style Widget_Material3_ActionBar_Solid 0x7f13035f
+int style Widget_Material3_ActionMode 0x7f130360
+int style Widget_Material3_AppBarLayout 0x7f130361
+int style Widget_Material3_AutoCompleteTextView_FilledBox 0x7f130362
+int style Widget_Material3_AutoCompleteTextView_FilledBox_Dense 0x7f130363
+int style Widget_Material3_AutoCompleteTextView_OutlinedBox 0x7f130364
+int style Widget_Material3_AutoCompleteTextView_OutlinedBox_Dense 0x7f130365
+int style Widget_Material3_Badge 0x7f130366
+int style Widget_Material3_Badge_AdjustToBounds 0x7f130367
+int style Widget_Material3_BottomAppBar 0x7f130368
+int style Widget_Material3_BottomAppBar_Button_Navigation 0x7f130369
+int style Widget_Material3_BottomAppBar_Legacy 0x7f13036a
+int style Widget_Material3_BottomNavigation_Badge 0x7f13036b
+int style Widget_Material3_BottomNavigationView 0x7f13036c
+int style Widget_Material3_BottomNavigationView_ActiveIndicator 0x7f13036d
+int style Widget_Material3_BottomSheet 0x7f13036e
+int style Widget_Material3_BottomSheet_DragHandle 0x7f13036f
+int style Widget_Material3_BottomSheet_Modal 0x7f130370
+int style Widget_Material3_Button 0x7f130371
+int style Widget_Material3_Button_ElevatedButton 0x7f130372
+int style Widget_Material3_Button_ElevatedButton_Icon 0x7f130373
+int style Widget_Material3_Button_Icon 0x7f130374
+int style Widget_Material3_Button_IconButton 0x7f130375
+int style Widget_Material3_Button_IconButton_Filled 0x7f130376
+int style Widget_Material3_Button_IconButton_Filled_Tonal 0x7f130377
+int style Widget_Material3_Button_IconButton_Outlined 0x7f130378
+int style Widget_Material3_Button_OutlinedButton 0x7f130379
+int style Widget_Material3_Button_OutlinedButton_Icon 0x7f13037a
+int style Widget_Material3_Button_TextButton 0x7f13037b
+int style Widget_Material3_Button_TextButton_Dialog 0x7f13037c
+int style Widget_Material3_Button_TextButton_Dialog_Flush 0x7f13037d
+int style Widget_Material3_Button_TextButton_Dialog_Icon 0x7f13037e
+int style Widget_Material3_Button_TextButton_Icon 0x7f13037f
+int style Widget_Material3_Button_TextButton_Snackbar 0x7f130380
+int style Widget_Material3_Button_TonalButton 0x7f130381
+int style Widget_Material3_Button_TonalButton_Icon 0x7f130382
+int style Widget_Material3_Button_UnelevatedButton 0x7f130383
+int style Widget_Material3_CardView_Elevated 0x7f130384
+int style Widget_Material3_CardView_Filled 0x7f130385
+int style Widget_Material3_CardView_Outlined 0x7f130386
+int style Widget_Material3_CheckedTextView 0x7f130387
+int style Widget_Material3_Chip_Assist 0x7f130388
+int style Widget_Material3_Chip_Assist_Elevated 0x7f130389
+int style Widget_Material3_Chip_Filter 0x7f13038a
+int style Widget_Material3_Chip_Filter_Elevated 0x7f13038b
+int style Widget_Material3_Chip_Input 0x7f13038c
+int style Widget_Material3_Chip_Input_Elevated 0x7f13038d
+int style Widget_Material3_Chip_Input_Icon 0x7f13038e
+int style Widget_Material3_Chip_Input_Icon_Elevated 0x7f13038f
+int style Widget_Material3_Chip_Suggestion 0x7f130390
+int style Widget_Material3_Chip_Suggestion_Elevated 0x7f130391
+int style Widget_Material3_ChipGroup 0x7f130392
+int style Widget_Material3_CircularProgressIndicator 0x7f130393
+int style Widget_Material3_CircularProgressIndicator_ExtraSmall 0x7f130394
+int style Widget_Material3_CircularProgressIndicator_Medium 0x7f130395
+int style Widget_Material3_CircularProgressIndicator_Small 0x7f130396
+int style Widget_Material3_CollapsingToolbar 0x7f130397
+int style Widget_Material3_CollapsingToolbar_Large 0x7f130398
+int style Widget_Material3_CollapsingToolbar_Medium 0x7f130399
+int style Widget_Material3_CompoundButton_CheckBox 0x7f13039a
+int style Widget_Material3_CompoundButton_MaterialSwitch 0x7f13039b
+int style Widget_Material3_CompoundButton_RadioButton 0x7f13039c
+int style Widget_Material3_CompoundButton_Switch 0x7f13039d
+int style Widget_Material3_DrawerLayout 0x7f13039e
+int style Widget_Material3_ExtendedFloatingActionButton_Icon_Primary 0x7f13039f
+int style Widget_Material3_ExtendedFloatingActionButton_Icon_Secondary 0x7f1303a0
+int style Widget_Material3_ExtendedFloatingActionButton_Icon_Surface 0x7f1303a1
+int style Widget_Material3_ExtendedFloatingActionButton_Icon_Tertiary 0x7f1303a2
+int style Widget_Material3_ExtendedFloatingActionButton_Primary 0x7f1303a3
+int style Widget_Material3_ExtendedFloatingActionButton_Secondary 0x7f1303a4
+int style Widget_Material3_ExtendedFloatingActionButton_Surface 0x7f1303a5
+int style Widget_Material3_ExtendedFloatingActionButton_Tertiary 0x7f1303a6
+int style Widget_Material3_FloatingActionButton_Large_Primary 0x7f1303a7
+int style Widget_Material3_FloatingActionButton_Large_Secondary 0x7f1303a8
+int style Widget_Material3_FloatingActionButton_Large_Surface 0x7f1303a9
+int style Widget_Material3_FloatingActionButton_Large_Tertiary 0x7f1303aa
+int style Widget_Material3_FloatingActionButton_Primary 0x7f1303ab
+int style Widget_Material3_FloatingActionButton_Secondary 0x7f1303ac
+int style Widget_Material3_FloatingActionButton_Small_Primary 0x7f1303ad
+int style Widget_Material3_FloatingActionButton_Small_Secondary 0x7f1303ae
+int style Widget_Material3_FloatingActionButton_Small_Surface 0x7f1303af
+int style Widget_Material3_FloatingActionButton_Small_Tertiary 0x7f1303b0
+int style Widget_Material3_FloatingActionButton_Surface 0x7f1303b1
+int style Widget_Material3_FloatingActionButton_Tertiary 0x7f1303b2
+int style Widget_Material3_Light_ActionBar_Solid 0x7f1303b3
+int style Widget_Material3_LinearProgressIndicator 0x7f1303b4
+int style Widget_Material3_MaterialButtonToggleGroup 0x7f1303b5
+int style Widget_Material3_MaterialCalendar 0x7f1303b6
+int style Widget_Material3_MaterialCalendar_Day 0x7f1303b7
+int style Widget_Material3_MaterialCalendar_Day_Invalid 0x7f1303b8
+int style Widget_Material3_MaterialCalendar_Day_Selected 0x7f1303b9
+int style Widget_Material3_MaterialCalendar_Day_Today 0x7f1303ba
+int style Widget_Material3_MaterialCalendar_DayOfWeekLabel 0x7f1303bb
+int style Widget_Material3_MaterialCalendar_DayTextView 0x7f1303bc
+int style Widget_Material3_MaterialCalendar_Fullscreen 0x7f1303bd
+int style Widget_Material3_MaterialCalendar_HeaderCancelButton 0x7f1303be
+int style Widget_Material3_MaterialCalendar_HeaderDivider 0x7f1303bf
+int style Widget_Material3_MaterialCalendar_HeaderLayout 0x7f1303c0
+int style Widget_Material3_MaterialCalendar_HeaderLayout_Fullscreen 0x7f1303c1
+int style Widget_Material3_MaterialCalendar_HeaderSelection 0x7f1303c2
+int style Widget_Material3_MaterialCalendar_HeaderSelection_Fullscreen 0x7f1303c3
+int style Widget_Material3_MaterialCalendar_HeaderTitle 0x7f1303c4
+int style Widget_Material3_MaterialCalendar_HeaderToggleButton 0x7f1303c5
+int style Widget_Material3_MaterialCalendar_Item 0x7f1303c6
+int style Widget_Material3_MaterialCalendar_MonthNavigationButton 0x7f1303c7
+int style Widget_Material3_MaterialCalendar_MonthTextView 0x7f1303c8
+int style Widget_Material3_MaterialCalendar_Year 0x7f1303c9
+int style Widget_Material3_MaterialCalendar_Year_Selected 0x7f1303ca
+int style Widget_Material3_MaterialCalendar_Year_Today 0x7f1303cb
+int style Widget_Material3_MaterialCalendar_YearNavigationButton 0x7f1303cc
+int style Widget_Material3_MaterialDivider 0x7f1303cd
+int style Widget_Material3_MaterialDivider_Heavy 0x7f1303ce
+int style Widget_Material3_MaterialTimePicker 0x7f1303cf
+int style Widget_Material3_MaterialTimePicker_Button 0x7f1303d0
+int style Widget_Material3_MaterialTimePicker_Clock 0x7f1303d1
+int style Widget_Material3_MaterialTimePicker_Display 0x7f1303d2
+int style Widget_Material3_MaterialTimePicker_Display_Divider 0x7f1303d3
+int style Widget_Material3_MaterialTimePicker_Display_HelperText 0x7f1303d4
+int style Widget_Material3_MaterialTimePicker_Display_TextInputEditText 0x7f1303d5
+int style Widget_Material3_MaterialTimePicker_Display_TextInputLayout 0x7f1303d6
+int style Widget_Material3_MaterialTimePicker_ImageButton 0x7f1303d7
+int style Widget_Material3_NavigationRailView 0x7f1303d8
+int style Widget_Material3_NavigationRailView_ActiveIndicator 0x7f1303d9
+int style Widget_Material3_NavigationRailView_Badge 0x7f1303da
+int style Widget_Material3_NavigationView 0x7f1303db
+int style Widget_Material3_PopupMenu 0x7f1303dc
+int style Widget_Material3_PopupMenu_ContextMenu 0x7f1303dd
+int style Widget_Material3_PopupMenu_ListPopupWindow 0x7f1303de
+int style Widget_Material3_PopupMenu_Overflow 0x7f1303df
+int style Widget_Material3_Search_ActionButton_Overflow 0x7f1303e0
+int style Widget_Material3_Search_Toolbar_Button_Navigation 0x7f1303e1
+int style Widget_Material3_SearchBar 0x7f1303e2
+int style Widget_Material3_SearchBar_Outlined 0x7f1303e3
+int style Widget_Material3_SearchView 0x7f1303e4
+int style Widget_Material3_SearchView_Prefix 0x7f1303e5
+int style Widget_Material3_SearchView_Toolbar 0x7f1303e6
+int style Widget_Material3_SideSheet 0x7f1303e7
+int style Widget_Material3_SideSheet_Detached 0x7f1303e8
+int style Widget_Material3_SideSheet_Modal 0x7f1303e9
+int style Widget_Material3_SideSheet_Modal_Detached 0x7f1303ea
+int style Widget_Material3_Slider 0x7f1303eb
+int style Widget_Material3_Slider_Label 0x7f1303ec
+int style Widget_Material3_Snackbar 0x7f1303ed
+int style Widget_Material3_Snackbar_FullWidth 0x7f1303ee
+int style Widget_Material3_Snackbar_TextView 0x7f1303ef
+int style Widget_Material3_TabLayout 0x7f1303f0
+int style Widget_Material3_TabLayout_OnSurface 0x7f1303f1
+int style Widget_Material3_TabLayout_Secondary 0x7f1303f2
+int style Widget_Material3_TextInputEditText_FilledBox 0x7f1303f3
+int style Widget_Material3_TextInputEditText_FilledBox_Dense 0x7f1303f4
+int style Widget_Material3_TextInputEditText_OutlinedBox 0x7f1303f5
+int style Widget_Material3_TextInputEditText_OutlinedBox_Dense 0x7f1303f6
+int style Widget_Material3_TextInputLayout_FilledBox 0x7f1303f7
+int style Widget_Material3_TextInputLayout_FilledBox_Dense 0x7f1303f8
+int style Widget_Material3_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x7f1303f9
+int style Widget_Material3_TextInputLayout_FilledBox_ExposedDropdownMenu 0x7f1303fa
+int style Widget_Material3_TextInputLayout_OutlinedBox 0x7f1303fb
+int style Widget_Material3_TextInputLayout_OutlinedBox_Dense 0x7f1303fc
+int style Widget_Material3_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x7f1303fd
+int style Widget_Material3_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x7f1303fe
+int style Widget_Material3_Toolbar 0x7f1303ff
+int style Widget_Material3_Toolbar_OnSurface 0x7f130400
+int style Widget_Material3_Toolbar_Surface 0x7f130401
+int style Widget_Material3_Tooltip 0x7f130402
+int style Widget_MaterialComponents_ActionBar_Primary 0x7f130403
+int style Widget_MaterialComponents_ActionBar_PrimarySurface 0x7f130404
+int style Widget_MaterialComponents_ActionBar_Solid 0x7f130405
+int style Widget_MaterialComponents_ActionBar_Surface 0x7f130406
+int style Widget_MaterialComponents_ActionMode 0x7f130407
+int style Widget_MaterialComponents_AppBarLayout_Primary 0x7f130408
+int style Widget_MaterialComponents_AppBarLayout_PrimarySurface 0x7f130409
+int style Widget_MaterialComponents_AppBarLayout_Surface 0x7f13040a
+int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f13040b
+int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f13040c
+int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f13040d
+int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f13040e
+int style Widget_MaterialComponents_Badge 0x7f13040f
+int style Widget_MaterialComponents_BottomAppBar 0x7f130410
+int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f130411
+int style Widget_MaterialComponents_BottomAppBar_PrimarySurface 0x7f130412
+int style Widget_MaterialComponents_BottomNavigationView 0x7f130413
+int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f130414
+int style Widget_MaterialComponents_BottomNavigationView_PrimarySurface 0x7f130415
+int style Widget_MaterialComponents_BottomSheet 0x7f130416
+int style Widget_MaterialComponents_BottomSheet_Modal 0x7f130417
+int style Widget_MaterialComponents_Button 0x7f130418
+int style Widget_MaterialComponents_Button_Icon 0x7f130419
+int style Widget_MaterialComponents_Button_OutlinedButton 0x7f13041a
+int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f13041b
+int style Widget_MaterialComponents_Button_TextButton 0x7f13041c
+int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f13041d
+int style Widget_MaterialComponents_Button_TextButton_Dialog_Flush 0x7f13041e
+int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f13041f
+int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f130420
+int style Widget_MaterialComponents_Button_TextButton_Snackbar 0x7f130421
+int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f130422
+int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f130423
+int style Widget_MaterialComponents_CardView 0x7f130424
+int style Widget_MaterialComponents_CheckedTextView 0x7f130425
+int style Widget_MaterialComponents_Chip_Action 0x7f130426
+int style Widget_MaterialComponents_Chip_Choice 0x7f130427
+int style Widget_MaterialComponents_Chip_Entry 0x7f130428
+int style Widget_MaterialComponents_Chip_Filter 0x7f130429
+int style Widget_MaterialComponents_ChipGroup 0x7f13042a
+int style Widget_MaterialComponents_CircularProgressIndicator 0x7f13042b
+int style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall 0x7f13042c
+int style Widget_MaterialComponents_CircularProgressIndicator_Medium 0x7f13042d
+int style Widget_MaterialComponents_CircularProgressIndicator_Small 0x7f13042e
+int style Widget_MaterialComponents_CollapsingToolbar 0x7f13042f
+int style Widget_MaterialComponents_CompoundButton_CheckBox 0x7f130430
+int style Widget_MaterialComponents_CompoundButton_RadioButton 0x7f130431
+int style Widget_MaterialComponents_CompoundButton_Switch 0x7f130432
+int style Widget_MaterialComponents_ExtendedFloatingActionButton 0x7f130433
+int style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon 0x7f130434
+int style Widget_MaterialComponents_FloatingActionButton 0x7f130435
+int style Widget_MaterialComponents_Light_ActionBar_Solid 0x7f130436
+int style Widget_MaterialComponents_LinearProgressIndicator 0x7f130437
+int style Widget_MaterialComponents_MaterialButtonToggleGroup 0x7f130438
+int style Widget_MaterialComponents_MaterialCalendar 0x7f130439
+int style Widget_MaterialComponents_MaterialCalendar_Day 0x7f13043a
+int style Widget_MaterialComponents_MaterialCalendar_Day_Invalid 0x7f13043b
+int style Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f13043c
+int style Widget_MaterialComponents_MaterialCalendar_Day_Today 0x7f13043d
+int style Widget_MaterialComponents_MaterialCalendar_DayOfWeekLabel 0x7f13043e
+int style Widget_MaterialComponents_MaterialCalendar_DayTextView 0x7f13043f
+int style Widget_MaterialComponents_MaterialCalendar_Fullscreen 0x7f130440
+int style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton 0x7f130441
+int style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton 0x7f130442
+int style Widget_MaterialComponents_MaterialCalendar_HeaderDivider 0x7f130443
+int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout 0x7f130444
+int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout_Fullscreen 0x7f130445
+int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection 0x7f130446
+int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen 0x7f130447
+int style Widget_MaterialComponents_MaterialCalendar_HeaderTitle 0x7f130448
+int style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x7f130449
+int style Widget_MaterialComponents_MaterialCalendar_Item 0x7f13044a
+int style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton 0x7f13044b
+int style Widget_MaterialComponents_MaterialCalendar_MonthTextView 0x7f13044c
+int style Widget_MaterialComponents_MaterialCalendar_Year 0x7f13044d
+int style Widget_MaterialComponents_MaterialCalendar_Year_Selected 0x7f13044e
+int style Widget_MaterialComponents_MaterialCalendar_Year_Today 0x7f13044f
+int style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton 0x7f130450
+int style Widget_MaterialComponents_MaterialDivider 0x7f130451
+int style Widget_MaterialComponents_NavigationRailView 0x7f130452
+int style Widget_MaterialComponents_NavigationRailView_Colored 0x7f130453
+int style Widget_MaterialComponents_NavigationRailView_Colored_Compact 0x7f130454
+int style Widget_MaterialComponents_NavigationRailView_Compact 0x7f130455
+int style Widget_MaterialComponents_NavigationRailView_PrimarySurface 0x7f130456
+int style Widget_MaterialComponents_NavigationView 0x7f130457
+int style Widget_MaterialComponents_PopupMenu 0x7f130458
+int style Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f130459
+int style Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f13045a
+int style Widget_MaterialComponents_PopupMenu_Overflow 0x7f13045b
+int style Widget_MaterialComponents_ProgressIndicator 0x7f13045c
+int style Widget_MaterialComponents_ShapeableImageView 0x7f13045d
+int style Widget_MaterialComponents_Slider 0x7f13045e
+int style Widget_MaterialComponents_Snackbar 0x7f13045f
+int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f130460
+int style Widget_MaterialComponents_Snackbar_TextView 0x7f130461
+int style Widget_MaterialComponents_TabLayout 0x7f130462
+int style Widget_MaterialComponents_TabLayout_Colored 0x7f130463
+int style Widget_MaterialComponents_TabLayout_PrimarySurface 0x7f130464
+int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f130465
+int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f130466
+int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f130467
+int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f130468
+int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f130469
+int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f13046a
+int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x7f13046b
+int style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu 0x7f13046c
+int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f13046d
+int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f13046e
+int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x7f13046f
+int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x7f130470
+int style Widget_MaterialComponents_TextView 0x7f130471
+int style Widget_MaterialComponents_TimePicker 0x7f130472
+int style Widget_MaterialComponents_TimePicker_Button 0x7f130473
+int style Widget_MaterialComponents_TimePicker_Clock 0x7f130474
+int style Widget_MaterialComponents_TimePicker_Display 0x7f130475
+int style Widget_MaterialComponents_TimePicker_Display_Divider 0x7f130476
+int style Widget_MaterialComponents_TimePicker_Display_HelperText 0x7f130477
+int style Widget_MaterialComponents_TimePicker_Display_TextInputEditText 0x7f130478
+int style Widget_MaterialComponents_TimePicker_Display_TextInputLayout 0x7f130479
+int style Widget_MaterialComponents_TimePicker_ImageButton 0x7f13047a
+int style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance 0x7f13047b
+int style Widget_MaterialComponents_Toolbar 0x7f13047c
+int style Widget_MaterialComponents_Toolbar_Primary 0x7f13047d
+int style Widget_MaterialComponents_Toolbar_PrimarySurface 0x7f13047e
+int style Widget_MaterialComponents_Toolbar_Surface 0x7f13047f
+int style Widget_MaterialComponents_Tooltip 0x7f130480
+int style Widget_Support_CoordinatorLayout 0x7f130481
+int style wifi_item 0x7f130482
+int style wifi_item_content 0x7f130483
+int style wifi_item_divider 0x7f130484
+int style wifi_item_edit_content 0x7f130485
+int style wifi_item_label 0x7f130486
+int style wifi_item_subhead 0x7f130487
+int[] styleable ActionBar { 0x7f04004a, 0x7f040051, 0x7f040052, 0x7f04012d, 0x7f04012e, 0x7f04012f, 0x7f040130, 0x7f040131, 0x7f040132, 0x7f04015b, 0x7f040175, 0x7f040176, 0x7f040198, 0x7f040214, 0x7f04021c, 0x7f040222, 0x7f040223, 0x7f040227, 0x7f040235, 0x7f04024d, 0x7f0402c4, 0x7f04033f, 0x7f040374, 0x7f040393, 0x7f040394, 0x7f040409, 0x7f04040d, 0x7f04048c, 0x7f04049a }
+int styleable ActionBar_background 0
+int styleable ActionBar_backgroundSplit 1
+int styleable ActionBar_backgroundStacked 2
+int styleable ActionBar_contentInsetEnd 3
+int styleable ActionBar_contentInsetEndWithActions 4
+int styleable ActionBar_contentInsetLeft 5
+int styleable ActionBar_contentInsetRight 6
+int styleable ActionBar_contentInsetStart 7
+int styleable ActionBar_contentInsetStartWithNavigation 8
+int styleable ActionBar_customNavigationLayout 9
+int styleable ActionBar_displayOptions 10
+int styleable ActionBar_divider 11
+int styleable ActionBar_elevation 12
+int styleable ActionBar_height 13
+int styleable ActionBar_hideOnContentScroll 14
+int styleable ActionBar_homeAsUpIndicator 15
+int styleable ActionBar_homeLayout 16
+int styleable ActionBar_icon 17
+int styleable ActionBar_indeterminateProgressStyle 18
+int styleable ActionBar_itemPadding 19
+int styleable ActionBar_logo 20
+int styleable ActionBar_navigationMode 21
+int styleable ActionBar_popupTheme 22
+int styleable ActionBar_progressBarPadding 23
+int styleable ActionBar_progressBarStyle 24
+int styleable ActionBar_subtitle 25
+int styleable ActionBar_subtitleTextStyle 26
+int styleable ActionBar_title 27
+int styleable ActionBar_titleTextStyle 28
+int[] styleable ActionBarLayout { 0x010100b3 }
+int styleable ActionBarLayout_android_layout_gravity 0
+int[] styleable ActionMenuItemView { 0x0101013f }
+int styleable ActionMenuItemView_android_minWidth 0
+int[] styleable ActionMenuView { }
+int[] styleable ActionMode { 0x7f04004a, 0x7f040051, 0x7f0400da, 0x7f040214, 0x7f04040d, 0x7f04049a }
+int styleable ActionMode_background 0
+int styleable ActionMode_backgroundSplit 1
+int styleable ActionMode_closeItemLayout 2
+int styleable ActionMode_height 3
+int styleable ActionMode_subtitleTextStyle 4
+int styleable ActionMode_titleTextStyle 5
+int[] styleable ActivityChooserView { 0x7f0401b7, 0x7f04023b }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
+int styleable ActivityChooserView_initialActivityCount 1
+int[] styleable ActivityFilter { 0x7f040025, 0x7f040027 }
+int styleable ActivityFilter_activityAction 0
+int styleable ActivityFilter_activityName 1
+int[] styleable ActivityRule { 0x7f040035 }
+int styleable ActivityRule_alwaysExpand 0
+int[] styleable AlertDialog { 0x010100f2, 0x7f040092, 0x7f040095, 0x7f0402b9, 0x7f0402ba, 0x7f04033b, 0x7f0403d0, 0x7f0403d9 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonIconDimen 1
+int styleable AlertDialog_buttonPanelSideLayout 2
+int styleable AlertDialog_listItemLayout 3
+int styleable AlertDialog_listLayout 4
+int styleable AlertDialog_multiChoiceItemLayout 5
+int styleable AlertDialog_showTitle 6
+int styleable AlertDialog_singleChoiceItemLayout 7
+int[] styleable AnimatedStateListDrawableCompat { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }
+int styleable AnimatedStateListDrawableCompat_android_dither 0
+int styleable AnimatedStateListDrawableCompat_android_visible 1
+int styleable AnimatedStateListDrawableCompat_android_variablePadding 2
+int styleable AnimatedStateListDrawableCompat_android_constantSize 3
+int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 4
+int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 5
+int[] styleable AnimatedStateListDrawableItem { 0x010100d0, 0x01010199 }
+int styleable AnimatedStateListDrawableItem_android_id 0
+int styleable AnimatedStateListDrawableItem_android_drawable 1
+int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }
+int styleable AnimatedStateListDrawableTransition_android_drawable 0
+int styleable AnimatedStateListDrawableTransition_android_toId 1
+int styleable AnimatedStateListDrawableTransition_android_fromId 2
+int styleable AnimatedStateListDrawableTransition_android_reversible 3
+int[] styleable AppBarLayout { 0x010100d4, 0x0101048f, 0x01010540, 0x7f040198, 0x7f0401b8, 0x7f0402ae, 0x7f0402af, 0x7f0402b0, 0x7f0403ff }
+int styleable AppBarLayout_android_background 0
+int styleable AppBarLayout_android_touchscreenBlocksFocus 1
+int styleable AppBarLayout_android_keyboardNavigationCluster 2
+int styleable AppBarLayout_elevation 3
+int styleable AppBarLayout_expanded 4
+int styleable AppBarLayout_liftOnScroll 5
+int styleable AppBarLayout_liftOnScrollColor 6
+int styleable AppBarLayout_liftOnScrollTargetViewId 7
+int styleable AppBarLayout_statusBarForeground 8
+int[] styleable AppBarLayoutStates { 0x7f0403f6, 0x7f0403f7, 0x7f0403fb, 0x7f0403fc }
+int styleable AppBarLayoutStates_state_collapsed 0
+int styleable AppBarLayoutStates_state_collapsible 1
+int styleable AppBarLayoutStates_state_liftable 2
+int styleable AppBarLayoutStates_state_lifted 3
+int[] styleable AppBarLayout_Layout { 0x7f0402ab, 0x7f0402ac, 0x7f0402ad }
+int styleable AppBarLayout_Layout_layout_scrollEffect 0
+int styleable AppBarLayout_Layout_layout_scrollFlags 1
+int styleable AppBarLayout_Layout_layout_scrollInterpolator 2
+int[] styleable AppCompatEmojiHelper { }
+int[] styleable AppCompatImageView { 0x01010119, 0x7f0403eb, 0x7f040489, 0x7f04048a }
+int styleable AppCompatImageView_android_src 0
+int styleable AppCompatImageView_srcCompat 1
+int styleable AppCompatImageView_tint 2
+int styleable AppCompatImageView_tintMode 3
+int[] styleable AppCompatSeekBar { 0x01010142, 0x7f040483, 0x7f040484, 0x7f040485 }
+int styleable AppCompatSeekBar_android_thumb 0
+int styleable AppCompatSeekBar_tickMark 1
+int styleable AppCompatSeekBar_tickMarkTint 2
+int styleable AppCompatSeekBar_tickMarkTintMode 3
+int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }
+int styleable AppCompatTextHelper_android_textAppearance 0
+int styleable AppCompatTextHelper_android_drawableTop 1
+int styleable AppCompatTextHelper_android_drawableBottom 2
+int styleable AppCompatTextHelper_android_drawableLeft 3
+int styleable AppCompatTextHelper_android_drawableRight 4
+int styleable AppCompatTextHelper_android_drawableStart 5
+int styleable AppCompatTextHelper_android_drawableEnd 6
+int[] styleable AppCompatTextView { 0x01010034, 0x7f040043, 0x7f040044, 0x7f040045, 0x7f040046, 0x7f040047, 0x7f040182, 0x7f040183, 0x7f040184, 0x7f040185, 0x7f040187, 0x7f040188, 0x7f040189, 0x7f04018a, 0x7f04019c, 0x7f0401da, 0x7f0401fe, 0x7f040207, 0x7f04026a, 0x7f0402b2, 0x7f04043f, 0x7f040470 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_autoSizeMaxTextSize 1
+int styleable AppCompatTextView_autoSizeMinTextSize 2
+int styleable AppCompatTextView_autoSizePresetSizes 3
+int styleable AppCompatTextView_autoSizeStepGranularity 4
+int styleable AppCompatTextView_autoSizeTextType 5
+int styleable AppCompatTextView_drawableBottomCompat 6
+int styleable AppCompatTextView_drawableEndCompat 7
+int styleable AppCompatTextView_drawableLeftCompat 8
+int styleable AppCompatTextView_drawableRightCompat 9
+int styleable AppCompatTextView_drawableStartCompat 10
+int styleable AppCompatTextView_drawableTint 11
+int styleable AppCompatTextView_drawableTintMode 12
+int styleable AppCompatTextView_drawableTopCompat 13
+int styleable AppCompatTextView_emojiCompatEnabled 14
+int styleable AppCompatTextView_firstBaselineToTopHeight 15
+int styleable AppCompatTextView_fontFamily 16
+int styleable AppCompatTextView_fontVariationSettings 17
+int styleable AppCompatTextView_lastBaselineToBottomHeight 18
+int styleable AppCompatTextView_lineHeight 19
+int styleable AppCompatTextView_textAllCaps 20
+int styleable AppCompatTextView_textLocale 21
+int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f040000, 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000e, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040020, 0x7f040026, 0x7f04002a, 0x7f04002b, 0x7f04002c, 0x7f04002d, 0x7f040041, 0x7f040077, 0x7f04008a, 0x7f04008b, 0x7f04008c, 0x7f04008d, 0x7f04008e, 0x7f040097, 0x7f040098, 0x7f0400aa, 0x7f0400b5, 0x7f0400e7, 0x7f0400e8, 0x7f0400e9, 0x7f0400eb, 0x7f0400ec, 0x7f0400ed, 0x7f0400ee, 0x7f040107, 0x7f040109, 0x7f04011f, 0x7f04013c, 0x7f04016c, 0x7f040171, 0x7f040172, 0x7f040178, 0x7f04017d, 0x7f04018f, 0x7f040190, 0x7f040194, 0x7f040195, 0x7f040197, 0x7f040222, 0x7f040233, 0x7f0402b5, 0x7f0402b6, 0x7f0402b7, 0x7f0402b8, 0x7f0402bb, 0x7f0402bc, 0x7f0402bd, 0x7f0402be, 0x7f0402bf, 0x7f0402c0, 0x7f0402c1, 0x7f0402c2, 0x7f0402c3, 0x7f04035c, 0x7f04035d, 0x7f04035e, 0x7f040373, 0x7f040375, 0x7f040398, 0x7f04039a, 0x7f04039b, 0x7f04039c, 0x7f0403af, 0x7f0403b4, 0x7f0403b6, 0x7f0403b7, 0x7f0403e4, 0x7f0403e5, 0x7f04041a, 0x7f040456, 0x7f040458, 0x7f040459, 0x7f04045a, 0x7f04045c, 0x7f04045d, 0x7f04045e, 0x7f04045f, 0x7f040465, 0x7f040466, 0x7f04049d, 0x7f04049e, 0x7f0404a0, 0x7f0404a1, 0x7f0404c5, 0x7f0404cf, 0x7f0404d0, 0x7f0404d1, 0x7f0404d2, 0x7f0404d3, 0x7f0404d4, 0x7f0404d5, 0x7f0404d6, 0x7f0404d7, 0x7f0404d8 }
+int styleable AppCompatTheme_android_windowIsFloating 0
+int styleable AppCompatTheme_android_windowAnimationStyle 1
+int styleable AppCompatTheme_actionBarDivider 2
+int styleable AppCompatTheme_actionBarItemBackground 3
+int styleable AppCompatTheme_actionBarPopupTheme 4
+int styleable AppCompatTheme_actionBarSize 5
+int styleable AppCompatTheme_actionBarSplitStyle 6
+int styleable AppCompatTheme_actionBarStyle 7
+int styleable AppCompatTheme_actionBarTabBarStyle 8
+int styleable AppCompatTheme_actionBarTabStyle 9
+int styleable AppCompatTheme_actionBarTabTextStyle 10
+int styleable AppCompatTheme_actionBarTheme 11
+int styleable AppCompatTheme_actionBarWidgetTheme 12
+int styleable AppCompatTheme_actionButtonStyle 13
+int styleable AppCompatTheme_actionDropDownStyle 14
+int styleable AppCompatTheme_actionMenuTextAppearance 15
+int styleable AppCompatTheme_actionMenuTextColor 16
+int styleable AppCompatTheme_actionModeBackground 17
+int styleable AppCompatTheme_actionModeCloseButtonStyle 18
+int styleable AppCompatTheme_actionModeCloseContentDescription 19
+int styleable AppCompatTheme_actionModeCloseDrawable 20
+int styleable AppCompatTheme_actionModeCopyDrawable 21
+int styleable AppCompatTheme_actionModeCutDrawable 22
+int styleable AppCompatTheme_actionModeFindDrawable 23
+int styleable AppCompatTheme_actionModePasteDrawable 24
+int styleable AppCompatTheme_actionModePopupWindowStyle 25
+int styleable AppCompatTheme_actionModeSelectAllDrawable 26
+int styleable AppCompatTheme_actionModeShareDrawable 27
+int styleable AppCompatTheme_actionModeSplitBackground 28
+int styleable AppCompatTheme_actionModeStyle 29
+int styleable AppCompatTheme_actionModeTheme 30
+int styleable AppCompatTheme_actionModeWebSearchDrawable 31
+int styleable AppCompatTheme_actionOverflowButtonStyle 32
+int styleable AppCompatTheme_actionOverflowMenuStyle 33
+int styleable AppCompatTheme_activityChooserViewStyle 34
+int styleable AppCompatTheme_alertDialogButtonGroupStyle 35
+int styleable AppCompatTheme_alertDialogCenterButtons 36
+int styleable AppCompatTheme_alertDialogStyle 37
+int styleable AppCompatTheme_alertDialogTheme 38
+int styleable AppCompatTheme_autoCompleteTextViewStyle 39
+int styleable AppCompatTheme_borderlessButtonStyle 40
+int styleable AppCompatTheme_buttonBarButtonStyle 41
+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42
+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43
+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44
+int styleable AppCompatTheme_buttonBarStyle 45
+int styleable AppCompatTheme_buttonStyle 46
+int styleable AppCompatTheme_buttonStyleSmall 47
+int styleable AppCompatTheme_checkboxStyle 48
+int styleable AppCompatTheme_checkedTextViewStyle 49
+int styleable AppCompatTheme_colorAccent 50
+int styleable AppCompatTheme_colorBackgroundFloating 51
+int styleable AppCompatTheme_colorButtonNormal 52
+int styleable AppCompatTheme_colorControlActivated 53
+int styleable AppCompatTheme_colorControlHighlight 54
+int styleable AppCompatTheme_colorControlNormal 55
+int styleable AppCompatTheme_colorError 56
+int styleable AppCompatTheme_colorPrimary 57
+int styleable AppCompatTheme_colorPrimaryDark 58
+int styleable AppCompatTheme_colorSwitchThumbNormal 59
+int styleable AppCompatTheme_controlBackground 60
+int styleable AppCompatTheme_dialogCornerRadius 61
+int styleable AppCompatTheme_dialogPreferredPadding 62
+int styleable AppCompatTheme_dialogTheme 63
+int styleable AppCompatTheme_dividerHorizontal 64
+int styleable AppCompatTheme_dividerVertical 65
+int styleable AppCompatTheme_dropDownListViewStyle 66
+int styleable AppCompatTheme_dropdownListPreferredItemHeight 67
+int styleable AppCompatTheme_editTextBackground 68
+int styleable AppCompatTheme_editTextColor 69
+int styleable AppCompatTheme_editTextStyle 70
+int styleable AppCompatTheme_homeAsUpIndicator 71
+int styleable AppCompatTheme_imageButtonStyle 72
+int styleable AppCompatTheme_listChoiceBackgroundIndicator 73
+int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74
+int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75
+int styleable AppCompatTheme_listDividerAlertDialog 76
+int styleable AppCompatTheme_listMenuViewStyle 77
+int styleable AppCompatTheme_listPopupWindowStyle 78
+int styleable AppCompatTheme_listPreferredItemHeight 79
+int styleable AppCompatTheme_listPreferredItemHeightLarge 80
+int styleable AppCompatTheme_listPreferredItemHeightSmall 81
+int styleable AppCompatTheme_listPreferredItemPaddingEnd 82
+int styleable AppCompatTheme_listPreferredItemPaddingLeft 83
+int styleable AppCompatTheme_listPreferredItemPaddingRight 84
+int styleable AppCompatTheme_listPreferredItemPaddingStart 85
+int styleable AppCompatTheme_panelBackground 86
+int styleable AppCompatTheme_panelMenuListTheme 87
+int styleable AppCompatTheme_panelMenuListWidth 88
+int styleable AppCompatTheme_popupMenuStyle 89
+int styleable AppCompatTheme_popupWindowStyle 90
+int styleable AppCompatTheme_radioButtonStyle 91
+int styleable AppCompatTheme_ratingBarStyle 92
+int styleable AppCompatTheme_ratingBarStyleIndicator 93
+int styleable AppCompatTheme_ratingBarStyleSmall 94
+int styleable AppCompatTheme_searchViewStyle 95
+int styleable AppCompatTheme_seekBarStyle 96
+int styleable AppCompatTheme_selectableItemBackground 97
+int styleable AppCompatTheme_selectableItemBackgroundBorderless 98
+int styleable AppCompatTheme_spinnerDropDownItemStyle 99
+int styleable AppCompatTheme_spinnerStyle 100
+int styleable AppCompatTheme_switchStyle 101
+int styleable AppCompatTheme_textAppearanceLargePopupMenu 102
+int styleable AppCompatTheme_textAppearanceListItem 103
+int styleable AppCompatTheme_textAppearanceListItemSecondary 104
+int styleable AppCompatTheme_textAppearanceListItemSmall 105
+int styleable AppCompatTheme_textAppearancePopupMenuHeader 106
+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107
+int styleable AppCompatTheme_textAppearanceSearchResultTitle 108
+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109
+int styleable AppCompatTheme_textColorAlertDialogListItem 110
+int styleable AppCompatTheme_textColorSearchUrl 111
+int styleable AppCompatTheme_toolbarNavigationButtonStyle 112
+int styleable AppCompatTheme_toolbarStyle 113
+int styleable AppCompatTheme_tooltipForegroundColor 114
+int styleable AppCompatTheme_tooltipFrameBackground 115
+int styleable AppCompatTheme_viewInflaterClass 116
+int styleable AppCompatTheme_windowActionBar 117
+int styleable AppCompatTheme_windowActionBarOverlay 118
+int styleable AppCompatTheme_windowActionModeOverlay 119
+int styleable AppCompatTheme_windowFixedHeightMajor 120
+int styleable AppCompatTheme_windowFixedHeightMinor 121
+int styleable AppCompatTheme_windowFixedWidthMajor 122
+int styleable AppCompatTheme_windowFixedWidthMinor 123
+int styleable AppCompatTheme_windowMinWidthMajor 124
+int styleable AppCompatTheme_windowMinWidthMinor 125
+int styleable AppCompatTheme_windowNoTitle 126
+int[] styleable BackgroundStyle { 0x0101030e, 0x7f0403b6 }
+int styleable BackgroundStyle_android_selectableItemBackground 0
+int styleable BackgroundStyle_selectableItemBackground 1
+int[] styleable Badge { 0x7f040040, 0x7f04004b, 0x7f040055, 0x7f040056, 0x7f040057, 0x7f040058, 0x7f040059, 0x7f04005b, 0x7f04005c, 0x7f04005d, 0x7f04005e, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f040065, 0x7f040224, 0x7f040225, 0x7f040269, 0x7f0402fe, 0x7f040302, 0x7f040346, 0x7f040348, 0x7f0404c3, 0x7f0404c4 }
+int styleable Badge_autoAdjustToWithinGrandparentBounds 0
+int styleable Badge_backgroundColor 1
+int styleable Badge_badgeGravity 2
+int styleable Badge_badgeHeight 3
+int styleable Badge_badgeRadius 4
+int styleable Badge_badgeShapeAppearance 5
+int styleable Badge_badgeShapeAppearanceOverlay 6
+int styleable Badge_badgeText 7
+int styleable Badge_badgeTextAppearance 8
+int styleable Badge_badgeTextColor 9
+int styleable Badge_badgeVerticalPadding 10
+int styleable Badge_badgeWidePadding 11
+int styleable Badge_badgeWidth 12
+int styleable Badge_badgeWithTextHeight 13
+int styleable Badge_badgeWithTextRadius 14
+int styleable Badge_badgeWithTextShapeAppearance 15
+int styleable Badge_badgeWithTextShapeAppearanceOverlay 16
+int styleable Badge_badgeWithTextWidth 17
+int styleable Badge_horizontalOffset 18
+int styleable Badge_horizontalOffsetWithText 19
+int styleable Badge_largeFontVerticalOffsetAdjustment 20
+int styleable Badge_maxCharacterCount 21
+int styleable Badge_maxNumber 22
+int styleable Badge_number 23
+int styleable Badge_offsetAlignmentMode 24
+int styleable Badge_verticalOffset 25
+int styleable Badge_verticalOffsetWithText 26
+int[] styleable BaseProgressIndicator { 0x01010139, 0x7f040219, 0x7f040236, 0x7f04030b, 0x7f0403c8, 0x7f0403ca, 0x7f0404a9, 0x7f0404ac, 0x7f0404b1 }
+int styleable BaseProgressIndicator_android_indeterminate 0
+int styleable BaseProgressIndicator_hideAnimationBehavior 1
+int styleable BaseProgressIndicator_indicatorColor 2
+int styleable BaseProgressIndicator_minHideDelay 3
+int styleable BaseProgressIndicator_showAnimationBehavior 4
+int styleable BaseProgressIndicator_showDelay 5
+int styleable BaseProgressIndicator_trackColor 6
+int styleable BaseProgressIndicator_trackCornerRadius 7
+int styleable BaseProgressIndicator_trackThickness 8
+int[] styleable BottomAppBar { 0x7f040028, 0x7f040053, 0x7f040198, 0x7f0401ca, 0x7f0401cb, 0x7f0401cc, 0x7f0401cd, 0x7f0401ce, 0x7f0401cf, 0x7f0401d0, 0x7f04021d, 0x7f040307, 0x7f04033e, 0x7f040354, 0x7f040356, 0x7f040357, 0x7f0403a2 }
+int styleable BottomAppBar_addElevationShadow 0
+int styleable BottomAppBar_backgroundTint 1
+int styleable BottomAppBar_elevation 2
+int styleable BottomAppBar_fabAlignmentMode 3
+int styleable BottomAppBar_fabAlignmentModeEndMargin 4
+int styleable BottomAppBar_fabAnchorMode 5
+int styleable BottomAppBar_fabAnimationMode 6
+int styleable BottomAppBar_fabCradleMargin 7
+int styleable BottomAppBar_fabCradleRoundedCornerRadius 8
+int styleable BottomAppBar_fabCradleVerticalOffset 9
+int styleable BottomAppBar_hideOnScroll 10
+int styleable BottomAppBar_menuAlignmentMode 11
+int styleable BottomAppBar_navigationIconTint 12
+int styleable BottomAppBar_paddingBottomSystemWindowInsets 13
+int styleable BottomAppBar_paddingLeftSystemWindowInsets 14
+int styleable BottomAppBar_paddingRightSystemWindowInsets 15
+int styleable BottomAppBar_removeEmbeddedFabElevation 16
+int[] styleable BottomNavigationView { 0x01010140, 0x7f040125, 0x7f040247, 0x7f0403ba, 0x7f0403c2 }
+int styleable BottomNavigationView_android_minHeight 0
+int styleable BottomNavigationView_compatShadowEnabled 1
+int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2
+int styleable BottomNavigationView_shapeAppearance 3
+int styleable BottomNavigationView_shapeAppearanceOverlay 4
+int[] styleable BottomSheetBehavior_Layout { 0x0101011f, 0x01010120, 0x01010440, 0x7f040053, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f04006f, 0x7f040070, 0x7f040072, 0x7f040073, 0x7f040074, 0x7f040075, 0x7f04020f, 0x7f0402c9, 0x7f0402ca, 0x7f0402cb, 0x7f040354, 0x7f040356, 0x7f040357, 0x7f04035b, 0x7f0403ba, 0x7f0403c2, 0x7f0403c7 }
+int styleable BottomSheetBehavior_Layout_android_maxWidth 0
+int styleable BottomSheetBehavior_Layout_android_maxHeight 1
+int styleable BottomSheetBehavior_Layout_android_elevation 2
+int styleable BottomSheetBehavior_Layout_backgroundTint 3
+int styleable BottomSheetBehavior_Layout_behavior_draggable 4
+int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 5
+int styleable BottomSheetBehavior_Layout_behavior_fitToContents 6
+int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 7
+int styleable BottomSheetBehavior_Layout_behavior_hideable 8
+int styleable BottomSheetBehavior_Layout_behavior_peekHeight 9
+int styleable BottomSheetBehavior_Layout_behavior_saveFlags 10
+int styleable BottomSheetBehavior_Layout_behavior_significantVelocityThreshold 11
+int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 12
+int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 13
+int styleable BottomSheetBehavior_Layout_marginLeftSystemWindowInsets 14
+int styleable BottomSheetBehavior_Layout_marginRightSystemWindowInsets 15
+int styleable BottomSheetBehavior_Layout_marginTopSystemWindowInsets 16
+int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 17
+int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 18
+int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 19
+int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 20
+int styleable BottomSheetBehavior_Layout_shapeAppearance 21
+int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 22
+int styleable BottomSheetBehavior_Layout_shouldRemoveExpandedCorners 23
+int[] styleable ButtonBarLayout { 0x7f040031 }
+int styleable ButtonBarLayout_allowStacking 0
+int[] styleable Capability { 0x7f040397, 0x7f0403c5 }
+int styleable Capability_queryPatterns 0
+int styleable Capability_shortcutMatchRequired 1
+int[] styleable CardView { 0x0101013f, 0x01010140, 0x7f04009b, 0x7f04009c, 0x7f04009d, 0x7f04009f, 0x7f0400a0, 0x7f0400a1, 0x7f040133, 0x7f040134, 0x7f040136, 0x7f040137, 0x7f040139 }
+int styleable CardView_android_minWidth 0
+int styleable CardView_android_minHeight 1
+int styleable CardView_cardBackgroundColor 2
+int styleable CardView_cardCornerRadius 3
+int styleable CardView_cardElevation 4
+int styleable CardView_cardMaxElevation 5
+int styleable CardView_cardPreventCornerOverlap 6
+int styleable CardView_cardUseCompatPadding 7
+int styleable CardView_contentPadding 8
+int styleable CardView_contentPaddingBottom 9
+int styleable CardView_contentPaddingLeft 10
+int styleable CardView_contentPaddingRight 11
+int styleable CardView_contentPaddingTop 12
+int[] styleable Carousel { 0x7f0400a3 }
+int styleable Carousel_carousel_alignment 0
+int[] styleable CheckBoxPreference { 0x010101ef, 0x010101f0, 0x010101f1, 0x7f040174, 0x7f040413, 0x7f040414 }
+int styleable CheckBoxPreference_android_summaryOn 0
+int styleable CheckBoxPreference_android_summaryOff 1
+int styleable CheckBoxPreference_android_disableDependentsState 2
+int styleable CheckBoxPreference_disableDependentsState 3
+int styleable CheckBoxPreference_summaryOff 4
+int styleable CheckBoxPreference_summaryOn 5
+int[] styleable CheckedTextView { 0x01010108, 0x7f0400a7, 0x7f0400a8, 0x7f0400a9 }
+int styleable CheckedTextView_android_checkMark 0
+int styleable CheckedTextView_checkMarkCompat 1
+int styleable CheckedTextView_checkMarkTint 2
+int styleable CheckedTextView_checkMarkTintMode 3
+int[] styleable Chip { 0x01010034, 0x01010095, 0x01010098, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f0400ad, 0x7f0400ae, 0x7f0400b2, 0x7f0400b3, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400ba, 0x7f0400bb, 0x7f0400bc, 0x7f0400bd, 0x7f0400be, 0x7f0400bf, 0x7f0400c0, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c9, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f0400d7, 0x7f0400d8, 0x7f0400d9, 0x7f0401aa, 0x7f04021a, 0x7f040228, 0x7f04022d, 0x7f0403a4, 0x7f0403ba, 0x7f0403c2, 0x7f0403cc, 0x7f040467, 0x7f040471 }
+int styleable Chip_android_textAppearance 0
+int styleable Chip_android_textSize 1
+int styleable Chip_android_textColor 2
+int styleable Chip_android_ellipsize 3
+int styleable Chip_android_maxWidth 4
+int styleable Chip_android_text 5
+int styleable Chip_android_checkable 6
+int styleable Chip_checkedIcon 7
+int styleable Chip_checkedIconEnabled 8
+int styleable Chip_checkedIconTint 9
+int styleable Chip_checkedIconVisible 10
+int styleable Chip_chipBackgroundColor 11
+int styleable Chip_chipCornerRadius 12
+int styleable Chip_chipEndPadding 13
+int styleable Chip_chipIcon 14
+int styleable Chip_chipIconEnabled 15
+int styleable Chip_chipIconSize 16
+int styleable Chip_chipIconTint 17
+int styleable Chip_chipIconVisible 18
+int styleable Chip_chipMinHeight 19
+int styleable Chip_chipMinTouchTargetSize 20
+int styleable Chip_chipStartPadding 21
+int styleable Chip_chipStrokeColor 22
+int styleable Chip_chipStrokeWidth 23
+int styleable Chip_chipSurfaceColor 24
+int styleable Chip_closeIcon 25
+int styleable Chip_closeIconEnabled 26
+int styleable Chip_closeIconEndPadding 27
+int styleable Chip_closeIconSize 28
+int styleable Chip_closeIconStartPadding 29
+int styleable Chip_closeIconTint 30
+int styleable Chip_closeIconVisible 31
+int styleable Chip_ensureMinTouchTargetSize 32
+int styleable Chip_hideMotionSpec 33
+int styleable Chip_iconEndPadding 34
+int styleable Chip_iconStartPadding 35
+int styleable Chip_rippleColor 36
+int styleable Chip_shapeAppearance 37
+int styleable Chip_shapeAppearanceOverlay 38
+int styleable Chip_showMotionSpec 39
+int styleable Chip_textEndPadding 40
+int styleable Chip_textStartPadding 41
+int[] styleable ChipGroup { 0x7f0400ac, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0403b8, 0x7f0403da, 0x7f0403dc }
+int styleable ChipGroup_checkedChip 0
+int styleable ChipGroup_chipSpacing 1
+int styleable ChipGroup_chipSpacingHorizontal 2
+int styleable ChipGroup_chipSpacingVertical 3
+int styleable ChipGroup_selectionRequired 4
+int styleable ChipGroup_singleLine 5
+int styleable ChipGroup_singleSelection 6
+int[] styleable CircularProgressIndicator { 0x7f040237, 0x7f040239, 0x7f04023a }
+int styleable CircularProgressIndicator_indicatorDirectionCircular 0
+int styleable CircularProgressIndicator_indicatorInset 1
+int styleable CircularProgressIndicator_indicatorSize 2
+int[] styleable ClockFaceView { 0x7f0400cf, 0x7f0400d2 }
+int styleable ClockFaceView_clockFaceBackgroundColor 0
+int styleable ClockFaceView_clockNumberTextColor 1
+int[] styleable ClockHandView { 0x7f0400d0, 0x7f0402e8, 0x7f0403b9 }
+int styleable ClockHandView_clockHandColor 0
+int styleable ClockHandView_materialCircleRadius 1
+int styleable ClockHandView_selectorSize 2
+int[] styleable CollapsingToolbarLayout { 0x7f0400de, 0x7f0400df, 0x7f0400e0, 0x7f04013a, 0x7f0401ba, 0x7f0401bb, 0x7f0401bc, 0x7f0401bd, 0x7f0401be, 0x7f0401bf, 0x7f0401c0, 0x7f0401c1, 0x7f0401c9, 0x7f040209, 0x7f040301, 0x7f0403a9, 0x7f0403ab, 0x7f040400, 0x7f04048c, 0x7f04048e, 0x7f04048f, 0x7f040496, 0x7f040499, 0x7f04049c }
+int styleable CollapsingToolbarLayout_collapsedTitleGravity 0
+int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1
+int styleable CollapsingToolbarLayout_collapsedTitleTextColor 2
+int styleable CollapsingToolbarLayout_contentScrim 3
+int styleable CollapsingToolbarLayout_expandedTitleGravity 4
+int styleable CollapsingToolbarLayout_expandedTitleMargin 5
+int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 6
+int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 7
+int styleable CollapsingToolbarLayout_expandedTitleMarginStart 8
+int styleable CollapsingToolbarLayout_expandedTitleMarginTop 9
+int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 10
+int styleable CollapsingToolbarLayout_expandedTitleTextColor 11
+int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 12
+int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 13
+int styleable CollapsingToolbarLayout_maxLines 14
+int styleable CollapsingToolbarLayout_scrimAnimationDuration 15
+int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 16
+int styleable CollapsingToolbarLayout_statusBarScrim 17
+int styleable CollapsingToolbarLayout_title 18
+int styleable CollapsingToolbarLayout_titleCollapseMode 19
+int styleable CollapsingToolbarLayout_titleEnabled 20
+int styleable CollapsingToolbarLayout_titlePositionInterpolator 21
+int styleable CollapsingToolbarLayout_titleTextEllipsize 22
+int styleable CollapsingToolbarLayout_toolbarId 23
+int[] styleable CollapsingToolbarLayout_Layout { 0x7f040273, 0x7f040274 }
+int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0
+int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1
+int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x01010647, 0x7f040032, 0x7f040265 }
+int styleable ColorStateListItem_android_color 0
+int styleable ColorStateListItem_android_alpha 1
+int styleable ColorStateListItem_android_lStar 2
+int styleable ColorStateListItem_alpha 3
+int styleable ColorStateListItem_lStar 4
+int[] styleable CompoundButton { 0x01010107, 0x7f04008f, 0x7f040099, 0x7f04009a }
+int styleable CompoundButton_android_button 0
+int styleable CompoundButton_buttonCompat 1
+int styleable CompoundButton_buttonTint 2
+int styleable CompoundButton_buttonTintMode 3
+int[] styleable Constraint { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f040038, 0x7f040067, 0x7f040068, 0x7f040069, 0x7f0400a5, 0x7f040129, 0x7f040181, 0x7f0401ea, 0x7f0401eb, 0x7f0401ec, 0x7f0401ed, 0x7f0401ee, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f8, 0x7f0401f9, 0x7f0401fa, 0x7f0401fb, 0x7f0401fc, 0x7f040275, 0x7f040276, 0x7f040277, 0x7f040278, 0x7f040279, 0x7f04027a, 0x7f04027b, 0x7f04027c, 0x7f04027d, 0x7f04027e, 0x7f04027f, 0x7f040280, 0x7f040281, 0x7f040282, 0x7f040283, 0x7f040284, 0x7f040285, 0x7f040286, 0x7f040287, 0x7f040288, 0x7f040289, 0x7f04028a, 0x7f04028b, 0x7f04028c, 0x7f04028d, 0x7f04028e, 0x7f04028f, 0x7f040290, 0x7f040291, 0x7f040292, 0x7f040293, 0x7f040294, 0x7f040295, 0x7f040296, 0x7f040297, 0x7f040298, 0x7f040299, 0x7f04029a, 0x7f04029b, 0x7f04029c, 0x7f04029d, 0x7f04029e, 0x7f0402a0, 0x7f0402a1, 0x7f0402a2, 0x7f0402a3, 0x7f0402a4, 0x7f0402a5, 0x7f0402a6, 0x7f0402a7, 0x7f040335, 0x7f040336, 0x7f040364, 0x7f04036c, 0x7f0404b5, 0x7f0404b7, 0x7f0404c6 }
+int styleable Constraint_android_orientation 0
+int styleable Constraint_android_id 1
+int styleable Constraint_android_visibility 2
+int styleable Constraint_android_layout_width 3
+int styleable Constraint_android_layout_height 4
+int styleable Constraint_android_layout_marginLeft 5
+int styleable Constraint_android_layout_marginTop 6
+int styleable Constraint_android_layout_marginRight 7
+int styleable Constraint_android_layout_marginBottom 8
+int styleable Constraint_android_maxWidth 9
+int styleable Constraint_android_maxHeight 10
+int styleable Constraint_android_minWidth 11
+int styleable Constraint_android_minHeight 12
+int styleable Constraint_android_alpha 13
+int styleable Constraint_android_transformPivotX 14
+int styleable Constraint_android_transformPivotY 15
+int styleable Constraint_android_translationX 16
+int styleable Constraint_android_translationY 17
+int styleable Constraint_android_scaleX 18
+int styleable Constraint_android_scaleY 19
+int styleable Constraint_android_rotation 20
+int styleable Constraint_android_rotationX 21
+int styleable Constraint_android_rotationY 22
+int styleable Constraint_android_layout_marginStart 23
+int styleable Constraint_android_layout_marginEnd 24
+int styleable Constraint_android_translationZ 25
+int styleable Constraint_android_elevation 26
+int styleable Constraint_animate_relativeTo 27
+int styleable Constraint_barrierAllowsGoneWidgets 28
+int styleable Constraint_barrierDirection 29
+int styleable Constraint_barrierMargin 30
+int styleable Constraint_chainUseRtl 31
+int styleable Constraint_constraint_referenced_ids 32
+int styleable Constraint_drawPath 33
+int styleable Constraint_flow_firstHorizontalBias 34
+int styleable Constraint_flow_firstHorizontalStyle 35
+int styleable Constraint_flow_firstVerticalBias 36
+int styleable Constraint_flow_firstVerticalStyle 37
+int styleable Constraint_flow_horizontalAlign 38
+int styleable Constraint_flow_horizontalBias 39
+int styleable Constraint_flow_horizontalGap 40
+int styleable Constraint_flow_horizontalStyle 41
+int styleable Constraint_flow_lastHorizontalBias 42
+int styleable Constraint_flow_lastHorizontalStyle 43
+int styleable Constraint_flow_lastVerticalBias 44
+int styleable Constraint_flow_lastVerticalStyle 45
+int styleable Constraint_flow_maxElementsWrap 46
+int styleable Constraint_flow_verticalAlign 47
+int styleable Constraint_flow_verticalBias 48
+int styleable Constraint_flow_verticalGap 49
+int styleable Constraint_flow_verticalStyle 50
+int styleable Constraint_flow_wrapMode 51
+int styleable Constraint_layout_constrainedHeight 52
+int styleable Constraint_layout_constrainedWidth 53
+int styleable Constraint_layout_constraintBaseline_creator 54
+int styleable Constraint_layout_constraintBaseline_toBaselineOf 55
+int styleable Constraint_layout_constraintBottom_creator 56
+int styleable Constraint_layout_constraintBottom_toBottomOf 57
+int styleable Constraint_layout_constraintBottom_toTopOf 58
+int styleable Constraint_layout_constraintCircle 59
+int styleable Constraint_layout_constraintCircleAngle 60
+int styleable Constraint_layout_constraintCircleRadius 61
+int styleable Constraint_layout_constraintDimensionRatio 62
+int styleable Constraint_layout_constraintEnd_toEndOf 63
+int styleable Constraint_layout_constraintEnd_toStartOf 64
+int styleable Constraint_layout_constraintGuide_begin 65
+int styleable Constraint_layout_constraintGuide_end 66
+int styleable Constraint_layout_constraintGuide_percent 67
+int styleable Constraint_layout_constraintHeight_default 68
+int styleable Constraint_layout_constraintHeight_max 69
+int styleable Constraint_layout_constraintHeight_min 70
+int styleable Constraint_layout_constraintHeight_percent 71
+int styleable Constraint_layout_constraintHorizontal_bias 72
+int styleable Constraint_layout_constraintHorizontal_chainStyle 73
+int styleable Constraint_layout_constraintHorizontal_weight 74
+int styleable Constraint_layout_constraintLeft_creator 75
+int styleable Constraint_layout_constraintLeft_toLeftOf 76
+int styleable Constraint_layout_constraintLeft_toRightOf 77
+int styleable Constraint_layout_constraintRight_creator 78
+int styleable Constraint_layout_constraintRight_toLeftOf 79
+int styleable Constraint_layout_constraintRight_toRightOf 80
+int styleable Constraint_layout_constraintStart_toEndOf 81
+int styleable Constraint_layout_constraintStart_toStartOf 82
+int styleable Constraint_layout_constraintTag 83
+int styleable Constraint_layout_constraintTop_creator 84
+int styleable Constraint_layout_constraintTop_toBottomOf 85
+int styleable Constraint_layout_constraintTop_toTopOf 86
+int styleable Constraint_layout_constraintVertical_bias 87
+int styleable Constraint_layout_constraintVertical_chainStyle 88
+int styleable Constraint_layout_constraintVertical_weight 89
+int styleable Constraint_layout_constraintWidth_default 90
+int styleable Constraint_layout_constraintWidth_max 91
+int styleable Constraint_layout_constraintWidth_min 92
+int styleable Constraint_layout_constraintWidth_percent 93
+int styleable Constraint_layout_editor_absoluteX 94
+int styleable Constraint_layout_editor_absoluteY 95
+int styleable Constraint_layout_goneMarginBottom 96
+int styleable Constraint_layout_goneMarginEnd 97
+int styleable Constraint_layout_goneMarginLeft 98
+int styleable Constraint_layout_goneMarginRight 99
+int styleable Constraint_layout_goneMarginStart 100
+int styleable Constraint_layout_goneMarginTop 101
+int styleable Constraint_motionProgress 102
+int styleable Constraint_motionStagger 103
+int styleable Constraint_pathMotionArc 104
+int styleable Constraint_pivotAnchor 105
+int styleable Constraint_transitionEasing 106
+int styleable Constraint_transitionPathRotate 107
+int styleable Constraint_visibilityMode 108
+int[] styleable ConstraintLayout_Layout { 0x010100c4, 0x010100d5, 0x010100d6, 0x010100d7, 0x010100d8, 0x010100d9, 0x010100dc, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010103b3, 0x010103b4, 0x01010440, 0x7f040067, 0x7f040068, 0x7f040069, 0x7f0400a5, 0x7f040126, 0x7f040129, 0x7f0401ea, 0x7f0401eb, 0x7f0401ec, 0x7f0401ed, 0x7f0401ee, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f8, 0x7f0401f9, 0x7f0401fa, 0x7f0401fb, 0x7f0401fc, 0x7f04026d, 0x7f040275, 0x7f040276, 0x7f040277, 0x7f040278, 0x7f040279, 0x7f04027a, 0x7f04027b, 0x7f04027c, 0x7f04027d, 0x7f04027e, 0x7f04027f, 0x7f040280, 0x7f040281, 0x7f040282, 0x7f040283, 0x7f040284, 0x7f040285, 0x7f040286, 0x7f040287, 0x7f040288, 0x7f040289, 0x7f04028a, 0x7f04028b, 0x7f04028c, 0x7f04028d, 0x7f04028e, 0x7f04028f, 0x7f040290, 0x7f040291, 0x7f040292, 0x7f040293, 0x7f040294, 0x7f040295, 0x7f040296, 0x7f040297, 0x7f040298, 0x7f040299, 0x7f04029a, 0x7f04029b, 0x7f04029c, 0x7f04029d, 0x7f04029e, 0x7f0402a0, 0x7f0402a1, 0x7f0402a2, 0x7f0402a3, 0x7f0402a4, 0x7f0402a5, 0x7f0402a6, 0x7f0402a7, 0x7f0402aa }
+int styleable ConstraintLayout_Layout_android_orientation 0
+int styleable ConstraintLayout_Layout_android_padding 1
+int styleable ConstraintLayout_Layout_android_paddingLeft 2
+int styleable ConstraintLayout_Layout_android_paddingTop 3
+int styleable ConstraintLayout_Layout_android_paddingRight 4
+int styleable ConstraintLayout_Layout_android_paddingBottom 5
+int styleable ConstraintLayout_Layout_android_visibility 6
+int styleable ConstraintLayout_Layout_android_maxWidth 7
+int styleable ConstraintLayout_Layout_android_maxHeight 8
+int styleable ConstraintLayout_Layout_android_minWidth 9
+int styleable ConstraintLayout_Layout_android_minHeight 10
+int styleable ConstraintLayout_Layout_android_paddingStart 11
+int styleable ConstraintLayout_Layout_android_paddingEnd 12
+int styleable ConstraintLayout_Layout_android_elevation 13
+int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 14
+int styleable ConstraintLayout_Layout_barrierDirection 15
+int styleable ConstraintLayout_Layout_barrierMargin 16
+int styleable ConstraintLayout_Layout_chainUseRtl 17
+int styleable ConstraintLayout_Layout_constraintSet 18
+int styleable ConstraintLayout_Layout_constraint_referenced_ids 19
+int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 20
+int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 21
+int styleable ConstraintLayout_Layout_flow_firstVerticalBias 22
+int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 23
+int styleable ConstraintLayout_Layout_flow_horizontalAlign 24
+int styleable ConstraintLayout_Layout_flow_horizontalBias 25
+int styleable ConstraintLayout_Layout_flow_horizontalGap 26
+int styleable ConstraintLayout_Layout_flow_horizontalStyle 27
+int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 28
+int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 29
+int styleable ConstraintLayout_Layout_flow_lastVerticalBias 30
+int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 31
+int styleable ConstraintLayout_Layout_flow_maxElementsWrap 32
+int styleable ConstraintLayout_Layout_flow_verticalAlign 33
+int styleable ConstraintLayout_Layout_flow_verticalBias 34
+int styleable ConstraintLayout_Layout_flow_verticalGap 35
+int styleable ConstraintLayout_Layout_flow_verticalStyle 36
+int styleable ConstraintLayout_Layout_flow_wrapMode 37
+int styleable ConstraintLayout_Layout_layoutDescription 38
+int styleable ConstraintLayout_Layout_layout_constrainedHeight 39
+int styleable ConstraintLayout_Layout_layout_constrainedWidth 40
+int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 41
+int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 42
+int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 43
+int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 44
+int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 45
+int styleable ConstraintLayout_Layout_layout_constraintCircle 46
+int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 47
+int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 48
+int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 49
+int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 50
+int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 51
+int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 52
+int styleable ConstraintLayout_Layout_layout_constraintGuide_end 53
+int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 54
+int styleable ConstraintLayout_Layout_layout_constraintHeight_default 55
+int styleable ConstraintLayout_Layout_layout_constraintHeight_max 56
+int styleable ConstraintLayout_Layout_layout_constraintHeight_min 57
+int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 58
+int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 59
+int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 60
+int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 61
+int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 62
+int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 63
+int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 64
+int styleable ConstraintLayout_Layout_layout_constraintRight_creator 65
+int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 66
+int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 67
+int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 68
+int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 69
+int styleable ConstraintLayout_Layout_layout_constraintTag 70
+int styleable ConstraintLayout_Layout_layout_constraintTop_creator 71
+int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 72
+int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 73
+int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 74
+int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 75
+int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 76
+int styleable ConstraintLayout_Layout_layout_constraintWidth_default 77
+int styleable ConstraintLayout_Layout_layout_constraintWidth_max 78
+int styleable ConstraintLayout_Layout_layout_constraintWidth_min 79
+int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 80
+int styleable ConstraintLayout_Layout_layout_editor_absoluteX 81
+int styleable ConstraintLayout_Layout_layout_editor_absoluteY 82
+int styleable ConstraintLayout_Layout_layout_goneMarginBottom 83
+int styleable ConstraintLayout_Layout_layout_goneMarginEnd 84
+int styleable ConstraintLayout_Layout_layout_goneMarginLeft 85
+int styleable ConstraintLayout_Layout_layout_goneMarginRight 86
+int styleable ConstraintLayout_Layout_layout_goneMarginStart 87
+int styleable ConstraintLayout_Layout_layout_goneMarginTop 88
+int styleable ConstraintLayout_Layout_layout_optimizationLevel 89
+int[] styleable ConstraintLayout_placeholder { 0x7f04012b, 0x7f040371 }
+int styleable ConstraintLayout_placeholder_content 0
+int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1
+int[] styleable ConstraintSet { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010101b5, 0x010101b6, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f040038, 0x7f040067, 0x7f040068, 0x7f040069, 0x7f0400a5, 0x7f040129, 0x7f04016b, 0x7f040181, 0x7f0401ea, 0x7f0401eb, 0x7f0401ec, 0x7f0401ed, 0x7f0401ee, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f8, 0x7f0401f9, 0x7f0401fa, 0x7f0401fb, 0x7f0401fc, 0x7f040275, 0x7f040276, 0x7f040277, 0x7f040278, 0x7f040279, 0x7f04027a, 0x7f04027b, 0x7f04027c, 0x7f04027d, 0x7f04027e, 0x7f04027f, 0x7f040280, 0x7f040281, 0x7f040282, 0x7f040283, 0x7f040284, 0x7f040285, 0x7f040286, 0x7f040287, 0x7f040288, 0x7f040289, 0x7f04028a, 0x7f04028b, 0x7f04028c, 0x7f04028d, 0x7f04028e, 0x7f04028f, 0x7f040290, 0x7f040291, 0x7f040292, 0x7f040293, 0x7f040294, 0x7f040295, 0x7f040296, 0x7f040297, 0x7f040298, 0x7f040299, 0x7f04029a, 0x7f04029b, 0x7f04029c, 0x7f04029d, 0x7f04029e, 0x7f0402a0, 0x7f0402a1, 0x7f0402a2, 0x7f0402a3, 0x7f0402a4, 0x7f0402a5, 0x7f0402a6, 0x7f0402a7, 0x7f040335, 0x7f040336, 0x7f040364, 0x7f04036c, 0x7f0404b5, 0x7f0404b7 }
+int styleable ConstraintSet_android_orientation 0
+int styleable ConstraintSet_android_id 1
+int styleable ConstraintSet_android_visibility 2
+int styleable ConstraintSet_android_layout_width 3
+int styleable ConstraintSet_android_layout_height 4
+int styleable ConstraintSet_android_layout_marginLeft 5
+int styleable ConstraintSet_android_layout_marginTop 6
+int styleable ConstraintSet_android_layout_marginRight 7
+int styleable ConstraintSet_android_layout_marginBottom 8
+int styleable ConstraintSet_android_maxWidth 9
+int styleable ConstraintSet_android_maxHeight 10
+int styleable ConstraintSet_android_minWidth 11
+int styleable ConstraintSet_android_minHeight 12
+int styleable ConstraintSet_android_pivotX 13
+int styleable ConstraintSet_android_pivotY 14
+int styleable ConstraintSet_android_alpha 15
+int styleable ConstraintSet_android_transformPivotX 16
+int styleable ConstraintSet_android_transformPivotY 17
+int styleable ConstraintSet_android_translationX 18
+int styleable ConstraintSet_android_translationY 19
+int styleable ConstraintSet_android_scaleX 20
+int styleable ConstraintSet_android_scaleY 21
+int styleable ConstraintSet_android_rotation 22
+int styleable ConstraintSet_android_rotationX 23
+int styleable ConstraintSet_android_rotationY 24
+int styleable ConstraintSet_android_layout_marginStart 25
+int styleable ConstraintSet_android_layout_marginEnd 26
+int styleable ConstraintSet_android_translationZ 27
+int styleable ConstraintSet_android_elevation 28
+int styleable ConstraintSet_animate_relativeTo 29
+int styleable ConstraintSet_barrierAllowsGoneWidgets 30
+int styleable ConstraintSet_barrierDirection 31
+int styleable ConstraintSet_barrierMargin 32
+int styleable ConstraintSet_chainUseRtl 33
+int styleable ConstraintSet_constraint_referenced_ids 34
+int styleable ConstraintSet_deriveConstraintsFrom 35
+int styleable ConstraintSet_drawPath 36
+int styleable ConstraintSet_flow_firstHorizontalBias 37
+int styleable ConstraintSet_flow_firstHorizontalStyle 38
+int styleable ConstraintSet_flow_firstVerticalBias 39
+int styleable ConstraintSet_flow_firstVerticalStyle 40
+int styleable ConstraintSet_flow_horizontalAlign 41
+int styleable ConstraintSet_flow_horizontalBias 42
+int styleable ConstraintSet_flow_horizontalGap 43
+int styleable ConstraintSet_flow_horizontalStyle 44
+int styleable ConstraintSet_flow_lastHorizontalBias 45
+int styleable ConstraintSet_flow_lastHorizontalStyle 46
+int styleable ConstraintSet_flow_lastVerticalBias 47
+int styleable ConstraintSet_flow_lastVerticalStyle 48
+int styleable ConstraintSet_flow_maxElementsWrap 49
+int styleable ConstraintSet_flow_verticalAlign 50
+int styleable ConstraintSet_flow_verticalBias 51
+int styleable ConstraintSet_flow_verticalGap 52
+int styleable ConstraintSet_flow_verticalStyle 53
+int styleable ConstraintSet_flow_wrapMode 54
+int styleable ConstraintSet_layout_constrainedHeight 55
+int styleable ConstraintSet_layout_constrainedWidth 56
+int styleable ConstraintSet_layout_constraintBaseline_creator 57
+int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 58
+int styleable ConstraintSet_layout_constraintBottom_creator 59
+int styleable ConstraintSet_layout_constraintBottom_toBottomOf 60
+int styleable ConstraintSet_layout_constraintBottom_toTopOf 61
+int styleable ConstraintSet_layout_constraintCircle 62
+int styleable ConstraintSet_layout_constraintCircleAngle 63
+int styleable ConstraintSet_layout_constraintCircleRadius 64
+int styleable ConstraintSet_layout_constraintDimensionRatio 65
+int styleable ConstraintSet_layout_constraintEnd_toEndOf 66
+int styleable ConstraintSet_layout_constraintEnd_toStartOf 67
+int styleable ConstraintSet_layout_constraintGuide_begin 68
+int styleable ConstraintSet_layout_constraintGuide_end 69
+int styleable ConstraintSet_layout_constraintGuide_percent 70
+int styleable ConstraintSet_layout_constraintHeight_default 71
+int styleable ConstraintSet_layout_constraintHeight_max 72
+int styleable ConstraintSet_layout_constraintHeight_min 73
+int styleable ConstraintSet_layout_constraintHeight_percent 74
+int styleable ConstraintSet_layout_constraintHorizontal_bias 75
+int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 76
+int styleable ConstraintSet_layout_constraintHorizontal_weight 77
+int styleable ConstraintSet_layout_constraintLeft_creator 78
+int styleable ConstraintSet_layout_constraintLeft_toLeftOf 79
+int styleable ConstraintSet_layout_constraintLeft_toRightOf 80
+int styleable ConstraintSet_layout_constraintRight_creator 81
+int styleable ConstraintSet_layout_constraintRight_toLeftOf 82
+int styleable ConstraintSet_layout_constraintRight_toRightOf 83
+int styleable ConstraintSet_layout_constraintStart_toEndOf 84
+int styleable ConstraintSet_layout_constraintStart_toStartOf 85
+int styleable ConstraintSet_layout_constraintTag 86
+int styleable ConstraintSet_layout_constraintTop_creator 87
+int styleable ConstraintSet_layout_constraintTop_toBottomOf 88
+int styleable ConstraintSet_layout_constraintTop_toTopOf 89
+int styleable ConstraintSet_layout_constraintVertical_bias 90
+int styleable ConstraintSet_layout_constraintVertical_chainStyle 91
+int styleable ConstraintSet_layout_constraintVertical_weight 92
+int styleable ConstraintSet_layout_constraintWidth_default 93
+int styleable ConstraintSet_layout_constraintWidth_max 94
+int styleable ConstraintSet_layout_constraintWidth_min 95
+int styleable ConstraintSet_layout_constraintWidth_percent 96
+int styleable ConstraintSet_layout_editor_absoluteX 97
+int styleable ConstraintSet_layout_editor_absoluteY 98
+int styleable ConstraintSet_layout_goneMarginBottom 99
+int styleable ConstraintSet_layout_goneMarginEnd 100
+int styleable ConstraintSet_layout_goneMarginLeft 101
+int styleable ConstraintSet_layout_goneMarginRight 102
+int styleable ConstraintSet_layout_goneMarginStart 103
+int styleable ConstraintSet_layout_goneMarginTop 104
+int styleable ConstraintSet_motionProgress 105
+int styleable ConstraintSet_motionStagger 106
+int styleable ConstraintSet_pathMotionArc 107
+int styleable ConstraintSet_pivotAnchor 108
+int styleable ConstraintSet_transitionEasing 109
+int styleable ConstraintSet_transitionPathRotate 110
+int[] styleable CoordinatorLayout { 0x7f040264, 0x7f0403fe }
+int styleable CoordinatorLayout_keylines 0
+int styleable CoordinatorLayout_statusBarBackground 1
+int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f040270, 0x7f040271, 0x7f040272, 0x7f04029f, 0x7f0402a8, 0x7f0402a9 }
+int styleable CoordinatorLayout_Layout_android_layout_gravity 0
+int styleable CoordinatorLayout_Layout_layout_anchor 1
+int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
+int styleable CoordinatorLayout_Layout_layout_behavior 3
+int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
+int styleable CoordinatorLayout_Layout_layout_insetEdge 5
+int styleable CoordinatorLayout_Layout_layout_keyline 6
+int[] styleable CustomAttribute { 0x7f04003f, 0x7f040155, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f04015c, 0x7f04015d }
+int styleable CustomAttribute_attributeName 0
+int styleable CustomAttribute_customBoolean 1
+int styleable CustomAttribute_customColorDrawableValue 2
+int styleable CustomAttribute_customColorValue 3
+int styleable CustomAttribute_customDimension 4
+int styleable CustomAttribute_customFloatValue 5
+int styleable CustomAttribute_customIntegerValue 6
+int styleable CustomAttribute_customPixelDimension 7
+int styleable CustomAttribute_customStringValue 8
+int[] styleable DialogPreference { 0x010101f2, 0x010101f3, 0x010101f4, 0x010101f5, 0x010101f6, 0x010101f7, 0x7f04016d, 0x7f04016e, 0x7f04016f, 0x7f040173, 0x7f040342, 0x7f040376 }
+int styleable DialogPreference_android_dialogTitle 0
+int styleable DialogPreference_android_dialogMessage 1
+int styleable DialogPreference_android_dialogIcon 2
+int styleable DialogPreference_android_positiveButtonText 3
+int styleable DialogPreference_android_negativeButtonText 4
+int styleable DialogPreference_android_dialogLayout 5
+int styleable DialogPreference_dialogIcon 6
+int styleable DialogPreference_dialogLayout 7
+int styleable DialogPreference_dialogMessage 8
+int styleable DialogPreference_dialogTitle 9
+int styleable DialogPreference_negativeButtonText 10
+int styleable DialogPreference_positiveButtonText 11
+int[] styleable DrawerArrowToggle { 0x7f04003d, 0x7f04003e, 0x7f040066, 0x7f0400e6, 0x7f040186, 0x7f04020e, 0x7f0403e3, 0x7f040473 }
+int styleable DrawerArrowToggle_arrowHeadLength 0
+int styleable DrawerArrowToggle_arrowShaftLength 1
+int styleable DrawerArrowToggle_barLength 2
+int styleable DrawerArrowToggle_color 3
+int styleable DrawerArrowToggle_drawableSize 4
+int styleable DrawerArrowToggle_gapBetweenBars 5
+int styleable DrawerArrowToggle_spinBars 6
+int styleable DrawerArrowToggle_thickness 7
+int[] styleable DrawerLayout { 0x7f040198 }
+int styleable DrawerLayout_elevation 0
+int[] styleable EditTextPreference { 0x7f0404c1 }
+int styleable EditTextPreference_useSimpleSummaryProvider 0
+int[] styleable ExtendedFloatingActionButton { 0x7f0400dd, 0x7f040198, 0x7f0401c2, 0x7f0401c3, 0x7f04021a, 0x7f0403cc, 0x7f0403d1 }
+int styleable ExtendedFloatingActionButton_collapsedSize 0
+int styleable ExtendedFloatingActionButton_elevation 1
+int styleable ExtendedFloatingActionButton_extendMotionSpec 2
+int styleable ExtendedFloatingActionButton_extendStrategy 3
+int styleable ExtendedFloatingActionButton_hideMotionSpec 4
+int styleable ExtendedFloatingActionButton_showMotionSpec 5
+int styleable ExtendedFloatingActionButton_shrinkMotionSpec 6
+int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x7f04006a, 0x7f04006b }
+int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0
+int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1
+int[] styleable FloatingActionButton { 0x0101000e, 0x7f040053, 0x7f040054, 0x7f040076, 0x7f040198, 0x7f0401aa, 0x7f0401d1, 0x7f0401d2, 0x7f04021a, 0x7f040226, 0x7f040300, 0x7f040391, 0x7f0403a4, 0x7f0403ba, 0x7f0403c2, 0x7f0403cc, 0x7f0404be }
+int styleable FloatingActionButton_android_enabled 0
+int styleable FloatingActionButton_backgroundTint 1
+int styleable FloatingActionButton_backgroundTintMode 2
+int styleable FloatingActionButton_borderWidth 3
+int styleable FloatingActionButton_elevation 4
+int styleable FloatingActionButton_ensureMinTouchTargetSize 5
+int styleable FloatingActionButton_fabCustomSize 6
+int styleable FloatingActionButton_fabSize 7
+int styleable FloatingActionButton_hideMotionSpec 8
+int styleable FloatingActionButton_hoveredFocusedTranslationZ 9
+int styleable FloatingActionButton_maxImageSize 10
+int styleable FloatingActionButton_pressedTranslationZ 11
+int styleable FloatingActionButton_rippleColor 12
+int styleable FloatingActionButton_shapeAppearance 13
+int styleable FloatingActionButton_shapeAppearanceOverlay 14
+int styleable FloatingActionButton_showMotionSpec 15
+int styleable FloatingActionButton_useCompatPadding 16
+int[] styleable FloatingActionButton_Behavior_Layout { 0x7f04006a }
+int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0
+int[] styleable FlowLayout { 0x7f040258, 0x7f0402b3 }
+int styleable FlowLayout_itemSpacing 0
+int styleable FlowLayout_lineSpacing 1
+int[] styleable FontFamily { 0x7f0401ff, 0x7f040200, 0x7f040201, 0x7f040202, 0x7f040203, 0x7f040204, 0x7f040205 }
+int styleable FontFamily_fontProviderAuthority 0
+int styleable FontFamily_fontProviderCerts 1
+int styleable FontFamily_fontProviderFetchStrategy 2
+int styleable FontFamily_fontProviderFetchTimeout 3
+int styleable FontFamily_fontProviderPackage 4
+int styleable FontFamily_fontProviderQuery 5
+int styleable FontFamily_fontProviderSystemFontFamily 6
+int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f0401fd, 0x7f040206, 0x7f040207, 0x7f040208, 0x7f0404bc }
+int styleable FontFamilyFont_android_font 0
+int styleable FontFamilyFont_android_fontWeight 1
+int styleable FontFamilyFont_android_fontStyle 2
+int styleable FontFamilyFont_android_ttcIndex 3
+int styleable FontFamilyFont_android_fontVariationSettings 4
+int styleable FontFamilyFont_font 5
+int styleable FontFamilyFont_fontStyle 6
+int styleable FontFamilyFont_fontVariationSettings 7
+int styleable FontFamilyFont_fontWeight 8
+int styleable FontFamilyFont_ttcIndex 9
+int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f04020b }
+int styleable ForegroundLinearLayout_android_foreground 0
+int styleable ForegroundLinearLayout_android_foregroundGravity 1
+int styleable ForegroundLinearLayout_foregroundInsidePadding 2
+int[] styleable Fragment { 0x01010003, 0x010100d0, 0x010100d1 }
+int styleable Fragment_android_name 0
+int styleable Fragment_android_id 1
+int styleable Fragment_android_tag 2
+int[] styleable FragmentContainerView { 0x01010003, 0x010100d1 }
+int styleable FragmentContainerView_android_name 0
+int styleable FragmentContainerView_android_tag 1
+int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }
+int styleable GradientColor_android_startColor 0
+int styleable GradientColor_android_endColor 1
+int styleable GradientColor_android_type 2
+int styleable GradientColor_android_centerX 3
+int styleable GradientColor_android_centerY 4
+int styleable GradientColor_android_gradientRadius 5
+int styleable GradientColor_android_tileMode 6
+int styleable GradientColor_android_centerColor 7
+int styleable GradientColor_android_startX 8
+int styleable GradientColor_android_startY 9
+int styleable GradientColor_android_endX 10
+int styleable GradientColor_android_endY 11
+int[] styleable GradientColorItem { 0x010101a5, 0x01010514 }
+int styleable GradientColorItem_android_color 0
+int styleable GradientColorItem_android_offset 1
+int[] styleable ImageFilterView { 0x7f040034, 0x7f040089, 0x7f04013b, 0x7f040150, 0x7f040352, 0x7f0403a5, 0x7f0403a6, 0x7f0403a7, 0x7f0404c8 }
+int styleable ImageFilterView_altSrc 0
+int styleable ImageFilterView_brightness 1
+int styleable ImageFilterView_contrast 2
+int styleable ImageFilterView_crossfade 3
+int styleable ImageFilterView_overlay 4
+int styleable ImageFilterView_round 5
+int styleable ImageFilterView_roundPercent 6
+int styleable ImageFilterView_saturation 7
+int styleable ImageFilterView_warmth 8
+int[] styleable Insets { 0x7f0402c9, 0x7f0402ca, 0x7f0402cb, 0x7f040354, 0x7f040356, 0x7f040357, 0x7f040359, 0x7f04035b }
+int styleable Insets_marginLeftSystemWindowInsets 0
+int styleable Insets_marginRightSystemWindowInsets 1
+int styleable Insets_marginTopSystemWindowInsets 2
+int styleable Insets_paddingBottomSystemWindowInsets 3
+int styleable Insets_paddingLeftSystemWindowInsets 4
+int styleable Insets_paddingRightSystemWindowInsets 5
+int styleable Insets_paddingStartSystemWindowInsets 6
+int styleable Insets_paddingTopSystemWindowInsets 7
+int[] styleable KeyAttribute { 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f040154, 0x7f04020d, 0x7f040335, 0x7f040337, 0x7f0404b5, 0x7f0404b7 }
+int styleable KeyAttribute_android_alpha 0
+int styleable KeyAttribute_android_transformPivotX 1
+int styleable KeyAttribute_android_transformPivotY 2
+int styleable KeyAttribute_android_translationX 3
+int styleable KeyAttribute_android_translationY 4
+int styleable KeyAttribute_android_scaleX 5
+int styleable KeyAttribute_android_scaleY 6
+int styleable KeyAttribute_android_rotation 7
+int styleable KeyAttribute_android_rotationX 8
+int styleable KeyAttribute_android_rotationY 9
+int styleable KeyAttribute_android_translationZ 10
+int styleable KeyAttribute_android_elevation 11
+int styleable KeyAttribute_curveFit 12
+int styleable KeyAttribute_framePosition 13
+int styleable KeyAttribute_motionProgress 14
+int styleable KeyAttribute_motionTarget 15
+int styleable KeyAttribute_transitionEasing 16
+int styleable KeyAttribute_transitionPathRotate 17
+int[] styleable KeyCycle { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f040154, 0x7f04020d, 0x7f040335, 0x7f040337, 0x7f0404b5, 0x7f0404b7, 0x7f0404ca, 0x7f0404cb, 0x7f0404cc, 0x7f0404cd }
+int styleable KeyCycle_android_alpha 0
+int styleable KeyCycle_android_translationX 1
+int styleable KeyCycle_android_translationY 2
+int styleable KeyCycle_android_scaleX 3
+int styleable KeyCycle_android_scaleY 4
+int styleable KeyCycle_android_rotation 5
+int styleable KeyCycle_android_rotationX 6
+int styleable KeyCycle_android_rotationY 7
+int styleable KeyCycle_android_translationZ 8
+int styleable KeyCycle_android_elevation 9
+int styleable KeyCycle_curveFit 10
+int styleable KeyCycle_framePosition 11
+int styleable KeyCycle_motionProgress 12
+int styleable KeyCycle_motionTarget 13
+int styleable KeyCycle_transitionEasing 14
+int styleable KeyCycle_transitionPathRotate 15
+int styleable KeyCycle_waveOffset 16
+int styleable KeyCycle_wavePeriod 17
+int styleable KeyCycle_waveShape 18
+int styleable KeyCycle_waveVariesBy 19
+int[] styleable KeyFrame { }
+int[] styleable KeyFramesAcceleration { }
+int[] styleable KeyFramesVelocity { }
+int[] styleable KeyPosition { 0x7f040154, 0x7f040181, 0x7f04020d, 0x7f040262, 0x7f040337, 0x7f040364, 0x7f040366, 0x7f040367, 0x7f040368, 0x7f040369, 0x7f0403dd, 0x7f0404b5 }
+int styleable KeyPosition_curveFit 0
+int styleable KeyPosition_drawPath 1
+int styleable KeyPosition_framePosition 2
+int styleable KeyPosition_keyPositionType 3
+int styleable KeyPosition_motionTarget 4
+int styleable KeyPosition_pathMotionArc 5
+int styleable KeyPosition_percentHeight 6
+int styleable KeyPosition_percentWidth 7
+int styleable KeyPosition_percentX 8
+int styleable KeyPosition_percentY 9
+int styleable KeyPosition_sizePercent 10
+int styleable KeyPosition_transitionEasing 11
+int[] styleable KeyTimeCycle { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f040154, 0x7f04020d, 0x7f040335, 0x7f040337, 0x7f0404b5, 0x7f0404b7, 0x7f0404c9, 0x7f0404ca, 0x7f0404cb, 0x7f0404cc }
+int styleable KeyTimeCycle_android_alpha 0
+int styleable KeyTimeCycle_android_translationX 1
+int styleable KeyTimeCycle_android_translationY 2
+int styleable KeyTimeCycle_android_scaleX 3
+int styleable KeyTimeCycle_android_scaleY 4
+int styleable KeyTimeCycle_android_rotation 5
+int styleable KeyTimeCycle_android_rotationX 6
+int styleable KeyTimeCycle_android_rotationY 7
+int styleable KeyTimeCycle_android_translationZ 8
+int styleable KeyTimeCycle_android_elevation 9
+int styleable KeyTimeCycle_curveFit 10
+int styleable KeyTimeCycle_framePosition 11
+int styleable KeyTimeCycle_motionProgress 12
+int styleable KeyTimeCycle_motionTarget 13
+int styleable KeyTimeCycle_transitionEasing 14
+int styleable KeyTimeCycle_transitionPathRotate 15
+int styleable KeyTimeCycle_waveDecay 16
+int styleable KeyTimeCycle_waveOffset 17
+int styleable KeyTimeCycle_wavePeriod 18
+int styleable KeyTimeCycle_waveShape 19
+int[] styleable KeyTrigger { 0x7f04020d, 0x7f040337, 0x7f040338, 0x7f040339, 0x7f040349, 0x7f04034b, 0x7f04034c, 0x7f0404b9, 0x7f0404ba, 0x7f0404bb }
+int styleable KeyTrigger_framePosition 0
+int styleable KeyTrigger_motionTarget 1
+int styleable KeyTrigger_motion_postLayoutCollision 2
+int styleable KeyTrigger_motion_triggerOnCollision 3
+int styleable KeyTrigger_onCross 4
+int styleable KeyTrigger_onNegativeCross 5
+int styleable KeyTrigger_onPositiveCross 6
+int styleable KeyTrigger_triggerId 7
+int styleable KeyTrigger_triggerReceiver 8
+int styleable KeyTrigger_triggerSlack 9
+int[] styleable Layout { 0x010100c4, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x010103b5, 0x010103b6, 0x7f040067, 0x7f040068, 0x7f040069, 0x7f0400a5, 0x7f040129, 0x7f040275, 0x7f040276, 0x7f040277, 0x7f040278, 0x7f040279, 0x7f04027a, 0x7f04027b, 0x7f04027c, 0x7f04027d, 0x7f04027e, 0x7f04027f, 0x7f040280, 0x7f040281, 0x7f040282, 0x7f040283, 0x7f040284, 0x7f040285, 0x7f040286, 0x7f040287, 0x7f040288, 0x7f040289, 0x7f04028a, 0x7f04028b, 0x7f04028c, 0x7f04028d, 0x7f04028e, 0x7f04028f, 0x7f040290, 0x7f040291, 0x7f040292, 0x7f040293, 0x7f040295, 0x7f040296, 0x7f040297, 0x7f040298, 0x7f040299, 0x7f04029a, 0x7f04029b, 0x7f04029c, 0x7f04029d, 0x7f04029e, 0x7f0402a0, 0x7f0402a1, 0x7f0402a2, 0x7f0402a3, 0x7f0402a4, 0x7f0402a5, 0x7f0402a6, 0x7f0402a7, 0x7f0402ff, 0x7f040304, 0x7f04030a, 0x7f04030e }
+int styleable Layout_android_orientation 0
+int styleable Layout_android_layout_width 1
+int styleable Layout_android_layout_height 2
+int styleable Layout_android_layout_marginLeft 3
+int styleable Layout_android_layout_marginTop 4
+int styleable Layout_android_layout_marginRight 5
+int styleable Layout_android_layout_marginBottom 6
+int styleable Layout_android_layout_marginStart 7
+int styleable Layout_android_layout_marginEnd 8
+int styleable Layout_barrierAllowsGoneWidgets 9
+int styleable Layout_barrierDirection 10
+int styleable Layout_barrierMargin 11
+int styleable Layout_chainUseRtl 12
+int styleable Layout_constraint_referenced_ids 13
+int styleable Layout_layout_constrainedHeight 14
+int styleable Layout_layout_constrainedWidth 15
+int styleable Layout_layout_constraintBaseline_creator 16
+int styleable Layout_layout_constraintBaseline_toBaselineOf 17
+int styleable Layout_layout_constraintBottom_creator 18
+int styleable Layout_layout_constraintBottom_toBottomOf 19
+int styleable Layout_layout_constraintBottom_toTopOf 20
+int styleable Layout_layout_constraintCircle 21
+int styleable Layout_layout_constraintCircleAngle 22
+int styleable Layout_layout_constraintCircleRadius 23
+int styleable Layout_layout_constraintDimensionRatio 24
+int styleable Layout_layout_constraintEnd_toEndOf 25
+int styleable Layout_layout_constraintEnd_toStartOf 26
+int styleable Layout_layout_constraintGuide_begin 27
+int styleable Layout_layout_constraintGuide_end 28
+int styleable Layout_layout_constraintGuide_percent 29
+int styleable Layout_layout_constraintHeight_default 30
+int styleable Layout_layout_constraintHeight_max 31
+int styleable Layout_layout_constraintHeight_min 32
+int styleable Layout_layout_constraintHeight_percent 33
+int styleable Layout_layout_constraintHorizontal_bias 34
+int styleable Layout_layout_constraintHorizontal_chainStyle 35
+int styleable Layout_layout_constraintHorizontal_weight 36
+int styleable Layout_layout_constraintLeft_creator 37
+int styleable Layout_layout_constraintLeft_toLeftOf 38
+int styleable Layout_layout_constraintLeft_toRightOf 39
+int styleable Layout_layout_constraintRight_creator 40
+int styleable Layout_layout_constraintRight_toLeftOf 41
+int styleable Layout_layout_constraintRight_toRightOf 42
+int styleable Layout_layout_constraintStart_toEndOf 43
+int styleable Layout_layout_constraintStart_toStartOf 44
+int styleable Layout_layout_constraintTop_creator 45
+int styleable Layout_layout_constraintTop_toBottomOf 46
+int styleable Layout_layout_constraintTop_toTopOf 47
+int styleable Layout_layout_constraintVertical_bias 48
+int styleable Layout_layout_constraintVertical_chainStyle 49
+int styleable Layout_layout_constraintVertical_weight 50
+int styleable Layout_layout_constraintWidth_default 51
+int styleable Layout_layout_constraintWidth_max 52
+int styleable Layout_layout_constraintWidth_min 53
+int styleable Layout_layout_constraintWidth_percent 54
+int styleable Layout_layout_editor_absoluteX 55
+int styleable Layout_layout_editor_absoluteY 56
+int styleable Layout_layout_goneMarginBottom 57
+int styleable Layout_layout_goneMarginEnd 58
+int styleable Layout_layout_goneMarginLeft 59
+int styleable Layout_layout_goneMarginRight 60
+int styleable Layout_layout_goneMarginStart 61
+int styleable Layout_layout_goneMarginTop 62
+int styleable Layout_maxHeight 63
+int styleable Layout_maxWidth 64
+int styleable Layout_minHeight 65
+int styleable Layout_minWidth 66
+int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f040176, 0x7f04017b, 0x7f040305, 0x7f0403cb }
+int styleable LinearLayoutCompat_android_gravity 0
+int styleable LinearLayoutCompat_android_orientation 1
+int styleable LinearLayoutCompat_android_baselineAligned 2
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 6
+int styleable LinearLayoutCompat_measureWithLargestChild 7
+int styleable LinearLayoutCompat_showDividers 8
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_width 1
+int styleable LinearLayoutCompat_Layout_android_layout_height 2
+int styleable LinearLayoutCompat_Layout_android_layout_weight 3
+int[] styleable LinearProgressIndicator { 0x7f040234, 0x7f040238 }
+int styleable LinearProgressIndicator_indeterminateAnimationType 0
+int styleable LinearProgressIndicator_indicatorDirectionLinear 1
+int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
+int styleable ListPopupWindow_android_dropDownVerticalOffset 1
+int[] styleable ListPreference { 0x010100b2, 0x010101f8, 0x7f0401ab, 0x7f0401ac, 0x7f0404c1 }
+int styleable ListPreference_android_entries 0
+int styleable ListPreference_android_entryValues 1
+int styleable ListPreference_entries 2
+int styleable ListPreference_entryValues 3
+int styleable ListPreference_useSimpleSummaryProvider 4
+int[] styleable LoadingImageView { 0x7f0400ca, 0x7f040231, 0x7f040232 }
+int styleable LoadingImageView_circleCrop 0
+int styleable LoadingImageView_imageAspectRatio 1
+int styleable LoadingImageView_imageAspectRatioAdjust 2
+int[] styleable MaterialAlertDialog { 0x7f04004c, 0x7f04004d, 0x7f04004e, 0x7f04004f, 0x7f040053 }
+int styleable MaterialAlertDialog_backgroundInsetBottom 0
+int styleable MaterialAlertDialog_backgroundInsetEnd 1
+int styleable MaterialAlertDialog_backgroundInsetStart 2
+int styleable MaterialAlertDialog_backgroundInsetTop 3
+int styleable MaterialAlertDialog_backgroundTint 4
+int[] styleable MaterialAlertDialogTheme { 0x7f0402cc, 0x7f0402cd, 0x7f0402ce, 0x7f0402cf, 0x7f0402d0, 0x7f0402d1 }
+int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0
+int styleable MaterialAlertDialogTheme_materialAlertDialogButtonSpacerVisibility 1
+int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 2
+int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 3
+int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 4
+int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 5
+int[] styleable MaterialAutoCompleteTextView { 0x01010220, 0x0101048c, 0x7f04018e, 0x7f0403d4, 0x7f0403d5, 0x7f0403d6, 0x7f0403d7 }
+int styleable MaterialAutoCompleteTextView_android_inputType 0
+int styleable MaterialAutoCompleteTextView_android_popupElevation 1
+int styleable MaterialAutoCompleteTextView_dropDownBackgroundTint 2
+int styleable MaterialAutoCompleteTextView_simpleItemLayout 3
+int styleable MaterialAutoCompleteTextView_simpleItemSelectedColor 4
+int styleable MaterialAutoCompleteTextView_simpleItemSelectedRippleColor 5
+int styleable MaterialAutoCompleteTextView_simpleItems 6
+int[] styleable MaterialButton { 0x010100d4, 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x010101e5, 0x7f040053, 0x7f040054, 0x7f040144, 0x7f040198, 0x7f040227, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022e, 0x7f04022f, 0x7f0403a4, 0x7f0403ba, 0x7f0403c2, 0x7f040401, 0x7f040402, 0x7f04049b }
+int styleable MaterialButton_android_background 0
+int styleable MaterialButton_android_insetLeft 1
+int styleable MaterialButton_android_insetRight 2
+int styleable MaterialButton_android_insetTop 3
+int styleable MaterialButton_android_insetBottom 4
+int styleable MaterialButton_android_checkable 5
+int styleable MaterialButton_backgroundTint 6
+int styleable MaterialButton_backgroundTintMode 7
+int styleable MaterialButton_cornerRadius 8
+int styleable MaterialButton_elevation 9
+int styleable MaterialButton_icon 10
+int styleable MaterialButton_iconGravity 11
+int styleable MaterialButton_iconPadding 12
+int styleable MaterialButton_iconSize 13
+int styleable MaterialButton_iconTint 14
+int styleable MaterialButton_iconTintMode 15
+int styleable MaterialButton_rippleColor 16
+int styleable MaterialButton_shapeAppearance 17
+int styleable MaterialButton_shapeAppearanceOverlay 18
+int styleable MaterialButton_strokeColor 19
+int styleable MaterialButton_strokeWidth 20
+int styleable MaterialButton_toggleCheckedStateOnClick 21
+int[] styleable MaterialButtonToggleGroup { 0x0101000e, 0x7f0400ab, 0x7f0403b8, 0x7f0403dc }
+int styleable MaterialButtonToggleGroup_android_enabled 0
+int styleable MaterialButtonToggleGroup_checkedButton 1
+int styleable MaterialButtonToggleGroup_selectionRequired 2
+int styleable MaterialButtonToggleGroup_singleSelection 3
+int[] styleable MaterialCalendar { 0x0101020d, 0x7f040053, 0x7f04015e, 0x7f04015f, 0x7f040160, 0x7f040161, 0x7f040345, 0x7f040399, 0x7f0404d9, 0x7f0404da, 0x7f0404db }
+int styleable MaterialCalendar_android_windowFullscreen 0
+int styleable MaterialCalendar_backgroundTint 1
+int styleable MaterialCalendar_dayInvalidStyle 2
+int styleable MaterialCalendar_daySelectedStyle 3
+int styleable MaterialCalendar_dayStyle 4
+int styleable MaterialCalendar_dayTodayStyle 5
+int styleable MaterialCalendar_nestedScrollable 6
+int styleable MaterialCalendar_rangeFillColor 7
+int styleable MaterialCalendar_yearSelectedStyle 8
+int styleable MaterialCalendar_yearStyle 9
+int styleable MaterialCalendar_yearTodayStyle 10
+int[] styleable MaterialCalendarItem { 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f040245, 0x7f040251, 0x7f040252, 0x7f040259, 0x7f04025a, 0x7f04025f }
+int styleable MaterialCalendarItem_android_insetLeft 0
+int styleable MaterialCalendarItem_android_insetRight 1
+int styleable MaterialCalendarItem_android_insetTop 2
+int styleable MaterialCalendarItem_android_insetBottom 3
+int styleable MaterialCalendarItem_itemFillColor 4
+int styleable MaterialCalendarItem_itemShapeAppearance 5
+int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6
+int styleable MaterialCalendarItem_itemStrokeColor 7
+int styleable MaterialCalendarItem_itemStrokeWidth 8
+int styleable MaterialCalendarItem_itemTextColor 9
+int[] styleable MaterialCardView { 0x010101e5, 0x7f04009e, 0x7f0400ad, 0x7f0400af, 0x7f0400b0, 0x7f0400b1, 0x7f0400b2, 0x7f0403a4, 0x7f0403ba, 0x7f0403c2, 0x7f0403f8, 0x7f040401, 0x7f040402 }
+int styleable MaterialCardView_android_checkable 0
+int styleable MaterialCardView_cardForegroundColor 1
+int styleable MaterialCardView_checkedIcon 2
+int styleable MaterialCardView_checkedIconGravity 3
+int styleable MaterialCardView_checkedIconMargin 4
+int styleable MaterialCardView_checkedIconSize 5
+int styleable MaterialCardView_checkedIconTint 6
+int styleable MaterialCardView_rippleColor 7
+int styleable MaterialCardView_shapeAppearance 8
+int styleable MaterialCardView_shapeAppearanceOverlay 9
+int styleable MaterialCardView_state_dragged 10
+int styleable MaterialCardView_strokeColor 11
+int styleable MaterialCardView_strokeWidth 12
+int[] styleable MaterialCheckBox { 0x01010107, 0x7f04008f, 0x7f040091, 0x7f040093, 0x7f040094, 0x7f040099, 0x7f0400a4, 0x7f0400b4, 0x7f0401ad, 0x7f0401b4, 0x7f0404c0 }
+int styleable MaterialCheckBox_android_button 0
+int styleable MaterialCheckBox_buttonCompat 1
+int styleable MaterialCheckBox_buttonIcon 2
+int styleable MaterialCheckBox_buttonIconTint 3
+int styleable MaterialCheckBox_buttonIconTintMode 4
+int styleable MaterialCheckBox_buttonTint 5
+int styleable MaterialCheckBox_centerIfNoTextEnabled 6
+int styleable MaterialCheckBox_checkedState 7
+int styleable MaterialCheckBox_errorAccessibilityLabel 8
+int styleable MaterialCheckBox_errorShown 9
+int styleable MaterialCheckBox_useMaterialThemeColors 10
+int[] styleable MaterialCheckBoxStates { 0x7f0403f9, 0x7f0403fa }
+int styleable MaterialCheckBoxStates_state_error 0
+int styleable MaterialCheckBoxStates_state_indeterminate 1
+int[] styleable MaterialDivider { 0x7f040177, 0x7f040179, 0x7f04017a, 0x7f04017c, 0x7f04026b }
+int styleable MaterialDivider_dividerColor 0
+int styleable MaterialDivider_dividerInsetEnd 1
+int styleable MaterialDivider_dividerInsetStart 2
+int styleable MaterialDivider_dividerThickness 3
+int styleable MaterialDivider_lastItemDecorated 4
+int[] styleable MaterialRadioButton { 0x7f040099, 0x7f0404c0 }
+int styleable MaterialRadioButton_buttonTint 0
+int styleable MaterialRadioButton_useMaterialThemeColors 1
+int[] styleable MaterialShape { 0x7f0403ba, 0x7f0403c2 }
+int styleable MaterialShape_shapeAppearance 0
+int styleable MaterialShape_shapeAppearanceOverlay 1
+int[] styleable MaterialSwitch { 0x7f040476, 0x7f040477, 0x7f040478, 0x7f040479, 0x7f0404ad, 0x7f0404ae, 0x7f0404af }
+int styleable MaterialSwitch_thumbIcon 0
+int styleable MaterialSwitch_thumbIconSize 1
+int styleable MaterialSwitch_thumbIconTint 2
+int styleable MaterialSwitch_thumbIconTintMode 3
+int styleable MaterialSwitch_trackDecoration 4
+int styleable MaterialSwitch_trackDecorationTint 5
+int styleable MaterialSwitch_trackDecorationTintMode 6
+int[] styleable MaterialTextAppearance { 0x010104b6, 0x0101057f, 0x7f0402b2 }
+int styleable MaterialTextAppearance_android_letterSpacing 0
+int styleable MaterialTextAppearance_android_lineHeight 1
+int styleable MaterialTextAppearance_lineHeight 2
+int[] styleable MaterialTextView { 0x01010034, 0x0101057f, 0x7f0402b2 }
+int styleable MaterialTextView_android_textAppearance 0
+int styleable MaterialTextView_android_lineHeight 1
+int styleable MaterialTextView_lineHeight 2
+int[] styleable MaterialTimePicker { 0x7f040053, 0x7f0400d1, 0x7f040263 }
+int styleable MaterialTimePicker_backgroundTint 0
+int styleable MaterialTimePicker_clockIcon 1
+int styleable MaterialTimePicker_keyboardIcon 2
+int[] styleable MaterialToolbar { 0x7f0402c5, 0x7f0402c7, 0x7f04033e, 0x7f04040a, 0x7f04048d }
+int styleable MaterialToolbar_logoAdjustViewBounds 0
+int styleable MaterialToolbar_logoScaleType 1
+int styleable MaterialToolbar_navigationIconTint 2
+int styleable MaterialToolbar_subtitleCentered 3
+int styleable MaterialToolbar_titleCentered 4
+int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
+int styleable MenuGroup_android_enabled 0
+int styleable MenuGroup_android_id 1
+int styleable MenuGroup_android_visible 2
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_checkableBehavior 5
+int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f04000d, 0x7f040021, 0x7f040023, 0x7f040033, 0x7f04012c, 0x7f04022e, 0x7f04022f, 0x7f040347, 0x7f0403c9, 0x7f0404a3 }
+int styleable MenuItem_android_icon 0
+int styleable MenuItem_android_enabled 1
+int styleable MenuItem_android_id 2
+int styleable MenuItem_android_checked 3
+int styleable MenuItem_android_visible 4
+int styleable MenuItem_android_menuCategory 5
+int styleable MenuItem_android_orderInCategory 6
+int styleable MenuItem_android_title 7
+int styleable MenuItem_android_titleCondensed 8
+int styleable MenuItem_android_alphabeticShortcut 9
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_checkable 11
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_actionLayout 13
+int styleable MenuItem_actionProviderClass 14
+int styleable MenuItem_actionViewClass 15
+int styleable MenuItem_alphabeticModifiers 16
+int styleable MenuItem_contentDescription 17
+int styleable MenuItem_iconTint 18
+int styleable MenuItem_iconTintMode 19
+int styleable MenuItem_numericModifiers 20
+int styleable MenuItem_showAsAction 21
+int styleable MenuItem_tooltipText 22
+int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f040390, 0x7f040403 }
+int styleable MenuView_android_windowAnimationStyle 0
+int styleable MenuView_android_itemTextAppearance 1
+int styleable MenuView_android_horizontalDivider 2
+int styleable MenuView_android_verticalDivider 3
+int styleable MenuView_android_headerBackground 4
+int styleable MenuView_android_itemBackground 5
+int styleable MenuView_android_itemIconDisabledAlpha 6
+int styleable MenuView_preserveIconSpacing 7
+int styleable MenuView_subMenuArrow 8
+int[] styleable MockView { 0x7f04030f, 0x7f040310, 0x7f040311, 0x7f040312, 0x7f040313, 0x7f040314 }
+int styleable MockView_mock_diagonalsColor 0
+int styleable MockView_mock_label 1
+int styleable MockView_mock_labelBackgroundColor 2
+int styleable MockView_mock_labelColor 3
+int styleable MockView_mock_showDiagonals 4
+int styleable MockView_mock_showLabel 5
+int[] styleable Motion { 0x7f040038, 0x7f040181, 0x7f040334, 0x7f040336, 0x7f040364, 0x7f0404b5 }
+int styleable Motion_animate_relativeTo 0
+int styleable Motion_drawPath 1
+int styleable Motion_motionPathRotate 2
+int styleable Motion_motionStagger 3
+int styleable Motion_pathMotionArc 4
+int styleable Motion_transitionEasing 5
+int[] styleable MotionHelper { 0x7f04034a, 0x7f04034d }
+int styleable MotionHelper_onHide 0
+int styleable MotionHelper_onShow 1
+int[] styleable MotionLayout { 0x7f04003b, 0x7f040151, 0x7f04026d, 0x7f040315, 0x7f040335, 0x7f0403cd }
+int styleable MotionLayout_applyMotionScene 0
+int styleable MotionLayout_currentState 1
+int styleable MotionLayout_layoutDescription 2
+int styleable MotionLayout_motionDebug 3
+int styleable MotionLayout_motionProgress 4
+int styleable MotionLayout_showPaths 5
+int[] styleable MotionScene { 0x7f040162, 0x7f04026e }
+int styleable MotionScene_defaultDuration 0
+int styleable MotionScene_layoutDuringTransition 1
+int[] styleable MotionTelltales { 0x7f04043c, 0x7f04043d, 0x7f04043e }
+int styleable MotionTelltales_telltales_tailColor 0
+int styleable MotionTelltales_telltales_tailScale 1
+int styleable MotionTelltales_telltales_velocityMode 2
+int[] styleable MultiSelectListPreference { 0x010100b2, 0x010101f8, 0x7f0401ab, 0x7f0401ac }
+int styleable MultiSelectListPreference_android_entries 0
+int styleable MultiSelectListPreference_android_entryValues 1
+int styleable MultiSelectListPreference_entries 2
+int styleable MultiSelectListPreference_entryValues 3
+int[] styleable NavigationBarActiveIndicator { 0x01010155, 0x01010159, 0x010101a5, 0x7f0402c8, 0x7f0403ba }
+int styleable NavigationBarActiveIndicator_android_height 0
+int styleable NavigationBarActiveIndicator_android_width 1
+int styleable NavigationBarActiveIndicator_android_color 2
+int styleable NavigationBarActiveIndicator_marginHorizontal 3
+int styleable NavigationBarActiveIndicator_shapeAppearance 4
+int[] styleable NavigationBarView { 0x7f040024, 0x7f040053, 0x7f040198, 0x7f040243, 0x7f040244, 0x7f040249, 0x7f04024a, 0x7f04024e, 0x7f04024f, 0x7f040250, 0x7f04025c, 0x7f04025d, 0x7f04025e, 0x7f04025f, 0x7f040268, 0x7f040306 }
+int styleable NavigationBarView_activeIndicatorLabelPadding 0
+int styleable NavigationBarView_backgroundTint 1
+int styleable NavigationBarView_elevation 2
+int styleable NavigationBarView_itemActiveIndicatorStyle 3
+int styleable NavigationBarView_itemBackground 4
+int styleable NavigationBarView_itemIconSize 5
+int styleable NavigationBarView_itemIconTint 6
+int styleable NavigationBarView_itemPaddingBottom 7
+int styleable NavigationBarView_itemPaddingTop 8
+int styleable NavigationBarView_itemRippleColor 9
+int styleable NavigationBarView_itemTextAppearanceActive 10
+int styleable NavigationBarView_itemTextAppearanceActiveBoldEnabled 11
+int styleable NavigationBarView_itemTextAppearanceInactive 12
+int styleable NavigationBarView_itemTextColor 13
+int styleable NavigationBarView_labelVisibilityMode 14
+int styleable NavigationBarView_menu 15
+int[] styleable NavigationRailView { 0x7f040213, 0x7f04024c, 0x7f040308, 0x7f040354, 0x7f040359, 0x7f04035b, 0x7f0403ba, 0x7f0403c2 }
+int styleable NavigationRailView_headerLayout 0
+int styleable NavigationRailView_itemMinHeight 1
+int styleable NavigationRailView_menuGravity 2
+int styleable NavigationRailView_paddingBottomSystemWindowInsets 3
+int styleable NavigationRailView_paddingStartSystemWindowInsets 4
+int styleable NavigationRailView_paddingTopSystemWindowInsets 5
+int styleable NavigationRailView_shapeAppearance 6
+int styleable NavigationRailView_shapeAppearanceOverlay 7
+int[] styleable NavigationView { 0x010100b3, 0x010100d4, 0x010100dd, 0x0101011f, 0x7f040079, 0x7f040179, 0x7f04017a, 0x7f04018c, 0x7f040198, 0x7f040213, 0x7f040244, 0x7f040246, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024b, 0x7f040250, 0x7f040251, 0x7f040252, 0x7f040253, 0x7f040254, 0x7f040255, 0x7f040256, 0x7f040257, 0x7f04025b, 0x7f04025d, 0x7f04025f, 0x7f040260, 0x7f040306, 0x7f0403ba, 0x7f0403c2, 0x7f040404, 0x7f040405, 0x7f040406, 0x7f040407, 0x7f0404a4 }
+int styleable NavigationView_android_layout_gravity 0
+int styleable NavigationView_android_background 1
+int styleable NavigationView_android_fitsSystemWindows 2
+int styleable NavigationView_android_maxWidth 3
+int styleable NavigationView_bottomInsetScrimEnabled 4
+int styleable NavigationView_dividerInsetEnd 5
+int styleable NavigationView_dividerInsetStart 6
+int styleable NavigationView_drawerLayoutCornerSize 7
+int styleable NavigationView_elevation 8
+int styleable NavigationView_headerLayout 9
+int styleable NavigationView_itemBackground 10
+int styleable NavigationView_itemHorizontalPadding 11
+int styleable NavigationView_itemIconPadding 12
+int styleable NavigationView_itemIconSize 13
+int styleable NavigationView_itemIconTint 14
+int styleable NavigationView_itemMaxLines 15
+int styleable NavigationView_itemRippleColor 16
+int styleable NavigationView_itemShapeAppearance 17
+int styleable NavigationView_itemShapeAppearanceOverlay 18
+int styleable NavigationView_itemShapeFillColor 19
+int styleable NavigationView_itemShapeInsetBottom 20
+int styleable NavigationView_itemShapeInsetEnd 21
+int styleable NavigationView_itemShapeInsetStart 22
+int styleable NavigationView_itemShapeInsetTop 23
+int styleable NavigationView_itemTextAppearance 24
+int styleable NavigationView_itemTextAppearanceActiveBoldEnabled 25
+int styleable NavigationView_itemTextColor 26
+int styleable NavigationView_itemVerticalPadding 27
+int styleable NavigationView_menu 28
+int styleable NavigationView_shapeAppearance 29
+int styleable NavigationView_shapeAppearanceOverlay 30
+int styleable NavigationView_subheaderColor 31
+int styleable NavigationView_subheaderInsetEnd 32
+int styleable NavigationView_subheaderInsetStart 33
+int styleable NavigationView_subheaderTextAppearance 34
+int styleable NavigationView_topInsetScrimEnabled 35
+int[] styleable OnClick { 0x7f0400ce, 0x7f04043b }
+int styleable OnClick_clickAction 0
+int styleable OnClick_targetId 1
+int[] styleable OnSwipe { 0x7f04017e, 0x7f04017f, 0x7f040180, 0x7f0402b1, 0x7f0402fb, 0x7f040303, 0x7f04033a, 0x7f040343, 0x7f04034e, 0x7f0404a5, 0x7f0404a6, 0x7f0404a7 }
+int styleable OnSwipe_dragDirection 0
+int styleable OnSwipe_dragScale 1
+int styleable OnSwipe_dragThreshold 2
+int styleable OnSwipe_limitBoundsTo 3
+int styleable OnSwipe_maxAcceleration 4
+int styleable OnSwipe_maxVelocity 5
+int styleable OnSwipe_moveWhenScrollAtTop 6
+int styleable OnSwipe_nestedScrollFlags 7
+int styleable OnSwipe_onTouchUp 8
+int styleable OnSwipe_touchAnchorId 9
+int styleable OnSwipe_touchAnchorSide 10
+int styleable OnSwipe_touchRegionId 11
+int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f040351 }
+int styleable PopupWindow_android_popupBackground 0
+int styleable PopupWindow_android_popupAnimationStyle 1
+int styleable PopupWindow_overlapAnchor 2
+int[] styleable PopupWindowBackgroundState { 0x7f0403f5 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable Preference { 0x01010002, 0x0101000d, 0x0101000e, 0x010100f2, 0x010101e1, 0x010101e6, 0x010101e8, 0x010101e9, 0x010101ea, 0x010101eb, 0x010101ec, 0x010101ed, 0x010101ee, 0x010102e3, 0x0101055c, 0x01010561, 0x7f04002e, 0x7f040030, 0x7f040167, 0x7f04016a, 0x7f04019d, 0x7f04019f, 0x7f04020c, 0x7f040227, 0x7f04022c, 0x7f040242, 0x7f040261, 0x7f04026c, 0x7f04034f, 0x7f04036b, 0x7f0403b5, 0x7f0403c6, 0x7f0403db, 0x7f040412, 0x7f04048c, 0x7f0404ce }
+int styleable Preference_android_icon 0
+int styleable Preference_android_persistent 1
+int styleable Preference_android_enabled 2
+int styleable Preference_android_layout 3
+int styleable Preference_android_title 4
+int styleable Preference_android_selectable 5
+int styleable Preference_android_key 6
+int styleable Preference_android_summary 7
+int styleable Preference_android_order 8
+int styleable Preference_android_widgetLayout 9
+int styleable Preference_android_dependency 10
+int styleable Preference_android_defaultValue 11
+int styleable Preference_android_shouldDisableView 12
+int styleable Preference_android_fragment 13
+int styleable Preference_android_singleLineTitle 14
+int styleable Preference_android_iconSpaceReserved 15
+int styleable Preference_allowDividerAbove 16
+int styleable Preference_allowDividerBelow 17
+int styleable Preference_defaultValue 18
+int styleable Preference_dependency 19
+int styleable Preference_enableCopying 20
+int styleable Preference_enabled 21
+int styleable Preference_fragment 22
+int styleable Preference_icon 23
+int styleable Preference_iconSpaceReserved 24
+int styleable Preference_isPreferenceVisible 25
+int styleable Preference_key 26
+int styleable Preference_layout 27
+int styleable Preference_order 28
+int styleable Preference_persistent 29
+int styleable Preference_selectable 30
+int styleable Preference_shouldDisableView 31
+int styleable Preference_singleLineTitle 32
+int styleable Preference_summary 33
+int styleable Preference_title 34
+int styleable Preference_widgetLayout 35
+int[] styleable PreferenceFragment { 0x010100f2, 0x01010129, 0x0101012a, 0x7f04002f }
+int styleable PreferenceFragment_android_layout 0
+int styleable PreferenceFragment_android_divider 1
+int styleable PreferenceFragment_android_dividerHeight 2
+int styleable PreferenceFragment_allowDividerAfterLastItem 3
+int[] styleable PreferenceFragmentCompat { 0x010100f2, 0x01010129, 0x0101012a, 0x7f04002f }
+int styleable PreferenceFragmentCompat_android_layout 0
+int styleable PreferenceFragmentCompat_android_divider 1
+int styleable PreferenceFragmentCompat_android_dividerHeight 2
+int styleable PreferenceFragmentCompat_allowDividerAfterLastItem 3
+int[] styleable PreferenceGroup { 0x010101e7, 0x7f04023c, 0x7f040350 }
+int styleable PreferenceGroup_android_orderingFromXml 0
+int styleable PreferenceGroup_initialExpandedChildrenCount 1
+int styleable PreferenceGroup_orderingFromXml 2
+int[] styleable PreferenceImageView { 0x0101011f, 0x01010120, 0x7f0402ff, 0x7f040304 }
+int styleable PreferenceImageView_android_maxWidth 0
+int styleable PreferenceImageView_android_maxHeight 1
+int styleable PreferenceImageView_maxHeight 2
+int styleable PreferenceImageView_maxWidth 3
+int[] styleable PreferenceTheme { 0x7f0400a6, 0x7f040170, 0x7f040191, 0x7f040196, 0x7f040383, 0x7f040384, 0x7f040385, 0x7f040386, 0x7f040387, 0x7f040388, 0x7f040389, 0x7f04038a, 0x7f04038b, 0x7f04038c, 0x7f0403b3, 0x7f040418, 0x7f040419 }
+int styleable PreferenceTheme_checkBoxPreferenceStyle 0
+int styleable PreferenceTheme_dialogPreferenceStyle 1
+int styleable PreferenceTheme_dropdownPreferenceStyle 2
+int styleable PreferenceTheme_editTextPreferenceStyle 3
+int styleable PreferenceTheme_preferenceCategoryStyle 4
+int styleable PreferenceTheme_preferenceCategoryTitleTextAppearance 5
+int styleable PreferenceTheme_preferenceCategoryTitleTextColor 6
+int styleable PreferenceTheme_preferenceFragmentCompatStyle 7
+int styleable PreferenceTheme_preferenceFragmentListStyle 8
+int styleable PreferenceTheme_preferenceFragmentStyle 9
+int styleable PreferenceTheme_preferenceInformationStyle 10
+int styleable PreferenceTheme_preferenceScreenStyle 11
+int styleable PreferenceTheme_preferenceStyle 12
+int styleable PreferenceTheme_preferenceTheme 13
+int styleable PreferenceTheme_seekBarPreferenceStyle 14
+int styleable PreferenceTheme_switchPreferenceCompatStyle 15
+int styleable PreferenceTheme_switchPreferenceStyle 16
+int[] styleable PropertySet { 0x010100dc, 0x0101031f, 0x7f040294, 0x7f040335, 0x7f0404c6 }
+int styleable PropertySet_android_visibility 0
+int styleable PropertySet_android_alpha 1
+int styleable PropertySet_layout_constraintTag 2
+int styleable PropertySet_motionProgress 3
+int styleable PropertySet_visibilityMode 4
+int[] styleable RadialViewGroup { 0x7f0402e8 }
+int styleable RadialViewGroup_materialCircleRadius 0
+int[] styleable RangeSlider { 0x7f04030c, 0x7f0404c2 }
+int styleable RangeSlider_minSeparation 0
+int styleable RangeSlider_values 1
+int[] styleable RecycleListView { 0x7f040353, 0x7f04035a }
+int styleable RecycleListView_paddingBottomNoButtons 0
+int styleable RecycleListView_paddingTopNoTitle 1
+int[] styleable RecyclerView { 0x010100c4, 0x010100eb, 0x010100f1, 0x7f0401d3, 0x7f0401d4, 0x7f0401d5, 0x7f0401d6, 0x7f0401d7, 0x7f04026f, 0x7f0403a3, 0x7f0403e2, 0x7f0403ec }
+int styleable RecyclerView_android_orientation 0
+int styleable RecyclerView_android_clipToPadding 1
+int styleable RecyclerView_android_descendantFocusability 2
+int styleable RecyclerView_fastScrollEnabled 3
+int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4
+int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5
+int styleable RecyclerView_fastScrollVerticalThumbDrawable 6
+int styleable RecyclerView_fastScrollVerticalTrackDrawable 7
+int styleable RecyclerView_layoutManager 8
+int styleable RecyclerView_reverseLayout 9
+int styleable RecyclerView_spanCount 10
+int styleable RecyclerView_stackFromEnd 11
+int[] styleable ScrimInsetsFrameLayout { 0x7f04023d }
+int styleable ScrimInsetsFrameLayout_insetForeground 0
+int[] styleable ScrollingViewBehavior_Layout { 0x7f040071 }
+int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0
+int[] styleable SearchBar { 0x01010034, 0x0101014f, 0x01010150, 0x7f040053, 0x7f040163, 0x7f040165, 0x7f040198, 0x7f04020a, 0x7f04021b, 0x7f04033e, 0x7f040401, 0x7f040402, 0x7f04048b }
+int styleable SearchBar_android_textAppearance 0
+int styleable SearchBar_android_text 1
+int styleable SearchBar_android_hint 2
+int styleable SearchBar_backgroundTint 3
+int styleable SearchBar_defaultMarginsEnabled 4
+int styleable SearchBar_defaultScrollFlagsEnabled 5
+int styleable SearchBar_elevation 6
+int styleable SearchBar_forceDefaultNavigationOnClickListener 7
+int styleable SearchBar_hideNavigationIcon 8
+int styleable SearchBar_navigationIconTint 9
+int styleable SearchBar_strokeColor 10
+int styleable SearchBar_strokeWidth 11
+int styleable SearchBar_tintNavigationIcon 12
+int[] styleable SearchView { 0x01010034, 0x010100da, 0x0101011f, 0x0101014f, 0x01010150, 0x01010220, 0x01010264, 0x7f040036, 0x7f040037, 0x7f040042, 0x7f040049, 0x7f040053, 0x7f0400d3, 0x7f040124, 0x7f040164, 0x7f040210, 0x7f040213, 0x7f04021b, 0x7f040230, 0x7f04026c, 0x7f040395, 0x7f040396, 0x7f0403ac, 0x7f0403ad, 0x7f0403ae, 0x7f040408, 0x7f040411, 0x7f0404bf, 0x7f0404c7 }
+int styleable SearchView_android_textAppearance 0
+int styleable SearchView_android_focusable 1
+int styleable SearchView_android_maxWidth 2
+int styleable SearchView_android_text 3
+int styleable SearchView_android_hint 4
+int styleable SearchView_android_inputType 5
+int styleable SearchView_android_imeOptions 6
+int styleable SearchView_animateMenuItems 7
+int styleable SearchView_animateNavigationIcon 8
+int styleable SearchView_autoShowKeyboard 9
+int styleable SearchView_backHandlingEnabled 10
+int styleable SearchView_backgroundTint 11
+int styleable SearchView_closeIcon 12
+int styleable SearchView_commitIcon 13
+int styleable SearchView_defaultQueryHint 14
+int styleable SearchView_goIcon 15
+int styleable SearchView_headerLayout 16
+int styleable SearchView_hideNavigationIcon 17
+int styleable SearchView_iconifiedByDefault 18
+int styleable SearchView_layout 19
+int styleable SearchView_queryBackground 20
+int styleable SearchView_queryHint 21
+int styleable SearchView_searchHintIcon 22
+int styleable SearchView_searchIcon 23
+int styleable SearchView_searchPrefixText 24
+int styleable SearchView_submitBackground 25
+int styleable SearchView_suggestionRowLayout 26
+int styleable SearchView_useDrawerArrowDrawable 27
+int styleable SearchView_voiceIcon 28
+int[] styleable SeekBarPreference { 0x010100f2, 0x01010136, 0x7f040029, 0x7f040309, 0x7f0403b2, 0x7f0403ce, 0x7f0404bd }
+int styleable SeekBarPreference_android_layout 0
+int styleable SeekBarPreference_android_max 1
+int styleable SeekBarPreference_adjustable 2
+int styleable SeekBarPreference_min 3
+int styleable SeekBarPreference_seekBarIncrement 4
+int styleable SeekBarPreference_showSeekBarValue 5
+int styleable SeekBarPreference_updatesContinuously 6
+int[] styleable ShapeAppearance { 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040142, 0x7f040143, 0x7f040145, 0x7f040146, 0x7f040147, 0x7f040148, 0x7f040149 }
+int styleable ShapeAppearance_cornerFamily 0
+int styleable ShapeAppearance_cornerFamilyBottomLeft 1
+int styleable ShapeAppearance_cornerFamilyBottomRight 2
+int styleable ShapeAppearance_cornerFamilyTopLeft 3
+int styleable ShapeAppearance_cornerFamilyTopRight 4
+int styleable ShapeAppearance_cornerSize 5
+int styleable ShapeAppearance_cornerSizeBottomLeft 6
+int styleable ShapeAppearance_cornerSizeBottomRight 7
+int styleable ShapeAppearance_cornerSizeTopLeft 8
+int styleable ShapeAppearance_cornerSizeTopRight 9
+int[] styleable ShapeableImageView { 0x7f040133, 0x7f040134, 0x7f040135, 0x7f040136, 0x7f040137, 0x7f040138, 0x7f040139, 0x7f0403ba, 0x7f0403c2, 0x7f040401, 0x7f040402 }
+int styleable ShapeableImageView_contentPadding 0
+int styleable ShapeableImageView_contentPaddingBottom 1
+int styleable ShapeableImageView_contentPaddingEnd 2
+int styleable ShapeableImageView_contentPaddingLeft 3
+int styleable ShapeableImageView_contentPaddingRight 4
+int styleable ShapeableImageView_contentPaddingStart 5
+int styleable ShapeableImageView_contentPaddingTop 6
+int styleable ShapeableImageView_shapeAppearance 7
+int styleable ShapeableImageView_shapeAppearanceOverlay 8
+int styleable ShapeableImageView_strokeColor 9
+int styleable ShapeableImageView_strokeWidth 10
+int[] styleable SideSheetBehavior_Layout { 0x0101011f, 0x01010120, 0x01010440, 0x7f040053, 0x7f04006c, 0x7f04013e, 0x7f0403ba, 0x7f0403c2 }
+int styleable SideSheetBehavior_Layout_android_maxWidth 0
+int styleable SideSheetBehavior_Layout_android_maxHeight 1
+int styleable SideSheetBehavior_Layout_android_elevation 2
+int styleable SideSheetBehavior_Layout_backgroundTint 3
+int styleable SideSheetBehavior_Layout_behavior_draggable 4
+int styleable SideSheetBehavior_Layout_coplanarSiblingViewId 5
+int styleable SideSheetBehavior_Layout_shapeAppearance 6
+int styleable SideSheetBehavior_Layout_shapeAppearanceOverlay 7
+int[] styleable SignInButton { 0x7f040096, 0x7f04010f, 0x7f0403a8 }
+int styleable SignInButton_buttonSize 0
+int styleable SignInButton_colorScheme 1
+int styleable SignInButton_scopeUris 2
+int[] styleable SimpleMenuPopup { 0x7f040377, 0x7f040378, 0x7f040379, 0x7f04037a, 0x7f04037b, 0x7f04037c, 0x7f04037d, 0x7f04037e, 0x7f04037f, 0x7f040380, 0x7f040382 }
+int styleable SimpleMenuPopup_pref_dialogElevation 0
+int styleable SimpleMenuPopup_pref_dialogItemPadding 1
+int styleable SimpleMenuPopup_pref_dialogMarginHorizontal 2
+int styleable SimpleMenuPopup_pref_dialogMarginVertical 3
+int styleable SimpleMenuPopup_pref_dialogMaxWidth 4
+int styleable SimpleMenuPopup_pref_listElevation 5
+int styleable SimpleMenuPopup_pref_listItemPadding 6
+int styleable SimpleMenuPopup_pref_listMarginHorizontal 7
+int styleable SimpleMenuPopup_pref_listMarginVertical 8
+int styleable SimpleMenuPopup_pref_maxUnits 9
+int styleable SimpleMenuPopup_pref_unit 10
+int[] styleable SimpleMenuPreference { 0x7f040381 }
+int styleable SimpleMenuPreference_pref_popupStyle 0
+int[] styleable Slider { 0x0101000e, 0x01010024, 0x01010146, 0x010102de, 0x010102df, 0x7f040211, 0x7f040212, 0x7f040266, 0x7f040267, 0x7f04030d, 0x7f040474, 0x7f040475, 0x7f04047a, 0x7f04047b, 0x7f04047c, 0x7f040480, 0x7f040481, 0x7f040482, 0x7f040486, 0x7f040487, 0x7f040488, 0x7f0404a9, 0x7f0404aa, 0x7f0404ab, 0x7f0404b0 }
+int styleable Slider_android_enabled 0
+int styleable Slider_android_value 1
+int styleable Slider_android_stepSize 2
+int styleable Slider_android_valueFrom 3
+int styleable Slider_android_valueTo 4
+int styleable Slider_haloColor 5
+int styleable Slider_haloRadius 6
+int styleable Slider_labelBehavior 7
+int styleable Slider_labelStyle 8
+int styleable Slider_minTouchTargetSize 9
+int styleable Slider_thumbColor 10
+int styleable Slider_thumbElevation 11
+int styleable Slider_thumbRadius 12
+int styleable Slider_thumbStrokeColor 13
+int styleable Slider_thumbStrokeWidth 14
+int styleable Slider_tickColor 15
+int styleable Slider_tickColorActive 16
+int styleable Slider_tickColorInactive 17
+int styleable Slider_tickRadiusActive 18
+int styleable Slider_tickRadiusInactive 19
+int styleable Slider_tickVisible 20
+int styleable Slider_trackColor 21
+int styleable Slider_trackColorActive 22
+int styleable Slider_trackColorInactive 23
+int styleable Slider_trackHeight 24
+int[] styleable Snackbar { 0x7f0403df, 0x7f0403e0, 0x7f0403e1 }
+int styleable Snackbar_snackbarButtonStyle 0
+int styleable Snackbar_snackbarStyle 1
+int styleable Snackbar_snackbarTextViewStyle 2
+int[] styleable SnackbarLayout { 0x0101011f, 0x7f040022, 0x7f040039, 0x7f040050, 0x7f040053, 0x7f040054, 0x7f040198, 0x7f0402fc, 0x7f0403ba, 0x7f0403c2 }
+int styleable SnackbarLayout_android_maxWidth 0
+int styleable SnackbarLayout_actionTextColorAlpha 1
+int styleable SnackbarLayout_animationMode 2
+int styleable SnackbarLayout_backgroundOverlayColorAlpha 3
+int styleable SnackbarLayout_backgroundTint 4
+int styleable SnackbarLayout_backgroundTintMode 5
+int styleable SnackbarLayout_elevation 6
+int styleable SnackbarLayout_maxActionInlineWidth 7
+int styleable SnackbarLayout_shapeAppearance 8
+int styleable SnackbarLayout_shapeAppearanceOverlay 9
+int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f040374 }
+int styleable Spinner_android_entries 0
+int styleable Spinner_android_popupBackground 1
+int styleable Spinner_android_prompt 2
+int styleable Spinner_android_dropDownWidth 3
+int styleable Spinner_popupTheme 4
+int[] styleable SplitPairFilter { 0x7f040392, 0x7f0403b0, 0x7f0403b1 }
+int styleable SplitPairFilter_primaryActivityName 0
+int styleable SplitPairFilter_secondaryActivityAction 1
+int styleable SplitPairFilter_secondaryActivityName 2
+int[] styleable SplitPairRule { 0x7f0400cd, 0x7f0401d8, 0x7f0401d9, 0x7f0403e6, 0x7f0403e7, 0x7f0403e8, 0x7f0403e9 }
+int styleable SplitPairRule_clearTop 0
+int styleable SplitPairRule_finishPrimaryWithSecondary 1
+int styleable SplitPairRule_finishSecondaryWithPrimary 2
+int styleable SplitPairRule_splitLayoutDirection 3
+int styleable SplitPairRule_splitMinSmallestWidth 4
+int styleable SplitPairRule_splitMinWidth 5
+int styleable SplitPairRule_splitRatio 6
+int[] styleable SplitPlaceholderRule { 0x7f04036d, 0x7f0403e6, 0x7f0403e7, 0x7f0403e8, 0x7f0403e9 }
+int styleable SplitPlaceholderRule_placeholderActivityName 0
+int styleable SplitPlaceholderRule_splitLayoutDirection 1
+int styleable SplitPlaceholderRule_splitMinSmallestWidth 2
+int styleable SplitPlaceholderRule_splitMinWidth 3
+int styleable SplitPlaceholderRule_splitRatio 4
+int[] styleable State { 0x010100d0, 0x7f04012a }
+int styleable State_android_id 0
+int styleable State_constraints 1
+int[] styleable StateListDrawable { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }
+int styleable StateListDrawable_android_dither 0
+int styleable StateListDrawable_android_visible 1
+int styleable StateListDrawable_android_variablePadding 2
+int styleable StateListDrawable_android_constantSize 3
+int styleable StateListDrawable_android_enterFadeDuration 4
+int styleable StateListDrawable_android_exitFadeDuration 5
+int[] styleable StateListDrawableItem { 0x01010199 }
+int styleable StateListDrawableItem_android_drawable 0
+int[] styleable StateSet { 0x7f040166 }
+int styleable StateSet_defaultState 0
+int[] styleable SwipeRefreshLayout { 0x7f040415 }
+int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0
+int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0403cf, 0x7f0403ea, 0x7f040416, 0x7f040417, 0x7f04041b, 0x7f04047d, 0x7f04047e, 0x7f04047f, 0x7f0404a8, 0x7f0404b2, 0x7f0404b3 }
+int styleable SwitchCompat_android_textOn 0
+int styleable SwitchCompat_android_textOff 1
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 3
+int styleable SwitchCompat_splitTrack 4
+int styleable SwitchCompat_switchMinWidth 5
+int styleable SwitchCompat_switchPadding 6
+int styleable SwitchCompat_switchTextAppearance 7
+int styleable SwitchCompat_thumbTextPadding 8
+int styleable SwitchCompat_thumbTint 9
+int styleable SwitchCompat_thumbTintMode 10
+int styleable SwitchCompat_track 11
+int styleable SwitchCompat_trackTint 12
+int styleable SwitchCompat_trackTintMode 13
+int[] styleable SwitchMaterial { 0x7f0404c0 }
+int styleable SwitchMaterial_useMaterialThemeColors 0
+int[] styleable SwitchPreference { 0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b, 0x0101036c, 0x7f040174, 0x7f040413, 0x7f040414, 0x7f04041c, 0x7f04041d }
+int styleable SwitchPreference_android_summaryOn 0
+int styleable SwitchPreference_android_summaryOff 1
+int styleable SwitchPreference_android_disableDependentsState 2
+int styleable SwitchPreference_android_switchTextOn 3
+int styleable SwitchPreference_android_switchTextOff 4
+int styleable SwitchPreference_disableDependentsState 5
+int styleable SwitchPreference_summaryOff 6
+int styleable SwitchPreference_summaryOn 7
+int styleable SwitchPreference_switchTextOff 8
+int styleable SwitchPreference_switchTextOn 9
+int[] styleable SwitchPreferenceCompat { 0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b, 0x0101036c, 0x7f040174, 0x7f040413, 0x7f040414, 0x7f04041c, 0x7f04041d }
+int styleable SwitchPreferenceCompat_android_summaryOn 0
+int styleable SwitchPreferenceCompat_android_summaryOff 1
+int styleable SwitchPreferenceCompat_android_disableDependentsState 2
+int styleable SwitchPreferenceCompat_android_switchTextOn 3
+int styleable SwitchPreferenceCompat_android_switchTextOff 4
+int styleable SwitchPreferenceCompat_disableDependentsState 5
+int styleable SwitchPreferenceCompat_summaryOff 6
+int styleable SwitchPreferenceCompat_summaryOn 7
+int styleable SwitchPreferenceCompat_switchTextOff 8
+int styleable SwitchPreferenceCompat_switchTextOn 9
+int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f }
+int styleable TabItem_android_icon 0
+int styleable TabItem_android_layout 1
+int styleable TabItem_android_text 2
+int[] styleable TabLayout { 0x7f04041e, 0x7f04041f, 0x7f040420, 0x7f040421, 0x7f040422, 0x7f040423, 0x7f040424, 0x7f040425, 0x7f040426, 0x7f040427, 0x7f040428, 0x7f040429, 0x7f04042a, 0x7f04042b, 0x7f04042c, 0x7f04042d, 0x7f04042e, 0x7f04042f, 0x7f040430, 0x7f040431, 0x7f040432, 0x7f040433, 0x7f040435, 0x7f040436, 0x7f040438, 0x7f040439, 0x7f04043a }
+int styleable TabLayout_tabBackground 0
+int styleable TabLayout_tabContentStart 1
+int styleable TabLayout_tabGravity 2
+int styleable TabLayout_tabIconTint 3
+int styleable TabLayout_tabIconTintMode 4
+int styleable TabLayout_tabIndicator 5
+int styleable TabLayout_tabIndicatorAnimationDuration 6
+int styleable TabLayout_tabIndicatorAnimationMode 7
+int styleable TabLayout_tabIndicatorColor 8
+int styleable TabLayout_tabIndicatorFullWidth 9
+int styleable TabLayout_tabIndicatorGravity 10
+int styleable TabLayout_tabIndicatorHeight 11
+int styleable TabLayout_tabInlineLabel 12
+int styleable TabLayout_tabMaxWidth 13
+int styleable TabLayout_tabMinWidth 14
+int styleable TabLayout_tabMode 15
+int styleable TabLayout_tabPadding 16
+int styleable TabLayout_tabPaddingBottom 17
+int styleable TabLayout_tabPaddingEnd 18
+int styleable TabLayout_tabPaddingStart 19
+int styleable TabLayout_tabPaddingTop 20
+int styleable TabLayout_tabRippleColor 21
+int styleable TabLayout_tabSelectedTextAppearance 22
+int styleable TabLayout_tabSelectedTextColor 23
+int styleable TabLayout_tabTextAppearance 24
+int styleable TabLayout_tabTextColor 25
+int styleable TabLayout_tabUnboundedRipple 26
+int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x01010585, 0x7f0401fe, 0x7f040207, 0x7f04043f, 0x7f040470 }
+int styleable TextAppearance_android_textSize 0
+int styleable TextAppearance_android_typeface 1
+int styleable TextAppearance_android_textStyle 2
+int styleable TextAppearance_android_textColor 3
+int styleable TextAppearance_android_textColorHint 4
+int styleable TextAppearance_android_textColorLink 5
+int styleable TextAppearance_android_shadowColor 6
+int styleable TextAppearance_android_shadowDx 7
+int styleable TextAppearance_android_shadowDy 8
+int styleable TextAppearance_android_shadowRadius 9
+int styleable TextAppearance_android_fontFamily 10
+int styleable TextAppearance_android_textFontWeight 11
+int styleable TextAppearance_fontFamily 12
+int styleable TextAppearance_fontVariationSettings 13
+int styleable TextAppearance_textAllCaps 14
+int styleable TextAppearance_textLocale 15
+int[] styleable TextInputEditText { 0x7f04046b }
+int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0
+int[] styleable TextInputLayout { 0x0101000e, 0x0101009a, 0x0101011f, 0x0101013f, 0x01010150, 0x01010157, 0x0101015a, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f040081, 0x7f040082, 0x7f040083, 0x7f040084, 0x7f040085, 0x7f040086, 0x7f040087, 0x7f040088, 0x7f04014a, 0x7f04014b, 0x7f04014c, 0x7f04014d, 0x7f04014e, 0x7f04014f, 0x7f040152, 0x7f040153, 0x7f0401a0, 0x7f0401a1, 0x7f0401a2, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f0401ae, 0x7f0401af, 0x7f0401b0, 0x7f0401b1, 0x7f0401b2, 0x7f0401b3, 0x7f0401b5, 0x7f0401b6, 0x7f0401b9, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f04035f, 0x7f040360, 0x7f040361, 0x7f040362, 0x7f040363, 0x7f04036e, 0x7f04036f, 0x7f040370, 0x7f04038d, 0x7f04038e, 0x7f04038f, 0x7f0403ba, 0x7f0403c2, 0x7f0403ee, 0x7f0403ef, 0x7f0403f0, 0x7f0403f1, 0x7f0403f2, 0x7f0403f3, 0x7f0403f4, 0x7f04040e, 0x7f04040f, 0x7f040410 }
+int styleable TextInputLayout_android_enabled 0
+int styleable TextInputLayout_android_textColorHint 1
+int styleable TextInputLayout_android_maxWidth 2
+int styleable TextInputLayout_android_minWidth 3
+int styleable TextInputLayout_android_hint 4
+int styleable TextInputLayout_android_maxEms 5
+int styleable TextInputLayout_android_minEms 6
+int styleable TextInputLayout_boxBackgroundColor 7
+int styleable TextInputLayout_boxBackgroundMode 8
+int styleable TextInputLayout_boxCollapsedPaddingTop 9
+int styleable TextInputLayout_boxCornerRadiusBottomEnd 10
+int styleable TextInputLayout_boxCornerRadiusBottomStart 11
+int styleable TextInputLayout_boxCornerRadiusTopEnd 12
+int styleable TextInputLayout_boxCornerRadiusTopStart 13
+int styleable TextInputLayout_boxStrokeColor 14
+int styleable TextInputLayout_boxStrokeErrorColor 15
+int styleable TextInputLayout_boxStrokeWidth 16
+int styleable TextInputLayout_boxStrokeWidthFocused 17
+int styleable TextInputLayout_counterEnabled 18
+int styleable TextInputLayout_counterMaxLength 19
+int styleable TextInputLayout_counterOverflowTextAppearance 20
+int styleable TextInputLayout_counterOverflowTextColor 21
+int styleable TextInputLayout_counterTextAppearance 22
+int styleable TextInputLayout_counterTextColor 23
+int styleable TextInputLayout_cursorColor 24
+int styleable TextInputLayout_cursorErrorColor 25
+int styleable TextInputLayout_endIconCheckable 26
+int styleable TextInputLayout_endIconContentDescription 27
+int styleable TextInputLayout_endIconDrawable 28
+int styleable TextInputLayout_endIconMinSize 29
+int styleable TextInputLayout_endIconMode 30
+int styleable TextInputLayout_endIconScaleType 31
+int styleable TextInputLayout_endIconTint 32
+int styleable TextInputLayout_endIconTintMode 33
+int styleable TextInputLayout_errorAccessibilityLiveRegion 34
+int styleable TextInputLayout_errorContentDescription 35
+int styleable TextInputLayout_errorEnabled 36
+int styleable TextInputLayout_errorIconDrawable 37
+int styleable TextInputLayout_errorIconTint 38
+int styleable TextInputLayout_errorIconTintMode 39
+int styleable TextInputLayout_errorTextAppearance 40
+int styleable TextInputLayout_errorTextColor 41
+int styleable TextInputLayout_expandedHintEnabled 42
+int styleable TextInputLayout_helperText 43
+int styleable TextInputLayout_helperTextEnabled 44
+int styleable TextInputLayout_helperTextTextAppearance 45
+int styleable TextInputLayout_helperTextTextColor 46
+int styleable TextInputLayout_hintAnimationEnabled 47
+int styleable TextInputLayout_hintEnabled 48
+int styleable TextInputLayout_hintTextAppearance 49
+int styleable TextInputLayout_hintTextColor 50
+int styleable TextInputLayout_passwordToggleContentDescription 51
+int styleable TextInputLayout_passwordToggleDrawable 52
+int styleable TextInputLayout_passwordToggleEnabled 53
+int styleable TextInputLayout_passwordToggleTint 54
+int styleable TextInputLayout_passwordToggleTintMode 55
+int styleable TextInputLayout_placeholderText 56
+int styleable TextInputLayout_placeholderTextAppearance 57
+int styleable TextInputLayout_placeholderTextColor 58
+int styleable TextInputLayout_prefixText 59
+int styleable TextInputLayout_prefixTextAppearance 60
+int styleable TextInputLayout_prefixTextColor 61
+int styleable TextInputLayout_shapeAppearance 62
+int styleable TextInputLayout_shapeAppearanceOverlay 63
+int styleable TextInputLayout_startIconCheckable 64
+int styleable TextInputLayout_startIconContentDescription 65
+int styleable TextInputLayout_startIconDrawable 66
+int styleable TextInputLayout_startIconMinSize 67
+int styleable TextInputLayout_startIconScaleType 68
+int styleable TextInputLayout_startIconTint 69
+int styleable TextInputLayout_startIconTintMode 70
+int styleable TextInputLayout_suffixText 71
+int styleable TextInputLayout_suffixTextAppearance 72
+int styleable TextInputLayout_suffixTextColor 73
+int[] styleable Theme { 0x7f0403d8 }
+int styleable Theme_simpleMenuPreferenceStyle 0
+int[] styleable ThemeEnforcement { 0x01010034, 0x7f0401a8, 0x7f0401a9 }
+int styleable ThemeEnforcement_android_textAppearance 0
+int styleable ThemeEnforcement_enforceMaterialTheme 1
+int styleable ThemeEnforcement_enforceTextAppearance 2
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f040090, 0x7f0400db, 0x7f0400dc, 0x7f04012d, 0x7f04012e, 0x7f04012f, 0x7f040130, 0x7f040131, 0x7f040132, 0x7f0402c4, 0x7f0402c6, 0x7f0402fd, 0x7f040306, 0x7f04033c, 0x7f04033d, 0x7f040374, 0x7f040409, 0x7f04040b, 0x7f04040c, 0x7f04048c, 0x7f040490, 0x7f040491, 0x7f040492, 0x7f040493, 0x7f040494, 0x7f040495, 0x7f040497, 0x7f040498 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_buttonGravity 2
+int styleable Toolbar_collapseContentDescription 3
+int styleable Toolbar_collapseIcon 4
+int styleable Toolbar_contentInsetEnd 5
+int styleable Toolbar_contentInsetEndWithActions 6
+int styleable Toolbar_contentInsetLeft 7
+int styleable Toolbar_contentInsetRight 8
+int styleable Toolbar_contentInsetStart 9
+int styleable Toolbar_contentInsetStartWithNavigation 10
+int styleable Toolbar_logo 11
+int styleable Toolbar_logoDescription 12
+int styleable Toolbar_maxButtonHeight 13
+int styleable Toolbar_menu 14
+int styleable Toolbar_navigationContentDescription 15
+int styleable Toolbar_navigationIcon 16
+int styleable Toolbar_popupTheme 17
+int styleable Toolbar_subtitle 18
+int styleable Toolbar_subtitleTextAppearance 19
+int styleable Toolbar_subtitleTextColor 20
+int styleable Toolbar_title 21
+int styleable Toolbar_titleMargin 22
+int styleable Toolbar_titleMarginBottom 23
+int styleable Toolbar_titleMarginEnd 24
+int styleable Toolbar_titleMarginStart 25
+int styleable Toolbar_titleMarginTop 26
+int styleable Toolbar_titleMargins 27
+int styleable Toolbar_titleTextAppearance 28
+int styleable Toolbar_titleTextColor 29
+int[] styleable Tooltip { 0x01010034, 0x01010098, 0x010100d5, 0x010100f6, 0x0101013f, 0x01010140, 0x0101014f, 0x7f040053 }
+int styleable Tooltip_android_textAppearance 0
+int styleable Tooltip_android_textColor 1
+int styleable Tooltip_android_padding 2
+int styleable Tooltip_android_layout_margin 3
+int styleable Tooltip_android_minWidth 4
+int styleable Tooltip_android_minHeight 5
+int styleable Tooltip_android_text 6
+int styleable Tooltip_backgroundTint 7
+int[] styleable Transform { 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440 }
+int styleable Transform_android_transformPivotX 0
+int styleable Transform_android_transformPivotY 1
+int styleable Transform_android_translationX 2
+int styleable Transform_android_translationY 3
+int styleable Transform_android_scaleX 4
+int styleable Transform_android_scaleY 5
+int styleable Transform_android_rotation 6
+int styleable Transform_android_rotationX 7
+int styleable Transform_android_rotationY 8
+int styleable Transform_android_translationZ 9
+int styleable Transform_android_elevation 10
+int[] styleable Transition { 0x010100d0, 0x7f040048, 0x7f040127, 0x7f040128, 0x7f040192, 0x7f04026e, 0x7f040332, 0x7f040364, 0x7f0403ed, 0x7f0404b4, 0x7f0404b6 }
+int styleable Transition_android_id 0
+int styleable Transition_autoTransition 1
+int styleable Transition_constraintSetEnd 2
+int styleable Transition_constraintSetStart 3
+int styleable Transition_duration 4
+int styleable Transition_layoutDuringTransition 5
+int styleable Transition_motionInterpolator 6
+int styleable Transition_pathMotionArc 7
+int styleable Transition_staggered 8
+int styleable Transition_transitionDisable 9
+int styleable Transition_transitionFlags 10
+int[] styleable Variant { 0x7f04012a, 0x7f04039e, 0x7f04039f, 0x7f0403a0, 0x7f0403a1 }
+int styleable Variant_constraints 0
+int styleable Variant_region_heightLessThan 1
+int styleable Variant_region_heightMoreThan 2
+int styleable Variant_region_widthLessThan 3
+int styleable Variant_region_widthMoreThan 4
+int[] styleable View { 0x01010000, 0x010100da, 0x7f040355, 0x7f040358, 0x7f040472 }
+int styleable View_android_theme 0
+int styleable View_android_focusable 1
+int styleable View_paddingEnd 2
+int styleable View_paddingStart 3
+int styleable View_theme 4
+int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f040053, 0x7f040054 }
+int styleable ViewBackgroundHelper_android_background 0
+int styleable ViewBackgroundHelper_backgroundTint 1
+int styleable ViewBackgroundHelper_backgroundTintMode 2
+int[] styleable ViewPager2 { 0x010100c4 }
+int styleable ViewPager2_android_orientation 0
+int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
+int styleable ViewStubCompat_android_id 0
+int styleable ViewStubCompat_android_layout 1
+int styleable ViewStubCompat_android_inflatedId 2
+int xml com_android_billingclient_phenotype 0x7f150000
+int xml ga_ad_services_config 0x7f150001
+int xml image_share_filepaths 0x7f150002
+int xml locales_config 0x7f150003
+int xml log_paths 0x7f150004
+int xml no_backup 0x7f150005
+int xml pref_settings 0x7f150006
diff --git a/mobile/build/intermediates/signing_config_versions/freedomDebug/signing-config-versions.json b/mobile/build/intermediates/signing_config_versions/freedomDebug/signing-config-versions.json
new file mode 100644
index 00000000..51f6368b
--- /dev/null
+++ b/mobile/build/intermediates/signing_config_versions/freedomDebug/signing-config-versions.json
@@ -0,0 +1 @@
+{"enableV1Signing":false,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false}
\ No newline at end of file
diff --git a/mobile/build/intermediates/source_set_path_map/freedomDebug/file-map.txt b/mobile/build/intermediates/source_set_path_map/freedomDebug/file-map.txt
new file mode 100644
index 00000000..69866139
--- /dev/null
+++ b/mobile/build/intermediates/source_set_path_map/freedomDebug/file-map.txt
@@ -0,0 +1,69 @@
+hanson.xyz.vpnhotspotmod.mobile-constraintlayout-2.0.1-0 /home/brian/.gradle/caches/transforms-3/05e1501b39d811203dff176d82853387/transformed/constraintlayout-2.0.1/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-appcompat-resources-1.6.1-1 /home/brian/.gradle/caches/transforms-3/07ba96a5bb88c0245ec3c58dfbf13b7b/transformed/jetified-appcompat-resources-1.6.1/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-datastore-preferences-1.0.0-2 /home/brian/.gradle/caches/transforms-3/0b746cc09332991a6f67f31548b80595/transformed/jetified-datastore-preferences-1.0.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-ads-adservices-1.0.0-beta05-3 /home/brian/.gradle/caches/transforms-3/0de0b18de1b209ff76fa9b1fed9366bf/transformed/jetified-ads-adservices-1.0.0-beta05/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-billing-6.1.0-4 /home/brian/.gradle/caches/transforms-3/0f524de6fa4b9def74bc5e789d94a083/transformed/jetified-billing-6.1.0/res
+hanson.xyz.vpnhotspotmod.mobile-swiperefreshlayout-1.1.0-5 /home/brian/.gradle/caches/transforms-3/1a93693452ed0f01a93593682cd1380b/transformed/swiperefreshlayout-1.1.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-play-services-base-18.2.0-6 /home/brian/.gradle/caches/transforms-3/1d9479087318f7cd7e4ebd82cce3b33a/transformed/jetified-play-services-base-18.2.0/res
+hanson.xyz.vpnhotspotmod.mobile-room-runtime-2.6.1-7 /home/brian/.gradle/caches/transforms-3/24eac5a3ad2a3a9fcae0710ce88e2e62/transformed/room-runtime-2.6.1/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-profileinstaller-1.3.0-8 /home/brian/.gradle/caches/transforms-3/263d427d8ac842ad326d38bcb212ab68/transformed/jetified-profileinstaller-1.3.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-emoji2-1.2.0-9 /home/brian/.gradle/caches/transforms-3/2b6d0d58f9560bd1dd189a818cf2fbc9/transformed/jetified-emoji2-1.2.0/res
+hanson.xyz.vpnhotspotmod.mobile-coordinatorlayout-1.1.0-10 /home/brian/.gradle/caches/transforms-3/2f2d8db9ce5a92716a7b278131d3edc4/transformed/coordinatorlayout-1.1.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-savedstate-ktx-1.2.1-11 /home/brian/.gradle/caches/transforms-3/43c190c4da1ffb1e21cee83ce475447a/transformed/jetified-savedstate-ktx-1.2.1/res
+hanson.xyz.vpnhotspotmod.mobile-recyclerview-1.1.0-12 /home/brian/.gradle/caches/transforms-3/4cc022fbce7c02763a5fa4ea0cc4c6ef/transformed/recyclerview-1.1.0/res
+hanson.xyz.vpnhotspotmod.mobile-material-1.11.0-13 /home/brian/.gradle/caches/transforms-3/614083905a70ad11fb7f82e67f2ad1d9/transformed/material-1.11.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-activity-1.8.0-14 /home/brian/.gradle/caches/transforms-3/622b253a2e7965522a66ea0393a411dd/transformed/jetified-activity-1.8.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-viewpager2-1.0.0-15 /home/brian/.gradle/caches/transforms-3/66a888bdcfe85efcb169e9a3ffc92699/transformed/jetified-viewpager2-1.0.0/res
+hanson.xyz.vpnhotspotmod.mobile-appcompat-1.6.1-16 /home/brian/.gradle/caches/transforms-3/68723e9db1d0eb1bccb47ca88073fe8e/transformed/appcompat-1.6.1/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-fragment-ktx-1.6.2-17 /home/brian/.gradle/caches/transforms-3/782e40560374072fce66de454980c31b/transformed/jetified-fragment-ktx-1.6.2/res
+hanson.xyz.vpnhotspotmod.mobile-databinding-adapters-8.2.0-18 /home/brian/.gradle/caches/transforms-3/7bf8b97a50c97fae198c1842347e4d1c/transformed/databinding-adapters-8.2.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-ads-adservices-java-1.0.0-beta05-19 /home/brian/.gradle/caches/transforms-3/85ac52ea82c1f7aa18aec7d25c432cf9/transformed/jetified-ads-adservices-java-1.0.0-beta05/res
+hanson.xyz.vpnhotspotmod.mobile-drawerlayout-1.1.1-20 /home/brian/.gradle/caches/transforms-3/8b23fe5f41d4e2f787827edd6cd782ee/transformed/drawerlayout-1.1.1/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-emoji2-views-helper-1.2.0-21 /home/brian/.gradle/caches/transforms-3/8d2c6937e4d26f76c7382f4137f9a556/transformed/jetified-emoji2-views-helper-1.2.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-lifecycle-service-2.6.2-22 /home/brian/.gradle/caches/transforms-3/8fa9f65fc67b74a77c1939a89e8c4ffa/transformed/jetified-lifecycle-service-2.6.2/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-preferencex-simplemenu-1.1.0-23 /home/brian/.gradle/caches/transforms-3/96596d913bdc5ef7499b36edf6e5d946/transformed/jetified-preferencex-simplemenu-1.1.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-savedstate-1.2.1-24 /home/brian/.gradle/caches/transforms-3/96f28d80a8df0531564877dc46411590/transformed/jetified-savedstate-1.2.1/res
+hanson.xyz.vpnhotspotmod.mobile-fragment-1.6.2-25 /home/brian/.gradle/caches/transforms-3/974f946db560c84390f432f3dcd91071/transformed/fragment-1.6.2/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-lifecycle-livedata-ktx-2.6.2-26 /home/brian/.gradle/caches/transforms-3/9787f9e8c557eff245797667c270470d/transformed/jetified-lifecycle-livedata-ktx-2.6.2/res
+hanson.xyz.vpnhotspotmod.mobile-sqlite-framework-2.4.0-27 /home/brian/.gradle/caches/transforms-3/9ab6b150168eb0f0c2fbcda819214cb5/transformed/sqlite-framework-2.4.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-lifecycle-livedata-core-ktx-2.6.2-28 /home/brian/.gradle/caches/transforms-3/9f8995c9c9fca40bcfa10406a5bf7300/transformed/jetified-lifecycle-livedata-core-ktx-2.6.2/res
+hanson.xyz.vpnhotspotmod.mobile-cardview-1.0.0-29 /home/brian/.gradle/caches/transforms-3/a33695dde8a169e607a8ae6f38de7bcf/transformed/cardview-1.0.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-lifecycle-viewmodel-savedstate-2.6.2-30 /home/brian/.gradle/caches/transforms-3/aaee1f362a9afddd141c6f8688f63f87/transformed/jetified-lifecycle-viewmodel-savedstate-2.6.2/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-activity-ktx-1.8.0-31 /home/brian/.gradle/caches/transforms-3/ab43062a325afdece8466d959966f1b3/transformed/jetified-activity-ktx-1.8.0/res
+hanson.xyz.vpnhotspotmod.mobile-lifecycle-runtime-2.6.2-32 /home/brian/.gradle/caches/transforms-3/af29352e176ea3b8abedc6c07df19817/transformed/lifecycle-runtime-2.6.2/res
+hanson.xyz.vpnhotspotmod.mobile-lifecycle-livedata-2.6.2-33 /home/brian/.gradle/caches/transforms-3/b04fb039be5694b5b8af11503f710b2c/transformed/lifecycle-livedata-2.6.2/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-lifecycle-runtime-ktx-2.6.2-34 /home/brian/.gradle/caches/transforms-3/b084481cd89ead8132d2d86b19dbd0e1/transformed/jetified-lifecycle-runtime-ktx-2.6.2/res
+hanson.xyz.vpnhotspotmod.mobile-core-runtime-2.2.0-35 /home/brian/.gradle/caches/transforms-3/b45f49fa6024125737f04a37dfbd5df6/transformed/core-runtime-2.2.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-startup-runtime-1.1.1-36 /home/brian/.gradle/caches/transforms-3/b73c48e7945b65b0f2e33750a3e043ff/transformed/jetified-startup-runtime-1.1.1/res
+hanson.xyz.vpnhotspotmod.mobile-databinding-runtime-8.2.0-37 /home/brian/.gradle/caches/transforms-3/b9781f640fb34cbb0ce36e1194115f38/transformed/databinding-runtime-8.2.0/res
+hanson.xyz.vpnhotspotmod.mobile-preference-1.2.1-38 /home/brian/.gradle/caches/transforms-3/be9e548f38a9f07b537d544e77fe87ef/transformed/preference-1.2.1/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-play-services-measurement-api-21.5.0-39 /home/brian/.gradle/caches/transforms-3/bfa8d3ea47577de6603ddefe08958fe5/transformed/jetified-play-services-measurement-api-21.5.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-room-ktx-2.6.1-40 /home/brian/.gradle/caches/transforms-3/bfe78559e88743786073a1015021de59/transformed/jetified-room-ktx-2.6.1/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-play-services-basement-18.1.0-41 /home/brian/.gradle/caches/transforms-3/c5de039106c0348fe37ac7974d9ffb7c/transformed/jetified-play-services-basement-18.1.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-core-ktx-1.12.0-42 /home/brian/.gradle/caches/transforms-3/c80d1804d172831da38b321091f976e5/transformed/jetified-core-ktx-1.12.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-datastore-1.0.0-43 /home/brian/.gradle/caches/transforms-3/d1c35286f4f70bf0cf39a7c500c2fe7e/transformed/jetified-datastore-1.0.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-annotation-experimental-1.3.0-44 /home/brian/.gradle/caches/transforms-3/d2b64dee5f380f7aa11c84577dd1606e/transformed/jetified-annotation-experimental-1.3.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-lifecycle-process-2.6.2-45 /home/brian/.gradle/caches/transforms-3/df3ce53770b3576216b092f2c813efd7/transformed/jetified-lifecycle-process-2.6.2/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-play-services-oss-licenses-17.0.1-46 /home/brian/.gradle/caches/transforms-3/e0a8b88020286343a0b41a7733e08913/transformed/jetified-play-services-oss-licenses-17.0.1/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-firebase-common-20.4.2-47 /home/brian/.gradle/caches/transforms-3/e39a4a9589f30da3f24b063cc7322b4e/transformed/jetified-firebase-common-20.4.2/res
+hanson.xyz.vpnhotspotmod.mobile-transition-1.4.1-48 /home/brian/.gradle/caches/transforms-3/e608070d69755e6e0f122901919553cb/transformed/transition-1.4.1/res
+hanson.xyz.vpnhotspotmod.mobile-browser-1.7.0-49 /home/brian/.gradle/caches/transforms-3/e618cac36ada9c86a11525ad1069bdd1/transformed/browser-1.7.0/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-lifecycle-viewmodel-ktx-2.6.2-50 /home/brian/.gradle/caches/transforms-3/e7f683ccdf7b96479cc446f0d87940b6/transformed/jetified-lifecycle-viewmodel-ktx-2.6.2/res
+hanson.xyz.vpnhotspotmod.mobile-core-1.12.0-51 /home/brian/.gradle/caches/transforms-3/e8d3875120bed745c27f33af03447c9b/transformed/core-1.12.0/res
+hanson.xyz.vpnhotspotmod.mobile-lifecycle-viewmodel-2.6.2-52 /home/brian/.gradle/caches/transforms-3/ec5ff7c3ed671d28e624de1bf91058ca/transformed/lifecycle-viewmodel-2.6.2/res
+hanson.xyz.vpnhotspotmod.mobile-jetified-window-1.0.0-53 /home/brian/.gradle/caches/transforms-3/eec92cb44c58adbd0a1c3325c5763359/transformed/jetified-window-1.0.0/res
+hanson.xyz.vpnhotspotmod.mobile-sqlite-2.4.0-54 /home/brian/.gradle/caches/transforms-3/f65304a509253931c753b545248a57f6/transformed/sqlite-2.4.0/res
+hanson.xyz.vpnhotspotmod.mobile-lifecycle-livedata-core-2.6.2-55 /home/brian/.gradle/caches/transforms-3/fe0690d0f42f7d79bf8fd4dde9b638b9/transformed/lifecycle-livedata-core-2.6.2/res
+hanson.xyz.vpnhotspotmod.mobile-slidingpanelayout-1.2.0-56 /home/brian/.gradle/caches/transforms-3/ffce202b6f4c65c0b912fa3e5e72cb24/transformed/slidingpanelayout-1.2.0/res
+hanson.xyz.vpnhotspotmod.mobile-freedom-57 /home/brian/Desktop/vpnhotspotmod/mobile/build/generated/crashlytics/res/freedom/debug
+hanson.xyz.vpnhotspotmod.mobile-freedom-58 /home/brian/Desktop/vpnhotspotmod/mobile/build/generated/res/pngs/freedom/debug
+hanson.xyz.vpnhotspotmod.mobile-res-59 /home/brian/Desktop/vpnhotspotmod/mobile/build/generated/res/processFreedomDebugGoogleServices
+hanson.xyz.vpnhotspotmod.mobile-freedom-60 /home/brian/Desktop/vpnhotspotmod/mobile/build/generated/res/resValues/freedom/debug
+hanson.xyz.vpnhotspotmod.mobile-freedomDebug-61 /home/brian/Desktop/vpnhotspotmod/mobile/build/generated/third_party_licenses/freedomDebug/res
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-62 /home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/merged.dir
+hanson.xyz.vpnhotspotmod.mobile-packageFreedomDebugResources-63 /home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/incremental/freedomDebug/packageFreedomDebugResources/stripped.dir
+hanson.xyz.vpnhotspotmod.mobile-merged_res-64 /home/brian/Desktop/vpnhotspotmod/mobile/build/intermediates/merged_res/freedomDebug
+hanson.xyz.vpnhotspotmod.mobile-debug-65 /home/brian/Desktop/vpnhotspotmod/mobile/src/debug/res
+hanson.xyz.vpnhotspotmod.mobile-freedom-66 /home/brian/Desktop/vpnhotspotmod/mobile/src/freedom/res
+hanson.xyz.vpnhotspotmod.mobile-freedomDebug-67 /home/brian/Desktop/vpnhotspotmod/mobile/src/freedomDebug/res
+hanson.xyz.vpnhotspotmod.mobile-main-68 /home/brian/Desktop/vpnhotspotmod/mobile/src/main/res
diff --git a/mobile/build/intermediates/stable_resource_ids_file/freedomDebug/stableIds.txt b/mobile/build/intermediates/stable_resource_ids_file/freedomDebug/stableIds.txt
new file mode 100644
index 00000000..830a7ba7
--- /dev/null
+++ b/mobile/build/intermediates/stable_resource_ids_file/freedomDebug/stableIds.txt
@@ -0,0 +1,6147 @@
+hanson.xyz.vpnhotspotmod:xml/no_backup = 0x7f150005
+hanson.xyz.vpnhotspotmod:styleable/ViewPager2 = 0x7f1400aa
+hanson.xyz.vpnhotspotmod:styleable/ViewBackgroundHelper = 0x7f1400a9
+hanson.xyz.vpnhotspotmod:styleable/Transition = 0x7f1400a6
+hanson.xyz.vpnhotspotmod:styleable/Theme = 0x7f1400a1
+hanson.xyz.vpnhotspotmod:styleable/TabItem = 0x7f14009c
+hanson.xyz.vpnhotspotmod:styleable/SwitchPreferenceCompat = 0x7f14009b
+hanson.xyz.vpnhotspotmod:styleable/SwitchCompat = 0x7f140098
+hanson.xyz.vpnhotspotmod:styleable/SplitPlaceholderRule = 0x7f140092
+hanson.xyz.vpnhotspotmod:styleable/SplitPairFilter = 0x7f140090
+hanson.xyz.vpnhotspotmod:styleable/Spinner = 0x7f14008f
+hanson.xyz.vpnhotspotmod:styleable/SnackbarLayout = 0x7f14008e
+hanson.xyz.vpnhotspotmod:styleable/SimpleMenuPreference = 0x7f14008b
+hanson.xyz.vpnhotspotmod:styleable/SimpleMenuPopup = 0x7f14008a
+hanson.xyz.vpnhotspotmod:styleable/ScrimInsetsFrameLayout = 0x7f140081
+hanson.xyz.vpnhotspotmod:styleable/RecyclerView = 0x7f140080
+hanson.xyz.vpnhotspotmod:styleable/PropertySet = 0x7f14007c
+hanson.xyz.vpnhotspotmod:styleable/PreferenceFragment = 0x7f140077
+hanson.xyz.vpnhotspotmod:styleable/PopupWindowBackgroundState = 0x7f140075
+hanson.xyz.vpnhotspotmod:styleable/OnSwipe = 0x7f140073
+hanson.xyz.vpnhotspotmod:styleable/OnClick = 0x7f140072
+hanson.xyz.vpnhotspotmod:styleable/NavigationView = 0x7f140071
+hanson.xyz.vpnhotspotmod:styleable/NavigationRailView = 0x7f140070
+hanson.xyz.vpnhotspotmod:styleable/NavigationBarActiveIndicator = 0x7f14006e
+hanson.xyz.vpnhotspotmod:styleable/MultiSelectListPreference = 0x7f14006d
+hanson.xyz.vpnhotspotmod:styleable/MotionScene = 0x7f14006b
+hanson.xyz.vpnhotspotmod:styleable/MotionLayout = 0x7f14006a
+hanson.xyz.vpnhotspotmod:styleable/Motion = 0x7f140068
+hanson.xyz.vpnhotspotmod:styleable/MenuView = 0x7f140066
+hanson.xyz.vpnhotspotmod:styleable/MaterialToolbar = 0x7f140063
+hanson.xyz.vpnhotspotmod:styleable/MaterialTextView = 0x7f140061
+hanson.xyz.vpnhotspotmod:styleable/MaterialTextAppearance = 0x7f140060
+hanson.xyz.vpnhotspotmod:styleable/MaterialShape = 0x7f14005e
+hanson.xyz.vpnhotspotmod:styleable/MaterialDivider = 0x7f14005c
+hanson.xyz.vpnhotspotmod:styleable/MaterialCheckBox = 0x7f14005a
+hanson.xyz.vpnhotspotmod:styleable/MaterialCalendarItem = 0x7f140058
+hanson.xyz.vpnhotspotmod:styleable/MaterialButtonToggleGroup = 0x7f140056
+hanson.xyz.vpnhotspotmod:styleable/MaterialAutoCompleteTextView = 0x7f140054
+hanson.xyz.vpnhotspotmod:styleable/LinearProgressIndicator = 0x7f14004e
+hanson.xyz.vpnhotspotmod:styleable/LinearLayoutCompat = 0x7f14004c
+hanson.xyz.vpnhotspotmod:styleable/KeyFramesAcceleration = 0x7f140046
+hanson.xyz.vpnhotspotmod:styleable/KeyAttribute = 0x7f140043
+hanson.xyz.vpnhotspotmod:styleable/Insets = 0x7f140042
+hanson.xyz.vpnhotspotmod:styleable/ImageFilterView = 0x7f140041
+hanson.xyz.vpnhotspotmod:styleable/GradientColor = 0x7f14003f
+hanson.xyz.vpnhotspotmod:styleable/Fragment = 0x7f14003d
+hanson.xyz.vpnhotspotmod:styleable/FontFamilyFont = 0x7f14003b
+hanson.xyz.vpnhotspotmod:styleable/ExtendedFloatingActionButton_Behavior_Layout = 0x7f140036
+hanson.xyz.vpnhotspotmod:styleable/ExtendedFloatingActionButton = 0x7f140035
+hanson.xyz.vpnhotspotmod:styleable/DrawerLayout = 0x7f140033
+hanson.xyz.vpnhotspotmod:styleable/DrawerArrowToggle = 0x7f140032
+hanson.xyz.vpnhotspotmod:styleable/CoordinatorLayout_Layout = 0x7f14002f
+hanson.xyz.vpnhotspotmod:styleable/CompoundButton = 0x7f140029
+hanson.xyz.vpnhotspotmod:styleable/CollapsingToolbarLayout_Layout = 0x7f140027
+hanson.xyz.vpnhotspotmod:styleable/CollapsingToolbarLayout = 0x7f140026
+hanson.xyz.vpnhotspotmod:styleable/ClockFaceView = 0x7f140024
+hanson.xyz.vpnhotspotmod:styleable/Chip = 0x7f140021
+hanson.xyz.vpnhotspotmod:styleable/Capability = 0x7f14001c
+hanson.xyz.vpnhotspotmod:styleable/BottomAppBar = 0x7f140018
+hanson.xyz.vpnhotspotmod:styleable/BaseProgressIndicator = 0x7f140017
+hanson.xyz.vpnhotspotmod:styleable/BackgroundStyle = 0x7f140015
+hanson.xyz.vpnhotspotmod:styleable/AppCompatTheme = 0x7f140014
+hanson.xyz.vpnhotspotmod:styleable/AppCompatTextView = 0x7f140013
+hanson.xyz.vpnhotspotmod:styleable/AppCompatTextHelper = 0x7f140012
+hanson.xyz.vpnhotspotmod:styleable/AppCompatImageView = 0x7f140010
+hanson.xyz.vpnhotspotmod:styleable/AppCompatEmojiHelper = 0x7f14000f
+hanson.xyz.vpnhotspotmod:styleable/AppBarLayoutStates = 0x7f14000d
+hanson.xyz.vpnhotspotmod:styleable/AnimatedStateListDrawableTransition = 0x7f14000b
+hanson.xyz.vpnhotspotmod:styleable/ActivityFilter = 0x7f140006
+hanson.xyz.vpnhotspotmod:styleable/ActionMode = 0x7f140004
+hanson.xyz.vpnhotspotmod:styleable/ActionMenuView = 0x7f140003
+hanson.xyz.vpnhotspotmod:styleable/ActionBarLayout = 0x7f140001
+hanson.xyz.vpnhotspotmod:style/wifi_item_label = 0x7f130486
+hanson.xyz.vpnhotspotmod:style/wifi_item_edit_content = 0x7f130485
+hanson.xyz.vpnhotspotmod:style/wifi_item_divider = 0x7f130484
+hanson.xyz.vpnhotspotmod:style/wifi_item_content = 0x7f130483
+hanson.xyz.vpnhotspotmod:style/Widget.Support.CoordinatorLayout = 0x7f130481
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Toolbar.Primary = 0x7f13047d
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TimePicker.Display.TextInputLayout = 0x7f130479
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TimePicker.Display.HelperText = 0x7f130477
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TimePicker = 0x7f130472
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu = 0x7f130470
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu = 0x7f13046f
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TabLayout = 0x7f130462
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Snackbar.TextView = 0x7f130461
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TextInputLayout.FilledBox = 0x7f130469
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Snackbar.FullWidth = 0x7f130460
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Slider = 0x7f13045e
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.ShapeableImageView = 0x7f13045d
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.PopupMenu.ListPopupWindow = 0x7f13045a
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.PopupMenu = 0x7f130458
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.NavigationView = 0x7f130457
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.NavigationRailView.Compact = 0x7f130455
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.NavigationRailView.Colored.Compact = 0x7f130454
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.NavigationRailView = 0x7f130452
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.Year = 0x7f13044d
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.MonthNavigationButton = 0x7f13044b
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.Item = 0x7f13044a
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.HeaderSelection.Fullscreen = 0x7f130447
+hanson.xyz.vpnhotspotmod:styleable/Variant = 0x7f1400a7
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.HeaderDivider = 0x7f130443
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.HeaderConfirmButton = 0x7f130442
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.HeaderCancelButton = 0x7f130441
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.Day.Invalid = 0x7f13043b
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar = 0x7f130439
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialButtonToggleGroup = 0x7f130438
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.LinearProgressIndicator = 0x7f130437
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.FloatingActionButton = 0x7f130435
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.ExtendedFloatingActionButton = 0x7f130433
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.CompoundButton.Switch = 0x7f130432
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.CircularProgressIndicator.Medium = 0x7f13042d
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Chip.Filter = 0x7f130429
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Chip.Choice = 0x7f130427
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Button.UnelevatedButton = 0x7f130422
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Button.TextButton.Icon = 0x7f130420
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Button.TextButton.Dialog.Icon = 0x7f13041f
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush = 0x7f13041e
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Button.TextButton = 0x7f13041c
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Button.OutlinedButton = 0x7f13041a
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.BottomNavigationView.PrimarySurface = 0x7f130415
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.BottomAppBar.PrimarySurface = 0x7f130412
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Badge = 0x7f13040f
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense = 0x7f13040e
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox = 0x7f13040b
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.AppBarLayout.Primary = 0x7f130408
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.ActionMode = 0x7f130407
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Tooltip = 0x7f130402
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu = 0x7f1303fd
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TextInputLayout.OutlinedBox.Dense = 0x7f1303fc
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TextInputLayout.OutlinedBox = 0x7f1303fb
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TextInputEditText.OutlinedBox.Dense = 0x7f1303f6
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TabLayout.Secondary = 0x7f1303f2
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TabLayout = 0x7f1303f0
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.SideSheet.Modal = 0x7f1303e9
+hanson.xyz.vpnhotspotmod:styleable/KeyTrigger = 0x7f14004a
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.SideSheet = 0x7f1303e7
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.SearchView.Toolbar = 0x7f1303e6
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.SearchView.Prefix = 0x7f1303e5
+hanson.xyz.vpnhotspotmod:styleable/Toolbar = 0x7f1400a3
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Search.Toolbar.Button.Navigation = 0x7f1303e1
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.CollapsingToolbar = 0x7f13042f
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.PopupMenu.ContextMenu = 0x7f1303dd
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialTimePicker.Display.TextInputLayout = 0x7f1303d6
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.HeaderTitle = 0x7f130448
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialTimePicker.Clock = 0x7f1303d1
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialTimePicker.Button = 0x7f1303d0
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialTimePicker = 0x7f1303cf
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialDivider = 0x7f1303cd
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.YearNavigationButton = 0x7f1303cc
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.Year.Today = 0x7f1303cb
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.Item = 0x7f1303c6
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.HeaderSelection.Fullscreen = 0x7f1303c3
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.HeaderLayout = 0x7f1303c0
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.DayOfWeekLabel = 0x7f1303bb
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.Day.Selected = 0x7f1303b9
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.FloatingActionButton.Small.Surface = 0x7f1303af
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.FloatingActionButton.Small.Secondary = 0x7f1303ae
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.FloatingActionButton.Secondary = 0x7f1303ac
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.FloatingActionButton.Primary = 0x7f1303ab
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.FloatingActionButton.Large.Tertiary = 0x7f1303aa
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.ExtendedFloatingActionButton.Icon.Surface = 0x7f1303a1
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CompoundButton.Switch = 0x7f13039d
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CollapsingToolbar.Medium = 0x7f130399
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CircularProgressIndicator.ExtraSmall = 0x7f130394
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.SearchView = 0x7f1303e4
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Chip.Suggestion.Elevated = 0x7f130391
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Chip.Suggestion = 0x7f130390
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Chip.Input.Icon.Elevated = 0x7f13038f
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Chip.Input.Elevated = 0x7f13038d
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Chip.Input = 0x7f13038c
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Chip.Filter = 0x7f13038a
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CheckedTextView = 0x7f130387
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.TonalButton.Icon = 0x7f130382
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.TextButton.Snackbar = 0x7f130380
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.TextButton.Dialog.Icon = 0x7f13037e
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.TextButton.Dialog.Flush = 0x7f13037d
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.TextButton = 0x7f13037b
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.OutlinedButton.Icon = 0x7f13037a
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.OutlinedButton = 0x7f130379
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.IconButton.Filled = 0x7f130376
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.Icon = 0x7f130374
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.ElevatedButton.Icon = 0x7f130373
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.ElevatedButton = 0x7f130372
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button = 0x7f130371
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.BottomAppBar.Legacy = 0x7f13036a
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.BottomAppBar.Button.Navigation = 0x7f130369
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Badge = 0x7f130366
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.ActionBar.Solid = 0x7f13035f
+hanson.xyz.vpnhotspotmod:style/Widget.Design.TabLayout = 0x7f13035c
+hanson.xyz.vpnhotspotmod:style/Widget.Design.FloatingActionButton = 0x7f130358
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Toolbar = 0x7f130350
+hanson.xyz.vpnhotspotmod:styleable/FloatingActionButton_Behavior_Layout = 0x7f140038
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TabLayout.OnSurface = 0x7f1303f1
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.TextView.SpinnerItem = 0x7f13034f
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.SeekBar.Discrete = 0x7f130349
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.SearchView = 0x7f130346
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.RatingBar.Small = 0x7f130345
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ProgressBar.Horizontal = 0x7f130342
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.PopupWindow = 0x7f130340
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.PopupMenu.Overflow = 0x7f13033f
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.PopupMenu = 0x7f13033e
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ListView.Menu = 0x7f13033d
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ListView.DropDown = 0x7f13033c
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.DropDownItem.Spinner = 0x7f130332
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActionButton.CloseMode = 0x7f13032d
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f130329
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse = 0x7f130327
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActionBar.TabBar = 0x7f130326
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.EditText = 0x7f130321
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.DrawerArrowToggle = 0x7f13031f
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.CompoundButton.Switch = 0x7f13031e
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.CompoundButton.CheckBox = 0x7f13031c
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ButtonBar.AlertDialog = 0x7f13031b
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Button.Colored = 0x7f130318
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Button.Borderless.Colored = 0x7f130316
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ActivityChooserView = 0x7f130312
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ActionButton.Overflow = 0x7f130310
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ActionBar.TabView = 0x7f13030d
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ActionBar.Solid = 0x7f13030a
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ActionBar = 0x7f130309
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.Toolbar.Surface = 0x7f130308
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.Toolbar.Popup.Primary = 0x7f130306
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.TimePicker = 0x7f130303
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense = 0x7f130302
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox = 0x7f1302ff
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.TextInputEditText = 0x7f1302fe
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Spinner = 0x7f1302fb
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text.Day = 0x7f1302fa
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text = 0x7f1302f9
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Calendar = 0x7f1302f8
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Centered = 0x7f1302f6
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f1302f5
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.Dialog.Alert.Framework = 0x7f1302f2
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.Dialog = 0x7f1302f0
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.DayNight.BottomSheetDialog = 0x7f1302ef
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense = 0x7f1302e9
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.ActionBar.Solid = 0x7f130405
+hanson.xyz.vpnhotspotmod:style/Widget.Design.BottomNavigationView = 0x7f130355
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox = 0x7f1302e8
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox = 0x7f1302e6
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView = 0x7f1302e5
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.ActionBar.Surface = 0x7f1302e4
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.ActionBar.Primary = 0x7f1302e3
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialAlertDialog.Material3.Title.Icon = 0x7f1302e0
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.TextInputEditText.OutlinedBox.Dense = 0x7f1302de
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.TextInputEditText.OutlinedBox = 0x7f1302dd
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.TextInputEditText.FilledBox.Dense = 0x7f1302dc
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.TextInputEditText.FilledBox = 0x7f1302db
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.TextInputEditText = 0x7f1302da
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.TabLayout = 0x7f1302d9
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.SideSheetDialog = 0x7f1302d7
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.NavigationView = 0x7f1302d4
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.MaterialCalendar.HeaderCancelButton = 0x7f1302d0
+hanson.xyz.vpnhotspotmod:styleable/SideSheetBehavior_Layout = 0x7f140088
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.MaterialCalendar.Fullscreen = 0x7f1302cf
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.MaterialAlertDialog.Centered = 0x7f1302cd
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.FloatingActionButton.Secondary = 0x7f1302c5
+hanson.xyz.vpnhotspotmod:xml/com_android_billingclient_phenotype = 0x7f150000
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.FloatingActionButton.Primary = 0x7f1302c4
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Primary = 0x7f1302c0
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.DynamicColors.DayNight = 0x7f1302be
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Dialog.Alert.Framework = 0x7f1302bc
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Dark = 0x7f1302b6
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Chip.Assist = 0x7f1302b5
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Button.TonalButton = 0x7f1302b3
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Button.TextButton.Snackbar = 0x7f1302b2
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Button = 0x7f1302ac
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.BottomNavigationView = 0x7f1302aa
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.BottomAppBar.Legacy = 0x7f1302a9
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.BottomAppBar = 0x7f1302a8
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox = 0x7f1302a6
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.ExtendedFloatingActionButton.Secondary = 0x7f1303a4
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3 = 0x7f1302a1
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.AppCompat.Light = 0x7f13029f
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TimePicker.Button = 0x7f130473
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.NoActionBar.Bridge = 0x7f130296
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.NoActionBar = 0x7f130295
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.NoActionBar.Bridge = 0x7f130294
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.NoActionBar = 0x7f130293
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.Dialog.MinWidth.Bridge = 0x7f130291
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.Dialog.MinWidth = 0x7f130290
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.Dialog.FixedSize.Bridge = 0x7f13028f
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Button.Borderless = 0x7f130315
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.Dialog.FixedSize = 0x7f13028e
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.Dialog.Alert.Bridge = 0x7f13028c
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.Dialog = 0x7f13028a
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f130289
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Dialog.FixedSize.Bridge = 0x7f130281
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Dialog.Bridge = 0x7f13027f
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.NoActionBar.Bridge = 0x7f13027b
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.DialogWhenLarge = 0x7f130279
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.Dialog.MinWidth = 0x7f130277
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.Dialog.Bridge = 0x7f130274
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.Dialog = 0x7f130271
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.DarkActionBar = 0x7f13026f
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight = 0x7f13026c
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Light.NoActionBar = 0x7f130266
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Light.Dialog.MinWidth = 0x7f130264
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Light.Dialog.Alert = 0x7f130263
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Light = 0x7f130260
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.DynamicColors.DayNight = 0x7f13025e
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.DynamicColors.Dark = 0x7f13025d
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.DayNight.NoActionBar = 0x7f13025b
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f1302f1
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.DayNight.DialogWhenLarge = 0x7f13025a
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.DayNight.Dialog.Alert = 0x7f130258
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.DayNight.Dialog = 0x7f130257
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Dark.Dialog.Alert = 0x7f130250
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Dark.Dialog = 0x7f13024f
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Dark = 0x7f13024d
+hanson.xyz.vpnhotspotmod:style/Theme.Design.Light.NoActionBar = 0x7f13024b
+hanson.xyz.vpnhotspotmod:style/Theme.Design.Light = 0x7f130249
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.Light = 0x7f13023f
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.DayNight.NoActionBar = 0x7f130239
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.DayNight.Dialog.MinWidth = 0x7f130237
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.DayNight.DarkActionBar = 0x7f130234
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.DayNight = 0x7f130233
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat = 0x7f130231
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f13022f
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f13022e
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.DayNight = 0x7f130255
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Tooltip = 0x7f13022d
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.TimePicker.Title = 0x7f13022c
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Subtitle2 = 0x7f13022b
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Subtitle1 = 0x7f13022a
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.Light.DialogWhenLarge = 0x7f130244
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Overline = 0x7f130229
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Headline3 = 0x7f130225
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Headline2 = 0x7f130224
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Caption = 0x7f130221
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Button = 0x7f130220
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Body1 = 0x7f13021e
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.TitleMedium = 0x7f13021b
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TimePicker.ImageButton.ShapeAppearance = 0x7f13047b
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.SearchView = 0x7f130218
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.SearchBar = 0x7f130217
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.MaterialTimePicker.Title = 0x7f130216
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.LabelSmall = 0x7f130215
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.LabelLarge = 0x7f130213
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.BodySmall = 0x7f13020c
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.BodyMedium = 0x7f13020b
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.BodyLarge = 0x7f13020a
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Button = 0x7f130418
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.TitleMedium = 0x7f130206
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.TitleLarge = 0x7f130205
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.DropDownItem.Spinner = 0x7f130320
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.LabelMedium = 0x7f130203
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.DisplayLarge = 0x7f1301fc
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.BodySmall = 0x7f1301fb
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.BodyMedium = 0x7f1301fa
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Design.Prefix = 0x7f1301f5
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Design.Placeholder = 0x7f1301f4
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Design.HelperText = 0x7f1301f2
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Design.Error = 0x7f1301f1
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Design.Counter = 0x7f1301ef
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Design.CollapsingToolbar.Expanded = 0x7f1301ee
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Compat.Notification.Time = 0x7f1301ec
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Compat.Notification.Info = 0x7f1301ea
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Compat.Notification = 0x7f1301e9
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.BottomSheet.Modal = 0x7f130417
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f1301e8
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.Switch = 0x7f1301e7
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f1301e4
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f1301e2
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.Button.Colored = 0x7f1301e1
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse = 0x7f1301de
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f1301da
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.Year.Selected = 0x7f1303ca
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f1301d7
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Subhead.Inverse = 0x7f1301d2
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.AppCompat.DayNight = 0x7f13029b
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Small.Inverse = 0x7f1301d0
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.SearchResult.Title = 0x7f1301ce
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.SearchResult.Subtitle = 0x7f1301cd
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Light.SearchResult.Subtitle = 0x7f1301c6
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Large = 0x7f1301c4
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Headline = 0x7f1301c2
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Display4 = 0x7f1301c1
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Display3 = 0x7f1301c0
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Display1 = 0x7f1301be
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Body2 = 0x7f1301bb
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat = 0x7f1301b9
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.MaterialComponents.TextInputLayout.FilledBox = 0x7f1301b8
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year = 0x7f1301b7
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen = 0x7f1301b6
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.MaterialComponents.FloatingActionButton = 0x7f1301b4
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.MaterialComponents.ExtendedFloatingActionButton = 0x7f1301b3
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.MaterialComponents.BottomSheet = 0x7f1301b1
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.Material3.Corner.Right = 0x7f1301aa
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CollapsingToolbar.Large = 0x7f130398
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.Material3.Corner.Left = 0x7f1301a9
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.Material3.Chip = 0x7f1301a7
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.Material3.Button = 0x7f1301a6
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.MaterialComponents.SmallComponent = 0x7f1301a4
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.MaterialComponents.MediumComponent = 0x7f1301a3
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.Material3.Tooltip = 0x7f13019f
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.Material3.LargeComponent = 0x7f13019b
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.Material3.Corner.Large = 0x7f130197
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Sys.Shape.Corner.Small = 0x7f130193
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Sys.Shape.Corner.Large = 0x7f130190
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f1301c8
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.Switch.StateLayer.Shape = 0x7f13018a
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.SearchView.FullScreen.Container.Shape = 0x7f130187
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.SearchBar.Container.Shape = 0x7f130186
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.SearchBar.Avatar.Shape = 0x7f130185
+hanson.xyz.vpnhotspotmod:styleable/AppBarLayout_Layout = 0x7f14000e
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.NavigationRail.Container.Shape = 0x7f130184
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.NavigationRail.ActiveIndicator.Shape = 0x7f130183
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.NavigationDrawer.ActiveIndicator.Shape = 0x7f130182
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.NavigationBar.ActiveIndicator.Shape = 0x7f130180
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.DatePicker.Modal.Date.Container.Shape = 0x7f13017e
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.Badge.Large.Shape = 0x7f13017b
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.HeaderDivider = 0x7f1303bf
+hanson.xyz.vpnhotspotmod:style/RtlUnderlay.Widget.AppCompat.ActionButton.Overflow = 0x7f13017a
+hanson.xyz.vpnhotspotmod:style/RtlUnderlay.Widget.AppCompat.ActionButton = 0x7f130179
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon = 0x7f130178
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Text = 0x7f130177
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Query = 0x7f130176
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2 = 0x7f130175
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1 = 0x7f130174
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.Search.DropDown = 0x7f130173
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Title = 0x7f130172
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut = 0x7f13016f
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.DialogTitle.Icon = 0x7f13016c
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.DialogWindowTitle.AppCompat = 0x7f13016a
+hanson.xyz.vpnhotspotmod:style/PreferenceThemeOverlay.v14 = 0x7f130168
+hanson.xyz.vpnhotspotmod:styleable/CardView = 0x7f14001d
+hanson.xyz.vpnhotspotmod:style/PreferenceThemeOverlay = 0x7f130167
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.FloatingActionButton.Tertiary = 0x7f1303b2
+hanson.xyz.vpnhotspotmod:style/PreferenceFragmentList = 0x7f130164
+hanson.xyz.vpnhotspotmod:style/PreferenceFragment = 0x7f130162
+hanson.xyz.vpnhotspotmod:style/Preference.SwitchPreferenceCompat.Material = 0x7f130160
+hanson.xyz.vpnhotspotmod:style/Preference.SwitchPreference.Material = 0x7f13015e
+hanson.xyz.vpnhotspotmod:style/Preference.SimpleMenuPreference = 0x7f13015b
+hanson.xyz.vpnhotspotmod:style/Preference.SeekBarPreference = 0x7f130159
+hanson.xyz.vpnhotspotmod:style/Preference.PreferenceScreen.Material = 0x7f130158
+hanson.xyz.vpnhotspotmod:style/Preference.PreferenceScreen = 0x7f130157
+hanson.xyz.vpnhotspotmod:style/Preference.Information = 0x7f130154
+hanson.xyz.vpnhotspotmod:style/Preference.DialogPreference.Material = 0x7f130151
+hanson.xyz.vpnhotspotmod:style/Preference.DialogPreference.EditTextPreference = 0x7f13014f
+hanson.xyz.vpnhotspotmod:style/Preference.DialogPreference = 0x7f13014e
+hanson.xyz.vpnhotspotmod:style/Preference.CheckBoxPreference.Material = 0x7f13014d
+hanson.xyz.vpnhotspotmod:style/Preference.CheckBoxPreference = 0x7f13014c
+hanson.xyz.vpnhotspotmod:style/Platform.V21.AppCompat.Light = 0x7f130145
+hanson.xyz.vpnhotspotmod:style/Platform.ThemeOverlay.AppCompat.Light = 0x7f130143
+hanson.xyz.vpnhotspotmod:style/Platform.MaterialComponents.Dialog = 0x7f13013e
+hanson.xyz.vpnhotspotmod:style/Platform.AppCompat = 0x7f13013b
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.MaterialComponents.Title.Text.CenterStacked = 0x7f13013a
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.MaterialComponents.Title.Text = 0x7f130139
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.MaterialComponents.Title.Panel.CenterStacked = 0x7f130138
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.MaterialComponents.Title.Icon = 0x7f130135
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Snackbar.TextView = 0x7f1303ef
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.MaterialComponents.Picker.Date.Spinner = 0x7f130134
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.AutoCompleteTextView.FilledBox.Dense = 0x7f130363
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.Material3.Title.Text.CenterStacked = 0x7f130130
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.Material3.Title.Panel.CenterStacked = 0x7f13012e
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.Material3.Title.Icon.CenterStacked = 0x7f13012c
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.Material3.Title.Icon = 0x7f13012b
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.Material3.Body.Text.CenterStacked = 0x7f13012a
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.Material3.Animation = 0x7f130128
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.Material3 = 0x7f130127
+hanson.xyz.vpnhotspotmod:style/CardView.Light = 0x7f130126
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.TextView = 0x7f130122
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.TextInputEditText = 0x7f130120
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.PopupMenu.Overflow = 0x7f13011d
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.PopupMenu.ContextMenu = 0x7f13011b
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.Chip = 0x7f130117
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.TabLayout.Secondary = 0x7f130114
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.TabLayout.OnSurface = 0x7f130113
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.Light.ActionBar.Solid = 0x7f13010f
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Button = 0x7f130314
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.FloatingActionButton.Small = 0x7f13010e
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.ExtendedFloatingActionButton.Icon = 0x7f13010b
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.CompoundButton.Switch = 0x7f130109
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.CompoundButton.RadioButton = 0x7f130108
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.CompoundButton.CheckBox = 0x7f130107
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.CollapsingToolbar = 0x7f130106
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.Chip = 0x7f130105
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.ActionBar.Solid = 0x7f130101
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Spinner.Underlined = 0x7f1300fb
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Spinner = 0x7f1300fa
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.SeekBar.Discrete = 0x7f1300f9
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.RatingBar.Small = 0x7f1300f5
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.RatingBar.Indicator = 0x7f1300f4
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.RatingBar = 0x7f1300f3
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.PopupMenu = 0x7f1300ee
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ListView.DropDown = 0x7f1300ec
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ListView = 0x7f1300eb
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ListMenuView = 0x7f1300e9
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu = 0x7f1303fe
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f1300e8
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Light.PopupMenu = 0x7f1300e7
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Light.ActionBar.TabView = 0x7f1300e6
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Light.ActionBar.TabText = 0x7f1300e4
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Light.ActionBar.TabBar = 0x7f1300e3
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.EditText = 0x7f1300df
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.DropDownItem.Spinner = 0x7f1300de
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.DrawerArrowToggle.Common = 0x7f1300dd
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.DrawerArrowToggle = 0x7f1300dc
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.HarmonizedColors = 0x7f1302c8
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.CompoundButton.Switch = 0x7f1300db
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.CompoundButton.RadioButton = 0x7f1300da
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ButtonBar.AlertDialog = 0x7f1300d8
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f1300d4
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Button.Borderless.Colored = 0x7f1300d3
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Button.Borderless = 0x7f1300d2
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Button = 0x7f1300d1
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ActivityChooserView = 0x7f1300cf
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ActionButton.Overflow = 0x7f1300cd
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ActionButton = 0x7f1300cb
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ActionBar.TabText = 0x7f1300c9
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ActionBar.TabBar = 0x7f1300c8
+hanson.xyz.vpnhotspotmod:style/Widget.Design.ScrimInsetsFrameLayout = 0x7f13035a
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow = 0x7f130170
+hanson.xyz.vpnhotspotmod:style/Base.V7.Widget.AppCompat.AutoCompleteTextView = 0x7f1300c3
+hanson.xyz.vpnhotspotmod:style/Base.V7.ThemeOverlay.AppCompat.Dialog = 0x7f1300c2
+hanson.xyz.vpnhotspotmod:style/Base.V7.Theme.AppCompat.Light.Dialog = 0x7f1300c1
+hanson.xyz.vpnhotspotmod:style/Base.V7.Theme.AppCompat = 0x7f1300be
+hanson.xyz.vpnhotspotmod:style/Base.V26.Widget.AppCompat.Toolbar = 0x7f1300bb
+hanson.xyz.vpnhotspotmod:style/Base.V26.Theme.AppCompat = 0x7f1300b9
+hanson.xyz.vpnhotspotmod:style/Base.V24.Theme.Material3.Light = 0x7f1300b7
+hanson.xyz.vpnhotspotmod:style/Base.V24.Theme.Material3.Dark = 0x7f1300b5
+hanson.xyz.vpnhotspotmod:style/Base.V23.Theme.AppCompat.Light = 0x7f1300b4
+hanson.xyz.vpnhotspotmod:style/Base.V23.Theme.AppCompat = 0x7f1300b3
+hanson.xyz.vpnhotspotmod:style/Base.V22.Theme.AppCompat.Light = 0x7f1300b2
+hanson.xyz.vpnhotspotmod:style/Base.V21.ThemeOverlay.Material3.SideSheetDialog = 0x7f1300af
+hanson.xyz.vpnhotspotmod:style/Base.V21.ThemeOverlay.Material3.BottomSheetDialog = 0x7f1300ae
+hanson.xyz.vpnhotspotmod:style/Base.V21.ThemeOverlay.AppCompat.Dialog = 0x7f1300ad
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.Year.Selected = 0x7f13044e
+hanson.xyz.vpnhotspotmod:style/Base.V21.Theme.AppCompat.Light.Dialog = 0x7f1300a8
+hanson.xyz.vpnhotspotmod:style/Base.V14.ThemeOverlay.MaterialComponents.Dialog = 0x7f1300a1
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f13009d
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.MaterialComponents.Light.Dialog = 0x7f13009c
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.MaterialComponents.Light.Bridge = 0x7f13009a
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.MaterialComponents.Dialog = 0x7f130097
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.MaterialComponents.Bridge = 0x7f130096
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.MaterialComponents = 0x7f130095
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.Material3.Light.SideSheetDialog = 0x7f130094
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.Material3.Light.Dialog = 0x7f130093
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.Material3.Light.BottomSheetDialog = 0x7f130092
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.Material3.Light = 0x7f130091
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Design.Counter.Overflow = 0x7f1301f0
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework = 0x7f13008b
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f130089
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.Material3.TextInputEditText = 0x7f130087
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.Material3.BottomSheetDialog = 0x7f130084
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.AppCompat.Dialog.Alert = 0x7f130081
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.AppCompat.ActionBar = 0x7f13007d
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Light = 0x7f130072
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Dialog.Bridge = 0x7f13006e
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Dialog.Alert = 0x7f13006d
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.CompactMenu = 0x7f13006b
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.BottomAppBar = 0x7f130368
+hanson.xyz.vpnhotspotmod:style/Base.Theme.Material3.Light.DialogWhenLarge = 0x7f130067
+hanson.xyz.vpnhotspotmod:style/Base.Theme.Material3.Light.Dialog.FixedSize = 0x7f130066
+hanson.xyz.vpnhotspotmod:style/Base.Theme.Material3.Light.BottomSheetDialog = 0x7f130064
+hanson.xyz.vpnhotspotmod:style/Base.Theme.Material3.Light = 0x7f130063
+hanson.xyz.vpnhotspotmod:style/Base.Theme.Material3.Dark.DialogWhenLarge = 0x7f130061
+hanson.xyz.vpnhotspotmod:style/Base.Theme.Material3.Dark.Dialog.FixedSize = 0x7f130060
+hanson.xyz.vpnhotspotmod:style/Base.Theme.Material3.Dark = 0x7f13005d
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat.Light.Dialog.MinWidth = 0x7f13005b
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.HeadlineSmall = 0x7f130212
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat.Light.DarkActionBar = 0x7f130057
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat.Dialog.Alert = 0x7f130052
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat.CompactMenu = 0x7f130050
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f13004d
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.ActionBar = 0x7f1302a2
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow = 0x7f13011c
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ButtonBar = 0x7f1300d7
+hanson.xyz.vpnhotspotmod:style/Base.V21.Theme.MaterialComponents.Dialog = 0x7f1300aa
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f13004c
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.MaterialComponents.Subtitle2 = 0x7f13004b
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.MaterialComponents.Button = 0x7f130049
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f130044
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Large = 0x7f130043
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.HarmonizedColors.Empty = 0x7f1302c9
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.DropDownItem = 0x7f130041
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f130040
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.Button.Colored = 0x7f13003f
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f13003a
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f130039
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f130037
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Tooltip = 0x7f130035
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Title = 0x7f130033
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Subhead.Inverse = 0x7f130032
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Subhead = 0x7f130031
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Small.Inverse = 0x7f130030
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.PopupWindow = 0x7f1300f0
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Small = 0x7f13002f
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.SearchResult.Subtitle = 0x7f13002d
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.SearchResult = 0x7f13002c
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f1301d8
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Menu = 0x7f13002b
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f130028
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Display4 = 0x7f130022
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Body2 = 0x7f13001c
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Badge = 0x7f13021d
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Body1 = 0x7f13001b
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat = 0x7f13001a
+hanson.xyz.vpnhotspotmod:style/Base.MaterialAlertDialog.MaterialComponents.Title.Text = 0x7f130019
+hanson.xyz.vpnhotspotmod:style/Base.MaterialAlertDialog.MaterialComponents.Title.Panel = 0x7f130018
+hanson.xyz.vpnhotspotmod:style/Base.MaterialAlertDialog.MaterialComponents.Title.Icon = 0x7f130017
+hanson.xyz.vpnhotspotmod:style/Base.CardView = 0x7f130014
+hanson.xyz.vpnhotspotmod:style/Base.V24.Theme.Material3.Light.Dialog = 0x7f1300b8
+hanson.xyz.vpnhotspotmod:style/Base.Animation.AppCompat.Tooltip = 0x7f130013
+hanson.xyz.vpnhotspotmod:style/Base.Animation.AppCompat.DropDownUp = 0x7f130012
+hanson.xyz.vpnhotspotmod:style/Base.Animation.AppCompat.Dialog = 0x7f130011
+hanson.xyz.vpnhotspotmod:style/Base.AlertDialog.AppCompat.Light = 0x7f130010
+hanson.xyz.vpnhotspotmod:style/Base.AlertDialog.AppCompat = 0x7f13000f
+hanson.xyz.vpnhotspotmod:style/AppTheme.Preference.MaterialSwitchPreference = 0x7f13000e
+hanson.xyz.vpnhotspotmod:style/AppTheme.ActionBar = 0x7f13000d
+hanson.xyz.vpnhotspotmod:style/Animation.SimpleMenuCenter = 0x7f13000b
+hanson.xyz.vpnhotspotmod:style/Animation.MaterialComponents.BottomSheetDialog = 0x7f13000a
+hanson.xyz.vpnhotspotmod:style/Animation.Material3.SideSheetDialog.Right = 0x7f130009
+hanson.xyz.vpnhotspotmod:style/Animation.Material3.SideSheetDialog.Left = 0x7f130008
+hanson.xyz.vpnhotspotmod:style/Animation.Material3.SideSheetDialog = 0x7f130007
+hanson.xyz.vpnhotspotmod:style/Animation.Material3.BottomSheetDialog = 0x7f130006
+hanson.xyz.vpnhotspotmod:style/Animation.Design.BottomSheetDialog = 0x7f130005
+hanson.xyz.vpnhotspotmod:style/AlertDialog.AppCompat.Light = 0x7f130001
+hanson.xyz.vpnhotspotmod:string/wifi_vendor_elements = 0x7f12017e
+hanson.xyz.vpnhotspotmod:string/wifi_ssid_toggle_hex = 0x7f12017c
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.Material3.Corner.ExtraSmall = 0x7f130195
+hanson.xyz.vpnhotspotmod:string/wifi_security = 0x7f12017a
+hanson.xyz.vpnhotspotmod:string/wifi_mac_randomization_none = 0x7f120175
+hanson.xyz.vpnhotspotmod:string/wifi_mac_randomization_non_persistent = 0x7f120174
+hanson.xyz.vpnhotspotmod:string/wifi_mac_randomization = 0x7f120173
+hanson.xyz.vpnhotspotmod:string/wifi_ieee_80211ax = 0x7f120171
+hanson.xyz.vpnhotspotmod:string/wifi_hotspot_timeout_bridged = 0x7f12016f
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.CircularProgressIndicator.ExtraSmall = 0x7f13042c
+hanson.xyz.vpnhotspotmod:string/wifi_hotspot_auto_off = 0x7f12016c
+hanson.xyz.vpnhotspotmod:string/wifi_hotspot_ap_band_title = 0x7f12016b
+hanson.xyz.vpnhotspotmod:string/wifi_hotspot_ap_advanced_title = 0x7f12016a
+hanson.xyz.vpnhotspotmod:string/wifi_hotspot_acs_channel_6g = 0x7f120169
+hanson.xyz.vpnhotspotmod:string/wifi_hotspot_acs_channel_5g = 0x7f120168
+hanson.xyz.vpnhotspotmod:string/wifi_hotspot_acs_channel_2g = 0x7f120167
+hanson.xyz.vpnhotspotmod:string/wifi_hotspot_access_control_title = 0x7f120166
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.Material3.Dark.BottomSheetDialog = 0x7f13008e
+hanson.xyz.vpnhotspotmod:string/wifi_blocked_list = 0x7f120162
+hanson.xyz.vpnhotspotmod:string/wifi_ap_choose_G = 0x7f120160
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day = 0x7f1301b5
+hanson.xyz.vpnhotspotmod:string/v7_preference_off = 0x7f12015b
+hanson.xyz.vpnhotspotmod:string/title_tethering = 0x7f120159
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.Dialog.MinWidth.Bridge = 0x7f130278
+hanson.xyz.vpnhotspotmod:string/tethering_temp_hotspot_failure_tethering_disallowed = 0x7f120155
+hanson.xyz.vpnhotspotmod:string/tethering_manage_wifi_supported_channels = 0x7f12014d
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.NavigationRailView.ActiveIndicator = 0x7f1303d9
+hanson.xyz.vpnhotspotmod:string/tethering_manage_wifi_info_timeout_enabled = 0x7f12014b
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Design.Tab = 0x7f1301f8
+hanson.xyz.vpnhotspotmod:string/tethering_manage_wifi_info = 0x7f120149
+hanson.xyz.vpnhotspotmod:string/tethering_manage_wifi_feature_sta_bridged_ap_concurrency = 0x7f120148
+hanson.xyz.vpnhotspotmod:string/tethering_manage_wifi_feature_sta_ap_concurrency = 0x7f120147
+hanson.xyz.vpnhotspotmod:string/tethering_manage_wifi_feature_bridged_ap_concurrency = 0x7f120146
+hanson.xyz.vpnhotspotmod:string/tethering_manage_wifi_feature_ap_mac_randomization = 0x7f120145
+hanson.xyz.vpnhotspotmod:string/tethering_manage_wifi_client_blocked = 0x7f120142
+hanson.xyz.vpnhotspotmod:string/tethering_manage_usb = 0x7f120140
+hanson.xyz.vpnhotspotmod:string/tethering_manage_bluetooth = 0x7f12013c
+hanson.xyz.vpnhotspotmod:string/status_bar_notification_info_overflow = 0x7f120138
+hanson.xyz.vpnhotspotmod:string/settings_upstream_fallback_auto = 0x7f120135
+hanson.xyz.vpnhotspotmod:string/settings_upstream_fallback = 0x7f120134
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.LabelMedium = 0x7f130214
+hanson.xyz.vpnhotspotmod:string/settings_system_tether_offload_summary = 0x7f120132
+hanson.xyz.vpnhotspotmod:string/settings_system_tether_offload = 0x7f120131
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Medium = 0x7f1301ca
+hanson.xyz.vpnhotspotmod:string/settings_service_wifi_lock_low_latency = 0x7f12012f
+hanson.xyz.vpnhotspotmod:string/settings_service_wifi_lock_high_perf_v29 = 0x7f12012e
+hanson.xyz.vpnhotspotmod:string/settings_service_wifi_lock_high_perf = 0x7f12012d
+hanson.xyz.vpnhotspotmod:string/settings_service_wifi_lock_full = 0x7f12012c
+hanson.xyz.vpnhotspotmod:string/settings_service_wifi_lock = 0x7f12012b
+hanson.xyz.vpnhotspotmod:string/settings_service_upstream_monitor_summary = 0x7f12012a
+hanson.xyz.vpnhotspotmod:string/settings_service_upstream_monitor = 0x7f120129
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.Day.Today = 0x7f13043d
+hanson.xyz.vpnhotspotmod:string/settings_service_upstream_auto = 0x7f120128
+hanson.xyz.vpnhotspotmod:string/settings_service_upstream = 0x7f120127
+hanson.xyz.vpnhotspotmod:string/settings_service_repeater_safe_mode_summary = 0x7f120123
+hanson.xyz.vpnhotspotmod:string/settings_service_repeater_safe_mode = 0x7f120122
+hanson.xyz.vpnhotspotmod:string/settings_service_masquerade_netd = 0x7f12011f
+hanson.xyz.vpnhotspotmod:string/settings_service_ip_monitor_poll = 0x7f12011c
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Design.Hint = 0x7f1301f3
+hanson.xyz.vpnhotspotmod:string/settings_service_ip_monitor_monitor = 0x7f12011a
+hanson.xyz.vpnhotspotmod:string/settings_service_disable_ipv6_summary = 0x7f120118
+hanson.xyz.vpnhotspotmod:string/settings_service_disable_ipv6 = 0x7f120117
+hanson.xyz.vpnhotspotmod:string/settings_service_clean_summary = 0x7f120114
+hanson.xyz.vpnhotspotmod:string/settings_service_clean = 0x7f120113
+hanson.xyz.vpnhotspotmod:string/settings_service_auto_start_summary = 0x7f120112
+hanson.xyz.vpnhotspotmod:string/tethering_temp_hotspot_failure = 0x7f120151
+hanson.xyz.vpnhotspotmod:string/settings_service_auto_start = 0x7f120111
+hanson.xyz.vpnhotspotmod:string/settings_misc_source = 0x7f12010e
+hanson.xyz.vpnhotspotmod:string/settings_misc_logcat = 0x7f12010c
+hanson.xyz.vpnhotspotmod:string/settings_misc_donate_summary = 0x7f12010b
+hanson.xyz.vpnhotspotmod:string/settings_misc_donate = 0x7f120109
+hanson.xyz.vpnhotspotmod:string/settings_misc = 0x7f120108
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ListView = 0x7f13033b
+hanson.xyz.vpnhotspotmod:string/settings_exit_app = 0x7f120106
+hanson.xyz.vpnhotspotmod:string/settings_downstream = 0x7f120105
+hanson.xyz.vpnhotspotmod:string/searchview_navigation_content_description = 0x7f120104
+hanson.xyz.vpnhotspotmod:string/searchview_clear_text_content_description = 0x7f120103
+hanson.xyz.vpnhotspotmod:string/searchbar_scrolling_view_behavior = 0x7f120102
+hanson.xyz.vpnhotspotmod:string/search_menu_title = 0x7f120101
+hanson.xyz.vpnhotspotmod:string/repeater_wps_success_pbc = 0x7f120100
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Dialog.FixedSize = 0x7f13006f
+hanson.xyz.vpnhotspotmod:string/repeater_wps_success_keypad = 0x7f1200ff
+hanson.xyz.vpnhotspotmod:string/repeater_wps_failure = 0x7f1200fe
+hanson.xyz.vpnhotspotmod:string/repeater_wps = 0x7f1200fb
+hanson.xyz.vpnhotspotmod:string/repeater_set_oc_failure = 0x7f1200f9
+hanson.xyz.vpnhotspotmod:string/repeater_remove_old_group_failure = 0x7f1200f8
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.Day = 0x7f13043a
+hanson.xyz.vpnhotspotmod:string/repeater_p2p_unavailable_enable = 0x7f1200f6
+hanson.xyz.vpnhotspotmod:string/repeater_p2p_unavailable = 0x7f1200f5
+hanson.xyz.vpnhotspotmod:string/repeater_failure_reason_p2p_unsupported = 0x7f1200f0
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.AppBarLayout = 0x7f130361
+hanson.xyz.vpnhotspotmod:string/repeater_failure_reason_error = 0x7f1200ee
+hanson.xyz.vpnhotspotmod:string/project_id = 0x7f1200e8
+hanson.xyz.vpnhotspotmod:string/wifi_hidden_network = 0x7f120165
+hanson.xyz.vpnhotspotmod:string/preferences_license_summary = 0x7f1200e7
+hanson.xyz.vpnhotspotmod:string/path_password_eye_mask_visible = 0x7f1200e3
+hanson.xyz.vpnhotspotmod:string/oss_license_title = 0x7f1200df
+hanson.xyz.vpnhotspotmod:string/notification_tethering_title = 0x7f1200de
+hanson.xyz.vpnhotspotmod:string/notification_channel_tethering = 0x7f1200dc
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.TabLayout = 0x7f130112
+hanson.xyz.vpnhotspotmod:string/notification_channel_monitor = 0x7f1200db
+hanson.xyz.vpnhotspotmod:string/not_set = 0x7f1200da
+hanson.xyz.vpnhotspotmod:string/no_licenses_available = 0x7f1200d8
+hanson.xyz.vpnhotspotmod:string/mtrl_timepicker_cancel = 0x7f1200d6
+hanson.xyz.vpnhotspotmod:string/mtrl_switch_thumb_path_unchecked = 0x7f1200d3
+hanson.xyz.vpnhotspotmod:string/mtrl_switch_thumb_path_name = 0x7f1200d1
+hanson.xyz.vpnhotspotmod:string/mtrl_switch_thumb_group_name = 0x7f1200ce
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_toggle_to_year_selection = 0x7f1200cd
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.Light.Dialog.MinWidth = 0x7f130243
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_toggle_to_calendar_input_mode = 0x7f1200ca
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_text_input_year_abbr = 0x7f1200c8
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Toolbar = 0x7f1303ff
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_text_input_date_range_start_hint = 0x7f1200c5
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_text_input_date_hint = 0x7f1200c3
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_start_date_description = 0x7f1200c2
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_save = 0x7f1200c1
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.Material3.SideSheetDialog = 0x7f130086
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_range_header_title = 0x7f1200bf
+hanson.xyz.vpnhotspotmod:string/settings_service_masquerade_none = 0x7f120120
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_range_header_only_end_selected = 0x7f1200bc
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_out_of_range = 0x7f1200bb
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_navigate_to_current_year_description = 0x7f1200b9
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_invalid_range = 0x7f1200b8
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_end_date_description = 0x7f1200b4
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_date_header_title = 0x7f1200b1
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_announce_current_selection_none = 0x7f1200ad
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_a11y_prev_month = 0x7f1200aa
+hanson.xyz.vpnhotspotmod:string/mtrl_exceed_max_badge_number_suffix = 0x7f1200a8
+hanson.xyz.vpnhotspotmod:string/mtrl_chip_close_icon_content_description = 0x7f1200a6
+hanson.xyz.vpnhotspotmod:string/mtrl_checkbox_state_description_unchecked = 0x7f1200a5
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton = 0x7f130449
+hanson.xyz.vpnhotspotmod:string/mtrl_checkbox_state_description_indeterminate = 0x7f1200a4
+hanson.xyz.vpnhotspotmod:string/mtrl_checkbox_state_description_checked = 0x7f1200a3
+hanson.xyz.vpnhotspotmod:string/mtrl_checkbox_button_path_unchecked = 0x7f1200a2
+hanson.xyz.vpnhotspotmod:string/mtrl_checkbox_button_path_name = 0x7f1200a1
+hanson.xyz.vpnhotspotmod:string/mtrl_checkbox_button_icon_path_name = 0x7f12009e
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.Material3.Body.Text = 0x7f130129
+hanson.xyz.vpnhotspotmod:string/repeater_failure_reason_no_service_requests = 0x7f1200ef
+hanson.xyz.vpnhotspotmod:string/mtrl_checkbox_button_icon_path_indeterminate = 0x7f12009d
+hanson.xyz.vpnhotspotmod:string/mtrl_checkbox_button_icon_path_checked = 0x7f12009b
+hanson.xyz.vpnhotspotmod:string/mtrl_badge_numberless_content_description = 0x7f12009a
+hanson.xyz.vpnhotspotmod:string/material_timepicker_select_time = 0x7f120098
+hanson.xyz.vpnhotspotmod:string/material_timepicker_minute = 0x7f120096
+hanson.xyz.vpnhotspotmod:string/material_timepicker_clock_mode_description = 0x7f120094
+hanson.xyz.vpnhotspotmod:string/material_timepicker_am = 0x7f120093
+hanson.xyz.vpnhotspotmod:string/material_slider_value = 0x7f120092
+hanson.xyz.vpnhotspotmod:string/material_slider_range_start = 0x7f120091
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ProgressBar = 0x7f130341
+hanson.xyz.vpnhotspotmod:string/material_slider_range_end = 0x7f120090
+hanson.xyz.vpnhotspotmod:string/material_motion_easing_standard = 0x7f12008f
+hanson.xyz.vpnhotspotmod:string/material_motion_easing_emphasized = 0x7f12008d
+hanson.xyz.vpnhotspotmod:string/material_motion_easing_decelerated = 0x7f12008c
+hanson.xyz.vpnhotspotmod:string/material_motion_easing_accelerated = 0x7f12008b
+hanson.xyz.vpnhotspotmod:string/material_minute_suffix = 0x7f12008a
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.BottomSheetDialog = 0x7f130286
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.DayNight.Dialog.MinWidth = 0x7f130259
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat.Dialog.FixedSize = 0x7f130053
+hanson.xyz.vpnhotspotmod:string/material_minute_selection = 0x7f120089
+hanson.xyz.vpnhotspotmod:string/material_hour_24h_suffix = 0x7f120086
+hanson.xyz.vpnhotspotmod:string/material_clock_toggle_content_description = 0x7f120085
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.PopupMenu.ContextMenu = 0x7f130459
+hanson.xyz.vpnhotspotmod:string/m3_sys_motion_easing_standard_decelerate = 0x7f120083
+hanson.xyz.vpnhotspotmod:string/m3_sys_motion_easing_legacy_decelerate = 0x7f12007f
+hanson.xyz.vpnhotspotmod:string/m3_sys_motion_easing_legacy = 0x7f12007d
+hanson.xyz.vpnhotspotmod:string/m3_sys_motion_easing_emphasized_accelerate = 0x7f12007a
+hanson.xyz.vpnhotspotmod:string/m3_ref_typeface_plain_regular = 0x7f120078
+hanson.xyz.vpnhotspotmod:string/m3_ref_typeface_plain_medium = 0x7f120077
+hanson.xyz.vpnhotspotmod:string/m3_ref_typeface_brand_regular = 0x7f120076
+hanson.xyz.vpnhotspotmod:string/m3_ref_typeface_brand_medium = 0x7f120075
+hanson.xyz.vpnhotspotmod:string/m3_exceed_max_badge_text_suffix = 0x7f120074
+hanson.xyz.vpnhotspotmod:string/license_list_is_loading = 0x7f120073
+hanson.xyz.vpnhotspotmod:string/settings_restart_required = 0x7f120110
+hanson.xyz.vpnhotspotmod:string/license_is_loading = 0x7f120072
+hanson.xyz.vpnhotspotmod:string/license_content_error = 0x7f120071
+hanson.xyz.vpnhotspotmod:string/hide_bottom_view_on_scroll_behavior = 0x7f12006e
+hanson.xyz.vpnhotspotmod:string/google_storage_bucket = 0x7f12006d
+hanson.xyz.vpnhotspotmod:string/google_crash_reporting_api_key = 0x7f12006c
+hanson.xyz.vpnhotspotmod:string/google_app_id = 0x7f12006b
+hanson.xyz.vpnhotspotmod:styleable/KeyFrame = 0x7f140045
+hanson.xyz.vpnhotspotmod:string/google_api_key = 0x7f12006a
+hanson.xyz.vpnhotspotmod:string/fallback_menu_item_share_link = 0x7f120067
+hanson.xyz.vpnhotspotmod:string/settings_service_masquerade = 0x7f12011e
+hanson.xyz.vpnhotspotmod:string/fallback_menu_item_open_in_browser = 0x7f120066
+hanson.xyz.vpnhotspotmod:styleable/NavigationBarView = 0x7f14006f
+hanson.xyz.vpnhotspotmod:styleable/KeyCycle = 0x7f140044
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f13007f
+hanson.xyz.vpnhotspotmod:string/fallback_menu_item_copy_link = 0x7f120065
+hanson.xyz.vpnhotspotmod:string/fab_transformation_sheet_behavior = 0x7f120063
+hanson.xyz.vpnhotspotmod:string/exposed_dropdown_menu_content_description = 0x7f120061
+hanson.xyz.vpnhotspotmod:string/expand_button_title = 0x7f120060
+hanson.xyz.vpnhotspotmod:string/exception_interface_not_found = 0x7f12005f
+hanson.xyz.vpnhotspotmod:string/error_a11y_label = 0x7f12005d
+hanson.xyz.vpnhotspotmod:string/donations__thanks_dialog = 0x7f12005c
+hanson.xyz.vpnhotspotmod:string/donations__google_android_market_donate_button = 0x7f120059
+hanson.xyz.vpnhotspotmod:string/donations__description = 0x7f120056
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.PopupMenu = 0x7f13011a
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.Material3.Dark.Dialog = 0x7f13008f
+hanson.xyz.vpnhotspotmod:string/donations__button_close = 0x7f120055
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Headline5 = 0x7f130227
+hanson.xyz.vpnhotspotmod:string/default_web_client_id = 0x7f120054
+hanson.xyz.vpnhotspotmod:string/copy_toast_msg = 0x7f120053
+hanson.xyz.vpnhotspotmod:style/Preference.Information.Material = 0x7f130155
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ActionBar.Solid = 0x7f1300c7
+hanson.xyz.vpnhotspotmod:string/connected_state_valid = 0x7f120051
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.AutoCompleteTextView = 0x7f1302a3
+hanson.xyz.vpnhotspotmod:string/connected_state_incomplete = 0x7f120050
+hanson.xyz.vpnhotspotmod:string/configuration_invalid = 0x7f12004b
+hanson.xyz.vpnhotspotmod:string/common_open_on_phone = 0x7f120048
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_updating_text = 0x7f120046
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_update_button = 0x7f120043
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_unknown_issue = 0x7f120041
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_notification_ticker = 0x7f120040
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_notification_channel_name = 0x7f12003f
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_install_title = 0x7f12003e
+hanson.xyz.vpnhotspotmod:string/repeater_set_vendor_elements_failure = 0x7f1200fa
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_install_button = 0x7f12003c
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_enable_title = 0x7f12003b
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_enable_text = 0x7f12003a
+hanson.xyz.vpnhotspotmod:string/clients_stats_title = 0x7f120037
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Inverse = 0x7f130024
+hanson.xyz.vpnhotspotmod:string/clients_popup_block_service_inactive = 0x7f120033
+hanson.xyz.vpnhotspotmod:style/Widget.Design.TextInputEditText = 0x7f13035d
+hanson.xyz.vpnhotspotmod:string/clients_popup_block = 0x7f120032
+hanson.xyz.vpnhotspotmod:string/clients_nickname_set_to_vendor = 0x7f120030
+hanson.xyz.vpnhotspotmod:string/character_counter_pattern = 0x7f12002d
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Sys.Shape.Corner.ExtraSmall = 0x7f13018e
+hanson.xyz.vpnhotspotmod:string/character_counter_overflowed_content_description = 0x7f12002c
+hanson.xyz.vpnhotspotmod:string/character_counter_content_description = 0x7f12002b
+hanson.xyz.vpnhotspotmod:styleable/AnimatedStateListDrawableItem = 0x7f14000a
+hanson.xyz.vpnhotspotmod:string/call_notification_screening_text = 0x7f12002a
+hanson.xyz.vpnhotspotmod:string/call_notification_incoming_text = 0x7f120028
+hanson.xyz.vpnhotspotmod:string/call_notification_answer_video_action = 0x7f120025
+hanson.xyz.vpnhotspotmod:string/bottomsheet_action_expand_halfway = 0x7f120021
+hanson.xyz.vpnhotspotmod:string/app_name = 0x7f12001c
+hanson.xyz.vpnhotspotmod:string/androidx_startup = 0x7f12001b
+hanson.xyz.vpnhotspotmod:string/abc_shareactionprovider_share_with_application = 0x7f120019
+hanson.xyz.vpnhotspotmod:string/abc_searchview_description_search = 0x7f120015
+hanson.xyz.vpnhotspotmod:string/abc_search_hint = 0x7f120012
+hanson.xyz.vpnhotspotmod:string/abc_menu_sym_shortcut_label = 0x7f120010
+hanson.xyz.vpnhotspotmod:string/abc_menu_delete_shortcut_label = 0x7f12000a
+hanson.xyz.vpnhotspotmod:string/abc_menu_alt_shortcut_label = 0x7f120008
+hanson.xyz.vpnhotspotmod:string/abc_activitychooserview_choose_application = 0x7f120005
+hanson.xyz.vpnhotspotmod:string/abc_activity_chooser_view_see_all = 0x7f120004
+hanson.xyz.vpnhotspotmod:string/abc_action_mode_done = 0x7f120003
+hanson.xyz.vpnhotspotmod:string/abc_action_bar_up_description = 0x7f120001
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.HeadlineLarge = 0x7f1301ff
+hanson.xyz.vpnhotspotmod:raw/third_party_licenses = 0x7f110005
+hanson.xyz.vpnhotspotmod:raw/third_party_license_metadata = 0x7f110004
+hanson.xyz.vpnhotspotmod:raw/keep_third_party_licenses = 0x7f110003
+hanson.xyz.vpnhotspotmod:raw/firebase_common_keep = 0x7f110002
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_announce_current_range_selection = 0x7f1200ab
+hanson.xyz.vpnhotspotmod:plurals/tethering_manage_wifi_capabilities = 0x7f100007
+hanson.xyz.vpnhotspotmod:plurals/mtrl_badge_content_description = 0x7f100003
+hanson.xyz.vpnhotspotmod:plurals/clients_stats_message_3 = 0x7f100002
+hanson.xyz.vpnhotspotmod:plurals/clients_stats_message_1 = 0x7f100000
+hanson.xyz.vpnhotspotmod:mipmap/ic_launcher = 0x7f0f0002
+hanson.xyz.vpnhotspotmod:mipmap/banner = 0x7f0f0001
+hanson.xyz.vpnhotspotmod:mipmap/$banner__0 = 0x7f0f0000
+hanson.xyz.vpnhotspotmod:menu/toolbar_tethering = 0x7f0e0003
+hanson.xyz.vpnhotspotmod:menu/navigation = 0x7f0e0000
+hanson.xyz.vpnhotspotmod:macro/m3_sys_color_dark_surface_tint = 0x7f0d0176
+hanson.xyz.vpnhotspotmod:macro/m3_comp_top_app_bar_small_container_color = 0x7f0d0170
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_time_selector_unselected_focus_state_layer_color = 0x7f0d0169
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu = 0x7f13046b
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.TimePicker.Display.TextInputEditText = 0x7f130305
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_time_selector_unselected_container_color = 0x7f0d0168
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.Material3.MediumComponent = 0x7f13019c
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_time_selector_selected_focus_state_layer_color = 0x7f0d0162
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_time_selector_selected_container_color = 0x7f0d0161
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_time_selector_label_text_type = 0x7f0d0160
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_period_selector_unselected_label_text_color = 0x7f0d015d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_period_selector_unselected_hover_state_layer_color = 0x7f0d015c
+hanson.xyz.vpnhotspotmod:styleable/TabLayout = 0x7f14009d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_period_selector_unselected_focus_state_layer_color = 0x7f0d015b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_period_selector_selected_pressed_state_layer_color = 0x7f0d015a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_period_selector_selected_hover_state_layer_color = 0x7f0d0158
+hanson.xyz.vpnhotspotmod:string/clients_nickname_title = 0x7f120031
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_period_selector_selected_focus_state_layer_color = 0x7f0d0157
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.MaterialComponents.Chip = 0x7f1301b2
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_period_selector_selected_container_color = 0x7f0d0156
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_period_selector_outline_color = 0x7f0d0155
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_period_selector_label_text_type = 0x7f0d0154
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_clock_dial_selector_handle_container_color = 0x7f0d014e
+hanson.xyz.vpnhotspotmod:string/title_repeater = 0x7f120157
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_clock_dial_color = 0x7f0d014d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_input_time_input_field_supporting_text_type = 0x7f0d014c
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ImageButton = 0x7f130322
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_input_time_input_field_supporting_text_color = 0x7f0d014b
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ActionBar.TabView = 0x7f1300ca
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_input_time_input_field_focus_outline_color = 0x7f0d0149
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_input_time_input_field_container_shape = 0x7f0d0148
+hanson.xyz.vpnhotspotmod:macro/m3_comp_text_button_label_text_color = 0x7f0d0145
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_track_outline_color = 0x7f0d0142
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_pressed_state_layer_color = 0x7f0d013e
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_pressed_icon_color = 0x7f0d013d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_hover_track_outline_color = 0x7f0d013a
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ImageButton = 0x7f1300e0
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_hover_track_color = 0x7f0d0139
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ListMenuView = 0x7f130339
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_focus_track_color = 0x7f0d0133
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.TextButton.Icon = 0x7f13037f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_focus_state_layer_color = 0x7f0d0132
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_focus_icon_color = 0x7f0d0131
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_pressed_state_layer_color = 0x7f0d012d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_pressed_icon_color = 0x7f0d012c
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_icon_color = 0x7f0d012a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_hover_track_color = 0x7f0d0129
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_hover_state_layer_color = 0x7f0d0128
+hanson.xyz.vpnhotspotmod:styleable/ColorStateListItem = 0x7f140028
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_hover_handle_color = 0x7f0d0126
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Dialog.MinWidth = 0x7f130070
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_handle_color = 0x7f0d0125
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_focus_icon_color = 0x7f0d0122
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_disabled_unselected_track_color = 0x7f0d011f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_disabled_unselected_track_outline_color = 0x7f0d0120
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_disabled_unselected_icon_color = 0x7f0d011e
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.NavigationView = 0x7f1303db
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialButtonToggleGroup = 0x7f1303b5
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_disabled_unselected_handle_color = 0x7f0d011d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_suggestion_chip_label_text_type = 0x7f0d0119
+hanson.xyz.vpnhotspotmod:macro/m3_comp_snackbar_supporting_text_color = 0x7f0d0116
+hanson.xyz.vpnhotspotmod:macro/m3_comp_slider_label_container_color = 0x7f0d0112
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.Dark.ActionBar = 0x7f1302ee
+hanson.xyz.vpnhotspotmod:macro/m3_comp_slider_inactive_track_color = 0x7f0d0111
+hanson.xyz.vpnhotspotmod:macro/m3_comp_slider_handle_color = 0x7f0d0110
+hanson.xyz.vpnhotspotmod:macro/m3_comp_slider_disabled_active_track_color = 0x7f0d010d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_slider_active_track_color = 0x7f0d010c
+hanson.xyz.vpnhotspotmod:macro/m3_comp_sheet_side_docked_modal_container_shape = 0x7f0d010a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_sheet_side_docked_modal_container_color = 0x7f0d0109
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialTimePicker.Display.Divider = 0x7f1303d3
+hanson.xyz.vpnhotspotmod:macro/m3_comp_sheet_side_detached_container_shape = 0x7f0d0108
+hanson.xyz.vpnhotspotmod:macro/m3_comp_sheet_bottom_docked_drag_handle_color = 0x7f0d0107
+hanson.xyz.vpnhotspotmod:macro/m3_comp_sheet_bottom_docked_container_shape = 0x7f0d0106
+hanson.xyz.vpnhotspotmod:string/copy = 0x7f120052
+hanson.xyz.vpnhotspotmod:macro/m3_comp_secondary_navigation_tab_with_icon_inactive_icon_color = 0x7f0d0104
+hanson.xyz.vpnhotspotmod:macro/m3_comp_secondary_navigation_tab_with_icon_active_icon_color = 0x7f0d0103
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_cancel = 0x7f1200ae
+hanson.xyz.vpnhotspotmod:macro/m3_comp_secondary_navigation_tab_label_text_type = 0x7f0d0101
+hanson.xyz.vpnhotspotmod:macro/m3_comp_secondary_navigation_tab_inactive_label_text_color = 0x7f0d0100
+hanson.xyz.vpnhotspotmod:macro/m3_comp_secondary_navigation_tab_focus_state_layer_color = 0x7f0d00fe
+hanson.xyz.vpnhotspotmod:macro/m3_comp_secondary_navigation_tab_active_label_text_color = 0x7f0d00fc
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_view_header_supporting_text_color = 0x7f0d00f8
+hanson.xyz.vpnhotspotmod:string/donations__google_android_market_not_supported = 0x7f12005a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_view_header_leading_icon_color = 0x7f0d00f7
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_view_header_input_text_type = 0x7f0d00f6
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_view_header_input_text_color = 0x7f0d00f5
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_view_docked_container_shape = 0x7f0d00f4
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_view_container_color = 0x7f0d00f2
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_bar_supporting_text_type = 0x7f0d00f0
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Toolbar.Surface = 0x7f1302df
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_bar_input_text_color = 0x7f0d00ea
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_bar_hover_supporting_text_color = 0x7f0d00e9
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_bar_container_color = 0x7f0d00e7
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Light.DialogWhenLarge = 0x7f13007b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_unselected_icon_color = 0x7f0d00e4
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_unselected_hover_icon_color = 0x7f0d00e2
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_unselected_focus_icon_color = 0x7f0d00e0
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_selected_hover_icon_color = 0x7f0d00db
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_selected_focus_icon_color = 0x7f0d00d9
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_disabled_unselected_icon_color = 0x7f0d00d8
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_disabled_selected_icon_color = 0x7f0d00d7
+hanson.xyz.vpnhotspotmod:macro/m3_comp_primary_navigation_tab_with_icon_active_icon_color = 0x7f0d00d2
+hanson.xyz.vpnhotspotmod:macro/m3_comp_primary_navigation_tab_inactive_pressed_state_layer_color = 0x7f0d00d1
+hanson.xyz.vpnhotspotmod:macro/m3_comp_primary_navigation_tab_inactive_focus_state_layer_color = 0x7f0d00cf
+hanson.xyz.vpnhotspotmod:macro/m3_comp_primary_navigation_tab_container_color = 0x7f0d00ce
+hanson.xyz.vpnhotspotmod:macro/m3_comp_primary_navigation_tab_active_indicator_color = 0x7f0d00cc
+hanson.xyz.vpnhotspotmod:macro/m3_comp_primary_navigation_tab_active_hover_state_layer_color = 0x7f0d00cb
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_outline_color = 0x7f0d00c6
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.DayTextView = 0x7f13043f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_label_text_color = 0x7f0d00c5
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_input_text_type = 0x7f0d00c4
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_input_text_color = 0x7f0d00c3
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_hover_input_text_color = 0x7f0d00c0
+hanson.xyz.vpnhotspotmod:xml/pref_settings = 0x7f150006
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_focus_supporting_text_color = 0x7f0d00bf
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_focus_input_text_color = 0x7f0d00bc
+hanson.xyz.vpnhotspotmod:string/m3_sys_motion_easing_emphasized_decelerate = 0x7f12007b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_disabled_supporting_text_color = 0x7f0d00b8
+hanson.xyz.vpnhotspotmod:styleable/ScrollingViewBehavior_Layout = 0x7f140082
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Large.Inverse = 0x7f1301c5
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_disabled_input_text_color = 0x7f0d00b5
+hanson.xyz.vpnhotspotmod:styleable/DialogPreference = 0x7f140031
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_container_shape = 0x7f0d00b4
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_caret_color = 0x7f0d00b3
+hanson.xyz.vpnhotspotmod:styleable/Transform = 0x7f1400a5
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_card_pressed_outline_color = 0x7f0d00b2
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_card_outline_color = 0x7f0d00b1
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_card_dragged_outline_color = 0x7f0d00ae
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_button_outline_color = 0x7f0d00a9
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_button_disabled_outline_color = 0x7f0d00a6
+hanson.xyz.vpnhotspotmod:style/Platform.Widget.AppCompat.Spinner = 0x7f130148
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_invalid_format_use = 0x7f1200b7
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_autocomplete_text_field_input_text_type = 0x7f0d00a5
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_rail_label_text_type = 0x7f0d00a2
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_rail_inactive_pressed_state_layer_color = 0x7f0d00a1
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_rail_inactive_label_text_color = 0x7f0d00a0
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_rail_inactive_hover_state_layer_color = 0x7f0d009e
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.FloatingActionButton.Surface = 0x7f1302c6
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_rail_inactive_focus_state_layer_color = 0x7f0d009d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_rail_container_color = 0x7f0d009c
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CompoundButton.CheckBox = 0x7f13039a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_rail_active_pressed_state_layer_color = 0x7f0d009b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_top_app_bar_large_headline_color = 0x7f0d016c
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_rail_active_label_text_color = 0x7f0d009a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_rail_active_indicator_color = 0x7f0d0099
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_rail_active_icon_color = 0x7f0d0098
+hanson.xyz.vpnhotspotmod:styleable/SeekBarPreference = 0x7f140085
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_rail_active_hover_state_layer_color = 0x7f0d0097
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_rail_active_focus_state_layer_color = 0x7f0d0096
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_modal_container_color = 0x7f0d0095
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_error_trailing_icon_color = 0x7f0d00bb
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_inactive_pressed_label_text_color = 0x7f0d0092
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_inactive_pressed_icon_color = 0x7f0d0091
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TabLayout.PrimarySurface = 0x7f130464
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.AppCompat.Light = 0x7f130082
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_inactive_icon_color = 0x7f0d008f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_inactive_hover_state_layer_color = 0x7f0d008e
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Headline1 = 0x7f130223
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_inactive_hover_label_text_color = 0x7f0d008d
+hanson.xyz.vpnhotspotmod:style/Widget.Design.BottomSheet.Modal = 0x7f130356
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ActionButton.CloseMode = 0x7f1300cc
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_inactive_focus_state_layer_color = 0x7f0d008b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_inactive_focus_label_text_color = 0x7f0d008a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_inactive_focus_icon_color = 0x7f0d0089
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_headline_type = 0x7f0d0088
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_active_pressed_state_layer_color = 0x7f0d0086
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.Dialog.FixedSize.Bridge = 0x7f130276
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_active_pressed_label_text_color = 0x7f0d0085
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.Switch = 0x7f130045
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_active_pressed_icon_color = 0x7f0d0084
+hanson.xyz.vpnhotspotmod:string/m3_sys_motion_easing_legacy_accelerate = 0x7f12007e
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_active_label_text_color = 0x7f0d0083
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_active_indicator_color = 0x7f0d0082
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_active_icon_color = 0x7f0d0081
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_active_hover_state_layer_color = 0x7f0d0080
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_active_focus_icon_color = 0x7f0d007b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_label_text_type = 0x7f0d007a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_inactive_pressed_state_layer_color = 0x7f0d0079
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_inactive_pressed_icon_color = 0x7f0d0077
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_inactive_hover_state_layer_color = 0x7f0d0074
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_inactive_hover_label_text_color = 0x7f0d0073
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_inactive_hover_icon_color = 0x7f0d0072
+hanson.xyz.vpnhotspotmod:string/wifi_password = 0x7f120178
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_inactive_focus_state_layer_color = 0x7f0d0071
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_focus_outline_color = 0x7f0d00be
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_inactive_focus_label_text_color = 0x7f0d0070
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_container_color = 0x7f0d006e
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_active_pressed_state_layer_color = 0x7f0d006d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_active_pressed_label_text_color = 0x7f0d006c
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_active_hover_label_text_color = 0x7f0d0066
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_update_text = 0x7f120044
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_active_hover_icon_color = 0x7f0d0065
+hanson.xyz.vpnhotspotmod:string/wifi_user_config = 0x7f12017d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_active_focus_state_layer_color = 0x7f0d0064
+hanson.xyz.vpnhotspotmod:macro/m3_comp_menu_container_color = 0x7f0d0060
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.Day.Today = 0x7f1303ba
+hanson.xyz.vpnhotspotmod:string/m3_sys_motion_easing_standard = 0x7f120081
+hanson.xyz.vpnhotspotmod:macro/m3_comp_linear_progress_indicator_track_color = 0x7f0d005f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_input_chip_label_text_type = 0x7f0d005d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_input_chip_container_shape = 0x7f0d005c
+hanson.xyz.vpnhotspotmod:macro/m3_comp_icon_button_unselected_icon_color = 0x7f0d005b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_icon_button_selected_icon_color = 0x7f0d005a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_inactive_focus_icon_color = 0x7f0d006f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_tonal_icon_button_toggle_unselected_icon_color = 0x7f0d0057
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_tonal_icon_button_container_color = 0x7f0d0055
+hanson.xyz.vpnhotspotmod:string/repeater_channel = 0x7f1200e9
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_tonal_button_container_color = 0x7f0d0053
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_text_field_supporting_text_type = 0x7f0d0052
+hanson.xyz.vpnhotspotmod:styleable/Layout = 0x7f14004b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_text_field_input_text_type = 0x7f0d0051
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_text_field_error_trailing_icon_color = 0x7f0d0050
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_text_field_error_active_indicator_color = 0x7f0d004e
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_text_field_container_shape = 0x7f0d004d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_text_field_container_color = 0x7f0d004c
+hanson.xyz.vpnhotspotmod:plurals/clients_stats_message_2 = 0x7f100001
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_icon_button_toggle_unselected_icon_color = 0x7f0d004b
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.HeaderSelection = 0x7f1303c2
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_range_header_only_start_selected = 0x7f1200bd
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_card_container_color = 0x7f0d0047
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_button_label_text_type = 0x7f0d0046
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.FloatingActionButton.Tertiary = 0x7f1302c7
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_button_container_color = 0x7f0d0044
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_autocomplete_text_field_input_text_type = 0x7f0d0043
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActionBar.Solid.Inverse = 0x7f130325
+hanson.xyz.vpnhotspotmod:macro/m3_comp_fab_tertiary_icon_color = 0x7f0d0041
+hanson.xyz.vpnhotspotmod:macro/m3_comp_fab_tertiary_container_color = 0x7f0d0040
+hanson.xyz.vpnhotspotmod:macro/m3_comp_fab_surface_icon_color = 0x7f0d003f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_fab_surface_container_color = 0x7f0d003e
+hanson.xyz.vpnhotspotmod:macro/m3_comp_fab_secondary_icon_color = 0x7f0d003d
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Toolbar.Surface = 0x7f13047f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_fab_secondary_container_color = 0x7f0d003c
+hanson.xyz.vpnhotspotmod:macro/m3_comp_fab_primary_small_container_shape = 0x7f0d003b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_fab_primary_icon_color = 0x7f0d0039
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.Year = 0x7f1303c9
+hanson.xyz.vpnhotspotmod:macro/m3_comp_fab_primary_container_color = 0x7f0d0037
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.DayNight.SideSheetDialog = 0x7f13025c
+hanson.xyz.vpnhotspotmod:macro/m3_comp_extended_fab_tertiary_icon_color = 0x7f0d0036
+hanson.xyz.vpnhotspotmod:macro/m3_comp_extended_fab_tertiary_container_color = 0x7f0d0035
+hanson.xyz.vpnhotspotmod:macro/m3_comp_extended_fab_secondary_icon_color = 0x7f0d0032
+hanson.xyz.vpnhotspotmod:macro/m3_comp_extended_fab_secondary_container_color = 0x7f0d0031
+hanson.xyz.vpnhotspotmod:style/Widget.Design.AppBarLayout = 0x7f130354
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Design.TabLayout = 0x7f130100
+hanson.xyz.vpnhotspotmod:macro/m3_comp_extended_fab_primary_container_shape = 0x7f0d002e
+hanson.xyz.vpnhotspotmod:macro/m3_comp_elevated_button_container_color = 0x7f0d002a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_divider_color = 0x7f0d0029
+hanson.xyz.vpnhotspotmod:macro/m3_comp_dialog_headline_type = 0x7f0d0026
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_year_selection_year_selected_container_color = 0x7f0d0020
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.BottomNavigationView.ActiveIndicator = 0x7f13036d
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Button.Small = 0x7f1300d6
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_weekdays_label_text_color = 0x7f0d001e
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_range_selection_month_subhead_type = 0x7f0d001d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_range_selection_month_subhead_color = 0x7f0d001c
+hanson.xyz.vpnhotspotmod:style/Base.Theme.Material3.Dark.BottomSheetDialog = 0x7f13005e
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_range_selection_header_headline_type = 0x7f0d001b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_header_supporting_text_type = 0x7f0d0019
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.DisplayMedium = 0x7f1301fd
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_date_unselected_label_text_color = 0x7f0d0015
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Chip.Entry = 0x7f130428
+hanson.xyz.vpnhotspotmod:string/permission_missing = 0x7f1200e5
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_date_today_container_outline_color = 0x7f0d0013
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_date_selected_container_color = 0x7f0d0011
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_container_color = 0x7f0d000e
+hanson.xyz.vpnhotspotmod:macro/m3_comp_circular_progress_indicator_active_indicator_color = 0x7f0d000d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_checkbox_selected_icon_color = 0x7f0d000b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_top_app_bar_small_trailing_icon_color = 0x7f0d0175
+hanson.xyz.vpnhotspotmod:macro/m3_comp_checkbox_selected_error_icon_color = 0x7f0d000a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_checkbox_selected_container_color = 0x7f0d0006
+hanson.xyz.vpnhotspotmod:macro/m3_comp_bottom_app_bar_container_color = 0x7f0d0005
+hanson.xyz.vpnhotspotmod:styleable/PopupWindow = 0x7f140074
+hanson.xyz.vpnhotspotmod:string/abc_action_bar_home_description = 0x7f120000
+hanson.xyz.vpnhotspotmod:macro/m3_comp_badge_large_label_text_type = 0x7f0d0004
+hanson.xyz.vpnhotspotmod:macro/m3_comp_badge_large_label_text_color = 0x7f0d0003
+hanson.xyz.vpnhotspotmod:string/wifi_ieee_80211be = 0x7f120172
+hanson.xyz.vpnhotspotmod:macro/m3_comp_assist_chip_container_shape = 0x7f0d0000
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.AutoCompleteTextView = 0x7f130115
+hanson.xyz.vpnhotspotmod:layout/support_simple_spinner_dropdown_item = 0x7f0c0094
+hanson.xyz.vpnhotspotmod:layout/simple_menu_list = 0x7f0c0093
+hanson.xyz.vpnhotspotmod:layout/select_dialog_item_material = 0x7f0c008f
+hanson.xyz.vpnhotspotmod:layout/preference_widget_switch_compat = 0x7f0c008e
+hanson.xyz.vpnhotspotmod:layout/preference_widget_switch = 0x7f0c008d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_sheet_side_docked_standard_container_color = 0x7f0d010b
+hanson.xyz.vpnhotspotmod:layout/preference_widget_material_switch = 0x7f0c008a
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense = 0x7f13046a
+hanson.xyz.vpnhotspotmod:layout/preference_widget_checkbox = 0x7f0c0088
+hanson.xyz.vpnhotspotmod:layout/preference_material = 0x7f0c0085
+hanson.xyz.vpnhotspotmod:styleable/FragmentContainerView = 0x7f14003e
+hanson.xyz.vpnhotspotmod:layout/preference_list_fragment = 0x7f0c0084
+hanson.xyz.vpnhotspotmod:layout/preference_information_material = 0x7f0c0083
+hanson.xyz.vpnhotspotmod:layout/preference_dropdown_material = 0x7f0c0081
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Toolbar.OnSurface = 0x7f130400
+hanson.xyz.vpnhotspotmod:string/wifi_client_user_control = 0x7f120164
+hanson.xyz.vpnhotspotmod:layout/preference_dialog_edittext = 0x7f0c007f
+hanson.xyz.vpnhotspotmod:layout/preference = 0x7f0c007c
+hanson.xyz.vpnhotspotmod:layout/notification_template_part_time = 0x7f0c007b
+hanson.xyz.vpnhotspotmod:layout/notification_template_part_chronometer = 0x7f0c007a
+hanson.xyz.vpnhotspotmod:layout/notification_template_icon_group = 0x7f0c0079
+hanson.xyz.vpnhotspotmod:layout/notification_template_custom_big = 0x7f0c0078
+hanson.xyz.vpnhotspotmod:style/Widget.Design.CollapsingToolbar = 0x7f130357
+hanson.xyz.vpnhotspotmod:layout/mtrl_search_view = 0x7f0c0075
+hanson.xyz.vpnhotspotmod:layout/mtrl_picker_text_input_date_range = 0x7f0c0073
+hanson.xyz.vpnhotspotmod:layout/mtrl_picker_header_toggle = 0x7f0c0071
+hanson.xyz.vpnhotspotmod:layout/mtrl_picker_actions = 0x7f0c006a
+hanson.xyz.vpnhotspotmod:layout/mtrl_navigation_rail_item = 0x7f0c0069
+hanson.xyz.vpnhotspotmod:layout/mtrl_layout_snackbar_include = 0x7f0c0068
+hanson.xyz.vpnhotspotmod:string/wifi_ssid = 0x7f12017b
+hanson.xyz.vpnhotspotmod:layout/mtrl_layout_snackbar = 0x7f0c0067
+hanson.xyz.vpnhotspotmod:layout/mtrl_calendar_months = 0x7f0c0064
+hanson.xyz.vpnhotspotmod:layout/mtrl_calendar_month_navigation = 0x7f0c0063
+hanson.xyz.vpnhotspotmod:layout/mtrl_calendar_month = 0x7f0c0061
+hanson.xyz.vpnhotspotmod:layout/mtrl_calendar_horizontal = 0x7f0c0060
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CollapsingToolbar = 0x7f130397
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_invalid_format_example = 0x7f1200b6
+hanson.xyz.vpnhotspotmod:layout/mtrl_calendar_days_of_week = 0x7f0c005f
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f1301d6
+hanson.xyz.vpnhotspotmod:layout/mtrl_calendar_day_of_week = 0x7f0c005e
+hanson.xyz.vpnhotspotmod:layout/mtrl_calendar_day = 0x7f0c005d
+hanson.xyz.vpnhotspotmod:layout/mtrl_alert_select_dialog_multichoice = 0x7f0c005a
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Chip = 0x7f1302b4
+hanson.xyz.vpnhotspotmod:layout/mtrl_alert_dialog_title = 0x7f0c0058
+hanson.xyz.vpnhotspotmod:layout/material_timepicker_dialog = 0x7f0c0054
+hanson.xyz.vpnhotspotmod:layout/material_clockface_view = 0x7f0c004e
+hanson.xyz.vpnhotspotmod:layout/material_clockface_textview = 0x7f0c004d
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Dialog.MinWidth = 0x7f130282
+hanson.xyz.vpnhotspotmod:layout/material_clock_period_toggle_land = 0x7f0c004c
+hanson.xyz.vpnhotspotmod:layout/material_clock_display = 0x7f0c0049
+hanson.xyz.vpnhotspotmod:layout/m3_side_sheet_dialog = 0x7f0c0047
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f130317
+hanson.xyz.vpnhotspotmod:layout/listitem_repeater = 0x7f0c0042
+hanson.xyz.vpnhotspotmod:layout/listitem_manage = 0x7f0c0041
+hanson.xyz.vpnhotspotmod:layout/listitem_interface = 0x7f0c0040
+hanson.xyz.vpnhotspotmod:style/Preference.SwitchPreference = 0x7f13015d
+hanson.xyz.vpnhotspotmod:layout/license_menu_activity_no_licenses = 0x7f0c003e
+hanson.xyz.vpnhotspotmod:layout/libraries_social_licenses_license_menu_activity = 0x7f0c003c
+hanson.xyz.vpnhotspotmod:layout/libraries_social_licenses_license_loading = 0x7f0c003b
+hanson.xyz.vpnhotspotmod:layout/libraries_social_licenses_license = 0x7f0c0039
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_supporting_text_color = 0x7f0d00c7
+hanson.xyz.vpnhotspotmod:layout/ime_secondary_split_test_activity = 0x7f0c0038
+hanson.xyz.vpnhotspotmod:layout/image_frame = 0x7f0c0036
+hanson.xyz.vpnhotspotmod:layout/fragment_tethering = 0x7f0c0035
+hanson.xyz.vpnhotspotmod:layout/fragment_clients = 0x7f0c0033
+hanson.xyz.vpnhotspotmod:layout/dialog_wifi_ap = 0x7f0c0030
+hanson.xyz.vpnhotspotmod:layout/design_text_input_start_icon = 0x7f0c002e
+hanson.xyz.vpnhotspotmod:layout/design_text_input_end_icon = 0x7f0c002d
+hanson.xyz.vpnhotspotmod:layout/design_navigation_menu_item = 0x7f0c002c
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Button.IconButton.Filled = 0x7f1302af
+hanson.xyz.vpnhotspotmod:layout/design_navigation_menu = 0x7f0c002b
+hanson.xyz.vpnhotspotmod:layout/design_navigation_item_subheader = 0x7f0c002a
+hanson.xyz.vpnhotspotmod:layout/design_navigation_item_separator = 0x7f0c0029
+hanson.xyz.vpnhotspotmod:layout/design_navigation_item_header = 0x7f0c0028
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_card_hover_outline_color = 0x7f0d00b0
+hanson.xyz.vpnhotspotmod:layout/design_menu_item_action_area = 0x7f0c0026
+hanson.xyz.vpnhotspotmod:layout/design_layout_tab_text = 0x7f0c0025
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_card_container_color = 0x7f0d00ab
+hanson.xyz.vpnhotspotmod:layout/design_layout_snackbar_include = 0x7f0c0023
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Button = 0x7f13001d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_button_focus_outline_color = 0x7f0d00a7
+hanson.xyz.vpnhotspotmod:layout/design_bottom_sheet_dialog = 0x7f0c0021
+hanson.xyz.vpnhotspotmod:layout/custom_dialog = 0x7f0c001f
+hanson.xyz.vpnhotspotmod:layout/abc_search_dropdown_item_icons_2line = 0x7f0c0018
+hanson.xyz.vpnhotspotmod:layout/abc_screen_toolbar = 0x7f0c0017
+hanson.xyz.vpnhotspotmod:layout/abc_screen_simple = 0x7f0c0015
+hanson.xyz.vpnhotspotmod:layout/abc_screen_content_include = 0x7f0c0014
+hanson.xyz.vpnhotspotmod:styleable/SwitchPreference = 0x7f14009a
+hanson.xyz.vpnhotspotmod:layout/abc_popup_menu_header_item_layout = 0x7f0c0012
+hanson.xyz.vpnhotspotmod:layout/abc_list_menu_item_radio = 0x7f0c0011
+hanson.xyz.vpnhotspotmod:layout/abc_list_menu_item_layout = 0x7f0c0010
+hanson.xyz.vpnhotspotmod:layout/abc_list_menu_item_icon = 0x7f0c000f
+hanson.xyz.vpnhotspotmod:layout/abc_list_menu_item_checkbox = 0x7f0c000e
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ActionMode = 0x7f130311
+hanson.xyz.vpnhotspotmod:layout/abc_expanded_menu_layout = 0x7f0c000d
+hanson.xyz.vpnhotspotmod:layout/abc_alert_dialog_button_bar_material = 0x7f0c0008
+hanson.xyz.vpnhotspotmod:layout/abc_action_mode_close_item_material = 0x7f0c0005
+hanson.xyz.vpnhotspotmod:layout/abc_action_mode_bar = 0x7f0c0004
+hanson.xyz.vpnhotspotmod:layout/abc_action_menu_layout = 0x7f0c0003
+hanson.xyz.vpnhotspotmod:layout/abc_action_bar_up_container = 0x7f0c0001
+hanson.xyz.vpnhotspotmod:layout/abc_action_bar_title_item = 0x7f0c0000
+hanson.xyz.vpnhotspotmod:interpolator/mtrl_fast_out_slow_in = 0x7f0b000f
+hanson.xyz.vpnhotspotmod:string/donations__google_android_market = 0x7f120057
+hanson.xyz.vpnhotspotmod:interpolator/mtrl_fast_out_linear_in = 0x7f0b000e
+hanson.xyz.vpnhotspotmod:interpolator/m3_sys_motion_easing_standard_accelerate = 0x7f0b000c
+hanson.xyz.vpnhotspotmod:interpolator/m3_sys_motion_easing_linear = 0x7f0b000a
+hanson.xyz.vpnhotspotmod:interpolator/m3_sys_motion_easing_emphasized_accelerate = 0x7f0b0008
+hanson.xyz.vpnhotspotmod:layout/abc_popup_menu_item_layout = 0x7f0c0013
+hanson.xyz.vpnhotspotmod:interpolator/m3_sys_motion_easing_emphasized = 0x7f0b0007
+hanson.xyz.vpnhotspotmod:interpolator/btn_radio_to_on_mtrl_animation_interpolator_0 = 0x7f0b0005
+hanson.xyz.vpnhotspotmod:string/path_password_eye = 0x7f1200e1
+hanson.xyz.vpnhotspotmod:interpolator/btn_radio_to_off_mtrl_animation_interpolator_0 = 0x7f0b0004
+hanson.xyz.vpnhotspotmod:style/Platform.MaterialComponents.Light = 0x7f13013f
+hanson.xyz.vpnhotspotmod:interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 0x7f0b0003
+hanson.xyz.vpnhotspotmod:interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 0x7f0b0002
+hanson.xyz.vpnhotspotmod:interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1 = 0x7f0b0001
+hanson.xyz.vpnhotspotmod:integer/status_bar_notification_info_maxnum = 0x7f0a0047
+hanson.xyz.vpnhotspotmod:integer/preferences_header_pane_weight = 0x7f0a0044
+hanson.xyz.vpnhotspotmod:integer/mtrl_switch_track_viewport_width = 0x7f0a003e
+hanson.xyz.vpnhotspotmod:integer/mtrl_switch_thumb_viewport_center_coordinate = 0x7f0a003b
+hanson.xyz.vpnhotspotmod:integer/mtrl_switch_thumb_pressed_duration = 0x7f0a003a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_bar_trailing_icon_color = 0x7f0d00f1
+hanson.xyz.vpnhotspotmod:integer/mtrl_switch_thumb_motion_duration = 0x7f0a0037
+hanson.xyz.vpnhotspotmod:integer/mtrl_chip_anim_duration = 0x7f0a0036
+hanson.xyz.vpnhotspotmod:integer/mtrl_card_anim_duration_ms = 0x7f0a0035
+hanson.xyz.vpnhotspotmod:styleable/MaterialCalendar = 0x7f140057
+hanson.xyz.vpnhotspotmod:integer/mtrl_card_anim_delay_ms = 0x7f0a0034
+hanson.xyz.vpnhotspotmod:integer/mtrl_calendar_year_selector_span = 0x7f0a0033
+hanson.xyz.vpnhotspotmod:integer/mtrl_btn_anim_duration_ms = 0x7f0a0030
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_navigate_to_year_description = 0x7f1200ba
+hanson.xyz.vpnhotspotmod:integer/mtrl_btn_anim_delay_ms = 0x7f0a002f
+hanson.xyz.vpnhotspotmod:integer/mtrl_badge_max_character_count = 0x7f0a002e
+hanson.xyz.vpnhotspotmod:integer/material_motion_duration_short_2 = 0x7f0a002c
+hanson.xyz.vpnhotspotmod:string/side_sheet_behavior = 0x7f120137
+hanson.xyz.vpnhotspotmod:string/password_toggle_content_description = 0x7f1200e0
+hanson.xyz.vpnhotspotmod:integer/material_motion_duration_medium_2 = 0x7f0a002a
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_update_title = 0x7f120045
+hanson.xyz.vpnhotspotmod:layout/material_chip_input_combo = 0x7f0c0048
+hanson.xyz.vpnhotspotmod:integer/material_motion_duration_long_2 = 0x7f0a0028
+hanson.xyz.vpnhotspotmod:integer/material_motion_duration_long_1 = 0x7f0a0027
+hanson.xyz.vpnhotspotmod:integer/m3_sys_shape_corner_full_corner_family = 0x7f0a0023
+hanson.xyz.vpnhotspotmod:integer/m3_sys_shape_corner_extra_small_corner_family = 0x7f0a0022
+hanson.xyz.vpnhotspotmod:style/wifi_item = 0x7f130482
+hanson.xyz.vpnhotspotmod:macro/m3_comp_primary_navigation_tab_with_label_text_active_label_text_color = 0x7f0d00d4
+hanson.xyz.vpnhotspotmod:integer/m3_sys_shape_corner_extra_large_corner_family = 0x7f0a0021
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_path = 0x7f0a0020
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_inactive_pressed_label_text_color = 0x7f0d0078
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_short1 = 0x7f0a001c
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_medium4 = 0x7f0a001b
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_medium3 = 0x7f0a001a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_primary_navigation_tab_active_focus_state_layer_color = 0x7f0d00ca
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_medium2 = 0x7f0a0019
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_long4 = 0x7f0a0017
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Sys.Shape.Corner.Full = 0x7f13018f
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_long3 = 0x7f0a0016
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_long2 = 0x7f0a0015
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_long1 = 0x7f0a0014
+hanson.xyz.vpnhotspotmod:layout/design_layout_snackbar = 0x7f0c0022
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_extra_long2 = 0x7f0a0011
+hanson.xyz.vpnhotspotmod:integer/m3_card_anim_delay_ms = 0x7f0a000d
+hanson.xyz.vpnhotspotmod:integer/m3_btn_anim_duration_ms = 0x7f0a000c
+hanson.xyz.vpnhotspotmod:integer/m3_btn_anim_delay_ms = 0x7f0a000b
+hanson.xyz.vpnhotspotmod:integer/m3_badge_max_number = 0x7f0a000a
+hanson.xyz.vpnhotspotmod:integer/design_tab_indicator_anim_duration_ms = 0x7f0a0007
+hanson.xyz.vpnhotspotmod:integer/design_snackbar_text_max_lines = 0x7f0a0006
+hanson.xyz.vpnhotspotmod:integer/config_tooltipAnimTime = 0x7f0a0005
+hanson.xyz.vpnhotspotmod:integer/cancel_button_image_alpha = 0x7f0a0004
+hanson.xyz.vpnhotspotmod:integer/bottom_sheet_slide_duration = 0x7f0a0003
+hanson.xyz.vpnhotspotmod:integer/app_bar_elevation_anim_duration = 0x7f0a0002
+hanson.xyz.vpnhotspotmod:integer/abc_config_activityShortDur = 0x7f0a0001
+hanson.xyz.vpnhotspotmod:string/repeater_configure_failure = 0x7f1200eb
+hanson.xyz.vpnhotspotmod:integer/abc_config_activityDefaultDur = 0x7f0a0000
+hanson.xyz.vpnhotspotmod:id/wrap_content = 0x7f09022b
+hanson.xyz.vpnhotspotmod:id/wrap = 0x7f09022a
+hanson.xyz.vpnhotspotmod:id/with_icon = 0x7f090228
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_inactive_pressed_state_layer_color = 0x7f0d0093
+hanson.xyz.vpnhotspotmod:id/visible_removing_fragment_view_tag = 0x7f090225
+hanson.xyz.vpnhotspotmod:id/visible = 0x7f090224
+hanson.xyz.vpnhotspotmod:id/view_tree_view_model_store_owner = 0x7f090223
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.AutoCompleteTextView.FilledBox = 0x7f1302a4
+hanson.xyz.vpnhotspotmod:id/view_tree_saved_state_registry_owner = 0x7f090222
+hanson.xyz.vpnhotspotmod:id/view_tree_lifecycle_owner = 0x7f090220
+hanson.xyz.vpnhotspotmod:id/view_offset_helper = 0x7f09021f
+hanson.xyz.vpnhotspotmod:id/withText = 0x7f090227
+hanson.xyz.vpnhotspotmod:id/vendor_elements_wrapper = 0x7f09021e
+hanson.xyz.vpnhotspotmod:id/useLogo = 0x7f09021b
+hanson.xyz.vpnhotspotmod:string/tethering_temp_hotspot_failure_no_channel = 0x7f120154
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_active_hover_state_layer_color = 0x7f0d0067
+hanson.xyz.vpnhotspotmod:id/unlabeled = 0x7f090219
+hanson.xyz.vpnhotspotmod:id/uniform = 0x7f090218
+hanson.xyz.vpnhotspotmod:id/up = 0x7f09021a
+hanson.xyz.vpnhotspotmod:id/unchecked = 0x7f090217
+hanson.xyz.vpnhotspotmod:id/transition_current_scene = 0x7f090210
+hanson.xyz.vpnhotspotmod:id/transitionToStart = 0x7f09020f
+hanson.xyz.vpnhotspotmod:layout/abc_activity_chooser_view = 0x7f0c0006
+hanson.xyz.vpnhotspotmod:id/top = 0x7f09020b
+hanson.xyz.vpnhotspotmod:id/toolbar = 0x7f09020a
+hanson.xyz.vpnhotspotmod:id/titleDividerNoCustom = 0x7f090207
+hanson.xyz.vpnhotspotmod:id/title = 0x7f090206
+hanson.xyz.vpnhotspotmod:id/timeout_wrapper = 0x7f090205
+hanson.xyz.vpnhotspotmod:id/timeout = 0x7f090204
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.PopupMenu = 0x7f130335
+hanson.xyz.vpnhotspotmod:style/BasePreferenceThemeOverlay = 0x7f130123
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat.Light.Dialog.Alert = 0x7f130059
+hanson.xyz.vpnhotspotmod:id/time = 0x7f090203
+hanson.xyz.vpnhotspotmod:id/textinput_placeholder = 0x7f090200
+hanson.xyz.vpnhotspotmod:id/textinput_error = 0x7f0901fe
+hanson.xyz.vpnhotspotmod:styleable/MaterialSwitch = 0x7f14005f
+hanson.xyz.vpnhotspotmod:id/text_input_start_icon = 0x7f0901fc
+hanson.xyz.vpnhotspotmod:id/text_input_error_icon = 0x7f0901fb
+hanson.xyz.vpnhotspotmod:id/textWatcher = 0x7f0901f9
+hanson.xyz.vpnhotspotmod:id/textTop = 0x7f0901f8
+hanson.xyz.vpnhotspotmod:raw/com_android_billingclient_heterodyne_info = 0x7f110000
+hanson.xyz.vpnhotspotmod:integer/mtrl_switch_thumb_pre_morphing_duration = 0x7f0a0039
+hanson.xyz.vpnhotspotmod:id/textStart = 0x7f0901f7
+hanson.xyz.vpnhotspotmod:id/textSpacerNoTitle = 0x7f0901f6
+hanson.xyz.vpnhotspotmod:id/textSpacerNoButtons = 0x7f0901f5
+hanson.xyz.vpnhotspotmod:id/text = 0x7f0901f2
+hanson.xyz.vpnhotspotmod:id/tag_unhandled_key_listeners = 0x7f0901f0
+hanson.xyz.vpnhotspotmod:id/tag_transition_group = 0x7f0901ee
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.Bridge = 0x7f13026e
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.SearchView.Prefix = 0x7f130219
+hanson.xyz.vpnhotspotmod:id/tag_screen_reader_focusable = 0x7f0901ec
+hanson.xyz.vpnhotspotmod:layout/dialog_wps = 0x7f0c0031
+hanson.xyz.vpnhotspotmod:id/tag_on_receive_content_listener = 0x7f0901ea
+hanson.xyz.vpnhotspotmod:id/tag_on_apply_window_listener = 0x7f0901e9
+hanson.xyz.vpnhotspotmod:id/tag_accessibility_clickable_spans = 0x7f0901e6
+hanson.xyz.vpnhotspotmod:id/tag_accessibility_actions = 0x7f0901e5
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.BottomSheet.Modal = 0x7f130370
+hanson.xyz.vpnhotspotmod:id/swipeRefresher = 0x7f0901e2
+hanson.xyz.vpnhotspotmod:id/submit_area = 0x7f0901e1
+hanson.xyz.vpnhotspotmod:id/submenuarrow = 0x7f0901e0
+hanson.xyz.vpnhotspotmod:id/stats = 0x7f0901dd
+hanson.xyz.vpnhotspotmod:id/staticLayout = 0x7f0901db
+hanson.xyz.vpnhotspotmod:id/startVertical = 0x7f0901da
+hanson.xyz.vpnhotspotmod:id/startToEnd = 0x7f0901d9
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.Switch.Handle.Shape = 0x7f130189
+hanson.xyz.vpnhotspotmod:id/start = 0x7f0901d7
+hanson.xyz.vpnhotspotmod:id/src_over = 0x7f0901d3
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_toggle_to_day_selection = 0x7f1200cb
+hanson.xyz.vpnhotspotmod:id/src_atop = 0x7f0901d1
+hanson.xyz.vpnhotspotmod:id/square = 0x7f0901d0
+hanson.xyz.vpnhotspotmod:id/split_action_bar = 0x7f0901cd
+hanson.xyz.vpnhotspotmod:id/spinner = 0x7f0901cb
+hanson.xyz.vpnhotspotmod:id/special_effects_controller_view_tag = 0x7f0901ca
+hanson.xyz.vpnhotspotmod:string/mtrl_switch_thumb_path_morphing = 0x7f1200d0
+hanson.xyz.vpnhotspotmod:id/spacer = 0x7f0901c9
+hanson.xyz.vpnhotspotmod:id/snapMargins = 0x7f0901c8
+hanson.xyz.vpnhotspotmod:styleable/LinearLayoutCompat_Layout = 0x7f14004d
+hanson.xyz.vpnhotspotmod:layout/mtrl_search_bar = 0x7f0c0074
+hanson.xyz.vpnhotspotmod:id/snap = 0x7f0901c7
+hanson.xyz.vpnhotspotmod:id/snackbar_text = 0x7f0901c6
+hanson.xyz.vpnhotspotmod:styleable/SearchBar = 0x7f140083
+hanson.xyz.vpnhotspotmod:id/snackbar_action = 0x7f0901c5
+hanson.xyz.vpnhotspotmod:id/slide = 0x7f0901c4
+hanson.xyz.vpnhotspotmod:id/seekbar = 0x7f0901b8
+hanson.xyz.vpnhotspotmod:id/security_wrapper = 0x7f0901b7
+hanson.xyz.vpnhotspotmod:id/search_voice_btn = 0x7f0901b5
+hanson.xyz.vpnhotspotmod:id/search_plate = 0x7f0901b3
+hanson.xyz.vpnhotspotmod:id/search_mag_icon = 0x7f0901b2
+hanson.xyz.vpnhotspotmod:id/search_go_btn = 0x7f0901b1
+hanson.xyz.vpnhotspotmod:id/search_edit_frame = 0x7f0901b0
+hanson.xyz.vpnhotspotmod:id/search_bar = 0x7f0901ad
+hanson.xyz.vpnhotspotmod:id/search_badge = 0x7f0901ac
+hanson.xyz.vpnhotspotmod:id/scrollable = 0x7f0901ab
+hanson.xyz.vpnhotspotmod:id/scrollView = 0x7f0901aa
+hanson.xyz.vpnhotspotmod:id/scrollIndicatorDown = 0x7f0901a8
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_rail_inactive_icon_color = 0x7f0d009f
+hanson.xyz.vpnhotspotmod:id/scroll = 0x7f0901a7
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Button.IconButton.Filled.Tonal = 0x7f1302b0
+hanson.xyz.vpnhotspotmod:id/screen = 0x7f0901a6
+hanson.xyz.vpnhotspotmod:id/scale = 0x7f0901a5
+hanson.xyz.vpnhotspotmod:id/sawtooth = 0x7f0901a4
+hanson.xyz.vpnhotspotmod:string/repeater_remove_group_failure = 0x7f1200f7
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_unselected_focus_state_layer_color = 0x7f0d00e1
+hanson.xyz.vpnhotspotmod:id/row_index_key = 0x7f0901a0
+hanson.xyz.vpnhotspotmod:id/rounded = 0x7f09019f
+hanson.xyz.vpnhotspotmod:id/right_side = 0x7f09019e
+hanson.xyz.vpnhotspotmod:id/rightToLeft = 0x7f09019c
+hanson.xyz.vpnhotspotmod:style/Preference.SeekBarPreference.Material = 0x7f13015a
+hanson.xyz.vpnhotspotmod:id/report_drawn = 0x7f090199
+hanson.xyz.vpnhotspotmod:id/rectangles = 0x7f090197
+hanson.xyz.vpnhotspotmod:id/ratio = 0x7f090196
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.HeaderTitle = 0x7f1303c4
+hanson.xyz.vpnhotspotmod:id/radio = 0x7f090195
+hanson.xyz.vpnhotspotmod:id/progress_horizontal = 0x7f090194
+hanson.xyz.vpnhotspotmod:id/pressed = 0x7f090192
+hanson.xyz.vpnhotspotmod:id/persistent_randomized_mac_wrapper = 0x7f09018b
+hanson.xyz.vpnhotspotmod:id/persistent_randomized_mac = 0x7f09018a
+hanson.xyz.vpnhotspotmod:id/path = 0x7f090186
+hanson.xyz.vpnhotspotmod:id/password_wrapper = 0x7f090185
+hanson.xyz.vpnhotspotmod:style/Widget.Design.Snackbar = 0x7f13035b
+hanson.xyz.vpnhotspotmod:id/password = 0x7f090183
+hanson.xyz.vpnhotspotmod:id/parentRelative = 0x7f090181
+hanson.xyz.vpnhotspotmod:styleable/AppCompatSeekBar = 0x7f140011
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.NavigationRailView = 0x7f1302d3
+hanson.xyz.vpnhotspotmod:string/appbar_scrolling_view_behavior = 0x7f12001d
+hanson.xyz.vpnhotspotmod:id/parentPanel = 0x7f090180
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Light = 0x7f1302ca
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_headline_color = 0x7f0d0151
+hanson.xyz.vpnhotspotmod:integer/m3_card_anim_duration_ms = 0x7f0a000e
+hanson.xyz.vpnhotspotmod:id/parent = 0x7f09017f
+hanson.xyz.vpnhotspotmod:id/parallax = 0x7f09017e
+hanson.xyz.vpnhotspotmod:id/packed = 0x7f09017d
+hanson.xyz.vpnhotspotmod:id/outward = 0x7f09017c
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Button.IconButton = 0x7f1302ae
+hanson.xyz.vpnhotspotmod:id/outline = 0x7f09017b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_focus_handle_color = 0x7f0d0121
+hanson.xyz.vpnhotspotmod:id/open_search_view_toolbar_container = 0x7f09017a
+hanson.xyz.vpnhotspotmod:id/open_search_view_toolbar = 0x7f090179
+hanson.xyz.vpnhotspotmod:id/open_search_view_search_prefix = 0x7f090177
+hanson.xyz.vpnhotspotmod:id/open_search_view_scrim = 0x7f090176
+hanson.xyz.vpnhotspotmod:id/open_search_view_header_container = 0x7f090174
+hanson.xyz.vpnhotspotmod:id/open_search_view_edit_text = 0x7f090173
+hanson.xyz.vpnhotspotmod:id/open_search_view_clear_button = 0x7f09016f
+hanson.xyz.vpnhotspotmod:id/onDateChanged = 0x7f09016c
+hanson.xyz.vpnhotspotmod:id/on = 0x7f09016a
+hanson.xyz.vpnhotspotmod:id/offloadEnabled = 0x7f090169
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.DayNight.Dialog.Alert = 0x7f130236
+hanson.xyz.vpnhotspotmod:id/off = 0x7f090168
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TimePicker.Display.Divider = 0x7f130476
+hanson.xyz.vpnhotspotmod:id/notification_main_column = 0x7f090166
+hanson.xyz.vpnhotspotmod:id/notification_background = 0x7f090165
+hanson.xyz.vpnhotspotmod:styleable/State = 0x7f140093
+hanson.xyz.vpnhotspotmod:layout/abc_screen_simple_overlay_action_mode = 0x7f0c0016
+hanson.xyz.vpnhotspotmod:id/normal = 0x7f090164
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.DynamicColors.Light = 0x7f13025f
+hanson.xyz.vpnhotspotmod:id/none = 0x7f090163
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date = 0x7f1302f7
+hanson.xyz.vpnhotspotmod:id/no_licenses_text = 0x7f090162
+hanson.xyz.vpnhotspotmod:id/noScroll = 0x7f090161
+hanson.xyz.vpnhotspotmod:id/never = 0x7f09015f
+hanson.xyz.vpnhotspotmod:id/navigation_update = 0x7f09015e
+hanson.xyz.vpnhotspotmod:id/navigation_tethering = 0x7f09015d
+hanson.xyz.vpnhotspotmod:layout/m3_alert_dialog_title = 0x7f0c0045
+hanson.xyz.vpnhotspotmod:id/stop = 0x7f0901de
+hanson.xyz.vpnhotspotmod:id/navigation_settings = 0x7f09015c
+hanson.xyz.vpnhotspotmod:id/navigation_clients = 0x7f09015a
+hanson.xyz.vpnhotspotmod:id/navigation_bar_item_small_label_view = 0x7f090159
+hanson.xyz.vpnhotspotmod:id/navigation_bar_item_large_label_view = 0x7f090158
+hanson.xyz.vpnhotspotmod:id/navigation_bar_item_icon_view = 0x7f090156
+hanson.xyz.vpnhotspotmod:id/navigation = 0x7f090153
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.Material3.NavigationBarView.ActiveIndicator = 0x7f13019d
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f13009b
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.Button = 0x7f13003d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_text_button_pressed_state_layer_color = 0x7f0d0147
+hanson.xyz.vpnhotspotmod:id/mtrl_picker_title_text = 0x7f090150
+hanson.xyz.vpnhotspotmod:id/mtrl_picker_text_input_date = 0x7f09014d
+hanson.xyz.vpnhotspotmod:id/mtrl_picker_header = 0x7f090149
+hanson.xyz.vpnhotspotmod:id/mtrl_picker_fullscreen = 0x7f090148
+hanson.xyz.vpnhotspotmod:id/mtrl_motion_snapshot_view = 0x7f090147
+hanson.xyz.vpnhotspotmod:id/mtrl_internal_children_alpha_tag = 0x7f090146
+hanson.xyz.vpnhotspotmod:id/mtrl_child_content_container = 0x7f090145
+hanson.xyz.vpnhotspotmod:id/mtrl_card_checked_layer_id = 0x7f090144
+hanson.xyz.vpnhotspotmod:id/pin = 0x7f09018c
+hanson.xyz.vpnhotspotmod:id/mtrl_calendar_year_selector_frame = 0x7f090143
+hanson.xyz.vpnhotspotmod:id/mtrl_calendar_selection_frame = 0x7f090141
+hanson.xyz.vpnhotspotmod:id/mtrl_calendar_months = 0x7f090140
+hanson.xyz.vpnhotspotmod:id/mtrl_calendar_main_pane = 0x7f09013f
+hanson.xyz.vpnhotspotmod:id/mtrl_calendar_frame = 0x7f09013e
+hanson.xyz.vpnhotspotmod:id/mtrl_calendar_day_selector_frame = 0x7f09013c
+hanson.xyz.vpnhotspotmod:styleable/MaterialAlertDialogTheme = 0x7f140053
+hanson.xyz.vpnhotspotmod:macro/m3_comp_snackbar_container_shape = 0x7f0d0115
+hanson.xyz.vpnhotspotmod:id/mtrl_anchor_parent = 0x7f09013b
+hanson.xyz.vpnhotspotmod:id/month_title = 0x7f090139
+hanson.xyz.vpnhotspotmod:macro/m3_comp_primary_navigation_tab_with_label_text_inactive_label_text_color = 0x7f0d00d5
+hanson.xyz.vpnhotspotmod:id/month_navigation_previous = 0x7f090138
+hanson.xyz.vpnhotspotmod:id/startHorizontal = 0x7f0901d8
+hanson.xyz.vpnhotspotmod:id/month_grid = 0x7f090134
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Dialog = 0x7f13006c
+hanson.xyz.vpnhotspotmod:id/mini = 0x7f090132
+hanson.xyz.vpnhotspotmod:id/middle = 0x7f090131
+hanson.xyz.vpnhotspotmod:id/message = 0x7f090130
+hanson.xyz.vpnhotspotmod:id/max_client = 0x7f09012e
+hanson.xyz.vpnhotspotmod:id/max_channel_bandwidth_wrapper = 0x7f09012d
+hanson.xyz.vpnhotspotmod:id/max_channel_bandwidth_error = 0x7f09012c
+hanson.xyz.vpnhotspotmod:styleable/AlertDialog = 0x7f140008
+hanson.xyz.vpnhotspotmod:id/max_channel_bandwidth = 0x7f09012b
+hanson.xyz.vpnhotspotmod:id/matrix = 0x7f09012a
+hanson.xyz.vpnhotspotmod:id/material_timepicker_mode_button = 0x7f090126
+hanson.xyz.vpnhotspotmod:id/material_timepicker_container = 0x7f090125
+hanson.xyz.vpnhotspotmod:id/material_timepicker_cancel_button = 0x7f090124
+hanson.xyz.vpnhotspotmod:id/material_minute_text_input = 0x7f090121
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.Badge.Shape = 0x7f13017c
+hanson.xyz.vpnhotspotmod:id/material_label = 0x7f090120
+hanson.xyz.vpnhotspotmod:id/material_clock_period_toggle = 0x7f09011d
+hanson.xyz.vpnhotspotmod:layout/mtrl_picker_fullscreen = 0x7f0c006c
+hanson.xyz.vpnhotspotmod:id/material_clock_period_pm_button = 0x7f09011c
+hanson.xyz.vpnhotspotmod:id/material_clock_period_am_button = 0x7f09011b
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.AppCompat.ActionBar = 0x7f130298
+hanson.xyz.vpnhotspotmod:id/material_clock_display = 0x7f090116
+hanson.xyz.vpnhotspotmod:string/wifi_ap_choose_disabled = 0x7f120161
+hanson.xyz.vpnhotspotmod:id/match_parent = 0x7f090115
+hanson.xyz.vpnhotspotmod:id/mac_randomization_wrapper = 0x7f090112
+hanson.xyz.vpnhotspotmod:xml/locales_config = 0x7f150003
+hanson.xyz.vpnhotspotmod:id/mac_randomization = 0x7f090111
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.BottomSheet.DragHandle = 0x7f13036f
+hanson.xyz.vpnhotspotmod:id/locale = 0x7f09010e
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CardView.Outlined = 0x7f130386
+hanson.xyz.vpnhotspotmod:id/line3 = 0x7f09010a
+hanson.xyz.vpnhotspotmod:layout/browser_actions_context_menu_row = 0x7f0c001e
+hanson.xyz.vpnhotspotmod:id/line1 = 0x7f090109
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.DisplayLarge = 0x7f13020d
+hanson.xyz.vpnhotspotmod:id/light = 0x7f090108
+hanson.xyz.vpnhotspotmod:id/license_list = 0x7f090107
+hanson.xyz.vpnhotspotmod:id/license_activity_scrollview = 0x7f090105
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_container_color = 0x7f0d014f
+hanson.xyz.vpnhotspotmod:id/license = 0x7f090104
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TimePicker.Clock = 0x7f130474
+hanson.xyz.vpnhotspotmod:id/legacy = 0x7f090103
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.ActionBar.Subtitle = 0x7f130208
+hanson.xyz.vpnhotspotmod:id/layout = 0x7f090100
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.TitleSmall = 0x7f13021c
+hanson.xyz.vpnhotspotmod:id/item_touch_helper_previous_elevation = 0x7f0900fc
+hanson.xyz.vpnhotspotmod:id/italic = 0x7f0900fb
+hanson.xyz.vpnhotspotmod:string/donations__google_android_market_description = 0x7f120058
+hanson.xyz.vpnhotspotmod:id/inward = 0x7f0900fa
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TimePicker.ImageButton = 0x7f13047a
+hanson.xyz.vpnhotspotmod:id/invisible = 0x7f0900f9
+hanson.xyz.vpnhotspotmod:id/skipCollapsed = 0x7f0901c3
+hanson.xyz.vpnhotspotmod:id/indeterminate = 0x7f0900f5
+hanson.xyz.vpnhotspotmod:id/ignoreRequest = 0x7f0900f3
+hanson.xyz.vpnhotspotmod:string/wifi_hotspot_timeout_default = 0x7f120170
+hanson.xyz.vpnhotspotmod:id/ignore = 0x7f0900f2
+hanson.xyz.vpnhotspotmod:id/ieee_80211be = 0x7f0900f0
+hanson.xyz.vpnhotspotmod:id/icon_frame = 0x7f0900ec
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TabLayout.Colored = 0x7f130463
+hanson.xyz.vpnhotspotmod:id/icon = 0x7f0900eb
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.DarkActionBar.Bridge = 0x7f130270
+hanson.xyz.vpnhotspotmod:id/homeAsUp = 0x7f0900e9
+hanson.xyz.vpnhotspotmod:id/hidden_ssid = 0x7f0900e5
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.Material3.Corner.Small = 0x7f13019a
+hanson.xyz.vpnhotspotmod:string/path_password_strike_through = 0x7f1200e4
+hanson.xyz.vpnhotspotmod:id/open_search_view_dummy_toolbar = 0x7f090172
+hanson.xyz.vpnhotspotmod:id/group_divider = 0x7f0900e2
+hanson.xyz.vpnhotspotmod:id/graph_wrap = 0x7f0900e1
+hanson.xyz.vpnhotspotmod:id/graph = 0x7f0900e0
+hanson.xyz.vpnhotspotmod:id/gone = 0x7f0900df
+hanson.xyz.vpnhotspotmod:id/ghost_view_holder = 0x7f0900de
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents = 0x7f130069
+hanson.xyz.vpnhotspotmod:id/fullscreen_header = 0x7f0900dc
+hanson.xyz.vpnhotspotmod:macro/m3_comp_dialog_container_color = 0x7f0d0023
+hanson.xyz.vpnhotspotmod:id/floating = 0x7f0900d8
+hanson.xyz.vpnhotspotmod:id/flip = 0x7f0900d7
+hanson.xyz.vpnhotspotmod:id/fitXY = 0x7f0900d5
+hanson.xyz.vpnhotspotmod:id/fitToContents = 0x7f0900d4
+hanson.xyz.vpnhotspotmod:id/fitStart = 0x7f0900d3
+hanson.xyz.vpnhotspotmod:id/fitEnd = 0x7f0900d2
+hanson.xyz.vpnhotspotmod:string/firebase_database_url = 0x7f120068
+hanson.xyz.vpnhotspotmod:id/ssid = 0x7f0901d4
+hanson.xyz.vpnhotspotmod:id/fitCenter = 0x7f0900d1
+hanson.xyz.vpnhotspotmod:string/abc_capital_on = 0x7f120007
+hanson.xyz.vpnhotspotmod:id/filled = 0x7f0900d0
+hanson.xyz.vpnhotspotmod:id/fill_vertical = 0x7f0900cf
+hanson.xyz.vpnhotspotmod:id/fill = 0x7f0900cd
+hanson.xyz.vpnhotspotmod:id/exitUntilCollapsed = 0x7f0900c9
+hanson.xyz.vpnhotspotmod:layout/mtrl_alert_select_dialog_item = 0x7f0c0059
+hanson.xyz.vpnhotspotmod:id/enterAlwaysCollapsed = 0x7f0900c8
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar = 0x7f1303b6
+hanson.xyz.vpnhotspotmod:style/AppTheme = 0x7f13000c
+hanson.xyz.vpnhotspotmod:id/end = 0x7f0900c5
+hanson.xyz.vpnhotspotmod:id/elastic = 0x7f0900c3
+hanson.xyz.vpnhotspotmod:id/edit_text_id = 0x7f0900c2
+hanson.xyz.vpnhotspotmod:id/edit_query = 0x7f0900c1
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_container_shape = 0x7f0d0150
+hanson.xyz.vpnhotspotmod:id/easeInOut = 0x7f0900be
+hanson.xyz.vpnhotspotmod:id/easeIn = 0x7f0900bd
+hanson.xyz.vpnhotspotmod:id/dropdown_menu = 0x7f0900bc
+hanson.xyz.vpnhotspotmod:id/dragUp = 0x7f0900bb
+hanson.xyz.vpnhotspotmod:styleable/ShapeAppearance = 0x7f140086
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f130027
+hanson.xyz.vpnhotspotmod:layout/select_dialog_multichoice_material = 0x7f0c0090
+hanson.xyz.vpnhotspotmod:id/dragEnd = 0x7f0900b7
+hanson.xyz.vpnhotspotmod:id/donations__more_donate_button = 0x7f0900b5
+hanson.xyz.vpnhotspotmod:id/donations__google_android_market_spinner = 0x7f0900b4
+hanson.xyz.vpnhotspotmod:id/donations__google = 0x7f0900b2
+hanson.xyz.vpnhotspotmod:id/disableScroll = 0x7f0900b0
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Slider.Label = 0x7f1303ec
+hanson.xyz.vpnhotspotmod:id/disableHome = 0x7f0900ae
+hanson.xyz.vpnhotspotmod:id/direct = 0x7f0900ad
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.DropDownItem = 0x7f1301e3
+hanson.xyz.vpnhotspotmod:id/dialog_button = 0x7f0900ab
+hanson.xyz.vpnhotspotmod:id/design_navigation_view = 0x7f0900aa
+hanson.xyz.vpnhotspotmod:id/design_menu_item_text = 0x7f0900a9
+hanson.xyz.vpnhotspotmod:id/design_menu_item_action_area = 0x7f0900a7
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_active_hover_label_text_color = 0x7f0d007f
+hanson.xyz.vpnhotspotmod:id/design_bottom_sheet = 0x7f0900a6
+hanson.xyz.vpnhotspotmod:style/Base.V7.Theme.AppCompat.Dialog = 0x7f1300bf
+hanson.xyz.vpnhotspotmod:id/description = 0x7f0900a5
+hanson.xyz.vpnhotspotmod:id/selection_type = 0x7f0901bc
+hanson.xyz.vpnhotspotmod:id/default_activity_button = 0x7f0900a3
+hanson.xyz.vpnhotspotmod:id/decor_content_parent = 0x7f0900a2
+hanson.xyz.vpnhotspotmod:id/decelerateAndComplete = 0x7f0900a1
+hanson.xyz.vpnhotspotmod:id/date_picker_actions = 0x7f09009f
+hanson.xyz.vpnhotspotmod:id/dataBinding = 0x7f09009e
+hanson.xyz.vpnhotspotmod:id/material_timepicker_ok_button = 0x7f090127
+hanson.xyz.vpnhotspotmod:id/dark = 0x7f09009d
+hanson.xyz.vpnhotspotmod:id/cut = 0x7f09009c
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f13028d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_icon_button_container_color = 0x7f0d0049
+hanson.xyz.vpnhotspotmod:id/customPanel = 0x7f09009b
+hanson.xyz.vpnhotspotmod:id/cradle = 0x7f090099
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Sys.Shape.Corner.Medium = 0x7f130191
+hanson.xyz.vpnhotspotmod:id/contentPanel = 0x7f090094
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_disabled_selected_track_color = 0x7f0d011c
+hanson.xyz.vpnhotspotmod:id/container = 0x7f090092
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_unselected_hover_state_layer_color = 0x7f0d00e3
+hanson.xyz.vpnhotspotmod:id/confirm_button = 0x7f090091
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.NavigationRailView.Colored = 0x7f130453
+hanson.xyz.vpnhotspotmod:id/configuration_repeater = 0x7f09008f
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.DisplayMedium = 0x7f13020e
+hanson.xyz.vpnhotspotmod:layout/m3_alert_dialog_actions = 0x7f0c0044
+hanson.xyz.vpnhotspotmod:id/compress = 0x7f09008c
+hanson.xyz.vpnhotspotmod:id/clockwise = 0x7f09008a
+hanson.xyz.vpnhotspotmod:id/showCustom = 0x7f0901bf
+hanson.xyz.vpnhotspotmod:id/clip_horizontal = 0x7f090088
+hanson.xyz.vpnhotspotmod:id/client_user_control = 0x7f090086
+hanson.xyz.vpnhotspotmod:id/vendor_elements = 0x7f09021d
+hanson.xyz.vpnhotspotmod:id/clear_text = 0x7f090085
+hanson.xyz.vpnhotspotmod:id/chronometer = 0x7f090083
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar = 0x7f130338
+hanson.xyz.vpnhotspotmod:id/checked = 0x7f090082
+hanson.xyz.vpnhotspotmod:id/chain = 0x7f09007f
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActionButton = 0x7f13032c
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ProgressBar = 0x7f1300f1
+hanson.xyz.vpnhotspotmod:id/center_vertical = 0x7f09007e
+hanson.xyz.vpnhotspotmod:id/cancel_button = 0x7f090079
+hanson.xyz.vpnhotspotmod:id/buttonPanel = 0x7f090078
+hanson.xyz.vpnhotspotmod:id/browser_actions_menu_view = 0x7f090075
+hanson.xyz.vpnhotspotmod:string/wifi_mac_randomization_persistent = 0x7f120176
+hanson.xyz.vpnhotspotmod:layout/simple_menu_item = 0x7f0c0092
+hanson.xyz.vpnhotspotmod:id/browser_actions_menu_item_text = 0x7f090073
+hanson.xyz.vpnhotspotmod:string/configuration_rejected = 0x7f12004c
+hanson.xyz.vpnhotspotmod:id/browser_actions_menu_item_icon = 0x7f090072
+hanson.xyz.vpnhotspotmod:id/browser_actions_header_text = 0x7f090071
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_selected_pressed_icon_color = 0x7f0d00de
+hanson.xyz.vpnhotspotmod:id/bridged_timeout_wrapper = 0x7f090070
+hanson.xyz.vpnhotspotmod:id/blocked_list_wrapper = 0x7f09006a
+hanson.xyz.vpnhotspotmod:id/blocked_list = 0x7f090069
+hanson.xyz.vpnhotspotmod:id/block = 0x7f090068
+hanson.xyz.vpnhotspotmod:id/beginning = 0x7f090067
+hanson.xyz.vpnhotspotmod:id/barrier = 0x7f090064
+hanson.xyz.vpnhotspotmod:id/easeOut = 0x7f0900bf
+hanson.xyz.vpnhotspotmod:id/band_group = 0x7f090061
+hanson.xyz.vpnhotspotmod:id/band_error = 0x7f090060
+hanson.xyz.vpnhotspotmod:layout/mtrl_alert_dialog = 0x7f0c0056
+hanson.xyz.vpnhotspotmod:id/autoCompleteToEnd = 0x7f09005d
+hanson.xyz.vpnhotspotmod:id/auto = 0x7f09005b
+hanson.xyz.vpnhotspotmod:id/preferences_sliding_pane_layout = 0x7f090191
+hanson.xyz.vpnhotspotmod:id/async = 0x7f09005a
+hanson.xyz.vpnhotspotmod:id/arc = 0x7f090058
+hanson.xyz.vpnhotspotmod:id/animateToStart = 0x7f090057
+hanson.xyz.vpnhotspotmod:string/tethering_manage_ncm = 0x7f12013e
+hanson.xyz.vpnhotspotmod:id/androidx_window_activity_scope = 0x7f090055
+hanson.xyz.vpnhotspotmod:id/allowed_list_wrapper = 0x7f090053
+hanson.xyz.vpnhotspotmod:id/all = 0x7f090051
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_card_container_shape = 0x7f0d0048
+hanson.xyz.vpnhotspotmod:id/aligned = 0x7f090050
+hanson.xyz.vpnhotspotmod:id/alertTitle = 0x7f09004f
+hanson.xyz.vpnhotspotmod:id/advanced_ap_group = 0x7f09004e
+hanson.xyz.vpnhotspotmod:id/adjust_width = 0x7f09004d
+hanson.xyz.vpnhotspotmod:id/addresses = 0x7f09004b
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ListView.Menu = 0x7f1300ed
+hanson.xyz.vpnhotspotmod:id/action_text = 0x7f090047
+hanson.xyz.vpnhotspotmod:id/action_mode_close_button = 0x7f090046
+hanson.xyz.vpnhotspotmod:id/action_mode_bar_stub = 0x7f090045
+hanson.xyz.vpnhotspotmod:id/action_mode_bar = 0x7f090044
+hanson.xyz.vpnhotspotmod:id/action_menu_presenter = 0x7f090043
+hanson.xyz.vpnhotspotmod:styleable/Carousel = 0x7f14001e
+hanson.xyz.vpnhotspotmod:string/repeater_location_off_configure = 0x7f1200f3
+hanson.xyz.vpnhotspotmod:id/action_image = 0x7f090041
+hanson.xyz.vpnhotspotmod:id/action_bar_subtitle = 0x7f09003c
+hanson.xyz.vpnhotspotmod:id/action_bar_activity_content = 0x7f090038
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.BottomAppBar.Colored = 0x7f130411
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.Dialog.Alert = 0x7f13023b
+hanson.xyz.vpnhotspotmod:id/acs_6g = 0x7f090035
+hanson.xyz.vpnhotspotmod:id/acs_5g_wrapper = 0x7f090034
+hanson.xyz.vpnhotspotmod:id/acs_5g = 0x7f090033
+hanson.xyz.vpnhotspotmod:macro/m3_comp_checkbox_unselected_outline_color = 0x7f0d000c
+hanson.xyz.vpnhotspotmod:id/acs_2g_wrapper = 0x7f090032
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_9 = 0x7f090030
+hanson.xyz.vpnhotspotmod:id/material_clock_level = 0x7f09011a
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_7 = 0x7f09002e
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.MaterialComponents.Dialog.Bridge = 0x7f130098
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_5 = 0x7f09002c
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_31 = 0x7f09002a
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_30 = 0x7f090029
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_3 = 0x7f090028
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_29 = 0x7f090027
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_28 = 0x7f090026
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Button = 0x7f1301bc
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_26 = 0x7f090024
+hanson.xyz.vpnhotspotmod:string/notification_interfaces_inactive = 0x7f1200dd
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_25 = 0x7f090023
+hanson.xyz.vpnhotspotmod:string/summary_collapsed_preference_list = 0x7f120139
+hanson.xyz.vpnhotspotmod:macro/m3_comp_slider_label_label_text_color = 0x7f0d0113
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_autocomplete_menu_container_color = 0x7f0d00a3
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_23 = 0x7f090021
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_21 = 0x7f09001f
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_20 = 0x7f09001e
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_2 = 0x7f09001d
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_19 = 0x7f09001c
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_18 = 0x7f09001b
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_15 = 0x7f090018
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_14 = 0x7f090017
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_13 = 0x7f090016
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_12 = 0x7f090015
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense = 0x7f130468
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_11 = 0x7f090014
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_10 = 0x7f090013
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.HeaderLayout.Fullscreen = 0x7f130445
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_1 = 0x7f090012
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.Toolbar.Primary = 0x7f130307
+hanson.xyz.vpnhotspotmod:id/access_control_group = 0x7f09000f
+hanson.xyz.vpnhotspotmod:id/accelerate = 0x7f09000e
+hanson.xyz.vpnhotspotmod:id/TOP_END = 0x7f09000c
+hanson.xyz.vpnhotspotmod:id/SHOW_PATH = 0x7f090009
+hanson.xyz.vpnhotspotmod:id/SHOW_ALL = 0x7f090008
+hanson.xyz.vpnhotspotmod:id/SHIFT = 0x7f090007
+hanson.xyz.vpnhotspotmod:id/navigation_bar_item_active_indicator_view = 0x7f090154
+hanson.xyz.vpnhotspotmod:id/custom = 0x7f09009a
+hanson.xyz.vpnhotspotmod:id/NO_DEBUG = 0x7f090006
+hanson.xyz.vpnhotspotmod:id/META = 0x7f090005
+hanson.xyz.vpnhotspotmod:id/FUNCTION = 0x7f090004
+hanson.xyz.vpnhotspotmod:styleable/MaterialTimePicker = 0x7f140062
+hanson.xyz.vpnhotspotmod:id/ALT = 0x7f090000
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_unsupported_text = 0x7f120042
+hanson.xyz.vpnhotspotmod:drawable/tooltip_frame_light = 0x7f080123
+hanson.xyz.vpnhotspotmod:drawable/toggle_hex = 0x7f080121
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.TextView = 0x7f1300fc
+hanson.xyz.vpnhotspotmod:drawable/test_level_drawable = 0x7f080120
+hanson.xyz.vpnhotspotmod:drawable/simple_menu_item_background = 0x7f08011f
+hanson.xyz.vpnhotspotmod:drawable/notify_panel_notification_icon_bg = 0x7f08011c
+hanson.xyz.vpnhotspotmod:drawable/notification_tile_bg = 0x7f08011b
+hanson.xyz.vpnhotspotmod:drawable/notification_bg_normal_pressed = 0x7f080116
+hanson.xyz.vpnhotspotmod:drawable/notification_bg_low_normal = 0x7f080113
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.HeadlineMedium = 0x7f130211
+hanson.xyz.vpnhotspotmod:drawable/notification_action_background = 0x7f080110
+hanson.xyz.vpnhotspotmod:drawable/navigation_empty_icon = 0x7f08010f
+hanson.xyz.vpnhotspotmod:id/nickname = 0x7f090160
+hanson.xyz.vpnhotspotmod:drawable/mtrl_tabs_default_indicator = 0x7f08010e
+hanson.xyz.vpnhotspotmod:drawable/mtrl_switch_track_decoration = 0x7f08010d
+hanson.xyz.vpnhotspotmod:drawable/mtrl_switch_track = 0x7f08010c
+hanson.xyz.vpnhotspotmod:drawable/mtrl_switch_thumb_unchecked_pressed = 0x7f08010b
+hanson.xyz.vpnhotspotmod:drawable/mtrl_switch_thumb_unchecked_checked = 0x7f08010a
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Subhead = 0x7f1301d1
+hanson.xyz.vpnhotspotmod:drawable/mtrl_switch_thumb_pressed_unchecked = 0x7f080108
+hanson.xyz.vpnhotspotmod:drawable/mtrl_switch_thumb_pressed_checked = 0x7f080107
+hanson.xyz.vpnhotspotmod:drawable/mtrl_switch_thumb_checked_unchecked = 0x7f080105
+hanson.xyz.vpnhotspotmod:drawable/mtrl_switch_thumb_checked = 0x7f080103
+hanson.xyz.vpnhotspotmod:drawable/mtrl_switch_thumb = 0x7f080102
+hanson.xyz.vpnhotspotmod:drawable/mtrl_popupmenu_background_overlay = 0x7f080101
+hanson.xyz.vpnhotspotmod:attr/colorSurfaceContainer = 0x7f040117
+hanson.xyz.vpnhotspotmod:drawable/mtrl_ic_indeterminate = 0x7f0800fe
+hanson.xyz.vpnhotspotmod:drawable/mtrl_ic_error = 0x7f0800fd
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_error10 = 0x7f060109
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral_variant100 = 0x7f060241
+hanson.xyz.vpnhotspotmod:drawable/mtrl_ic_checkbox_unchecked = 0x7f0800fc
+hanson.xyz.vpnhotspotmod:drawable/mtrl_ic_checkbox_checked = 0x7f0800fb
+hanson.xyz.vpnhotspotmod:id/autoCompleteToStart = 0x7f09005e
+hanson.xyz.vpnhotspotmod:drawable/mtrl_ic_arrow_drop_up = 0x7f0800f8
+hanson.xyz.vpnhotspotmod:drawable/mtrl_ic_arrow_drop_down = 0x7f0800f7
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ActionButton.CloseMode = 0x7f13030f
+hanson.xyz.vpnhotspotmod:drawable/mtrl_dropdown_arrow = 0x7f0800f6
+hanson.xyz.vpnhotspotmod:color/m3_navigation_item_icon_tint = 0x7f0600a6
+hanson.xyz.vpnhotspotmod:drawable/mtrl_checkbox_button_icon_indeterminate_checked = 0x7f0800f0
+hanson.xyz.vpnhotspotmod:drawable/mtrl_checkbox_button_icon_checked_unchecked = 0x7f0800ef
+hanson.xyz.vpnhotspotmod:string/tethering_manage_ethernet = 0x7f12013d
+hanson.xyz.vpnhotspotmod:drawable/mtrl_checkbox_button_icon = 0x7f0800ed
+hanson.xyz.vpnhotspotmod:drawable/mtrl_checkbox_button_checked_unchecked = 0x7f0800ec
+hanson.xyz.vpnhotspotmod:drawable/mtrl_bottomsheet_drag_handle = 0x7f0800ea
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_focus_track_outline_color = 0x7f0d0134
+hanson.xyz.vpnhotspotmod:id/edge = 0x7f0900c0
+hanson.xyz.vpnhotspotmod:dimen/abc_cascading_menus_min_smallest_width = 0x7f070016
+hanson.xyz.vpnhotspotmod:dimen/abc_star_small = 0x7f07003d
+hanson.xyz.vpnhotspotmod:drawable/material_ic_menu_arrow_up_black_24dp = 0x7f0800e9
+hanson.xyz.vpnhotspotmod:drawable/material_ic_keyboard_arrow_left_black_24dp = 0x7f0800e4
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Light.DialogWhenLarge = 0x7f130265
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_tertiary80 = 0x7f06015d
+hanson.xyz.vpnhotspotmod:drawable/material_ic_edit_black_24dp = 0x7f0800e3
+hanson.xyz.vpnhotspotmod:drawable/material_cursor_drawable = 0x7f0800e0
+hanson.xyz.vpnhotspotmod:drawable/m3_tabs_line_indicator = 0x7f0800dd
+hanson.xyz.vpnhotspotmod:drawable/m3_radiobutton_ripple = 0x7f0800da
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CompoundButton.MaterialSwitch = 0x7f13039b
+hanson.xyz.vpnhotspotmod:drawable/m3_password_eye = 0x7f0800d8
+hanson.xyz.vpnhotspotmod:drawable/m3_avd_hide_password = 0x7f0800d5
+hanson.xyz.vpnhotspotmod:drawable/ic_search_black_24 = 0x7f0800d1
+hanson.xyz.vpnhotspotmod:id/bssid_wrapper = 0x7f090077
+hanson.xyz.vpnhotspotmod:drawable/ic_quick_settings_tile_on = 0x7f0800d0
+hanson.xyz.vpnhotspotmod:dimen/material_clock_period_toggle_vertical_gap = 0x7f07022a
+hanson.xyz.vpnhotspotmod:drawable/ic_mtrl_chip_close_circle = 0x7f0800cf
+hanson.xyz.vpnhotspotmod:macro/m3_comp_slider_disabled_handle_color = 0x7f0d010e
+hanson.xyz.vpnhotspotmod:color/m3_filled_icon_button_container_color_selector = 0x7f06009e
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_padding_top = 0x7f070265
+hanson.xyz.vpnhotspotmod:drawable/ic_mtrl_chip_checked_black = 0x7f0800cd
+hanson.xyz.vpnhotspotmod:drawable/ic_mtrl_checked_circle = 0x7f0800cc
+hanson.xyz.vpnhotspotmod:drawable/ic_m3_chip_check = 0x7f0800c9
+hanson.xyz.vpnhotspotmod:drawable/ic_launcher_monochrome = 0x7f0800c8
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat.Dialog.MinWidth = 0x7f130054
+hanson.xyz.vpnhotspotmod:drawable/ic_launcher_foreground = 0x7f0800c7
+hanson.xyz.vpnhotspotmod:attr/cardMaxElevation = 0x7f04009f
+hanson.xyz.vpnhotspotmod:attr/chipSpacingHorizontal = 0x7f0400c2
+hanson.xyz.vpnhotspotmod:dimen/m3_carousel_gone_size = 0x7f0700f2
+hanson.xyz.vpnhotspotmod:drawable/ic_launcher_background = 0x7f0800c6
+hanson.xyz.vpnhotspotmod:id/spread_inside = 0x7f0901cf
+hanson.xyz.vpnhotspotmod:drawable/ic_image_remove_red_eye = 0x7f0800c4
+hanson.xyz.vpnhotspotmod:attr/flow_firstVerticalBias = 0x7f0401ec
+hanson.xyz.vpnhotspotmod:attr/layout_constraintStart_toStartOf = 0x7f040293
+hanson.xyz.vpnhotspotmod:drawable/ic_image_looks_6 = 0x7f0800c3
+hanson.xyz.vpnhotspotmod:id/mtrl_view_tag_bottom_padding = 0x7f090151
+hanson.xyz.vpnhotspotmod:drawable/ic_image_flash_on = 0x7f0800c2
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filter_chip_label_text_type = 0x7f0d0059
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_on_secondary = 0x7f060197
+hanson.xyz.vpnhotspotmod:drawable/ic_device_network_wifi = 0x7f0800bc
+hanson.xyz.vpnhotspotmod:attr/values = 0x7f0404c2
+hanson.xyz.vpnhotspotmod:drawable/ic_content_add = 0x7f0800b6
+hanson.xyz.vpnhotspotmod:dimen/m3_alert_dialog_elevation = 0x7f0700a3
+hanson.xyz.vpnhotspotmod:drawable/ic_call_decline_low = 0x7f0800b3
+hanson.xyz.vpnhotspotmod:drawable/ic_call_answer_video = 0x7f0800b0
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_search_view_container_elevation = 0x7f070174
+hanson.xyz.vpnhotspotmod:drawable/ic_call_answer = 0x7f0800ae
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_text_btn_padding_left = 0x7f0700e3
+hanson.xyz.vpnhotspotmod:drawable/ic_av_closed_caption_off = 0x7f0800ad
+hanson.xyz.vpnhotspotmod:drawable/ic_av_closed_caption = 0x7f0800ac
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ListPopupWindow = 0x7f1300ea
+hanson.xyz.vpnhotspotmod:id/user_config = 0x7f09021c
+hanson.xyz.vpnhotspotmod:attr/thumbColor = 0x7f040474
+hanson.xyz.vpnhotspotmod:drawable/ic_arrow_down_24dp = 0x7f0800ab
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_tertiary95 = 0x7f06015f
+hanson.xyz.vpnhotspotmod:drawable/ic_action_wifi_protected_setup = 0x7f0800a8
+hanson.xyz.vpnhotspotmod:color/m3_dark_primary_text_disable_only = 0x7f06008c
+hanson.xyz.vpnhotspotmod:color/mtrl_tabs_icon_color_selector_colored = 0x7f0602f5
+hanson.xyz.vpnhotspotmod:drawable/ic_action_settings_input_component = 0x7f0800a6
+hanson.xyz.vpnhotspotmod:drawable/ic_action_settings = 0x7f0800a2
+hanson.xyz.vpnhotspotmod:drawable/ic_action_code = 0x7f0800a0
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_surface_container = 0x7f0601c7
+hanson.xyz.vpnhotspotmod:drawable/ic_action_card_giftcard = 0x7f08009f
+hanson.xyz.vpnhotspotmod:drawable/ic_call_decline = 0x7f0800b2
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_time_selector_selected_pressed_state_layer_color = 0x7f0d0165
+hanson.xyz.vpnhotspotmod:drawable/ic_action_bug_report = 0x7f08009d
+hanson.xyz.vpnhotspotmod:layout/material_time_input = 0x7f0c0052
+hanson.xyz.vpnhotspotmod:attr/checkedState = 0x7f0400b4
+hanson.xyz.vpnhotspotmod:drawable/ic_action_autorenew = 0x7f08009c
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f130042
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_day_height = 0x7f070274
+hanson.xyz.vpnhotspotmod:drawable/design_snackbar_background = 0x7f080099
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_control_highlight = 0x7f06028c
+hanson.xyz.vpnhotspotmod:drawable/design_password_eye = 0x7f080098
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_text_light_focused = 0x7f080092
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_icon_light_normal_background = 0x7f08008b
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_icon_dark_focused = 0x7f080084
+hanson.xyz.vpnhotspotmod:drawable/common_full_open_on_phone = 0x7f080082
+hanson.xyz.vpnhotspotmod:anim/m3_motion_fade_enter = 0x7f010024
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity = 0x7f070164
+hanson.xyz.vpnhotspotmod:drawable/btn_radio_off_to_on_mtrl_animation = 0x7f08007f
+hanson.xyz.vpnhotspotmod:drawable/btn_checkbox_unchecked_to_checked_mtrl_animation = 0x7f08007d
+hanson.xyz.vpnhotspotmod:integer/m3_sys_shape_corner_large_corner_family = 0x7f0a0024
+hanson.xyz.vpnhotspotmod:drawable/btn_checkbox_checked_to_unchecked_mtrl_animation = 0x7f08007b
+hanson.xyz.vpnhotspotmod:color/m3_chip_stroke_color = 0x7f060086
+hanson.xyz.vpnhotspotmod:drawable/avd_hide_password = 0x7f080078
+hanson.xyz.vpnhotspotmod:attr/scrimVisibleHeightTrigger = 0x7f0403ab
+hanson.xyz.vpnhotspotmod:attr/textColorAlertDialogListItem = 0x7f040465
+hanson.xyz.vpnhotspotmod:drawable/abc_textfield_search_default_mtrl_alpha = 0x7f080075
+hanson.xyz.vpnhotspotmod:drawable/abc_text_select_handle_right_mtrl = 0x7f080071
+hanson.xyz.vpnhotspotmod:drawable/abc_text_select_handle_left_mtrl = 0x7f08006f
+hanson.xyz.vpnhotspotmod:drawable/ic_alert_warning = 0x7f0800a9
+hanson.xyz.vpnhotspotmod:drawable/abc_tab_indicator_mtrl_alpha = 0x7f08006d
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_invalid_format = 0x7f1200b5
+hanson.xyz.vpnhotspotmod:drawable/abc_switch_track_mtrl_alpha = 0x7f08006b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_fab_primary_large_container_shape = 0x7f0d003a
+hanson.xyz.vpnhotspotmod:id/bridged_mode_opportunistic_shutdown = 0x7f09006e
+hanson.xyz.vpnhotspotmod:drawable/abc_star_half_black_48dp = 0x7f080069
+hanson.xyz.vpnhotspotmod:attr/spinnerStyle = 0x7f0403e5
+hanson.xyz.vpnhotspotmod:drawable/abc_star_black_48dp = 0x7f080068
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonLargePrimaryStyle = 0x7f0401db
+hanson.xyz.vpnhotspotmod:drawable/abc_seekbar_tick_mark_material = 0x7f080064
+hanson.xyz.vpnhotspotmod:drawable/abc_scrubber_primary_mtrl_alpha = 0x7f080061
+hanson.xyz.vpnhotspotmod:attr/pref_listMarginVertical = 0x7f04037f
+hanson.xyz.vpnhotspotmod:drawable/abc_scrubber_control_to_pressed_mtrl_005 = 0x7f080060
+hanson.xyz.vpnhotspotmod:drawable/abc_ratingbar_indicator_material = 0x7f08005b
+hanson.xyz.vpnhotspotmod:drawable/abc_list_selector_holo_light = 0x7f080058
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_time_selector_separator_color = 0x7f0d0166
+hanson.xyz.vpnhotspotmod:drawable/abc_list_selector_holo_dark = 0x7f080057
+hanson.xyz.vpnhotspotmod:string/settings_service_ip_monitor_monitor_root = 0x7f12011b
+hanson.xyz.vpnhotspotmod:drawable/abc_list_selector_disabled_holo_dark = 0x7f080055
+hanson.xyz.vpnhotspotmod:macro/m3_comp_text_button_focus_state_layer_color = 0x7f0d0143
+hanson.xyz.vpnhotspotmod:drawable/abc_list_selector_background_transition_holo_light = 0x7f080054
+hanson.xyz.vpnhotspotmod:string/abc_shareactionprovider_share_with = 0x7f120018
+hanson.xyz.vpnhotspotmod:attr/boxBackgroundMode = 0x7f04007f
+hanson.xyz.vpnhotspotmod:drawable/abc_list_selector_background_transition_holo_dark = 0x7f080053
+hanson.xyz.vpnhotspotmod:color/m3_fab_efab_background_color_selector = 0x7f06009b
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral80 = 0x7f0600c0
+hanson.xyz.vpnhotspotmod:drawable/abc_list_pressed_holo_dark = 0x7f080051
+hanson.xyz.vpnhotspotmod:drawable/abc_ic_voice_search_api_material = 0x7f08004a
+hanson.xyz.vpnhotspotmod:attr/switchStyle = 0x7f04041a
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_disabled_translation_z = 0x7f0702a5
+hanson.xyz.vpnhotspotmod:drawable/abc_ic_menu_share_mtrl_alpha = 0x7f080048
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_icon_size = 0x7f0702a9
+hanson.xyz.vpnhotspotmod:drawable/abc_ic_ab_back_material = 0x7f08003e
+hanson.xyz.vpnhotspotmod:drawable/abc_edit_text_material = 0x7f08003d
+hanson.xyz.vpnhotspotmod:drawable/ic_social_people = 0x7f0800d3
+hanson.xyz.vpnhotspotmod:id/icon_only = 0x7f0900ee
+hanson.xyz.vpnhotspotmod:drawable/ic_content_file_copy = 0x7f0800b7
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_active_focus_icon_color = 0x7f0d0062
+hanson.xyz.vpnhotspotmod:drawable/abc_dialog_material_background = 0x7f08003c
+hanson.xyz.vpnhotspotmod:drawable/abc_menu_hardkey_panel_mtrl_mult = 0x7f080059
+hanson.xyz.vpnhotspotmod:id/clip_vertical = 0x7f090089
+hanson.xyz.vpnhotspotmod:drawable/abc_cab_background_top_material = 0x7f080039
+hanson.xyz.vpnhotspotmod:drawable/abc_btn_switch_to_on_mtrl_00001 = 0x7f080036
+hanson.xyz.vpnhotspotmod:drawable/abc_btn_radio_to_on_mtrl_000 = 0x7f080034
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_rail_item_padding_bottom_with_large_font = 0x7f0701ce
+hanson.xyz.vpnhotspotmod:drawable/abc_btn_default_mtrl_shape = 0x7f080031
+hanson.xyz.vpnhotspotmod:string/abc_menu_enter_shortcut_label = 0x7f12000b
+hanson.xyz.vpnhotspotmod:layout/ime_base_split_test_activity = 0x7f0c0037
+hanson.xyz.vpnhotspotmod:drawable/abc_btn_check_to_on_mtrl_000 = 0x7f08002e
+hanson.xyz.vpnhotspotmod:drawable/abc_btn_check_material = 0x7f08002c
+hanson.xyz.vpnhotspotmod:id/leftToRight = 0x7f090102
+hanson.xyz.vpnhotspotmod:color/material_dynamic_color_dark_on_error_container = 0x7f06022d
+hanson.xyz.vpnhotspotmod:drawable/abc_btn_borderless_material = 0x7f08002b
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f1301e6
+hanson.xyz.vpnhotspotmod:layout/abc_dialog_title_material = 0x7f0c000c
+hanson.xyz.vpnhotspotmod:drawable/abc_action_bar_item_background_material = 0x7f08002a
+hanson.xyz.vpnhotspotmod:drawable/abc_ab_share_pack_mtrl_alpha = 0x7f080029
+hanson.xyz.vpnhotspotmod:color/material_on_surface_disabled = 0x7f060284
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_switch_thumb_unchecked_checked__0 = 0x7f080026
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.ActionBar.Primary = 0x7f130403
+hanson.xyz.vpnhotspotmod:string/preference_copied = 0x7f1200e6
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_tertiary70 = 0x7f060103
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_switch_thumb_pressed_checked__0 = 0x7f080024
+hanson.xyz.vpnhotspotmod:drawable/notification_bg_normal = 0x7f080115
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_unchecked_checked__2 = 0x7f080020
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_sheet_side_docked_container_width = 0x7f07017f
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_unchecked_checked__0 = 0x7f08001e
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__1 = 0x7f08001c
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_unchecked_checked__0 = 0x7f080018
+hanson.xyz.vpnhotspotmod:string/common_signin_button_text_long = 0x7f12004a
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_tertiary_container = 0x7f06018b
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__1 = 0x7f080016
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__0 = 0x7f080015
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_checked_unchecked__2 = 0x7f08000f
+hanson.xyz.vpnhotspotmod:drawable/abc_seekbar_track_material = 0x7f080065
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_checked_unchecked__1 = 0x7f08000e
+hanson.xyz.vpnhotspotmod:drawable/$m3_avd_hide_password__1 = 0x7f080008
+hanson.xyz.vpnhotspotmod:id/cos = 0x7f090097
+hanson.xyz.vpnhotspotmod:drawable/mtrl_checkbox_button_unchecked_checked = 0x7f0800f4
+hanson.xyz.vpnhotspotmod:drawable/$ic_launcher_foreground__0 = 0x7f080006
+hanson.xyz.vpnhotspotmod:attr/splitLayoutDirection = 0x7f0403e6
+hanson.xyz.vpnhotspotmod:drawable/mtrl_navigation_bar_item_background = 0x7f0800ff
+hanson.xyz.vpnhotspotmod:color/ripple_material_light = 0x7f06030c
+hanson.xyz.vpnhotspotmod:dimen/tooltip_vertical_padding = 0x7f070327
+hanson.xyz.vpnhotspotmod:dimen/tooltip_precise_anchor_threshold = 0x7f070326
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActionButton.Overflow = 0x7f13032e
+hanson.xyz.vpnhotspotmod:dimen/simple_menu_dialog_max_width = 0x7f07031f
+hanson.xyz.vpnhotspotmod:color/highlighted_text_material_dark = 0x7f060070
+hanson.xyz.vpnhotspotmod:dimen/preferences_detail_width = 0x7f07031c
+hanson.xyz.vpnhotspotmod:id/action_bar_title = 0x7f09003d
+hanson.xyz.vpnhotspotmod:dimen/preference_seekbar_padding_vertical = 0x7f07031a
+hanson.xyz.vpnhotspotmod:attr/backgroundSplit = 0x7f040051
+hanson.xyz.vpnhotspotmod:dimen/preference_dropdown_padding_start = 0x7f070317
+hanson.xyz.vpnhotspotmod:drawable/abc_list_divider_material = 0x7f08004d
+hanson.xyz.vpnhotspotmod:dimen/notification_subtext_size = 0x7f070314
+hanson.xyz.vpnhotspotmod:integer/material_motion_duration_short_1 = 0x7f0a002b
+hanson.xyz.vpnhotspotmod:dimen/mtrl_textinput_box_label_cutout_padding = 0x7f0702fa
+hanson.xyz.vpnhotspotmod:dimen/notification_small_icon_size_as_large = 0x7f070313
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.Material3.Corner.Medium = 0x7f130198
+hanson.xyz.vpnhotspotmod:dimen/notification_small_icon_background_padding = 0x7f070312
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_secondary50 = 0x7f0600f4
+hanson.xyz.vpnhotspotmod:dimen/notification_right_icon_size = 0x7f070310
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.SeekBar = 0x7f1300f8
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ActionBar = 0x7f1300c6
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_disabled_elevation = 0x7f0700d0
+hanson.xyz.vpnhotspotmod:dimen/notification_media_narrow_margin = 0x7f07030f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_time_selector_unselected_hover_state_layer_color = 0x7f0d016a
+hanson.xyz.vpnhotspotmod:attr/measureWithLargestChild = 0x7f040305
+hanson.xyz.vpnhotspotmod:dimen/m3_searchbar_padding_start = 0x7f0701db
+hanson.xyz.vpnhotspotmod:dimen/notification_content_margin_start = 0x7f07030b
+hanson.xyz.vpnhotspotmod:color/design_default_color_surface = 0x7f06005d
+hanson.xyz.vpnhotspotmod:dimen/mtrl_transition_shared_axis_slide_distance = 0x7f070307
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.CircularProgressIndicator = 0x7f13042b
+hanson.xyz.vpnhotspotmod:attr/behavior_skipCollapsed = 0x7f040075
+hanson.xyz.vpnhotspotmod:dimen/mtrl_tooltip_padding = 0x7f070306
+hanson.xyz.vpnhotspotmod:dimen/mtrl_tooltip_minWidth = 0x7f070305
+hanson.xyz.vpnhotspotmod:integer/material_motion_duration_medium_1 = 0x7f0a0029
+hanson.xyz.vpnhotspotmod:dimen/mtrl_tooltip_cornerSize = 0x7f070303
+hanson.xyz.vpnhotspotmod:attr/materialSearchViewToolbarStyle = 0x7f0402f5
+hanson.xyz.vpnhotspotmod:dimen/mtrl_toolbar_default_height = 0x7f070301
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem = 0x7f13016b
+hanson.xyz.vpnhotspotmod:dimen/mtrl_textinput_start_icon_margin_end = 0x7f070300
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox = 0x7f13040d
+hanson.xyz.vpnhotspotmod:dimen/mtrl_textinput_outline_box_expanded_padding = 0x7f0702ff
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_fab_primary_large_container_height = 0x7f07011f
+hanson.xyz.vpnhotspotmod:dimen/mtrl_textinput_end_icon_margin_start = 0x7f0702fe
+hanson.xyz.vpnhotspotmod:dimen/mtrl_textinput_box_stroke_width_focused = 0x7f0702fc
+hanson.xyz.vpnhotspotmod:dimen/mtrl_textinput_box_corner_radius_small = 0x7f0702f9
+hanson.xyz.vpnhotspotmod:dimen/mtrl_switch_track_height = 0x7f0702f6
+hanson.xyz.vpnhotspotmod:id/percent = 0x7f090189
+hanson.xyz.vpnhotspotmod:dimen/mtrl_switch_thumb_icon_size = 0x7f0702f4
+hanson.xyz.vpnhotspotmod:dimen/mtrl_switch_text_padding = 0x7f0702f2
+hanson.xyz.vpnhotspotmod:dimen/mtrl_snackbar_padding_horizontal = 0x7f0702f1
+hanson.xyz.vpnhotspotmod:attr/passwordToggleTint = 0x7f040362
+hanson.xyz.vpnhotspotmod:dimen/mtrl_snackbar_margin = 0x7f0702ef
+hanson.xyz.vpnhotspotmod:dimen/mtrl_slider_tick_radius = 0x7f0702e8
+hanson.xyz.vpnhotspotmod:id/animateToEnd = 0x7f090056
+hanson.xyz.vpnhotspotmod:dimen/mtrl_slider_thumb_radius = 0x7f0702e7
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_bar_pressed_state_layer_color = 0x7f0d00ed
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_selected_hover_state_layer_color = 0x7f0d00dc
+hanson.xyz.vpnhotspotmod:dimen/mtrl_slider_thumb_elevation = 0x7f0702e6
+hanson.xyz.vpnhotspotmod:id/BOTTOM_END = 0x7f090001
+hanson.xyz.vpnhotspotmod:dimen/mtrl_slider_label_radius = 0x7f0702e4
+hanson.xyz.vpnhotspotmod:drawable/abc_item_background_holo_light = 0x7f08004c
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_min_width = 0x7f0702ac
+hanson.xyz.vpnhotspotmod:dimen/mtrl_shape_corner_size_small_component = 0x7f0702e1
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.Dialog.Alert = 0x7f13028b
+hanson.xyz.vpnhotspotmod:attr/motionDurationMedium4 = 0x7f040321
+hanson.xyz.vpnhotspotmod:drawable/mtrl_ic_cancel = 0x7f0800f9
+hanson.xyz.vpnhotspotmod:dimen/notification_action_text_size = 0x7f070309
+hanson.xyz.vpnhotspotmod:drawable/ic_action_settings_backup_restore = 0x7f0800a3
+hanson.xyz.vpnhotspotmod:dimen/mtrl_shape_corner_size_large_component = 0x7f0702df
+hanson.xyz.vpnhotspotmod:dimen/notification_right_side_padding_top = 0x7f070311
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_circular_track_thickness_medium = 0x7f0702db
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_circular_size_small = 0x7f0702d9
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_circular_size_medium = 0x7f0702d8
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Dark.Dialog.MinWidth = 0x7f130251
+hanson.xyz.vpnhotspotmod:attr/materialTimePickerTheme = 0x7f0402f9
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_circular_size = 0x7f0702d6
+hanson.xyz.vpnhotspotmod:drawable/abc_list_longpressed_holo = 0x7f080050
+hanson.xyz.vpnhotspotmod:color/m3_simple_item_ripple_color = 0x7f060163
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_circular_inset_medium = 0x7f0702d3
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_circular_inset_extra_small = 0x7f0702d2
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_card_focus_outline_color = 0x7f0d00af
+hanson.xyz.vpnhotspotmod:id/circle_center = 0x7f090084
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_rail_text_size = 0x7f0702d0
+hanson.xyz.vpnhotspotmod:dimen/design_appbar_elevation = 0x7f070060
+hanson.xyz.vpnhotspotmod:dimen/tooltip_margin = 0x7f070324
+hanson.xyz.vpnhotspotmod:attr/paddingTopNoTitle = 0x7f04035a
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_header_content_padding_fullscreen = 0x7f07027c
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_rail_text_bottom_margin = 0x7f0702cf
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_rail_icon_size = 0x7f0702cd
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Small = 0x7f1301cf
+hanson.xyz.vpnhotspotmod:id/src_in = 0x7f0901d2
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_rail_icon_margin = 0x7f0702cc
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_bar_pressed_supporting_text_color = 0x7f0d00ee
+hanson.xyz.vpnhotspotmod:id/seekbar_value = 0x7f0901b9
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral_variant90 = 0x7f060137
+hanson.xyz.vpnhotspotmod:dimen/abc_action_bar_default_padding_end_material = 0x7f070003
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_rail_active_text_size = 0x7f0702c8
+hanson.xyz.vpnhotspotmod:color/material_dynamic_tertiary50 = 0x7f06026c
+hanson.xyz.vpnhotspotmod:dimen/mtrl_switch_thumb_size = 0x7f0702f5
+hanson.xyz.vpnhotspotmod:macro/m3_comp_menu_list_item_selected_container_color = 0x7f0d0061
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_item_icon_size = 0x7f0702c5
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_padding_bottom = 0x7f0700dc
+hanson.xyz.vpnhotspotmod:drawable/ic_content_inbox = 0x7f0800b8
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_item_horizontal_padding = 0x7f0702c3
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_elevation = 0x7f0702c2
+hanson.xyz.vpnhotspotmod:id/open_search_view_divider = 0x7f090171
+hanson.xyz.vpnhotspotmod:array/settings_service_ip_monitor = 0x7f030000
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_radio_button_unselected_pressed_state_layer_opacity = 0x7f07016e
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_bar_item_default_margin = 0x7f0702c1
+hanson.xyz.vpnhotspotmod:dimen/mtrl_low_ripple_pressed_alpha = 0x7f0702be
+hanson.xyz.vpnhotspotmod:attr/paddingStartSystemWindowInsets = 0x7f040359
+hanson.xyz.vpnhotspotmod:dimen/mtrl_low_ripple_default_alpha = 0x7f0702bb
+hanson.xyz.vpnhotspotmod:dimen/mtrl_high_ripple_hovered_alpha = 0x7f0702b9
+hanson.xyz.vpnhotspotmod:id/configuration_temp_hotspot = 0x7f090090
+hanson.xyz.vpnhotspotmod:dimen/mtrl_fab_translation_z_hovered_focused = 0x7f0702b5
+hanson.xyz.vpnhotspotmod:dimen/mtrl_fab_elevation = 0x7f0702b3
+hanson.xyz.vpnhotspotmod:macro/m3_comp_suggestion_chip_container_shape = 0x7f0d0118
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_translation_z_hovered_focused = 0x7f0702b1
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_top_padding = 0x7f0702af
+hanson.xyz.vpnhotspotmod:style/CardView.Dark = 0x7f130125
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_start_padding = 0x7f0702ad
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_end_padding_icon = 0x7f0702a8
+hanson.xyz.vpnhotspotmod:styleable/ButtonBarLayout = 0x7f14001b
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.AppCompat.Dialog = 0x7f13029d
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.Material3.Corner.Full = 0x7f130196
+hanson.xyz.vpnhotspotmod:layout/mtrl_alert_select_dialog_singlechoice = 0x7f0c005b
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_end_padding = 0x7f0702a7
+hanson.xyz.vpnhotspotmod:id/transition_scene_layoutid_cache = 0x7f090213
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_icon_light_focused = 0x7f080089
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_disabled_elevation = 0x7f0702a4
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_tertiary10 = 0x7f060155
+hanson.xyz.vpnhotspotmod:dimen/mtrl_chip_text_size = 0x7f07029f
+hanson.xyz.vpnhotspotmod:dimen/mtrl_chip_pressed_translation_z = 0x7f07029e
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Toolbar.PrimarySurface = 0x7f13047e
+hanson.xyz.vpnhotspotmod:dimen/mtrl_card_corner_radius = 0x7f07029a
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_year_width = 0x7f070297
+hanson.xyz.vpnhotspotmod:attr/boxCornerRadiusTopStart = 0x7f040084
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_year_vertical_padding = 0x7f070296
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_27 = 0x7f090025
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_year_corner = 0x7f070293
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_title_baseline_to_top = 0x7f070291
+hanson.xyz.vpnhotspotmod:macro/m3_comp_extended_fab_surface_icon_color = 0x7f0d0034
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_text_input_padding_top = 0x7f070290
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_selection_text_baseline_to_top = 0x7f07028f
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_selection_text_baseline_to_bottom = 0x7f07028d
+hanson.xyz.vpnhotspotmod:id/deltaRelative = 0x7f0900a4
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_unchecked_checked__1 = 0x7f08001f
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_navigation_top_padding = 0x7f07028a
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon = 0x7f130434
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_navigation_height = 0x7f070289
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_month_vertical_padding = 0x7f070287
+hanson.xyz.vpnhotspotmod:styleable/ThemeEnforcement = 0x7f1400a2
+hanson.xyz.vpnhotspotmod:id/donations__google_android_market_donate_button = 0x7f0900b3
+hanson.xyz.vpnhotspotmod:id/SYM = 0x7f09000b
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_month_horizontal_padding = 0x7f070286
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_landscape_header_width = 0x7f070284
+hanson.xyz.vpnhotspotmod:color/mtrl_card_view_foreground = 0x7f0602d1
+hanson.xyz.vpnhotspotmod:attr/curveFit = 0x7f040154
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_header_toggle_margin_bottom = 0x7f070282
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_header_selection_line_height = 0x7f070280
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_header_height_fullscreen = 0x7f07027f
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_header_content_padding = 0x7f07027b
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Light.ActionBar.Solid = 0x7f130436
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActionBar.Solid = 0x7f130324
+hanson.xyz.vpnhotspotmod:style/Base.Theme.Material3.Dark.SideSheetDialog = 0x7f130062
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_day_today_stroke = 0x7f070276
+hanson.xyz.vpnhotspotmod:dimen/material_clock_period_toggle_height = 0x7f070228
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_day_horizontal_padding = 0x7f070275
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_action_padding = 0x7f070270
+hanson.xyz.vpnhotspotmod:attr/autoSizePresetSizes = 0x7f040045
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_stroke_size = 0x7f070268
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_snackbar_margin_horizontal = 0x7f070267
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_pressed_z = 0x7f070266
+hanson.xyz.vpnhotspotmod:attr/listChoiceIndicatorSingleAnimated = 0x7f0402b7
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_padding_right = 0x7f070264
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_icon_padding = 0x7f07025e
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.BottomNavigation.Badge = 0x7f13036b
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_focused_z = 0x7f07025b
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_elevation = 0x7f07025a
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_disabled_z = 0x7f070259
+hanson.xyz.vpnhotspotmod:integer/mtrl_switch_thumb_viewport_size = 0x7f0a003c
+hanson.xyz.vpnhotspotmod:animator/fragment_open_enter = 0x7f020007
+hanson.xyz.vpnhotspotmod:attr/snackbarTextViewStyle = 0x7f0403e1
+hanson.xyz.vpnhotspotmod:dimen/mtrl_bottomappbar_fab_cradle_vertical_offset = 0x7f070254
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.BottomAppBar.Container.Shape = 0x7f13017d
+hanson.xyz.vpnhotspotmod:dimen/mtrl_badge_toolbar_action_menu_item_vertical_offset = 0x7f07024e
+hanson.xyz.vpnhotspotmod:color/mtrl_chip_surface_color = 0x7f0602d5
+hanson.xyz.vpnhotspotmod:dimen/mtrl_badge_toolbar_action_menu_item_horizontal_offset = 0x7f07024d
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Badge.AdjustToBounds = 0x7f130367
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.Dialog.Alert.Bridge = 0x7f130273
+hanson.xyz.vpnhotspotmod:dimen/mtrl_badge_text_size = 0x7f07024c
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_focus_track_color = 0x7f0d0124
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_active_pressed_icon_color = 0x7f0d006b
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_tertiary_container = 0x7f0602b2
+hanson.xyz.vpnhotspotmod:dimen/mtrl_badge_text_horizontal_edge_offset = 0x7f07024b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_primary_navigation_tab_inactive_hover_state_layer_color = 0x7f0d00d0
+hanson.xyz.vpnhotspotmod:dimen/mtrl_badge_size = 0x7f07024a
+hanson.xyz.vpnhotspotmod:attr/colorPrimaryContainer = 0x7f040108
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral4 = 0x7f06011e
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_outlined_text_field_disabled_input_text_opacity = 0x7f07015a
+hanson.xyz.vpnhotspotmod:dimen/mtrl_badge_long_text_horizontal_padding = 0x7f070249
+hanson.xyz.vpnhotspotmod:dimen/mtrl_badge_horizontal_edge_offset = 0x7f070248
+hanson.xyz.vpnhotspotmod:layout/material_time_chip = 0x7f0c0051
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_pre_l_text_clip_padding = 0x7f07028b
+hanson.xyz.vpnhotspotmod:dimen/abc_dialog_min_width_minor = 0x7f070023
+hanson.xyz.vpnhotspotmod:dimen/mtrl_alert_dialog_picker_background_inset = 0x7f070247
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Large.Inverse = 0x7f130026
+hanson.xyz.vpnhotspotmod:dimen/material_clock_period_toggle_horizontal_gap = 0x7f070229
+hanson.xyz.vpnhotspotmod:attr/materialCalendarFullscreenTheme = 0x7f0402d7
+hanson.xyz.vpnhotspotmod:dimen/mtrl_alert_dialog_background_inset_start = 0x7f070245
+hanson.xyz.vpnhotspotmod:dimen/mtrl_alert_dialog_background_inset_bottom = 0x7f070243
+hanson.xyz.vpnhotspotmod:dimen/material_time_picker_minimum_screen_width = 0x7f070242
+hanson.xyz.vpnhotspotmod:dimen/material_textinput_min_width = 0x7f070240
+hanson.xyz.vpnhotspotmod:dimen/material_input_text_to_prefix_suffix_padding = 0x7f07023d
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_surface_dim = 0x7f0602ae
+hanson.xyz.vpnhotspotmod:dimen/material_helper_text_default_padding_top = 0x7f07023a
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.ActionMode = 0x7f130360
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f13003b
+hanson.xyz.vpnhotspotmod:dimen/material_font_1_3_box_collapsed_padding_top = 0x7f070238
+hanson.xyz.vpnhotspotmod:dimen/material_filled_edittext_font_1_3_padding_bottom = 0x7f070234
+hanson.xyz.vpnhotspotmod:dimen/material_emphasis_disabled_background = 0x7f070231
+hanson.xyz.vpnhotspotmod:dimen/material_emphasis_disabled = 0x7f070230
+hanson.xyz.vpnhotspotmod:dimen/material_cursor_width = 0x7f07022e
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.NavigationRailView.PrimarySurface = 0x7f130456
+hanson.xyz.vpnhotspotmod:attr/itemPadding = 0x7f04024d
+hanson.xyz.vpnhotspotmod:dimen/material_cursor_inset = 0x7f07022d
+hanson.xyz.vpnhotspotmod:dimen/material_clock_period_toggle_width = 0x7f07022b
+hanson.xyz.vpnhotspotmod:dimen/material_clock_number_text_size = 0x7f070227
+hanson.xyz.vpnhotspotmod:dimen/material_clock_hand_center_dot_radius = 0x7f070224
+hanson.xyz.vpnhotspotmod:attr/chipStartPadding = 0x7f0400c5
+hanson.xyz.vpnhotspotmod:dimen/material_clock_face_margin_top = 0x7f070223
+hanson.xyz.vpnhotspotmod:color/m3_navigation_bar_item_with_indicator_icon_tint = 0x7f0600a2
+hanson.xyz.vpnhotspotmod:attr/placeholder_emptyVisibility = 0x7f040371
+hanson.xyz.vpnhotspotmod:dimen/material_clock_display_width = 0x7f070221
+hanson.xyz.vpnhotspotmod:string/abc_menu_space_shortcut_label = 0x7f12000f
+hanson.xyz.vpnhotspotmod:dimen/material_clock_display_padding = 0x7f070220
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.MaterialComponents.Dialog = 0x7f130088
+hanson.xyz.vpnhotspotmod:dimen/material_clock_display_height = 0x7f07021f
+hanson.xyz.vpnhotspotmod:id/home = 0x7f0900e8
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_text_btn_icon_padding_left = 0x7f0700e1
+hanson.xyz.vpnhotspotmod:dimen/mtrl_min_touch_target_size = 0x7f0702bf
+hanson.xyz.vpnhotspotmod:id/honorRequest = 0x7f0900ea
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_state_focus_state_layer_opacity = 0x7f070218
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_standard_accelerate_control_y2 = 0x7f07020e
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_container_shape = 0x7f0d000f
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_standard_accelerate_control_y1 = 0x7f07020d
+hanson.xyz.vpnhotspotmod:drawable/abc_cab_background_top_mtrl_alpha = 0x7f08003a
+hanson.xyz.vpnhotspotmod:dimen/mtrl_switch_thumb_elevation = 0x7f0702f3
+hanson.xyz.vpnhotspotmod:dimen/abc_action_button_min_width_material = 0x7f07000e
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_linear_control_x2 = 0x7f070208
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Tertiary = 0x7f1302c3
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_legacy_decelerate_control_y1 = 0x7f070205
+hanson.xyz.vpnhotspotmod:dimen/mtrl_bottomappbar_fab_bottom_margin = 0x7f070251
+hanson.xyz.vpnhotspotmod:attr/panelMenuListTheme = 0x7f04035d
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_legacy_decelerate_control_x1 = 0x7f070203
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_standard_decelerate_control_y1 = 0x7f070215
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Snackbar = 0x7f1302d8
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.NoActionBar = 0x7f13027a
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_legacy_control_x1 = 0x7f0701ff
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_outline = 0x7f06029c
+hanson.xyz.vpnhotspotmod:attr/shapeCornerFamily = 0x7f0403c4
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_legacy_accelerate_control_y1 = 0x7f0701fd
+hanson.xyz.vpnhotspotmod:dimen/m3_chip_corner_size = 0x7f0700f7
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_emphasized_decelerate_control_y1 = 0x7f0701f9
+hanson.xyz.vpnhotspotmod:attr/windowActionModeOverlay = 0x7f0404d1
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_emphasized_decelerate_control_x1 = 0x7f0701f7
+hanson.xyz.vpnhotspotmod:attr/checkMarkTint = 0x7f0400a8
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_emphasized_accelerate_control_x2 = 0x7f0701f4
+hanson.xyz.vpnhotspotmod:attr/chipGroupStyle = 0x7f0400b9
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_elevation_level3 = 0x7f0701f0
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_elevation_level2 = 0x7f0701ef
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_elevation_level1 = 0x7f0701ee
+hanson.xyz.vpnhotspotmod:dimen/m3_snackbar_margin = 0x7f0701ec
+hanson.xyz.vpnhotspotmod:styleable/ClockHandView = 0x7f140025
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_circular_track_thickness_small = 0x7f0702dc
+hanson.xyz.vpnhotspotmod:dimen/m3_snackbar_action_text_color_alpha = 0x7f0701eb
+hanson.xyz.vpnhotspotmod:color/m3_timepicker_clock_text_color = 0x7f06021b
+hanson.xyz.vpnhotspotmod:attr/behavior_halfExpandedRatio = 0x7f04006f
+hanson.xyz.vpnhotspotmod:dimen/m3_small_fab_size = 0x7f0701ea
+hanson.xyz.vpnhotspotmod:macro/m3_comp_checkbox_selected_error_container_color = 0x7f0d0009
+hanson.xyz.vpnhotspotmod:drawable/m3_selection_control_ripple = 0x7f0800db
+hanson.xyz.vpnhotspotmod:dimen/m3_side_sheet_margin_detached = 0x7f0701e1
+hanson.xyz.vpnhotspotmod:string/call_notification_ongoing_text = 0x7f120029
+hanson.xyz.vpnhotspotmod:color/design_dark_default_color_primary = 0x7f06004b
+hanson.xyz.vpnhotspotmod:dimen/m3_searchview_height = 0x7f0701e0
+hanson.xyz.vpnhotspotmod:attr/closeIconStartPadding = 0x7f0400d7
+hanson.xyz.vpnhotspotmod:dimen/m3_searchview_elevation = 0x7f0701df
+hanson.xyz.vpnhotspotmod:dimen/m3_searchbar_text_size = 0x7f0701dd
+hanson.xyz.vpnhotspotmod:dimen/m3_searchbar_margin_horizontal = 0x7f0701d8
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_switch_thumb_checked_unchecked__0 = 0x7f080022
+hanson.xyz.vpnhotspotmod:dimen/m3_searchbar_height = 0x7f0701d7
+hanson.xyz.vpnhotspotmod:drawable/ic_device_wifi_tethering = 0x7f0800bf
+hanson.xyz.vpnhotspotmod:dimen/m3_searchbar_elevation = 0x7f0701d6
+hanson.xyz.vpnhotspotmod:attr/dividerVertical = 0x7f04017d
+hanson.xyz.vpnhotspotmod:attr/materialCardViewElevatedStyle = 0x7f0402e4
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_secondary30 = 0x7f0600f2
+hanson.xyz.vpnhotspotmod:dimen/m3_ripple_selectable_pressed_alpha = 0x7f0701d5
+hanson.xyz.vpnhotspotmod:attr/pref_dialogMaxWidth = 0x7f04037b
+hanson.xyz.vpnhotspotmod:dimen/abc_dialog_list_padding_bottom_no_buttons = 0x7f070020
+hanson.xyz.vpnhotspotmod:dimen/m3_ripple_pressed_alpha = 0x7f0701d4
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Medium = 0x7f130029
+hanson.xyz.vpnhotspotmod:layout/material_radial_view_group = 0x7f0c004f
+hanson.xyz.vpnhotspotmod:dimen/m3_ripple_hovered_alpha = 0x7f0701d3
+hanson.xyz.vpnhotspotmod:dimen/m3_ripple_focused_alpha = 0x7f0701d2
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.SearchView = 0x7f1300f6
+hanson.xyz.vpnhotspotmod:layout/expand_button = 0x7f0c0032
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_rail_item_padding_top_with_large_font = 0x7f0701d0
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.ActionBar.Surface = 0x7f130406
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_rail_item_padding_top = 0x7f0701cf
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.Day.Selected = 0x7f13043c
+hanson.xyz.vpnhotspotmod:color/browser_actions_divider_color = 0x7f060028
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_rail_hover_state_layer_opacity = 0x7f07014f
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_rail_item_padding_bottom = 0x7f0701cd
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_rail_item_active_indicator_width = 0x7f0701cb
+hanson.xyz.vpnhotspotmod:id/info = 0x7f0900f6
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_rail_item_active_indicator_margin_horizontal = 0x7f0701ca
+hanson.xyz.vpnhotspotmod:attr/viewInflaterClass = 0x7f0404c5
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_tertiary_fixed = 0x7f060208
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_rail_item_active_indicator_height = 0x7f0701c9
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.MaterialAlertDialog.Material3 = 0x7f1301b0
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_rail_icon_size = 0x7f0701c8
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_rail_focus_state_layer_opacity = 0x7f07014e
+hanson.xyz.vpnhotspotmod:drawable/m3_tabs_background = 0x7f0800dc
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.FloatingActionButton.Surface = 0x7f1303b1
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_rail_elevation = 0x7f0701c7
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_item_shape_inset_top = 0x7f0701c2
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_item_shape_inset_start = 0x7f0701c1
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_rail_container_elevation = 0x7f07014c
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__2 = 0x7f08001d
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu = 0x7f1303fa
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_item_icon_padding = 0x7f0701be
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.DisplaySmall = 0x7f13020f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_weekdays_label_text_type = 0x7f0d001f
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_item_active_indicator_label_padding = 0x7f0701bc
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_drawer_layout_corner_size = 0x7f0701bb
+hanson.xyz.vpnhotspotmod:dimen/m3_nav_badge_with_text_vertical_offset = 0x7f0701ba
+hanson.xyz.vpnhotspotmod:color/abc_btn_colored_text_material = 0x7f060003
+hanson.xyz.vpnhotspotmod:dimen/m3_menu_elevation = 0x7f0701b9
+hanson.xyz.vpnhotspotmod:string/material_timepicker_pm = 0x7f120097
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_sheet_side_docked_standard_container_elevation = 0x7f070181
+hanson.xyz.vpnhotspotmod:dimen/m3_large_text_vertical_offset_adjustment = 0x7f0701b8
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.FilledButton.Container.Shape = 0x7f13017f
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_on_tertiary_fixed_variant = 0x7f0601d5
+hanson.xyz.vpnhotspotmod:dimen/m3_fab_translation_z_hovered_focused = 0x7f0701b4
+hanson.xyz.vpnhotspotmod:dimen/design_snackbar_max_width = 0x7f070085
+hanson.xyz.vpnhotspotmod:dimen/m3_extended_fab_top_padding = 0x7f0701b1
+hanson.xyz.vpnhotspotmod:integer/google_play_services_version = 0x7f0a0008
+hanson.xyz.vpnhotspotmod:dimen/m3_extended_fab_start_padding = 0x7f0701b0
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.AutoCompleteTextView.FilledBox = 0x7f130362
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.Slider = 0x7f13011e
+hanson.xyz.vpnhotspotmod:dimen/m3_extended_fab_icon_padding = 0x7f0701ae
+hanson.xyz.vpnhotspotmod:dimen/mtrl_slider_label_square_side = 0x7f0702e5
+hanson.xyz.vpnhotspotmod:dimen/m3_extended_fab_end_padding = 0x7f0701ad
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.Widget.AppCompat.Toolbar.Title = 0x7f13004e
+hanson.xyz.vpnhotspotmod:attr/background = 0x7f04004a
+hanson.xyz.vpnhotspotmod:dimen/m3_divider_heavy_thickness = 0x7f0701ab
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_on_error_container = 0x7f060194
+hanson.xyz.vpnhotspotmod:dimen/m3_datepicker_elevation = 0x7f0701aa
+hanson.xyz.vpnhotspotmod:style/Preference.Category = 0x7f13014a
+hanson.xyz.vpnhotspotmod:attr/behavior_overlapTop = 0x7f040071
+hanson.xyz.vpnhotspotmod:attr/motionProgress = 0x7f040335
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_top_app_bar_small_on_scroll_container_elevation = 0x7f0701a9
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.CircularProgressIndicator.Small = 0x7f13042e
+hanson.xyz.vpnhotspotmod:id/SHOW_PROGRESS = 0x7f09000a
+hanson.xyz.vpnhotspotmod:attr/materialClockStyle = 0x7f0402e9
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_top_app_bar_small_container_elevation = 0x7f0701a7
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_time_picker_period_selector_pressed_state_layer_opacity = 0x7f0701a1
+hanson.xyz.vpnhotspotmod:color/abc_tint_edittext = 0x7f060015
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_time_picker_period_selector_hover_state_layer_opacity = 0x7f07019f
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_time_picker_period_selector_focus_state_layer_opacity = 0x7f07019e
+hanson.xyz.vpnhotspotmod:dimen/m3_bottom_nav_item_padding_bottom = 0x7f0700c2
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_text_button_pressed_state_layer_opacity = 0x7f07019b
+hanson.xyz.vpnhotspotmod:styleable/TextInputEditText = 0x7f14009f
+hanson.xyz.vpnhotspotmod:attr/textAppearanceSubtitle2 = 0x7f040461
+hanson.xyz.vpnhotspotmod:attr/expanded = 0x7f0401b8
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_switch_unselected_pressed_state_layer_opacity = 0x7f070198
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_on_primary_container = 0x7f060174
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_switch_unselected_hover_state_layer_opacity = 0x7f070197
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_switch_track_height = 0x7f070194
+hanson.xyz.vpnhotspotmod:styleable/MaterialAlertDialog = 0x7f140052
+hanson.xyz.vpnhotspotmod:dimen/disabled_alpha_material_dark = 0x7f070090
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_switch_selected_hover_state_layer_opacity = 0x7f070192
+hanson.xyz.vpnhotspotmod:id/action_container = 0x7f09003e
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_switch_selected_focus_state_layer_opacity = 0x7f070191
+hanson.xyz.vpnhotspotmod:string/settings_service_dhcp_workaround = 0x7f120115
+hanson.xyz.vpnhotspotmod:macro/m3_comp_top_app_bar_medium_headline_color = 0x7f0d016e
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_switch_disabled_track_opacity = 0x7f07018e
+hanson.xyz.vpnhotspotmod:menu/popup_client = 0x7f0e0001
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_snackbar_container_elevation = 0x7f070186
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_action_confirm_button_min_width = 0x7f07026e
+hanson.xyz.vpnhotspotmod:drawable/$m3_avd_show_password__2 = 0x7f08000c
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_medium_material = 0x7f070049
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_slider_disabled_handle_opacity = 0x7f070183
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_announce_current_selection = 0x7f1200ac
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_selected_icon_color = 0x7f0d00dd
+hanson.xyz.vpnhotspotmod:id/material_clock_hand = 0x7f090119
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_sheet_bottom_docked_drag_handle_width = 0x7f07017c
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.DialogWhenLarge = 0x7f130071
+hanson.xyz.vpnhotspotmod:attr/checkMarkTintMode = 0x7f0400a9
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_secondary_navigation_tab_pressed_state_layer_opacity = 0x7f07017a
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_secondary_navigation_tab_hover_state_layer_opacity = 0x7f070179
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_secondary_navigation_tab_focus_state_layer_opacity = 0x7f070178
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Chip.Filter.Elevated = 0x7f13038b
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.AutoCompleteTextView = 0x7f130331
+hanson.xyz.vpnhotspotmod:attr/flow_wrapMode = 0x7f0401fc
+hanson.xyz.vpnhotspotmod:drawable/ic_file_downloading = 0x7f0800c0
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_suggestion_chip_with_leading_icon_leading_icon_size = 0x7f07018b
+hanson.xyz.vpnhotspotmod:style/Preference.SimpleMenuPreference.Popup = 0x7f13015c
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_search_view_full_screen_header_container_height = 0x7f070176
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_search_bar_pressed_state_layer_opacity = 0x7f070173
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_search_bar_container_height = 0x7f070171
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_unchecked_checked__1 = 0x7f080019
+hanson.xyz.vpnhotspotmod:attr/actionOverflowButtonStyle = 0x7f04001f
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_radio_button_unselected_hover_state_layer_opacity = 0x7f07016d
+hanson.xyz.vpnhotspotmod:attr/spanCount = 0x7f0403e2
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_radio_button_selected_hover_state_layer_opacity = 0x7f07016a
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity = 0x7f070165
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_switch_disabled_unselected_handle_opacity = 0x7f07018f
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_stroke_size = 0x7f0700e0
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_primary_navigation_tab_inactive_focus_state_layer_opacity = 0x7f070163
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_primary_navigation_tab_active_pressed_state_layer_opacity = 0x7f070162
+hanson.xyz.vpnhotspotmod:attr/contentDescription = 0x7f04012c
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_primary_navigation_tab_active_hover_state_layer_opacity = 0x7f070160
+hanson.xyz.vpnhotspotmod:macro/m3_comp_secondary_navigation_tab_hover_state_layer_color = 0x7f0d00ff
+hanson.xyz.vpnhotspotmod:dimen/mtrl_low_ripple_focused_alpha = 0x7f0702bc
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_outlined_button_outline_width = 0x7f070154
+hanson.xyz.vpnhotspotmod:styleable/ListPreference = 0x7f140050
+hanson.xyz.vpnhotspotmod:dimen/notification_large_icon_width = 0x7f07030d
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_outlined_button_disabled_outline_opacity = 0x7f070153
+hanson.xyz.vpnhotspotmod:drawable/abc_ratingbar_small_material = 0x7f08005d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_linear_progress_indicator_active_indicator_color = 0x7f0d005e
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_rail_active_indicator_width = 0x7f07014b
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.CompoundButton.CheckBox = 0x7f1300d9
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_rail_active_indicator_height = 0x7f07014a
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_drawer_standard_container_elevation = 0x7f070149
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ProgressBar.Horizontal = 0x7f1300f2
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Display2 = 0x7f130020
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_drawer_icon_size = 0x7f070146
+hanson.xyz.vpnhotspotmod:drawable/mtrl_switch_thumb_pressed = 0x7f080106
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_linear_progress_indicator_active_indicator_height = 0x7f070139
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_text_disabled = 0x7f080090
+hanson.xyz.vpnhotspotmod:attr/dynamicColorThemeOverlay = 0x7f040193
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_input_chip_with_avatar_avatar_size = 0x7f070137
+hanson.xyz.vpnhotspotmod:macro/m3_comp_extended_fab_primary_container_color = 0x7f0d002d
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_input_chip_unselected_outline_width = 0x7f070136
+hanson.xyz.vpnhotspotmod:drawable/m3_tabs_transparent_background = 0x7f0800df
+hanson.xyz.vpnhotspotmod:id/material_clock_face = 0x7f090118
+hanson.xyz.vpnhotspotmod:id/expand_activities_button = 0x7f0900ca
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filled_card_pressed_state_layer_opacity = 0x7f07012d
+hanson.xyz.vpnhotspotmod:attr/switchTextAppearance = 0x7f04041b
+hanson.xyz.vpnhotspotmod:attr/horizontalOffset = 0x7f040224
+hanson.xyz.vpnhotspotmod:attr/barLength = 0x7f040066
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filled_card_hover_state_layer_opacity = 0x7f07012b
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filled_card_dragged_state_layer_opacity = 0x7f070129
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.MaterialCalendar.NavigationButton = 0x7f130110
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filled_button_container_elevation = 0x7f070126
+hanson.xyz.vpnhotspotmod:style/Platform.V25.AppCompat.Light = 0x7f130147
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_fab_primary_small_icon_size = 0x7f070124
+hanson.xyz.vpnhotspotmod:drawable/btn_checkbox_checked_mtrl = 0x7f08007a
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_fab_primary_small_container_height = 0x7f070123
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_fab_primary_icon_size = 0x7f07011e
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_fab_primary_focus_state_layer_opacity = 0x7f07011b
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_extended_fab_primary_icon_size = 0x7f070116
+hanson.xyz.vpnhotspotmod:id/navigation_bar_item_icon_container = 0x7f090155
+hanson.xyz.vpnhotspotmod:dimen/m3_side_sheet_standard_elevation = 0x7f0701e3
+hanson.xyz.vpnhotspotmod:id/disjoint = 0x7f0900b1
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_extended_fab_primary_hover_state_layer_opacity = 0x7f070115
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_extended_fab_primary_hover_container_elevation = 0x7f070114
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_extended_fab_primary_focus_state_layer_opacity = 0x7f070113
+hanson.xyz.vpnhotspotmod:attr/autoSizeTextType = 0x7f040047
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_navigation_bottom_padding = 0x7f070288
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_inset = 0x7f07025f
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat.Light.Dialog.FixedSize = 0x7f13005a
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_extended_fab_primary_focus_container_elevation = 0x7f070112
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_extended_fab_primary_container_elevation = 0x7f070110
+hanson.xyz.vpnhotspotmod:macro/m3_comp_dialog_supporting_text_color = 0x7f0d0027
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_elevated_card_icon_size = 0x7f07010f
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_elevated_button_disabled_container_elevation = 0x7f07010d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_icon_button_toggle_selected_icon_color = 0x7f0d004a
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_min_height = 0x7f0702ab
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_elevated_button_container_elevation = 0x7f07010c
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_date_picker_modal_range_selection_header_container_height = 0x7f07010a
+hanson.xyz.vpnhotspotmod:styleable/Preference = 0x7f140076
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.AppCompat.DayNight.ActionBar = 0x7f13029c
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_tonal_button_label_text_color = 0x7f0d0054
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_surface = 0x7f0602a7
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_date_picker_modal_date_today_container_outline_width = 0x7f070108
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_checkbox_selected_disabled_container_opacity = 0x7f070106
+hanson.xyz.vpnhotspotmod:styleable/SignInButton = 0x7f140089
+hanson.xyz.vpnhotspotmod:attr/badgeWidth = 0x7f040060
+hanson.xyz.vpnhotspotmod:attr/scopeUris = 0x7f0403a8
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_bottom_app_bar_container_elevation = 0x7f070104
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.FloatingActionButton.Large.Primary = 0x7f1303a7
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.CardView = 0x7f130104
+hanson.xyz.vpnhotspotmod:color/material_dynamic_primary99 = 0x7f060258
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_surface_container_highest = 0x7f0601c9
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_badge_large_size = 0x7f070102
+hanson.xyz.vpnhotspotmod:id/transition_layout_save = 0x7f090211
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_elevated_btn_elevation = 0x7f0700d2
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_assist_chip_flat_container_elevation = 0x7f0700ff
+hanson.xyz.vpnhotspotmod:layout/design_bottom_navigation_item = 0x7f0c0020
+hanson.xyz.vpnhotspotmod:attr/startIconCheckable = 0x7f0403ee
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_legacy_accelerate_control_x1 = 0x7f0701fb
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_assist_chip_container_height = 0x7f0700fd
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_secondary_fixed_dim = 0x7f0601d9
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filled_card_icon_size = 0x7f07012c
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Dark.BottomSheetDialog = 0x7f13024e
+hanson.xyz.vpnhotspotmod:dimen/m3_chip_hovered_translation_z = 0x7f0700fb
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.DayNight.BottomSheetDialog = 0x7f130256
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_padding_top = 0x7f0700df
+hanson.xyz.vpnhotspotmod:dimen/m3_chip_disabled_translation_z = 0x7f0700f8
+hanson.xyz.vpnhotspotmod:dimen/m3_chip_checked_hovered_translation_z = 0x7f0700f6
+hanson.xyz.vpnhotspotmod:attr/collapsedTitleGravity = 0x7f0400de
+hanson.xyz.vpnhotspotmod:drawable/abc_btn_radio_material = 0x7f080032
+hanson.xyz.vpnhotspotmod:dimen/m3_carousel_small_item_size_min = 0x7f0700f5
+hanson.xyz.vpnhotspotmod:dimen/m3_searchbar_outlined_stroke_width = 0x7f0701da
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f130078
+hanson.xyz.vpnhotspotmod:dimen/m3_carousel_small_item_default_corner_size = 0x7f0700f3
+hanson.xyz.vpnhotspotmod:dimen/m3_carousel_debug_keyline_width = 0x7f0700f0
+hanson.xyz.vpnhotspotmod:dimen/m3_card_stroke_width = 0x7f0700ef
+hanson.xyz.vpnhotspotmod:attr/chainUseRtl = 0x7f0400a5
+hanson.xyz.vpnhotspotmod:dimen/m3_card_elevated_elevation = 0x7f0700eb
+hanson.xyz.vpnhotspotmod:dimen/m3_card_elevated_dragged_z = 0x7f0700ea
+hanson.xyz.vpnhotspotmod:dimen/m3_card_disabled_z = 0x7f0700e7
+hanson.xyz.vpnhotspotmod:color/mtrl_choice_chip_background_color = 0x7f0602d7
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant96 = 0x7f0600de
+hanson.xyz.vpnhotspotmod:attr/orderingFromXml = 0x7f040350
+hanson.xyz.vpnhotspotmod:drawable/abc_list_pressed_holo_light = 0x7f080052
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_input_time_input_field_label_text_color = 0x7f0d014a
+hanson.xyz.vpnhotspotmod:drawable/abc_btn_check_material_anim = 0x7f08002d
+hanson.xyz.vpnhotspotmod:string/donations__google_android_market_text = 0x7f12005b
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_translation_z_hovered = 0x7f0700e6
+hanson.xyz.vpnhotspotmod:color/navigationBarColor = 0x7f0602fe
+hanson.xyz.vpnhotspotmod:dimen/mtrl_textinput_box_stroke_width_default = 0x7f0702fb
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_text_btn_padding_right = 0x7f0700e4
+hanson.xyz.vpnhotspotmod:attr/materialIconButtonStyle = 0x7f0402f0
+hanson.xyz.vpnhotspotmod:attr/startIconMinSize = 0x7f0403f1
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_text_btn_icon_padding_right = 0x7f0700e2
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_padding_right = 0x7f0700de
+hanson.xyz.vpnhotspotmod:attr/actionBarTabBarStyle = 0x7f040006
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_padding_left = 0x7f0700dd
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.DrawerLayout = 0x7f13039e
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_inset = 0x7f0700da
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_icon_only_default_padding = 0x7f0700d6
+hanson.xyz.vpnhotspotmod:macro/m3_comp_snackbar_supporting_text_type = 0x7f0d0117
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_display_3_material = 0x7f070045
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_input_chip_container_elevation = 0x7f070134
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filter_chip_with_icon_icon_size = 0x7f070133
+hanson.xyz.vpnhotspotmod:styleable/ShapeableImageView = 0x7f140087
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_icon_btn_padding_right = 0x7f0700d5
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Dialog.FixedSize = 0x7f130280
+hanson.xyz.vpnhotspotmod:string/clear_text_end_icon_content_description = 0x7f12002e
+hanson.xyz.vpnhotspotmod:id/CTRL = 0x7f090003
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_icon_btn_padding_left = 0x7f0700d4
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_disabled_translation_z = 0x7f0700d1
+hanson.xyz.vpnhotspotmod:color/mtrl_scrim_color = 0x7f0602ee
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_dialog_btn_spacing = 0x7f0700cf
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_dialog_btn_min_width = 0x7f0700ce
+hanson.xyz.vpnhotspotmod:dimen/m3_bottomappbar_fab_end_margin = 0x7f0700cb
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.LabelSmall = 0x7f130204
+hanson.xyz.vpnhotspotmod:dimen/m3_bottom_sheet_modal_elevation = 0x7f0700c7
+hanson.xyz.vpnhotspotmod:dimen/m3_bottom_sheet_elevation = 0x7f0700c6
+hanson.xyz.vpnhotspotmod:dimen/m3_timepicker_display_stroke_width = 0x7f07021b
+hanson.xyz.vpnhotspotmod:styleable/MaterialCheckBoxStates = 0x7f14005b
+hanson.xyz.vpnhotspotmod:style/Platform.V21.AppCompat = 0x7f130144
+hanson.xyz.vpnhotspotmod:drawable/ic_device_bluetooth = 0x7f0800ba
+hanson.xyz.vpnhotspotmod:dimen/m3_bottom_nav_min_height = 0x7f0700c4
+hanson.xyz.vpnhotspotmod:dimen/m3_bottom_sheet_drag_handle_bottom_padding = 0x7f0700c5
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.HeaderSelection = 0x7f130446
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.ActionMode = 0x7f130102
+hanson.xyz.vpnhotspotmod:dimen/m3_bottom_nav_item_padding_top = 0x7f0700c3
+hanson.xyz.vpnhotspotmod:attr/colorPrimary = 0x7f040107
+hanson.xyz.vpnhotspotmod:dimen/m3_bottomappbar_height = 0x7f0700cc
+hanson.xyz.vpnhotspotmod:dimen/m3_bottom_nav_item_active_indicator_margin_horizontal = 0x7f0700c0
+hanson.xyz.vpnhotspotmod:style/PreferenceSummaryTextStyle = 0x7f130166
+hanson.xyz.vpnhotspotmod:attr/circleRadius = 0x7f0400cb
+hanson.xyz.vpnhotspotmod:dimen/m3_badge_with_text_vertical_padding = 0x7f0700be
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.Material3.Dialog = 0x7f130085
+hanson.xyz.vpnhotspotmod:drawable/abc_control_background_material = 0x7f08003b
+hanson.xyz.vpnhotspotmod:dimen/m3_badge_with_text_vertical_offset = 0x7f0700bd
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_on_tertiary_container = 0x7f0601ec
+hanson.xyz.vpnhotspotmod:dimen/m3_badge_with_text_size = 0x7f0700bc
+hanson.xyz.vpnhotspotmod:dimen/m3_badge_with_text_offset = 0x7f0700bb
+hanson.xyz.vpnhotspotmod:styleable/TextAppearance = 0x7f14009e
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Title.Inverse = 0x7f1301d4
+hanson.xyz.vpnhotspotmod:dimen/m3_badge_size = 0x7f0700b8
+hanson.xyz.vpnhotspotmod:dimen/m3_badge_horizontal_offset = 0x7f0700b6
+hanson.xyz.vpnhotspotmod:drawable/abc_item_background_holo_dark = 0x7f08004b
+hanson.xyz.vpnhotspotmod:dimen/m3_back_progress_side_container_max_scale_y_distance = 0x7f0700b5
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_extended_fab_primary_pressed_state_layer_opacity = 0x7f070118
+hanson.xyz.vpnhotspotmod:attr/triggerSlack = 0x7f0404bb
+hanson.xyz.vpnhotspotmod:dimen/m3_back_progress_side_container_max_scale_x_distance_grow = 0x7f0700b3
+hanson.xyz.vpnhotspotmod:style/Base.V7.Widget.AppCompat.Toolbar = 0x7f1300c5
+hanson.xyz.vpnhotspotmod:dimen/m3_back_progress_main_container_min_edge_gap = 0x7f0700b2
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_search_bar_hover_state_layer_opacity = 0x7f070172
+hanson.xyz.vpnhotspotmod:dimen/m3_back_progress_bottom_container_max_scale_y_distance = 0x7f0700b0
+hanson.xyz.vpnhotspotmod:dimen/m3_appbar_size_medium = 0x7f0700ae
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.Material3.Corner.Bottom = 0x7f1301a8
+hanson.xyz.vpnhotspotmod:dimen/m3_appbar_size_compact = 0x7f0700ac
+hanson.xyz.vpnhotspotmod:dimen/m3_appbar_scrim_height_trigger = 0x7f0700a9
+hanson.xyz.vpnhotspotmod:id/navigation_bar_item_labels_group = 0x7f090157
+hanson.xyz.vpnhotspotmod:id/activity_chooser_view_content = 0x7f090049
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_bar_hover_state_layer_opacity = 0x7f070140
+hanson.xyz.vpnhotspotmod:color/m3_radiobutton_button_tint = 0x7f0600ae
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_background = 0x7f06016a
+hanson.xyz.vpnhotspotmod:dimen/m3_appbar_expanded_title_margin_horizontal = 0x7f0700a8
+hanson.xyz.vpnhotspotmod:dimen/m3_appbar_expanded_title_margin_bottom = 0x7f0700a7
+hanson.xyz.vpnhotspotmod:styleable/PreferenceFragmentCompat = 0x7f140078
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Design.TextInputEditText = 0x7f1302a0
+hanson.xyz.vpnhotspotmod:dimen/m3_alert_dialog_icon_size = 0x7f0700a5
+hanson.xyz.vpnhotspotmod:attr/subMenuArrow = 0x7f040403
+hanson.xyz.vpnhotspotmod:dimen/abc_dialog_padding_top_material = 0x7f070025
+hanson.xyz.vpnhotspotmod:dimen/m3_alert_dialog_icon_margin = 0x7f0700a4
+hanson.xyz.vpnhotspotmod:color/m3_chip_ripple_color = 0x7f060085
+hanson.xyz.vpnhotspotmod:dimen/listitem_manage_tether_padding_start = 0x7f07009f
+hanson.xyz.vpnhotspotmod:attr/colorOnBackground = 0x7f0400f0
+hanson.xyz.vpnhotspotmod:dimen/item_touch_helper_max_drag_scroll_per_frame = 0x7f07009c
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialTimePicker.Display.TextInputEditText = 0x7f1303d5
+hanson.xyz.vpnhotspotmod:color/material_timepicker_clockface = 0x7f0602c5
+hanson.xyz.vpnhotspotmod:dimen/hint_pressed_alpha_material_light = 0x7f07009b
+hanson.xyz.vpnhotspotmod:drawable/btn_radio_off_mtrl = 0x7f08007e
+hanson.xyz.vpnhotspotmod:string/clients_popup_stats = 0x7f120035
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filled_button_with_icon_icon_size = 0x7f070127
+hanson.xyz.vpnhotspotmod:attr/tabInlineLabel = 0x7f04042a
+hanson.xyz.vpnhotspotmod:dimen/hint_pressed_alpha_material_dark = 0x7f07009a
+hanson.xyz.vpnhotspotmod:dimen/hint_alpha_material_light = 0x7f070099
+hanson.xyz.vpnhotspotmod:dimen/fastscroll_margin = 0x7f070093
+hanson.xyz.vpnhotspotmod:animator/design_fab_hide_motion_spec = 0x7f020001
+hanson.xyz.vpnhotspotmod:dimen/fastscroll_default_thickness = 0x7f070092
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TimePicker.Display.TextInputEditText = 0x7f130478
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_elevation_level5 = 0x7f0701f2
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Light.Dialog.Alert = 0x7f130077
+hanson.xyz.vpnhotspotmod:dimen/design_textinput_caption_translate_y = 0x7f07008f
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.MaterialComponents = 0x7f1301a0
+hanson.xyz.vpnhotspotmod:attr/layout_anchorGravity = 0x7f040271
+hanson.xyz.vpnhotspotmod:dimen/design_tab_max_width = 0x7f07008b
+hanson.xyz.vpnhotspotmod:string/settings_misc_logcat_summary = 0x7f12010d
+hanson.xyz.vpnhotspotmod:dimen/design_snackbar_padding_vertical_2lines = 0x7f070089
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.SearchBar.Outlined = 0x7f1303e3
+hanson.xyz.vpnhotspotmod:dimen/design_snackbar_padding_vertical = 0x7f070088
+hanson.xyz.vpnhotspotmod:id/save_overlay_view = 0x7f0901a3
+hanson.xyz.vpnhotspotmod:dimen/design_snackbar_min_width = 0x7f070086
+hanson.xyz.vpnhotspotmod:dimen/m3_bottom_nav_item_active_indicator_height = 0x7f0700bf
+hanson.xyz.vpnhotspotmod:attr/activityName = 0x7f040027
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_tertiary60 = 0x7f060102
+hanson.xyz.vpnhotspotmod:dimen/design_snackbar_extra_spacing_horizontal = 0x7f070084
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_on_surface_variant = 0x7f0601ea
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_primary10 = 0x7f0600e2
+hanson.xyz.vpnhotspotmod:dimen/design_snackbar_elevation = 0x7f070083
+hanson.xyz.vpnhotspotmod:dimen/m3_alert_dialog_corner_size = 0x7f0700a2
+hanson.xyz.vpnhotspotmod:drawable/$m3_avd_hide_password__2 = 0x7f080009
+hanson.xyz.vpnhotspotmod:dimen/design_snackbar_background_corner_radius = 0x7f070082
+hanson.xyz.vpnhotspotmod:dimen/design_snackbar_action_inline_max_width = 0x7f070080
+hanson.xyz.vpnhotspotmod:dimen/mtrl_snackbar_message_margin_horizontal = 0x7f0702f0
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_bar_input_text_type = 0x7f0d00eb
+hanson.xyz.vpnhotspotmod:id/linear = 0x7f09010b
+hanson.xyz.vpnhotspotmod:dimen/design_navigation_separator_vertical_padding = 0x7f07007f
+hanson.xyz.vpnhotspotmod:plurals/quick_settings_hotspot_secondary_label_num_devices = 0x7f100006
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_active_hover_icon_color = 0x7f0d007e
+hanson.xyz.vpnhotspotmod:attr/passwordToggleEnabled = 0x7f040361
+hanson.xyz.vpnhotspotmod:dimen/design_navigation_padding_bottom = 0x7f07007e
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.BottomAppBar.Primary = 0x7f1302ea
+hanson.xyz.vpnhotspotmod:macro/m3_comp_checkbox_selected_disabled_icon_color = 0x7f0d0008
+hanson.xyz.vpnhotspotmod:dimen/design_navigation_item_vertical_padding = 0x7f07007c
+hanson.xyz.vpnhotspotmod:dimen/design_navigation_item_horizontal_padding = 0x7f07007a
+hanson.xyz.vpnhotspotmod:color/cardview_dark_background = 0x7f06002f
+hanson.xyz.vpnhotspotmod:dimen/design_fab_translation_z_pressed = 0x7f070076
+hanson.xyz.vpnhotspotmod:attr/alwaysExpand = 0x7f040035
+hanson.xyz.vpnhotspotmod:dimen/design_fab_size_normal = 0x7f070074
+hanson.xyz.vpnhotspotmod:dimen/design_fab_border_width = 0x7f070070
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_short3 = 0x7f0a001e
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_sheet_peek_height_min = 0x7f07006f
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_sheet_elevation = 0x7f07006d
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_navigation_text_size = 0x7f07006c
+hanson.xyz.vpnhotspotmod:id/listMode = 0x7f09010c
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_navigation_margin = 0x7f07006a
+hanson.xyz.vpnhotspotmod:string/material_clock_display_divider = 0x7f120084
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_navigation_label_padding = 0x7f070069
+hanson.xyz.vpnhotspotmod:string/mtrl_checkbox_button_path_group_name = 0x7f1200a0
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_icon_light_normal = 0x7f08008a
+hanson.xyz.vpnhotspotmod:drawable/abc_text_select_handle_middle_mtrl = 0x7f080070
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_navigation_item_min_width = 0x7f070068
+hanson.xyz.vpnhotspotmod:dimen/compat_notification_large_icon_max_width = 0x7f07005e
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.IconButton.Filled.Tonal = 0x7f130377
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_rail_icon_size = 0x7f070150
+hanson.xyz.vpnhotspotmod:string/tethering_monitor = 0x7f12014e
+hanson.xyz.vpnhotspotmod:dimen/compat_control_corner_material = 0x7f07005c
+hanson.xyz.vpnhotspotmod:attr/collapsedTitleTextColor = 0x7f0400e0
+hanson.xyz.vpnhotspotmod:dimen/compat_button_padding_horizontal_material = 0x7f07005a
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_sheet_side_docked_modal_container_elevation = 0x7f070180
+hanson.xyz.vpnhotspotmod:attr/drawableEndCompat = 0x7f040183
+hanson.xyz.vpnhotspotmod:attr/widgetLayout = 0x7f0404ce
+hanson.xyz.vpnhotspotmod:dimen/compat_button_inset_horizontal_material = 0x7f070058
+hanson.xyz.vpnhotspotmod:dimen/mtrl_switch_track_width = 0x7f0702f7
+hanson.xyz.vpnhotspotmod:dimen/cardview_default_radius = 0x7f070056
+hanson.xyz.vpnhotspotmod:id/asConfigured = 0x7f090059
+hanson.xyz.vpnhotspotmod:attr/layout = 0x7f04026c
+hanson.xyz.vpnhotspotmod:dimen/cardview_default_elevation = 0x7f070055
+hanson.xyz.vpnhotspotmod:attr/preferenceInformationStyle = 0x7f040389
+hanson.xyz.vpnhotspotmod:dimen/cardview_compat_inset_shadow = 0x7f070054
+hanson.xyz.vpnhotspotmod:string/m3_sys_motion_easing_linear = 0x7f120080
+hanson.xyz.vpnhotspotmod:dimen/browser_actions_context_menu_min_padding = 0x7f070053
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_title_material = 0x7f07004f
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialTimePicker.ImageButton = 0x7f1303d7
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_subhead_material = 0x7f07004d
+hanson.xyz.vpnhotspotmod:id/dragDown = 0x7f0900b6
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_small_material = 0x7f07004c
+hanson.xyz.vpnhotspotmod:styleable/KeyFramesVelocity = 0x7f140047
+hanson.xyz.vpnhotspotmod:color/material_blue_grey_950 = 0x7f060225
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_menu_material = 0x7f07004b
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_menu_header_material = 0x7f07004a
+hanson.xyz.vpnhotspotmod:attr/trackTint = 0x7f0404b2
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_display_2_material = 0x7f070044
+hanson.xyz.vpnhotspotmod:attr/attributeName = 0x7f04003f
+hanson.xyz.vpnhotspotmod:attr/titleTextEllipsize = 0x7f040499
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_secondary_container = 0x7f0601c4
+hanson.xyz.vpnhotspotmod:dimen/mtrl_snackbar_action_text_color_alpha = 0x7f0702ec
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_period_selector_selected_label_text_color = 0x7f0d0159
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_disabled_elevation = 0x7f070258
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_navigation_active_text_size = 0x7f070063
+hanson.xyz.vpnhotspotmod:styleable/RecycleListView = 0x7f14007f
+hanson.xyz.vpnhotspotmod:dimen/abc_star_medium = 0x7f07003c
+hanson.xyz.vpnhotspotmod:color/material_slider_inactive_track_color = 0x7f0602c0
+hanson.xyz.vpnhotspotmod:dimen/abc_search_view_preferred_width = 0x7f070037
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.Sheet.Side.Docked.Container.Shape = 0x7f130188
+hanson.xyz.vpnhotspotmod:dimen/abc_progress_bar_height_material = 0x7f070035
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.MaterialComponents.Picker.Date.Calendar = 0x7f130133
+hanson.xyz.vpnhotspotmod:id/max_client_wrapper = 0x7f09012f
+hanson.xyz.vpnhotspotmod:dimen/abc_panel_menu_list_width = 0x7f070034
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.HeadlineSmall = 0x7f130201
+hanson.xyz.vpnhotspotmod:dimen/abc_list_item_padding_horizontal_material = 0x7f070033
+hanson.xyz.vpnhotspotmod:dimen/abc_edit_text_inset_top_material = 0x7f07002e
+hanson.xyz.vpnhotspotmod:id/select_dialog_listview = 0x7f0901ba
+hanson.xyz.vpnhotspotmod:dimen/abc_dropdownitem_text_padding_right = 0x7f07002b
+hanson.xyz.vpnhotspotmod:id/peekHeight = 0x7f090188
+hanson.xyz.vpnhotspotmod:attr/triggerId = 0x7f0404b9
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_title_baseline_to_top_fullscreen = 0x7f070292
+hanson.xyz.vpnhotspotmod:dimen/abc_dropdownitem_text_padding_left = 0x7f07002a
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Design.Suffix = 0x7f1301f7
+hanson.xyz.vpnhotspotmod:string/settings_upstream = 0x7f120133
+hanson.xyz.vpnhotspotmod:drawable/ic_keyboard_black_24dp = 0x7f0800c5
+hanson.xyz.vpnhotspotmod:dimen/abc_star_big = 0x7f07003b
+hanson.xyz.vpnhotspotmod:integer/mtrl_view_visible = 0x7f0a0042
+hanson.xyz.vpnhotspotmod:id/acs_2g = 0x7f090031
+hanson.xyz.vpnhotspotmod:dimen/abc_dropdownitem_icon_width = 0x7f070029
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral0 = 0x7f0600b1
+hanson.xyz.vpnhotspotmod:attr/buttonStyle = 0x7f040097
+hanson.xyz.vpnhotspotmod:drawable/ic_clear_black_24 = 0x7f0800b4
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_card_disabled_outline_color = 0x7f0d00ad
+hanson.xyz.vpnhotspotmod:dimen/abc_dialog_title_divider_material = 0x7f070026
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.IconButton = 0x7f130375
+hanson.xyz.vpnhotspotmod:attr/layout_constraintCircleAngle = 0x7f04027d
+hanson.xyz.vpnhotspotmod:dimen/material_clock_hand_padding = 0x7f070225
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.Dialog = 0x7f13023a
+hanson.xyz.vpnhotspotmod:attr/actionDropDownStyle = 0x7f04000c
+hanson.xyz.vpnhotspotmod:dimen/abc_dialog_padding_material = 0x7f070024
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TextInputEditText.FilledBox.Dense = 0x7f1303f4
+hanson.xyz.vpnhotspotmod:dimen/abc_dialog_list_padding_top_no_title = 0x7f070021
+hanson.xyz.vpnhotspotmod:dimen/abc_list_item_height_material = 0x7f070031
+hanson.xyz.vpnhotspotmod:dimen/abc_dialog_fixed_height_minor = 0x7f07001d
+hanson.xyz.vpnhotspotmod:attr/region_heightMoreThan = 0x7f04039f
+hanson.xyz.vpnhotspotmod:color/call_notification_answer_color = 0x7f06002d
+hanson.xyz.vpnhotspotmod:dimen/abc_dialog_fixed_height_major = 0x7f07001c
+hanson.xyz.vpnhotspotmod:styleable/FloatingActionButton = 0x7f140037
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.MaterialTimePicker.Display.TextInputEditText = 0x7f1302d2
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Body2 = 0x7f13021f
+hanson.xyz.vpnhotspotmod:dimen/material_textinput_max_width = 0x7f07023f
+hanson.xyz.vpnhotspotmod:dimen/abc_control_padding_material = 0x7f07001a
+hanson.xyz.vpnhotspotmod:style/Base.V7.Widget.AppCompat.EditText = 0x7f1300c4
+hanson.xyz.vpnhotspotmod:dimen/abc_button_padding_vertical_material = 0x7f070015
+hanson.xyz.vpnhotspotmod:dimen/abc_alert_dialog_button_bar_height = 0x7f070010
+hanson.xyz.vpnhotspotmod:dimen/abc_action_button_min_height_material = 0x7f07000d
+hanson.xyz.vpnhotspotmod:drawable/abc_ic_arrow_drop_right_black_24dp = 0x7f08003f
+hanson.xyz.vpnhotspotmod:attr/tickRadiusInactive = 0x7f040487
+hanson.xyz.vpnhotspotmod:dimen/abc_action_bar_subtitle_bottom_margin_material = 0x7f07000b
+hanson.xyz.vpnhotspotmod:attr/textAppearanceBodySmall = 0x7f040444
+hanson.xyz.vpnhotspotmod:dimen/abc_action_bar_overflow_padding_end_material = 0x7f070007
+hanson.xyz.vpnhotspotmod:attr/fabCradleMargin = 0x7f0401ce
+hanson.xyz.vpnhotspotmod:dimen/abc_action_bar_default_padding_start_material = 0x7f070004
+hanson.xyz.vpnhotspotmod:dimen/m3_alert_dialog_action_bottom_padding = 0x7f0700a0
+hanson.xyz.vpnhotspotmod:dimen/abc_action_bar_default_height_material = 0x7f070002
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.Switch.Track.Shape = 0x7f13018b
+hanson.xyz.vpnhotspotmod:dimen/abc_action_bar_content_inset_with_nav = 0x7f070001
+hanson.xyz.vpnhotspotmod:color/tooltip_background_light = 0x7f060318
+hanson.xyz.vpnhotspotmod:styleable/PreferenceImageView = 0x7f14007a
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_time_picker_period_selector_outline_width = 0x7f0701a0
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_text_dark_normal_background = 0x7f08008f
+hanson.xyz.vpnhotspotmod:color/tooltip_background_dark = 0x7f060317
+hanson.xyz.vpnhotspotmod:color/switch_thumb_normal_material_light = 0x7f060316
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.Fullscreen = 0x7f1303bd
+hanson.xyz.vpnhotspotmod:id/ltr = 0x7f09010f
+hanson.xyz.vpnhotspotmod:drawable/abc_textfield_search_material = 0x7f080076
+hanson.xyz.vpnhotspotmod:color/switch_thumb_material_light = 0x7f060314
+hanson.xyz.vpnhotspotmod:string/settings_service_wifi_lock_none = 0x7f120130
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_range_header_unselected = 0x7f1200c0
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_year_selection_year_selected_label_text_color = 0x7f0d0021
+hanson.xyz.vpnhotspotmod:drawable/ic_arrow_back_black_24 = 0x7f0800aa
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_search_bar_avatar_size = 0x7f07016f
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CompoundButton.RadioButton = 0x7f13039c
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_rail_container_width = 0x7f07014d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_checkbox_selected_disabled_container_color = 0x7f0d0007
+hanson.xyz.vpnhotspotmod:color/switch_thumb_disabled_material_dark = 0x7f060311
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Button.TextButton.Dialog = 0x7f13041d
+hanson.xyz.vpnhotspotmod:id/rtl = 0x7f0901a1
+hanson.xyz.vpnhotspotmod:color/secondary_text_disabled_material_light = 0x7f060310
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_date_picker_modal_header_container_height = 0x7f070109
+hanson.xyz.vpnhotspotmod:attr/checkedIconSize = 0x7f0400b1
+hanson.xyz.vpnhotspotmod:color/secondary_text_default_material_light = 0x7f06030e
+hanson.xyz.vpnhotspotmod:integer/material_motion_path = 0x7f0a002d
+hanson.xyz.vpnhotspotmod:id/reverseSawtooth = 0x7f09019a
+hanson.xyz.vpnhotspotmod:drawable/design_ic_visibility_off = 0x7f080097
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.CompoundButton.CheckBox = 0x7f130430
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_selection_baseline_to_top_fullscreen = 0x7f07028c
+hanson.xyz.vpnhotspotmod:color/primary_text_disabled_material_light = 0x7f06030a
+hanson.xyz.vpnhotspotmod:integer/hide_password_duration = 0x7f0a0009
+hanson.xyz.vpnhotspotmod:id/band_secondary = 0x7f090063
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_item_icon_padding = 0x7f0702c4
+hanson.xyz.vpnhotspotmod:id/collapseActionView = 0x7f09008b
+hanson.xyz.vpnhotspotmod:color/primary_text_disabled_material_dark = 0x7f060309
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Button.Small = 0x7f130319
+hanson.xyz.vpnhotspotmod:color/primary_text_default_material_light = 0x7f060308
+hanson.xyz.vpnhotspotmod:attr/materialIconButtonFilledTonalStyle = 0x7f0402ee
+hanson.xyz.vpnhotspotmod:attr/layout_constraintStart_toEndOf = 0x7f040292
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_primary = 0x7f0601c1
+hanson.xyz.vpnhotspotmod:color/primary_text_default_material_dark = 0x7f060307
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Caption = 0x7f1301bd
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_selected_focus_state_layer_color = 0x7f0d00da
+hanson.xyz.vpnhotspotmod:color/primary_dark_material_light = 0x7f060304
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_hover_supporting_text_color = 0x7f0d00c2
+hanson.xyz.vpnhotspotmod:color/preference_simple_menu_background = 0x7f060302
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.Empty = 0x7f13023e
+hanson.xyz.vpnhotspotmod:attr/shapeAppearanceCornerMedium = 0x7f0403be
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_header_height = 0x7f07027e
+hanson.xyz.vpnhotspotmod:color/notification_icon_bg_color = 0x7f060300
+hanson.xyz.vpnhotspotmod:attr/layout_constraintTop_creator = 0x7f040295
+hanson.xyz.vpnhotspotmod:color/notification_action_color_filter = 0x7f0602ff
+hanson.xyz.vpnhotspotmod:dimen/abc_search_view_preferred_height = 0x7f070036
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.TextInputLayout = 0x7f130121
+hanson.xyz.vpnhotspotmod:id/action_bar_spinner = 0x7f09003b
+hanson.xyz.vpnhotspotmod:dimen/mtrl_textinput_counter_margin_start = 0x7f0702fd
+hanson.xyz.vpnhotspotmod:drawable/design_ic_visibility = 0x7f080096
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filled_card_focus_state_layer_opacity = 0x7f07012a
+hanson.xyz.vpnhotspotmod:dimen/mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 0x7f070253
+hanson.xyz.vpnhotspotmod:color/mtrl_textinput_focused_box_stroke_color = 0x7f0602fc
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CardView.Filled = 0x7f130385
+hanson.xyz.vpnhotspotmod:color/mtrl_textinput_default_box_stroke_color = 0x7f0602f9
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_checked_unchecked__1 = 0x7f080012
+hanson.xyz.vpnhotspotmod:color/mtrl_text_btn_text_color_selector = 0x7f0602f8
+hanson.xyz.vpnhotspotmod:color/mtrl_tabs_icon_color_selector = 0x7f0602f4
+hanson.xyz.vpnhotspotmod:attr/errorIconTintMode = 0x7f0401b3
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_switch_disabled_selected_icon_opacity = 0x7f07018d
+hanson.xyz.vpnhotspotmod:color/m3_tabs_ripple_color_secondary = 0x7f06020d
+hanson.xyz.vpnhotspotmod:color/mtrl_switch_track_tint = 0x7f0602f2
+hanson.xyz.vpnhotspotmod:style/Base.V21.Theme.AppCompat.Light = 0x7f1300a7
+hanson.xyz.vpnhotspotmod:attr/textAppearanceListItem = 0x7f040458
+hanson.xyz.vpnhotspotmod:attr/materialAlertDialogTitleIconStyle = 0x7f0402cf
+hanson.xyz.vpnhotspotmod:dimen/mtrl_exposed_dropdown_menu_popup_elevation = 0x7f0702a0
+hanson.xyz.vpnhotspotmod:id/notification_main_column_container = 0x7f090167
+hanson.xyz.vpnhotspotmod:dimen/fastscroll_minimum_range = 0x7f070094
+hanson.xyz.vpnhotspotmod:style/Preference.SwitchPreferenceCompat = 0x7f13015f
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.MaterialComponents.Dialog.Alert.Framework = 0x7f13008a
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_primary80 = 0x7f0600ea
+hanson.xyz.vpnhotspotmod:color/mtrl_switch_thumb_tint = 0x7f0602f0
+hanson.xyz.vpnhotspotmod:color/mtrl_popupmenu_overlay_color = 0x7f0602ed
+hanson.xyz.vpnhotspotmod:string/m3_sys_motion_easing_emphasized = 0x7f120079
+hanson.xyz.vpnhotspotmod:color/mtrl_outlined_icon_tint = 0x7f0602eb
+hanson.xyz.vpnhotspotmod:color/mtrl_on_surface_ripple_color = 0x7f0602ea
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Display3 = 0x7f130021
+hanson.xyz.vpnhotspotmod:color/mtrl_on_primary_text_btn_text_color_selector = 0x7f0602e9
+hanson.xyz.vpnhotspotmod:color/abc_search_url_text_normal = 0x7f06000e
+hanson.xyz.vpnhotspotmod:color/mtrl_filled_icon_tint = 0x7f0602df
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.MaterialComponents.Tooltip = 0x7f1301a5
+hanson.xyz.vpnhotspotmod:style/Platform.AppCompat.Light = 0x7f13013c
+hanson.xyz.vpnhotspotmod:color/design_dark_default_color_secondary = 0x7f06004e
+hanson.xyz.vpnhotspotmod:color/mtrl_fab_ripple_color = 0x7f0602dd
+hanson.xyz.vpnhotspotmod:id/configuration_ap = 0x7f09008e
+hanson.xyz.vpnhotspotmod:color/mtrl_fab_icon_text_color_selector = 0x7f0602dc
+hanson.xyz.vpnhotspotmod:color/mtrl_fab_bg_color_selector = 0x7f0602db
+hanson.xyz.vpnhotspotmod:attr/icon = 0x7f040227
+hanson.xyz.vpnhotspotmod:color/mtrl_error = 0x7f0602da
+hanson.xyz.vpnhotspotmod:color/mtrl_choice_chip_text_color = 0x7f0602d9
+hanson.xyz.vpnhotspotmod:dimen/mtrl_slider_label_padding = 0x7f0702e3
+hanson.xyz.vpnhotspotmod:color/material_slider_active_tick_marks_color = 0x7f0602bc
+hanson.xyz.vpnhotspotmod:color/mtrl_chip_close_icon_tint = 0x7f0602d4
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_text_light_normal_background = 0x7f080094
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_on_secondary_container = 0x7f0601ba
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_icon_only_min_width = 0x7f0700d9
+hanson.xyz.vpnhotspotmod:color/mtrl_chip_background_color = 0x7f0602d3
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_rail_default_width = 0x7f0702ca
+hanson.xyz.vpnhotspotmod:string/side_sheet_accessibility_pane_title = 0x7f120136
+hanson.xyz.vpnhotspotmod:color/mtrl_card_view_ripple = 0x7f0602d2
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_pressed_handle_color = 0x7f0d013c
+hanson.xyz.vpnhotspotmod:color/mtrl_calendar_item_stroke_color = 0x7f0602cf
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_surface_container_lowest = 0x7f0601f9
+hanson.xyz.vpnhotspotmod:color/mtrl_btn_transparent_bg_color = 0x7f0602ce
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Button.Colored = 0x7f1300d5
+hanson.xyz.vpnhotspotmod:color/switch_thumb_disabled_material_light = 0x7f060312
+hanson.xyz.vpnhotspotmod:color/mtrl_btn_text_color_disabled = 0x7f0602cc
+hanson.xyz.vpnhotspotmod:color/mtrl_btn_text_btn_ripple_color = 0x7f0602cb
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.DayNight.SideSheetDialog = 0x7f1302b9
+hanson.xyz.vpnhotspotmod:color/mtrl_btn_text_btn_bg_color_selector = 0x7f0602ca
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse = 0x7f1301dc
+hanson.xyz.vpnhotspotmod:color/mtrl_btn_ripple_color = 0x7f0602c8
+hanson.xyz.vpnhotspotmod:attr/constraintSetStart = 0x7f040128
+hanson.xyz.vpnhotspotmod:color/mtrl_btn_bg_color_selector = 0x7f0602c7
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_switch_unselected_focus_state_layer_opacity = 0x7f070196
+hanson.xyz.vpnhotspotmod:color/material_timepicker_modebutton_tint = 0x7f0602c6
+hanson.xyz.vpnhotspotmod:attr/textInputLayoutFocusedRectEnabled = 0x7f04046b
+hanson.xyz.vpnhotspotmod:color/material_timepicker_clock_text_color = 0x7f0602c4
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_confirm = 0x7f1200af
+hanson.xyz.vpnhotspotmod:dimen/mtrl_high_ripple_pressed_alpha = 0x7f0702ba
+hanson.xyz.vpnhotspotmod:color/material_timepicker_button_background = 0x7f0602c2
+hanson.xyz.vpnhotspotmod:color/m3_switch_thumb_tint = 0x7f060168
+hanson.xyz.vpnhotspotmod:color/material_slider_thumb_color = 0x7f0602c1
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_hover_icon_color = 0x7f0d0137
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_primary20 = 0x7f06013d
+hanson.xyz.vpnhotspotmod:dimen/design_navigation_item_icon_padding = 0x7f07007b
+hanson.xyz.vpnhotspotmod:color/material_slider_halo_color = 0x7f0602be
+hanson.xyz.vpnhotspotmod:attr/overlay = 0x7f040352
+hanson.xyz.vpnhotspotmod:color/material_slider_active_track_color = 0x7f0602bd
+hanson.xyz.vpnhotspotmod:color/m3_timepicker_button_background_color = 0x7f060218
+hanson.xyz.vpnhotspotmod:color/material_personalized_primary_inverse_text_disable_only = 0x7f0602ba
+hanson.xyz.vpnhotspotmod:dimen/design_snackbar_text_size = 0x7f07008a
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_text_secondary_and_tertiary_inverse_disabled = 0x7f0602b7
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_button_material = 0x7f070041
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_text_primary_inverse_disable_only = 0x7f0602b5
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_text_primary_inverse = 0x7f0602b4
+hanson.xyz.vpnhotspotmod:attr/chipIconSize = 0x7f0400bc
+hanson.xyz.vpnhotspotmod:dimen/abc_action_bar_overflow_padding_start_material = 0x7f070008
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_text_hint_foreground_inverse = 0x7f0602b3
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_tertiary = 0x7f0602b1
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TimePicker.Display = 0x7f130475
+hanson.xyz.vpnhotspotmod:drawable/ic_call_answer_video_low = 0x7f0800b1
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Light.ActionBar = 0x7f1300e1
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral40 = 0x7f0600bb
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_bottom_padding = 0x7f070271
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_background = 0x7f0601dc
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_surface_inverse = 0x7f0602af
+hanson.xyz.vpnhotspotmod:id/ieee_80211ax = 0x7f0900ef
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_surface_container_lowest = 0x7f0602ad
+hanson.xyz.vpnhotspotmod:id/view_tree_on_back_pressed_dispatcher_owner = 0x7f090221
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_indeterminate_checked__0 = 0x7f080014
+hanson.xyz.vpnhotspotmod:attr/pressedTranslationZ = 0x7f040391
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_surface_container_highest = 0x7f0602ab
+hanson.xyz.vpnhotspotmod:string/gcm_defaultSenderId = 0x7f120069
+hanson.xyz.vpnhotspotmod:color/mtrl_textinput_hovered_box_stroke_color = 0x7f0602fd
+hanson.xyz.vpnhotspotmod:dimen/preferences_header_width = 0x7f07031d
+hanson.xyz.vpnhotspotmod:drawable/ic_toggle_star = 0x7f0800d4
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_secondary_text = 0x7f0602a5
+hanson.xyz.vpnhotspotmod:string/configuration_share = 0x7f12004d
+hanson.xyz.vpnhotspotmod:attr/actionViewClass = 0x7f040023
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_secondary = 0x7f0602a3
+hanson.xyz.vpnhotspotmod:attr/tickMarkTintMode = 0x7f040485
+hanson.xyz.vpnhotspotmod:drawable/abc_ic_menu_selectall_mtrl_alpha = 0x7f080047
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_suggestion_chip_flat_container_elevation = 0x7f070189
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_top_app_bar_large_container_height = 0x7f0701a5
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_primary_text_inverse = 0x7f0602a2
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_outline_variant = 0x7f06029d
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_error_container = 0x7f0601b0
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_on_surface_variant = 0x7f060299
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_on_surface = 0x7f060297
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_on_secondary = 0x7f060295
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_on_primary_container = 0x7f060294
+hanson.xyz.vpnhotspotmod:id/open_search_view_status_bar_spacer = 0x7f090178
+hanson.xyz.vpnhotspotmod:attr/layout_constraintWidth_default = 0x7f04029b
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_on_error = 0x7f060291
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_period_selector_unselected_pressed_state_layer_color = 0x7f0d015e
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_on_background = 0x7f060290
+hanson.xyz.vpnhotspotmod:id/dimensions = 0x7f0900ac
+hanson.xyz.vpnhotspotmod:dimen/design_fab_image_size = 0x7f070072
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_bar_active_indicator_height = 0x7f07013b
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_error_container = 0x7f06028f
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_year_height = 0x7f070294
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_control_normal = 0x7f06028d
+hanson.xyz.vpnhotspotmod:color/material_on_surface_emphasis_medium = 0x7f060286
+hanson.xyz.vpnhotspotmod:color/material_on_surface_emphasis_high_type = 0x7f060285
+hanson.xyz.vpnhotspotmod:attr/materialCalendarHeaderTitle = 0x7f0402dd
+hanson.xyz.vpnhotspotmod:dimen/design_navigation_icon_padding = 0x7f070078
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.NavigationBar.Container.Shape = 0x7f130181
+hanson.xyz.vpnhotspotmod:color/mtrl_navigation_bar_item_tint = 0x7f0602e4
+hanson.xyz.vpnhotspotmod:color/material_on_primary_emphasis_medium = 0x7f060283
+hanson.xyz.vpnhotspotmod:color/material_on_background_emphasis_high_type = 0x7f06027f
+hanson.xyz.vpnhotspotmod:styleable/CircularProgressIndicator = 0x7f140023
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActionBar.TabView.Inverse = 0x7f13032b
+hanson.xyz.vpnhotspotmod:drawable/abc_tab_indicator_material = 0x7f08006c
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_active_icon_color = 0x7f0d0068
+hanson.xyz.vpnhotspotmod:attr/pref_listMarginHorizontal = 0x7f04037e
+hanson.xyz.vpnhotspotmod:attr/suffixTextColor = 0x7f040410
+hanson.xyz.vpnhotspotmod:color/material_on_background_disabled = 0x7f06027e
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_primary_container = 0x7f0601f0
+hanson.xyz.vpnhotspotmod:color/material_harmonized_color_on_error_container = 0x7f06027d
+hanson.xyz.vpnhotspotmod:dimen/m3_searchbar_text_margin_start_no_navigation_icon = 0x7f0701dc
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_primary_fixed = 0x7f060204
+hanson.xyz.vpnhotspotmod:color/material_harmonized_color_error_container = 0x7f06027b
+hanson.xyz.vpnhotspotmod:color/material_grey_900 = 0x7f060279
+hanson.xyz.vpnhotspotmod:string/wifi_advanced_mac_address_persistent_randomized = 0x7f12015d
+hanson.xyz.vpnhotspotmod:color/material_grey_800 = 0x7f060277
+hanson.xyz.vpnhotspotmod:dimen/mtrl_snackbar_background_corner_radius = 0x7f0702ed
+hanson.xyz.vpnhotspotmod:color/material_grey_300 = 0x7f060274
+hanson.xyz.vpnhotspotmod:dimen/abc_disabled_alpha_material_dark = 0x7f070027
+hanson.xyz.vpnhotspotmod:color/material_dynamic_tertiary70 = 0x7f06026e
+hanson.xyz.vpnhotspotmod:color/material_dynamic_tertiary60 = 0x7f06026d
+hanson.xyz.vpnhotspotmod:string/tethering_manage_wifi_copy_mac = 0x7f120143
+hanson.xyz.vpnhotspotmod:dimen/mtrl_tooltip_minHeight = 0x7f070304
+hanson.xyz.vpnhotspotmod:color/material_dynamic_tertiary30 = 0x7f06026a
+hanson.xyz.vpnhotspotmod:color/m3_timepicker_secondary_text_button_ripple_color = 0x7f06021f
+hanson.xyz.vpnhotspotmod:drawable/material_ic_calendar_black_24dp = 0x7f0800e1
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Menu = 0x7f1301cc
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_fab_primary_pressed_state_layer_opacity = 0x7f070122
+hanson.xyz.vpnhotspotmod:color/material_dynamic_tertiary100 = 0x7f060268
+hanson.xyz.vpnhotspotmod:attr/listPreferredItemPaddingRight = 0x7f0402c2
+hanson.xyz.vpnhotspotmod:color/material_dynamic_tertiary10 = 0x7f060267
+hanson.xyz.vpnhotspotmod:color/material_dynamic_secondary95 = 0x7f060264
+hanson.xyz.vpnhotspotmod:attr/barrierAllowsGoneWidgets = 0x7f040067
+hanson.xyz.vpnhotspotmod:attr/foregroundInsidePadding = 0x7f04020b
+hanson.xyz.vpnhotspotmod:color/material_dynamic_secondary70 = 0x7f060261
+hanson.xyz.vpnhotspotmod:dimen/abc_disabled_alpha_material_light = 0x7f070028
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_emphasized_decelerate_control_y2 = 0x7f0701fa
+hanson.xyz.vpnhotspotmod:attr/customIntegerValue = 0x7f04015a
+hanson.xyz.vpnhotspotmod:color/material_dynamic_secondary60 = 0x7f060260
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ActionButton = 0x7f13030e
+hanson.xyz.vpnhotspotmod:color/material_dynamic_secondary50 = 0x7f06025f
+hanson.xyz.vpnhotspotmod:dimen/m3_badge_offset = 0x7f0700b7
+hanson.xyz.vpnhotspotmod:macro/m3_comp_top_app_bar_medium_headline_type = 0x7f0d016f
+hanson.xyz.vpnhotspotmod:color/material_dynamic_secondary40 = 0x7f06025e
+hanson.xyz.vpnhotspotmod:string/wifi_save = 0x7f120179
+hanson.xyz.vpnhotspotmod:attr/fontProviderFetchTimeout = 0x7f040202
+hanson.xyz.vpnhotspotmod:color/material_dynamic_secondary20 = 0x7f06025c
+hanson.xyz.vpnhotspotmod:color/material_dynamic_secondary100 = 0x7f06025b
+hanson.xyz.vpnhotspotmod:drawable/m3_tabs_rounded_line_indicator = 0x7f0800de
+hanson.xyz.vpnhotspotmod:color/material_dynamic_secondary0 = 0x7f060259
+hanson.xyz.vpnhotspotmod:drawable/abc_popup_background_mtrl_mult = 0x7f08005a
+hanson.xyz.vpnhotspotmod:dimen/design_snackbar_padding_horizontal = 0x7f070087
+hanson.xyz.vpnhotspotmod:attr/fabCradleVerticalOffset = 0x7f0401d0
+hanson.xyz.vpnhotspotmod:color/material_dynamic_primary95 = 0x7f060257
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.MonthNavigationButton = 0x7f1303c7
+hanson.xyz.vpnhotspotmod:color/material_dynamic_primary70 = 0x7f060254
+hanson.xyz.vpnhotspotmod:layout/material_clock_period_toggle = 0x7f0c004b
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_time_picker_container_elevation = 0x7f07019d
+hanson.xyz.vpnhotspotmod:color/material_dynamic_primary30 = 0x7f060250
+hanson.xyz.vpnhotspotmod:color/material_dynamic_primary20 = 0x7f06024f
+hanson.xyz.vpnhotspotmod:color/material_dynamic_primary100 = 0x7f06024e
+hanson.xyz.vpnhotspotmod:color/material_dynamic_primary10 = 0x7f06024d
+hanson.xyz.vpnhotspotmod:dimen/material_filled_edittext_font_2_0_padding_top = 0x7f070237
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral_variant95 = 0x7f06024a
+hanson.xyz.vpnhotspotmod:layout/abc_tooltip = 0x7f0c001b
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral_variant80 = 0x7f060248
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.MaterialComponents.Title.Icon.CenterStacked = 0x7f130136
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral_variant70 = 0x7f060247
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral_variant60 = 0x7f060246
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral_variant50 = 0x7f060245
+hanson.xyz.vpnhotspotmod:style/Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f1300a0
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral_variant30 = 0x7f060243
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral_variant10 = 0x7f060240
+hanson.xyz.vpnhotspotmod:dimen/design_fab_elevation = 0x7f070071
+hanson.xyz.vpnhotspotmod:drawable/abc_textfield_search_activated_mtrl_alpha = 0x7f080074
+hanson.xyz.vpnhotspotmod:id/ssid_wrapper = 0x7f0901d5
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral99 = 0x7f06023e
+hanson.xyz.vpnhotspotmod:drawable/abc_list_focused_holo = 0x7f08004f
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral95 = 0x7f06023d
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Bridge = 0x7f13006a
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral90 = 0x7f06023c
+hanson.xyz.vpnhotspotmod:dimen/abc_config_prefDialogWidth = 0x7f070017
+hanson.xyz.vpnhotspotmod:dimen/simple_menu_unit = 0x7f070321
+hanson.xyz.vpnhotspotmod:layout/design_layout_tab_icon = 0x7f0c0024
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_top_app_bar_medium_container_height = 0x7f0701a6
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral70 = 0x7f06023a
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_legacy_accelerate_control_x2 = 0x7f0701fc
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral30 = 0x7f060236
+hanson.xyz.vpnhotspotmod:attr/coordinatorLayoutStyle = 0x7f04013d
+hanson.xyz.vpnhotspotmod:drawable/$avd_hide_password__2 = 0x7f080002
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral20 = 0x7f060235
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral10 = 0x7f060233
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.FloatingActionButton.Large = 0x7f13010d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_snackbar_container_color = 0x7f0d0114
+hanson.xyz.vpnhotspotmod:attr/materialAlertDialogTitlePanelStyle = 0x7f0402d0
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_legacy_accelerate_control_y2 = 0x7f0701fe
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_fab_primary_hover_container_elevation = 0x7f07011c
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral0 = 0x7f060232
+hanson.xyz.vpnhotspotmod:styleable/CustomAttribute = 0x7f140030
+hanson.xyz.vpnhotspotmod:attr/radioButtonStyle = 0x7f040398
+hanson.xyz.vpnhotspotmod:color/material_dynamic_color_light_on_error_container = 0x7f060231
+hanson.xyz.vpnhotspotmod:color/material_dynamic_color_light_error_container = 0x7f06022f
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActionBar = 0x7f130323
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_24 = 0x7f090022
+hanson.xyz.vpnhotspotmod:dimen/mtrl_card_spacing = 0x7f07029d
+hanson.xyz.vpnhotspotmod:color/material_dynamic_color_light_error = 0x7f06022e
+hanson.xyz.vpnhotspotmod:string/tethering_manage_wifi_country_code = 0x7f120144
+hanson.xyz.vpnhotspotmod:string/settings_service_masquerade_simple = 0x7f120121
+hanson.xyz.vpnhotspotmod:id/header_title = 0x7f0900e4
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral40 = 0x7f06011f
+hanson.xyz.vpnhotspotmod:color/material_dynamic_color_dark_on_error = 0x7f06022c
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.LinearProgressIndicator = 0x7f1303b4
+hanson.xyz.vpnhotspotmod:string/tethering_temp_hotspot_failure_incompatible_mode = 0x7f120153
+hanson.xyz.vpnhotspotmod:attr/flow_horizontalAlign = 0x7f0401ee
+hanson.xyz.vpnhotspotmod:dimen/m3_card_hovered_z = 0x7f0700ee
+hanson.xyz.vpnhotspotmod:dimen/m3_bottom_nav_item_active_indicator_width = 0x7f0700c1
+hanson.xyz.vpnhotspotmod:styleable/SwitchMaterial = 0x7f140099
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_primary99 = 0x7f0600ed
+hanson.xyz.vpnhotspotmod:dimen/abc_seekbar_track_background_height_material = 0x7f070038
+hanson.xyz.vpnhotspotmod:color/material_dynamic_color_dark_error = 0x7f06022a
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_elevation_level4 = 0x7f0701f1
+hanson.xyz.vpnhotspotmod:color/material_deep_teal_500 = 0x7f060228
+hanson.xyz.vpnhotspotmod:drawable/abc_spinner_mtrl_am_alpha = 0x7f080066
+hanson.xyz.vpnhotspotmod:color/material_deep_teal_200 = 0x7f060227
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.AppCompat.Dialog = 0x7f130080
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f130075
+hanson.xyz.vpnhotspotmod:attr/shapeAppearanceSmallComponent = 0x7f0403c3
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_divider_thickness = 0x7f07010b
+hanson.xyz.vpnhotspotmod:string/abc_action_menu_overflow_description = 0x7f120002
+hanson.xyz.vpnhotspotmod:color/material_blue_grey_900 = 0x7f060224
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_indicator_full_rounded_corner_radius = 0x7f0702dd
+hanson.xyz.vpnhotspotmod:style/wifi_item_subhead = 0x7f130487
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.SearchResult.Title = 0x7f13002e
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_toggle_to_text_input_mode = 0x7f1200cc
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_radio_button_disabled_selected_icon_opacity = 0x7f070167
+hanson.xyz.vpnhotspotmod:color/m3_timepicker_time_input_stroke_color = 0x7f060221
+hanson.xyz.vpnhotspotmod:attr/hintTextAppearance = 0x7f040220
+hanson.xyz.vpnhotspotmod:color/m3_timepicker_secondary_text_button_text_color = 0x7f060220
+hanson.xyz.vpnhotspotmod:color/design_default_color_error = 0x7f060052
+hanson.xyz.vpnhotspotmod:dimen/notification_big_circle_margin = 0x7f07030a
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.BottomSheetDialog = 0x7f130269
+hanson.xyz.vpnhotspotmod:attr/theme = 0x7f040472
+hanson.xyz.vpnhotspotmod:color/m3_timepicker_display_ripple_color = 0x7f06021d
+hanson.xyz.vpnhotspotmod:attr/fontProviderAuthority = 0x7f0401ff
+hanson.xyz.vpnhotspotmod:color/m3_timepicker_display_background_color = 0x7f06021c
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_suggestion_chip_elevated_container_elevation = 0x7f070188
+hanson.xyz.vpnhotspotmod:color/m3_timepicker_button_text_color = 0x7f06021a
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_slider_disabled_inactive_track_opacity = 0x7f070184
+hanson.xyz.vpnhotspotmod:color/m3_textfield_label_color = 0x7f060216
+hanson.xyz.vpnhotspotmod:id/right = 0x7f09019b
+hanson.xyz.vpnhotspotmod:attr/closeItemLayout = 0x7f0400da
+hanson.xyz.vpnhotspotmod:dimen/abc_list_item_height_small_material = 0x7f070032
+hanson.xyz.vpnhotspotmod:id/add = 0x7f09004a
+hanson.xyz.vpnhotspotmod:color/m3_textfield_indicator_text_color = 0x7f060214
+hanson.xyz.vpnhotspotmod:color/m3_text_button_background_color_selector = 0x7f060210
+hanson.xyz.vpnhotspotmod:dimen/abc_dialog_min_width_major = 0x7f070022
+hanson.xyz.vpnhotspotmod:id/centerCrop = 0x7f09007b
+hanson.xyz.vpnhotspotmod:attr/labelBehavior = 0x7f040266
+hanson.xyz.vpnhotspotmod:color/m3_tabs_ripple_color = 0x7f06020c
+hanson.xyz.vpnhotspotmod:id/text2 = 0x7f0901f3
+hanson.xyz.vpnhotspotmod:dimen/m3_timepicker_window_elevation = 0x7f07021c
+hanson.xyz.vpnhotspotmod:color/m3_tabs_icon_color_secondary = 0x7f06020b
+hanson.xyz.vpnhotspotmod:attr/selectionRequired = 0x7f0403b8
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filter_chip_flat_unselected_outline_width = 0x7f070132
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_secondary_fixed_dim = 0x7f060207
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.PopupMenu.ListPopupWindow = 0x7f1303de
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_secondary_fixed = 0x7f060206
+hanson.xyz.vpnhotspotmod:macro/m3_comp_primary_navigation_tab_with_icon_inactive_icon_color = 0x7f0d00d3
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_4 = 0x7f09002b
+hanson.xyz.vpnhotspotmod:dimen/notification_main_column_padding_top = 0x7f07030e
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_on_tertiary_fixed = 0x7f060202
+hanson.xyz.vpnhotspotmod:dimen/item_touch_helper_swipe_escape_velocity = 0x7f07009e
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_on_secondary_fixed_variant = 0x7f060201
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.DynamicColors.Dark = 0x7f1302bd
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_on_secondary_fixed = 0x7f060200
+hanson.xyz.vpnhotspotmod:style/Platform.MaterialComponents.Light.Dialog = 0x7f130140
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_on_primary_fixed_variant = 0x7f0601ff
+hanson.xyz.vpnhotspotmod:id/tag_accessibility_pane_title = 0x7f0901e8
+hanson.xyz.vpnhotspotmod:attr/trackDecoration = 0x7f0404ad
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_on_primary_fixed = 0x7f0601fe
+hanson.xyz.vpnhotspotmod:styleable/FlowLayout = 0x7f140039
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_surface_dim = 0x7f0601fa
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_surface_container_low = 0x7f0601f8
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_surface_container_highest = 0x7f0601f7
+hanson.xyz.vpnhotspotmod:drawable/notification_template_icon_bg = 0x7f080119
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_surface_container_low = 0x7f0601ca
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_primary_fixed_dim = 0x7f060205
+hanson.xyz.vpnhotspotmod:string/bottom_sheet_behavior = 0x7f12001e
+hanson.xyz.vpnhotspotmod:attr/navigationViewStyle = 0x7f040341
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_secondary_container = 0x7f0601f2
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_standard_accelerate_control_x1 = 0x7f07020b
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Widget.AppCompat.Toolbar.Title = 0x7f130230
+hanson.xyz.vpnhotspotmod:style/Base.Theme.Material3.Dark.Dialog = 0x7f13005f
+hanson.xyz.vpnhotspotmod:style/Animation.AppCompat.Tooltip = 0x7f130004
+hanson.xyz.vpnhotspotmod:color/m3_timepicker_display_text_color = 0x7f06021e
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_outline = 0x7f0601ed
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_on_tertiary = 0x7f0601eb
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Button.TextButton.Snackbar = 0x7f130421
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_navigation_active_item_min_width = 0x7f070062
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Toolbar = 0x7f13047c
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_on_secondary = 0x7f0601e7
+hanson.xyz.vpnhotspotmod:id/tag_unhandled_key_event_manager = 0x7f0901ef
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_on_primary_container = 0x7f0601e6
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_on_primary = 0x7f0601e5
+hanson.xyz.vpnhotspotmod:drawable/avd_show_password = 0x7f080079
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.AutoCompleteTextView = 0x7f130313
+hanson.xyz.vpnhotspotmod:layout/preference_dropdown = 0x7f0c0080
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_on_error = 0x7f0601e3
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TextInputLayout.FilledBox.Dense = 0x7f1303f8
+hanson.xyz.vpnhotspotmod:attr/titleMarginEnd = 0x7f040492
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_drawer_focus_state_layer_opacity = 0x7f070144
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_on_background = 0x7f0601e2
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_primary_inverse = 0x7f0602a0
+hanson.xyz.vpnhotspotmod:attr/counterOverflowTextColor = 0x7f04014d
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_inverse_surface = 0x7f0601e1
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_navigation_shadow_height = 0x7f07006b
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_primary50 = 0x7f060140
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_inverse_primary = 0x7f0601e0
+hanson.xyz.vpnhotspotmod:id/selected = 0x7f0901bb
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_error = 0x7f0601dd
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.TextView.SpinnerItem = 0x7f1300fd
+hanson.xyz.vpnhotspotmod:drawable/abc_ic_commit_search_api_mtrl_alpha = 0x7f080041
+hanson.xyz.vpnhotspotmod:attr/actionBarTheme = 0x7f040009
+hanson.xyz.vpnhotspotmod:attr/windowFixedHeightMinor = 0x7f0404d3
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_tertiary_fixed_dim = 0x7f0601db
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox.Dense = 0x7f1302a7
+hanson.xyz.vpnhotspotmod:integer/m3_sys_shape_corner_medium_corner_family = 0x7f0a0025
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_tertiary_fixed = 0x7f0601da
+hanson.xyz.vpnhotspotmod:drawable/abc_spinner_textfield_background_material = 0x7f080067
+hanson.xyz.vpnhotspotmod:id/mtrl_picker_header_title_and_selection = 0x7f09014b
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_primary_fixed_dim = 0x7f0601d7
+hanson.xyz.vpnhotspotmod:attr/alpha = 0x7f040032
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_on_tertiary_fixed = 0x7f0601d4
+hanson.xyz.vpnhotspotmod:color/material_dynamic_primary40 = 0x7f060251
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Spinner.Underlined = 0x7f13034d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_active_label_text_color = 0x7f0d006a
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_on_secondary_fixed_variant = 0x7f0601d3
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox.Dense = 0x7f1302e7
+hanson.xyz.vpnhotspotmod:attr/subtitle = 0x7f040409
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_on_secondary_fixed = 0x7f0601d2
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.MaterialComponents.Light = 0x7f130099
+hanson.xyz.vpnhotspotmod:dimen/abc_switch_padding = 0x7f07003e
+hanson.xyz.vpnhotspotmod:id/action_bar = 0x7f090037
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_on_primary_fixed_variant = 0x7f0601d1
+hanson.xyz.vpnhotspotmod:attr/textAppearanceOverline = 0x7f04045b
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_tertiary_container = 0x7f0601cf
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_medium1 = 0x7f0a0018
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_secondary_text_inverse = 0x7f0602a6
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_surface_container_lowest = 0x7f0601cb
+hanson.xyz.vpnhotspotmod:string/mtrl_checkbox_button_icon_path_group_name = 0x7f12009c
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_display_4_material = 0x7f070046
+hanson.xyz.vpnhotspotmod:styleable/ConstraintLayout_placeholder = 0x7f14002c
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_surface_container_high = 0x7f0601c8
+hanson.xyz.vpnhotspotmod:dimen/m3_ripple_default_alpha = 0x7f0701d1
+hanson.xyz.vpnhotspotmod:string/title_clients = 0x7f120156
+hanson.xyz.vpnhotspotmod:id/textinput_prefix_text = 0x7f090201
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_surface_variant = 0x7f0602b0
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonLargeTertiaryStyle = 0x7f0401df
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_on_error_container = 0x7f0601b6
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_surface_bright = 0x7f0601c6
+hanson.xyz.vpnhotspotmod:color/abc_primary_text_disable_only_material_dark = 0x7f060009
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_surface = 0x7f0601c5
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_secondary = 0x7f0601c3
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_outline_variant = 0x7f0601c0
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_outline = 0x7f0601bf
+hanson.xyz.vpnhotspotmod:string/abc_menu_meta_shortcut_label = 0x7f12000d
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_on_tertiary = 0x7f0601bd
+hanson.xyz.vpnhotspotmod:id/spline = 0x7f0901cc
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_on_surface_variant = 0x7f0601bc
+hanson.xyz.vpnhotspotmod:color/design_dark_default_color_error = 0x7f060045
+hanson.xyz.vpnhotspotmod:color/m3_button_ripple_color_selector = 0x7f06007b
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_sheet_modal_elevation = 0x7f07006e
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_rail_pressed_state_layer_opacity = 0x7f070151
+hanson.xyz.vpnhotspotmod:color/switch_thumb_normal_material_dark = 0x7f060315
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_on_surface = 0x7f0601bb
+hanson.xyz.vpnhotspotmod:drawable/btn_radio_on_mtrl = 0x7f080080
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_on_secondary = 0x7f0601b9
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_maximum_default_fullscreen_minor_axis = 0x7f070285
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_on_primary_container = 0x7f0601b8
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_bar_leading_icon_color = 0x7f0d00ec
+hanson.xyz.vpnhotspotmod:dimen/tooltip_corner_radius = 0x7f070322
+hanson.xyz.vpnhotspotmod:layout/abc_search_view = 0x7f0c0019
+hanson.xyz.vpnhotspotmod:id/postLayout = 0x7f09018e
+hanson.xyz.vpnhotspotmod:attr/shapeAppearanceCornerExtraLarge = 0x7f0403bb
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filter_chip_container_height = 0x7f07012f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_hover_icon_color = 0x7f0d0127
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_primary40 = 0x7f0600e6
+hanson.xyz.vpnhotspotmod:color/material_dynamic_secondary10 = 0x7f06025a
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_on_error = 0x7f0601b5
+hanson.xyz.vpnhotspotmod:animator/mtrl_fab_hide_motion_spec = 0x7f02001e
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_error_container = 0x7f0601de
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_inverse_surface = 0x7f0601b3
+hanson.xyz.vpnhotspotmod:attr/iconifiedByDefault = 0x7f040230
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_inverse_primary = 0x7f0601b2
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Snackbar = 0x7f1303ed
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_tertiary_container = 0x7f0601ad
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_surface_container_lowest = 0x7f0601a9
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_surface_container = 0x7f0601a5
+hanson.xyz.vpnhotspotmod:style/Base.V21.Theme.MaterialComponents = 0x7f1300a9
+hanson.xyz.vpnhotspotmod:macro/m3_comp_dialog_container_shape = 0x7f0d0024
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_surface = 0x7f0601a3
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_secondary_container = 0x7f0601a2
+hanson.xyz.vpnhotspotmod:dimen/tooltip_precise_anchor_extra_offset = 0x7f070325
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant4 = 0x7f0600d2
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_emphasized_accelerate_control_y1 = 0x7f0701f5
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.BottomNavigationView.Colored = 0x7f130414
+hanson.xyz.vpnhotspotmod:color/material_on_background_emphasis_medium = 0x7f060280
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_secondary = 0x7f0601a1
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_elevation_level0 = 0x7f0701ed
+hanson.xyz.vpnhotspotmod:dimen/m3_alert_dialog_action_top_padding = 0x7f0700a1
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_primary_container = 0x7f0601a0
+hanson.xyz.vpnhotspotmod:styleable/KeyPosition = 0x7f140048
+hanson.xyz.vpnhotspotmod:style/Base.V21.Theme.MaterialComponents.Light.Dialog = 0x7f1300ac
+hanson.xyz.vpnhotspotmod:string/tethering_manage_offload_enabled = 0x7f12013f
+hanson.xyz.vpnhotspotmod:id/sin = 0x7f0901c2
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_primary = 0x7f06019f
+hanson.xyz.vpnhotspotmod:style/Widget.Compat.NotificationActionContainer = 0x7f130352
+hanson.xyz.vpnhotspotmod:string/wifi_max_clients = 0x7f120177
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_on_tertiary = 0x7f06019b
+hanson.xyz.vpnhotspotmod:attr/collapsingToolbarLayoutMediumSize = 0x7f0400e3
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_on_surface = 0x7f060199
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_on_secondary_container = 0x7f060198
+hanson.xyz.vpnhotspotmod:id/textinput_counter = 0x7f0901fd
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_on_primary = 0x7f060293
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_on_primary_container = 0x7f060196
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_on_error = 0x7f060193
+hanson.xyz.vpnhotspotmod:macro/m3_comp_extended_fab_primary_label_text_type = 0x7f0d0030
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_on_background = 0x7f060192
+hanson.xyz.vpnhotspotmod:layout/preference_recyclerview = 0x7f0c0086
+hanson.xyz.vpnhotspotmod:attr/windowActionBar = 0x7f0404cf
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_switch_selected_pressed_state_layer_opacity = 0x7f070193
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_inverse_surface = 0x7f060191
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_header_divider_thickness = 0x7f07027d
+hanson.xyz.vpnhotspotmod:id/transition_transform = 0x7f090214
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_inverse_primary = 0x7f060190
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral_variant40 = 0x7f060132
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_inverse_on_surface = 0x7f06018f
+hanson.xyz.vpnhotspotmod:styleable/FontFamily = 0x7f14003a
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_background = 0x7f06018c
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ActionBar.TabBar = 0x7f13030b
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_tertiary = 0x7f06018a
+hanson.xyz.vpnhotspotmod:drawable/mtrl_ic_check_mark = 0x7f0800fa
+hanson.xyz.vpnhotspotmod:attr/materialCardViewFilledStyle = 0x7f0402e5
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_surface_dim = 0x7f060188
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_surface_container_lowest = 0x7f060187
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_surface_container_low = 0x7f060186
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ListPopupWindow = 0x7f13033a
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_surface_container_high = 0x7f060184
+hanson.xyz.vpnhotspotmod:drawable/ic_action_update = 0x7f0800a7
+hanson.xyz.vpnhotspotmod:integer/mtrl_calendar_selection_text_lines = 0x7f0a0032
+hanson.xyz.vpnhotspotmod:color/bright_foreground_inverse_material_dark = 0x7f060023
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_surface_bright = 0x7f060182
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_surface = 0x7f060181
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_secondary_container = 0x7f060180
+hanson.xyz.vpnhotspotmod:attr/actionMenuTextAppearance = 0x7f04000e
+hanson.xyz.vpnhotspotmod:attr/round = 0x7f0403a5
+hanson.xyz.vpnhotspotmod:drawable/abc_btn_colored_material = 0x7f080030
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.DialogWhenLarge = 0x7f13023d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_bar_supporting_text_color = 0x7f0d00ef
+hanson.xyz.vpnhotspotmod:id/material_value_index = 0x7f090129
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_on_tertiary_container = 0x7f06017a
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.Dialog.FixedSize = 0x7f130275
+hanson.xyz.vpnhotspotmod:dimen/m3_back_progress_main_container_max_translation_y = 0x7f0700b1
+hanson.xyz.vpnhotspotmod:styleable/BottomNavigationView = 0x7f140019
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_on_tertiary = 0x7f060179
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Dark.NoActionBar = 0x7f130253
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_on_surface_variant = 0x7f060178
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral_variant10 = 0x7f06012e
+hanson.xyz.vpnhotspotmod:dimen/abc_control_corner_material = 0x7f070018
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_on_surface = 0x7f060177
+hanson.xyz.vpnhotspotmod:color/material_dynamic_secondary99 = 0x7f060265
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_rail_item_min_height = 0x7f0701cc
+hanson.xyz.vpnhotspotmod:color/design_dark_default_color_primary_variant = 0x7f06004d
+hanson.xyz.vpnhotspotmod:attr/flow_verticalAlign = 0x7f0401f8
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_on_secondary = 0x7f060175
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_on_error = 0x7f060171
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_inverse_surface = 0x7f06016f
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_inverse_primary = 0x7f06016e
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_text_button_hover_state_layer_opacity = 0x7f07019a
+hanson.xyz.vpnhotspotmod:dimen/mtrl_card_elevation = 0x7f07029c
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_inverse_on_surface = 0x7f06016d
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_error_container = 0x7f06016c
+hanson.xyz.vpnhotspotmod:attr/displayOptions = 0x7f040175
+hanson.xyz.vpnhotspotmod:color/primary_material_dark = 0x7f060305
+hanson.xyz.vpnhotspotmod:attr/yearStyle = 0x7f0404da
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_primary_fixed = 0x7f0601d6
+hanson.xyz.vpnhotspotmod:style/CardView = 0x7f130124
+hanson.xyz.vpnhotspotmod:attr/colorBackgroundFloating = 0x7f0400e8
+hanson.xyz.vpnhotspotmod:dimen/abc_edit_text_inset_horizontal_material = 0x7f07002d
+hanson.xyz.vpnhotspotmod:drawable/abc_btn_switch_to_on_mtrl_00012 = 0x7f080037
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant99 = 0x7f0600e0
+hanson.xyz.vpnhotspotmod:attr/subtitleTextAppearance = 0x7f04040b
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_padding_bottom = 0x7f070262
+hanson.xyz.vpnhotspotmod:id/pathRelative = 0x7f090187
+hanson.xyz.vpnhotspotmod:color/m3_slider_thumb_color = 0x7f060167
+hanson.xyz.vpnhotspotmod:color/m3_slider_inactive_track_color = 0x7f060166
+hanson.xyz.vpnhotspotmod:color/m3_slider_halo_color = 0x7f060165
+hanson.xyz.vpnhotspotmod:attr/triggerReceiver = 0x7f0404ba
+hanson.xyz.vpnhotspotmod:dimen/m3_card_elevated_disabled_z = 0x7f0700e9
+hanson.xyz.vpnhotspotmod:interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0 = 0x7f0b0000
+hanson.xyz.vpnhotspotmod:color/mtrl_filled_background_color = 0x7f0602de
+hanson.xyz.vpnhotspotmod:attr/layout_constraintGuide_percent = 0x7f040284
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_tertiary99 = 0x7f060160
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_outline = 0x7f06017b
+hanson.xyz.vpnhotspotmod:color/material_dynamic_tertiary0 = 0x7f060266
+hanson.xyz.vpnhotspotmod:attr/seekBarIncrement = 0x7f0403b2
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_tertiary90 = 0x7f06015e
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral24 = 0x7f06011c
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_tertiary70 = 0x7f06015c
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_tertiary60 = 0x7f06015b
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.Material3.SearchView = 0x7f1301af
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_tertiary50 = 0x7f06015a
+hanson.xyz.vpnhotspotmod:id/hide_ime_id = 0x7f0900e6
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_days_of_week_height = 0x7f070279
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_tertiary40 = 0x7f060159
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_tertiary20 = 0x7f060157
+hanson.xyz.vpnhotspotmod:attr/tabIndicatorAnimationMode = 0x7f040425
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_tertiary100 = 0x7f060156
+hanson.xyz.vpnhotspotmod:attr/linearProgressIndicatorStyle = 0x7f0402b4
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_emphasized_decelerate_control_x2 = 0x7f0701f8
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_dialog_background_inset = 0x7f07027a
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_secondary99 = 0x7f060153
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Spinner.DropDown.ActionBar = 0x7f13034c
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_secondary90 = 0x7f060151
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_secondary80 = 0x7f060150
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_secondary50 = 0x7f06014d
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_secondary30 = 0x7f06014b
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_secondary20 = 0x7f06014a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_date_label_text_type = 0x7f0d0010
+hanson.xyz.vpnhotspotmod:color/design_default_color_on_error = 0x7f060054
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_secondary10 = 0x7f060148
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CircularProgressIndicator = 0x7f130393
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_icon_only_default_size = 0x7f0700d7
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_secondary0 = 0x7f060147
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Display2 = 0x7f1301bf
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_primary99 = 0x7f060146
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text = 0x7f130171
+hanson.xyz.vpnhotspotmod:string/title_settings = 0x7f120158
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_primary95 = 0x7f060145
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_on_secondary_container = 0x7f0601e8
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.HeadlineMedium = 0x7f130200
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_primary80 = 0x7f060143
+hanson.xyz.vpnhotspotmod:style/Base.DialogWindowTitle.AppCompat = 0x7f130015
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_primary60 = 0x7f060141
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_secondary_container = 0x7f0602a4
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_primary40 = 0x7f06013f
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_primary30 = 0x7f06013e
+hanson.xyz.vpnhotspotmod:drawable/$m3_avd_hide_password__0 = 0x7f080007
+hanson.xyz.vpnhotspotmod:style/Base.V21.Theme.AppCompat.Dialog = 0x7f1300a6
+hanson.xyz.vpnhotspotmod:id/auto_shutdown = 0x7f09005f
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_primary100 = 0x7f06013c
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_primary0 = 0x7f06013a
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral_variant95 = 0x7f060138
+hanson.xyz.vpnhotspotmod:color/mtrl_choice_chip_ripple_color = 0x7f0602d8
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_surface_container_low = 0x7f0601a8
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral_variant70 = 0x7f060135
+hanson.xyz.vpnhotspotmod:id/forever = 0x7f0900d9
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral_variant60 = 0x7f060134
+hanson.xyz.vpnhotspotmod:styleable/MenuItem = 0x7f140065
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral99 = 0x7f06012c
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral_variant20 = 0x7f060130
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral98 = 0x7f06012b
+hanson.xyz.vpnhotspotmod:color/material_dynamic_primary50 = 0x7f060252
+hanson.xyz.vpnhotspotmod:attr/colorOnSecondaryContainer = 0x7f0400fb
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral96 = 0x7f06012a
+hanson.xyz.vpnhotspotmod:id/mtrl_calendar_text_input_frame = 0x7f090142
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_item_shape_inset_end = 0x7f0701c0
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral95 = 0x7f060129
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral92 = 0x7f060127
+hanson.xyz.vpnhotspotmod:style/Base.Theme.Material3.Light.SideSheetDialog = 0x7f130068
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_primary90 = 0x7f060144
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_disabled_selected_handle_color = 0x7f0d011a
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral_variant0 = 0x7f06012d
+hanson.xyz.vpnhotspotmod:styleable/View = 0x7f1400a8
+hanson.xyz.vpnhotspotmod:styleable/Snackbar = 0x7f14008d
+hanson.xyz.vpnhotspotmod:layout/material_clock_display_divider = 0x7f0c004a
+hanson.xyz.vpnhotspotmod:id/search_close_btn = 0x7f0901af
+hanson.xyz.vpnhotspotmod:attr/trackHeight = 0x7f0404b0
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral90 = 0x7f060126
+hanson.xyz.vpnhotspotmod:color/mtrl_btn_stroke_color_selector = 0x7f0602c9
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral87 = 0x7f060125
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_bar_item_default_icon_size = 0x7f0702c0
+hanson.xyz.vpnhotspotmod:string/abc_searchview_description_query = 0x7f120014
+hanson.xyz.vpnhotspotmod:id/preferences_header = 0x7f090190
+hanson.xyz.vpnhotspotmod:attr/editTextStyle = 0x7f040197
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_on_tertiary_container = 0x7f06019c
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral80 = 0x7f060124
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral70 = 0x7f060123
+hanson.xyz.vpnhotspotmod:color/mtrl_textinput_disabled_color = 0x7f0602fa
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral60 = 0x7f060122
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral6 = 0x7f060121
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.ActionBar.PrimarySurface = 0x7f130404
+hanson.xyz.vpnhotspotmod:anim/abc_shrink_fade_out_center = 0x7f010005
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_surface_container = 0x7f0602a9
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Dialog.Alert = 0x7f1302bb
+hanson.xyz.vpnhotspotmod:dimen/material_bottom_sheet_max_width = 0x7f07021e
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_background = 0x7f0601ae
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral30 = 0x7f06011d
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.TextView = 0x7f13034e
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_sheet_bottom_docked_standard_container_elevation = 0x7f07017e
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral22 = 0x7f06011b
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.ExtendedFloatingActionButton.Primary = 0x7f1303a3
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral17 = 0x7f060119
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral12 = 0x7f060118
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral100 = 0x7f060117
+hanson.xyz.vpnhotspotmod:drawable/btn_radio_on_to_off_mtrl_animation = 0x7f080081
+hanson.xyz.vpnhotspotmod:layout/mtrl_auto_complete_simple_item = 0x7f0c005c
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_secondary70 = 0x7f06014f
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_error90 = 0x7f060112
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat.Light = 0x7f130056
+hanson.xyz.vpnhotspotmod:attr/layout_constraintVertical_bias = 0x7f040298
+hanson.xyz.vpnhotspotmod:color/material_dynamic_secondary30 = 0x7f06025d
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_error40 = 0x7f06010d
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_error30 = 0x7f06010c
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Bridge = 0x7f13026a
+hanson.xyz.vpnhotspotmod:id/spread = 0x7f0901ce
+hanson.xyz.vpnhotspotmod:attr/contentInsetStart = 0x7f040131
+hanson.xyz.vpnhotspotmod:dimen/design_navigation_max_width = 0x7f07007d
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_error100 = 0x7f06010a
+hanson.xyz.vpnhotspotmod:string/call_notification_answer_action = 0x7f120024
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral10 = 0x7f0600b2
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_outlined_icon_button_unselected_outline_width = 0x7f070159
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_error0 = 0x7f060108
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Chip.Assist = 0x7f130388
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_tertiary99 = 0x7f060107
+hanson.xyz.vpnhotspotmod:id/recycler_view = 0x7f090198
+hanson.xyz.vpnhotspotmod:drawable/btn_checkbox_unchecked_mtrl = 0x7f08007c
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_secondary_navigation_tab_active_indicator_height = 0x7f070177
+hanson.xyz.vpnhotspotmod:id/text_input_end_icon = 0x7f0901fa
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_tertiary95 = 0x7f060106
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_tertiary90 = 0x7f060105
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_tertiary20 = 0x7f0600fe
+hanson.xyz.vpnhotspotmod:string/path_password_eye_mask_strike_through = 0x7f1200e2
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_bar_active_indicator_width = 0x7f07013c
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_secondary99 = 0x7f0600fa
+hanson.xyz.vpnhotspotmod:id/security = 0x7f0901b6
+hanson.xyz.vpnhotspotmod:drawable/ic_action_settings_ethernet = 0x7f0800a4
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Design.Snackbar.Message = 0x7f1301f6
+hanson.xyz.vpnhotspotmod:style/PreferenceFragment.Material = 0x7f130163
+hanson.xyz.vpnhotspotmod:id/navigation_header_container = 0x7f09015b
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_text_light_normal = 0x7f080093
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f1301c9
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Light.Dialog.MinWidth = 0x7f13007a
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_secondary40 = 0x7f0600f3
+hanson.xyz.vpnhotspotmod:attr/order = 0x7f04034f
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_checked_unchecked__0 = 0x7f08000d
+hanson.xyz.vpnhotspotmod:id/hideable = 0x7f0900e7
+hanson.xyz.vpnhotspotmod:array/wifi_mac_randomization = 0x7f030006
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_menu_divider_horizontal_padding = 0x7f0701c4
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.Snackbar = 0x7f130111
+hanson.xyz.vpnhotspotmod:attr/materialDisplayDividerStyle = 0x7f0402ea
+hanson.xyz.vpnhotspotmod:string/call_notification_decline_action = 0x7f120026
+hanson.xyz.vpnhotspotmod:color/common_google_signin_btn_text_dark_default = 0x7f060037
+hanson.xyz.vpnhotspotmod:attr/endIconContentDescription = 0x7f0401a1
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_secondary100 = 0x7f0600f0
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense = 0x7f13040c
+hanson.xyz.vpnhotspotmod:layout/preference_category_material = 0x7f0c007e
+hanson.xyz.vpnhotspotmod:id/center_horizontal = 0x7f09007d
+hanson.xyz.vpnhotspotmod:color/mtrl_tabs_ripple_color = 0x7f0602f7
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_primary90 = 0x7f0600eb
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.Material3.Dark.SideSheetDialog = 0x7f130090
+hanson.xyz.vpnhotspotmod:anim/abc_shrink_fade_out_from_bottom = 0x7f010006
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_primary50 = 0x7f0600e7
+hanson.xyz.vpnhotspotmod:attr/useMaterialThemeColors = 0x7f0404c0
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant95 = 0x7f0600dd
+hanson.xyz.vpnhotspotmod:id/accessibility_action_clickable_span = 0x7f090010
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant87 = 0x7f0600d9
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_secondary60 = 0x7f06014e
+hanson.xyz.vpnhotspotmod:styleable/MotionTelltales = 0x7f14006c
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_a11y_next_month = 0x7f1200a9
+hanson.xyz.vpnhotspotmod:string/material_hour_selection = 0x7f120087
+hanson.xyz.vpnhotspotmod:attr/disableDependentsState = 0x7f040174
+hanson.xyz.vpnhotspotmod:dimen/material_emphasis_high_type = 0x7f070232
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant60 = 0x7f0600d6
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Chip.Assist.Elevated = 0x7f130389
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_outlined_autocomplete_menu_container_elevation = 0x7f070152
+hanson.xyz.vpnhotspotmod:anim/abc_fade_in = 0x7f010000
+hanson.xyz.vpnhotspotmod:dimen/mtrl_slider_track_side_padding = 0x7f0702ea
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant6 = 0x7f0600d5
+hanson.xyz.vpnhotspotmod:macro/m3_comp_extended_fab_primary_icon_color = 0x7f0d002f
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant50 = 0x7f0600d4
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant30 = 0x7f0600d1
+hanson.xyz.vpnhotspotmod:styleable/MaterialButton = 0x7f140055
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant24 = 0x7f0600d0
+hanson.xyz.vpnhotspotmod:attr/actionBarWidgetTheme = 0x7f04000a
+hanson.xyz.vpnhotspotmod:attr/paddingBottomNoButtons = 0x7f040353
+hanson.xyz.vpnhotspotmod:dimen/m3_large_fab_max_image_size = 0x7f0701b6
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_suggestion_chip_flat_outline_width = 0x7f07018a
+hanson.xyz.vpnhotspotmod:styleable/ForegroundLinearLayout = 0x7f14003c
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant22 = 0x7f0600cf
+hanson.xyz.vpnhotspotmod:id/standard = 0x7f0901d6
+hanson.xyz.vpnhotspotmod:attr/simpleItemSelectedColor = 0x7f0403d5
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant17 = 0x7f0600cd
+hanson.xyz.vpnhotspotmod:id/touch_outside = 0x7f09020d
+hanson.xyz.vpnhotspotmod:id/left = 0x7f090101
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant12 = 0x7f0600cc
+hanson.xyz.vpnhotspotmod:style/Platform.V25.AppCompat = 0x7f130146
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral98 = 0x7f0600c7
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral94 = 0x7f0600c4
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.SideSheet.Detached = 0x7f1303e8
+hanson.xyz.vpnhotspotmod:attr/elevationOverlayAccentColor = 0x7f040199
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral6 = 0x7f0600bd
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral50 = 0x7f0600bc
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_time_picker_time_selector_hover_state_layer_opacity = 0x7f0701a3
+hanson.xyz.vpnhotspotmod:attr/expandedTitleTextColor = 0x7f0401c1
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral24 = 0x7f0600b8
+hanson.xyz.vpnhotspotmod:dimen/material_divider_thickness = 0x7f07022f
+hanson.xyz.vpnhotspotmod:attr/colorOnSurfaceInverse = 0x7f0400ff
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral12 = 0x7f0600b4
+hanson.xyz.vpnhotspotmod:id/list_item = 0x7f09010d
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_legacy_control_y1 = 0x7f070201
+hanson.xyz.vpnhotspotmod:attr/dropdownPreferenceStyle = 0x7f040191
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_disabled_label_text_color = 0x7f0d00b6
+hanson.xyz.vpnhotspotmod:attr/materialSwitchStyle = 0x7f0402f6
+hanson.xyz.vpnhotspotmod:color/m3_radiobutton_ripple_tint = 0x7f0600af
+hanson.xyz.vpnhotspotmod:color/m3_primary_text_disable_only = 0x7f0600ad
+hanson.xyz.vpnhotspotmod:color/m3_navigation_rail_item_with_indicator_label_tint = 0x7f0600aa
+hanson.xyz.vpnhotspotmod:attr/colorOnTertiary = 0x7f040101
+hanson.xyz.vpnhotspotmod:color/m3_navigation_rail_item_with_indicator_icon_tint = 0x7f0600a9
+hanson.xyz.vpnhotspotmod:attr/state_collapsed = 0x7f0403f6
+hanson.xyz.vpnhotspotmod:color/m3_navigation_item_text_color = 0x7f0600a8
+hanson.xyz.vpnhotspotmod:color/m3_navigation_bar_ripple_color_selector = 0x7f0600a4
+hanson.xyz.vpnhotspotmod:string/settings_service_repeater_safe_mode_warning = 0x7f120124
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_fab_primary_pressed_container_elevation = 0x7f070121
+hanson.xyz.vpnhotspotmod:attr/collapsingToolbarLayoutLargeSize = 0x7f0400e1
+hanson.xyz.vpnhotspotmod:color/m3_hint_foreground = 0x7f0600a0
+hanson.xyz.vpnhotspotmod:attr/primaryActivityName = 0x7f040392
+hanson.xyz.vpnhotspotmod:color/material_dynamic_tertiary40 = 0x7f06026b
+hanson.xyz.vpnhotspotmod:color/m3_highlighted_text = 0x7f06009f
+hanson.xyz.vpnhotspotmod:layout/preference_widget_seekbar_material = 0x7f0c008c
+hanson.xyz.vpnhotspotmod:id/jumpToEnd = 0x7f0900fd
+hanson.xyz.vpnhotspotmod:anim/btn_radio_to_on_mtrl_dot_group_animation = 0x7f010016
+hanson.xyz.vpnhotspotmod:color/m3_elevated_chip_background_color = 0x7f06009a
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_unchecked_checked__2 = 0x7f08001a
+hanson.xyz.vpnhotspotmod:color/m3_dynamic_hint_foreground = 0x7f060097
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Slider = 0x7f1303eb
+hanson.xyz.vpnhotspotmod:attr/searchPrefixText = 0x7f0403ae
+hanson.xyz.vpnhotspotmod:color/m3_dynamic_dark_primary_text_disable_only = 0x7f060093
+hanson.xyz.vpnhotspotmod:color/m3_dynamic_dark_default_color_secondary_text = 0x7f060090
+hanson.xyz.vpnhotspotmod:attr/materialCalendarMonth = 0x7f0402df
+hanson.xyz.vpnhotspotmod:layout/m3_auto_complete_simple_item = 0x7f0c0046
+hanson.xyz.vpnhotspotmod:id/wide = 0x7f090226
+hanson.xyz.vpnhotspotmod:color/m3_chip_text_color = 0x7f060087
+hanson.xyz.vpnhotspotmod:color/m3_checkbox_button_tint = 0x7f060082
+hanson.xyz.vpnhotspotmod:color/m3_dynamic_dark_highlighted_text = 0x7f060091
+hanson.xyz.vpnhotspotmod:dimen/abc_button_padding_horizontal_material = 0x7f070014
+hanson.xyz.vpnhotspotmod:style/Preference = 0x7f130149
+hanson.xyz.vpnhotspotmod:attr/drawableTint = 0x7f040188
+hanson.xyz.vpnhotspotmod:id/adjust_height = 0x7f09004c
+hanson.xyz.vpnhotspotmod:color/m3_checkbox_button_icon_tint = 0x7f060081
+hanson.xyz.vpnhotspotmod:color/m3_bottom_sheet_drag_handle_color = 0x7f060076
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Medium.Inverse = 0x7f1301cb
+hanson.xyz.vpnhotspotmod:color/m3_assist_chip_stroke_color = 0x7f060075
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.IconButton.Outlined = 0x7f130378
+hanson.xyz.vpnhotspotmod:macro/m3_comp_elevated_card_container_color = 0x7f0d002b
+hanson.xyz.vpnhotspotmod:color/highlighted_text_material_light = 0x7f060071
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Chip = 0x7f130222
+hanson.xyz.vpnhotspotmod:attr/bottomSheetDragHandleStyle = 0x7f04007c
+hanson.xyz.vpnhotspotmod:color/dim_foreground_material_dark = 0x7f06006a
+hanson.xyz.vpnhotspotmod:styleable/GradientColorItem = 0x7f140040
+hanson.xyz.vpnhotspotmod:color/material_personalized__highlighted_text = 0x7f060288
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents = 0x7f1302e1
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton = 0x7f130118
+hanson.xyz.vpnhotspotmod:color/dim_foreground_disabled_material_light = 0x7f060069
+hanson.xyz.vpnhotspotmod:attr/listChoiceBackgroundIndicator = 0x7f0402b5
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonSmallTertiaryStyle = 0x7f0401e6
+hanson.xyz.vpnhotspotmod:color/browser_actions_title_color = 0x7f06002a
+hanson.xyz.vpnhotspotmod:color/dim_foreground_disabled_material_dark = 0x7f060068
+hanson.xyz.vpnhotspotmod:string/wifi_hotspot_max_channel_bandwidth = 0x7f12016d
+hanson.xyz.vpnhotspotmod:color/design_snackbar_background_color = 0x7f060067
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_hover_outline_color = 0x7f0d00c1
+hanson.xyz.vpnhotspotmod:color/design_fab_stroke_top_inner_color = 0x7f060064
+hanson.xyz.vpnhotspotmod:styleable/RadialViewGroup = 0x7f14007d
+hanson.xyz.vpnhotspotmod:layout/notification_action = 0x7f0c0076
+hanson.xyz.vpnhotspotmod:animator/m3_chip_state_list_anim = 0x7f02000e
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_secondary80 = 0x7f0600f7
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Toolbar = 0x7f1300fe
+hanson.xyz.vpnhotspotmod:color/design_fab_stroke_end_outer_color = 0x7f060063
+hanson.xyz.vpnhotspotmod:color/m3_fab_efab_foreground_color_selector = 0x7f06009c
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_item_shape_horizontal_margin = 0x7f0702c6
+hanson.xyz.vpnhotspotmod:attr/actionLayout = 0x7f04000d
+hanson.xyz.vpnhotspotmod:color/design_fab_shadow_mid_color = 0x7f060060
+hanson.xyz.vpnhotspotmod:color/design_fab_shadow_end_color = 0x7f06005f
+hanson.xyz.vpnhotspotmod:dimen/mtrl_badge_with_text_size = 0x7f07024f
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.Material3.FloatingActionButton = 0x7f1301ac
+hanson.xyz.vpnhotspotmod:color/design_default_color_primary_variant = 0x7f06005a
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_secondary95 = 0x7f0600f9
+hanson.xyz.vpnhotspotmod:attr/listItemLayout = 0x7f0402b9
+hanson.xyz.vpnhotspotmod:attr/motionEasingStandardAccelerateInterpolator = 0x7f04032f
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.Fullscreen = 0x7f130440
+hanson.xyz.vpnhotspotmod:color/secondary_text_disabled_material_dark = 0x7f06030f
+hanson.xyz.vpnhotspotmod:attr/seekBarStyle = 0x7f0403b4
+hanson.xyz.vpnhotspotmod:color/design_default_color_on_secondary = 0x7f060056
+hanson.xyz.vpnhotspotmod:string/settings_service_ip_monitor_poll_root = 0x7f12011d
+hanson.xyz.vpnhotspotmod:color/design_default_color_on_background = 0x7f060053
+hanson.xyz.vpnhotspotmod:attr/searchIcon = 0x7f0403ad
+hanson.xyz.vpnhotspotmod:color/design_dark_default_color_surface = 0x7f060050
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_primary30 = 0x7f0600e5
+hanson.xyz.vpnhotspotmod:color/design_dark_default_color_on_surface = 0x7f06004a
+hanson.xyz.vpnhotspotmod:color/primary_material_light = 0x7f060306
+hanson.xyz.vpnhotspotmod:color/call_notification_decline_color = 0x7f06002e
+hanson.xyz.vpnhotspotmod:attr/motionDurationMedium1 = 0x7f04031e
+hanson.xyz.vpnhotspotmod:color/design_dark_default_color_on_error = 0x7f060047
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_short2 = 0x7f0a001d
+hanson.xyz.vpnhotspotmod:dimen/touch_target_min = 0x7f07032a
+hanson.xyz.vpnhotspotmod:color/design_box_stroke_color = 0x7f060043
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TextInputEditText.FilledBox = 0x7f1303f3
+hanson.xyz.vpnhotspotmod:color/primary_dark_material_dark = 0x7f060303
+hanson.xyz.vpnhotspotmod:color/design_bottom_navigation_shadow_color = 0x7f060042
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.PopupMenuItem = 0x7f13016d
+hanson.xyz.vpnhotspotmod:dimen/abc_dialog_fixed_width_minor = 0x7f07001f
+hanson.xyz.vpnhotspotmod:color/dark_colorPrimary = 0x7f060041
+hanson.xyz.vpnhotspotmod:attr/badgeStyle = 0x7f04005a
+hanson.xyz.vpnhotspotmod:dimen/m3_badge_with_text_horizontal_offset = 0x7f0700ba
+hanson.xyz.vpnhotspotmod:id/dragStart = 0x7f0900ba
+hanson.xyz.vpnhotspotmod:attr/minSeparation = 0x7f04030c
+hanson.xyz.vpnhotspotmod:color/m3_dynamic_default_color_primary_text = 0x7f060094
+hanson.xyz.vpnhotspotmod:attr/helperTextTextColor = 0x7f040218
+hanson.xyz.vpnhotspotmod:color/common_google_signin_btn_tint = 0x7f060040
+hanson.xyz.vpnhotspotmod:id/multiply = 0x7f090152
+hanson.xyz.vpnhotspotmod:dimen/def_drawer_elevation = 0x7f07005f
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_primary70 = 0x7f060142
+hanson.xyz.vpnhotspotmod:color/common_google_signin_btn_text_light_default = 0x7f06003c
+hanson.xyz.vpnhotspotmod:color/common_google_signin_btn_text_light = 0x7f06003b
+hanson.xyz.vpnhotspotmod:drawable/ic_action_perm_scan_wifi = 0x7f0800a1
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_header_headline_type = 0x7f0d0017
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_outlined_card_disabled_outline_opacity = 0x7f070156
+hanson.xyz.vpnhotspotmod:plurals/notification_interfaces = 0x7f100005
+hanson.xyz.vpnhotspotmod:color/common_google_signin_btn_text_dark_disabled = 0x7f060038
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filled_text_field_disabled_active_indicator_opacity = 0x7f07012e
+hanson.xyz.vpnhotspotmod:drawable/mtrl_checkbox_button_icon_unchecked_checked = 0x7f0800f2
+hanson.xyz.vpnhotspotmod:color/colorSecondary = 0x7f060035
+hanson.xyz.vpnhotspotmod:attr/saturation = 0x7f0403a7
+hanson.xyz.vpnhotspotmod:drawable/abc_seekbar_thumb_material = 0x7f080063
+hanson.xyz.vpnhotspotmod:drawable/abc_ic_menu_paste_mtrl_am_alpha = 0x7f080046
+hanson.xyz.vpnhotspotmod:drawable/simple_menu_background = 0x7f08011e
+hanson.xyz.vpnhotspotmod:attr/autoShowKeyboard = 0x7f040042
+hanson.xyz.vpnhotspotmod:color/colorPrimary = 0x7f060033
+hanson.xyz.vpnhotspotmod:attr/finishSecondaryWithPrimary = 0x7f0401d9
+hanson.xyz.vpnhotspotmod:attr/autoSizeMaxTextSize = 0x7f040043
+hanson.xyz.vpnhotspotmod:dimen/design_fab_size_mini = 0x7f070073
+hanson.xyz.vpnhotspotmod:color/cardview_shadow_start_color = 0x7f060032
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_icon_dark = 0x7f080083
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Medium.Inverse = 0x7f13002a
+hanson.xyz.vpnhotspotmod:color/design_default_color_on_primary = 0x7f060055
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_time_selector_unselected_label_text_color = 0x7f0d016b
+hanson.xyz.vpnhotspotmod:color/bright_foreground_material_light = 0x7f060026
+hanson.xyz.vpnhotspotmod:layout/mtrl_picker_header_dialog = 0x7f0c006d
+hanson.xyz.vpnhotspotmod:attr/textAppearanceListItemSecondary = 0x7f040459
+hanson.xyz.vpnhotspotmod:color/bright_foreground_material_dark = 0x7f060025
+hanson.xyz.vpnhotspotmod:layout/select_dialog_singlechoice_material = 0x7f0c0091
+hanson.xyz.vpnhotspotmod:attr/itemStrokeWidth = 0x7f04025a
+hanson.xyz.vpnhotspotmod:styleable/CheckedTextView = 0x7f140020
+hanson.xyz.vpnhotspotmod:attr/suggestionRowLayout = 0x7f040411
+hanson.xyz.vpnhotspotmod:color/bright_foreground_inverse_material_light = 0x7f060024
+hanson.xyz.vpnhotspotmod:attr/logo = 0x7f0402c4
+hanson.xyz.vpnhotspotmod:id/onAttachStateChangeListener = 0x7f09016b
+hanson.xyz.vpnhotspotmod:attr/maxVelocity = 0x7f040303
+hanson.xyz.vpnhotspotmod:color/background_material_dark = 0x7f06001f
+hanson.xyz.vpnhotspotmod:attr/trackDecorationTintMode = 0x7f0404af
+hanson.xyz.vpnhotspotmod:color/androidx_core_ripple_material_light = 0x7f06001b
+hanson.xyz.vpnhotspotmod:color/abc_tint_spinner = 0x7f060017
+hanson.xyz.vpnhotspotmod:color/abc_tint_default = 0x7f060014
+hanson.xyz.vpnhotspotmod:dimen/material_font_2_0_box_collapsed_padding_top = 0x7f070239
+hanson.xyz.vpnhotspotmod:color/common_google_signin_btn_text_light_disabled = 0x7f06003d
+hanson.xyz.vpnhotspotmod:color/abc_tint_btn_checkable = 0x7f060013
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_on_background = 0x7f0601b4
+hanson.xyz.vpnhotspotmod:attr/extendedFloatingActionButtonSecondaryStyle = 0x7f0401c5
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f1302ec
+hanson.xyz.vpnhotspotmod:attr/selectableItemBackground = 0x7f0403b6
+hanson.xyz.vpnhotspotmod:color/abc_secondary_text_material_light = 0x7f060012
+hanson.xyz.vpnhotspotmod:id/material_clock_display_and_toggle = 0x7f090117
+hanson.xyz.vpnhotspotmod:color/material_dynamic_secondary90 = 0x7f060263
+hanson.xyz.vpnhotspotmod:color/abc_search_url_text_selected = 0x7f060010
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_22 = 0x7f090020
+hanson.xyz.vpnhotspotmod:attr/textAppearanceTitleMedium = 0x7f040463
+hanson.xyz.vpnhotspotmod:attr/homeAsUpIndicator = 0x7f040222
+hanson.xyz.vpnhotspotmod:attr/drawPath = 0x7f040181
+hanson.xyz.vpnhotspotmod:attr/imageAspectRatio = 0x7f040231
+hanson.xyz.vpnhotspotmod:attr/motionDurationLong2 = 0x7f04031b
+hanson.xyz.vpnhotspotmod:attr/trackCornerRadius = 0x7f0404ac
+hanson.xyz.vpnhotspotmod:id/interfaces = 0x7f0900f7
+hanson.xyz.vpnhotspotmod:color/abc_search_url_text_pressed = 0x7f06000f
+hanson.xyz.vpnhotspotmod:color/m3_card_ripple_color = 0x7f06007f
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral94 = 0x7f060128
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_bar_container_elevation = 0x7f07013d
+hanson.xyz.vpnhotspotmod:layout/mtrl_calendar_year = 0x7f0c0066
+hanson.xyz.vpnhotspotmod:color/abc_hint_foreground_material_dark = 0x7f060007
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.MaterialComponents = 0x7f130131
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_checked_unchecked__0 = 0x7f080011
+hanson.xyz.vpnhotspotmod:attr/colorOnContainerUnchecked = 0x7f0400f2
+hanson.xyz.vpnhotspotmod:color/abc_decor_view_status_guard_light = 0x7f060006
+hanson.xyz.vpnhotspotmod:color/mtrl_indicator_text_color = 0x7f0602e1
+hanson.xyz.vpnhotspotmod:color/material_dynamic_primary0 = 0x7f06024c
+hanson.xyz.vpnhotspotmod:color/abc_background_cache_hint_selector_material_light = 0x7f060001
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.NoActionBar = 0x7f130246
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_standard_decelerate_control_y2 = 0x7f070216
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.Material3.SearchBar = 0x7f1301ae
+hanson.xyz.vpnhotspotmod:attr/toolbarSurfaceStyle = 0x7f04049f
+hanson.xyz.vpnhotspotmod:bool/mtrl_btn_textappearance_all_caps = 0x7f050005
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_state_pressed_state_layer_opacity = 0x7f07021a
+hanson.xyz.vpnhotspotmod:attr/buttonIconDimen = 0x7f040092
+hanson.xyz.vpnhotspotmod:attr/materialIconButtonOutlinedStyle = 0x7f0402ef
+hanson.xyz.vpnhotspotmod:id/marquee = 0x7f090113
+hanson.xyz.vpnhotspotmod:attr/endIconTintMode = 0x7f0401a7
+hanson.xyz.vpnhotspotmod:styleable/Tooltip = 0x7f1400a4
+hanson.xyz.vpnhotspotmod:styleable/RangeSlider = 0x7f14007e
+hanson.xyz.vpnhotspotmod:bool/is_day = 0x7f050004
+hanson.xyz.vpnhotspotmod:drawable/m3_popupmenu_background_overlay = 0x7f0800d9
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.HeaderCancelButton = 0x7f1303be
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_on_tertiary_fixed_variant = 0x7f060203
+hanson.xyz.vpnhotspotmod:attr/colorSurface = 0x7f040115
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_primary70 = 0x7f0600e9
+hanson.xyz.vpnhotspotmod:bool/api_ge_30 = 0x7f050002
+hanson.xyz.vpnhotspotmod:attr/switchPreferenceStyle = 0x7f040419
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat = 0x7f13004f
+hanson.xyz.vpnhotspotmod:string/clients_mac_lookup_unexpected_error = 0x7f12002f
+hanson.xyz.vpnhotspotmod:id/open_search_bar_text_view = 0x7f09016d
+hanson.xyz.vpnhotspotmod:bool/abc_action_bar_embed_tabs = 0x7f050000
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Compat.Notification.Line2 = 0x7f1301eb
+hanson.xyz.vpnhotspotmod:attr/actionBarTabStyle = 0x7f040007
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_primary60 = 0x7f0600e8
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.Material3.Corner.None = 0x7f130199
+hanson.xyz.vpnhotspotmod:attr/dragScale = 0x7f04017f
+hanson.xyz.vpnhotspotmod:attr/windowNoTitle = 0x7f0404d8
+hanson.xyz.vpnhotspotmod:style/Base.V24.Theme.Material3.Dark.Dialog = 0x7f1300b6
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.MaterialComponents.Badge = 0x7f130048
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_extra_long3 = 0x7f0a0012
+hanson.xyz.vpnhotspotmod:attr/windowFixedWidthMinor = 0x7f0404d5
+hanson.xyz.vpnhotspotmod:attr/windowFixedWidthMajor = 0x7f0404d4
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral50 = 0x7f060238
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_secondary_fixed = 0x7f0601d8
+hanson.xyz.vpnhotspotmod:color/m3_switch_track_tint = 0x7f060169
+hanson.xyz.vpnhotspotmod:attr/windowFixedHeightMajor = 0x7f0404d2
+hanson.xyz.vpnhotspotmod:attr/panelBackground = 0x7f04035c
+hanson.xyz.vpnhotspotmod:attr/itemMinHeight = 0x7f04024c
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_surface_bright = 0x7f0601a4
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_range_header_selected = 0x7f1200be
+hanson.xyz.vpnhotspotmod:layout/dialog_nickname = 0x7f0c002f
+hanson.xyz.vpnhotspotmod:attr/windowActionBarOverlay = 0x7f0404d0
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral_variant50 = 0x7f060133
+hanson.xyz.vpnhotspotmod:animator/mtrl_extended_fab_hide_motion_spec = 0x7f02001b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_button_hover_outline_color = 0x7f0d00a8
+hanson.xyz.vpnhotspotmod:attr/wavePeriod = 0x7f0404cb
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_tertiary10 = 0x7f0600fc
+hanson.xyz.vpnhotspotmod:attr/actionMenuTextColor = 0x7f04000f
+hanson.xyz.vpnhotspotmod:attr/waveOffset = 0x7f0404ca
+hanson.xyz.vpnhotspotmod:attr/colorControlNormal = 0x7f0400ed
+hanson.xyz.vpnhotspotmod:attr/arcMode = 0x7f04003c
+hanson.xyz.vpnhotspotmod:attr/indeterminateProgressStyle = 0x7f040235
+hanson.xyz.vpnhotspotmod:layout/listitem_client = 0x7f0c003f
+hanson.xyz.vpnhotspotmod:attr/materialButtonToggleGroupStyle = 0x7f0402d4
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_content_padding = 0x7f070272
+hanson.xyz.vpnhotspotmod:attr/waveDecay = 0x7f0404c9
+hanson.xyz.vpnhotspotmod:id/mtrl_picker_text_input_range_end = 0x7f09014e
+hanson.xyz.vpnhotspotmod:attr/colorTertiaryFixed = 0x7f040122
+hanson.xyz.vpnhotspotmod:attr/itemShapeInsetEnd = 0x7f040255
+hanson.xyz.vpnhotspotmod:attr/warmth = 0x7f0404c8
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_switch_thumb_checked_pressed__0 = 0x7f080021
+hanson.xyz.vpnhotspotmod:color/abc_btn_colored_borderless_text_material = 0x7f060002
+hanson.xyz.vpnhotspotmod:interpolator/m3_sys_motion_easing_standard = 0x7f0b000b
+hanson.xyz.vpnhotspotmod:animator/m3_btn_state_list_anim = 0x7f02000b
+hanson.xyz.vpnhotspotmod:attr/subheaderColor = 0x7f040404
+hanson.xyz.vpnhotspotmod:attr/verticalOffset = 0x7f0404c3
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_pressed_handle_color = 0x7f0d012b
+hanson.xyz.vpnhotspotmod:attr/colorOnTertiaryFixedVariant = 0x7f040104
+hanson.xyz.vpnhotspotmod:dimen/mtrl_exposed_dropdown_menu_popup_vertical_offset = 0x7f0702a1
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.Material3.Corner.ExtraLarge = 0x7f130194
+hanson.xyz.vpnhotspotmod:attr/materialThemeOverlay = 0x7f0402f7
+hanson.xyz.vpnhotspotmod:color/design_default_color_primary_dark = 0x7f060059
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Dialog.MinWidth.Bridge = 0x7f130283
+hanson.xyz.vpnhotspotmod:attr/useCompatPadding = 0x7f0404be
+hanson.xyz.vpnhotspotmod:attr/updatesContinuously = 0x7f0404bd
+hanson.xyz.vpnhotspotmod:dimen/m3_chip_icon_size = 0x7f0700fc
+hanson.xyz.vpnhotspotmod:attr/fabAlignmentMode = 0x7f0401ca
+hanson.xyz.vpnhotspotmod:attr/transitionShapeAppearance = 0x7f0404b8
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_state_dragged_state_layer_opacity = 0x7f070217
+hanson.xyz.vpnhotspotmod:attr/transitionPathRotate = 0x7f0404b7
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.MaterialComponents.LargeComponent = 0x7f1301a2
+hanson.xyz.vpnhotspotmod:attr/transitionEasing = 0x7f0404b5
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_rail_default_width = 0x7f0701c6
+hanson.xyz.vpnhotspotmod:macro/m3_comp_text_button_hover_state_layer_color = 0x7f0d0144
+hanson.xyz.vpnhotspotmod:attr/contentInsetEndWithActions = 0x7f04012e
+hanson.xyz.vpnhotspotmod:attr/trackDecorationTint = 0x7f0404ae
+hanson.xyz.vpnhotspotmod:dimen/notification_large_icon_height = 0x7f07030c
+hanson.xyz.vpnhotspotmod:attr/bottomAppBarStyle = 0x7f040078
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_track_color = 0x7f0d012f
+hanson.xyz.vpnhotspotmod:attr/trackColorInactive = 0x7f0404ab
+hanson.xyz.vpnhotspotmod:attr/trackColorActive = 0x7f0404aa
+hanson.xyz.vpnhotspotmod:attr/trackColor = 0x7f0404a9
+hanson.xyz.vpnhotspotmod:attr/cornerFamilyTopRight = 0x7f040143
+hanson.xyz.vpnhotspotmod:attr/track = 0x7f0404a8
+hanson.xyz.vpnhotspotmod:id/transition_position = 0x7f090212
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_fab_primary_large_icon_size = 0x7f070120
+hanson.xyz.vpnhotspotmod:attr/tickRadiusActive = 0x7f040486
+hanson.xyz.vpnhotspotmod:attr/touchAnchorSide = 0x7f0404a6
+hanson.xyz.vpnhotspotmod:attr/touchAnchorId = 0x7f0404a5
+hanson.xyz.vpnhotspotmod:attr/textInputOutlinedDenseStyle = 0x7f04046c
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral20 = 0x7f0600b6
+hanson.xyz.vpnhotspotmod:attr/helperText = 0x7f040215
+hanson.xyz.vpnhotspotmod:dimen/appcompat_dialog_background_inset = 0x7f070051
+hanson.xyz.vpnhotspotmod:attr/tooltipText = 0x7f0404a3
+hanson.xyz.vpnhotspotmod:dimen/m3_alert_dialog_title_bottom_margin = 0x7f0700a6
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_label_text_type = 0x7f0d0094
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_surface_bright = 0x7f0602a8
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.DarkActionBar = 0x7f130288
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__2 = 0x7f080017
+hanson.xyz.vpnhotspotmod:color/m3_timepicker_button_ripple_color = 0x7f060219
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral87 = 0x7f0600c1
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.Material3.AutoCompleteTextView = 0x7f130083
+hanson.xyz.vpnhotspotmod:attr/tabSecondaryStyle = 0x7f040434
+hanson.xyz.vpnhotspotmod:attr/touchRegionId = 0x7f0404a7
+hanson.xyz.vpnhotspotmod:attr/tooltipStyle = 0x7f0404a2
+hanson.xyz.vpnhotspotmod:attr/tooltipFrameBackground = 0x7f0404a1
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_caption_material = 0x7f070042
+hanson.xyz.vpnhotspotmod:color/m3_dynamic_dark_hint_foreground = 0x7f060092
+hanson.xyz.vpnhotspotmod:attr/tooltipForegroundColor = 0x7f0404a0
+hanson.xyz.vpnhotspotmod:style/Animation.AppCompat.Dialog = 0x7f130002
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral100 = 0x7f060234
+hanson.xyz.vpnhotspotmod:color/m3_button_outline_color_selector = 0x7f060079
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_linear_control_y2 = 0x7f07020a
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.AutoCompleteTextView.OutlinedBox = 0x7f130364
+hanson.xyz.vpnhotspotmod:dimen/mtrl_fab_min_touch_target = 0x7f0702b4
+hanson.xyz.vpnhotspotmod:id/triangle = 0x7f090215
+hanson.xyz.vpnhotspotmod:attr/toolbarStyle = 0x7f04049e
+hanson.xyz.vpnhotspotmod:drawable/$m3_avd_show_password__0 = 0x7f08000a
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral100 = 0x7f0600b3
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral20 = 0x7f06011a
+hanson.xyz.vpnhotspotmod:attr/toolbarNavigationButtonStyle = 0x7f04049d
+hanson.xyz.vpnhotspotmod:color/m3_tonal_button_ripple_color_selector = 0x7f060222
+hanson.xyz.vpnhotspotmod:string/bottomsheet_drag_handle_clicked = 0x7f120022
+hanson.xyz.vpnhotspotmod:attr/toggleCheckedStateOnClick = 0x7f04049b
+hanson.xyz.vpnhotspotmod:dimen/clock_face_margin_start = 0x7f070057
+hanson.xyz.vpnhotspotmod:color/m3_calendar_item_stroke_color = 0x7f06007d
+hanson.xyz.vpnhotspotmod:attr/drawableLeftCompat = 0x7f040184
+hanson.xyz.vpnhotspotmod:attr/titleTextStyle = 0x7f04049a
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Light.ActionBar.Solid = 0x7f1300e2
+hanson.xyz.vpnhotspotmod:attr/titleTextColor = 0x7f040498
+hanson.xyz.vpnhotspotmod:color/material_dynamic_primary90 = 0x7f060256
+hanson.xyz.vpnhotspotmod:attr/layout_goneMarginBottom = 0x7f0402a2
+hanson.xyz.vpnhotspotmod:array/settings_service_ip_monitor_values = 0x7f030001
+hanson.xyz.vpnhotspotmod:attr/titleMarginTop = 0x7f040494
+hanson.xyz.vpnhotspotmod:attr/firstBaselineToTopHeight = 0x7f0401da
+hanson.xyz.vpnhotspotmod:attr/tickVisible = 0x7f040488
+hanson.xyz.vpnhotspotmod:string/abc_searchview_description_clear = 0x7f120013
+hanson.xyz.vpnhotspotmod:attr/seekBarPreferenceStyle = 0x7f0403b3
+hanson.xyz.vpnhotspotmod:attr/titleMarginStart = 0x7f040493
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_secondary40 = 0x7f06014c
+hanson.xyz.vpnhotspotmod:dimen/m3_card_elevated_hovered_z = 0x7f0700ec
+hanson.xyz.vpnhotspotmod:attr/titleCollapseMode = 0x7f04048e
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_assist_chip_flat_outline_width = 0x7f070100
+hanson.xyz.vpnhotspotmod:style/Base.V14.Theme.Material3.Dark = 0x7f13008d
+hanson.xyz.vpnhotspotmod:attr/tintMode = 0x7f04048a
+hanson.xyz.vpnhotspotmod:id/month_navigation_fragment_toggle = 0x7f090136
+hanson.xyz.vpnhotspotmod:attr/boxStrokeColor = 0x7f040085
+hanson.xyz.vpnhotspotmod:attr/tint = 0x7f040489
+hanson.xyz.vpnhotspotmod:attr/textAppearanceSmallPopupMenu = 0x7f04045f
+hanson.xyz.vpnhotspotmod:attr/tickMark = 0x7f040483
+hanson.xyz.vpnhotspotmod:attr/thumbTintMode = 0x7f04047f
+hanson.xyz.vpnhotspotmod:interpolator/fast_out_slow_in = 0x7f0b0006
+hanson.xyz.vpnhotspotmod:drawable/material_ic_keyboard_arrow_next_black_24dp = 0x7f0800e5
+hanson.xyz.vpnhotspotmod:integer/preferences_detail_pane_weight = 0x7f0a0043
+hanson.xyz.vpnhotspotmod:attr/dialogPreferredPadding = 0x7f040171
+hanson.xyz.vpnhotspotmod:attr/thumbTextPadding = 0x7f04047d
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_max_width = 0x7f0700db
+hanson.xyz.vpnhotspotmod:attr/counterOverflowTextAppearance = 0x7f04014c
+hanson.xyz.vpnhotspotmod:attr/tabIndicatorHeight = 0x7f040429
+hanson.xyz.vpnhotspotmod:attr/thumbIconTintMode = 0x7f040479
+hanson.xyz.vpnhotspotmod:id/groups = 0x7f0900e3
+hanson.xyz.vpnhotspotmod:attr/thumbIconSize = 0x7f040477
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_icon_color = 0x7f0d013b
+hanson.xyz.vpnhotspotmod:attr/ttcIndex = 0x7f0404bc
+hanson.xyz.vpnhotspotmod:attr/behavior_significantVelocityThreshold = 0x7f040074
+hanson.xyz.vpnhotspotmod:attr/thickness = 0x7f040473
+hanson.xyz.vpnhotspotmod:attr/titleMarginBottom = 0x7f040491
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_legacy_control_x2 = 0x7f070200
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_text_secondary_and_tertiary_inverse = 0x7f0602b6
+hanson.xyz.vpnhotspotmod:attr/textInputOutlinedStyle = 0x7f04046e
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Chip.Input.Icon = 0x7f13038e
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.AppCompat = 0x7f13007c
+hanson.xyz.vpnhotspotmod:attr/mock_showDiagonals = 0x7f040313
+hanson.xyz.vpnhotspotmod:attr/textInputFilledDenseStyle = 0x7f040468
+hanson.xyz.vpnhotspotmod:attr/preferenceCategoryTitleTextAppearance = 0x7f040384
+hanson.xyz.vpnhotspotmod:attr/textAppearanceTitleLarge = 0x7f040462
+hanson.xyz.vpnhotspotmod:id/switchWidget = 0x7f0901e3
+hanson.xyz.vpnhotspotmod:dimen/m3_fab_border_width = 0x7f0701b2
+hanson.xyz.vpnhotspotmod:attr/bottomNavigationStyle = 0x7f04007a
+hanson.xyz.vpnhotspotmod:attr/textAppearanceSubtitle1 = 0x7f040460
+hanson.xyz.vpnhotspotmod:color/m3_tabs_icon_color = 0x7f06020a
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_secondary0 = 0x7f0600ee
+hanson.xyz.vpnhotspotmod:attr/percentHeight = 0x7f040366
+hanson.xyz.vpnhotspotmod:attr/motionDurationExtraLong1 = 0x7f040316
+hanson.xyz.vpnhotspotmod:color/foreground_material_light = 0x7f06006f
+hanson.xyz.vpnhotspotmod:attr/textAppearancePopupMenuHeader = 0x7f04045c
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.BottomSheetDialog = 0x7f13026d
+hanson.xyz.vpnhotspotmod:attr/activityAction = 0x7f040025
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filter_chip_elevated_container_elevation = 0x7f070130
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Tooltip = 0x7f1301d5
+hanson.xyz.vpnhotspotmod:attr/height = 0x7f040214
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Light.Dialog = 0x7f130076
+hanson.xyz.vpnhotspotmod:attr/placeholderTextColor = 0x7f040370
+hanson.xyz.vpnhotspotmod:drawable/m3_bottom_sheet_drag_handle = 0x7f0800d7
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral90 = 0x7f0600c2
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_text_input_date_range_end_hint = 0x7f1200c4
+hanson.xyz.vpnhotspotmod:attr/dropdownListPreferredItemHeight = 0x7f040190
+hanson.xyz.vpnhotspotmod:attr/paddingLeftSystemWindowInsets = 0x7f040356
+hanson.xyz.vpnhotspotmod:color/design_fab_shadow_start_color = 0x7f060061
+hanson.xyz.vpnhotspotmod:attr/layout_constraintDimensionRatio = 0x7f04027f
+hanson.xyz.vpnhotspotmod:dimen/mtrl_tooltip_arrowSize = 0x7f070302
+hanson.xyz.vpnhotspotmod:interpolator/mtrl_linear_out_slow_in = 0x7f0b0011
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral_variant40 = 0x7f060244
+hanson.xyz.vpnhotspotmod:attr/textAppearanceLineHeightEnabled = 0x7f040457
+hanson.xyz.vpnhotspotmod:attr/textAppearanceLabelSmall = 0x7f040455
+hanson.xyz.vpnhotspotmod:anim/m3_motion_fade_exit = 0x7f010025
+hanson.xyz.vpnhotspotmod:attr/crossfade = 0x7f040150
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Title.Inverse = 0x7f130034
+hanson.xyz.vpnhotspotmod:id/checkbox = 0x7f090081
+hanson.xyz.vpnhotspotmod:attr/textColorSearchUrl = 0x7f040466
+hanson.xyz.vpnhotspotmod:style/Base.V26.Theme.AppCompat.Light = 0x7f1300ba
+hanson.xyz.vpnhotspotmod:attr/nestedScrollViewStyle = 0x7f040344
+hanson.xyz.vpnhotspotmod:attr/textAppearanceLabelLarge = 0x7f040453
+hanson.xyz.vpnhotspotmod:attr/flow_horizontalBias = 0x7f0401ef
+hanson.xyz.vpnhotspotmod:attr/textAppearanceHeadlineSmall = 0x7f040452
+hanson.xyz.vpnhotspotmod:dimen/design_tab_text_size_2line = 0x7f07008e
+hanson.xyz.vpnhotspotmod:color/m3_text_button_ripple_color_selector = 0x7f060212
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Dark.ActionBar = 0x7f1302b7
+hanson.xyz.vpnhotspotmod:animator/fragment_fade_enter = 0x7f020005
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_primary0 = 0x7f0600e1
+hanson.xyz.vpnhotspotmod:attr/behavior_draggable = 0x7f04006c
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Dark.DialogWhenLarge = 0x7f130252
+hanson.xyz.vpnhotspotmod:string/error_icon_content_description = 0x7f12005e
+hanson.xyz.vpnhotspotmod:attr/textAppearanceHeadlineMedium = 0x7f040451
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_primary20 = 0x7f0600e4
+hanson.xyz.vpnhotspotmod:attr/waveShape = 0x7f0404cc
+hanson.xyz.vpnhotspotmod:attr/pref_dialogMarginHorizontal = 0x7f040379
+hanson.xyz.vpnhotspotmod:interpolator/mtrl_linear = 0x7f0b0010
+hanson.xyz.vpnhotspotmod:attr/textAppearanceHeadline5 = 0x7f04044e
+hanson.xyz.vpnhotspotmod:layout/material_textinput_timepicker = 0x7f0c0050
+hanson.xyz.vpnhotspotmod:id/tag_window_insets_animation_callback = 0x7f0901f1
+hanson.xyz.vpnhotspotmod:id/month_navigation_next = 0x7f090137
+hanson.xyz.vpnhotspotmod:attr/textAppearanceHeadline4 = 0x7f04044d
+hanson.xyz.vpnhotspotmod:id/mtrl_picker_text_input_range_start = 0x7f09014f
+hanson.xyz.vpnhotspotmod:attr/textAppearanceHeadline2 = 0x7f04044b
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_time_selector_container_shape = 0x7f0d015f
+hanson.xyz.vpnhotspotmod:attr/layout_constraintBaseline_toBaselineOf = 0x7f040278
+hanson.xyz.vpnhotspotmod:attr/tabGravity = 0x7f040420
+hanson.xyz.vpnhotspotmod:dimen/mtrl_slider_track_height = 0x7f0702e9
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_error95 = 0x7f060113
+hanson.xyz.vpnhotspotmod:attr/textAppearanceDisplaySmall = 0x7f040449
+hanson.xyz.vpnhotspotmod:color/design_dark_default_color_secondary_variant = 0x7f06004f
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.DayOfWeekLabel = 0x7f13043e
+hanson.xyz.vpnhotspotmod:attr/textAppearanceDisplayMedium = 0x7f040448
+hanson.xyz.vpnhotspotmod:attr/indicatorDirectionCircular = 0x7f040237
+hanson.xyz.vpnhotspotmod:attr/textAppearanceCaption = 0x7f040446
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_day_corner = 0x7f070273
+hanson.xyz.vpnhotspotmod:anim/m3_side_sheet_exit_to_right = 0x7f010029
+hanson.xyz.vpnhotspotmod:attr/checkedChip = 0x7f0400ac
+hanson.xyz.vpnhotspotmod:attr/textAppearanceBody2 = 0x7f040441
+hanson.xyz.vpnhotspotmod:attr/fabSize = 0x7f0401d2
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.Light = 0x7f1302f3
+hanson.xyz.vpnhotspotmod:attr/tickMarkTint = 0x7f040484
+hanson.xyz.vpnhotspotmod:attr/textAllCaps = 0x7f04043f
+hanson.xyz.vpnhotspotmod:attr/colorSurfaceInverse = 0x7f04011d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_assist_chip_label_text_type = 0x7f0d0001
+hanson.xyz.vpnhotspotmod:attr/textAppearanceHeadlineLarge = 0x7f040450
+hanson.xyz.vpnhotspotmod:interpolator/m3_sys_motion_easing_emphasized_decelerate = 0x7f0b0009
+hanson.xyz.vpnhotspotmod:id/jumpToStart = 0x7f0900fe
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_drawer_modal_container_elevation = 0x7f070147
+hanson.xyz.vpnhotspotmod:color/material_dynamic_secondary80 = 0x7f060262
+hanson.xyz.vpnhotspotmod:attr/closeIconEnabled = 0x7f0400d4
+hanson.xyz.vpnhotspotmod:attr/telltales_velocityMode = 0x7f04043e
+hanson.xyz.vpnhotspotmod:color/material_divider_color = 0x7f060229
+hanson.xyz.vpnhotspotmod:color/m3_navigation_bar_item_with_indicator_label_tint = 0x7f0600a3
+hanson.xyz.vpnhotspotmod:attr/drawableTopCompat = 0x7f04018a
+hanson.xyz.vpnhotspotmod:attr/motionDurationLong3 = 0x7f04031c
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_drawer_pressed_state_layer_opacity = 0x7f070148
+hanson.xyz.vpnhotspotmod:attr/initialExpandedChildrenCount = 0x7f04023c
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DialogWhenLarge = 0x7f130284
+hanson.xyz.vpnhotspotmod:attr/targetId = 0x7f04043b
+hanson.xyz.vpnhotspotmod:attr/tabTextColor = 0x7f040439
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_rail_compact_width = 0x7f0702c9
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.AutoCompleteTextView = 0x7f1300d0
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_navigation_height = 0x7f070065
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActionBar.TabText = 0x7f130328
+hanson.xyz.vpnhotspotmod:attr/errorTextAppearance = 0x7f0401b5
+hanson.xyz.vpnhotspotmod:drawable/abc_btn_radio_material_anim = 0x7f080033
+hanson.xyz.vpnhotspotmod:attr/tabTextAppearance = 0x7f040438
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_on_primary = 0x7f060195
+hanson.xyz.vpnhotspotmod:id/dragRight = 0x7f0900b9
+hanson.xyz.vpnhotspotmod:attr/gestureInsetBottomIgnored = 0x7f04020f
+hanson.xyz.vpnhotspotmod:dimen/mtrl_alert_dialog_background_inset_top = 0x7f070246
+hanson.xyz.vpnhotspotmod:attr/tabStyle = 0x7f040437
+hanson.xyz.vpnhotspotmod:string/repeater_wps_dialog_pbc = 0x7f1200fc
+hanson.xyz.vpnhotspotmod:drawable/ic_call_answer_low = 0x7f0800af
+hanson.xyz.vpnhotspotmod:attr/materialCircleRadius = 0x7f0402e8
+hanson.xyz.vpnhotspotmod:attr/tabSelectedTextColor = 0x7f040436
+hanson.xyz.vpnhotspotmod:string/settings_service_temp_hotspot_use_system_summary = 0x7f120126
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_search_bar_container_elevation = 0x7f070170
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_surface_container_high = 0x7f0601f6
+hanson.xyz.vpnhotspotmod:macro/m3_comp_top_app_bar_small_leading_icon_color = 0x7f0d0173
+hanson.xyz.vpnhotspotmod:attr/tabSelectedTextAppearance = 0x7f040435
+hanson.xyz.vpnhotspotmod:attr/buttonPanelSideLayout = 0x7f040095
+hanson.xyz.vpnhotspotmod:string/fab_transformation_scrim_behavior = 0x7f120062
+hanson.xyz.vpnhotspotmod:color/design_default_color_background = 0x7f060051
+hanson.xyz.vpnhotspotmod:id/configuration = 0x7f09008d
+hanson.xyz.vpnhotspotmod:attr/paddingBottomSystemWindowInsets = 0x7f040354
+hanson.xyz.vpnhotspotmod:dimen/design_navigation_icon_size = 0x7f070079
+hanson.xyz.vpnhotspotmod:attr/trackTintMode = 0x7f0404b3
+hanson.xyz.vpnhotspotmod:attr/layout_constraintWidth_max = 0x7f04029c
+hanson.xyz.vpnhotspotmod:dimen/design_tab_scrollable_min_width = 0x7f07008c
+hanson.xyz.vpnhotspotmod:dimen/abc_action_button_min_width_overflow_material = 0x7f07000f
+hanson.xyz.vpnhotspotmod:styleable/MaterialCardView = 0x7f140059
+hanson.xyz.vpnhotspotmod:id/ifRoom = 0x7f0900f1
+hanson.xyz.vpnhotspotmod:attr/tabRippleColor = 0x7f040433
+hanson.xyz.vpnhotspotmod:attr/chipIcon = 0x7f0400ba
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant98 = 0x7f0600df
+hanson.xyz.vpnhotspotmod:id/material_minute_tv = 0x7f090122
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_drawer_container_width = 0x7f070143
+hanson.xyz.vpnhotspotmod:attr/tabPaddingTop = 0x7f040432
+hanson.xyz.vpnhotspotmod:color/bright_foreground_disabled_material_dark = 0x7f060021
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_outlined_text_field_disabled_label_text_opacity = 0x7f07015b
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filter_chip_flat_container_elevation = 0x7f070131
+hanson.xyz.vpnhotspotmod:attr/tabPaddingBottom = 0x7f04042f
+hanson.xyz.vpnhotspotmod:attr/indicatorDirectionLinear = 0x7f040238
+hanson.xyz.vpnhotspotmod:attr/counterTextAppearance = 0x7f04014e
+hanson.xyz.vpnhotspotmod:attr/tabMode = 0x7f04042d
+hanson.xyz.vpnhotspotmod:color/abc_hint_foreground_material_light = 0x7f060008
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_surface_container_high = 0x7f0601a6
+hanson.xyz.vpnhotspotmod:attr/tabMaxWidth = 0x7f04042b
+hanson.xyz.vpnhotspotmod:styleable/PreferenceGroup = 0x7f140079
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_item_shape_vertical_margin = 0x7f0702c7
+hanson.xyz.vpnhotspotmod:attr/textLocale = 0x7f040470
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense = 0x7f13046e
+hanson.xyz.vpnhotspotmod:attr/tabIndicatorGravity = 0x7f040428
+hanson.xyz.vpnhotspotmod:drawable/ic_action_settings_input_antenna = 0x7f0800a5
+hanson.xyz.vpnhotspotmod:attr/windowMinWidthMinor = 0x7f0404d7
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_year_horizontal_padding = 0x7f070295
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_text_field_error_supporting_text_color = 0x7f0d004f
+hanson.xyz.vpnhotspotmod:attr/tabIndicatorColor = 0x7f040426
+hanson.xyz.vpnhotspotmod:animator/m3_extended_fab_state_list_animator = 0x7f020014
+hanson.xyz.vpnhotspotmod:attr/customNavigationLayout = 0x7f04015b
+hanson.xyz.vpnhotspotmod:attr/tabIconTint = 0x7f040421
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.SearchView.ActionBar = 0x7f130347
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.RatingBar = 0x7f130343
+hanson.xyz.vpnhotspotmod:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup = 0x7f13016e
+hanson.xyz.vpnhotspotmod:attr/textAppearanceHeadline1 = 0x7f04044a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_text_button_label_text_type = 0x7f0d0146
+hanson.xyz.vpnhotspotmod:attr/buttonBarNegativeButtonStyle = 0x7f04008b
+hanson.xyz.vpnhotspotmod:dimen/m3_back_progress_bottom_container_max_scale_x_distance = 0x7f0700af
+hanson.xyz.vpnhotspotmod:attr/tabIndicatorAnimationDuration = 0x7f040424
+hanson.xyz.vpnhotspotmod:attr/tabContentStart = 0x7f04041f
+hanson.xyz.vpnhotspotmod:attr/colorErrorContainer = 0x7f0400ef
+hanson.xyz.vpnhotspotmod:attr/switchTextOn = 0x7f04041d
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_standard_decelerate_control_x2 = 0x7f070214
+hanson.xyz.vpnhotspotmod:attr/framePosition = 0x7f04020d
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Dialog.Alert = 0x7f13027d
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.Material3.Search = 0x7f130047
+hanson.xyz.vpnhotspotmod:attr/customColorValue = 0x7f040157
+hanson.xyz.vpnhotspotmod:attr/helperTextEnabled = 0x7f040216
+hanson.xyz.vpnhotspotmod:attr/switchTextOff = 0x7f04041c
+hanson.xyz.vpnhotspotmod:attr/autoTransition = 0x7f040048
+hanson.xyz.vpnhotspotmod:attr/navigationContentDescription = 0x7f04033c
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_header_text_padding = 0x7f070281
+hanson.xyz.vpnhotspotmod:attr/nestedScrollFlags = 0x7f040343
+hanson.xyz.vpnhotspotmod:drawable/ic_device_usb = 0x7f0800bd
+hanson.xyz.vpnhotspotmod:attr/singleChoiceItemLayout = 0x7f0403d9
+hanson.xyz.vpnhotspotmod:attr/switchPreferenceCompatStyle = 0x7f040418
+hanson.xyz.vpnhotspotmod:dimen/abc_action_bar_subtitle_top_margin_material = 0x7f07000c
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.PopupMenu.Overflow = 0x7f1303df
+hanson.xyz.vpnhotspotmod:attr/switchMinWidth = 0x7f040416
+hanson.xyz.vpnhotspotmod:id/textEnd = 0x7f0901f4
+hanson.xyz.vpnhotspotmod:attr/drawableTintMode = 0x7f040189
+hanson.xyz.vpnhotspotmod:attr/summary = 0x7f040412
+hanson.xyz.vpnhotspotmod:attr/endIconCheckable = 0x7f0401a0
+hanson.xyz.vpnhotspotmod:attr/textEndPadding = 0x7f040467
+hanson.xyz.vpnhotspotmod:color/abc_secondary_text_material_dark = 0x7f060011
+hanson.xyz.vpnhotspotmod:color/abc_primary_text_disable_only_material_light = 0x7f06000a
+hanson.xyz.vpnhotspotmod:attr/transitionDisable = 0x7f0404b4
+hanson.xyz.vpnhotspotmod:attr/subtitleTextStyle = 0x7f04040d
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_date_header_selected = 0x7f1200b0
+hanson.xyz.vpnhotspotmod:plurals/tethering_manage_wifi_clients = 0x7f100008
+hanson.xyz.vpnhotspotmod:attr/yearTodayStyle = 0x7f0404db
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_outline_variant = 0x7f0601ee
+hanson.xyz.vpnhotspotmod:color/m3_dark_hint_foreground = 0x7f06008b
+hanson.xyz.vpnhotspotmod:attr/sliderStyle = 0x7f0403de
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonLargeSecondaryStyle = 0x7f0401dc
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.ExtendedFloatingActionButton.Icon.Primary = 0x7f13039f
+hanson.xyz.vpnhotspotmod:string/abc_menu_function_shortcut_label = 0x7f12000c
+hanson.xyz.vpnhotspotmod:color/material_on_primary_disabled = 0x7f060281
+hanson.xyz.vpnhotspotmod:string/mtrl_checkbox_button_path_checked = 0x7f12009f
+hanson.xyz.vpnhotspotmod:color/m3_tabs_text_color_secondary = 0x7f06020f
+hanson.xyz.vpnhotspotmod:attr/subtitleCentered = 0x7f04040a
+hanson.xyz.vpnhotspotmod:attr/telltales_tailColor = 0x7f04043c
+hanson.xyz.vpnhotspotmod:attr/cursorColor = 0x7f040152
+hanson.xyz.vpnhotspotmod:color/m3_default_color_secondary_text = 0x7f06008e
+hanson.xyz.vpnhotspotmod:attr/preferenceStyle = 0x7f04038b
+hanson.xyz.vpnhotspotmod:attr/statusBarScrim = 0x7f040400
+hanson.xyz.vpnhotspotmod:string/tethering_state_monitored = 0x7f12014f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_pressed_track_outline_color = 0x7f0d0140
+hanson.xyz.vpnhotspotmod:attr/statusBarForeground = 0x7f0403ff
+hanson.xyz.vpnhotspotmod:layout/material_timepicker_textinput_display = 0x7f0c0055
+hanson.xyz.vpnhotspotmod:animator/fragment_open_exit = 0x7f020008
+hanson.xyz.vpnhotspotmod:attr/statusBarBackground = 0x7f0403fe
+hanson.xyz.vpnhotspotmod:attr/motion_triggerOnCollision = 0x7f040339
+hanson.xyz.vpnhotspotmod:attr/compatShadowEnabled = 0x7f040125
+hanson.xyz.vpnhotspotmod:layout/preference_simplemenu = 0x7f0c0087
+hanson.xyz.vpnhotspotmod:attr/daySelectedStyle = 0x7f04015f
+hanson.xyz.vpnhotspotmod:string/abc_searchview_description_submit = 0x7f120016
+hanson.xyz.vpnhotspotmod:attr/state_liftable = 0x7f0403fb
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Body1 = 0x7f1301ba
+hanson.xyz.vpnhotspotmod:dimen/material_filled_edittext_font_1_3_padding_top = 0x7f070235
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TextInputLayout.FilledBox = 0x7f1303f7
+hanson.xyz.vpnhotspotmod:string/bottomsheet_drag_handle_content_description = 0x7f120023
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_view_divider_color = 0x7f0d00f3
+hanson.xyz.vpnhotspotmod:drawable/googleg_standard_color_18 = 0x7f08009b
+hanson.xyz.vpnhotspotmod:color/mtrl_navigation_item_icon_tint = 0x7f0602e7
+hanson.xyz.vpnhotspotmod:id/fixed = 0x7f0900d6
+hanson.xyz.vpnhotspotmod:attr/contentPaddingTop = 0x7f040139
+hanson.xyz.vpnhotspotmod:macro/m3_comp_top_app_bar_small_headline_type = 0x7f0d0172
+hanson.xyz.vpnhotspotmod:attr/state_error = 0x7f0403f9
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.Light.Dialog.Alert = 0x7f130242
+hanson.xyz.vpnhotspotmod:attr/fabCradleRoundedCornerRadius = 0x7f0401cf
+hanson.xyz.vpnhotspotmod:animator/m3_card_elevated_state_list_anim = 0x7f02000c
+hanson.xyz.vpnhotspotmod:attr/tabPaddingEnd = 0x7f040430
+hanson.xyz.vpnhotspotmod:layout/abc_alert_dialog_material = 0x7f0c0009
+hanson.xyz.vpnhotspotmod:dimen/abc_control_inset_material = 0x7f070019
+hanson.xyz.vpnhotspotmod:attr/color = 0x7f0400e6
+hanson.xyz.vpnhotspotmod:attr/colorOnError = 0x7f0400f3
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Caption = 0x7f13001e
+hanson.xyz.vpnhotspotmod:attr/state_above_anchor = 0x7f0403f5
+hanson.xyz.vpnhotspotmod:attr/tickColorActive = 0x7f040481
+hanson.xyz.vpnhotspotmod:attr/startIconScaleType = 0x7f0403f2
+hanson.xyz.vpnhotspotmod:attr/startIconDrawable = 0x7f0403f0
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_error = 0x7f0601af
+hanson.xyz.vpnhotspotmod:attr/startIconContentDescription = 0x7f0403ef
+hanson.xyz.vpnhotspotmod:attr/behavior_autoHide = 0x7f04006a
+hanson.xyz.vpnhotspotmod:attr/staggered = 0x7f0403ed
+hanson.xyz.vpnhotspotmod:attr/srcCompat = 0x7f0403eb
+hanson.xyz.vpnhotspotmod:id/embed = 0x7f0900c4
+hanson.xyz.vpnhotspotmod:attr/splitRatio = 0x7f0403e9
+hanson.xyz.vpnhotspotmod:attr/backgroundInsetEnd = 0x7f04004d
+hanson.xyz.vpnhotspotmod:dimen/abc_button_inset_vertical_material = 0x7f070013
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.MaterialComponents.Body.Text = 0x7f130132
+hanson.xyz.vpnhotspotmod:string/abc_prepend_shortcut_label = 0x7f120011
+hanson.xyz.vpnhotspotmod:attr/splitMinSmallestWidth = 0x7f0403e7
+hanson.xyz.vpnhotspotmod:attr/flow_padding = 0x7f0401f7
+hanson.xyz.vpnhotspotmod:anim/abc_slide_in_bottom = 0x7f010007
+hanson.xyz.vpnhotspotmod:attr/spinnerDropDownItemStyle = 0x7f0403e4
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_time_selector_selected_hover_state_layer_color = 0x7f0d0163
+hanson.xyz.vpnhotspotmod:attr/spinBars = 0x7f0403e3
+hanson.xyz.vpnhotspotmod:attr/snackbarStyle = 0x7f0403e0
+hanson.xyz.vpnhotspotmod:color/m3_textfield_input_text_color = 0x7f060215
+hanson.xyz.vpnhotspotmod:style/Preference.DialogPreference.EditTextPreference.Material = 0x7f130150
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_text_input_month_abbr = 0x7f1200c7
+hanson.xyz.vpnhotspotmod:attr/colorOnSurface = 0x7f0400fe
+hanson.xyz.vpnhotspotmod:color/design_dark_default_color_on_secondary = 0x7f060049
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_primary = 0x7f0601ef
+hanson.xyz.vpnhotspotmod:attr/singleSelection = 0x7f0403dc
+hanson.xyz.vpnhotspotmod:attr/sideSheetModalStyle = 0x7f0403d3
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_standard_control_y2 = 0x7f070212
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_time_selector_separator_type = 0x7f0d0167
+hanson.xyz.vpnhotspotmod:color/material_on_primary_emphasis_high_type = 0x7f060282
+hanson.xyz.vpnhotspotmod:id/tabMode = 0x7f0901e4
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_secondary60 = 0x7f0600f5
+hanson.xyz.vpnhotspotmod:attr/simpleItems = 0x7f0403d7
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.FloatingActionButton = 0x7f13010c
+hanson.xyz.vpnhotspotmod:style/Base.Theme.Material3.Light.Dialog = 0x7f130065
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_emphasized_accelerate_control_x1 = 0x7f0701f3
+hanson.xyz.vpnhotspotmod:attr/thumbStrokeColor = 0x7f04047b
+hanson.xyz.vpnhotspotmod:attr/simpleItemLayout = 0x7f0403d4
+hanson.xyz.vpnhotspotmod:id/motion_base = 0x7f09013a
+hanson.xyz.vpnhotspotmod:attr/sideSheetDialogTheme = 0x7f0403d2
+hanson.xyz.vpnhotspotmod:attr/shrinkMotionSpec = 0x7f0403d1
+hanson.xyz.vpnhotspotmod:attr/cardUseCompatPadding = 0x7f0400a1
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_16 = 0x7f090019
+hanson.xyz.vpnhotspotmod:attr/showSeekBarValue = 0x7f0403ce
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Light.Bridge = 0x7f130073
+hanson.xyz.vpnhotspotmod:attr/showPaths = 0x7f0403cd
+hanson.xyz.vpnhotspotmod:attr/chipIconVisible = 0x7f0400be
+hanson.xyz.vpnhotspotmod:dimen/mtrl_high_ripple_focused_alpha = 0x7f0702b8
+hanson.xyz.vpnhotspotmod:attr/showDelay = 0x7f0403ca
+hanson.xyz.vpnhotspotmod:color/abc_background_cache_hint_selector_material_dark = 0x7f060000
+hanson.xyz.vpnhotspotmod:id/content = 0x7f090093
+hanson.xyz.vpnhotspotmod:color/mtrl_navigation_bar_colored_ripple_color = 0x7f0602e3
+hanson.xyz.vpnhotspotmod:attr/itemHorizontalPadding = 0x7f040246
+hanson.xyz.vpnhotspotmod:dimen/compat_notification_large_icon_max_height = 0x7f07005d
+hanson.xyz.vpnhotspotmod:string/wifi_hotspot_timeout = 0x7f12016e
+hanson.xyz.vpnhotspotmod:attr/layout_constraintLeft_toLeftOf = 0x7f04028d
+hanson.xyz.vpnhotspotmod:color/material_personalized__highlighted_text_inverse = 0x7f060289
+hanson.xyz.vpnhotspotmod:attr/showAsAction = 0x7f0403c9
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.BottomNavigationView = 0x7f130413
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Dialog.Alert.Bridge = 0x7f13027e
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral99 = 0x7f0600c8
+hanson.xyz.vpnhotspotmod:attr/reverseLayout = 0x7f0403a3
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_icon_dark_normal_background = 0x7f080086
+hanson.xyz.vpnhotspotmod:attr/itemMaxLines = 0x7f04024b
+hanson.xyz.vpnhotspotmod:attr/titleEnabled = 0x7f04048f
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.CheckedTextView = 0x7f130425
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_max_width = 0x7f070261
+hanson.xyz.vpnhotspotmod:attr/layout_constraintCircle = 0x7f04027c
+hanson.xyz.vpnhotspotmod:attr/showAnimationBehavior = 0x7f0403c8
+hanson.xyz.vpnhotspotmod:styleable/TextInputLayout = 0x7f1400a0
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f1300e5
+hanson.xyz.vpnhotspotmod:attr/shouldRemoveExpandedCorners = 0x7f0403c7
+hanson.xyz.vpnhotspotmod:string/material_motion_easing_linear = 0x7f12008e
+hanson.xyz.vpnhotspotmod:attr/shouldDisableView = 0x7f0403c6
+hanson.xyz.vpnhotspotmod:attr/shortcutMatchRequired = 0x7f0403c5
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_surface_variant = 0x7f0601cd
+hanson.xyz.vpnhotspotmod:style/Widget.Design.NavigationView = 0x7f130359
+hanson.xyz.vpnhotspotmod:attr/shapeAppearanceOverlay = 0x7f0403c2
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Light.Dialog.Alert.Framework = 0x7f1302cb
+hanson.xyz.vpnhotspotmod:attr/hintAnimationEnabled = 0x7f04021e
+hanson.xyz.vpnhotspotmod:attr/shapeAppearanceMediumComponent = 0x7f0403c1
+hanson.xyz.vpnhotspotmod:attr/preserveIconSpacing = 0x7f040390
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_tertiary40 = 0x7f060100
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.DisplaySmall = 0x7f1301fe
+hanson.xyz.vpnhotspotmod:integer/mtrl_view_gone = 0x7f0a0040
+hanson.xyz.vpnhotspotmod:attr/shapeAppearanceCornerLarge = 0x7f0403bd
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.Dark = 0x7f1302ed
+hanson.xyz.vpnhotspotmod:attr/selectorSize = 0x7f0403b9
+hanson.xyz.vpnhotspotmod:id/share_qr = 0x7f0901bd
+hanson.xyz.vpnhotspotmod:attr/arrowHeadLength = 0x7f04003d
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_tertiary = 0x7f0601fc
+hanson.xyz.vpnhotspotmod:id/design_menu_item_action_area_stub = 0x7f0900a8
+hanson.xyz.vpnhotspotmod:id/bridged_timeout = 0x7f09006f
+hanson.xyz.vpnhotspotmod:attr/itemShapeInsetBottom = 0x7f040254
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_time_picker_time_selector_focus_state_layer_opacity = 0x7f0701a2
+hanson.xyz.vpnhotspotmod:attr/itemHorizontalTranslationEnabled = 0x7f040247
+hanson.xyz.vpnhotspotmod:attr/selectable = 0x7f0403b5
+hanson.xyz.vpnhotspotmod:attr/errorAccessibilityLiveRegion = 0x7f0401ae
+hanson.xyz.vpnhotspotmod:attr/windowMinWidthMajor = 0x7f0404d6
+hanson.xyz.vpnhotspotmod:attr/startIconTint = 0x7f0403f3
+hanson.xyz.vpnhotspotmod:style/PreferenceCategoryTitleTextStyle = 0x7f130161
+hanson.xyz.vpnhotspotmod:color/m3_dynamic_dark_default_color_primary_text = 0x7f06008f
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.TitleLarge = 0x7f13021a
+hanson.xyz.vpnhotspotmod:attr/dropDownListViewStyle = 0x7f04018f
+hanson.xyz.vpnhotspotmod:attr/textAppearanceSearchResultSubtitle = 0x7f04045d
+hanson.xyz.vpnhotspotmod:attr/negativeButtonText = 0x7f040342
+hanson.xyz.vpnhotspotmod:attr/secondaryActivityAction = 0x7f0403b0
+hanson.xyz.vpnhotspotmod:attr/colorOnPrimaryFixedVariant = 0x7f0400f8
+hanson.xyz.vpnhotspotmod:attr/scrimAnimationDuration = 0x7f0403a9
+hanson.xyz.vpnhotspotmod:drawable/abc_text_cursor_material = 0x7f08006e
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_body_1_material = 0x7f07003f
+hanson.xyz.vpnhotspotmod:attr/actionModeShareDrawable = 0x7f04001a
+hanson.xyz.vpnhotspotmod:attr/region_widthMoreThan = 0x7f0403a1
+hanson.xyz.vpnhotspotmod:attr/region_widthLessThan = 0x7f0403a0
+hanson.xyz.vpnhotspotmod:attr/checkedIconVisible = 0x7f0400b3
+hanson.xyz.vpnhotspotmod:attr/fabAnimationMode = 0x7f0401cd
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_checked_unchecked__2 = 0x7f080013
+hanson.xyz.vpnhotspotmod:dimen/tooltip_y_offset_touch = 0x7f070329
+hanson.xyz.vpnhotspotmod:color/cardview_shadow_end_color = 0x7f060031
+hanson.xyz.vpnhotspotmod:styleable/PreferenceTheme = 0x7f14007b
+hanson.xyz.vpnhotspotmod:attr/layout_constraintWidth_min = 0x7f04029d
+hanson.xyz.vpnhotspotmod:attr/recyclerViewStyle = 0x7f04039d
+hanson.xyz.vpnhotspotmod:string/repeater_failure_reason_unsupported_operation = 0x7f1200f1
+hanson.xyz.vpnhotspotmod:anim/linear_indeterminate_line1_tail_interpolator = 0x7f01001f
+hanson.xyz.vpnhotspotmod:dimen/abc_action_bar_content_inset_material = 0x7f070000
+hanson.xyz.vpnhotspotmod:attr/ratingBarStyleSmall = 0x7f04039c
+hanson.xyz.vpnhotspotmod:id/staticPostLayout = 0x7f0901dc
+hanson.xyz.vpnhotspotmod:attr/preferenceCategoryTitleTextColor = 0x7f040385
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_white = 0x7f060161
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialTimePicker.Display.HelperText = 0x7f1303d4
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_primary_navigation_tab_active_indicator_height = 0x7f070161
+hanson.xyz.vpnhotspotmod:attr/ratingBarStyleIndicator = 0x7f04039b
+hanson.xyz.vpnhotspotmod:attr/dialogTitle = 0x7f040173
+hanson.xyz.vpnhotspotmod:string/settings_service_dhcp_workaround_summary = 0x7f120116
+hanson.xyz.vpnhotspotmod:attr/queryPatterns = 0x7f040397
+hanson.xyz.vpnhotspotmod:attr/queryBackground = 0x7f040395
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_surface_bright = 0x7f0601f4
+hanson.xyz.vpnhotspotmod:attr/elevation = 0x7f040198
+hanson.xyz.vpnhotspotmod:attr/shapeAppearanceLargeComponent = 0x7f0403c0
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_bar_icon_size = 0x7f070141
+hanson.xyz.vpnhotspotmod:dimen/compat_button_inset_vertical_material = 0x7f070059
+hanson.xyz.vpnhotspotmod:attr/progressBarStyle = 0x7f040394
+hanson.xyz.vpnhotspotmod:id/bottom = 0x7f09006c
+hanson.xyz.vpnhotspotmod:dimen/highlight_alpha_material_colored = 0x7f070095
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_menu_container_elevation = 0x7f07013a
+hanson.xyz.vpnhotspotmod:id/fade = 0x7f0900cc
+hanson.xyz.vpnhotspotmod:attr/motionEasingEmphasizedDecelerateInterpolator = 0x7f04032a
+hanson.xyz.vpnhotspotmod:id/baseline = 0x7f090065
+hanson.xyz.vpnhotspotmod:color/common_google_signin_btn_text_dark_focused = 0x7f060039
+hanson.xyz.vpnhotspotmod:attr/barrierMargin = 0x7f040069
+hanson.xyz.vpnhotspotmod:attr/titlePositionInterpolator = 0x7f040496
+hanson.xyz.vpnhotspotmod:attr/badgeTextAppearance = 0x7f04005c
+hanson.xyz.vpnhotspotmod:dimen/design_navigation_elevation = 0x7f070077
+hanson.xyz.vpnhotspotmod:attr/trackThickness = 0x7f0404b1
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_handle_color = 0x7f0d0135
+hanson.xyz.vpnhotspotmod:attr/topInsetScrimEnabled = 0x7f0404a4
+hanson.xyz.vpnhotspotmod:attr/singleLine = 0x7f0403da
+hanson.xyz.vpnhotspotmod:attr/prefixText = 0x7f04038d
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.Material3.SmallComponent = 0x7f13019e
+hanson.xyz.vpnhotspotmod:attr/flow_lastVerticalBias = 0x7f0401f4
+hanson.xyz.vpnhotspotmod:attr/textAppearanceBodyLarge = 0x7f040442
+hanson.xyz.vpnhotspotmod:color/mtrl_navigation_item_background_color = 0x7f0602e6
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_outline_variant = 0x7f06017c
+hanson.xyz.vpnhotspotmod:attr/removeEmbeddedFabElevation = 0x7f0403a2
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral_variant99 = 0x7f060139
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_radio_button_selected_focus_state_layer_opacity = 0x7f070169
+hanson.xyz.vpnhotspotmod:attr/preferenceScreenStyle = 0x7f04038a
+hanson.xyz.vpnhotspotmod:integer/mtrl_switch_thumb_post_morphing_duration = 0x7f0a0038
+hanson.xyz.vpnhotspotmod:attr/preferenceFragmentStyle = 0x7f040388
+hanson.xyz.vpnhotspotmod:id/acs_6g_wrapper = 0x7f090036
+hanson.xyz.vpnhotspotmod:dimen/mtrl_bottomappbar_fab_cradle_margin = 0x7f070252
+hanson.xyz.vpnhotspotmod:attr/preferenceFragmentCompatStyle = 0x7f040386
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Light.SideSheetDialog = 0x7f130267
+hanson.xyz.vpnhotspotmod:attr/motionDurationMedium2 = 0x7f04031f
+hanson.xyz.vpnhotspotmod:attr/pivotAnchor = 0x7f04036c
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.ActionMode = 0x7f1300ce
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_text_btn_padding_left = 0x7f07026a
+hanson.xyz.vpnhotspotmod:attr/pref_unit = 0x7f040382
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__0 = 0x7f08001b
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_bar_pressed_state_layer_opacity = 0x7f070142
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_extra_long1 = 0x7f0a0010
+hanson.xyz.vpnhotspotmod:id/progress_circular = 0x7f090193
+hanson.xyz.vpnhotspotmod:attr/pref_maxUnits = 0x7f040380
+hanson.xyz.vpnhotspotmod:attr/pref_listItemPadding = 0x7f04037d
+hanson.xyz.vpnhotspotmod:attr/pref_dialogElevation = 0x7f040377
+hanson.xyz.vpnhotspotmod:attr/state_with_icon = 0x7f0403fd
+hanson.xyz.vpnhotspotmod:macro/m3_comp_badge_color = 0x7f0d0002
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_track_thickness = 0x7f0702de
+hanson.xyz.vpnhotspotmod:color/material_harmonized_color_error = 0x7f06027a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_tonal_icon_button_toggle_selected_icon_color = 0x7f0d0056
+hanson.xyz.vpnhotspotmod:attr/positiveButtonText = 0x7f040376
+hanson.xyz.vpnhotspotmod:attr/roundPercent = 0x7f0403a6
+hanson.xyz.vpnhotspotmod:attr/popupWindowStyle = 0x7f040375
+hanson.xyz.vpnhotspotmod:attr/popupMenuStyle = 0x7f040373
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Button.ElevatedButton = 0x7f1302ad
+hanson.xyz.vpnhotspotmod:dimen/m3_fab_corner_size = 0x7f0701b3
+hanson.xyz.vpnhotspotmod:dimen/abc_seekbar_track_progress_height_material = 0x7f070039
+hanson.xyz.vpnhotspotmod:color/material_dynamic_primary60 = 0x7f060253
+hanson.xyz.vpnhotspotmod:drawable/abc_ic_menu_copy_mtrl_am_alpha = 0x7f080043
+hanson.xyz.vpnhotspotmod:animator/m3_card_state_list_anim = 0x7f02000d
+hanson.xyz.vpnhotspotmod:attr/popupMenuBackground = 0x7f040372
+hanson.xyz.vpnhotspotmod:color/material_grey_850 = 0x7f060278
+hanson.xyz.vpnhotspotmod:attr/preferenceTheme = 0x7f04038c
+hanson.xyz.vpnhotspotmod:attr/itemTextAppearanceInactive = 0x7f04025e
+hanson.xyz.vpnhotspotmod:dimen/material_textinput_default_width = 0x7f07023e
+hanson.xyz.vpnhotspotmod:integer/simple_menu_max_units = 0x7f0a0046
+hanson.xyz.vpnhotspotmod:id/topPanel = 0x7f09020c
+hanson.xyz.vpnhotspotmod:color/material_dynamic_primary80 = 0x7f060255
+hanson.xyz.vpnhotspotmod:attr/placeholderTextAppearance = 0x7f04036f
+hanson.xyz.vpnhotspotmod:id/invalid = 0x7f0900f8
+hanson.xyz.vpnhotspotmod:attr/placeholderText = 0x7f04036e
+hanson.xyz.vpnhotspotmod:layout/abc_alert_dialog_title_material = 0x7f0c000a
+hanson.xyz.vpnhotspotmod:attr/placeholderActivityName = 0x7f04036d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_pressed_track_color = 0x7f0d013f
+hanson.xyz.vpnhotspotmod:dimen/hint_alpha_material_dark = 0x7f070098
+hanson.xyz.vpnhotspotmod:attr/persistent = 0x7f04036b
+hanson.xyz.vpnhotspotmod:attr/animateNavigationIcon = 0x7f040037
+hanson.xyz.vpnhotspotmod:attr/perpendicularPath_percent = 0x7f04036a
+hanson.xyz.vpnhotspotmod:attr/percentY = 0x7f040369
+hanson.xyz.vpnhotspotmod:drawable/notification_icon_background = 0x7f080117
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_legacy_control_y2 = 0x7f070202
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f13008c
+hanson.xyz.vpnhotspotmod:color/preference_fallback_accent_color = 0x7f060301
+hanson.xyz.vpnhotspotmod:attr/percentX = 0x7f040368
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.SideSheet.Modal.Detached = 0x7f1303ea
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral_variant80 = 0x7f060136
+hanson.xyz.vpnhotspotmod:id/endToStart = 0x7f0900c6
+hanson.xyz.vpnhotspotmod:attr/materialButtonStyle = 0x7f0402d3
+hanson.xyz.vpnhotspotmod:attr/percentWidth = 0x7f040367
+hanson.xyz.vpnhotspotmod:attr/defaultMarginsEnabled = 0x7f040163
+hanson.xyz.vpnhotspotmod:dimen/material_time_picker_minimum_screen_height = 0x7f070241
+hanson.xyz.vpnhotspotmod:string/tethering_manage_wifi_info_timeout_disabled = 0x7f12014a
+hanson.xyz.vpnhotspotmod:attr/layout_constraintRight_creator = 0x7f04028f
+hanson.xyz.vpnhotspotmod:string/mtrl_switch_track_path = 0x7f1200d5
+hanson.xyz.vpnhotspotmod:attr/path_percent = 0x7f040365
+hanson.xyz.vpnhotspotmod:styleable/EditTextPreference = 0x7f140034
+hanson.xyz.vpnhotspotmod:string/tethering_manage_wifi = 0x7f120141
+hanson.xyz.vpnhotspotmod:color/m3_dark_default_color_secondary_text = 0x7f060089
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_error = 0x7f06016b
+hanson.xyz.vpnhotspotmod:attr/textAppearanceSearchResultTitle = 0x7f04045e
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant94 = 0x7f0600dc
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Button.UnelevatedButton.Icon = 0x7f130423
+hanson.xyz.vpnhotspotmod:layout/material_timepicker = 0x7f0c0053
+hanson.xyz.vpnhotspotmod:drawable/mtrl_popupmenu_background = 0x7f080100
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_headline_material = 0x7f070047
+hanson.xyz.vpnhotspotmod:attr/panelMenuListWidth = 0x7f04035e
+hanson.xyz.vpnhotspotmod:attr/tabUnboundedRipple = 0x7f04043a
+hanson.xyz.vpnhotspotmod:attr/materialCalendarMonthNavigationButton = 0x7f0402e0
+hanson.xyz.vpnhotspotmod:style/Preference.Material = 0x7f130156
+hanson.xyz.vpnhotspotmod:style/Base.V21.Theme.MaterialComponents.Light = 0x7f1300ab
+hanson.xyz.vpnhotspotmod:color/background_floating_material_light = 0x7f06001e
+hanson.xyz.vpnhotspotmod:attr/showTitle = 0x7f0403d0
+hanson.xyz.vpnhotspotmod:attr/paddingRightSystemWindowInsets = 0x7f040357
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.PersonalizedColors = 0x7f1302d5
+hanson.xyz.vpnhotspotmod:attr/extendMotionSpec = 0x7f0401c2
+hanson.xyz.vpnhotspotmod:attr/paddingEnd = 0x7f040355
+hanson.xyz.vpnhotspotmod:drawable/preference_list_divider_material = 0x7f08011d
+hanson.xyz.vpnhotspotmod:attr/onShow = 0x7f04034d
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_surface_container = 0x7f0601f5
+hanson.xyz.vpnhotspotmod:id/parent_matrix = 0x7f090182
+hanson.xyz.vpnhotspotmod:attr/onNegativeCross = 0x7f04034b
+hanson.xyz.vpnhotspotmod:attr/onHide = 0x7f04034a
+hanson.xyz.vpnhotspotmod:attr/splitTrack = 0x7f0403ea
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_corner_radius = 0x7f070256
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.ExtendedFloatingActionButton = 0x7f13010a
+hanson.xyz.vpnhotspotmod:dimen/m3_side_sheet_modal_elevation = 0x7f0701e2
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ListView.DropDown = 0x7f130334
+hanson.xyz.vpnhotspotmod:attr/offsetAlignmentMode = 0x7f040348
+hanson.xyz.vpnhotspotmod:id/shortcut = 0x7f0901be
+hanson.xyz.vpnhotspotmod:attr/fabAlignmentModeEndMargin = 0x7f0401cb
+hanson.xyz.vpnhotspotmod:attr/onCross = 0x7f040349
+hanson.xyz.vpnhotspotmod:id/position = 0x7f09018d
+hanson.xyz.vpnhotspotmod:dimen/m3_fab_translation_z_pressed = 0x7f0701b5
+hanson.xyz.vpnhotspotmod:attr/numericModifiers = 0x7f040347
+hanson.xyz.vpnhotspotmod:dimen/disabled_alpha_material_light = 0x7f070091
+hanson.xyz.vpnhotspotmod:styleable/ActionBar = 0x7f140000
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.ExtendedFloatingActionButton.Surface = 0x7f1303a5
+hanson.xyz.vpnhotspotmod:attr/number = 0x7f040346
+hanson.xyz.vpnhotspotmod:attr/navigationRailStyle = 0x7f040340
+hanson.xyz.vpnhotspotmod:attr/nestedScrollable = 0x7f040345
+hanson.xyz.vpnhotspotmod:style/Base.V14.Widget.MaterialComponents.AutoCompleteTextView = 0x7f1300a4
+hanson.xyz.vpnhotspotmod:drawable/abc_list_selector_disabled_holo_light = 0x7f080056
+hanson.xyz.vpnhotspotmod:color/m3_calendar_item_disabled_text = 0x7f06007c
+hanson.xyz.vpnhotspotmod:attr/isMaterialTheme = 0x7f040241
+hanson.xyz.vpnhotspotmod:attr/onTouchUp = 0x7f04034e
+hanson.xyz.vpnhotspotmod:attr/layout_goneMarginLeft = 0x7f0402a4
+hanson.xyz.vpnhotspotmod:attr/navigationMode = 0x7f04033f
+hanson.xyz.vpnhotspotmod:style/Animation.AppCompat.DropDownUp = 0x7f130003
+hanson.xyz.vpnhotspotmod:attr/colorSurfaceContainerHighest = 0x7f040119
+hanson.xyz.vpnhotspotmod:attr/materialSearchViewPrefixStyle = 0x7f0402f2
+hanson.xyz.vpnhotspotmod:attr/fabAnchorMode = 0x7f0401cc
+hanson.xyz.vpnhotspotmod:attr/navigationIcon = 0x7f04033d
+hanson.xyz.vpnhotspotmod:color/design_dark_default_color_primary_dark = 0x7f06004c
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.CardView = 0x7f130424
+hanson.xyz.vpnhotspotmod:attr/titleCentered = 0x7f04048d
+hanson.xyz.vpnhotspotmod:dimen/browser_actions_context_menu_max_width = 0x7f070052
+hanson.xyz.vpnhotspotmod:dimen/qrcode_size = 0x7f07031e
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Secondary = 0x7f1302c1
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_circular_track_thickness_extra_small = 0x7f0702da
+hanson.xyz.vpnhotspotmod:attr/multiChoiceItemLayout = 0x7f04033b
+hanson.xyz.vpnhotspotmod:attr/tabPaddingStart = 0x7f040431
+hanson.xyz.vpnhotspotmod:dimen/material_filled_edittext_font_2_0_padding_bottom = 0x7f070236
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_disabled_outline_color = 0x7f0d00b7
+hanson.xyz.vpnhotspotmod:anim/mtrl_bottom_sheet_slide_out = 0x7f01002b
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_outline = 0x7f06019d
+hanson.xyz.vpnhotspotmod:attr/moveWhenScrollAtTop = 0x7f04033a
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_switch_disabled_selected_handle_opacity = 0x7f07018c
+hanson.xyz.vpnhotspotmod:styleable/SplitPairRule = 0x7f140091
+hanson.xyz.vpnhotspotmod:attr/motion_postLayoutCollision = 0x7f040338
+hanson.xyz.vpnhotspotmod:drawable/ic_settings_qrcode = 0x7f0800d2
+hanson.xyz.vpnhotspotmod:attr/motionTarget = 0x7f040337
+hanson.xyz.vpnhotspotmod:attr/colorSurfaceContainerLow = 0x7f04011a
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.FloatingActionButton.Small.Tertiary = 0x7f1303b0
+hanson.xyz.vpnhotspotmod:attr/listPreferredItemPaddingEnd = 0x7f0402c0
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f130046
+hanson.xyz.vpnhotspotmod:attr/motionStagger = 0x7f040336
+hanson.xyz.vpnhotspotmod:attr/motionPathRotate = 0x7f040334
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_error70 = 0x7f060110
+hanson.xyz.vpnhotspotmod:attr/buttonBarPositiveButtonStyle = 0x7f04008d
+hanson.xyz.vpnhotspotmod:attr/overlapAnchor = 0x7f040351
+hanson.xyz.vpnhotspotmod:attr/limitBoundsTo = 0x7f0402b1
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.Button = 0x7f1301df
+hanson.xyz.vpnhotspotmod:color/abc_search_url_text = 0x7f06000d
+hanson.xyz.vpnhotspotmod:attr/itemShapeInsetStart = 0x7f040256
+hanson.xyz.vpnhotspotmod:drawable/ic_m3_chip_close = 0x7f0800cb
+hanson.xyz.vpnhotspotmod:id/textinput_suffix_text = 0x7f090202
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_outlined_card_icon_size = 0x7f070157
+hanson.xyz.vpnhotspotmod:attr/motionPath = 0x7f040333
+hanson.xyz.vpnhotspotmod:anim/btn_checkbox_to_checked_box_inner_merged_animation = 0x7f01000d
+hanson.xyz.vpnhotspotmod:attr/strokeWidth = 0x7f040402
+hanson.xyz.vpnhotspotmod:attr/motionEasingStandardInterpolator = 0x7f040331
+hanson.xyz.vpnhotspotmod:string/configuration_view = 0x7f12004e
+hanson.xyz.vpnhotspotmod:attr/motionEasingStandardDecelerateInterpolator = 0x7f040330
+hanson.xyz.vpnhotspotmod:attr/motionEasingStandard = 0x7f04032e
+hanson.xyz.vpnhotspotmod:attr/motionEasingEmphasizedInterpolator = 0x7f04032b
+hanson.xyz.vpnhotspotmod:attr/motionEasingEmphasizedAccelerateInterpolator = 0x7f040329
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.AutoCompleteTextView.OutlinedBox.Dense = 0x7f130365
+hanson.xyz.vpnhotspotmod:drawable/$avd_hide_password__0 = 0x7f080000
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_radio_button_unselected_focus_state_layer_opacity = 0x7f07016c
+hanson.xyz.vpnhotspotmod:dimen/abc_action_bar_stacked_tab_max_width = 0x7f07000a
+hanson.xyz.vpnhotspotmod:attr/motionEasingDecelerated = 0x7f040327
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.NavigationRailView = 0x7f1303d8
+hanson.xyz.vpnhotspotmod:drawable/abc_ratingbar_material = 0x7f08005c
+hanson.xyz.vpnhotspotmod:dimen/mtrl_slider_halo_radius = 0x7f0702e2
+hanson.xyz.vpnhotspotmod:drawable/notification_bg_low = 0x7f080112
+hanson.xyz.vpnhotspotmod:attr/checkedButton = 0x7f0400ab
+hanson.xyz.vpnhotspotmod:string/mtrl_timepicker_confirm = 0x7f1200d7
+hanson.xyz.vpnhotspotmod:attr/motionDurationShort4 = 0x7f040325
+hanson.xyz.vpnhotspotmod:attr/minTouchTargetSize = 0x7f04030d
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_circular_progress_indicator_active_indicator_width = 0x7f070107
+hanson.xyz.vpnhotspotmod:attr/motionDurationShort3 = 0x7f040324
+hanson.xyz.vpnhotspotmod:dimen/abc_select_dialog_padding_start_material = 0x7f07003a
+hanson.xyz.vpnhotspotmod:attr/motionDurationShort1 = 0x7f040322
+hanson.xyz.vpnhotspotmod:color/mtrl_textinput_filled_box_default_background_color = 0x7f0602fb
+hanson.xyz.vpnhotspotmod:color/dim_foreground_material_light = 0x7f06006b
+hanson.xyz.vpnhotspotmod:attr/motionDurationMedium3 = 0x7f040320
+hanson.xyz.vpnhotspotmod:attr/subheaderInsetStart = 0x7f040406
+hanson.xyz.vpnhotspotmod:anim/linear_indeterminate_line2_head_interpolator = 0x7f010020
+hanson.xyz.vpnhotspotmod:drawable/abc_switch_thumb_material = 0x7f08006a
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.BodyLarge = 0x7f1301f9
+hanson.xyz.vpnhotspotmod:dimen/mtrl_high_ripple_default_alpha = 0x7f0702b7
+hanson.xyz.vpnhotspotmod:attr/tabIconTintMode = 0x7f040422
+hanson.xyz.vpnhotspotmod:attr/keyPositionType = 0x7f040262
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.AutoCompleteTextView.FilledBox.Dense = 0x7f1302a5
+hanson.xyz.vpnhotspotmod:string/settings_misc_source_summary = 0x7f12010f
+hanson.xyz.vpnhotspotmod:attr/textInputStyle = 0x7f04046f
+hanson.xyz.vpnhotspotmod:attr/motionDurationExtraLong3 = 0x7f040318
+hanson.xyz.vpnhotspotmod:macro/m3_comp_extended_fab_surface_container_color = 0x7f0d0033
+hanson.xyz.vpnhotspotmod:attr/isLightTheme = 0x7f04023e
+hanson.xyz.vpnhotspotmod:attr/passwordToggleContentDescription = 0x7f04035f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_inactive_label_text_color = 0x7f0d0090
+hanson.xyz.vpnhotspotmod:id/showTitle = 0x7f0901c1
+hanson.xyz.vpnhotspotmod:attr/lastItemDecorated = 0x7f04026b
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_surface_variant = 0x7f0601fb
+hanson.xyz.vpnhotspotmod:attr/simpleMenuPreferenceStyle = 0x7f0403d8
+hanson.xyz.vpnhotspotmod:color/mtrl_navigation_bar_ripple_color = 0x7f0602e5
+hanson.xyz.vpnhotspotmod:dimen/m3_card_elevation = 0x7f0700ed
+hanson.xyz.vpnhotspotmod:attr/appBarLayoutStyle = 0x7f04003a
+hanson.xyz.vpnhotspotmod:attr/motionDurationExtraLong2 = 0x7f040317
+hanson.xyz.vpnhotspotmod:attr/prefixTextAppearance = 0x7f04038e
+hanson.xyz.vpnhotspotmod:attr/addElevationShadow = 0x7f040028
+hanson.xyz.vpnhotspotmod:attr/mock_showLabel = 0x7f040314
+hanson.xyz.vpnhotspotmod:attr/mock_labelColor = 0x7f040312
+hanson.xyz.vpnhotspotmod:attr/mock_diagonalsColor = 0x7f04030f
+hanson.xyz.vpnhotspotmod:layout/preference_widget_seekbar = 0x7f0c008b
+hanson.xyz.vpnhotspotmod:dimen/abc_action_bar_icon_vertical_padding_material = 0x7f070006
+hanson.xyz.vpnhotspotmod:dimen/mtrl_fab_translation_z_pressed = 0x7f0702b6
+hanson.xyz.vpnhotspotmod:attr/materialSearchViewToolbarHeight = 0x7f0402f4
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_icon_only_icon_padding = 0x7f0700d8
+hanson.xyz.vpnhotspotmod:attr/minWidth = 0x7f04030e
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_primary100 = 0x7f0600e3
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral4 = 0x7f0600ba
+hanson.xyz.vpnhotspotmod:id/action_divider = 0x7f090040
+hanson.xyz.vpnhotspotmod:attr/minHideDelay = 0x7f04030b
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.UnelevatedButton = 0x7f130383
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_legacy_decelerate_control_x2 = 0x7f070204
+hanson.xyz.vpnhotspotmod:attr/submitBackground = 0x7f040408
+hanson.xyz.vpnhotspotmod:attr/min = 0x7f040309
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat.Light.DialogWhenLarge = 0x7f13005c
+hanson.xyz.vpnhotspotmod:anim/abc_tooltip_exit = 0x7f01000c
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_surface_container_highest = 0x7f0601a7
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_secondary100 = 0x7f060149
+hanson.xyz.vpnhotspotmod:attr/fabCustomSize = 0x7f0401d1
+hanson.xyz.vpnhotspotmod:attr/badgeWithTextShapeAppearance = 0x7f040063
+hanson.xyz.vpnhotspotmod:attr/menuGravity = 0x7f040308
+hanson.xyz.vpnhotspotmod:dimen/m3_back_progress_side_container_max_scale_x_distance_shrink = 0x7f0700b4
+hanson.xyz.vpnhotspotmod:layout/preference_information = 0x7f0c0082
+hanson.xyz.vpnhotspotmod:attr/menuAlignmentMode = 0x7f040307
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.MaterialCalendar = 0x7f1302ce
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_date_header_unselected = 0x7f1200b2
+hanson.xyz.vpnhotspotmod:id/band_primary = 0x7f090062
+hanson.xyz.vpnhotspotmod:attr/backgroundColor = 0x7f04004b
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_icon_text_spacing = 0x7f0702aa
+hanson.xyz.vpnhotspotmod:layout/mtrl_picker_text_input_date = 0x7f0c0072
+hanson.xyz.vpnhotspotmod:attr/menu = 0x7f040306
+hanson.xyz.vpnhotspotmod:attr/subheaderTextAppearance = 0x7f040407
+hanson.xyz.vpnhotspotmod:attr/colorPrimaryDark = 0x7f040109
+hanson.xyz.vpnhotspotmod:drawable/abc_list_divider_mtrl_alpha = 0x7f08004e
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filled_autocomplete_menu_container_elevation = 0x7f070125
+hanson.xyz.vpnhotspotmod:attr/maxWidth = 0x7f040304
+hanson.xyz.vpnhotspotmod:attr/colorOnTertiaryFixed = 0x7f040103
+hanson.xyz.vpnhotspotmod:string/material_timepicker_hour = 0x7f120095
+hanson.xyz.vpnhotspotmod:drawable/material_ic_keyboard_arrow_right_black_24dp = 0x7f0800e7
+hanson.xyz.vpnhotspotmod:dimen/m3_side_sheet_width = 0x7f0701e4
+hanson.xyz.vpnhotspotmod:attr/maxLines = 0x7f040301
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_tertiary80 = 0x7f060104
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.Snackbar = 0x7f13011f
+hanson.xyz.vpnhotspotmod:style/Base.V14.ThemeOverlay.Material3.SideSheetDialog = 0x7f13009f
+hanson.xyz.vpnhotspotmod:dimen/mtrl_shape_corner_size_medium_component = 0x7f0702e0
+hanson.xyz.vpnhotspotmod:attr/entryValues = 0x7f0401ac
+hanson.xyz.vpnhotspotmod:color/abc_decor_view_status_guard = 0x7f060005
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Large = 0x7f130025
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_error20 = 0x7f06010b
+hanson.xyz.vpnhotspotmod:attr/snackbarButtonStyle = 0x7f0403df
+hanson.xyz.vpnhotspotmod:color/material_dynamic_tertiary99 = 0x7f060272
+hanson.xyz.vpnhotspotmod:attr/maxImageSize = 0x7f040300
+hanson.xyz.vpnhotspotmod:attr/maxHeight = 0x7f0402ff
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.DayNight.Dialog.Alert = 0x7f130272
+hanson.xyz.vpnhotspotmod:attr/maxCharacterCount = 0x7f0402fe
+hanson.xyz.vpnhotspotmod:attr/materialTimePickerTitleStyle = 0x7f0402fa
+hanson.xyz.vpnhotspotmod:macro/m3_comp_fab_primary_container_shape = 0x7f0d0038
+hanson.xyz.vpnhotspotmod:drawable/abc_ic_search_api_material = 0x7f080049
+hanson.xyz.vpnhotspotmod:attr/materialTimePickerStyle = 0x7f0402f8
+hanson.xyz.vpnhotspotmod:color/design_fab_stroke_end_inner_color = 0x7f060062
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_slider_inactive_track_height = 0x7f070185
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.ExtendedFloatingActionButton.Tertiary = 0x7f1303a6
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Display1 = 0x7f13001f
+hanson.xyz.vpnhotspotmod:attr/singleLineTitle = 0x7f0403db
+hanson.xyz.vpnhotspotmod:attr/materialSearchViewStyle = 0x7f0402f3
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_autocomplete_menu_container_color = 0x7f0d0042
+hanson.xyz.vpnhotspotmod:attr/endIconScaleType = 0x7f0401a5
+hanson.xyz.vpnhotspotmod:anim/btn_radio_to_off_mtrl_ring_outer_animation = 0x7f010014
+hanson.xyz.vpnhotspotmod:attr/materialSearchBarStyle = 0x7f0402f1
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_header_headline_color = 0x7f0d0016
+hanson.xyz.vpnhotspotmod:attr/materialAlertDialogButtonSpacerVisibility = 0x7f0402cd
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_error = 0x7f06028e
+hanson.xyz.vpnhotspotmod:attr/layout_constraintRight_toRightOf = 0x7f040291
+hanson.xyz.vpnhotspotmod:attr/materialIconButtonFilledStyle = 0x7f0402ed
+hanson.xyz.vpnhotspotmod:attr/materialButtonOutlinedStyle = 0x7f0402d2
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_primary_container = 0x7f06017e
+hanson.xyz.vpnhotspotmod:attr/materialCardViewStyle = 0x7f0402e7
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_supporting_text_type = 0x7f0d00c8
+hanson.xyz.vpnhotspotmod:dimen/mtrl_card_dragged_z = 0x7f07029b
+hanson.xyz.vpnhotspotmod:attr/colorOutlineVariant = 0x7f040106
+hanson.xyz.vpnhotspotmod:attr/materialCardViewOutlinedStyle = 0x7f0402e6
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_on_tertiary_container = 0x7f06029b
+hanson.xyz.vpnhotspotmod:color/design_default_color_secondary = 0x7f06005b
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_circular_size_extra_small = 0x7f0702d7
+hanson.xyz.vpnhotspotmod:attr/materialCalendarYearNavigationButton = 0x7f0402e3
+hanson.xyz.vpnhotspotmod:drawable/abc_textfield_activated_mtrl_alpha = 0x7f080072
+hanson.xyz.vpnhotspotmod:id/fragment_container_view_tag = 0x7f0900db
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_error_container = 0x7f06018e
+hanson.xyz.vpnhotspotmod:attr/materialCalendarTheme = 0x7f0402e2
+hanson.xyz.vpnhotspotmod:attr/colorSurfaceBright = 0x7f040116
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_translation_z_base = 0x7f0700e5
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.SearchView.ActionBar = 0x7f1300f7
+hanson.xyz.vpnhotspotmod:attr/materialCalendarHeaderLayout = 0x7f0402db
+hanson.xyz.vpnhotspotmod:styleable/SwipeRefreshLayout = 0x7f140097
+hanson.xyz.vpnhotspotmod:attr/materialCalendarHeaderDivider = 0x7f0402da
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.PopupMenu = 0x7f1303dc
+hanson.xyz.vpnhotspotmod:attr/materialCalendarHeaderCancelButton = 0x7f0402d8
+hanson.xyz.vpnhotspotmod:attr/textAppearanceBody1 = 0x7f040440
+hanson.xyz.vpnhotspotmod:attr/dependency = 0x7f04016a
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_linear_control_x1 = 0x7f070207
+hanson.xyz.vpnhotspotmod:color/material_grey_50 = 0x7f060275
+hanson.xyz.vpnhotspotmod:dimen/m3_carousel_small_item_size_max = 0x7f0700f4
+hanson.xyz.vpnhotspotmod:attr/materialCalendarHeaderToggleButton = 0x7f0402de
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_error80 = 0x7f060111
+hanson.xyz.vpnhotspotmod:layout/mtrl_picker_header_fullscreen = 0x7f0c006e
+hanson.xyz.vpnhotspotmod:attr/materialCalendarDayOfWeekLabel = 0x7f0402d6
+hanson.xyz.vpnhotspotmod:dimen/m3_toolbar_text_size_title = 0x7f07021d
+hanson.xyz.vpnhotspotmod:attr/backgroundTint = 0x7f040053
+hanson.xyz.vpnhotspotmod:attr/itemTextAppearanceActive = 0x7f04025c
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_on_primary = 0x7f060173
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Toolbar.Button.Navigation = 0x7f130351
+hanson.xyz.vpnhotspotmod:attr/navigationIconTint = 0x7f04033e
+hanson.xyz.vpnhotspotmod:attr/materialCalendarDay = 0x7f0402d5
+hanson.xyz.vpnhotspotmod:id/allowed_list = 0x7f090052
+hanson.xyz.vpnhotspotmod:dimen/m3_chip_elevated_elevation = 0x7f0700fa
+hanson.xyz.vpnhotspotmod:attr/rangeFillColor = 0x7f040399
+hanson.xyz.vpnhotspotmod:id/showHome = 0x7f0901c0
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_badge_size = 0x7f070103
+hanson.xyz.vpnhotspotmod:id/fragmentHolder = 0x7f0900da
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_secondary90 = 0x7f0600f8
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.Material3.Title.Panel = 0x7f13012d
+hanson.xyz.vpnhotspotmod:id/search_src_text = 0x7f0901b4
+hanson.xyz.vpnhotspotmod:drawable/notification_template_icon_low_bg = 0x7f08011a
+hanson.xyz.vpnhotspotmod:color/m3_dark_highlighted_text = 0x7f06008a
+hanson.xyz.vpnhotspotmod:attr/materialAlertDialogTheme = 0x7f0402ce
+hanson.xyz.vpnhotspotmod:id/beginOnFirstDraw = 0x7f090066
+hanson.xyz.vpnhotspotmod:attr/layout_anchor = 0x7f040270
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_hovered_z = 0x7f07025c
+hanson.xyz.vpnhotspotmod:color/material_grey_600 = 0x7f060276
+hanson.xyz.vpnhotspotmod:attr/marginTopSystemWindowInsets = 0x7f0402cb
+hanson.xyz.vpnhotspotmod:styleable/ListPopupWindow = 0x7f14004f
+hanson.xyz.vpnhotspotmod:attr/textAppearanceLargePopupMenu = 0x7f040456
+hanson.xyz.vpnhotspotmod:string/clients_popup_unblock = 0x7f120036
+hanson.xyz.vpnhotspotmod:attr/indicatorInset = 0x7f040239
+hanson.xyz.vpnhotspotmod:attr/listPreferredItemHeightLarge = 0x7f0402be
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.MaterialComponents.Headline6 = 0x7f13004a
+hanson.xyz.vpnhotspotmod:id/labeled = 0x7f0900ff
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_primary_text = 0x7f0602a1
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.Bridge = 0x7f130287
+hanson.xyz.vpnhotspotmod:attr/textInputFilledStyle = 0x7f04046a
+hanson.xyz.vpnhotspotmod:attr/fontStyle = 0x7f040206
+hanson.xyz.vpnhotspotmod:attr/listPopupWindowStyle = 0x7f0402bc
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.CheckedTextView = 0x7f130116
+hanson.xyz.vpnhotspotmod:attr/actionBarSplitStyle = 0x7f040004
+hanson.xyz.vpnhotspotmod:attr/iconSize = 0x7f04022b
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light.DialogWhenLarge = 0x7f130292
+hanson.xyz.vpnhotspotmod:attr/hintTextColor = 0x7f040221
+hanson.xyz.vpnhotspotmod:attr/actionOverflowMenuStyle = 0x7f040020
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_short4 = 0x7f0a001f
+hanson.xyz.vpnhotspotmod:attr/listDividerAlertDialog = 0x7f0402b8
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Sys.Shape.Corner.ExtraLarge = 0x7f13018d
+hanson.xyz.vpnhotspotmod:attr/listChoiceIndicatorMultipleAnimated = 0x7f0402b6
+hanson.xyz.vpnhotspotmod:id/tag_accessibility_heading = 0x7f0901e7
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_item_horizontal_padding = 0x7f0701bd
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.Year.Today = 0x7f13044f
+hanson.xyz.vpnhotspotmod:attr/swipeRefreshLayoutProgressSpinnerBackgroundColor = 0x7f040415
+hanson.xyz.vpnhotspotmod:attr/lineSpacing = 0x7f0402b3
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_on_tertiary = 0x7f06029a
+hanson.xyz.vpnhotspotmod:attr/showDividers = 0x7f0403cb
+hanson.xyz.vpnhotspotmod:attr/motionDurationShort2 = 0x7f040323
+hanson.xyz.vpnhotspotmod:style/Base.V21.Theme.AppCompat = 0x7f1300a5
+hanson.xyz.vpnhotspotmod:dimen/abc_floating_window_z = 0x7f07002f
+hanson.xyz.vpnhotspotmod:attr/largeFontVerticalOffsetAdjustment = 0x7f040269
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Light.Dialog = 0x7f130262
+hanson.xyz.vpnhotspotmod:attr/liftOnScrollTargetViewId = 0x7f0402b0
+hanson.xyz.vpnhotspotmod:attr/liftOnScroll = 0x7f0402ae
+hanson.xyz.vpnhotspotmod:attr/flow_verticalGap = 0x7f0401fa
+hanson.xyz.vpnhotspotmod:attr/layout_scrollFlags = 0x7f0402ac
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Search.ActionButton.Overflow = 0x7f1303e0
+hanson.xyz.vpnhotspotmod:attr/colorTertiaryFixedDim = 0x7f040123
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_navigation_item_max_width = 0x7f070067
+hanson.xyz.vpnhotspotmod:style/Preference.Category.Material = 0x7f13014b
+hanson.xyz.vpnhotspotmod:attr/layout_scrollEffect = 0x7f0402ab
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_control_activated = 0x7f06028b
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_tertiary_fixed_dim = 0x7f060209
+hanson.xyz.vpnhotspotmod:attr/actionModeCloseContentDescription = 0x7f040012
+hanson.xyz.vpnhotspotmod:attr/state_indeterminate = 0x7f0403fa
+hanson.xyz.vpnhotspotmod:attr/lineHeight = 0x7f0402b2
+hanson.xyz.vpnhotspotmod:attr/selectableItemBackgroundBorderless = 0x7f0403b7
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f130038
+hanson.xyz.vpnhotspotmod:drawable/mtrl_checkbox_button_icon_indeterminate_unchecked = 0x7f0800f1
+hanson.xyz.vpnhotspotmod:dimen/m3_slider_thumb_elevation = 0x7f0701e8
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Title = 0x7f1301d3
+hanson.xyz.vpnhotspotmod:attr/layout_insetEdge = 0x7f0402a8
+hanson.xyz.vpnhotspotmod:string/wifi_bridged_mode_opportunistic_shutdown = 0x7f120163
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_focus_state_layer_color = 0x7f0d0123
+hanson.xyz.vpnhotspotmod:color/material_harmonized_color_on_error = 0x7f06027c
+hanson.xyz.vpnhotspotmod:style/Theme.Design.NoActionBar = 0x7f13024c
+hanson.xyz.vpnhotspotmod:attr/behavior_peekHeight = 0x7f040072
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f1301d9
+hanson.xyz.vpnhotspotmod:attr/checkedTextViewStyle = 0x7f0400b5
+hanson.xyz.vpnhotspotmod:style/Theme.Design.Light.BottomSheetDialog = 0x7f13024a
+hanson.xyz.vpnhotspotmod:integer/mtrl_tab_indicator_anim_duration_ms = 0x7f0a003f
+hanson.xyz.vpnhotspotmod:attr/cornerSizeBottomRight = 0x7f040147
+hanson.xyz.vpnhotspotmod:string/v7_preference_on = 0x7f12015c
+hanson.xyz.vpnhotspotmod:attr/pref_dialogItemPadding = 0x7f040378
+hanson.xyz.vpnhotspotmod:drawable/material_ic_menu_arrow_down_black_24dp = 0x7f0800e8
+hanson.xyz.vpnhotspotmod:id/counterclockwise = 0x7f090098
+hanson.xyz.vpnhotspotmod:attr/layout_goneMarginStart = 0x7f0402a6
+hanson.xyz.vpnhotspotmod:attr/deltaPolarRadius = 0x7f040169
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_start_padding_icon = 0x7f0702ae
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Light.SearchResult.Title = 0x7f1301c7
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_autocomplete_text_field_caret_color = 0x7f0d00a4
+hanson.xyz.vpnhotspotmod:layout/mtrl_picker_dialog = 0x7f0c006b
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_primary_navigation_tab_with_icon_icon_size = 0x7f070166
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Spinner = 0x7f13034a
+hanson.xyz.vpnhotspotmod:attr/tabMinWidth = 0x7f04042c
+hanson.xyz.vpnhotspotmod:attr/thumbStrokeWidth = 0x7f04047c
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Snackbar = 0x7f13045f
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_translation_z_base = 0x7f0702b0
+hanson.xyz.vpnhotspotmod:attr/bottomSheetStyle = 0x7f04007d
+hanson.xyz.vpnhotspotmod:attr/materialDividerHeavyStyle = 0x7f0402eb
+hanson.xyz.vpnhotspotmod:attr/layout_goneMarginEnd = 0x7f0402a3
+hanson.xyz.vpnhotspotmod:attr/ratingBarStyle = 0x7f04039a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_date_today_label_text_color = 0x7f0d0014
+hanson.xyz.vpnhotspotmod:attr/layout_editor_absoluteY = 0x7f0402a1
+hanson.xyz.vpnhotspotmod:attr/layout_editor_absoluteX = 0x7f0402a0
+hanson.xyz.vpnhotspotmod:dimen/m3_small_fab_max_image_size = 0x7f0701e9
+hanson.xyz.vpnhotspotmod:attr/bottomSheetDialogTheme = 0x7f04007b
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_surface = 0x7f0601f3
+hanson.xyz.vpnhotspotmod:attr/layout_constraintWidth_percent = 0x7f04029e
+hanson.xyz.vpnhotspotmod:id/BOTTOM_START = 0x7f090002
+hanson.xyz.vpnhotspotmod:color/m3_appbar_overlay_color = 0x7f060073
+hanson.xyz.vpnhotspotmod:attr/chipStrokeColor = 0x7f0400c6
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_text_btn_icon_padding = 0x7f070269
+hanson.xyz.vpnhotspotmod:dimen/design_fab_translation_z_hovered_focused = 0x7f070075
+hanson.xyz.vpnhotspotmod:attr/listPreferredItemHeightSmall = 0x7f0402bf
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.DynamicColors.Light = 0x7f1302bf
+hanson.xyz.vpnhotspotmod:attr/layout_constraintVertical_chainStyle = 0x7f040299
+hanson.xyz.vpnhotspotmod:dimen/mtrl_snackbar_background_overlay_color_alpha = 0x7f0702ee
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_surface_dim = 0x7f0601cc
+hanson.xyz.vpnhotspotmod:string/settings_service_temp_hotspot_use_system = 0x7f120125
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_hover_state_layer_color = 0x7f0d0138
+hanson.xyz.vpnhotspotmod:color/m3_selection_control_ripple_color_selector = 0x7f060162
+hanson.xyz.vpnhotspotmod:attr/layout_constraintHeight_percent = 0x7f040288
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_text_size = 0x7f07026c
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral_variant20 = 0x7f060242
+hanson.xyz.vpnhotspotmod:string/mtrl_switch_track_decoration_path = 0x7f1200d4
+hanson.xyz.vpnhotspotmod:attr/layout_constraintLeft_creator = 0x7f04028c
+hanson.xyz.vpnhotspotmod:dimen/m3_appbar_scrim_height_trigger_medium = 0x7f0700ab
+hanson.xyz.vpnhotspotmod:attr/layout_constraintHeight_default = 0x7f040285
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonLargeStyle = 0x7f0401dd
+hanson.xyz.vpnhotspotmod:attr/layout_constraintGuide_begin = 0x7f040282
+hanson.xyz.vpnhotspotmod:animator/m3_extended_fab_change_size_collapse_motion_spec = 0x7f020010
+hanson.xyz.vpnhotspotmod:attr/textAppearanceDisplayLarge = 0x7f040447
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_day_vertical_padding = 0x7f070277
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_primary = 0x7f06017d
+hanson.xyz.vpnhotspotmod:xml/log_paths = 0x7f150004
+hanson.xyz.vpnhotspotmod:attr/endIconMinSize = 0x7f0401a3
+hanson.xyz.vpnhotspotmod:attr/customBoolean = 0x7f040155
+hanson.xyz.vpnhotspotmod:attr/boxStrokeWidthFocused = 0x7f040088
+hanson.xyz.vpnhotspotmod:attr/layout_constraintEnd_toStartOf = 0x7f040281
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_switch_thumb_unchecked_pressed__0 = 0x7f080028
+hanson.xyz.vpnhotspotmod:attr/layout_constraintCircleRadius = 0x7f04027e
+hanson.xyz.vpnhotspotmod:attr/fontVariationSettings = 0x7f040207
+hanson.xyz.vpnhotspotmod:color/colorPrimaryDark = 0x7f060034
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.ProgressIndicator = 0x7f13045c
+hanson.xyz.vpnhotspotmod:drawable/mtrl_switch_thumb_checked_pressed = 0x7f080104
+hanson.xyz.vpnhotspotmod:string/failure_reason_unknown = 0x7f120064
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_standard_control_y1 = 0x7f070211
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_error_supporting_text_color = 0x7f0d00ba
+hanson.xyz.vpnhotspotmod:attr/onPositiveCross = 0x7f04034c
+hanson.xyz.vpnhotspotmod:attr/layout_constraintBottom_creator = 0x7f040279
+hanson.xyz.vpnhotspotmod:drawable/notification_bg = 0x7f080111
+hanson.xyz.vpnhotspotmod:attr/actionModeWebSearchDrawable = 0x7f04001e
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.FloatingActionButton.Large.Secondary = 0x7f1303a8
+hanson.xyz.vpnhotspotmod:attr/layout_constrainedWidth = 0x7f040276
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_headline_type = 0x7f0d0152
+hanson.xyz.vpnhotspotmod:attr/layout_goneMarginRight = 0x7f0402a5
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat.DialogWhenLarge = 0x7f130055
+hanson.xyz.vpnhotspotmod:attr/contentScrim = 0x7f04013a
+hanson.xyz.vpnhotspotmod:attr/layout_constrainedHeight = 0x7f040275
+hanson.xyz.vpnhotspotmod:attr/cornerSizeTopRight = 0x7f040149
+hanson.xyz.vpnhotspotmod:style/Theme.Design = 0x7f130247
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.MaterialComponents.Title.Panel = 0x7f130137
+hanson.xyz.vpnhotspotmod:attr/layout_behavior = 0x7f040272
+hanson.xyz.vpnhotspotmod:attr/sizePercent = 0x7f0403dd
+hanson.xyz.vpnhotspotmod:drawable/mtrl_checkbox_button_icon_unchecked_indeterminate = 0x7f0800f3
+hanson.xyz.vpnhotspotmod:style/Base.V7.Theme.AppCompat.Light = 0x7f1300c0
+hanson.xyz.vpnhotspotmod:string/mtrl_switch_thumb_path_checked = 0x7f1200cf
+hanson.xyz.vpnhotspotmod:dimen/tooltip_horizontal_padding = 0x7f070323
+hanson.xyz.vpnhotspotmod:attr/cornerRadius = 0x7f040144
+hanson.xyz.vpnhotspotmod:attr/expandedHintEnabled = 0x7f0401b9
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral22 = 0x7f0600b7
+hanson.xyz.vpnhotspotmod:animator/mtrl_btn_unelevated_state_list_anim = 0x7f020016
+hanson.xyz.vpnhotspotmod:attr/lastBaselineToBottomHeight = 0x7f04026a
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Headline = 0x7f130023
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_disabled_selected_icon_color = 0x7f0d011b
+hanson.xyz.vpnhotspotmod:attr/elevationOverlayEnabled = 0x7f04019b
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_navigation_active_item_max_width = 0x7f070061
+hanson.xyz.vpnhotspotmod:attr/lStar = 0x7f040265
+hanson.xyz.vpnhotspotmod:xml/ga_ad_services_config = 0x7f150001
+hanson.xyz.vpnhotspotmod:string/repeater_clean_pog_failure = 0x7f1200ea
+hanson.xyz.vpnhotspotmod:id/scrollIndicatorUp = 0x7f0901a9
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_input_chip_container_height = 0x7f070135
+hanson.xyz.vpnhotspotmod:id/action_context_bar = 0x7f09003f
+hanson.xyz.vpnhotspotmod:attr/useDrawerArrowDrawable = 0x7f0404bf
+hanson.xyz.vpnhotspotmod:attr/fastScrollVerticalTrackDrawable = 0x7f0401d7
+hanson.xyz.vpnhotspotmod:attr/preferenceCategoryStyle = 0x7f040383
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_letter_spacing = 0x7f070260
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ActionBar.TabText = 0x7f13030c
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.HeadlineLarge = 0x7f130210
+hanson.xyz.vpnhotspotmod:string/noisy_su_failure = 0x7f1200d9
+hanson.xyz.vpnhotspotmod:string/abc_toolbar_collapse_description = 0x7f12001a
+hanson.xyz.vpnhotspotmod:attr/keylines = 0x7f040264
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_primary_container = 0x7f06029f
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral95 = 0x7f0600c5
+hanson.xyz.vpnhotspotmod:string/tethering_temp_hotspot = 0x7f120150
+hanson.xyz.vpnhotspotmod:string/mtrl_switch_thumb_path_pressed = 0x7f1200d2
+hanson.xyz.vpnhotspotmod:attr/keyboardIcon = 0x7f040263
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.BottomAppBar.Surface = 0x7f1302eb
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_card_container_shape = 0x7f0d00ac
+hanson.xyz.vpnhotspotmod:dimen/mtrl_alert_dialog_background_inset_end = 0x7f070244
+hanson.xyz.vpnhotspotmod:attr/customDimension = 0x7f040158
+hanson.xyz.vpnhotspotmod:attr/itemVerticalPadding = 0x7f040260
+hanson.xyz.vpnhotspotmod:color/browser_actions_bg_grey = 0x7f060027
+hanson.xyz.vpnhotspotmod:id/password_toggle = 0x7f090184
+hanson.xyz.vpnhotspotmod:color/material_timepicker_button_stroke = 0x7f0602c3
+hanson.xyz.vpnhotspotmod:color/m3_text_button_foreground_color_selector = 0x7f060211
+hanson.xyz.vpnhotspotmod:attr/customFloatValue = 0x7f040159
+hanson.xyz.vpnhotspotmod:attr/colorOnSecondary = 0x7f0400fa
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_standard_decelerate_control_x1 = 0x7f070213
+hanson.xyz.vpnhotspotmod:attr/itemTextColor = 0x7f04025f
+hanson.xyz.vpnhotspotmod:layout/design_navigation_item = 0x7f0c0027
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_primary95 = 0x7f0600ec
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_legacy_decelerate_control_y2 = 0x7f070206
+hanson.xyz.vpnhotspotmod:attr/itemTextAppearanceActiveBoldEnabled = 0x7f04025d
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.NavigationRailView.Badge = 0x7f1303da
+hanson.xyz.vpnhotspotmod:style/Theme.Design.BottomSheetDialog = 0x7f130248
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_on_surface_inverse = 0x7f060298
+hanson.xyz.vpnhotspotmod:styleable/Constraint = 0x7f14002a
+hanson.xyz.vpnhotspotmod:color/common_google_signin_btn_text_dark_pressed = 0x7f06003a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filled_button_label_text_color = 0x7f0d0045
+hanson.xyz.vpnhotspotmod:color/design_dark_default_color_on_background = 0x7f060046
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_icon_disabled = 0x7f080087
+hanson.xyz.vpnhotspotmod:dimen/m3_bottomappbar_horizontal_padding = 0x7f0700cd
+hanson.xyz.vpnhotspotmod:attr/itemRippleColor = 0x7f040250
+hanson.xyz.vpnhotspotmod:string/tethering_temp_hotspot_failure_generic = 0x7f120152
+hanson.xyz.vpnhotspotmod:attr/itemPaddingTop = 0x7f04024f
+hanson.xyz.vpnhotspotmod:styleable/AnimatedStateListDrawableCompat = 0x7f140009
+hanson.xyz.vpnhotspotmod:id/ghost_view = 0x7f0900dd
+hanson.xyz.vpnhotspotmod:color/mtrl_calendar_selected_range = 0x7f0602d0
+hanson.xyz.vpnhotspotmod:attr/logoScaleType = 0x7f0402c7
+hanson.xyz.vpnhotspotmod:attr/itemShapeInsetTop = 0x7f040257
+hanson.xyz.vpnhotspotmod:color/m3_button_ripple_color = 0x7f06007a
+hanson.xyz.vpnhotspotmod:raw/com_android_billingclient_registration_info = 0x7f110001
+hanson.xyz.vpnhotspotmod:attr/buttonBarButtonStyle = 0x7f04008a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_inactive_label_text_color = 0x7f0d0076
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_header_supporting_text_color = 0x7f0d0018
+hanson.xyz.vpnhotspotmod:attr/maxButtonHeight = 0x7f0402fd
+hanson.xyz.vpnhotspotmod:attr/labelStyle = 0x7f040267
+hanson.xyz.vpnhotspotmod:attr/colorOnPrimaryFixed = 0x7f0400f7
+hanson.xyz.vpnhotspotmod:id/clients = 0x7f090087
+hanson.xyz.vpnhotspotmod:attr/buttonTintMode = 0x7f04009a
+hanson.xyz.vpnhotspotmod:drawable/mtrl_dialog_background = 0x7f0800f5
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_radio_button_selected_pressed_state_layer_opacity = 0x7f07016b
+hanson.xyz.vpnhotspotmod:string/settings_service_ip_monitor = 0x7f120119
+hanson.xyz.vpnhotspotmod:macro/m3_comp_slider_disabled_inactive_track_color = 0x7f0d010f
+hanson.xyz.vpnhotspotmod:color/abc_color_highlight_material = 0x7f060004
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialTimePicker.Display = 0x7f1303d2
+hanson.xyz.vpnhotspotmod:attr/itemPaddingBottom = 0x7f04024e
+hanson.xyz.vpnhotspotmod:dimen/mtrl_low_ripple_hovered_alpha = 0x7f0702bd
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_z = 0x7f07026d
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_menu_headline_horizontal_padding = 0x7f0701c5
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialDivider = 0x7f130451
+hanson.xyz.vpnhotspotmod:attr/layout_constraintHeight_min = 0x7f040287
+hanson.xyz.vpnhotspotmod:attr/fontProviderSystemFontFamily = 0x7f040205
+hanson.xyz.vpnhotspotmod:attr/progressBarPadding = 0x7f040393
+hanson.xyz.vpnhotspotmod:attr/marginRightSystemWindowInsets = 0x7f0402ca
+hanson.xyz.vpnhotspotmod:integer/m3_sys_motion_duration_extra_long4 = 0x7f0a0013
+hanson.xyz.vpnhotspotmod:attr/finishPrimaryWithSecondary = 0x7f0401d8
+hanson.xyz.vpnhotspotmod:anim/btn_checkbox_to_unchecked_box_inner_merged_animation = 0x7f010010
+hanson.xyz.vpnhotspotmod:id/mtrl_picker_header_selection_text = 0x7f09014a
+hanson.xyz.vpnhotspotmod:attr/itemIconSize = 0x7f040249
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen = 0x7f1302fd
+hanson.xyz.vpnhotspotmod:attr/itemIconPadding = 0x7f040248
+hanson.xyz.vpnhotspotmod:styleable/ConstraintLayout_Layout = 0x7f14002b
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.MaterialAlertDialog = 0x7f1302cc
+hanson.xyz.vpnhotspotmod:string/item_view_role_description = 0x7f120070
+hanson.xyz.vpnhotspotmod:dimen/item_touch_helper_swipe_escape_max_velocity = 0x7f07009d
+hanson.xyz.vpnhotspotmod:attr/titleMargins = 0x7f040495
+hanson.xyz.vpnhotspotmod:attr/searchHintIcon = 0x7f0403ac
+hanson.xyz.vpnhotspotmod:dimen/material_emphasis_medium = 0x7f070233
+hanson.xyz.vpnhotspotmod:attr/itemActiveIndicatorStyle = 0x7f040243
+hanson.xyz.vpnhotspotmod:attr/dayInvalidStyle = 0x7f04015e
+hanson.xyz.vpnhotspotmod:attr/isPreferenceVisible = 0x7f040242
+hanson.xyz.vpnhotspotmod:attr/isMaterial3Theme = 0x7f040240
+hanson.xyz.vpnhotspotmod:dimen/m3_btn_elevation = 0x7f0700d3
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_surface_container = 0x7f060183
+hanson.xyz.vpnhotspotmod:animator/design_fab_show_motion_spec = 0x7f020002
+hanson.xyz.vpnhotspotmod:attr/cornerSize = 0x7f040145
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_switch_thumb_unchecked_checked__1 = 0x7f080027
+hanson.xyz.vpnhotspotmod:attr/layout_constraintHeight_max = 0x7f040286
+hanson.xyz.vpnhotspotmod:attr/insetForeground = 0x7f04023d
+hanson.xyz.vpnhotspotmod:attr/secondaryActivityName = 0x7f0403b1
+hanson.xyz.vpnhotspotmod:attr/cardViewStyle = 0x7f0400a2
+hanson.xyz.vpnhotspotmod:id/blocking = 0x7f09006b
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral80 = 0x7f06023b
+hanson.xyz.vpnhotspotmod:attr/scrimBackground = 0x7f0403aa
+hanson.xyz.vpnhotspotmod:attr/hideAnimationBehavior = 0x7f040219
+hanson.xyz.vpnhotspotmod:attr/customPixelDimension = 0x7f04015c
+hanson.xyz.vpnhotspotmod:attr/layout_constraintLeft_toRightOf = 0x7f04028e
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_install_text = 0x7f12003d
+hanson.xyz.vpnhotspotmod:attr/layoutDuringTransition = 0x7f04026e
+hanson.xyz.vpnhotspotmod:macro/m3_comp_dialog_headline_color = 0x7f0d0025
+hanson.xyz.vpnhotspotmod:attr/motionDebug = 0x7f040315
+hanson.xyz.vpnhotspotmod:attr/iconTintMode = 0x7f04022f
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral70 = 0x7f0600bf
+hanson.xyz.vpnhotspotmod:string/abc_menu_ctrl_shortcut_label = 0x7f120009
+hanson.xyz.vpnhotspotmod:attr/thumbIcon = 0x7f040476
+hanson.xyz.vpnhotspotmod:attr/fontProviderFetchStrategy = 0x7f040201
+hanson.xyz.vpnhotspotmod:color/material_slider_inactive_tick_marks_color = 0x7f0602bf
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_extended_fab_primary_container_height = 0x7f070111
+hanson.xyz.vpnhotspotmod:attr/itemBackground = 0x7f040244
+hanson.xyz.vpnhotspotmod:attr/indicatorSize = 0x7f04023a
+hanson.xyz.vpnhotspotmod:attr/iconTint = 0x7f04022e
+hanson.xyz.vpnhotspotmod:attr/adjustable = 0x7f040029
+hanson.xyz.vpnhotspotmod:drawable/$avd_show_password__2 = 0x7f080005
+hanson.xyz.vpnhotspotmod:attr/dividerInsetEnd = 0x7f040179
+hanson.xyz.vpnhotspotmod:anim/btn_checkbox_to_unchecked_icon_null_animation = 0x7f010012
+hanson.xyz.vpnhotspotmod:attr/layout_constraintTop_toTopOf = 0x7f040297
+hanson.xyz.vpnhotspotmod:attr/thumbRadius = 0x7f04047a
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral17 = 0x7f0600b5
+hanson.xyz.vpnhotspotmod:attr/thumbTint = 0x7f04047e
+hanson.xyz.vpnhotspotmod:attr/iconStartPadding = 0x7f04022d
+hanson.xyz.vpnhotspotmod:attr/pref_dialogMarginVertical = 0x7f04037a
+hanson.xyz.vpnhotspotmod:attr/behavior_expandedOffset = 0x7f04006d
+hanson.xyz.vpnhotspotmod:attr/extendedFloatingActionButtonPrimaryStyle = 0x7f0401c4
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.MaterialCalendar = 0x7f1302fc
+hanson.xyz.vpnhotspotmod:attr/listPreferredItemPaddingStart = 0x7f0402c3
+hanson.xyz.vpnhotspotmod:dimen/tooltip_y_offset_non_touch = 0x7f070328
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_bottom_padding = 0x7f0702a3
+hanson.xyz.vpnhotspotmod:dimen/mtrl_slider_widget_height = 0x7f0702eb
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_bar_hover_state_layer_color = 0x7f0d00e8
+hanson.xyz.vpnhotspotmod:attr/behavior_fitToContents = 0x7f04006e
+hanson.xyz.vpnhotspotmod:attr/iconSpaceReserved = 0x7f04022c
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_sheet_bottom_docked_modal_container_elevation = 0x7f07017d
+hanson.xyz.vpnhotspotmod:attr/layout_constraintBottom_toTopOf = 0x7f04027b
+hanson.xyz.vpnhotspotmod:attr/iconPadding = 0x7f04022a
+hanson.xyz.vpnhotspotmod:attr/listMenuViewStyle = 0x7f0402bb
+hanson.xyz.vpnhotspotmod:styleable/BottomSheetBehavior_Layout = 0x7f14001a
+hanson.xyz.vpnhotspotmod:color/cardview_light_background = 0x7f060030
+hanson.xyz.vpnhotspotmod:drawable/ic_action_build = 0x7f08009e
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_elevated_card_container_elevation = 0x7f07010e
+hanson.xyz.vpnhotspotmod:attr/iconEndPadding = 0x7f040228
+hanson.xyz.vpnhotspotmod:attr/stackFromEnd = 0x7f0403ec
+hanson.xyz.vpnhotspotmod:attr/horizontalOffsetWithText = 0x7f040225
+hanson.xyz.vpnhotspotmod:attr/drawableSize = 0x7f040186
+hanson.xyz.vpnhotspotmod:attr/textAppearanceButton = 0x7f040445
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonLargeSurfaceStyle = 0x7f0401de
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant40 = 0x7f0600d3
+hanson.xyz.vpnhotspotmod:attr/collapsedTitleTextAppearance = 0x7f0400df
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_rail_margin = 0x7f0702ce
+hanson.xyz.vpnhotspotmod:attr/hintEnabled = 0x7f04021f
+hanson.xyz.vpnhotspotmod:attr/hideOnContentScroll = 0x7f04021c
+hanson.xyz.vpnhotspotmod:color/m3_dynamic_highlighted_text = 0x7f060096
+hanson.xyz.vpnhotspotmod:attr/layout_constraintVertical_weight = 0x7f04029a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_secondary_navigation_tab_pressed_state_layer_color = 0x7f0d0102
+hanson.xyz.vpnhotspotmod:attr/colorOnPrimarySurface = 0x7f0400f9
+hanson.xyz.vpnhotspotmod:attr/chipStrokeWidth = 0x7f0400c7
+hanson.xyz.vpnhotspotmod:string/clients_popup_nickname = 0x7f120034
+hanson.xyz.vpnhotspotmod:attr/hideNavigationIcon = 0x7f04021b
+hanson.xyz.vpnhotspotmod:attr/chipSpacingVertical = 0x7f0400c3
+hanson.xyz.vpnhotspotmod:attr/autoCompleteTextViewStyle = 0x7f040041
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.LabelLarge = 0x7f130202
+hanson.xyz.vpnhotspotmod:attr/colorPrimaryFixed = 0x7f04010a
+hanson.xyz.vpnhotspotmod:attr/hideMotionSpec = 0x7f04021a
+hanson.xyz.vpnhotspotmod:attr/rippleColor = 0x7f0403a4
+hanson.xyz.vpnhotspotmod:id/withinBounds = 0x7f090229
+hanson.xyz.vpnhotspotmod:id/open_search_view_content_container = 0x7f090170
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_surface_dim = 0x7f0601aa
+hanson.xyz.vpnhotspotmod:color/design_error = 0x7f06005e
+hanson.xyz.vpnhotspotmod:string/common_signin_button_text = 0x7f120049
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_view_header_trailing_icon_color = 0x7f0d00fa
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_filled_card_container_elevation = 0x7f070128
+hanson.xyz.vpnhotspotmod:attr/alphabeticModifiers = 0x7f040033
+hanson.xyz.vpnhotspotmod:layout/browser_actions_context_menu_page = 0x7f0c001d
+hanson.xyz.vpnhotspotmod:color/design_default_color_secondary_variant = 0x7f06005c
+hanson.xyz.vpnhotspotmod:attr/actionBarSize = 0x7f040003
+hanson.xyz.vpnhotspotmod:attr/tickColor = 0x7f040480
+hanson.xyz.vpnhotspotmod:attr/headerLayout = 0x7f040213
+hanson.xyz.vpnhotspotmod:string/settings_help = 0x7f120107
+hanson.xyz.vpnhotspotmod:attr/dialogIcon = 0x7f04016d
+hanson.xyz.vpnhotspotmod:attr/haloRadius = 0x7f040212
+hanson.xyz.vpnhotspotmod:layout/notification_action_tombstone = 0x7f0c0077
+hanson.xyz.vpnhotspotmod:attr/minHeight = 0x7f04030a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_dialog_supporting_text_type = 0x7f0d0028
+hanson.xyz.vpnhotspotmod:layout/preference_widget_edittext_autocomplete = 0x7f0c0089
+hanson.xyz.vpnhotspotmod:attr/collapseContentDescription = 0x7f0400db
+hanson.xyz.vpnhotspotmod:attr/cardForegroundColor = 0x7f04009e
+hanson.xyz.vpnhotspotmod:attr/fontProviderCerts = 0x7f040200
+hanson.xyz.vpnhotspotmod:attr/layoutManager = 0x7f04026f
+hanson.xyz.vpnhotspotmod:color/mtrl_tabs_legacy_text_color_selector = 0x7f0602f6
+hanson.xyz.vpnhotspotmod:color/material_dynamic_color_light_on_error = 0x7f060230
+hanson.xyz.vpnhotspotmod:attr/layout_constraintTop_toBottomOf = 0x7f040296
+hanson.xyz.vpnhotspotmod:attr/closeIconTint = 0x7f0400d8
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_state_hover_state_layer_opacity = 0x7f070219
+hanson.xyz.vpnhotspotmod:attr/fontFamily = 0x7f0401fe
+hanson.xyz.vpnhotspotmod:attr/collapseIcon = 0x7f0400dc
+hanson.xyz.vpnhotspotmod:style/Widget.Compat.NotificationActionText = 0x7f130353
+hanson.xyz.vpnhotspotmod:attr/font = 0x7f0401fd
+hanson.xyz.vpnhotspotmod:drawable/$avd_show_password__1 = 0x7f080004
+hanson.xyz.vpnhotspotmod:styleable/StateListDrawableItem = 0x7f140095
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Material3.ActionBar.Title = 0x7f130209
+hanson.xyz.vpnhotspotmod:attr/constraint_referenced_ids = 0x7f040129
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TextInputEditText.FilledBox.Dense = 0x7f130466
+hanson.xyz.vpnhotspotmod:attr/flow_maxElementsWrap = 0x7f0401f6
+hanson.xyz.vpnhotspotmod:attr/maxAcceleration = 0x7f0402fb
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_black = 0x7f0600b0
+hanson.xyz.vpnhotspotmod:color/m3_button_background_color_selector = 0x7f060077
+hanson.xyz.vpnhotspotmod:attr/telltales_tailScale = 0x7f04043d
+hanson.xyz.vpnhotspotmod:color/androidx_core_secondary_text_default_material_light = 0x7f06001c
+hanson.xyz.vpnhotspotmod:attr/marginLeftSystemWindowInsets = 0x7f0402c9
+hanson.xyz.vpnhotspotmod:attr/cornerFamily = 0x7f04013f
+hanson.xyz.vpnhotspotmod:dimen/material_helper_text_font_1_3_padding_horizontal = 0x7f07023b
+hanson.xyz.vpnhotspotmod:color/accent_material_light = 0x7f06001a
+hanson.xyz.vpnhotspotmod:attr/textAppearanceListItemSmall = 0x7f04045a
+hanson.xyz.vpnhotspotmod:attr/flow_lastHorizontalStyle = 0x7f0401f3
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TextInputEditText.OutlinedBox = 0x7f1303f5
+hanson.xyz.vpnhotspotmod:dimen/mtrl_textinput_box_corner_radius_medium = 0x7f0702f8
+hanson.xyz.vpnhotspotmod:attr/flow_lastHorizontalBias = 0x7f0401f2
+hanson.xyz.vpnhotspotmod:style/Base.V14.ThemeOverlay.Material3.BottomSheetDialog = 0x7f13009e
+hanson.xyz.vpnhotspotmod:attr/splitMinWidth = 0x7f0403e8
+hanson.xyz.vpnhotspotmod:attr/flow_horizontalGap = 0x7f0401f0
+hanson.xyz.vpnhotspotmod:attr/buttonCompat = 0x7f04008f
+hanson.xyz.vpnhotspotmod:dimen/material_helper_text_font_1_3_padding_top = 0x7f07023c
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.RatingBar.Indicator = 0x7f130344
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_on_surface = 0x7f0601e9
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_circular_radius = 0x7f0702d5
+hanson.xyz.vpnhotspotmod:anim/design_bottom_sheet_slide_out = 0x7f01001a
+hanson.xyz.vpnhotspotmod:attr/layout_collapseParallaxMultiplier = 0x7f040274
+hanson.xyz.vpnhotspotmod:attr/expandedTitleMarginStart = 0x7f0401be
+hanson.xyz.vpnhotspotmod:attr/flow_firstVerticalStyle = 0x7f0401ed
+hanson.xyz.vpnhotspotmod:macro/m3_comp_filter_chip_container_shape = 0x7f0d0058
+hanson.xyz.vpnhotspotmod:attr/colorSurfaceDim = 0x7f04011c
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.AppCompat.Dark = 0x7f130299
+hanson.xyz.vpnhotspotmod:layout/mtrl_alert_dialog_actions = 0x7f0c0057
+hanson.xyz.vpnhotspotmod:dimen/m3_extended_fab_min_height = 0x7f0701af
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_icon_btn_padding_left = 0x7f07025d
+hanson.xyz.vpnhotspotmod:attr/summaryOn = 0x7f040414
+hanson.xyz.vpnhotspotmod:attr/autoSizeStepGranularity = 0x7f040046
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Chip.Action = 0x7f130426
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_today_description = 0x7f1200c9
+hanson.xyz.vpnhotspotmod:string/abc_capital_off = 0x7f120006
+hanson.xyz.vpnhotspotmod:attr/flow_firstHorizontalStyle = 0x7f0401eb
+hanson.xyz.vpnhotspotmod:attr/endIconTint = 0x7f0401a6
+hanson.xyz.vpnhotspotmod:attr/flow_firstHorizontalBias = 0x7f0401ea
+hanson.xyz.vpnhotspotmod:attr/cornerFamilyBottomLeft = 0x7f040140
+hanson.xyz.vpnhotspotmod:color/material_dynamic_color_dark_error_container = 0x7f06022b
+hanson.xyz.vpnhotspotmod:animator/m3_elevated_chip_state_list_anim = 0x7f02000f
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonStyle = 0x7f0401e7
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_selected_pressed_state_layer_color = 0x7f0d00df
+hanson.xyz.vpnhotspotmod:dimen/mtrl_bottomappbar_fabOffsetEndMode = 0x7f070250
+hanson.xyz.vpnhotspotmod:styleable/KeyTimeCycle = 0x7f140049
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonSmallSurfaceStyle = 0x7f0401e5
+hanson.xyz.vpnhotspotmod:styleable/CheckBoxPreference = 0x7f14001f
+hanson.xyz.vpnhotspotmod:layout/mtrl_picker_header_title_text = 0x7f0c0070
+hanson.xyz.vpnhotspotmod:attr/subheaderInsetEnd = 0x7f040405
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_tertiary0 = 0x7f0600fb
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.ChipGroup = 0x7f130392
+hanson.xyz.vpnhotspotmod:attr/actionTextColorAlpha = 0x7f040022
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral50 = 0x7f060120
+hanson.xyz.vpnhotspotmod:animator/design_appbar_state_list_animator = 0x7f020000
+hanson.xyz.vpnhotspotmod:dimen/m3_large_fab_size = 0x7f0701b7
+hanson.xyz.vpnhotspotmod:attr/badgeWidePadding = 0x7f04005f
+hanson.xyz.vpnhotspotmod:attr/layout_collapseMode = 0x7f040273
+hanson.xyz.vpnhotspotmod:dimen/m3_simple_item_color_selected_alpha = 0x7f0701e6
+hanson.xyz.vpnhotspotmod:dimen/preference_seekbar_value_minWidth = 0x7f07031b
+hanson.xyz.vpnhotspotmod:dimen/m3_bottomappbar_fab_cradle_margin = 0x7f0700c8
+hanson.xyz.vpnhotspotmod:style/TextAppearance.M3.Sys.Typescale.TitleSmall = 0x7f130207
+hanson.xyz.vpnhotspotmod:color/m3_navigation_rail_ripple_color_selector = 0x7f0600ab
+hanson.xyz.vpnhotspotmod:attr/checkedIconMargin = 0x7f0400b0
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.Material3.Corner.Top = 0x7f1301ab
+hanson.xyz.vpnhotspotmod:dimen/preference_icon_minWidth = 0x7f070318
+hanson.xyz.vpnhotspotmod:color/design_dark_default_color_background = 0x7f060044
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_outline_variant = 0x7f06019e
+hanson.xyz.vpnhotspotmod:attr/motionEasingEmphasized = 0x7f040328
+hanson.xyz.vpnhotspotmod:attr/transitionFlags = 0x7f0404b6
+hanson.xyz.vpnhotspotmod:layout/activity_main = 0x7f0c001c
+hanson.xyz.vpnhotspotmod:attr/fastScrollHorizontalThumbDrawable = 0x7f0401d4
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.FloatingActionButton.Small.Primary = 0x7f1303ad
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Dialog = 0x7f13027c
+hanson.xyz.vpnhotspotmod:attr/cornerSizeBottomLeft = 0x7f040146
+hanson.xyz.vpnhotspotmod:animator/fragment_close_exit = 0x7f020004
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Light.Dialog.FixedSize = 0x7f130079
+hanson.xyz.vpnhotspotmod:color/mtrl_navigation_bar_colored_item_tint = 0x7f0602e2
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_icon_light = 0x7f080088
+hanson.xyz.vpnhotspotmod:anim/btn_checkbox_to_unchecked_check_path_merged_animation = 0x7f010011
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_focus_handle_color = 0x7f0d0130
+hanson.xyz.vpnhotspotmod:anim/abc_tooltip_enter = 0x7f01000b
+hanson.xyz.vpnhotspotmod:styleable/LoadingImageView = 0x7f140051
+hanson.xyz.vpnhotspotmod:anim/m3_side_sheet_exit_to_left = 0x7f010028
+hanson.xyz.vpnhotspotmod:attr/extendedFloatingActionButtonStyle = 0x7f0401c6
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_bar_focus_state_layer_opacity = 0x7f07013f
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_bottom_app_bar_container_height = 0x7f070105
+hanson.xyz.vpnhotspotmod:drawable/mtrl_switch_thumb_unchecked = 0x7f080109
+hanson.xyz.vpnhotspotmod:attr/expandedTitleTextAppearance = 0x7f0401c0
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_sheet_bottom_docked_drag_handle_height = 0x7f07017b
+hanson.xyz.vpnhotspotmod:style/Base.V14.ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f1300a3
+hanson.xyz.vpnhotspotmod:id/unblock = 0x7f090216
+hanson.xyz.vpnhotspotmod:attr/boxCornerRadiusTopEnd = 0x7f040083
+hanson.xyz.vpnhotspotmod:attr/expandedTitleMarginTop = 0x7f0401bf
+hanson.xyz.vpnhotspotmod:styleable/ActionMenuItemView = 0x7f140002
+hanson.xyz.vpnhotspotmod:layout/abc_action_menu_item_layout = 0x7f0c0002
+hanson.xyz.vpnhotspotmod:anim/btn_radio_to_on_mtrl_ring_outer_animation = 0x7f010017
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.CompoundButton.RadioButton = 0x7f130431
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_unselected_pressed_state_layer_color = 0x7f0d00e6
+hanson.xyz.vpnhotspotmod:id/action_menu_divider = 0x7f090042
+hanson.xyz.vpnhotspotmod:attr/expandedTitleMarginEnd = 0x7f0401bd
+hanson.xyz.vpnhotspotmod:attr/itemShapeAppearance = 0x7f040251
+hanson.xyz.vpnhotspotmod:attr/fastScrollHorizontalTrackDrawable = 0x7f0401d5
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_on_tertiary_container = 0x7f0601be
+hanson.xyz.vpnhotspotmod:styleable/ChipGroup = 0x7f140022
+hanson.xyz.vpnhotspotmod:attr/textAppearanceBodyMedium = 0x7f040443
+hanson.xyz.vpnhotspotmod:drawable/abc_btn_radio_to_on_mtrl_015 = 0x7f080035
+hanson.xyz.vpnhotspotmod:attr/switchPadding = 0x7f040417
+hanson.xyz.vpnhotspotmod:style/Preference.DropDown = 0x7f130152
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_period_selector_container_shape = 0x7f0d0153
+hanson.xyz.vpnhotspotmod:id/transitionToEnd = 0x7f09020e
+hanson.xyz.vpnhotspotmod:attr/chipBackgroundColor = 0x7f0400b6
+hanson.xyz.vpnhotspotmod:style/Base.V28.Theme.AppCompat.Light = 0x7f1300bd
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_active_focus_label_text_color = 0x7f0d007c
+hanson.xyz.vpnhotspotmod:attr/maxNumber = 0x7f040302
+hanson.xyz.vpnhotspotmod:attr/expandedTitleMarginBottom = 0x7f0401bc
+hanson.xyz.vpnhotspotmod:dimen/mtrl_exposed_dropdown_menu_popup_vertical_padding = 0x7f0702a2
+hanson.xyz.vpnhotspotmod:string/repeater_failure_disconnected = 0x7f1200ed
+hanson.xyz.vpnhotspotmod:color/background_floating_material_dark = 0x7f06001d
+hanson.xyz.vpnhotspotmod:attr/state_lifted = 0x7f0403fc
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant92 = 0x7f0600db
+hanson.xyz.vpnhotspotmod:anim/abc_slide_out_bottom = 0x7f010009
+hanson.xyz.vpnhotspotmod:attr/materialCalendarHeaderSelection = 0x7f0402dc
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_linear_control_y1 = 0x7f070209
+hanson.xyz.vpnhotspotmod:attr/colorOnPrimary = 0x7f0400f5
+hanson.xyz.vpnhotspotmod:attr/expandedTitleMargin = 0x7f0401bb
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_primary10 = 0x7f06013b
+hanson.xyz.vpnhotspotmod:attr/expandedTitleGravity = 0x7f0401ba
+hanson.xyz.vpnhotspotmod:attr/drawerArrowStyle = 0x7f04018b
+hanson.xyz.vpnhotspotmod:color/m3_popupmenu_overlay_color = 0x7f0600ac
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Sys.Shape.Corner.None = 0x7f130192
+hanson.xyz.vpnhotspotmod:attr/colorTertiary = 0x7f040120
+hanson.xyz.vpnhotspotmod:attr/fastScrollVerticalThumbDrawable = 0x7f0401d6
+hanson.xyz.vpnhotspotmod:attr/layout_scrollInterpolator = 0x7f0402ad
+hanson.xyz.vpnhotspotmod:attr/errorTextColor = 0x7f0401b6
+hanson.xyz.vpnhotspotmod:dimen/abc_action_bar_elevation_material = 0x7f070005
+hanson.xyz.vpnhotspotmod:attr/titleMargin = 0x7f040490
+hanson.xyz.vpnhotspotmod:attr/homeLayout = 0x7f040223
+hanson.xyz.vpnhotspotmod:attr/errorIconDrawable = 0x7f0401b1
+hanson.xyz.vpnhotspotmod:color/material_on_surface_stroke = 0x7f060287
+hanson.xyz.vpnhotspotmod:attr/drawerLayoutCornerSize = 0x7f04018c
+hanson.xyz.vpnhotspotmod:attr/itemSpacing = 0x7f040258
+hanson.xyz.vpnhotspotmod:style/Base.DialogWindowTitleBackground.AppCompat = 0x7f130016
+hanson.xyz.vpnhotspotmod:attr/fragment = 0x7f04020c
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_secondary10 = 0x7f0600ef
+hanson.xyz.vpnhotspotmod:style/MaterialAlertDialog.Material3.Title.Text = 0x7f13012f
+hanson.xyz.vpnhotspotmod:color/mtrl_navigation_item_text_color = 0x7f0602e8
+hanson.xyz.vpnhotspotmod:attr/enableCopying = 0x7f04019d
+hanson.xyz.vpnhotspotmod:attr/ensureMinTouchTargetSize = 0x7f0401aa
+hanson.xyz.vpnhotspotmod:id/centerInside = 0x7f09007c
+hanson.xyz.vpnhotspotmod:attr/enforceMaterialTheme = 0x7f0401a8
+hanson.xyz.vpnhotspotmod:attr/endIconMode = 0x7f0401a4
+hanson.xyz.vpnhotspotmod:attr/endIconDrawable = 0x7f0401a2
+hanson.xyz.vpnhotspotmod:styleable/MotionHelper = 0x7f140069
+hanson.xyz.vpnhotspotmod:attr/entries = 0x7f0401ab
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f130336
+hanson.xyz.vpnhotspotmod:attr/badgeRadius = 0x7f040057
+hanson.xyz.vpnhotspotmod:attr/enabled = 0x7f04019f
+hanson.xyz.vpnhotspotmod:color/material_dynamic_tertiary90 = 0x7f060270
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_error99 = 0x7f060114
+hanson.xyz.vpnhotspotmod:attr/layout_constraintHorizontal_weight = 0x7f04028b
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TextView = 0x7f130471
+hanson.xyz.vpnhotspotmod:id/enterAlways = 0x7f0900c7
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonSmallStyle = 0x7f0401e4
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_on_error_container = 0x7f060292
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_error_outline_color = 0x7f0d00b9
+hanson.xyz.vpnhotspotmod:attr/materialCalendarHeaderConfirmButton = 0x7f0402d9
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonSecondaryStyle = 0x7f0401e1
+hanson.xyz.vpnhotspotmod:drawable/ic_device_wifi_lock = 0x7f0800be
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActionBar.TabView = 0x7f13032a
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_error60 = 0x7f06010f
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_track_color = 0x7f0d0141
+hanson.xyz.vpnhotspotmod:attr/emojiCompatEnabled = 0x7f04019c
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_standard_control_x1 = 0x7f07020f
+hanson.xyz.vpnhotspotmod:attr/elevationOverlayColor = 0x7f04019a
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.AppBarLayout.PrimarySurface = 0x7f130409
+hanson.xyz.vpnhotspotmod:drawable/abc_ic_menu_cut_mtrl_alpha = 0x7f080044
+hanson.xyz.vpnhotspotmod:integer/show_password_duration = 0x7f0a0045
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_outlined_text_field_focus_outline_width = 0x7f07015d
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.HeaderLayout = 0x7f130444
+hanson.xyz.vpnhotspotmod:color/common_google_signin_btn_text_dark = 0x7f060036
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_navigation_elevation = 0x7f070064
+hanson.xyz.vpnhotspotmod:color/material_personalized_primary_text_disable_only = 0x7f0602bb
+hanson.xyz.vpnhotspotmod:string/wifi_allowed_list = 0x7f12015f
+hanson.xyz.vpnhotspotmod:attr/editTextPreferenceStyle = 0x7f040196
+hanson.xyz.vpnhotspotmod:attr/animateMenuItems = 0x7f040036
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_circular_inset = 0x7f0702d1
+hanson.xyz.vpnhotspotmod:dimen/m3_searchview_divider_size = 0x7f0701de
+hanson.xyz.vpnhotspotmod:dimen/preference_seekbar_padding_horizontal = 0x7f070319
+hanson.xyz.vpnhotspotmod:attr/editTextColor = 0x7f040195
+hanson.xyz.vpnhotspotmod:dimen/abc_dialog_corner_radius_material = 0x7f07001b
+hanson.xyz.vpnhotspotmod:attr/layout_constraintBottom_toBottomOf = 0x7f04027a
+hanson.xyz.vpnhotspotmod:macro/m3_comp_top_app_bar_large_headline_type = 0x7f0d016d
+hanson.xyz.vpnhotspotmod:attr/boxStrokeWidth = 0x7f040087
+hanson.xyz.vpnhotspotmod:color/design_dark_default_color_on_primary = 0x7f060048
+hanson.xyz.vpnhotspotmod:attr/showText = 0x7f0403cf
+hanson.xyz.vpnhotspotmod:attr/tickColorInactive = 0x7f040482
+hanson.xyz.vpnhotspotmod:color/m3_dynamic_primary_text_disable_only = 0x7f060098
+hanson.xyz.vpnhotspotmod:attr/chipCornerRadius = 0x7f0400b7
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu = 0x7f1303f9
+hanson.xyz.vpnhotspotmod:attr/forceDefaultNavigationOnClickListener = 0x7f04020a
+hanson.xyz.vpnhotspotmod:attr/drawerLayoutStyle = 0x7f04018d
+hanson.xyz.vpnhotspotmod:attr/logoDescription = 0x7f0402c6
+hanson.xyz.vpnhotspotmod:style/PreferenceFragmentList.Material = 0x7f130165
+hanson.xyz.vpnhotspotmod:drawable/m3_avd_show_password = 0x7f0800d6
+hanson.xyz.vpnhotspotmod:macro/m3_comp_search_view_header_supporting_text_type = 0x7f0d00f9
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_display_1_material = 0x7f070043
+hanson.xyz.vpnhotspotmod:attr/gapBetweenBars = 0x7f04020e
+hanson.xyz.vpnhotspotmod:integer/mtrl_view_invisible = 0x7f0a0041
+hanson.xyz.vpnhotspotmod:attr/errorAccessibilityLabel = 0x7f0401ad
+hanson.xyz.vpnhotspotmod:attr/tintNavigationIcon = 0x7f04048b
+hanson.xyz.vpnhotspotmod:id/search_button = 0x7f0901ae
+hanson.xyz.vpnhotspotmod:attr/drawableStartCompat = 0x7f040187
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_item_vertical_padding = 0x7f0701c3
+hanson.xyz.vpnhotspotmod:attr/materialCalendarStyle = 0x7f0402e1
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TextInputEditText.FilledBox = 0x7f130465
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant80 = 0x7f0600d8
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.PopupMenu.Large = 0x7f1301e5
+hanson.xyz.vpnhotspotmod:attr/materialDividerStyle = 0x7f0402ec
+hanson.xyz.vpnhotspotmod:drawable/mtrl_checkbox_button = 0x7f0800eb
+hanson.xyz.vpnhotspotmod:attr/itemShapeFillColor = 0x7f040253
+hanson.xyz.vpnhotspotmod:id/material_hour_tv = 0x7f09011f
+hanson.xyz.vpnhotspotmod:attr/thumbElevation = 0x7f040475
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat.Light.Dialog = 0x7f130058
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_on_surface_variant = 0x7f06019a
+hanson.xyz.vpnhotspotmod:attr/colorPrimaryVariant = 0x7f04010e
+hanson.xyz.vpnhotspotmod:attr/iconGravity = 0x7f040229
+hanson.xyz.vpnhotspotmod:drawable/tooltip_frame_dark = 0x7f080122
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral92 = 0x7f0600c3
+hanson.xyz.vpnhotspotmod:string/com.google.firebase.crashlytics.mapping_file_id = 0x7f120038
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_active_focus_state_layer_color = 0x7f0d007d
+hanson.xyz.vpnhotspotmod:layout/mtrl_picker_header_selection_text = 0x7f0c006f
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_primary_container = 0x7f0601c2
+hanson.xyz.vpnhotspotmod:attr/buttonSize = 0x7f040096
+hanson.xyz.vpnhotspotmod:attr/dividerThickness = 0x7f04017c
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.Toolbar.Button.Navigation = 0x7f1300ff
+hanson.xyz.vpnhotspotmod:attr/textInputOutlinedExposedDropdownMenuStyle = 0x7f04046d
+hanson.xyz.vpnhotspotmod:attr/dividerPadding = 0x7f04017b
+hanson.xyz.vpnhotspotmod:id/TOP_START = 0x7f09000d
+hanson.xyz.vpnhotspotmod:anim/m3_bottom_sheet_slide_in = 0x7f010022
+hanson.xyz.vpnhotspotmod:drawable/abc_btn_check_to_on_mtrl_015 = 0x7f08002f
+hanson.xyz.vpnhotspotmod:attr/dividerInsetStart = 0x7f04017a
+hanson.xyz.vpnhotspotmod:attr/tabIndicator = 0x7f040423
+hanson.xyz.vpnhotspotmod:attr/divider = 0x7f040176
+hanson.xyz.vpnhotspotmod:style/Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f1300a2
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_tertiary30 = 0x7f0600ff
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.Day.Invalid = 0x7f1303b8
+hanson.xyz.vpnhotspotmod:attr/contentPadding = 0x7f040133
+hanson.xyz.vpnhotspotmod:layout/abc_select_dialog_material = 0x7f0c001a
+hanson.xyz.vpnhotspotmod:attr/layoutDescription = 0x7f04026d
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox = 0x7f13046d
+hanson.xyz.vpnhotspotmod:style/Base.V21.ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f1300b0
+hanson.xyz.vpnhotspotmod:color/accent_material_dark = 0x7f060019
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Snackbar.FullWidth = 0x7f1303ee
+hanson.xyz.vpnhotspotmod:id/preferences_detail = 0x7f09018f
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant20 = 0x7f0600ce
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f1301dd
+hanson.xyz.vpnhotspotmod:attr/dialogPreferenceStyle = 0x7f040170
+hanson.xyz.vpnhotspotmod:attr/dialogMessage = 0x7f04016f
+hanson.xyz.vpnhotspotmod:color/ripple_material_dark = 0x7f06030b
+hanson.xyz.vpnhotspotmod:attr/itemIconTint = 0x7f04024a
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.YearNavigationButton = 0x7f130450
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialDivider.Heavy = 0x7f1303ce
+hanson.xyz.vpnhotspotmod:attr/deriveConstraintsFrom = 0x7f04016b
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Toolbar.Surface = 0x7f130401
+hanson.xyz.vpnhotspotmod:string/connected_state_failed = 0x7f12004f
+hanson.xyz.vpnhotspotmod:layout/abc_activity_chooser_view_list_item = 0x7f0c0007
+hanson.xyz.vpnhotspotmod:id/disablePostScroll = 0x7f0900af
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_extended_fab_primary_pressed_container_elevation = 0x7f070117
+hanson.xyz.vpnhotspotmod:attr/defaultState = 0x7f040166
+hanson.xyz.vpnhotspotmod:attr/imageAspectRatioAdjust = 0x7f040232
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_outlined_card_container_elevation = 0x7f070155
+hanson.xyz.vpnhotspotmod:color/mtrl_outlined_stroke_color = 0x7f0602ec
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral60 = 0x7f060239
+hanson.xyz.vpnhotspotmod:macro/m3_comp_sheet_bottom_docked_container_color = 0x7f0d0105
+hanson.xyz.vpnhotspotmod:dimen/m3_searchbar_margin_vertical = 0x7f0701d9
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral_variant99 = 0x7f06024b
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.AppCompat = 0x7f130297
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_active_focus_label_text_color = 0x7f0d0063
+hanson.xyz.vpnhotspotmod:attr/dayTodayStyle = 0x7f040161
+hanson.xyz.vpnhotspotmod:attr/dayStyle = 0x7f040160
+hanson.xyz.vpnhotspotmod:id/browser_actions_menu_items = 0x7f090074
+hanson.xyz.vpnhotspotmod:attr/itemTextAppearance = 0x7f04025b
+hanson.xyz.vpnhotspotmod:attr/itemStrokeColor = 0x7f040259
+hanson.xyz.vpnhotspotmod:attr/customColorDrawableValue = 0x7f040156
+hanson.xyz.vpnhotspotmod:attr/drawableBottomCompat = 0x7f040182
+hanson.xyz.vpnhotspotmod:color/material_cursor_color = 0x7f060226
+hanson.xyz.vpnhotspotmod:attr/cursorErrorColor = 0x7f040153
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_dialog_btn_min_width = 0x7f070257
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral10 = 0x7f060116
+hanson.xyz.vpnhotspotmod:drawable/abc_vector_test = 0x7f080077
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_tertiary50 = 0x7f060101
+hanson.xyz.vpnhotspotmod:attr/title = 0x7f04048c
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_0 = 0x7f090011
+hanson.xyz.vpnhotspotmod:color/mtrl_filled_stroke_color = 0x7f0602e0
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral0 = 0x7f060115
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CardView.Elevated = 0x7f130384
+hanson.xyz.vpnhotspotmod:attr/motionDurationLong1 = 0x7f04031a
+hanson.xyz.vpnhotspotmod:dimen/material_clock_size = 0x7f07022c
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.ActionBar = 0x7f1302e2
+hanson.xyz.vpnhotspotmod:macro/m3_sys_color_light_surface_tint = 0x7f0d0177
+hanson.xyz.vpnhotspotmod:attr/counterEnabled = 0x7f04014a
+hanson.xyz.vpnhotspotmod:attr/fontProviderPackage = 0x7f040203
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Inverse = 0x7f1301c3
+hanson.xyz.vpnhotspotmod:macro/m3_comp_top_app_bar_small_headline_color = 0x7f0d0171
+hanson.xyz.vpnhotspotmod:id/image = 0x7f0900f4
+hanson.xyz.vpnhotspotmod:attr/controlBackground = 0x7f04013c
+hanson.xyz.vpnhotspotmod:attr/visibilityMode = 0x7f0404c6
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_surface_container_high = 0x7f0602aa
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral_variant100 = 0x7f06012f
+hanson.xyz.vpnhotspotmod:attr/counterMaxLength = 0x7f04014b
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_neutral_variant30 = 0x7f060131
+hanson.xyz.vpnhotspotmod:attr/cornerFamilyTopLeft = 0x7f040142
+hanson.xyz.vpnhotspotmod:attr/itemFillColor = 0x7f040245
+hanson.xyz.vpnhotspotmod:attr/flow_verticalBias = 0x7f0401f9
+hanson.xyz.vpnhotspotmod:style/AlertDialog.AppCompat = 0x7f130000
+hanson.xyz.vpnhotspotmod:attr/coplanarSiblingViewId = 0x7f04013e
+hanson.xyz.vpnhotspotmod:styleable/StateListDrawable = 0x7f140094
+hanson.xyz.vpnhotspotmod:drawable/ic_device_battery_charging_full = 0x7f0800b9
+hanson.xyz.vpnhotspotmod:attr/contrast = 0x7f04013b
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonPrimaryStyle = 0x7f0401e0
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_text_input_day_abbr = 0x7f1200c6
+hanson.xyz.vpnhotspotmod:attr/state_dragged = 0x7f0403f8
+hanson.xyz.vpnhotspotmod:bool/config_materialPreferenceIconSpaceReserved = 0x7f050003
+hanson.xyz.vpnhotspotmod:macro/m3_comp_secondary_navigation_tab_active_indicator_color = 0x7f0d00fb
+hanson.xyz.vpnhotspotmod:color/m3_card_stroke_color = 0x7f060080
+hanson.xyz.vpnhotspotmod:interpolator/m3_sys_motion_easing_standard_decelerate = 0x7f0b000d
+hanson.xyz.vpnhotspotmod:attr/hideOnScroll = 0x7f04021d
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CircularProgressIndicator.Medium = 0x7f130395
+hanson.xyz.vpnhotspotmod:color/material_grey_100 = 0x7f060273
+hanson.xyz.vpnhotspotmod:attr/barrierDirection = 0x7f040068
+hanson.xyz.vpnhotspotmod:attr/boxStrokeErrorColor = 0x7f040086
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActionMode.Inverse = 0x7f13032f
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.MaterialTimePicker = 0x7f1302d1
+hanson.xyz.vpnhotspotmod:color/mtrl_chip_text_color = 0x7f0602d6
+hanson.xyz.vpnhotspotmod:plurals/notification_connected_devices = 0x7f100004
+hanson.xyz.vpnhotspotmod:attr/colorOutline = 0x7f040105
+hanson.xyz.vpnhotspotmod:color/m3_assist_chip_icon_tint_color = 0x7f060074
+hanson.xyz.vpnhotspotmod:attr/extendedFloatingActionButtonSurfaceStyle = 0x7f0401c7
+hanson.xyz.vpnhotspotmod:attr/contentPaddingStart = 0x7f040138
+hanson.xyz.vpnhotspotmod:attr/indeterminateAnimationType = 0x7f040234
+hanson.xyz.vpnhotspotmod:layout/fragment_ebeg = 0x7f0c0034
+hanson.xyz.vpnhotspotmod:attr/passwordToggleTintMode = 0x7f040363
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_on_primary_fixed = 0x7f0601d0
+hanson.xyz.vpnhotspotmod:attr/buttonIconTintMode = 0x7f040094
+hanson.xyz.vpnhotspotmod:attr/contentPaddingRight = 0x7f040137
+hanson.xyz.vpnhotspotmod:layout/preference_category = 0x7f0c007d
+hanson.xyz.vpnhotspotmod:anim/btn_radio_to_off_mtrl_ring_outer_path_animation = 0x7f010015
+hanson.xyz.vpnhotspotmod:id/mtrl_picker_header_toggle = 0x7f09014c
+hanson.xyz.vpnhotspotmod:attr/duration = 0x7f040192
+hanson.xyz.vpnhotspotmod:attr/contentPaddingLeft = 0x7f040136
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_on_primary = 0x7f0601b7
+hanson.xyz.vpnhotspotmod:attr/buttonTint = 0x7f040099
+hanson.xyz.vpnhotspotmod:attr/actionBarItemBackground = 0x7f040001
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_unselected_hover_handle_color = 0x7f0d0136
+hanson.xyz.vpnhotspotmod:attr/chipStyle = 0x7f0400c8
+hanson.xyz.vpnhotspotmod:attr/contentInsetStartWithNavigation = 0x7f040132
+hanson.xyz.vpnhotspotmod:id/contiguous = 0x7f090095
+hanson.xyz.vpnhotspotmod:dimen/m3_bottomappbar_fab_cradle_vertical_offset = 0x7f0700ca
+hanson.xyz.vpnhotspotmod:attr/constraintSet = 0x7f040126
+hanson.xyz.vpnhotspotmod:attr/expandActivityOverflowButtonDrawable = 0x7f0401b7
+hanson.xyz.vpnhotspotmod:attr/badgeVerticalPadding = 0x7f04005e
+hanson.xyz.vpnhotspotmod:attr/alertDialogStyle = 0x7f04002c
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.FloatingActionButton.Large.Surface = 0x7f1303a9
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_bar_container_height = 0x7f07013e
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TextInputEditText.OutlinedBox = 0x7f130467
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored = 0x7f13003e
+hanson.xyz.vpnhotspotmod:drawable/googleg_disabled_color_18 = 0x7f08009a
+hanson.xyz.vpnhotspotmod:attr/summaryOff = 0x7f040413
+hanson.xyz.vpnhotspotmod:style/Base.V22.Theme.AppCompat = 0x7f1300b1
+hanson.xyz.vpnhotspotmod:attr/dragDirection = 0x7f04017e
+hanson.xyz.vpnhotspotmod:array/settings_service_masquerade_values = 0x7f030003
+hanson.xyz.vpnhotspotmod:attr/contentInsetLeft = 0x7f04012f
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ActivityChooserView = 0x7f130330
+hanson.xyz.vpnhotspotmod:attr/queryHint = 0x7f040396
+hanson.xyz.vpnhotspotmod:attr/constraints = 0x7f04012a
+hanson.xyz.vpnhotspotmod:attr/extendStrategy = 0x7f0401c3
+hanson.xyz.vpnhotspotmod:animator/fragment_fade_exit = 0x7f020006
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_secondary = 0x7f06017f
+hanson.xyz.vpnhotspotmod:attr/actionBarPopupTheme = 0x7f040002
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_primary_navigation_tab_active_focus_state_layer_opacity = 0x7f07015f
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.ChipGroup = 0x7f13042a
+hanson.xyz.vpnhotspotmod:id/mtrl_calendar_days_of_week = 0x7f09013d
+hanson.xyz.vpnhotspotmod:dimen/notification_top_pad_large_text = 0x7f070316
+hanson.xyz.vpnhotspotmod:attr/tabIndicatorFullWidth = 0x7f040427
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.CircularProgressIndicator.Small = 0x7f130396
+hanson.xyz.vpnhotspotmod:id/tag_on_receive_content_mime_types = 0x7f0901eb
+hanson.xyz.vpnhotspotmod:attr/colorOnContainer = 0x7f0400f1
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.BottomAppBar = 0x7f130410
+hanson.xyz.vpnhotspotmod:attr/actionModePopupWindowStyle = 0x7f040018
+hanson.xyz.vpnhotspotmod:dimen/material_clock_hand_stroke_width = 0x7f070226
+hanson.xyz.vpnhotspotmod:attr/collapsedSize = 0x7f0400dd
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_text_dark = 0x7f08008c
+hanson.xyz.vpnhotspotmod:style/ShapeAppearanceOverlay.Material3.NavigationView.Item = 0x7f1301ad
+hanson.xyz.vpnhotspotmod:style/Platform.ThemeOverlay.AppCompat = 0x7f130141
+hanson.xyz.vpnhotspotmod:dimen/highlight_alpha_material_light = 0x7f070097
+hanson.xyz.vpnhotspotmod:dimen/abc_button_inset_horizontal_material = 0x7f070012
+hanson.xyz.vpnhotspotmod:anim/mtrl_card_lowers_interpolator = 0x7f01002c
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_emphasized_accelerate_control_y2 = 0x7f0701f6
+hanson.xyz.vpnhotspotmod:color/m3_dynamic_default_color_secondary_text = 0x7f060095
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonSmallPrimaryStyle = 0x7f0401e2
+hanson.xyz.vpnhotspotmod:drawable/abc_ic_go_search_api_material = 0x7f080042
+hanson.xyz.vpnhotspotmod:attr/buttonGravity = 0x7f040090
+hanson.xyz.vpnhotspotmod:attr/layout_constraintEnd_toEndOf = 0x7f040280
+hanson.xyz.vpnhotspotmod:attr/content = 0x7f04012b
+hanson.xyz.vpnhotspotmod:attr/clearTop = 0x7f0400cd
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_top_app_bar_small_container_height = 0x7f0701a8
+hanson.xyz.vpnhotspotmod:attr/colorSurfaceContainerLowest = 0x7f04011b
+hanson.xyz.vpnhotspotmod:color/mtrl_btn_text_color_selector = 0x7f0602cd
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_switch_thumb_pressed_unchecked__0 = 0x7f080025
+hanson.xyz.vpnhotspotmod:attr/layout_constraintRight_toLeftOf = 0x7f040290
+hanson.xyz.vpnhotspotmod:attr/layout_optimizationLevel = 0x7f0402aa
+hanson.xyz.vpnhotspotmod:attr/alertDialogButtonGroupStyle = 0x7f04002a
+hanson.xyz.vpnhotspotmod:color/abc_primary_text_material_dark = 0x7f06000b
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.TextButton.Dialog = 0x7f13037c
+hanson.xyz.vpnhotspotmod:anim/abc_fade_out = 0x7f010001
+hanson.xyz.vpnhotspotmod:string/settings_misc_donate_more = 0x7f12010a
+hanson.xyz.vpnhotspotmod:attr/editTextBackground = 0x7f040194
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_text_field_focus_label_text_color = 0x7f0d00bd
+hanson.xyz.vpnhotspotmod:dimen/m3_card_dragged_z = 0x7f0700e8
+hanson.xyz.vpnhotspotmod:attr/allowDividerAfterLastItem = 0x7f04002f
+hanson.xyz.vpnhotspotmod:attr/autoSizeMinTextSize = 0x7f040044
+hanson.xyz.vpnhotspotmod:attr/layout_constraintHorizontal_bias = 0x7f040289
+hanson.xyz.vpnhotspotmod:styleable/MenuGroup = 0x7f140064
+hanson.xyz.vpnhotspotmod:attr/subtitleTextColor = 0x7f04040c
+hanson.xyz.vpnhotspotmod:style/Platform.MaterialComponents = 0x7f13013d
+hanson.xyz.vpnhotspotmod:anim/linear_indeterminate_line1_head_interpolator = 0x7f01001e
+hanson.xyz.vpnhotspotmod:drawable/design_fab_background = 0x7f080095
+hanson.xyz.vpnhotspotmod:attr/badgeWithTextHeight = 0x7f040061
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.Light.Dialog = 0x7f130241
+hanson.xyz.vpnhotspotmod:attr/colorSecondaryVariant = 0x7f040114
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.MonthTextView = 0x7f1303c8
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_8 = 0x7f09002f
+hanson.xyz.vpnhotspotmod:drawable/abc_textfield_default_mtrl_alpha = 0x7f080073
+hanson.xyz.vpnhotspotmod:attr/customStringValue = 0x7f04015d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_switch_selected_pressed_track_color = 0x7f0d012e
+hanson.xyz.vpnhotspotmod:id/textinput_helper_text = 0x7f0901ff
+hanson.xyz.vpnhotspotmod:attr/colorSecondaryFixed = 0x7f040112
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_outlined_card_outline_width = 0x7f070158
+hanson.xyz.vpnhotspotmod:attr/colorSecondaryContainer = 0x7f040111
+hanson.xyz.vpnhotspotmod:attr/activityChooserViewStyle = 0x7f040026
+hanson.xyz.vpnhotspotmod:attr/colorSecondary = 0x7f040110
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents = 0x7f130268
+hanson.xyz.vpnhotspotmod:attr/colorPrimarySurface = 0x7f04010d
+hanson.xyz.vpnhotspotmod:attr/suffixText = 0x7f04040e
+hanson.xyz.vpnhotspotmod:attr/colorPrimaryFixedDim = 0x7f04010b
+hanson.xyz.vpnhotspotmod:id/fill_horizontal = 0x7f0900ce
+hanson.xyz.vpnhotspotmod:id/center = 0x7f09007a
+hanson.xyz.vpnhotspotmod:drawable/material_ic_keyboard_arrow_previous_black_24dp = 0x7f0800e6
+hanson.xyz.vpnhotspotmod:attr/motionEasingAccelerated = 0x7f040326
+hanson.xyz.vpnhotspotmod:drawable/abc_ic_menu_overflow_material = 0x7f080045
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary = 0x7f1303a0
+hanson.xyz.vpnhotspotmod:id/chains = 0x7f090080
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_tertiary100 = 0x7f0600fd
+hanson.xyz.vpnhotspotmod:attr/colorOnTertiaryContainer = 0x7f040102
+hanson.xyz.vpnhotspotmod:attr/flow_lastVerticalStyle = 0x7f0401f5
+hanson.xyz.vpnhotspotmod:anim/linear_indeterminate_line2_tail_interpolator = 0x7f010021
+hanson.xyz.vpnhotspotmod:attr/colorOnSecondaryFixed = 0x7f0400fc
+hanson.xyz.vpnhotspotmod:dimen/design_tab_text_size = 0x7f07008d
+hanson.xyz.vpnhotspotmod:dimen/m3_extended_fab_bottom_padding = 0x7f0701ac
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Dark.SideSheetDialog = 0x7f130254
+hanson.xyz.vpnhotspotmod:id/save_non_transition_alpha = 0x7f0901a2
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_tertiary0 = 0x7f060154
+hanson.xyz.vpnhotspotmod:string/tethering_manage = 0x7f12013b
+hanson.xyz.vpnhotspotmod:attr/dialogLayout = 0x7f04016e
+hanson.xyz.vpnhotspotmod:attr/badgeGravity = 0x7f040055
+hanson.xyz.vpnhotspotmod:attr/defaultValue = 0x7f040167
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_elevation = 0x7f0702a6
+hanson.xyz.vpnhotspotmod:attr/suffixTextAppearance = 0x7f04040f
+hanson.xyz.vpnhotspotmod:attr/badgeWithTextWidth = 0x7f040065
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_time_picker_time_selector_pressed_state_layer_opacity = 0x7f0701a4
+hanson.xyz.vpnhotspotmod:id/material_textinput_timepicker = 0x7f090123
+hanson.xyz.vpnhotspotmod:attr/listPreferredItemPaddingLeft = 0x7f0402c1
+hanson.xyz.vpnhotspotmod:anim/design_snackbar_in = 0x7f01001b
+hanson.xyz.vpnhotspotmod:color/browser_actions_text_color = 0x7f060029
+hanson.xyz.vpnhotspotmod:attr/colorOnPrimaryContainer = 0x7f0400f6
+hanson.xyz.vpnhotspotmod:style/Theme.Material3.Light.BottomSheetDialog = 0x7f130261
+hanson.xyz.vpnhotspotmod:attr/layout_constraintGuide_end = 0x7f040283
+hanson.xyz.vpnhotspotmod:attr/colorOnSecondaryFixedVariant = 0x7f0400fd
+hanson.xyz.vpnhotspotmod:anim/m3_side_sheet_enter_from_right = 0x7f010027
+hanson.xyz.vpnhotspotmod:string/repeater_wps_dialog_title = 0x7f1200fd
+hanson.xyz.vpnhotspotmod:color/button_material_light = 0x7f06002c
+hanson.xyz.vpnhotspotmod:macro/m3_comp_elevated_card_container_shape = 0x7f0d002c
+hanson.xyz.vpnhotspotmod:animator/mtrl_chip_state_list_anim = 0x7f020018
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_text_light = 0x7f080091
+hanson.xyz.vpnhotspotmod:attr/defaultDuration = 0x7f040162
+hanson.xyz.vpnhotspotmod:color/m3_slider_active_track_color = 0x7f060164
+hanson.xyz.vpnhotspotmod:attr/shapeAppearance = 0x7f0403ba
+hanson.xyz.vpnhotspotmod:drawable/abc_ic_clear_material = 0x7f080040
+hanson.xyz.vpnhotspotmod:attr/deltaPolarAngle = 0x7f040168
+hanson.xyz.vpnhotspotmod:drawable/$m3_avd_show_password__1 = 0x7f08000b
+hanson.xyz.vpnhotspotmod:attr/colorTertiaryContainer = 0x7f040121
+hanson.xyz.vpnhotspotmod:color/secondary_text_default_material_dark = 0x7f06030d
+hanson.xyz.vpnhotspotmod:color/m3_card_foreground_color = 0x7f06007e
+hanson.xyz.vpnhotspotmod:id/license_activity_textview = 0x7f090106
+hanson.xyz.vpnhotspotmod:array/settings_service_masquerade = 0x7f030002
+hanson.xyz.vpnhotspotmod:attr/actionButtonStyle = 0x7f04000b
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_search_view_docked_header_container_height = 0x7f070175
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.ListPopupWindow = 0x7f130333
+hanson.xyz.vpnhotspotmod:attr/preferenceFragmentListStyle = 0x7f040387
+hanson.xyz.vpnhotspotmod:color/m3_chip_assist_text_color = 0x7f060083
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.Light.DarkActionBar = 0x7f130240
+hanson.xyz.vpnhotspotmod:animator/mtrl_fab_show_motion_spec = 0x7f02001f
+hanson.xyz.vpnhotspotmod:attr/contentInsetRight = 0x7f040130
+hanson.xyz.vpnhotspotmod:attr/actionModeStyle = 0x7f04001c
+hanson.xyz.vpnhotspotmod:menu/toolbar_configuration = 0x7f0e0002
+hanson.xyz.vpnhotspotmod:attr/colorContainer = 0x7f0400ea
+hanson.xyz.vpnhotspotmod:style/Base.Theme.MaterialComponents.Light.DarkActionBar = 0x7f130074
+hanson.xyz.vpnhotspotmod:id/dragLeft = 0x7f0900b8
+hanson.xyz.vpnhotspotmod:attr/forceApplySystemWindowInsetTop = 0x7f040209
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_text_button_focus_state_layer_opacity = 0x7f070199
+hanson.xyz.vpnhotspotmod:style/Base.ThemeOverlay.AppCompat.Dark = 0x7f13007e
+hanson.xyz.vpnhotspotmod:id/stretch = 0x7f0901df
+hanson.xyz.vpnhotspotmod:attr/commitIcon = 0x7f040124
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_error = 0x7f06018d
+hanson.xyz.vpnhotspotmod:attr/colorAccent = 0x7f0400e7
+hanson.xyz.vpnhotspotmod:attr/key = 0x7f040261
+hanson.xyz.vpnhotspotmod:macro/m3_comp_primary_navigation_tab_active_pressed_state_layer_color = 0x7f0d00cd
+hanson.xyz.vpnhotspotmod:dimen/notification_action_icon_size = 0x7f070308
+hanson.xyz.vpnhotspotmod:drawable/abc_scrubber_control_off_mtrl_alpha = 0x7f08005e
+hanson.xyz.vpnhotspotmod:attr/collapsingToolbarLayoutStyle = 0x7f0400e5
+hanson.xyz.vpnhotspotmod:color/design_icon_tint = 0x7f060066
+hanson.xyz.vpnhotspotmod:attr/indicatorColor = 0x7f040236
+hanson.xyz.vpnhotspotmod:attr/collapsingToolbarLayoutLargeStyle = 0x7f0400e2
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_6 = 0x7f09002d
+hanson.xyz.vpnhotspotmod:color/switch_thumb_material_dark = 0x7f060313
+hanson.xyz.vpnhotspotmod:attr/liftOnScrollColor = 0x7f0402af
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f13003c
+hanson.xyz.vpnhotspotmod:id/bssid = 0x7f090076
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_on_error_container = 0x7f060172
+hanson.xyz.vpnhotspotmod:id/material_timepicker_view = 0x7f090128
+hanson.xyz.vpnhotspotmod:attr/extraMultilineHeightEnabled = 0x7f0401c9
+hanson.xyz.vpnhotspotmod:dimen/highlight_alpha_material_dark = 0x7f070096
+hanson.xyz.vpnhotspotmod:attr/backgroundInsetStart = 0x7f04004e
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_large_material = 0x7f070048
+hanson.xyz.vpnhotspotmod:macro/m3_comp_top_app_bar_small_on_scroll_container_color = 0x7f0d0174
+hanson.xyz.vpnhotspotmod:attr/chipMinTouchTargetSize = 0x7f0400c0
+hanson.xyz.vpnhotspotmod:attr/motionDurationLong4 = 0x7f04031d
+hanson.xyz.vpnhotspotmod:drawable/notification_oversize_large_icon_bg = 0x7f080118
+hanson.xyz.vpnhotspotmod:attr/errorShown = 0x7f0401b4
+hanson.xyz.vpnhotspotmod:attr/motionEasingLinearInterpolator = 0x7f04032d
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_range_selection_active_indicator_container_color = 0x7f0d001a
+hanson.xyz.vpnhotspotmod:dimen/m3_carousel_extra_small_item_size = 0x7f0700f1
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonSmallSecondaryStyle = 0x7f0401e3
+hanson.xyz.vpnhotspotmod:id/expanded_menu = 0x7f0900cb
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_navigation_drawer_hover_state_layer_opacity = 0x7f070145
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_subtitle_material_toolbar = 0x7f07004e
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_suggestion_chip_container_height = 0x7f070187
+hanson.xyz.vpnhotspotmod:attr/backgroundStacked = 0x7f040052
+hanson.xyz.vpnhotspotmod:attr/hoveredFocusedTranslationZ = 0x7f040226
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_assist_chip_elevated_container_elevation = 0x7f0700fe
+hanson.xyz.vpnhotspotmod:attr/materialAlertDialogTitleTextStyle = 0x7f0402d1
+hanson.xyz.vpnhotspotmod:styleable/ActivityChooserView = 0x7f140005
+hanson.xyz.vpnhotspotmod:attr/prefixTextColor = 0x7f04038f
+hanson.xyz.vpnhotspotmod:attr/closeIconSize = 0x7f0400d6
+hanson.xyz.vpnhotspotmod:attr/searchViewStyle = 0x7f0403af
+hanson.xyz.vpnhotspotmod:attr/maxActionInlineWidth = 0x7f0402fc
+hanson.xyz.vpnhotspotmod:attr/closeIconEndPadding = 0x7f0400d5
+hanson.xyz.vpnhotspotmod:attr/checkedIconEnabled = 0x7f0400ae
+hanson.xyz.vpnhotspotmod:attr/actionModeSelectAllDrawable = 0x7f040019
+hanson.xyz.vpnhotspotmod:attr/labelVisibilityMode = 0x7f040268
+hanson.xyz.vpnhotspotmod:attr/contentPaddingBottom = 0x7f040134
+hanson.xyz.vpnhotspotmod:style/Base.Widget.AppCompat.PopupMenu.Overflow = 0x7f1300ef
+hanson.xyz.vpnhotspotmod:attr/colorControlActivated = 0x7f0400eb
+hanson.xyz.vpnhotspotmod:attr/badgeHeight = 0x7f040056
+hanson.xyz.vpnhotspotmod:color/material_dynamic_tertiary80 = 0x7f06026f
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense = 0x7f130300
+hanson.xyz.vpnhotspotmod:attr/clockNumberTextColor = 0x7f0400d2
+hanson.xyz.vpnhotspotmod:string/abc_searchview_description_voice = 0x7f120017
+hanson.xyz.vpnhotspotmod:color/abc_tint_seek_thumb = 0x7f060016
+hanson.xyz.vpnhotspotmod:macro/m3_comp_radio_button_unselected_pressed_icon_color = 0x7f0d00e5
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_on_background = 0x7f060170
+hanson.xyz.vpnhotspotmod:styleable/AppBarLayout = 0x7f14000c
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.CompoundButton.RadioButton = 0x7f13031d
+hanson.xyz.vpnhotspotmod:color/foreground_material_dark = 0x7f06006e
+hanson.xyz.vpnhotspotmod:layout/abc_cascading_menu_item_layout = 0x7f0c000b
+hanson.xyz.vpnhotspotmod:attr/clockIcon = 0x7f0400d1
+hanson.xyz.vpnhotspotmod:id/icon_group = 0x7f0900ed
+hanson.xyz.vpnhotspotmod:attr/paddingStart = 0x7f040358
+hanson.xyz.vpnhotspotmod:attr/clockHandColor = 0x7f0400d0
+hanson.xyz.vpnhotspotmod:attr/allowDividerAbove = 0x7f04002e
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_wear_update_text = 0x7f120047
+hanson.xyz.vpnhotspotmod:attr/cardCornerRadius = 0x7f04009c
+hanson.xyz.vpnhotspotmod:attr/chipSpacing = 0x7f0400c1
+hanson.xyz.vpnhotspotmod:dimen/mtrl_extended_fab_translation_z_pressed = 0x7f0702b2
+hanson.xyz.vpnhotspotmod:attr/colorButtonNormal = 0x7f0400e9
+hanson.xyz.vpnhotspotmod:style/Widget.Design.TextInputLayout = 0x7f13035e
+hanson.xyz.vpnhotspotmod:attr/textAppearanceHeadline3 = 0x7f04044c
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_tertiary = 0x7f0601ac
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary = 0x7f1303a2
+hanson.xyz.vpnhotspotmod:attr/clickAction = 0x7f0400ce
+hanson.xyz.vpnhotspotmod:attr/thumbIconTint = 0x7f040478
+hanson.xyz.vpnhotspotmod:attr/circularProgressIndicatorStyle = 0x7f0400cc
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_error50 = 0x7f06010e
+hanson.xyz.vpnhotspotmod:attr/mock_labelBackgroundColor = 0x7f040311
+hanson.xyz.vpnhotspotmod:attr/dividerHorizontal = 0x7f040178
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_tertiary = 0x7f0601ce
+hanson.xyz.vpnhotspotmod:color/design_fab_stroke_top_outer_color = 0x7f060065
+hanson.xyz.vpnhotspotmod:anim/abc_slide_in_top = 0x7f010008
+hanson.xyz.vpnhotspotmod:attr/cardBackgroundColor = 0x7f04009b
+hanson.xyz.vpnhotspotmod:attr/currentState = 0x7f040151
+hanson.xyz.vpnhotspotmod:attr/chipStandaloneStyle = 0x7f0400c4
+hanson.xyz.vpnhotspotmod:attr/colorSecondaryFixedDim = 0x7f040113
+hanson.xyz.vpnhotspotmod:color/m3_button_foreground_color_selector = 0x7f060078
+hanson.xyz.vpnhotspotmod:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f130036
+hanson.xyz.vpnhotspotmod:attr/colorSurfaceVariant = 0x7f04011e
+hanson.xyz.vpnhotspotmod:animator/m3_appbar_state_list_animator = 0x7f020009
+hanson.xyz.vpnhotspotmod:attr/badgeShapeAppearanceOverlay = 0x7f040059
+hanson.xyz.vpnhotspotmod:style/Base.Widget.Material3.BottomNavigationView = 0x7f130103
+hanson.xyz.vpnhotspotmod:attr/chipMinHeight = 0x7f0400bf
+hanson.xyz.vpnhotspotmod:attr/backgroundTintMode = 0x7f040054
+hanson.xyz.vpnhotspotmod:color/material_dynamic_tertiary20 = 0x7f060269
+hanson.xyz.vpnhotspotmod:attr/collapsingToolbarLayoutMediumStyle = 0x7f0400e4
+hanson.xyz.vpnhotspotmod:integer/mtrl_calendar_header_orientation = 0x7f0a0031
+hanson.xyz.vpnhotspotmod:attr/checkMarkCompat = 0x7f0400a7
+hanson.xyz.vpnhotspotmod:attr/chipIconTint = 0x7f0400bd
+hanson.xyz.vpnhotspotmod:integer/mtrl_switch_track_viewport_height = 0x7f0a003d
+hanson.xyz.vpnhotspotmod:anim/btn_radio_to_on_mtrl_ring_outer_path_animation = 0x7f010018
+hanson.xyz.vpnhotspotmod:attr/enableEdgeToEdge = 0x7f04019e
+hanson.xyz.vpnhotspotmod:attr/dragThreshold = 0x7f040180
+hanson.xyz.vpnhotspotmod:styleable/ActivityRule = 0x7f140007
+hanson.xyz.vpnhotspotmod:string/bottomsheet_action_expand = 0x7f120020
+hanson.xyz.vpnhotspotmod:color/m3_efab_ripple_color_selector = 0x7f060099
+hanson.xyz.vpnhotspotmod:attr/toolbarId = 0x7f04049c
+hanson.xyz.vpnhotspotmod:attr/allowStacking = 0x7f040031
+hanson.xyz.vpnhotspotmod:drawable/ic_m3_chip_checked_circle = 0x7f0800ca
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.CompactMenu = 0x7f13026b
+hanson.xyz.vpnhotspotmod:attr/drawableRightCompat = 0x7f040185
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_fab_primary_container_elevation = 0x7f070119
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_checkbox_button_icon_checked_indeterminate__0 = 0x7f080010
+hanson.xyz.vpnhotspotmod:attr/colorSwitchThumbNormal = 0x7f04011f
+hanson.xyz.vpnhotspotmod:attr/pref_listElevation = 0x7f04037c
+hanson.xyz.vpnhotspotmod:attr/clockFaceBackgroundColor = 0x7f0400cf
+hanson.xyz.vpnhotspotmod:color/m3_chip_background_color = 0x7f060084
+hanson.xyz.vpnhotspotmod:attr/backgroundOverlayColorAlpha = 0x7f040050
+hanson.xyz.vpnhotspotmod:attr/flow_verticalStyle = 0x7f0401fb
+hanson.xyz.vpnhotspotmod:color/light_colorPrimary = 0x7f060072
+hanson.xyz.vpnhotspotmod:drawable/abc_scrubber_control_to_pressed_mtrl_000 = 0x7f08005f
+hanson.xyz.vpnhotspotmod:attr/colorOnErrorContainer = 0x7f0400f4
+hanson.xyz.vpnhotspotmod:color/m3_navigation_item_ripple_color = 0x7f0600a7
+hanson.xyz.vpnhotspotmod:color/m3_textfield_stroke_color = 0x7f060217
+hanson.xyz.vpnhotspotmod:id/title_template = 0x7f090208
+hanson.xyz.vpnhotspotmod:attr/carousel_alignment = 0x7f0400a3
+hanson.xyz.vpnhotspotmod:string/mtrl_exceed_max_badge_number_content_description = 0x7f1200a7
+hanson.xyz.vpnhotspotmod:attr/checkedIcon = 0x7f0400ad
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_switch_disabled_unselected_icon_opacity = 0x7f070190
+hanson.xyz.vpnhotspotmod:string/mtrl_picker_day_of_week_column_header = 0x7f1200b3
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant100 = 0x7f0600cb
+hanson.xyz.vpnhotspotmod:attr/chipIconEnabled = 0x7f0400bb
+hanson.xyz.vpnhotspotmod:styleable/CoordinatorLayout = 0x7f14002e
+hanson.xyz.vpnhotspotmod:attr/cardElevation = 0x7f04009d
+hanson.xyz.vpnhotspotmod:xml/image_share_filepaths = 0x7f150002
+hanson.xyz.vpnhotspotmod:attr/checkedIconTint = 0x7f0400b2
+hanson.xyz.vpnhotspotmod:attr/cardPreventCornerOverlap = 0x7f0400a0
+hanson.xyz.vpnhotspotmod:attr/flow_horizontalStyle = 0x7f0401f1
+hanson.xyz.vpnhotspotmod:attr/constraintSetEnd = 0x7f040127
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_text_dark_focused = 0x7f08008d
+hanson.xyz.vpnhotspotmod:animator/mtrl_card_state_list_anim = 0x7f020017
+hanson.xyz.vpnhotspotmod:dimen/m3_appbar_size_large = 0x7f0700ad
+hanson.xyz.vpnhotspotmod:animator/m3_extended_fab_show_motion_spec = 0x7f020013
+hanson.xyz.vpnhotspotmod:id/toggle = 0x7f090209
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_input_chip_with_leading_icon_leading_icon_size = 0x7f070138
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.Light.NoActionBar = 0x7f130245
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral40 = 0x7f060237
+hanson.xyz.vpnhotspotmod:attr/buttonIconTint = 0x7f040093
+hanson.xyz.vpnhotspotmod:attr/defaultScrollFlagsEnabled = 0x7f040165
+hanson.xyz.vpnhotspotmod:dimen/mtrl_navigation_rail_elevation = 0x7f0702cb
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.MaterialCalendar.MonthTextView = 0x7f13044c
+hanson.xyz.vpnhotspotmod:drawable/$mtrl_switch_thumb_checked_unchecked__1 = 0x7f080023
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_primary = 0x7f06029e
+hanson.xyz.vpnhotspotmod:attr/buttonIcon = 0x7f040091
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f13029a
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_switch_track_width = 0x7f070195
+hanson.xyz.vpnhotspotmod:attr/buttonBarStyle = 0x7f04008e
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_secondary95 = 0x7f060152
+hanson.xyz.vpnhotspotmod:attr/closeIconVisible = 0x7f0400d9
+hanson.xyz.vpnhotspotmod:attr/helperTextTextAppearance = 0x7f040217
+hanson.xyz.vpnhotspotmod:drawable/$avd_hide_password__1 = 0x7f080001
+hanson.xyz.vpnhotspotmod:layout/m3_alert_dialog = 0x7f0c0043
+hanson.xyz.vpnhotspotmod:id/open_search_view_background = 0x7f09016e
+hanson.xyz.vpnhotspotmod:attr/backHandlingEnabled = 0x7f040049
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.BottomSheet = 0x7f13036e
+hanson.xyz.vpnhotspotmod:attr/isMaterial3DynamicColorApplied = 0x7f04023f
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_tertiary30 = 0x7f060158
+hanson.xyz.vpnhotspotmod:attr/actionModeCloseDrawable = 0x7f040013
+hanson.xyz.vpnhotspotmod:color/material_personalized_hint_foreground = 0x7f0602b8
+hanson.xyz.vpnhotspotmod:attr/tabBackground = 0x7f04041e
+hanson.xyz.vpnhotspotmod:color/mtrl_switch_track_decoration_tint = 0x7f0602f1
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Light.ActionBar.Solid = 0x7f1303b3
+hanson.xyz.vpnhotspotmod:layout/mtrl_calendar_vertical = 0x7f0c0065
+hanson.xyz.vpnhotspotmod:attr/circleCrop = 0x7f0400ca
+hanson.xyz.vpnhotspotmod:attr/colorControlHighlight = 0x7f0400ec
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_selection_text_baseline_to_bottom_fullscreen = 0x7f07028e
+hanson.xyz.vpnhotspotmod:attr/boxCornerRadiusBottomStart = 0x7f040082
+hanson.xyz.vpnhotspotmod:attr/boxCornerRadiusBottomEnd = 0x7f040081
+hanson.xyz.vpnhotspotmod:attr/layout_goneMarginTop = 0x7f0402a7
+hanson.xyz.vpnhotspotmod:drawable/material_ic_clear_black_24dp = 0x7f0800e2
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Headline4 = 0x7f130226
+hanson.xyz.vpnhotspotmod:macro/m3_comp_primary_navigation_tab_with_label_text_label_text_type = 0x7f0d00d6
+hanson.xyz.vpnhotspotmod:dimen/mtrl_card_checked_icon_size = 0x7f070299
+hanson.xyz.vpnhotspotmod:attr/boxBackgroundColor = 0x7f04007e
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Dialog = 0x7f1302ba
+hanson.xyz.vpnhotspotmod:attr/popupTheme = 0x7f040374
+hanson.xyz.vpnhotspotmod:attr/bottomInsetScrimEnabled = 0x7f040079
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.DayTextView = 0x7f1303bc
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.TimePicker.Display = 0x7f130304
+hanson.xyz.vpnhotspotmod:attr/fontProviderQuery = 0x7f040204
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.Day = 0x7f1303b7
+hanson.xyz.vpnhotspotmod:id/open_search_view_root = 0x7f090175
+hanson.xyz.vpnhotspotmod:attr/mock_label = 0x7f040310
+hanson.xyz.vpnhotspotmod:integer/m3_sys_shape_corner_small_corner_family = 0x7f0a0026
+hanson.xyz.vpnhotspotmod:anim/design_bottom_sheet_slide_in = 0x7f010019
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_outlined_text_field_disabled_supporting_text_opacity = 0x7f07015c
+hanson.xyz.vpnhotspotmod:id/autoComplete = 0x7f09005c
+hanson.xyz.vpnhotspotmod:attr/errorContentDescription = 0x7f0401af
+hanson.xyz.vpnhotspotmod:drawable/ic_device_devices = 0x7f0800bb
+hanson.xyz.vpnhotspotmod:attr/colorOnSurfaceVariant = 0x7f040100
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox = 0x7f130301
+hanson.xyz.vpnhotspotmod:attr/layout_dodgeInsetEdges = 0x7f04029f
+hanson.xyz.vpnhotspotmod:styleable/SearchView = 0x7f140084
+hanson.xyz.vpnhotspotmod:attr/borderlessButtonStyle = 0x7f040077
+hanson.xyz.vpnhotspotmod:dimen/abc_list_item_height_large_material = 0x7f070030
+hanson.xyz.vpnhotspotmod:id/tag_state_description = 0x7f0901ed
+hanson.xyz.vpnhotspotmod:attr/layout_constraintHorizontal_chainStyle = 0x7f04028a
+hanson.xyz.vpnhotspotmod:attr/animationMode = 0x7f040039
+hanson.xyz.vpnhotspotmod:color/design_default_color_on_surface = 0x7f060057
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.SeekBar = 0x7f130348
+hanson.xyz.vpnhotspotmod:attr/behavior_saveFlags = 0x7f040073
+hanson.xyz.vpnhotspotmod:id/coordinator = 0x7f090096
+hanson.xyz.vpnhotspotmod:attr/boxCollapsedPaddingTop = 0x7f040080
+hanson.xyz.vpnhotspotmod:id/material_hour_text_input = 0x7f09011e
+hanson.xyz.vpnhotspotmod:attr/pathMotionArc = 0x7f040364
+hanson.xyz.vpnhotspotmod:color/bright_foreground_disabled_material_light = 0x7f060022
+hanson.xyz.vpnhotspotmod:color/background_material_light = 0x7f060020
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_day_width = 0x7f070278
+hanson.xyz.vpnhotspotmod:color/m3_fab_ripple_color_selector = 0x7f06009d
+hanson.xyz.vpnhotspotmod:attr/contentPaddingEnd = 0x7f040135
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Search = 0x7f1302d6
+hanson.xyz.vpnhotspotmod:style/Base.Theme.AppCompat.Dialog = 0x7f130051
+hanson.xyz.vpnhotspotmod:id/accessibility_custom_action_17 = 0x7f09001a
+hanson.xyz.vpnhotspotmod:drawable/$avd_show_password__0 = 0x7f080003
+hanson.xyz.vpnhotspotmod:attr/checkedIconGravity = 0x7f0400af
+hanson.xyz.vpnhotspotmod:attr/badgeWithTextRadius = 0x7f040062
+hanson.xyz.vpnhotspotmod:drawable/notification_bg_low_pressed = 0x7f080114
+hanson.xyz.vpnhotspotmod:attr/logoAdjustViewBounds = 0x7f0402c5
+hanson.xyz.vpnhotspotmod:attr/layout_keyline = 0x7f0402a9
+hanson.xyz.vpnhotspotmod:drawable/mtrl_checkbox_button_icon_checked_indeterminate = 0x7f0800ee
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_inactive_hover_icon_color = 0x7f0d008c
+hanson.xyz.vpnhotspotmod:color/m3_icon_button_icon_color_selector = 0x7f0600a1
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_active_indicator_color = 0x7f0d0069
+hanson.xyz.vpnhotspotmod:attr/materialAlertDialogBodyTextStyle = 0x7f0402cc
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Tooltip = 0x7f130480
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_outlined_text_field_outline_width = 0x7f07015e
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.SearchBar = 0x7f1303e2
+hanson.xyz.vpnhotspotmod:id/always = 0x7f090054
+hanson.xyz.vpnhotspotmod:anim/abc_popup_exit = 0x7f010004
+hanson.xyz.vpnhotspotmod:attr/colorPrimaryInverse = 0x7f04010c
+hanson.xyz.vpnhotspotmod:attr/actionBarStyle = 0x7f040005
+hanson.xyz.vpnhotspotmod:drawable/abc_cab_background_internal_bg = 0x7f080038
+hanson.xyz.vpnhotspotmod:attr/autoAdjustToWithinGrandparentBounds = 0x7f040040
+hanson.xyz.vpnhotspotmod:attr/motionEasingLinear = 0x7f04032c
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_dark_surface_variant = 0x7f0601ab
+hanson.xyz.vpnhotspotmod:color/abc_tint_switch_track = 0x7f060018
+hanson.xyz.vpnhotspotmod:attr/extendedFloatingActionButtonTertiaryStyle = 0x7f0401c8
+hanson.xyz.vpnhotspotmod:attr/badgeShapeAppearance = 0x7f040058
+hanson.xyz.vpnhotspotmod:array/settings_service_wifi_lock_values = 0x7f030005
+hanson.xyz.vpnhotspotmod:styleable/ConstraintSet = 0x7f14002d
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.BottomNavigationView = 0x7f13036c
+hanson.xyz.vpnhotspotmod:macro/m3_comp_time_picker_time_selector_selected_label_text_color = 0x7f0d0164
+hanson.xyz.vpnhotspotmod:color/material_dynamic_tertiary95 = 0x7f060271
+hanson.xyz.vpnhotspotmod:attr/backgroundInsetTop = 0x7f04004f
+hanson.xyz.vpnhotspotmod:dimen/m3_appbar_scrim_height_trigger_large = 0x7f0700aa
+hanson.xyz.vpnhotspotmod:id/month_navigation_bar = 0x7f090135
+hanson.xyz.vpnhotspotmod:attr/backgroundInsetBottom = 0x7f04004c
+hanson.xyz.vpnhotspotmod:attr/goIcon = 0x7f040210
+hanson.xyz.vpnhotspotmod:attr/actionModePasteDrawable = 0x7f040017
+hanson.xyz.vpnhotspotmod:styleable/MockView = 0x7f140067
+hanson.xyz.vpnhotspotmod:animator/mtrl_extended_fab_show_motion_spec = 0x7f02001c
+hanson.xyz.vpnhotspotmod:attr/simpleItemSelectedRippleColor = 0x7f0403d6
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_bar_inactive_icon_color = 0x7f0d0075
+hanson.xyz.vpnhotspotmod:attr/alertDialogCenterButtons = 0x7f04002b
+hanson.xyz.vpnhotspotmod:attr/dropDownBackgroundTint = 0x7f04018e
+hanson.xyz.vpnhotspotmod:attr/centerIfNoTextEnabled = 0x7f0400a4
+hanson.xyz.vpnhotspotmod:attr/marginHorizontal = 0x7f0402c8
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_background = 0x7f06028a
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.BottomSheet = 0x7f130416
+hanson.xyz.vpnhotspotmod:attr/shapeAppearanceCornerExtraSmall = 0x7f0403bc
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.HeaderToggleButton = 0x7f1303c5
+hanson.xyz.vpnhotspotmod:attr/behavior_autoShrink = 0x7f04006b
+hanson.xyz.vpnhotspotmod:attr/colorScheme = 0x7f04010f
+hanson.xyz.vpnhotspotmod:attr/fontWeight = 0x7f040208
+hanson.xyz.vpnhotspotmod:dimen/m3_simple_item_color_hovered_alpha = 0x7f0701e5
+hanson.xyz.vpnhotspotmod:attr/initialActivityCount = 0x7f04023b
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_text_dark_normal = 0x7f08008e
+hanson.xyz.vpnhotspotmod:color/common_google_signin_btn_text_light_focused = 0x7f06003e
+hanson.xyz.vpnhotspotmod:attr/strokeColor = 0x7f040401
+hanson.xyz.vpnhotspotmod:attr/chipSurfaceColor = 0x7f0400c9
+hanson.xyz.vpnhotspotmod:drawable/ic_clock_black_24dp = 0x7f0800b5
+hanson.xyz.vpnhotspotmod:layout/license_menu_activity_loading = 0x7f0c003d
+hanson.xyz.vpnhotspotmod:attr/motionDurationExtraLong4 = 0x7f040319
+hanson.xyz.vpnhotspotmod:macro/m3_comp_secondary_navigation_tab_container_color = 0x7f0d00fd
+hanson.xyz.vpnhotspotmod:integer/m3_chip_anim_duration = 0x7f0a000f
+hanson.xyz.vpnhotspotmod:attr/layout_constraintTag = 0x7f040294
+hanson.xyz.vpnhotspotmod:styleable/Slider = 0x7f14008c
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral96 = 0x7f0600c6
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant90 = 0x7f0600da
+hanson.xyz.vpnhotspotmod:bool/abc_config_actionMenuItemAllCaps = 0x7f050001
+hanson.xyz.vpnhotspotmod:attr/dialogCornerRadius = 0x7f04016c
+hanson.xyz.vpnhotspotmod:animator/mtrl_extended_fab_state_list_animator = 0x7f02001d
+hanson.xyz.vpnhotspotmod:attr/enforceTextAppearance = 0x7f0401a9
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu = 0x7f13046c
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_title_material_toolbar = 0x7f070050
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_fab_primary_container_height = 0x7f07011a
+hanson.xyz.vpnhotspotmod:color/m3_textfield_filled_background_color = 0x7f060213
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.PopupMenu.Overflow = 0x7f13045b
+hanson.xyz.vpnhotspotmod:attr/checkBoxPreferenceStyle = 0x7f0400a6
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_surface_variant = 0x7f060189
+hanson.xyz.vpnhotspotmod:attr/cornerSizeTopLeft = 0x7f040148
+hanson.xyz.vpnhotspotmod:string/tethering_manage_wifi_no_features = 0x7f12014c
+hanson.xyz.vpnhotspotmod:dimen/simple_menu_margin = 0x7f070320
+hanson.xyz.vpnhotspotmod:anim/m3_side_sheet_enter_from_left = 0x7f010026
+hanson.xyz.vpnhotspotmod:style/PreferenceThemeOverlay.v14.Material = 0x7f130169
+hanson.xyz.vpnhotspotmod:anim/btn_checkbox_to_checked_icon_null_animation = 0x7f01000f
+hanson.xyz.vpnhotspotmod:attr/textAppearanceLabelMedium = 0x7f040454
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_on_secondary_container = 0x7f060296
+hanson.xyz.vpnhotspotmod:attr/textAppearanceHeadline6 = 0x7f04044f
+hanson.xyz.vpnhotspotmod:color/error_color_material_dark = 0x7f06006c
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_fab_primary_hover_state_layer_opacity = 0x7f07011d
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework = 0x7f1302f4
+hanson.xyz.vpnhotspotmod:attr/dividerColor = 0x7f040177
+hanson.xyz.vpnhotspotmod:styleable/Badge = 0x7f140016
+hanson.xyz.vpnhotspotmod:layout/mtrl_calendar_month_labeled = 0x7f0c0062
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral30 = 0x7f0600b9
+hanson.xyz.vpnhotspotmod:attr/startIconTintMode = 0x7f0403f4
+hanson.xyz.vpnhotspotmod:attr/waveVariesBy = 0x7f0404cd
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f1301db
+hanson.xyz.vpnhotspotmod:attr/arrowShaftLength = 0x7f04003e
+hanson.xyz.vpnhotspotmod:anim/btn_radio_to_off_mtrl_dot_group_animation = 0x7f010013
+hanson.xyz.vpnhotspotmod:macro/m3_comp_outlined_button_pressed_outline_color = 0x7f0d00aa
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral_variant0 = 0x7f06023f
+hanson.xyz.vpnhotspotmod:attr/layout_constraintBaseline_creator = 0x7f040277
+hanson.xyz.vpnhotspotmod:anim/m3_bottom_sheet_slide_out = 0x7f010023
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Button.Icon = 0x7f130419
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_secondary = 0x7f0601f1
+hanson.xyz.vpnhotspotmod:attr/allowDividerBelow = 0x7f040030
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.AppBarLayout.Surface = 0x7f13040a
+hanson.xyz.vpnhotspotmod:string/m3_sys_motion_easing_standard_accelerate = 0x7f120082
+hanson.xyz.vpnhotspotmod:attr/checkboxStyle = 0x7f0400aa
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Surface = 0x7f1302c2
+hanson.xyz.vpnhotspotmod:color/mtrl_tabs_colored_ripple_color = 0x7f0602f3
+hanson.xyz.vpnhotspotmod:attr/alertDialogTheme = 0x7f04002d
+hanson.xyz.vpnhotspotmod:attr/buttonBarNeutralButtonStyle = 0x7f04008c
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.Button.TextButton = 0x7f1302b1
+hanson.xyz.vpnhotspotmod:attr/tabPadding = 0x7f04042e
+hanson.xyz.vpnhotspotmod:attr/listLayout = 0x7f0402ba
+hanson.xyz.vpnhotspotmod:dimen/mtrl_bottomappbar_height = 0x7f070255
+hanson.xyz.vpnhotspotmod:attr/actionModeCopyDrawable = 0x7f040014
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.Dialog.MinWidth = 0x7f13023c
+hanson.xyz.vpnhotspotmod:color/m3_navigation_item_background_color = 0x7f0600a5
+hanson.xyz.vpnhotspotmod:attr/motionInterpolator = 0x7f040332
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.DayNight.Dialog = 0x7f130235
+hanson.xyz.vpnhotspotmod:attr/itemShapeAppearanceOverlay = 0x7f040252
+hanson.xyz.vpnhotspotmod:color/design_default_color_primary = 0x7f060058
+hanson.xyz.vpnhotspotmod:macro/m3_comp_plain_tooltip_supporting_text_type = 0x7f0d00c9
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_tertiary_container = 0x7f0601fd
+hanson.xyz.vpnhotspotmod:string/wifi_advanced_mac_address_title = 0x7f12015e
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_padding_left = 0x7f070263
+hanson.xyz.vpnhotspotmod:id/decelerate = 0x7f0900a0
+hanson.xyz.vpnhotspotmod:attr/actionModeTheme = 0x7f04001d
+hanson.xyz.vpnhotspotmod:string/m3_sys_motion_easing_emphasized_path_data = 0x7f12007c
+hanson.xyz.vpnhotspotmod:attr/actionProviderClass = 0x7f040021
+hanson.xyz.vpnhotspotmod:array/settings_service_wifi_lock = 0x7f030004
+hanson.xyz.vpnhotspotmod:attr/badgeTextColor = 0x7f04005d
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_secondary70 = 0x7f0600f6
+hanson.xyz.vpnhotspotmod:dimen/mtrl_card_checked_icon_margin = 0x7f070298
+hanson.xyz.vpnhotspotmod:dimen/design_snackbar_action_text_color_alpha = 0x7f070081
+hanson.xyz.vpnhotspotmod:attr/actionModeFindDrawable = 0x7f040016
+hanson.xyz.vpnhotspotmod:dimen/notification_top_pad = 0x7f070315
+hanson.xyz.vpnhotspotmod:attr/actionModeCutDrawable = 0x7f040015
+hanson.xyz.vpnhotspotmod:attr/badgeWithTextShapeAppearanceOverlay = 0x7f040064
+hanson.xyz.vpnhotspotmod:styleable/StateSet = 0x7f140096
+hanson.xyz.vpnhotspotmod:dimen/m3_badge_vertical_offset = 0x7f0700b9
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.Button.TonalButton = 0x7f130381
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.BottomSheetDialog = 0x7f1302ab
+hanson.xyz.vpnhotspotmod:attr/actionModeCloseButtonStyle = 0x7f040011
+hanson.xyz.vpnhotspotmod:anim/mtrl_bottom_sheet_slide_in = 0x7f01002a
+hanson.xyz.vpnhotspotmod:color/abc_primary_text_material_light = 0x7f06000c
+hanson.xyz.vpnhotspotmod:attr/actionModeBackground = 0x7f040010
+hanson.xyz.vpnhotspotmod:string/tethering_location_off = 0x7f12013a
+hanson.xyz.vpnhotspotmod:attr/actionBarTabTextStyle = 0x7f040008
+hanson.xyz.vpnhotspotmod:color/mtrl_switch_thumb_icon_tint = 0x7f0602ef
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_standard_accelerate_control_x2 = 0x7f07020c
+hanson.xyz.vpnhotspotmod:style/Preference.DropDown.Material = 0x7f130153
+hanson.xyz.vpnhotspotmod:dimen/abc_text_size_body_2_material = 0x7f070040
+hanson.xyz.vpnhotspotmod:string/icon_content_description = 0x7f12006f
+hanson.xyz.vpnhotspotmod:attr/pref_popupStyle = 0x7f040381
+hanson.xyz.vpnhotspotmod:string/repeater_missing_location_permissions = 0x7f1200f4
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_surface_container_highest = 0x7f060185
+hanson.xyz.vpnhotspotmod:attr/colorSurfaceContainerHigh = 0x7f040118
+hanson.xyz.vpnhotspotmod:color/m3_tabs_text_color = 0x7f06020e
+hanson.xyz.vpnhotspotmod:color/m3_default_color_primary_text = 0x7f06008d
+hanson.xyz.vpnhotspotmod:attr/animate_relativeTo = 0x7f040038
+hanson.xyz.vpnhotspotmod:attr/titleTextAppearance = 0x7f040497
+hanson.xyz.vpnhotspotmod:string/abc_menu_shift_shortcut_label = 0x7f12000e
+hanson.xyz.vpnhotspotmod:attr/listPreferredItemHeight = 0x7f0402bd
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_action_height = 0x7f07026f
+hanson.xyz.vpnhotspotmod:attr/textInputFilledExposedDropdownMenuStyle = 0x7f040469
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.M3.Comp.TextButton.Container.Shape = 0x7f13018c
+hanson.xyz.vpnhotspotmod:attr/chipEndPadding = 0x7f0400b8
+hanson.xyz.vpnhotspotmod:color/material_blue_grey_800 = 0x7f060223
+hanson.xyz.vpnhotspotmod:style/Widget.MaterialComponents.Button.OutlinedButton.Icon = 0x7f13041b
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.CompactMenu = 0x7f130232
+hanson.xyz.vpnhotspotmod:animator/mtrl_fab_transformation_sheet_expand_spec = 0x7f020021
+hanson.xyz.vpnhotspotmod:anim/abc_popup_enter = 0x7f010003
+hanson.xyz.vpnhotspotmod:animator/mtrl_fab_transformation_sheet_collapse_spec = 0x7f020020
+hanson.xyz.vpnhotspotmod:anim/fragment_fast_out_extra_slow_in = 0x7f01001d
+hanson.xyz.vpnhotspotmod:attr/region_heightLessThan = 0x7f04039e
+hanson.xyz.vpnhotspotmod:style/Widget.Material3.MaterialCalendar.HeaderLayout.Fullscreen = 0x7f1303c1
+hanson.xyz.vpnhotspotmod:color/button_material_dark = 0x7f06002b
+hanson.xyz.vpnhotspotmod:attr/actionBarDivider = 0x7f040000
+hanson.xyz.vpnhotspotmod:string/bottomsheet_action_collapse = 0x7f12001f
+hanson.xyz.vpnhotspotmod:attr/textStartPadding = 0x7f040471
+hanson.xyz.vpnhotspotmod:string/material_timepicker_text_input_mode_description = 0x7f120099
+hanson.xyz.vpnhotspotmod:attr/contentInsetEnd = 0x7f04012d
+hanson.xyz.vpnhotspotmod:attr/brightness = 0x7f040089
+hanson.xyz.vpnhotspotmod:animator/m3_extended_fab_change_size_expand_motion_spec = 0x7f020011
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_date_selected_label_text_color = 0x7f0d0012
+hanson.xyz.vpnhotspotmod:id/m3_side_sheet = 0x7f090110
+hanson.xyz.vpnhotspotmod:attr/activeIndicatorLabelPadding = 0x7f040024
+hanson.xyz.vpnhotspotmod:animator/m3_btn_elevated_btn_state_list_anim = 0x7f02000a
+hanson.xyz.vpnhotspotmod:style/TextAppearance.MaterialComponents.Headline6 = 0x7f130228
+hanson.xyz.vpnhotspotmod:string/title_update = 0x7f12015a
+hanson.xyz.vpnhotspotmod:attr/behavior_hideable = 0x7f040070
+hanson.xyz.vpnhotspotmod:attr/haloColor = 0x7f040211
+hanson.xyz.vpnhotspotmod:animator/mtrl_extended_fab_change_size_expand_motion_spec = 0x7f02001a
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.Material3.DayNight.BottomSheetDialog = 0x7f1302b8
+hanson.xyz.vpnhotspotmod:dimen/abc_action_bar_stacked_max_height = 0x7f070009
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonSurfaceStyle = 0x7f0401e8
+hanson.xyz.vpnhotspotmod:attr/verticalOffsetWithText = 0x7f0404c4
+hanson.xyz.vpnhotspotmod:style/Platform.ThemeOverlay.AppCompat.Dark = 0x7f130142
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral60 = 0x7f0600be
+hanson.xyz.vpnhotspotmod:attr/dialogTheme = 0x7f040172
+hanson.xyz.vpnhotspotmod:attr/applyMotionScene = 0x7f04003b
+hanson.xyz.vpnhotspotmod:attr/borderWidth = 0x7f040076
+hanson.xyz.vpnhotspotmod:style/Theme.AppCompat.DayNight.DialogWhenLarge = 0x7f130238
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant0 = 0x7f0600c9
+hanson.xyz.vpnhotspotmod:color/material_personalized_color_surface_container_low = 0x7f0602ac
+hanson.xyz.vpnhotspotmod:id/right_icon = 0x7f09019d
+hanson.xyz.vpnhotspotmod:attr/closeIcon = 0x7f0400d3
+hanson.xyz.vpnhotspotmod:dimen/m3_navigation_item_shape_inset_bottom = 0x7f0701bf
+hanson.xyz.vpnhotspotmod:style/Theme.MaterialComponents.Light = 0x7f130285
+hanson.xyz.vpnhotspotmod:style/Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton = 0x7f130119
+hanson.xyz.vpnhotspotmod:attr/passwordToggleDrawable = 0x7f040360
+hanson.xyz.vpnhotspotmod:anim/abc_grow_fade_in_from_bottom = 0x7f010002
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Light.SearchView = 0x7f130337
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dynamic_light_inverse_on_surface = 0x7f0601b1
+hanson.xyz.vpnhotspotmod:attr/showMotionSpec = 0x7f0403cc
+hanson.xyz.vpnhotspotmod:dimen/abc_edit_text_inset_bottom_material = 0x7f07002c
+hanson.xyz.vpnhotspotmod:attr/paddingTopSystemWindowInsets = 0x7f04035b
+hanson.xyz.vpnhotspotmod:attr/floatingActionButtonTertiaryStyle = 0x7f0401e9
+hanson.xyz.vpnhotspotmod:drawable/abc_scrubber_track_mtrl_alpha = 0x7f080062
+hanson.xyz.vpnhotspotmod:macro/m3_comp_navigation_drawer_headline_color = 0x7f0d0087
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant10 = 0x7f0600ca
+hanson.xyz.vpnhotspotmod:dimen/m3_slider_inactive_track_height = 0x7f0701e7
+hanson.xyz.vpnhotspotmod:color/common_google_signin_btn_text_light_pressed = 0x7f06003f
+hanson.xyz.vpnhotspotmod:attr/imageButtonStyle = 0x7f040233
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_on_error_container = 0x7f0601e4
+hanson.xyz.vpnhotspotmod:attr/errorEnabled = 0x7f0401b0
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_radio_button_disabled_unselected_icon_opacity = 0x7f070168
+hanson.xyz.vpnhotspotmod:color/error_color_material_light = 0x7f06006d
+hanson.xyz.vpnhotspotmod:style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored = 0x7f1301e0
+hanson.xyz.vpnhotspotmod:color/m3_dark_default_color_primary_text = 0x7f060088
+hanson.xyz.vpnhotspotmod:dimen/mtrl_btn_text_btn_padding_right = 0x7f07026b
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_secondary20 = 0x7f0600f1
+hanson.xyz.vpnhotspotmod:attr/voiceIcon = 0x7f0404c7
+hanson.xyz.vpnhotspotmod:drawable/ic_mtrl_chip_checked_circle = 0x7f0800ce
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.Spinner.DropDown = 0x7f13034b
+hanson.xyz.vpnhotspotmod:style/Base.V28.Theme.AppCompat = 0x7f1300bc
+hanson.xyz.vpnhotspotmod:string/repeater_create_group_failure = 0x7f1200ec
+hanson.xyz.vpnhotspotmod:attr/cornerFamilyBottomRight = 0x7f040141
+hanson.xyz.vpnhotspotmod:color/material_personalized_hint_foreground_inverse = 0x7f0602b9
+hanson.xyz.vpnhotspotmod:styleable/MaterialRadioButton = 0x7f14005d
+hanson.xyz.vpnhotspotmod:anim/design_snackbar_out = 0x7f01001c
+hanson.xyz.vpnhotspotmod:dimen/abc_alert_dialog_button_dimen = 0x7f070011
+hanson.xyz.vpnhotspotmod:style/ThemeOverlay.AppCompat.Dialog.Alert = 0x7f13029e
+hanson.xyz.vpnhotspotmod:attr/errorIconTint = 0x7f0401b2
+hanson.xyz.vpnhotspotmod:attr/state_collapsible = 0x7f0403f7
+hanson.xyz.vpnhotspotmod:styleable/ViewStubCompat = 0x7f1400ab
+hanson.xyz.vpnhotspotmod:dimen/abc_dialog_fixed_width_major = 0x7f07001e
+hanson.xyz.vpnhotspotmod:attr/yearSelectedStyle = 0x7f0404d9
+hanson.xyz.vpnhotspotmod:drawable/ic_hardware_device_hub = 0x7f0800c1
+hanson.xyz.vpnhotspotmod:string/call_notification_hang_up_action = 0x7f120027
+hanson.xyz.vpnhotspotmod:macro/m3_comp_date_picker_modal_year_selection_year_unselected_label_text_color = 0x7f0d0022
+hanson.xyz.vpnhotspotmod:dimen/m3_chip_dragged_translation_z = 0x7f0700f9
+hanson.xyz.vpnhotspotmod:style/Widget.AppCompat.ButtonBar = 0x7f13031a
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_dark_on_secondary_container = 0x7f060176
+hanson.xyz.vpnhotspotmod:color/m3_ref_palette_dynamic_neutral_variant70 = 0x7f0600d7
+hanson.xyz.vpnhotspotmod:drawable/common_google_signin_btn_icon_dark_normal = 0x7f080085
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_slider_disabled_active_track_opacity = 0x7f070182
+hanson.xyz.vpnhotspotmod:animator/m3_extended_fab_hide_motion_spec = 0x7f020012
+hanson.xyz.vpnhotspotmod:string/common_google_play_services_enable_button = 0x7f120039
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_time_input_time_input_field_focus_outline_width = 0x7f07019c
+hanson.xyz.vpnhotspotmod:style/ShapeAppearance.MaterialComponents.Badge = 0x7f1301a1
+hanson.xyz.vpnhotspotmod:attr/shapeAppearanceCornerSmall = 0x7f0403bf
+hanson.xyz.vpnhotspotmod:id/actions = 0x7f090048
+hanson.xyz.vpnhotspotmod:animator/mtrl_extended_fab_change_size_collapse_motion_spec = 0x7f020019
+hanson.xyz.vpnhotspotmod:dimen/design_bottom_navigation_icon_size = 0x7f070066
+hanson.xyz.vpnhotspotmod:attr/altSrc = 0x7f040034
+hanson.xyz.vpnhotspotmod:color/material_dynamic_neutral_variant90 = 0x7f060249
+hanson.xyz.vpnhotspotmod:attr/defaultQueryHint = 0x7f040164
+hanson.xyz.vpnhotspotmod:dimen/mtrl_progress_circular_inset_small = 0x7f0702d4
+hanson.xyz.vpnhotspotmod:attr/fastScrollEnabled = 0x7f0401d3
+hanson.xyz.vpnhotspotmod:attr/textAppearanceTitleSmall = 0x7f040464
+hanson.xyz.vpnhotspotmod:string/material_hour_suffix = 0x7f120088
+hanson.xyz.vpnhotspotmod:dimen/m3_sys_motion_easing_standard_control_x2 = 0x7f070210
+hanson.xyz.vpnhotspotmod:dimen/m3_bottomappbar_fab_cradle_rounded_corner_radius = 0x7f0700c9
+hanson.xyz.vpnhotspotmod:color/m3_sys_color_light_inverse_on_surface = 0x7f0601df
+hanson.xyz.vpnhotspotmod:id/action_bar_root = 0x7f09003a
+hanson.xyz.vpnhotspotmod:animator/fragment_close_enter = 0x7f020003
+hanson.xyz.vpnhotspotmod:id/bounce = 0x7f09006d
+hanson.xyz.vpnhotspotmod:dimen/compat_button_padding_vertical_material = 0x7f07005b
+hanson.xyz.vpnhotspotmod:id/masked = 0x7f090114
+hanson.xyz.vpnhotspotmod:anim/btn_checkbox_to_checked_box_outer_merged_animation = 0x7f01000e
+hanson.xyz.vpnhotspotmod:attr/actionModeSplitBackground = 0x7f04001b
+hanson.xyz.vpnhotspotmod:string/repeater_location_off = 0x7f1200f2
+hanson.xyz.vpnhotspotmod:id/monitor = 0x7f090133
+hanson.xyz.vpnhotspotmod:dimen/m3_comp_assist_chip_with_icon_icon_size = 0x7f070101
+hanson.xyz.vpnhotspotmod:id/action_bar_container = 0x7f090039
+hanson.xyz.vpnhotspotmod:attr/buttonStyleSmall = 0x7f040098
+hanson.xyz.vpnhotspotmod:dimen/material_clock_face_margin_bottom = 0x7f070222
+hanson.xyz.vpnhotspotmod:layout/libraries_social_licenses_license_activity = 0x7f0c003a
+hanson.xyz.vpnhotspotmod:attr/badgeText = 0x7f04005b
+hanson.xyz.vpnhotspotmod:animator/mtrl_btn_state_list_anim = 0x7f020015
+hanson.xyz.vpnhotspotmod:dimen/mtrl_calendar_header_toggle_margin_top = 0x7f070283
+hanson.xyz.vpnhotspotmod:attr/counterTextColor = 0x7f04014f
+hanson.xyz.vpnhotspotmod:attr/colorError = 0x7f0400ee
+hanson.xyz.vpnhotspotmod:attr/useSimpleSummaryProvider = 0x7f0404c1
+hanson.xyz.vpnhotspotmod:style/TextAppearance.Compat.Notification.Title = 0x7f1301ed
+hanson.xyz.vpnhotspotmod:anim/abc_slide_out_top = 0x7f01000a
diff --git a/mobile/build/intermediates/symbol_list_with_package_name/freedomDebug/package-aware-r.txt b/mobile/build/intermediates/symbol_list_with_package_name/freedomDebug/package-aware-r.txt
new file mode 100644
index 00000000..80fc174a
--- /dev/null
+++ b/mobile/build/intermediates/symbol_list_with_package_name/freedomDebug/package-aware-r.txt
@@ -0,0 +1,5730 @@
+hanson.xyz.vpnhotspotmod
+anim abc_fade_in
+anim abc_fade_out
+anim abc_grow_fade_in_from_bottom
+anim abc_popup_enter
+anim abc_popup_exit
+anim abc_shrink_fade_out_center
+anim abc_shrink_fade_out_from_bottom
+anim abc_slide_in_bottom
+anim abc_slide_in_top
+anim abc_slide_out_bottom
+anim abc_slide_out_top
+anim abc_tooltip_enter
+anim abc_tooltip_exit
+anim btn_checkbox_to_checked_box_inner_merged_animation
+anim btn_checkbox_to_checked_box_outer_merged_animation
+anim btn_checkbox_to_checked_icon_null_animation
+anim btn_checkbox_to_unchecked_box_inner_merged_animation
+anim btn_checkbox_to_unchecked_check_path_merged_animation
+anim btn_checkbox_to_unchecked_icon_null_animation
+anim btn_radio_to_off_mtrl_dot_group_animation
+anim btn_radio_to_off_mtrl_ring_outer_animation
+anim btn_radio_to_off_mtrl_ring_outer_path_animation
+anim btn_radio_to_on_mtrl_dot_group_animation
+anim btn_radio_to_on_mtrl_ring_outer_animation
+anim btn_radio_to_on_mtrl_ring_outer_path_animation
+anim design_bottom_sheet_slide_in
+anim design_bottom_sheet_slide_out
+anim design_snackbar_in
+anim design_snackbar_out
+anim fragment_fast_out_extra_slow_in
+anim linear_indeterminate_line1_head_interpolator
+anim linear_indeterminate_line1_tail_interpolator
+anim linear_indeterminate_line2_head_interpolator
+anim linear_indeterminate_line2_tail_interpolator
+anim m3_bottom_sheet_slide_in
+anim m3_bottom_sheet_slide_out
+anim m3_motion_fade_enter
+anim m3_motion_fade_exit
+anim m3_side_sheet_enter_from_left
+anim m3_side_sheet_enter_from_right
+anim m3_side_sheet_exit_to_left
+anim m3_side_sheet_exit_to_right
+anim mtrl_bottom_sheet_slide_in
+anim mtrl_bottom_sheet_slide_out
+anim mtrl_card_lowers_interpolator
+animator design_appbar_state_list_animator
+animator design_fab_hide_motion_spec
+animator design_fab_show_motion_spec
+animator fragment_close_enter
+animator fragment_close_exit
+animator fragment_fade_enter
+animator fragment_fade_exit
+animator fragment_open_enter
+animator fragment_open_exit
+animator m3_appbar_state_list_animator
+animator m3_btn_elevated_btn_state_list_anim
+animator m3_btn_state_list_anim
+animator m3_card_elevated_state_list_anim
+animator m3_card_state_list_anim
+animator m3_chip_state_list_anim
+animator m3_elevated_chip_state_list_anim
+animator m3_extended_fab_change_size_collapse_motion_spec
+animator m3_extended_fab_change_size_expand_motion_spec
+animator m3_extended_fab_hide_motion_spec
+animator m3_extended_fab_show_motion_spec
+animator m3_extended_fab_state_list_animator
+animator mtrl_btn_state_list_anim
+animator mtrl_btn_unelevated_state_list_anim
+animator mtrl_card_state_list_anim
+animator mtrl_chip_state_list_anim
+animator mtrl_extended_fab_change_size_collapse_motion_spec
+animator mtrl_extended_fab_change_size_expand_motion_spec
+animator mtrl_extended_fab_hide_motion_spec
+animator mtrl_extended_fab_show_motion_spec
+animator mtrl_extended_fab_state_list_animator
+animator mtrl_fab_hide_motion_spec
+animator mtrl_fab_show_motion_spec
+animator mtrl_fab_transformation_sheet_collapse_spec
+animator mtrl_fab_transformation_sheet_expand_spec
+array settings_service_ip_monitor
+array settings_service_ip_monitor_values
+array settings_service_masquerade
+array settings_service_masquerade_values
+array settings_service_wifi_lock
+array settings_service_wifi_lock_values
+array wifi_mac_randomization
+attr actionBarDivider
+attr actionBarItemBackground
+attr actionBarPopupTheme
+attr actionBarSize
+attr actionBarSplitStyle
+attr actionBarStyle
+attr actionBarTabBarStyle
+attr actionBarTabStyle
+attr actionBarTabTextStyle
+attr actionBarTheme
+attr actionBarWidgetTheme
+attr actionButtonStyle
+attr actionDropDownStyle
+attr actionLayout
+attr actionMenuTextAppearance
+attr actionMenuTextColor
+attr actionModeBackground
+attr actionModeCloseButtonStyle
+attr actionModeCloseContentDescription
+attr actionModeCloseDrawable
+attr actionModeCopyDrawable
+attr actionModeCutDrawable
+attr actionModeFindDrawable
+attr actionModePasteDrawable
+attr actionModePopupWindowStyle
+attr actionModeSelectAllDrawable
+attr actionModeShareDrawable
+attr actionModeSplitBackground
+attr actionModeStyle
+attr actionModeTheme
+attr actionModeWebSearchDrawable
+attr actionOverflowButtonStyle
+attr actionOverflowMenuStyle
+attr actionProviderClass
+attr actionTextColorAlpha
+attr actionViewClass
+attr activeIndicatorLabelPadding
+attr activityAction
+attr activityChooserViewStyle
+attr activityName
+attr addElevationShadow
+attr adjustable
+attr alertDialogButtonGroupStyle
+attr alertDialogCenterButtons
+attr alertDialogStyle
+attr alertDialogTheme
+attr allowDividerAbove
+attr allowDividerAfterLastItem
+attr allowDividerBelow
+attr allowStacking
+attr alpha
+attr alphabeticModifiers
+attr altSrc
+attr alwaysExpand
+attr animateMenuItems
+attr animateNavigationIcon
+attr animate_relativeTo
+attr animationMode
+attr appBarLayoutStyle
+attr applyMotionScene
+attr arcMode
+attr arrowHeadLength
+attr arrowShaftLength
+attr attributeName
+attr autoAdjustToWithinGrandparentBounds
+attr autoCompleteTextViewStyle
+attr autoShowKeyboard
+attr autoSizeMaxTextSize
+attr autoSizeMinTextSize
+attr autoSizePresetSizes
+attr autoSizeStepGranularity
+attr autoSizeTextType
+attr autoTransition
+attr backHandlingEnabled
+attr background
+attr backgroundColor
+attr backgroundInsetBottom
+attr backgroundInsetEnd
+attr backgroundInsetStart
+attr backgroundInsetTop
+attr backgroundOverlayColorAlpha
+attr backgroundSplit
+attr backgroundStacked
+attr backgroundTint
+attr backgroundTintMode
+attr badgeGravity
+attr badgeHeight
+attr badgeRadius
+attr badgeShapeAppearance
+attr badgeShapeAppearanceOverlay
+attr badgeStyle
+attr badgeText
+attr badgeTextAppearance
+attr badgeTextColor
+attr badgeVerticalPadding
+attr badgeWidePadding
+attr badgeWidth
+attr badgeWithTextHeight
+attr badgeWithTextRadius
+attr badgeWithTextShapeAppearance
+attr badgeWithTextShapeAppearanceOverlay
+attr badgeWithTextWidth
+attr barLength
+attr barrierAllowsGoneWidgets
+attr barrierDirection
+attr barrierMargin
+attr behavior_autoHide
+attr behavior_autoShrink
+attr behavior_draggable
+attr behavior_expandedOffset
+attr behavior_fitToContents
+attr behavior_halfExpandedRatio
+attr behavior_hideable
+attr behavior_overlapTop
+attr behavior_peekHeight
+attr behavior_saveFlags
+attr behavior_significantVelocityThreshold
+attr behavior_skipCollapsed
+attr borderWidth
+attr borderlessButtonStyle
+attr bottomAppBarStyle
+attr bottomInsetScrimEnabled
+attr bottomNavigationStyle
+attr bottomSheetDialogTheme
+attr bottomSheetDragHandleStyle
+attr bottomSheetStyle
+attr boxBackgroundColor
+attr boxBackgroundMode
+attr boxCollapsedPaddingTop
+attr boxCornerRadiusBottomEnd
+attr boxCornerRadiusBottomStart
+attr boxCornerRadiusTopEnd
+attr boxCornerRadiusTopStart
+attr boxStrokeColor
+attr boxStrokeErrorColor
+attr boxStrokeWidth
+attr boxStrokeWidthFocused
+attr brightness
+attr buttonBarButtonStyle
+attr buttonBarNegativeButtonStyle
+attr buttonBarNeutralButtonStyle
+attr buttonBarPositiveButtonStyle
+attr buttonBarStyle
+attr buttonCompat
+attr buttonGravity
+attr buttonIcon
+attr buttonIconDimen
+attr buttonIconTint
+attr buttonIconTintMode
+attr buttonPanelSideLayout
+attr buttonSize
+attr buttonStyle
+attr buttonStyleSmall
+attr buttonTint
+attr buttonTintMode
+attr cardBackgroundColor
+attr cardCornerRadius
+attr cardElevation
+attr cardForegroundColor
+attr cardMaxElevation
+attr cardPreventCornerOverlap
+attr cardUseCompatPadding
+attr cardViewStyle
+attr carousel_alignment
+attr centerIfNoTextEnabled
+attr chainUseRtl
+attr checkBoxPreferenceStyle
+attr checkMarkCompat
+attr checkMarkTint
+attr checkMarkTintMode
+attr checkboxStyle
+attr checkedButton
+attr checkedChip
+attr checkedIcon
+attr checkedIconEnabled
+attr checkedIconGravity
+attr checkedIconMargin
+attr checkedIconSize
+attr checkedIconTint
+attr checkedIconVisible
+attr checkedState
+attr checkedTextViewStyle
+attr chipBackgroundColor
+attr chipCornerRadius
+attr chipEndPadding
+attr chipGroupStyle
+attr chipIcon
+attr chipIconEnabled
+attr chipIconSize
+attr chipIconTint
+attr chipIconVisible
+attr chipMinHeight
+attr chipMinTouchTargetSize
+attr chipSpacing
+attr chipSpacingHorizontal
+attr chipSpacingVertical
+attr chipStandaloneStyle
+attr chipStartPadding
+attr chipStrokeColor
+attr chipStrokeWidth
+attr chipStyle
+attr chipSurfaceColor
+attr circleCrop
+attr circleRadius
+attr circularProgressIndicatorStyle
+attr clearTop
+attr clickAction
+attr clockFaceBackgroundColor
+attr clockHandColor
+attr clockIcon
+attr clockNumberTextColor
+attr closeIcon
+attr closeIconEnabled
+attr closeIconEndPadding
+attr closeIconSize
+attr closeIconStartPadding
+attr closeIconTint
+attr closeIconVisible
+attr closeItemLayout
+attr collapseContentDescription
+attr collapseIcon
+attr collapsedSize
+attr collapsedTitleGravity
+attr collapsedTitleTextAppearance
+attr collapsedTitleTextColor
+attr collapsingToolbarLayoutLargeSize
+attr collapsingToolbarLayoutLargeStyle
+attr collapsingToolbarLayoutMediumSize
+attr collapsingToolbarLayoutMediumStyle
+attr collapsingToolbarLayoutStyle
+attr color
+attr colorAccent
+attr colorBackgroundFloating
+attr colorButtonNormal
+attr colorContainer
+attr colorControlActivated
+attr colorControlHighlight
+attr colorControlNormal
+attr colorError
+attr colorErrorContainer
+attr colorOnBackground
+attr colorOnContainer
+attr colorOnContainerUnchecked
+attr colorOnError
+attr colorOnErrorContainer
+attr colorOnPrimary
+attr colorOnPrimaryContainer
+attr colorOnPrimaryFixed
+attr colorOnPrimaryFixedVariant
+attr colorOnPrimarySurface
+attr colorOnSecondary
+attr colorOnSecondaryContainer
+attr colorOnSecondaryFixed
+attr colorOnSecondaryFixedVariant
+attr colorOnSurface
+attr colorOnSurfaceInverse
+attr colorOnSurfaceVariant
+attr colorOnTertiary
+attr colorOnTertiaryContainer
+attr colorOnTertiaryFixed
+attr colorOnTertiaryFixedVariant
+attr colorOutline
+attr colorOutlineVariant
+attr colorPrimary
+attr colorPrimaryContainer
+attr colorPrimaryDark
+attr colorPrimaryFixed
+attr colorPrimaryFixedDim
+attr colorPrimaryInverse
+attr colorPrimarySurface
+attr colorPrimaryVariant
+attr colorScheme
+attr colorSecondary
+attr colorSecondaryContainer
+attr colorSecondaryFixed
+attr colorSecondaryFixedDim
+attr colorSecondaryVariant
+attr colorSurface
+attr colorSurfaceBright
+attr colorSurfaceContainer
+attr colorSurfaceContainerHigh
+attr colorSurfaceContainerHighest
+attr colorSurfaceContainerLow
+attr colorSurfaceContainerLowest
+attr colorSurfaceDim
+attr colorSurfaceInverse
+attr colorSurfaceVariant
+attr colorSwitchThumbNormal
+attr colorTertiary
+attr colorTertiaryContainer
+attr colorTertiaryFixed
+attr colorTertiaryFixedDim
+attr commitIcon
+attr compatShadowEnabled
+attr constraintSet
+attr constraintSetEnd
+attr constraintSetStart
+attr constraint_referenced_ids
+attr constraints
+attr content
+attr contentDescription
+attr contentInsetEnd
+attr contentInsetEndWithActions
+attr contentInsetLeft
+attr contentInsetRight
+attr contentInsetStart
+attr contentInsetStartWithNavigation
+attr contentPadding
+attr contentPaddingBottom
+attr contentPaddingEnd
+attr contentPaddingLeft
+attr contentPaddingRight
+attr contentPaddingStart
+attr contentPaddingTop
+attr contentScrim
+attr contrast
+attr controlBackground
+attr coordinatorLayoutStyle
+attr coplanarSiblingViewId
+attr cornerFamily
+attr cornerFamilyBottomLeft
+attr cornerFamilyBottomRight
+attr cornerFamilyTopLeft
+attr cornerFamilyTopRight
+attr cornerRadius
+attr cornerSize
+attr cornerSizeBottomLeft
+attr cornerSizeBottomRight
+attr cornerSizeTopLeft
+attr cornerSizeTopRight
+attr counterEnabled
+attr counterMaxLength
+attr counterOverflowTextAppearance
+attr counterOverflowTextColor
+attr counterTextAppearance
+attr counterTextColor
+attr crossfade
+attr currentState
+attr cursorColor
+attr cursorErrorColor
+attr curveFit
+attr customBoolean
+attr customColorDrawableValue
+attr customColorValue
+attr customDimension
+attr customFloatValue
+attr customIntegerValue
+attr customNavigationLayout
+attr customPixelDimension
+attr customStringValue
+attr dayInvalidStyle
+attr daySelectedStyle
+attr dayStyle
+attr dayTodayStyle
+attr defaultDuration
+attr defaultMarginsEnabled
+attr defaultQueryHint
+attr defaultScrollFlagsEnabled
+attr defaultState
+attr defaultValue
+attr deltaPolarAngle
+attr deltaPolarRadius
+attr dependency
+attr deriveConstraintsFrom
+attr dialogCornerRadius
+attr dialogIcon
+attr dialogLayout
+attr dialogMessage
+attr dialogPreferenceStyle
+attr dialogPreferredPadding
+attr dialogTheme
+attr dialogTitle
+attr disableDependentsState
+attr displayOptions
+attr divider
+attr dividerColor
+attr dividerHorizontal
+attr dividerInsetEnd
+attr dividerInsetStart
+attr dividerPadding
+attr dividerThickness
+attr dividerVertical
+attr dragDirection
+attr dragScale
+attr dragThreshold
+attr drawPath
+attr drawableBottomCompat
+attr drawableEndCompat
+attr drawableLeftCompat
+attr drawableRightCompat
+attr drawableSize
+attr drawableStartCompat
+attr drawableTint
+attr drawableTintMode
+attr drawableTopCompat
+attr drawerArrowStyle
+attr drawerLayoutCornerSize
+attr drawerLayoutStyle
+attr dropDownBackgroundTint
+attr dropDownListViewStyle
+attr dropdownListPreferredItemHeight
+attr dropdownPreferenceStyle
+attr duration
+attr dynamicColorThemeOverlay
+attr editTextBackground
+attr editTextColor
+attr editTextPreferenceStyle
+attr editTextStyle
+attr elevation
+attr elevationOverlayAccentColor
+attr elevationOverlayColor
+attr elevationOverlayEnabled
+attr emojiCompatEnabled
+attr enableCopying
+attr enableEdgeToEdge
+attr enabled
+attr endIconCheckable
+attr endIconContentDescription
+attr endIconDrawable
+attr endIconMinSize
+attr endIconMode
+attr endIconScaleType
+attr endIconTint
+attr endIconTintMode
+attr enforceMaterialTheme
+attr enforceTextAppearance
+attr ensureMinTouchTargetSize
+attr entries
+attr entryValues
+attr errorAccessibilityLabel
+attr errorAccessibilityLiveRegion
+attr errorContentDescription
+attr errorEnabled
+attr errorIconDrawable
+attr errorIconTint
+attr errorIconTintMode
+attr errorShown
+attr errorTextAppearance
+attr errorTextColor
+attr expandActivityOverflowButtonDrawable
+attr expanded
+attr expandedHintEnabled
+attr expandedTitleGravity
+attr expandedTitleMargin
+attr expandedTitleMarginBottom
+attr expandedTitleMarginEnd
+attr expandedTitleMarginStart
+attr expandedTitleMarginTop
+attr expandedTitleTextAppearance
+attr expandedTitleTextColor
+attr extendMotionSpec
+attr extendStrategy
+attr extendedFloatingActionButtonPrimaryStyle
+attr extendedFloatingActionButtonSecondaryStyle
+attr extendedFloatingActionButtonStyle
+attr extendedFloatingActionButtonSurfaceStyle
+attr extendedFloatingActionButtonTertiaryStyle
+attr extraMultilineHeightEnabled
+attr fabAlignmentMode
+attr fabAlignmentModeEndMargin
+attr fabAnchorMode
+attr fabAnimationMode
+attr fabCradleMargin
+attr fabCradleRoundedCornerRadius
+attr fabCradleVerticalOffset
+attr fabCustomSize
+attr fabSize
+attr fastScrollEnabled
+attr fastScrollHorizontalThumbDrawable
+attr fastScrollHorizontalTrackDrawable
+attr fastScrollVerticalThumbDrawable
+attr fastScrollVerticalTrackDrawable
+attr finishPrimaryWithSecondary
+attr finishSecondaryWithPrimary
+attr firstBaselineToTopHeight
+attr floatingActionButtonLargePrimaryStyle
+attr floatingActionButtonLargeSecondaryStyle
+attr floatingActionButtonLargeStyle
+attr floatingActionButtonLargeSurfaceStyle
+attr floatingActionButtonLargeTertiaryStyle
+attr floatingActionButtonPrimaryStyle
+attr floatingActionButtonSecondaryStyle
+attr floatingActionButtonSmallPrimaryStyle
+attr floatingActionButtonSmallSecondaryStyle
+attr floatingActionButtonSmallStyle
+attr floatingActionButtonSmallSurfaceStyle
+attr floatingActionButtonSmallTertiaryStyle
+attr floatingActionButtonStyle
+attr floatingActionButtonSurfaceStyle
+attr floatingActionButtonTertiaryStyle
+attr flow_firstHorizontalBias
+attr flow_firstHorizontalStyle
+attr flow_firstVerticalBias
+attr flow_firstVerticalStyle
+attr flow_horizontalAlign
+attr flow_horizontalBias
+attr flow_horizontalGap
+attr flow_horizontalStyle
+attr flow_lastHorizontalBias
+attr flow_lastHorizontalStyle
+attr flow_lastVerticalBias
+attr flow_lastVerticalStyle
+attr flow_maxElementsWrap
+attr flow_padding
+attr flow_verticalAlign
+attr flow_verticalBias
+attr flow_verticalGap
+attr flow_verticalStyle
+attr flow_wrapMode
+attr font
+attr fontFamily
+attr fontProviderAuthority
+attr fontProviderCerts
+attr fontProviderFetchStrategy
+attr fontProviderFetchTimeout
+attr fontProviderPackage
+attr fontProviderQuery
+attr fontProviderSystemFontFamily
+attr fontStyle
+attr fontVariationSettings
+attr fontWeight
+attr forceApplySystemWindowInsetTop
+attr forceDefaultNavigationOnClickListener
+attr foregroundInsidePadding
+attr fragment
+attr framePosition
+attr gapBetweenBars
+attr gestureInsetBottomIgnored
+attr goIcon
+attr haloColor
+attr haloRadius
+attr headerLayout
+attr height
+attr helperText
+attr helperTextEnabled
+attr helperTextTextAppearance
+attr helperTextTextColor
+attr hideAnimationBehavior
+attr hideMotionSpec
+attr hideNavigationIcon
+attr hideOnContentScroll
+attr hideOnScroll
+attr hintAnimationEnabled
+attr hintEnabled
+attr hintTextAppearance
+attr hintTextColor
+attr homeAsUpIndicator
+attr homeLayout
+attr horizontalOffset
+attr horizontalOffsetWithText
+attr hoveredFocusedTranslationZ
+attr icon
+attr iconEndPadding
+attr iconGravity
+attr iconPadding
+attr iconSize
+attr iconSpaceReserved
+attr iconStartPadding
+attr iconTint
+attr iconTintMode
+attr iconifiedByDefault
+attr imageAspectRatio
+attr imageAspectRatioAdjust
+attr imageButtonStyle
+attr indeterminateAnimationType
+attr indeterminateProgressStyle
+attr indicatorColor
+attr indicatorDirectionCircular
+attr indicatorDirectionLinear
+attr indicatorInset
+attr indicatorSize
+attr initialActivityCount
+attr initialExpandedChildrenCount
+attr insetForeground
+attr isLightTheme
+attr isMaterial3DynamicColorApplied
+attr isMaterial3Theme
+attr isMaterialTheme
+attr isPreferenceVisible
+attr itemActiveIndicatorStyle
+attr itemBackground
+attr itemFillColor
+attr itemHorizontalPadding
+attr itemHorizontalTranslationEnabled
+attr itemIconPadding
+attr itemIconSize
+attr itemIconTint
+attr itemMaxLines
+attr itemMinHeight
+attr itemPadding
+attr itemPaddingBottom
+attr itemPaddingTop
+attr itemRippleColor
+attr itemShapeAppearance
+attr itemShapeAppearanceOverlay
+attr itemShapeFillColor
+attr itemShapeInsetBottom
+attr itemShapeInsetEnd
+attr itemShapeInsetStart
+attr itemShapeInsetTop
+attr itemSpacing
+attr itemStrokeColor
+attr itemStrokeWidth
+attr itemTextAppearance
+attr itemTextAppearanceActive
+attr itemTextAppearanceActiveBoldEnabled
+attr itemTextAppearanceInactive
+attr itemTextColor
+attr itemVerticalPadding
+attr key
+attr keyPositionType
+attr keyboardIcon
+attr keylines
+attr lStar
+attr labelBehavior
+attr labelStyle
+attr labelVisibilityMode
+attr largeFontVerticalOffsetAdjustment
+attr lastBaselineToBottomHeight
+attr lastItemDecorated
+attr layout
+attr layoutDescription
+attr layoutDuringTransition
+attr layoutManager
+attr layout_anchor
+attr layout_anchorGravity
+attr layout_behavior
+attr layout_collapseMode
+attr layout_collapseParallaxMultiplier
+attr layout_constrainedHeight
+attr layout_constrainedWidth
+attr layout_constraintBaseline_creator
+attr layout_constraintBaseline_toBaselineOf
+attr layout_constraintBottom_creator
+attr layout_constraintBottom_toBottomOf
+attr layout_constraintBottom_toTopOf
+attr layout_constraintCircle
+attr layout_constraintCircleAngle
+attr layout_constraintCircleRadius
+attr layout_constraintDimensionRatio
+attr layout_constraintEnd_toEndOf
+attr layout_constraintEnd_toStartOf
+attr layout_constraintGuide_begin
+attr layout_constraintGuide_end
+attr layout_constraintGuide_percent
+attr layout_constraintHeight_default
+attr layout_constraintHeight_max
+attr layout_constraintHeight_min
+attr layout_constraintHeight_percent
+attr layout_constraintHorizontal_bias
+attr layout_constraintHorizontal_chainStyle
+attr layout_constraintHorizontal_weight
+attr layout_constraintLeft_creator
+attr layout_constraintLeft_toLeftOf
+attr layout_constraintLeft_toRightOf
+attr layout_constraintRight_creator
+attr layout_constraintRight_toLeftOf
+attr layout_constraintRight_toRightOf
+attr layout_constraintStart_toEndOf
+attr layout_constraintStart_toStartOf
+attr layout_constraintTag
+attr layout_constraintTop_creator
+attr layout_constraintTop_toBottomOf
+attr layout_constraintTop_toTopOf
+attr layout_constraintVertical_bias
+attr layout_constraintVertical_chainStyle
+attr layout_constraintVertical_weight
+attr layout_constraintWidth_default
+attr layout_constraintWidth_max
+attr layout_constraintWidth_min
+attr layout_constraintWidth_percent
+attr layout_dodgeInsetEdges
+attr layout_editor_absoluteX
+attr layout_editor_absoluteY
+attr layout_goneMarginBottom
+attr layout_goneMarginEnd
+attr layout_goneMarginLeft
+attr layout_goneMarginRight
+attr layout_goneMarginStart
+attr layout_goneMarginTop
+attr layout_insetEdge
+attr layout_keyline
+attr layout_optimizationLevel
+attr layout_scrollEffect
+attr layout_scrollFlags
+attr layout_scrollInterpolator
+attr liftOnScroll
+attr liftOnScrollColor
+attr liftOnScrollTargetViewId
+attr limitBoundsTo
+attr lineHeight
+attr lineSpacing
+attr linearProgressIndicatorStyle
+attr listChoiceBackgroundIndicator
+attr listChoiceIndicatorMultipleAnimated
+attr listChoiceIndicatorSingleAnimated
+attr listDividerAlertDialog
+attr listItemLayout
+attr listLayout
+attr listMenuViewStyle
+attr listPopupWindowStyle
+attr listPreferredItemHeight
+attr listPreferredItemHeightLarge
+attr listPreferredItemHeightSmall
+attr listPreferredItemPaddingEnd
+attr listPreferredItemPaddingLeft
+attr listPreferredItemPaddingRight
+attr listPreferredItemPaddingStart
+attr logo
+attr logoAdjustViewBounds
+attr logoDescription
+attr logoScaleType
+attr marginHorizontal
+attr marginLeftSystemWindowInsets
+attr marginRightSystemWindowInsets
+attr marginTopSystemWindowInsets
+attr materialAlertDialogBodyTextStyle
+attr materialAlertDialogButtonSpacerVisibility
+attr materialAlertDialogTheme
+attr materialAlertDialogTitleIconStyle
+attr materialAlertDialogTitlePanelStyle
+attr materialAlertDialogTitleTextStyle
+attr materialButtonOutlinedStyle
+attr materialButtonStyle
+attr materialButtonToggleGroupStyle
+attr materialCalendarDay
+attr materialCalendarDayOfWeekLabel
+attr materialCalendarFullscreenTheme
+attr materialCalendarHeaderCancelButton
+attr materialCalendarHeaderConfirmButton
+attr materialCalendarHeaderDivider
+attr materialCalendarHeaderLayout
+attr materialCalendarHeaderSelection
+attr materialCalendarHeaderTitle
+attr materialCalendarHeaderToggleButton
+attr materialCalendarMonth
+attr materialCalendarMonthNavigationButton
+attr materialCalendarStyle
+attr materialCalendarTheme
+attr materialCalendarYearNavigationButton
+attr materialCardViewElevatedStyle
+attr materialCardViewFilledStyle
+attr materialCardViewOutlinedStyle
+attr materialCardViewStyle
+attr materialCircleRadius
+attr materialClockStyle
+attr materialDisplayDividerStyle
+attr materialDividerHeavyStyle
+attr materialDividerStyle
+attr materialIconButtonFilledStyle
+attr materialIconButtonFilledTonalStyle
+attr materialIconButtonOutlinedStyle
+attr materialIconButtonStyle
+attr materialSearchBarStyle
+attr materialSearchViewPrefixStyle
+attr materialSearchViewStyle
+attr materialSearchViewToolbarHeight
+attr materialSearchViewToolbarStyle
+attr materialSwitchStyle
+attr materialThemeOverlay
+attr materialTimePickerStyle
+attr materialTimePickerTheme
+attr materialTimePickerTitleStyle
+attr maxAcceleration
+attr maxActionInlineWidth
+attr maxButtonHeight
+attr maxCharacterCount
+attr maxHeight
+attr maxImageSize
+attr maxLines
+attr maxNumber
+attr maxVelocity
+attr maxWidth
+attr measureWithLargestChild
+attr menu
+attr menuAlignmentMode
+attr menuGravity
+attr min
+attr minHeight
+attr minHideDelay
+attr minSeparation
+attr minTouchTargetSize
+attr minWidth
+attr mock_diagonalsColor
+attr mock_label
+attr mock_labelBackgroundColor
+attr mock_labelColor
+attr mock_showDiagonals
+attr mock_showLabel
+attr motionDebug
+attr motionDurationExtraLong1
+attr motionDurationExtraLong2
+attr motionDurationExtraLong3
+attr motionDurationExtraLong4
+attr motionDurationLong1
+attr motionDurationLong2
+attr motionDurationLong3
+attr motionDurationLong4
+attr motionDurationMedium1
+attr motionDurationMedium2
+attr motionDurationMedium3
+attr motionDurationMedium4
+attr motionDurationShort1
+attr motionDurationShort2
+attr motionDurationShort3
+attr motionDurationShort4
+attr motionEasingAccelerated
+attr motionEasingDecelerated
+attr motionEasingEmphasized
+attr motionEasingEmphasizedAccelerateInterpolator
+attr motionEasingEmphasizedDecelerateInterpolator
+attr motionEasingEmphasizedInterpolator
+attr motionEasingLinear
+attr motionEasingLinearInterpolator
+attr motionEasingStandard
+attr motionEasingStandardAccelerateInterpolator
+attr motionEasingStandardDecelerateInterpolator
+attr motionEasingStandardInterpolator
+attr motionInterpolator
+attr motionPath
+attr motionPathRotate
+attr motionProgress
+attr motionStagger
+attr motionTarget
+attr motion_postLayoutCollision
+attr motion_triggerOnCollision
+attr moveWhenScrollAtTop
+attr multiChoiceItemLayout
+attr navigationContentDescription
+attr navigationIcon
+attr navigationIconTint
+attr navigationMode
+attr navigationRailStyle
+attr navigationViewStyle
+attr negativeButtonText
+attr nestedScrollFlags
+attr nestedScrollViewStyle
+attr nestedScrollable
+attr number
+attr numericModifiers
+attr offsetAlignmentMode
+attr onCross
+attr onHide
+attr onNegativeCross
+attr onPositiveCross
+attr onShow
+attr onTouchUp
+attr order
+attr orderingFromXml
+attr overlapAnchor
+attr overlay
+attr paddingBottomNoButtons
+attr paddingBottomSystemWindowInsets
+attr paddingEnd
+attr paddingLeftSystemWindowInsets
+attr paddingRightSystemWindowInsets
+attr paddingStart
+attr paddingStartSystemWindowInsets
+attr paddingTopNoTitle
+attr paddingTopSystemWindowInsets
+attr panelBackground
+attr panelMenuListTheme
+attr panelMenuListWidth
+attr passwordToggleContentDescription
+attr passwordToggleDrawable
+attr passwordToggleEnabled
+attr passwordToggleTint
+attr passwordToggleTintMode
+attr pathMotionArc
+attr path_percent
+attr percentHeight
+attr percentWidth
+attr percentX
+attr percentY
+attr perpendicularPath_percent
+attr persistent
+attr pivotAnchor
+attr placeholderActivityName
+attr placeholderText
+attr placeholderTextAppearance
+attr placeholderTextColor
+attr placeholder_emptyVisibility
+attr popupMenuBackground
+attr popupMenuStyle
+attr popupTheme
+attr popupWindowStyle
+attr positiveButtonText
+attr pref_dialogElevation
+attr pref_dialogItemPadding
+attr pref_dialogMarginHorizontal
+attr pref_dialogMarginVertical
+attr pref_dialogMaxWidth
+attr pref_listElevation
+attr pref_listItemPadding
+attr pref_listMarginHorizontal
+attr pref_listMarginVertical
+attr pref_maxUnits
+attr pref_popupStyle
+attr pref_unit
+attr preferenceCategoryStyle
+attr preferenceCategoryTitleTextAppearance
+attr preferenceCategoryTitleTextColor
+attr preferenceFragmentCompatStyle
+attr preferenceFragmentListStyle
+attr preferenceFragmentStyle
+attr preferenceInformationStyle
+attr preferenceScreenStyle
+attr preferenceStyle
+attr preferenceTheme
+attr prefixText
+attr prefixTextAppearance
+attr prefixTextColor
+attr preserveIconSpacing
+attr pressedTranslationZ
+attr primaryActivityName
+attr progressBarPadding
+attr progressBarStyle
+attr queryBackground
+attr queryHint
+attr queryPatterns
+attr radioButtonStyle
+attr rangeFillColor
+attr ratingBarStyle
+attr ratingBarStyleIndicator
+attr ratingBarStyleSmall
+attr recyclerViewStyle
+attr region_heightLessThan
+attr region_heightMoreThan
+attr region_widthLessThan
+attr region_widthMoreThan
+attr removeEmbeddedFabElevation
+attr reverseLayout
+attr rippleColor
+attr round
+attr roundPercent
+attr saturation
+attr scopeUris
+attr scrimAnimationDuration
+attr scrimBackground
+attr scrimVisibleHeightTrigger
+attr searchHintIcon
+attr searchIcon
+attr searchPrefixText
+attr searchViewStyle
+attr secondaryActivityAction
+attr secondaryActivityName
+attr seekBarIncrement
+attr seekBarPreferenceStyle
+attr seekBarStyle
+attr selectable
+attr selectableItemBackground
+attr selectableItemBackgroundBorderless
+attr selectionRequired
+attr selectorSize
+attr shapeAppearance
+attr shapeAppearanceCornerExtraLarge
+attr shapeAppearanceCornerExtraSmall
+attr shapeAppearanceCornerLarge
+attr shapeAppearanceCornerMedium
+attr shapeAppearanceCornerSmall
+attr shapeAppearanceLargeComponent
+attr shapeAppearanceMediumComponent
+attr shapeAppearanceOverlay
+attr shapeAppearanceSmallComponent
+attr shapeCornerFamily
+attr shortcutMatchRequired
+attr shouldDisableView
+attr shouldRemoveExpandedCorners
+attr showAnimationBehavior
+attr showAsAction
+attr showDelay
+attr showDividers
+attr showMotionSpec
+attr showPaths
+attr showSeekBarValue
+attr showText
+attr showTitle
+attr shrinkMotionSpec
+attr sideSheetDialogTheme
+attr sideSheetModalStyle
+attr simpleItemLayout
+attr simpleItemSelectedColor
+attr simpleItemSelectedRippleColor
+attr simpleItems
+attr simpleMenuPreferenceStyle
+attr singleChoiceItemLayout
+attr singleLine
+attr singleLineTitle
+attr singleSelection
+attr sizePercent
+attr sliderStyle
+attr snackbarButtonStyle
+attr snackbarStyle
+attr snackbarTextViewStyle
+attr spanCount
+attr spinBars
+attr spinnerDropDownItemStyle
+attr spinnerStyle
+attr splitLayoutDirection
+attr splitMinSmallestWidth
+attr splitMinWidth
+attr splitRatio
+attr splitTrack
+attr srcCompat
+attr stackFromEnd
+attr staggered
+attr startIconCheckable
+attr startIconContentDescription
+attr startIconDrawable
+attr startIconMinSize
+attr startIconScaleType
+attr startIconTint
+attr startIconTintMode
+attr state_above_anchor
+attr state_collapsed
+attr state_collapsible
+attr state_dragged
+attr state_error
+attr state_indeterminate
+attr state_liftable
+attr state_lifted
+attr state_with_icon
+attr statusBarBackground
+attr statusBarForeground
+attr statusBarScrim
+attr strokeColor
+attr strokeWidth
+attr subMenuArrow
+attr subheaderColor
+attr subheaderInsetEnd
+attr subheaderInsetStart
+attr subheaderTextAppearance
+attr submitBackground
+attr subtitle
+attr subtitleCentered
+attr subtitleTextAppearance
+attr subtitleTextColor
+attr subtitleTextStyle
+attr suffixText
+attr suffixTextAppearance
+attr suffixTextColor
+attr suggestionRowLayout
+attr summary
+attr summaryOff
+attr summaryOn
+attr swipeRefreshLayoutProgressSpinnerBackgroundColor
+attr switchMinWidth
+attr switchPadding
+attr switchPreferenceCompatStyle
+attr switchPreferenceStyle
+attr switchStyle
+attr switchTextAppearance
+attr switchTextOff
+attr switchTextOn
+attr tabBackground
+attr tabContentStart
+attr tabGravity
+attr tabIconTint
+attr tabIconTintMode
+attr tabIndicator
+attr tabIndicatorAnimationDuration
+attr tabIndicatorAnimationMode
+attr tabIndicatorColor
+attr tabIndicatorFullWidth
+attr tabIndicatorGravity
+attr tabIndicatorHeight
+attr tabInlineLabel
+attr tabMaxWidth
+attr tabMinWidth
+attr tabMode
+attr tabPadding
+attr tabPaddingBottom
+attr tabPaddingEnd
+attr tabPaddingStart
+attr tabPaddingTop
+attr tabRippleColor
+attr tabSecondaryStyle
+attr tabSelectedTextAppearance
+attr tabSelectedTextColor
+attr tabStyle
+attr tabTextAppearance
+attr tabTextColor
+attr tabUnboundedRipple
+attr targetId
+attr telltales_tailColor
+attr telltales_tailScale
+attr telltales_velocityMode
+attr textAllCaps
+attr textAppearanceBody1
+attr textAppearanceBody2
+attr textAppearanceBodyLarge
+attr textAppearanceBodyMedium
+attr textAppearanceBodySmall
+attr textAppearanceButton
+attr textAppearanceCaption
+attr textAppearanceDisplayLarge
+attr textAppearanceDisplayMedium
+attr textAppearanceDisplaySmall
+attr textAppearanceHeadline1
+attr textAppearanceHeadline2
+attr textAppearanceHeadline3
+attr textAppearanceHeadline4
+attr textAppearanceHeadline5
+attr textAppearanceHeadline6
+attr textAppearanceHeadlineLarge
+attr textAppearanceHeadlineMedium
+attr textAppearanceHeadlineSmall
+attr textAppearanceLabelLarge
+attr textAppearanceLabelMedium
+attr textAppearanceLabelSmall
+attr textAppearanceLargePopupMenu
+attr textAppearanceLineHeightEnabled
+attr textAppearanceListItem
+attr textAppearanceListItemSecondary
+attr textAppearanceListItemSmall
+attr textAppearanceOverline
+attr textAppearancePopupMenuHeader
+attr textAppearanceSearchResultSubtitle
+attr textAppearanceSearchResultTitle
+attr textAppearanceSmallPopupMenu
+attr textAppearanceSubtitle1
+attr textAppearanceSubtitle2
+attr textAppearanceTitleLarge
+attr textAppearanceTitleMedium
+attr textAppearanceTitleSmall
+attr textColorAlertDialogListItem
+attr textColorSearchUrl
+attr textEndPadding
+attr textInputFilledDenseStyle
+attr textInputFilledExposedDropdownMenuStyle
+attr textInputFilledStyle
+attr textInputLayoutFocusedRectEnabled
+attr textInputOutlinedDenseStyle
+attr textInputOutlinedExposedDropdownMenuStyle
+attr textInputOutlinedStyle
+attr textInputStyle
+attr textLocale
+attr textStartPadding
+attr theme
+attr thickness
+attr thumbColor
+attr thumbElevation
+attr thumbIcon
+attr thumbIconSize
+attr thumbIconTint
+attr thumbIconTintMode
+attr thumbRadius
+attr thumbStrokeColor
+attr thumbStrokeWidth
+attr thumbTextPadding
+attr thumbTint
+attr thumbTintMode
+attr tickColor
+attr tickColorActive
+attr tickColorInactive
+attr tickMark
+attr tickMarkTint
+attr tickMarkTintMode
+attr tickRadiusActive
+attr tickRadiusInactive
+attr tickVisible
+attr tint
+attr tintMode
+attr tintNavigationIcon
+attr title
+attr titleCentered
+attr titleCollapseMode
+attr titleEnabled
+attr titleMargin
+attr titleMarginBottom
+attr titleMarginEnd
+attr titleMarginStart
+attr titleMarginTop
+attr titleMargins
+attr titlePositionInterpolator
+attr titleTextAppearance
+attr titleTextColor
+attr titleTextEllipsize
+attr titleTextStyle
+attr toggleCheckedStateOnClick
+attr toolbarId
+attr toolbarNavigationButtonStyle
+attr toolbarStyle
+attr toolbarSurfaceStyle
+attr tooltipForegroundColor
+attr tooltipFrameBackground
+attr tooltipStyle
+attr tooltipText
+attr topInsetScrimEnabled
+attr touchAnchorId
+attr touchAnchorSide
+attr touchRegionId
+attr track
+attr trackColor
+attr trackColorActive
+attr trackColorInactive
+attr trackCornerRadius
+attr trackDecoration
+attr trackDecorationTint
+attr trackDecorationTintMode
+attr trackHeight
+attr trackThickness
+attr trackTint
+attr trackTintMode
+attr transitionDisable
+attr transitionEasing
+attr transitionFlags
+attr transitionPathRotate
+attr transitionShapeAppearance
+attr triggerId
+attr triggerReceiver
+attr triggerSlack
+attr ttcIndex
+attr updatesContinuously
+attr useCompatPadding
+attr useDrawerArrowDrawable
+attr useMaterialThemeColors
+attr useSimpleSummaryProvider
+attr values
+attr verticalOffset
+attr verticalOffsetWithText
+attr viewInflaterClass
+attr visibilityMode
+attr voiceIcon
+attr warmth
+attr waveDecay
+attr waveOffset
+attr wavePeriod
+attr waveShape
+attr waveVariesBy
+attr widgetLayout
+attr windowActionBar
+attr windowActionBarOverlay
+attr windowActionModeOverlay
+attr windowFixedHeightMajor
+attr windowFixedHeightMinor
+attr windowFixedWidthMajor
+attr windowFixedWidthMinor
+attr windowMinWidthMajor
+attr windowMinWidthMinor
+attr windowNoTitle
+attr yearSelectedStyle
+attr yearStyle
+attr yearTodayStyle
+bool abc_action_bar_embed_tabs
+bool abc_config_actionMenuItemAllCaps
+bool api_ge_30
+bool config_materialPreferenceIconSpaceReserved
+bool is_day
+bool mtrl_btn_textappearance_all_caps
+color abc_background_cache_hint_selector_material_dark
+color abc_background_cache_hint_selector_material_light
+color abc_btn_colored_borderless_text_material
+color abc_btn_colored_text_material
+color abc_color_highlight_material
+color abc_decor_view_status_guard
+color abc_decor_view_status_guard_light
+color abc_hint_foreground_material_dark
+color abc_hint_foreground_material_light
+color abc_primary_text_disable_only_material_dark
+color abc_primary_text_disable_only_material_light
+color abc_primary_text_material_dark
+color abc_primary_text_material_light
+color abc_search_url_text
+color abc_search_url_text_normal
+color abc_search_url_text_pressed
+color abc_search_url_text_selected
+color abc_secondary_text_material_dark
+color abc_secondary_text_material_light
+color abc_tint_btn_checkable
+color abc_tint_default
+color abc_tint_edittext
+color abc_tint_seek_thumb
+color abc_tint_spinner
+color abc_tint_switch_track
+color accent_material_dark
+color accent_material_light
+color androidx_core_ripple_material_light
+color androidx_core_secondary_text_default_material_light
+color background_floating_material_dark
+color background_floating_material_light
+color background_material_dark
+color background_material_light
+color bright_foreground_disabled_material_dark
+color bright_foreground_disabled_material_light
+color bright_foreground_inverse_material_dark
+color bright_foreground_inverse_material_light
+color bright_foreground_material_dark
+color bright_foreground_material_light
+color browser_actions_bg_grey
+color browser_actions_divider_color
+color browser_actions_text_color
+color browser_actions_title_color
+color button_material_dark
+color button_material_light
+color call_notification_answer_color
+color call_notification_decline_color
+color cardview_dark_background
+color cardview_light_background
+color cardview_shadow_end_color
+color cardview_shadow_start_color
+color colorPrimary
+color colorPrimaryDark
+color colorSecondary
+color common_google_signin_btn_text_dark
+color common_google_signin_btn_text_dark_default
+color common_google_signin_btn_text_dark_disabled
+color common_google_signin_btn_text_dark_focused
+color common_google_signin_btn_text_dark_pressed
+color common_google_signin_btn_text_light
+color common_google_signin_btn_text_light_default
+color common_google_signin_btn_text_light_disabled
+color common_google_signin_btn_text_light_focused
+color common_google_signin_btn_text_light_pressed
+color common_google_signin_btn_tint
+color dark_colorPrimary
+color design_bottom_navigation_shadow_color
+color design_box_stroke_color
+color design_dark_default_color_background
+color design_dark_default_color_error
+color design_dark_default_color_on_background
+color design_dark_default_color_on_error
+color design_dark_default_color_on_primary
+color design_dark_default_color_on_secondary
+color design_dark_default_color_on_surface
+color design_dark_default_color_primary
+color design_dark_default_color_primary_dark
+color design_dark_default_color_primary_variant
+color design_dark_default_color_secondary
+color design_dark_default_color_secondary_variant
+color design_dark_default_color_surface
+color design_default_color_background
+color design_default_color_error
+color design_default_color_on_background
+color design_default_color_on_error
+color design_default_color_on_primary
+color design_default_color_on_secondary
+color design_default_color_on_surface
+color design_default_color_primary
+color design_default_color_primary_dark
+color design_default_color_primary_variant
+color design_default_color_secondary
+color design_default_color_secondary_variant
+color design_default_color_surface
+color design_error
+color design_fab_shadow_end_color
+color design_fab_shadow_mid_color
+color design_fab_shadow_start_color
+color design_fab_stroke_end_inner_color
+color design_fab_stroke_end_outer_color
+color design_fab_stroke_top_inner_color
+color design_fab_stroke_top_outer_color
+color design_icon_tint
+color design_snackbar_background_color
+color dim_foreground_disabled_material_dark
+color dim_foreground_disabled_material_light
+color dim_foreground_material_dark
+color dim_foreground_material_light
+color error_color_material_dark
+color error_color_material_light
+color foreground_material_dark
+color foreground_material_light
+color highlighted_text_material_dark
+color highlighted_text_material_light
+color light_colorPrimary
+color m3_appbar_overlay_color
+color m3_assist_chip_icon_tint_color
+color m3_assist_chip_stroke_color
+color m3_bottom_sheet_drag_handle_color
+color m3_button_background_color_selector
+color m3_button_foreground_color_selector
+color m3_button_outline_color_selector
+color m3_button_ripple_color
+color m3_button_ripple_color_selector
+color m3_calendar_item_disabled_text
+color m3_calendar_item_stroke_color
+color m3_card_foreground_color
+color m3_card_ripple_color
+color m3_card_stroke_color
+color m3_checkbox_button_icon_tint
+color m3_checkbox_button_tint
+color m3_chip_assist_text_color
+color m3_chip_background_color
+color m3_chip_ripple_color
+color m3_chip_stroke_color
+color m3_chip_text_color
+color m3_dark_default_color_primary_text
+color m3_dark_default_color_secondary_text
+color m3_dark_highlighted_text
+color m3_dark_hint_foreground
+color m3_dark_primary_text_disable_only
+color m3_default_color_primary_text
+color m3_default_color_secondary_text
+color m3_dynamic_dark_default_color_primary_text
+color m3_dynamic_dark_default_color_secondary_text
+color m3_dynamic_dark_highlighted_text
+color m3_dynamic_dark_hint_foreground
+color m3_dynamic_dark_primary_text_disable_only
+color m3_dynamic_default_color_primary_text
+color m3_dynamic_default_color_secondary_text
+color m3_dynamic_highlighted_text
+color m3_dynamic_hint_foreground
+color m3_dynamic_primary_text_disable_only
+color m3_efab_ripple_color_selector
+color m3_elevated_chip_background_color
+color m3_fab_efab_background_color_selector
+color m3_fab_efab_foreground_color_selector
+color m3_fab_ripple_color_selector
+color m3_filled_icon_button_container_color_selector
+color m3_highlighted_text
+color m3_hint_foreground
+color m3_icon_button_icon_color_selector
+color m3_navigation_bar_item_with_indicator_icon_tint
+color m3_navigation_bar_item_with_indicator_label_tint
+color m3_navigation_bar_ripple_color_selector
+color m3_navigation_item_background_color
+color m3_navigation_item_icon_tint
+color m3_navigation_item_ripple_color
+color m3_navigation_item_text_color
+color m3_navigation_rail_item_with_indicator_icon_tint
+color m3_navigation_rail_item_with_indicator_label_tint
+color m3_navigation_rail_ripple_color_selector
+color m3_popupmenu_overlay_color
+color m3_primary_text_disable_only
+color m3_radiobutton_button_tint
+color m3_radiobutton_ripple_tint
+color m3_ref_palette_black
+color m3_ref_palette_dynamic_neutral0
+color m3_ref_palette_dynamic_neutral10
+color m3_ref_palette_dynamic_neutral100
+color m3_ref_palette_dynamic_neutral12
+color m3_ref_palette_dynamic_neutral17
+color m3_ref_palette_dynamic_neutral20
+color m3_ref_palette_dynamic_neutral22
+color m3_ref_palette_dynamic_neutral24
+color m3_ref_palette_dynamic_neutral30
+color m3_ref_palette_dynamic_neutral4
+color m3_ref_palette_dynamic_neutral40
+color m3_ref_palette_dynamic_neutral50
+color m3_ref_palette_dynamic_neutral6
+color m3_ref_palette_dynamic_neutral60
+color m3_ref_palette_dynamic_neutral70
+color m3_ref_palette_dynamic_neutral80
+color m3_ref_palette_dynamic_neutral87
+color m3_ref_palette_dynamic_neutral90
+color m3_ref_palette_dynamic_neutral92
+color m3_ref_palette_dynamic_neutral94
+color m3_ref_palette_dynamic_neutral95
+color m3_ref_palette_dynamic_neutral96
+color m3_ref_palette_dynamic_neutral98
+color m3_ref_palette_dynamic_neutral99
+color m3_ref_palette_dynamic_neutral_variant0
+color m3_ref_palette_dynamic_neutral_variant10
+color m3_ref_palette_dynamic_neutral_variant100
+color m3_ref_palette_dynamic_neutral_variant12
+color m3_ref_palette_dynamic_neutral_variant17
+color m3_ref_palette_dynamic_neutral_variant20
+color m3_ref_palette_dynamic_neutral_variant22
+color m3_ref_palette_dynamic_neutral_variant24
+color m3_ref_palette_dynamic_neutral_variant30
+color m3_ref_palette_dynamic_neutral_variant4
+color m3_ref_palette_dynamic_neutral_variant40
+color m3_ref_palette_dynamic_neutral_variant50
+color m3_ref_palette_dynamic_neutral_variant6
+color m3_ref_palette_dynamic_neutral_variant60
+color m3_ref_palette_dynamic_neutral_variant70
+color m3_ref_palette_dynamic_neutral_variant80
+color m3_ref_palette_dynamic_neutral_variant87
+color m3_ref_palette_dynamic_neutral_variant90
+color m3_ref_palette_dynamic_neutral_variant92
+color m3_ref_palette_dynamic_neutral_variant94
+color m3_ref_palette_dynamic_neutral_variant95
+color m3_ref_palette_dynamic_neutral_variant96
+color m3_ref_palette_dynamic_neutral_variant98
+color m3_ref_palette_dynamic_neutral_variant99
+color m3_ref_palette_dynamic_primary0
+color m3_ref_palette_dynamic_primary10
+color m3_ref_palette_dynamic_primary100
+color m3_ref_palette_dynamic_primary20
+color m3_ref_palette_dynamic_primary30
+color m3_ref_palette_dynamic_primary40
+color m3_ref_palette_dynamic_primary50
+color m3_ref_palette_dynamic_primary60
+color m3_ref_palette_dynamic_primary70
+color m3_ref_palette_dynamic_primary80
+color m3_ref_palette_dynamic_primary90
+color m3_ref_palette_dynamic_primary95
+color m3_ref_palette_dynamic_primary99
+color m3_ref_palette_dynamic_secondary0
+color m3_ref_palette_dynamic_secondary10
+color m3_ref_palette_dynamic_secondary100
+color m3_ref_palette_dynamic_secondary20
+color m3_ref_palette_dynamic_secondary30
+color m3_ref_palette_dynamic_secondary40
+color m3_ref_palette_dynamic_secondary50
+color m3_ref_palette_dynamic_secondary60
+color m3_ref_palette_dynamic_secondary70
+color m3_ref_palette_dynamic_secondary80
+color m3_ref_palette_dynamic_secondary90
+color m3_ref_palette_dynamic_secondary95
+color m3_ref_palette_dynamic_secondary99
+color m3_ref_palette_dynamic_tertiary0
+color m3_ref_palette_dynamic_tertiary10
+color m3_ref_palette_dynamic_tertiary100
+color m3_ref_palette_dynamic_tertiary20
+color m3_ref_palette_dynamic_tertiary30
+color m3_ref_palette_dynamic_tertiary40
+color m3_ref_palette_dynamic_tertiary50
+color m3_ref_palette_dynamic_tertiary60
+color m3_ref_palette_dynamic_tertiary70
+color m3_ref_palette_dynamic_tertiary80
+color m3_ref_palette_dynamic_tertiary90
+color m3_ref_palette_dynamic_tertiary95
+color m3_ref_palette_dynamic_tertiary99
+color m3_ref_palette_error0
+color m3_ref_palette_error10
+color m3_ref_palette_error100
+color m3_ref_palette_error20
+color m3_ref_palette_error30
+color m3_ref_palette_error40
+color m3_ref_palette_error50
+color m3_ref_palette_error60
+color m3_ref_palette_error70
+color m3_ref_palette_error80
+color m3_ref_palette_error90
+color m3_ref_palette_error95
+color m3_ref_palette_error99
+color m3_ref_palette_neutral0
+color m3_ref_palette_neutral10
+color m3_ref_palette_neutral100
+color m3_ref_palette_neutral12
+color m3_ref_palette_neutral17
+color m3_ref_palette_neutral20
+color m3_ref_palette_neutral22
+color m3_ref_palette_neutral24
+color m3_ref_palette_neutral30
+color m3_ref_palette_neutral4
+color m3_ref_palette_neutral40
+color m3_ref_palette_neutral50
+color m3_ref_palette_neutral6
+color m3_ref_palette_neutral60
+color m3_ref_palette_neutral70
+color m3_ref_palette_neutral80
+color m3_ref_palette_neutral87
+color m3_ref_palette_neutral90
+color m3_ref_palette_neutral92
+color m3_ref_palette_neutral94
+color m3_ref_palette_neutral95
+color m3_ref_palette_neutral96
+color m3_ref_palette_neutral98
+color m3_ref_palette_neutral99
+color m3_ref_palette_neutral_variant0
+color m3_ref_palette_neutral_variant10
+color m3_ref_palette_neutral_variant100
+color m3_ref_palette_neutral_variant20
+color m3_ref_palette_neutral_variant30
+color m3_ref_palette_neutral_variant40
+color m3_ref_palette_neutral_variant50
+color m3_ref_palette_neutral_variant60
+color m3_ref_palette_neutral_variant70
+color m3_ref_palette_neutral_variant80
+color m3_ref_palette_neutral_variant90
+color m3_ref_palette_neutral_variant95
+color m3_ref_palette_neutral_variant99
+color m3_ref_palette_primary0
+color m3_ref_palette_primary10
+color m3_ref_palette_primary100
+color m3_ref_palette_primary20
+color m3_ref_palette_primary30
+color m3_ref_palette_primary40
+color m3_ref_palette_primary50
+color m3_ref_palette_primary60
+color m3_ref_palette_primary70
+color m3_ref_palette_primary80
+color m3_ref_palette_primary90
+color m3_ref_palette_primary95
+color m3_ref_palette_primary99
+color m3_ref_palette_secondary0
+color m3_ref_palette_secondary10
+color m3_ref_palette_secondary100
+color m3_ref_palette_secondary20
+color m3_ref_palette_secondary30
+color m3_ref_palette_secondary40
+color m3_ref_palette_secondary50
+color m3_ref_palette_secondary60
+color m3_ref_palette_secondary70
+color m3_ref_palette_secondary80
+color m3_ref_palette_secondary90
+color m3_ref_palette_secondary95
+color m3_ref_palette_secondary99
+color m3_ref_palette_tertiary0
+color m3_ref_palette_tertiary10
+color m3_ref_palette_tertiary100
+color m3_ref_palette_tertiary20
+color m3_ref_palette_tertiary30
+color m3_ref_palette_tertiary40
+color m3_ref_palette_tertiary50
+color m3_ref_palette_tertiary60
+color m3_ref_palette_tertiary70
+color m3_ref_palette_tertiary80
+color m3_ref_palette_tertiary90
+color m3_ref_palette_tertiary95
+color m3_ref_palette_tertiary99
+color m3_ref_palette_white
+color m3_selection_control_ripple_color_selector
+color m3_simple_item_ripple_color
+color m3_slider_active_track_color
+color m3_slider_halo_color
+color m3_slider_inactive_track_color
+color m3_slider_thumb_color
+color m3_switch_thumb_tint
+color m3_switch_track_tint
+color m3_sys_color_dark_background
+color m3_sys_color_dark_error
+color m3_sys_color_dark_error_container
+color m3_sys_color_dark_inverse_on_surface
+color m3_sys_color_dark_inverse_primary
+color m3_sys_color_dark_inverse_surface
+color m3_sys_color_dark_on_background
+color m3_sys_color_dark_on_error
+color m3_sys_color_dark_on_error_container
+color m3_sys_color_dark_on_primary
+color m3_sys_color_dark_on_primary_container
+color m3_sys_color_dark_on_secondary
+color m3_sys_color_dark_on_secondary_container
+color m3_sys_color_dark_on_surface
+color m3_sys_color_dark_on_surface_variant
+color m3_sys_color_dark_on_tertiary
+color m3_sys_color_dark_on_tertiary_container
+color m3_sys_color_dark_outline
+color m3_sys_color_dark_outline_variant
+color m3_sys_color_dark_primary
+color m3_sys_color_dark_primary_container
+color m3_sys_color_dark_secondary
+color m3_sys_color_dark_secondary_container
+color m3_sys_color_dark_surface
+color m3_sys_color_dark_surface_bright
+color m3_sys_color_dark_surface_container
+color m3_sys_color_dark_surface_container_high
+color m3_sys_color_dark_surface_container_highest
+color m3_sys_color_dark_surface_container_low
+color m3_sys_color_dark_surface_container_lowest
+color m3_sys_color_dark_surface_dim
+color m3_sys_color_dark_surface_variant
+color m3_sys_color_dark_tertiary
+color m3_sys_color_dark_tertiary_container
+color m3_sys_color_dynamic_dark_background
+color m3_sys_color_dynamic_dark_error
+color m3_sys_color_dynamic_dark_error_container
+color m3_sys_color_dynamic_dark_inverse_on_surface
+color m3_sys_color_dynamic_dark_inverse_primary
+color m3_sys_color_dynamic_dark_inverse_surface
+color m3_sys_color_dynamic_dark_on_background
+color m3_sys_color_dynamic_dark_on_error
+color m3_sys_color_dynamic_dark_on_error_container
+color m3_sys_color_dynamic_dark_on_primary
+color m3_sys_color_dynamic_dark_on_primary_container
+color m3_sys_color_dynamic_dark_on_secondary
+color m3_sys_color_dynamic_dark_on_secondary_container
+color m3_sys_color_dynamic_dark_on_surface
+color m3_sys_color_dynamic_dark_on_surface_variant
+color m3_sys_color_dynamic_dark_on_tertiary
+color m3_sys_color_dynamic_dark_on_tertiary_container
+color m3_sys_color_dynamic_dark_outline
+color m3_sys_color_dynamic_dark_outline_variant
+color m3_sys_color_dynamic_dark_primary
+color m3_sys_color_dynamic_dark_primary_container
+color m3_sys_color_dynamic_dark_secondary
+color m3_sys_color_dynamic_dark_secondary_container
+color m3_sys_color_dynamic_dark_surface
+color m3_sys_color_dynamic_dark_surface_bright
+color m3_sys_color_dynamic_dark_surface_container
+color m3_sys_color_dynamic_dark_surface_container_high
+color m3_sys_color_dynamic_dark_surface_container_highest
+color m3_sys_color_dynamic_dark_surface_container_low
+color m3_sys_color_dynamic_dark_surface_container_lowest
+color m3_sys_color_dynamic_dark_surface_dim
+color m3_sys_color_dynamic_dark_surface_variant
+color m3_sys_color_dynamic_dark_tertiary
+color m3_sys_color_dynamic_dark_tertiary_container
+color m3_sys_color_dynamic_light_background
+color m3_sys_color_dynamic_light_error
+color m3_sys_color_dynamic_light_error_container
+color m3_sys_color_dynamic_light_inverse_on_surface
+color m3_sys_color_dynamic_light_inverse_primary
+color m3_sys_color_dynamic_light_inverse_surface
+color m3_sys_color_dynamic_light_on_background
+color m3_sys_color_dynamic_light_on_error
+color m3_sys_color_dynamic_light_on_error_container
+color m3_sys_color_dynamic_light_on_primary
+color m3_sys_color_dynamic_light_on_primary_container
+color m3_sys_color_dynamic_light_on_secondary
+color m3_sys_color_dynamic_light_on_secondary_container
+color m3_sys_color_dynamic_light_on_surface
+color m3_sys_color_dynamic_light_on_surface_variant
+color m3_sys_color_dynamic_light_on_tertiary
+color m3_sys_color_dynamic_light_on_tertiary_container
+color m3_sys_color_dynamic_light_outline
+color m3_sys_color_dynamic_light_outline_variant
+color m3_sys_color_dynamic_light_primary
+color m3_sys_color_dynamic_light_primary_container
+color m3_sys_color_dynamic_light_secondary
+color m3_sys_color_dynamic_light_secondary_container
+color m3_sys_color_dynamic_light_surface
+color m3_sys_color_dynamic_light_surface_bright
+color m3_sys_color_dynamic_light_surface_container
+color m3_sys_color_dynamic_light_surface_container_high
+color m3_sys_color_dynamic_light_surface_container_highest
+color m3_sys_color_dynamic_light_surface_container_low
+color m3_sys_color_dynamic_light_surface_container_lowest
+color m3_sys_color_dynamic_light_surface_dim
+color m3_sys_color_dynamic_light_surface_variant
+color m3_sys_color_dynamic_light_tertiary
+color m3_sys_color_dynamic_light_tertiary_container
+color m3_sys_color_dynamic_on_primary_fixed
+color m3_sys_color_dynamic_on_primary_fixed_variant
+color m3_sys_color_dynamic_on_secondary_fixed
+color m3_sys_color_dynamic_on_secondary_fixed_variant
+color m3_sys_color_dynamic_on_tertiary_fixed
+color m3_sys_color_dynamic_on_tertiary_fixed_variant
+color m3_sys_color_dynamic_primary_fixed
+color m3_sys_color_dynamic_primary_fixed_dim
+color m3_sys_color_dynamic_secondary_fixed
+color m3_sys_color_dynamic_secondary_fixed_dim
+color m3_sys_color_dynamic_tertiary_fixed
+color m3_sys_color_dynamic_tertiary_fixed_dim
+color m3_sys_color_light_background
+color m3_sys_color_light_error
+color m3_sys_color_light_error_container
+color m3_sys_color_light_inverse_on_surface
+color m3_sys_color_light_inverse_primary
+color m3_sys_color_light_inverse_surface
+color m3_sys_color_light_on_background
+color m3_sys_color_light_on_error
+color m3_sys_color_light_on_error_container
+color m3_sys_color_light_on_primary
+color m3_sys_color_light_on_primary_container
+color m3_sys_color_light_on_secondary
+color m3_sys_color_light_on_secondary_container
+color m3_sys_color_light_on_surface
+color m3_sys_color_light_on_surface_variant
+color m3_sys_color_light_on_tertiary
+color m3_sys_color_light_on_tertiary_container
+color m3_sys_color_light_outline
+color m3_sys_color_light_outline_variant
+color m3_sys_color_light_primary
+color m3_sys_color_light_primary_container
+color m3_sys_color_light_secondary
+color m3_sys_color_light_secondary_container
+color m3_sys_color_light_surface
+color m3_sys_color_light_surface_bright
+color m3_sys_color_light_surface_container
+color m3_sys_color_light_surface_container_high
+color m3_sys_color_light_surface_container_highest
+color m3_sys_color_light_surface_container_low
+color m3_sys_color_light_surface_container_lowest
+color m3_sys_color_light_surface_dim
+color m3_sys_color_light_surface_variant
+color m3_sys_color_light_tertiary
+color m3_sys_color_light_tertiary_container
+color m3_sys_color_on_primary_fixed
+color m3_sys_color_on_primary_fixed_variant
+color m3_sys_color_on_secondary_fixed
+color m3_sys_color_on_secondary_fixed_variant
+color m3_sys_color_on_tertiary_fixed
+color m3_sys_color_on_tertiary_fixed_variant
+color m3_sys_color_primary_fixed
+color m3_sys_color_primary_fixed_dim
+color m3_sys_color_secondary_fixed
+color m3_sys_color_secondary_fixed_dim
+color m3_sys_color_tertiary_fixed
+color m3_sys_color_tertiary_fixed_dim
+color m3_tabs_icon_color
+color m3_tabs_icon_color_secondary
+color m3_tabs_ripple_color
+color m3_tabs_ripple_color_secondary
+color m3_tabs_text_color
+color m3_tabs_text_color_secondary
+color m3_text_button_background_color_selector
+color m3_text_button_foreground_color_selector
+color m3_text_button_ripple_color_selector
+color m3_textfield_filled_background_color
+color m3_textfield_indicator_text_color
+color m3_textfield_input_text_color
+color m3_textfield_label_color
+color m3_textfield_stroke_color
+color m3_timepicker_button_background_color
+color m3_timepicker_button_ripple_color
+color m3_timepicker_button_text_color
+color m3_timepicker_clock_text_color
+color m3_timepicker_display_background_color
+color m3_timepicker_display_ripple_color
+color m3_timepicker_display_text_color
+color m3_timepicker_secondary_text_button_ripple_color
+color m3_timepicker_secondary_text_button_text_color
+color m3_timepicker_time_input_stroke_color
+color m3_tonal_button_ripple_color_selector
+color material_blue_grey_800
+color material_blue_grey_900
+color material_blue_grey_950
+color material_cursor_color
+color material_deep_teal_200
+color material_deep_teal_500
+color material_divider_color
+color material_dynamic_color_dark_error
+color material_dynamic_color_dark_error_container
+color material_dynamic_color_dark_on_error
+color material_dynamic_color_dark_on_error_container
+color material_dynamic_color_light_error
+color material_dynamic_color_light_error_container
+color material_dynamic_color_light_on_error
+color material_dynamic_color_light_on_error_container
+color material_dynamic_neutral0
+color material_dynamic_neutral10
+color material_dynamic_neutral100
+color material_dynamic_neutral20
+color material_dynamic_neutral30
+color material_dynamic_neutral40
+color material_dynamic_neutral50
+color material_dynamic_neutral60
+color material_dynamic_neutral70
+color material_dynamic_neutral80
+color material_dynamic_neutral90
+color material_dynamic_neutral95
+color material_dynamic_neutral99
+color material_dynamic_neutral_variant0
+color material_dynamic_neutral_variant10
+color material_dynamic_neutral_variant100
+color material_dynamic_neutral_variant20
+color material_dynamic_neutral_variant30
+color material_dynamic_neutral_variant40
+color material_dynamic_neutral_variant50
+color material_dynamic_neutral_variant60
+color material_dynamic_neutral_variant70
+color material_dynamic_neutral_variant80
+color material_dynamic_neutral_variant90
+color material_dynamic_neutral_variant95
+color material_dynamic_neutral_variant99
+color material_dynamic_primary0
+color material_dynamic_primary10
+color material_dynamic_primary100
+color material_dynamic_primary20
+color material_dynamic_primary30
+color material_dynamic_primary40
+color material_dynamic_primary50
+color material_dynamic_primary60
+color material_dynamic_primary70
+color material_dynamic_primary80
+color material_dynamic_primary90
+color material_dynamic_primary95
+color material_dynamic_primary99
+color material_dynamic_secondary0
+color material_dynamic_secondary10
+color material_dynamic_secondary100
+color material_dynamic_secondary20
+color material_dynamic_secondary30
+color material_dynamic_secondary40
+color material_dynamic_secondary50
+color material_dynamic_secondary60
+color material_dynamic_secondary70
+color material_dynamic_secondary80
+color material_dynamic_secondary90
+color material_dynamic_secondary95
+color material_dynamic_secondary99
+color material_dynamic_tertiary0
+color material_dynamic_tertiary10
+color material_dynamic_tertiary100
+color material_dynamic_tertiary20
+color material_dynamic_tertiary30
+color material_dynamic_tertiary40
+color material_dynamic_tertiary50
+color material_dynamic_tertiary60
+color material_dynamic_tertiary70
+color material_dynamic_tertiary80
+color material_dynamic_tertiary90
+color material_dynamic_tertiary95
+color material_dynamic_tertiary99
+color material_grey_100
+color material_grey_300
+color material_grey_50
+color material_grey_600
+color material_grey_800
+color material_grey_850
+color material_grey_900
+color material_harmonized_color_error
+color material_harmonized_color_error_container
+color material_harmonized_color_on_error
+color material_harmonized_color_on_error_container
+color material_on_background_disabled
+color material_on_background_emphasis_high_type
+color material_on_background_emphasis_medium
+color material_on_primary_disabled
+color material_on_primary_emphasis_high_type
+color material_on_primary_emphasis_medium
+color material_on_surface_disabled
+color material_on_surface_emphasis_high_type
+color material_on_surface_emphasis_medium
+color material_on_surface_stroke
+color material_personalized__highlighted_text
+color material_personalized__highlighted_text_inverse
+color material_personalized_color_background
+color material_personalized_color_control_activated
+color material_personalized_color_control_highlight
+color material_personalized_color_control_normal
+color material_personalized_color_error
+color material_personalized_color_error_container
+color material_personalized_color_on_background
+color material_personalized_color_on_error
+color material_personalized_color_on_error_container
+color material_personalized_color_on_primary
+color material_personalized_color_on_primary_container
+color material_personalized_color_on_secondary
+color material_personalized_color_on_secondary_container
+color material_personalized_color_on_surface
+color material_personalized_color_on_surface_inverse
+color material_personalized_color_on_surface_variant
+color material_personalized_color_on_tertiary
+color material_personalized_color_on_tertiary_container
+color material_personalized_color_outline
+color material_personalized_color_outline_variant
+color material_personalized_color_primary
+color material_personalized_color_primary_container
+color material_personalized_color_primary_inverse
+color material_personalized_color_primary_text
+color material_personalized_color_primary_text_inverse
+color material_personalized_color_secondary
+color material_personalized_color_secondary_container
+color material_personalized_color_secondary_text
+color material_personalized_color_secondary_text_inverse
+color material_personalized_color_surface
+color material_personalized_color_surface_bright
+color material_personalized_color_surface_container
+color material_personalized_color_surface_container_high
+color material_personalized_color_surface_container_highest
+color material_personalized_color_surface_container_low
+color material_personalized_color_surface_container_lowest
+color material_personalized_color_surface_dim
+color material_personalized_color_surface_inverse
+color material_personalized_color_surface_variant
+color material_personalized_color_tertiary
+color material_personalized_color_tertiary_container
+color material_personalized_color_text_hint_foreground_inverse
+color material_personalized_color_text_primary_inverse
+color material_personalized_color_text_primary_inverse_disable_only
+color material_personalized_color_text_secondary_and_tertiary_inverse
+color material_personalized_color_text_secondary_and_tertiary_inverse_disabled
+color material_personalized_hint_foreground
+color material_personalized_hint_foreground_inverse
+color material_personalized_primary_inverse_text_disable_only
+color material_personalized_primary_text_disable_only
+color material_slider_active_tick_marks_color
+color material_slider_active_track_color
+color material_slider_halo_color
+color material_slider_inactive_tick_marks_color
+color material_slider_inactive_track_color
+color material_slider_thumb_color
+color material_timepicker_button_background
+color material_timepicker_button_stroke
+color material_timepicker_clock_text_color
+color material_timepicker_clockface
+color material_timepicker_modebutton_tint
+color mtrl_btn_bg_color_selector
+color mtrl_btn_ripple_color
+color mtrl_btn_stroke_color_selector
+color mtrl_btn_text_btn_bg_color_selector
+color mtrl_btn_text_btn_ripple_color
+color mtrl_btn_text_color_disabled
+color mtrl_btn_text_color_selector
+color mtrl_btn_transparent_bg_color
+color mtrl_calendar_item_stroke_color
+color mtrl_calendar_selected_range
+color mtrl_card_view_foreground
+color mtrl_card_view_ripple
+color mtrl_chip_background_color
+color mtrl_chip_close_icon_tint
+color mtrl_chip_surface_color
+color mtrl_chip_text_color
+color mtrl_choice_chip_background_color
+color mtrl_choice_chip_ripple_color
+color mtrl_choice_chip_text_color
+color mtrl_error
+color mtrl_fab_bg_color_selector
+color mtrl_fab_icon_text_color_selector
+color mtrl_fab_ripple_color
+color mtrl_filled_background_color
+color mtrl_filled_icon_tint
+color mtrl_filled_stroke_color
+color mtrl_indicator_text_color
+color mtrl_navigation_bar_colored_item_tint
+color mtrl_navigation_bar_colored_ripple_color
+color mtrl_navigation_bar_item_tint
+color mtrl_navigation_bar_ripple_color
+color mtrl_navigation_item_background_color
+color mtrl_navigation_item_icon_tint
+color mtrl_navigation_item_text_color
+color mtrl_on_primary_text_btn_text_color_selector
+color mtrl_on_surface_ripple_color
+color mtrl_outlined_icon_tint
+color mtrl_outlined_stroke_color
+color mtrl_popupmenu_overlay_color
+color mtrl_scrim_color
+color mtrl_switch_thumb_icon_tint
+color mtrl_switch_thumb_tint
+color mtrl_switch_track_decoration_tint
+color mtrl_switch_track_tint
+color mtrl_tabs_colored_ripple_color
+color mtrl_tabs_icon_color_selector
+color mtrl_tabs_icon_color_selector_colored
+color mtrl_tabs_legacy_text_color_selector
+color mtrl_tabs_ripple_color
+color mtrl_text_btn_text_color_selector
+color mtrl_textinput_default_box_stroke_color
+color mtrl_textinput_disabled_color
+color mtrl_textinput_filled_box_default_background_color
+color mtrl_textinput_focused_box_stroke_color
+color mtrl_textinput_hovered_box_stroke_color
+color navigationBarColor
+color notification_action_color_filter
+color notification_icon_bg_color
+color preference_fallback_accent_color
+color preference_simple_menu_background
+color primary_dark_material_dark
+color primary_dark_material_light
+color primary_material_dark
+color primary_material_light
+color primary_text_default_material_dark
+color primary_text_default_material_light
+color primary_text_disabled_material_dark
+color primary_text_disabled_material_light
+color ripple_material_dark
+color ripple_material_light
+color secondary_text_default_material_dark
+color secondary_text_default_material_light
+color secondary_text_disabled_material_dark
+color secondary_text_disabled_material_light
+color switch_thumb_disabled_material_dark
+color switch_thumb_disabled_material_light
+color switch_thumb_material_dark
+color switch_thumb_material_light
+color switch_thumb_normal_material_dark
+color switch_thumb_normal_material_light
+color tooltip_background_dark
+color tooltip_background_light
+dimen abc_action_bar_content_inset_material
+dimen abc_action_bar_content_inset_with_nav
+dimen abc_action_bar_default_height_material
+dimen abc_action_bar_default_padding_end_material
+dimen abc_action_bar_default_padding_start_material
+dimen abc_action_bar_elevation_material
+dimen abc_action_bar_icon_vertical_padding_material
+dimen abc_action_bar_overflow_padding_end_material
+dimen abc_action_bar_overflow_padding_start_material
+dimen abc_action_bar_stacked_max_height
+dimen abc_action_bar_stacked_tab_max_width
+dimen abc_action_bar_subtitle_bottom_margin_material
+dimen abc_action_bar_subtitle_top_margin_material
+dimen abc_action_button_min_height_material
+dimen abc_action_button_min_width_material
+dimen abc_action_button_min_width_overflow_material
+dimen abc_alert_dialog_button_bar_height
+dimen abc_alert_dialog_button_dimen
+dimen abc_button_inset_horizontal_material
+dimen abc_button_inset_vertical_material
+dimen abc_button_padding_horizontal_material
+dimen abc_button_padding_vertical_material
+dimen abc_cascading_menus_min_smallest_width
+dimen abc_config_prefDialogWidth
+dimen abc_control_corner_material
+dimen abc_control_inset_material
+dimen abc_control_padding_material
+dimen abc_dialog_corner_radius_material
+dimen abc_dialog_fixed_height_major
+dimen abc_dialog_fixed_height_minor
+dimen abc_dialog_fixed_width_major
+dimen abc_dialog_fixed_width_minor
+dimen abc_dialog_list_padding_bottom_no_buttons
+dimen abc_dialog_list_padding_top_no_title
+dimen abc_dialog_min_width_major
+dimen abc_dialog_min_width_minor
+dimen abc_dialog_padding_material
+dimen abc_dialog_padding_top_material
+dimen abc_dialog_title_divider_material
+dimen abc_disabled_alpha_material_dark
+dimen abc_disabled_alpha_material_light
+dimen abc_dropdownitem_icon_width
+dimen abc_dropdownitem_text_padding_left
+dimen abc_dropdownitem_text_padding_right
+dimen abc_edit_text_inset_bottom_material
+dimen abc_edit_text_inset_horizontal_material
+dimen abc_edit_text_inset_top_material
+dimen abc_floating_window_z
+dimen abc_list_item_height_large_material
+dimen abc_list_item_height_material
+dimen abc_list_item_height_small_material
+dimen abc_list_item_padding_horizontal_material
+dimen abc_panel_menu_list_width
+dimen abc_progress_bar_height_material
+dimen abc_search_view_preferred_height
+dimen abc_search_view_preferred_width
+dimen abc_seekbar_track_background_height_material
+dimen abc_seekbar_track_progress_height_material
+dimen abc_select_dialog_padding_start_material
+dimen abc_star_big
+dimen abc_star_medium
+dimen abc_star_small
+dimen abc_switch_padding
+dimen abc_text_size_body_1_material
+dimen abc_text_size_body_2_material
+dimen abc_text_size_button_material
+dimen abc_text_size_caption_material
+dimen abc_text_size_display_1_material
+dimen abc_text_size_display_2_material
+dimen abc_text_size_display_3_material
+dimen abc_text_size_display_4_material
+dimen abc_text_size_headline_material
+dimen abc_text_size_large_material
+dimen abc_text_size_medium_material
+dimen abc_text_size_menu_header_material
+dimen abc_text_size_menu_material
+dimen abc_text_size_small_material
+dimen abc_text_size_subhead_material
+dimen abc_text_size_subtitle_material_toolbar
+dimen abc_text_size_title_material
+dimen abc_text_size_title_material_toolbar
+dimen appcompat_dialog_background_inset
+dimen browser_actions_context_menu_max_width
+dimen browser_actions_context_menu_min_padding
+dimen cardview_compat_inset_shadow
+dimen cardview_default_elevation
+dimen cardview_default_radius
+dimen clock_face_margin_start
+dimen compat_button_inset_horizontal_material
+dimen compat_button_inset_vertical_material
+dimen compat_button_padding_horizontal_material
+dimen compat_button_padding_vertical_material
+dimen compat_control_corner_material
+dimen compat_notification_large_icon_max_height
+dimen compat_notification_large_icon_max_width
+dimen def_drawer_elevation
+dimen design_appbar_elevation
+dimen design_bottom_navigation_active_item_max_width
+dimen design_bottom_navigation_active_item_min_width
+dimen design_bottom_navigation_active_text_size
+dimen design_bottom_navigation_elevation
+dimen design_bottom_navigation_height
+dimen design_bottom_navigation_icon_size
+dimen design_bottom_navigation_item_max_width
+dimen design_bottom_navigation_item_min_width
+dimen design_bottom_navigation_label_padding
+dimen design_bottom_navigation_margin
+dimen design_bottom_navigation_shadow_height
+dimen design_bottom_navigation_text_size
+dimen design_bottom_sheet_elevation
+dimen design_bottom_sheet_modal_elevation
+dimen design_bottom_sheet_peek_height_min
+dimen design_fab_border_width
+dimen design_fab_elevation
+dimen design_fab_image_size
+dimen design_fab_size_mini
+dimen design_fab_size_normal
+dimen design_fab_translation_z_hovered_focused
+dimen design_fab_translation_z_pressed
+dimen design_navigation_elevation
+dimen design_navigation_icon_padding
+dimen design_navigation_icon_size
+dimen design_navigation_item_horizontal_padding
+dimen design_navigation_item_icon_padding
+dimen design_navigation_item_vertical_padding
+dimen design_navigation_max_width
+dimen design_navigation_padding_bottom
+dimen design_navigation_separator_vertical_padding
+dimen design_snackbar_action_inline_max_width
+dimen design_snackbar_action_text_color_alpha
+dimen design_snackbar_background_corner_radius
+dimen design_snackbar_elevation
+dimen design_snackbar_extra_spacing_horizontal
+dimen design_snackbar_max_width
+dimen design_snackbar_min_width
+dimen design_snackbar_padding_horizontal
+dimen design_snackbar_padding_vertical
+dimen design_snackbar_padding_vertical_2lines
+dimen design_snackbar_text_size
+dimen design_tab_max_width
+dimen design_tab_scrollable_min_width
+dimen design_tab_text_size
+dimen design_tab_text_size_2line
+dimen design_textinput_caption_translate_y
+dimen disabled_alpha_material_dark
+dimen disabled_alpha_material_light
+dimen fastscroll_default_thickness
+dimen fastscroll_margin
+dimen fastscroll_minimum_range
+dimen highlight_alpha_material_colored
+dimen highlight_alpha_material_dark
+dimen highlight_alpha_material_light
+dimen hint_alpha_material_dark
+dimen hint_alpha_material_light
+dimen hint_pressed_alpha_material_dark
+dimen hint_pressed_alpha_material_light
+dimen item_touch_helper_max_drag_scroll_per_frame
+dimen item_touch_helper_swipe_escape_max_velocity
+dimen item_touch_helper_swipe_escape_velocity
+dimen listitem_manage_tether_padding_start
+dimen m3_alert_dialog_action_bottom_padding
+dimen m3_alert_dialog_action_top_padding
+dimen m3_alert_dialog_corner_size
+dimen m3_alert_dialog_elevation
+dimen m3_alert_dialog_icon_margin
+dimen m3_alert_dialog_icon_size
+dimen m3_alert_dialog_title_bottom_margin
+dimen m3_appbar_expanded_title_margin_bottom
+dimen m3_appbar_expanded_title_margin_horizontal
+dimen m3_appbar_scrim_height_trigger
+dimen m3_appbar_scrim_height_trigger_large
+dimen m3_appbar_scrim_height_trigger_medium
+dimen m3_appbar_size_compact
+dimen m3_appbar_size_large
+dimen m3_appbar_size_medium
+dimen m3_back_progress_bottom_container_max_scale_x_distance
+dimen m3_back_progress_bottom_container_max_scale_y_distance
+dimen m3_back_progress_main_container_max_translation_y
+dimen m3_back_progress_main_container_min_edge_gap
+dimen m3_back_progress_side_container_max_scale_x_distance_grow
+dimen m3_back_progress_side_container_max_scale_x_distance_shrink
+dimen m3_back_progress_side_container_max_scale_y_distance
+dimen m3_badge_horizontal_offset
+dimen m3_badge_offset
+dimen m3_badge_size
+dimen m3_badge_vertical_offset
+dimen m3_badge_with_text_horizontal_offset
+dimen m3_badge_with_text_offset
+dimen m3_badge_with_text_size
+dimen m3_badge_with_text_vertical_offset
+dimen m3_badge_with_text_vertical_padding
+dimen m3_bottom_nav_item_active_indicator_height
+dimen m3_bottom_nav_item_active_indicator_margin_horizontal
+dimen m3_bottom_nav_item_active_indicator_width
+dimen m3_bottom_nav_item_padding_bottom
+dimen m3_bottom_nav_item_padding_top
+dimen m3_bottom_nav_min_height
+dimen m3_bottom_sheet_drag_handle_bottom_padding
+dimen m3_bottom_sheet_elevation
+dimen m3_bottom_sheet_modal_elevation
+dimen m3_bottomappbar_fab_cradle_margin
+dimen m3_bottomappbar_fab_cradle_rounded_corner_radius
+dimen m3_bottomappbar_fab_cradle_vertical_offset
+dimen m3_bottomappbar_fab_end_margin
+dimen m3_bottomappbar_height
+dimen m3_bottomappbar_horizontal_padding
+dimen m3_btn_dialog_btn_min_width
+dimen m3_btn_dialog_btn_spacing
+dimen m3_btn_disabled_elevation
+dimen m3_btn_disabled_translation_z
+dimen m3_btn_elevated_btn_elevation
+dimen m3_btn_elevation
+dimen m3_btn_icon_btn_padding_left
+dimen m3_btn_icon_btn_padding_right
+dimen m3_btn_icon_only_default_padding
+dimen m3_btn_icon_only_default_size
+dimen m3_btn_icon_only_icon_padding
+dimen m3_btn_icon_only_min_width
+dimen m3_btn_inset
+dimen m3_btn_max_width
+dimen m3_btn_padding_bottom
+dimen m3_btn_padding_left
+dimen m3_btn_padding_right
+dimen m3_btn_padding_top
+dimen m3_btn_stroke_size
+dimen m3_btn_text_btn_icon_padding_left
+dimen m3_btn_text_btn_icon_padding_right
+dimen m3_btn_text_btn_padding_left
+dimen m3_btn_text_btn_padding_right
+dimen m3_btn_translation_z_base
+dimen m3_btn_translation_z_hovered
+dimen m3_card_disabled_z
+dimen m3_card_dragged_z
+dimen m3_card_elevated_disabled_z
+dimen m3_card_elevated_dragged_z
+dimen m3_card_elevated_elevation
+dimen m3_card_elevated_hovered_z
+dimen m3_card_elevation
+dimen m3_card_hovered_z
+dimen m3_card_stroke_width
+dimen m3_carousel_debug_keyline_width
+dimen m3_carousel_extra_small_item_size
+dimen m3_carousel_gone_size
+dimen m3_carousel_small_item_default_corner_size
+dimen m3_carousel_small_item_size_max
+dimen m3_carousel_small_item_size_min
+dimen m3_chip_checked_hovered_translation_z
+dimen m3_chip_corner_size
+dimen m3_chip_disabled_translation_z
+dimen m3_chip_dragged_translation_z
+dimen m3_chip_elevated_elevation
+dimen m3_chip_hovered_translation_z
+dimen m3_chip_icon_size
+dimen m3_comp_assist_chip_container_height
+dimen m3_comp_assist_chip_elevated_container_elevation
+dimen m3_comp_assist_chip_flat_container_elevation
+dimen m3_comp_assist_chip_flat_outline_width
+dimen m3_comp_assist_chip_with_icon_icon_size
+dimen m3_comp_badge_large_size
+dimen m3_comp_badge_size
+dimen m3_comp_bottom_app_bar_container_elevation
+dimen m3_comp_bottom_app_bar_container_height
+dimen m3_comp_checkbox_selected_disabled_container_opacity
+dimen m3_comp_circular_progress_indicator_active_indicator_width
+dimen m3_comp_date_picker_modal_date_today_container_outline_width
+dimen m3_comp_date_picker_modal_header_container_height
+dimen m3_comp_date_picker_modal_range_selection_header_container_height
+dimen m3_comp_divider_thickness
+dimen m3_comp_elevated_button_container_elevation
+dimen m3_comp_elevated_button_disabled_container_elevation
+dimen m3_comp_elevated_card_container_elevation
+dimen m3_comp_elevated_card_icon_size
+dimen m3_comp_extended_fab_primary_container_elevation
+dimen m3_comp_extended_fab_primary_container_height
+dimen m3_comp_extended_fab_primary_focus_container_elevation
+dimen m3_comp_extended_fab_primary_focus_state_layer_opacity
+dimen m3_comp_extended_fab_primary_hover_container_elevation
+dimen m3_comp_extended_fab_primary_hover_state_layer_opacity
+dimen m3_comp_extended_fab_primary_icon_size
+dimen m3_comp_extended_fab_primary_pressed_container_elevation
+dimen m3_comp_extended_fab_primary_pressed_state_layer_opacity
+dimen m3_comp_fab_primary_container_elevation
+dimen m3_comp_fab_primary_container_height
+dimen m3_comp_fab_primary_focus_state_layer_opacity
+dimen m3_comp_fab_primary_hover_container_elevation
+dimen m3_comp_fab_primary_hover_state_layer_opacity
+dimen m3_comp_fab_primary_icon_size
+dimen m3_comp_fab_primary_large_container_height
+dimen m3_comp_fab_primary_large_icon_size
+dimen m3_comp_fab_primary_pressed_container_elevation
+dimen m3_comp_fab_primary_pressed_state_layer_opacity
+dimen m3_comp_fab_primary_small_container_height
+dimen m3_comp_fab_primary_small_icon_size
+dimen m3_comp_filled_autocomplete_menu_container_elevation
+dimen m3_comp_filled_button_container_elevation
+dimen m3_comp_filled_button_with_icon_icon_size
+dimen m3_comp_filled_card_container_elevation
+dimen m3_comp_filled_card_dragged_state_layer_opacity
+dimen m3_comp_filled_card_focus_state_layer_opacity
+dimen m3_comp_filled_card_hover_state_layer_opacity
+dimen m3_comp_filled_card_icon_size
+dimen m3_comp_filled_card_pressed_state_layer_opacity
+dimen m3_comp_filled_text_field_disabled_active_indicator_opacity
+dimen m3_comp_filter_chip_container_height
+dimen m3_comp_filter_chip_elevated_container_elevation
+dimen m3_comp_filter_chip_flat_container_elevation
+dimen m3_comp_filter_chip_flat_unselected_outline_width
+dimen m3_comp_filter_chip_with_icon_icon_size
+dimen m3_comp_input_chip_container_elevation
+dimen m3_comp_input_chip_container_height
+dimen m3_comp_input_chip_unselected_outline_width
+dimen m3_comp_input_chip_with_avatar_avatar_size
+dimen m3_comp_input_chip_with_leading_icon_leading_icon_size
+dimen m3_comp_linear_progress_indicator_active_indicator_height
+dimen m3_comp_menu_container_elevation
+dimen m3_comp_navigation_bar_active_indicator_height
+dimen m3_comp_navigation_bar_active_indicator_width
+dimen m3_comp_navigation_bar_container_elevation
+dimen m3_comp_navigation_bar_container_height
+dimen m3_comp_navigation_bar_focus_state_layer_opacity
+dimen m3_comp_navigation_bar_hover_state_layer_opacity
+dimen m3_comp_navigation_bar_icon_size
+dimen m3_comp_navigation_bar_pressed_state_layer_opacity
+dimen m3_comp_navigation_drawer_container_width
+dimen m3_comp_navigation_drawer_focus_state_layer_opacity
+dimen m3_comp_navigation_drawer_hover_state_layer_opacity
+dimen m3_comp_navigation_drawer_icon_size
+dimen m3_comp_navigation_drawer_modal_container_elevation
+dimen m3_comp_navigation_drawer_pressed_state_layer_opacity
+dimen m3_comp_navigation_drawer_standard_container_elevation
+dimen m3_comp_navigation_rail_active_indicator_height
+dimen m3_comp_navigation_rail_active_indicator_width
+dimen m3_comp_navigation_rail_container_elevation
+dimen m3_comp_navigation_rail_container_width
+dimen m3_comp_navigation_rail_focus_state_layer_opacity
+dimen m3_comp_navigation_rail_hover_state_layer_opacity
+dimen m3_comp_navigation_rail_icon_size
+dimen m3_comp_navigation_rail_pressed_state_layer_opacity
+dimen m3_comp_outlined_autocomplete_menu_container_elevation
+dimen m3_comp_outlined_button_disabled_outline_opacity
+dimen m3_comp_outlined_button_outline_width
+dimen m3_comp_outlined_card_container_elevation
+dimen m3_comp_outlined_card_disabled_outline_opacity
+dimen m3_comp_outlined_card_icon_size
+dimen m3_comp_outlined_card_outline_width
+dimen m3_comp_outlined_icon_button_unselected_outline_width
+dimen m3_comp_outlined_text_field_disabled_input_text_opacity
+dimen m3_comp_outlined_text_field_disabled_label_text_opacity
+dimen m3_comp_outlined_text_field_disabled_supporting_text_opacity
+dimen m3_comp_outlined_text_field_focus_outline_width
+dimen m3_comp_outlined_text_field_outline_width
+dimen m3_comp_primary_navigation_tab_active_focus_state_layer_opacity
+dimen m3_comp_primary_navigation_tab_active_hover_state_layer_opacity
+dimen m3_comp_primary_navigation_tab_active_indicator_height
+dimen m3_comp_primary_navigation_tab_active_pressed_state_layer_opacity
+dimen m3_comp_primary_navigation_tab_inactive_focus_state_layer_opacity
+dimen m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity
+dimen m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity
+dimen m3_comp_primary_navigation_tab_with_icon_icon_size
+dimen m3_comp_radio_button_disabled_selected_icon_opacity
+dimen m3_comp_radio_button_disabled_unselected_icon_opacity
+dimen m3_comp_radio_button_selected_focus_state_layer_opacity
+dimen m3_comp_radio_button_selected_hover_state_layer_opacity
+dimen m3_comp_radio_button_selected_pressed_state_layer_opacity
+dimen m3_comp_radio_button_unselected_focus_state_layer_opacity
+dimen m3_comp_radio_button_unselected_hover_state_layer_opacity
+dimen m3_comp_radio_button_unselected_pressed_state_layer_opacity
+dimen m3_comp_search_bar_avatar_size
+dimen m3_comp_search_bar_container_elevation
+dimen m3_comp_search_bar_container_height
+dimen m3_comp_search_bar_hover_state_layer_opacity
+dimen m3_comp_search_bar_pressed_state_layer_opacity
+dimen m3_comp_search_view_container_elevation
+dimen m3_comp_search_view_docked_header_container_height
+dimen m3_comp_search_view_full_screen_header_container_height
+dimen m3_comp_secondary_navigation_tab_active_indicator_height
+dimen m3_comp_secondary_navigation_tab_focus_state_layer_opacity
+dimen m3_comp_secondary_navigation_tab_hover_state_layer_opacity
+dimen m3_comp_secondary_navigation_tab_pressed_state_layer_opacity
+dimen m3_comp_sheet_bottom_docked_drag_handle_height
+dimen m3_comp_sheet_bottom_docked_drag_handle_width
+dimen m3_comp_sheet_bottom_docked_modal_container_elevation
+dimen m3_comp_sheet_bottom_docked_standard_container_elevation
+dimen m3_comp_sheet_side_docked_container_width
+dimen m3_comp_sheet_side_docked_modal_container_elevation
+dimen m3_comp_sheet_side_docked_standard_container_elevation
+dimen m3_comp_slider_disabled_active_track_opacity
+dimen m3_comp_slider_disabled_handle_opacity
+dimen m3_comp_slider_disabled_inactive_track_opacity
+dimen m3_comp_slider_inactive_track_height
+dimen m3_comp_snackbar_container_elevation
+dimen m3_comp_suggestion_chip_container_height
+dimen m3_comp_suggestion_chip_elevated_container_elevation
+dimen m3_comp_suggestion_chip_flat_container_elevation
+dimen m3_comp_suggestion_chip_flat_outline_width
+dimen m3_comp_suggestion_chip_with_leading_icon_leading_icon_size
+dimen m3_comp_switch_disabled_selected_handle_opacity
+dimen m3_comp_switch_disabled_selected_icon_opacity
+dimen m3_comp_switch_disabled_track_opacity
+dimen m3_comp_switch_disabled_unselected_handle_opacity
+dimen m3_comp_switch_disabled_unselected_icon_opacity
+dimen m3_comp_switch_selected_focus_state_layer_opacity
+dimen m3_comp_switch_selected_hover_state_layer_opacity
+dimen m3_comp_switch_selected_pressed_state_layer_opacity
+dimen m3_comp_switch_track_height
+dimen m3_comp_switch_track_width
+dimen m3_comp_switch_unselected_focus_state_layer_opacity
+dimen m3_comp_switch_unselected_hover_state_layer_opacity
+dimen m3_comp_switch_unselected_pressed_state_layer_opacity
+dimen m3_comp_text_button_focus_state_layer_opacity
+dimen m3_comp_text_button_hover_state_layer_opacity
+dimen m3_comp_text_button_pressed_state_layer_opacity
+dimen m3_comp_time_input_time_input_field_focus_outline_width
+dimen m3_comp_time_picker_container_elevation
+dimen m3_comp_time_picker_period_selector_focus_state_layer_opacity
+dimen m3_comp_time_picker_period_selector_hover_state_layer_opacity
+dimen m3_comp_time_picker_period_selector_outline_width
+dimen m3_comp_time_picker_period_selector_pressed_state_layer_opacity
+dimen m3_comp_time_picker_time_selector_focus_state_layer_opacity
+dimen m3_comp_time_picker_time_selector_hover_state_layer_opacity
+dimen m3_comp_time_picker_time_selector_pressed_state_layer_opacity
+dimen m3_comp_top_app_bar_large_container_height
+dimen m3_comp_top_app_bar_medium_container_height
+dimen m3_comp_top_app_bar_small_container_elevation
+dimen m3_comp_top_app_bar_small_container_height
+dimen m3_comp_top_app_bar_small_on_scroll_container_elevation
+dimen m3_datepicker_elevation
+dimen m3_divider_heavy_thickness
+dimen m3_extended_fab_bottom_padding
+dimen m3_extended_fab_end_padding
+dimen m3_extended_fab_icon_padding
+dimen m3_extended_fab_min_height
+dimen m3_extended_fab_start_padding
+dimen m3_extended_fab_top_padding
+dimen m3_fab_border_width
+dimen m3_fab_corner_size
+dimen m3_fab_translation_z_hovered_focused
+dimen m3_fab_translation_z_pressed
+dimen m3_large_fab_max_image_size
+dimen m3_large_fab_size
+dimen m3_large_text_vertical_offset_adjustment
+dimen m3_menu_elevation
+dimen m3_nav_badge_with_text_vertical_offset
+dimen m3_navigation_drawer_layout_corner_size
+dimen m3_navigation_item_active_indicator_label_padding
+dimen m3_navigation_item_horizontal_padding
+dimen m3_navigation_item_icon_padding
+dimen m3_navigation_item_shape_inset_bottom
+dimen m3_navigation_item_shape_inset_end
+dimen m3_navigation_item_shape_inset_start
+dimen m3_navigation_item_shape_inset_top
+dimen m3_navigation_item_vertical_padding
+dimen m3_navigation_menu_divider_horizontal_padding
+dimen m3_navigation_menu_headline_horizontal_padding
+dimen m3_navigation_rail_default_width
+dimen m3_navigation_rail_elevation
+dimen m3_navigation_rail_icon_size
+dimen m3_navigation_rail_item_active_indicator_height
+dimen m3_navigation_rail_item_active_indicator_margin_horizontal
+dimen m3_navigation_rail_item_active_indicator_width
+dimen m3_navigation_rail_item_min_height
+dimen m3_navigation_rail_item_padding_bottom
+dimen m3_navigation_rail_item_padding_bottom_with_large_font
+dimen m3_navigation_rail_item_padding_top
+dimen m3_navigation_rail_item_padding_top_with_large_font
+dimen m3_ripple_default_alpha
+dimen m3_ripple_focused_alpha
+dimen m3_ripple_hovered_alpha
+dimen m3_ripple_pressed_alpha
+dimen m3_ripple_selectable_pressed_alpha
+dimen m3_searchbar_elevation
+dimen m3_searchbar_height
+dimen m3_searchbar_margin_horizontal
+dimen m3_searchbar_margin_vertical
+dimen m3_searchbar_outlined_stroke_width
+dimen m3_searchbar_padding_start
+dimen m3_searchbar_text_margin_start_no_navigation_icon
+dimen m3_searchbar_text_size
+dimen m3_searchview_divider_size
+dimen m3_searchview_elevation
+dimen m3_searchview_height
+dimen m3_side_sheet_margin_detached
+dimen m3_side_sheet_modal_elevation
+dimen m3_side_sheet_standard_elevation
+dimen m3_side_sheet_width
+dimen m3_simple_item_color_hovered_alpha
+dimen m3_simple_item_color_selected_alpha
+dimen m3_slider_inactive_track_height
+dimen m3_slider_thumb_elevation
+dimen m3_small_fab_max_image_size
+dimen m3_small_fab_size
+dimen m3_snackbar_action_text_color_alpha
+dimen m3_snackbar_margin
+dimen m3_sys_elevation_level0
+dimen m3_sys_elevation_level1
+dimen m3_sys_elevation_level2
+dimen m3_sys_elevation_level3
+dimen m3_sys_elevation_level4
+dimen m3_sys_elevation_level5
+dimen m3_sys_motion_easing_emphasized_accelerate_control_x1
+dimen m3_sys_motion_easing_emphasized_accelerate_control_x2
+dimen m3_sys_motion_easing_emphasized_accelerate_control_y1
+dimen m3_sys_motion_easing_emphasized_accelerate_control_y2
+dimen m3_sys_motion_easing_emphasized_decelerate_control_x1
+dimen m3_sys_motion_easing_emphasized_decelerate_control_x2
+dimen m3_sys_motion_easing_emphasized_decelerate_control_y1
+dimen m3_sys_motion_easing_emphasized_decelerate_control_y2
+dimen m3_sys_motion_easing_legacy_accelerate_control_x1
+dimen m3_sys_motion_easing_legacy_accelerate_control_x2
+dimen m3_sys_motion_easing_legacy_accelerate_control_y1
+dimen m3_sys_motion_easing_legacy_accelerate_control_y2
+dimen m3_sys_motion_easing_legacy_control_x1
+dimen m3_sys_motion_easing_legacy_control_x2
+dimen m3_sys_motion_easing_legacy_control_y1
+dimen m3_sys_motion_easing_legacy_control_y2
+dimen m3_sys_motion_easing_legacy_decelerate_control_x1
+dimen m3_sys_motion_easing_legacy_decelerate_control_x2
+dimen m3_sys_motion_easing_legacy_decelerate_control_y1
+dimen m3_sys_motion_easing_legacy_decelerate_control_y2
+dimen m3_sys_motion_easing_linear_control_x1
+dimen m3_sys_motion_easing_linear_control_x2
+dimen m3_sys_motion_easing_linear_control_y1
+dimen m3_sys_motion_easing_linear_control_y2
+dimen m3_sys_motion_easing_standard_accelerate_control_x1
+dimen m3_sys_motion_easing_standard_accelerate_control_x2
+dimen m3_sys_motion_easing_standard_accelerate_control_y1
+dimen m3_sys_motion_easing_standard_accelerate_control_y2
+dimen m3_sys_motion_easing_standard_control_x1
+dimen m3_sys_motion_easing_standard_control_x2
+dimen m3_sys_motion_easing_standard_control_y1
+dimen m3_sys_motion_easing_standard_control_y2
+dimen m3_sys_motion_easing_standard_decelerate_control_x1
+dimen m3_sys_motion_easing_standard_decelerate_control_x2
+dimen m3_sys_motion_easing_standard_decelerate_control_y1
+dimen m3_sys_motion_easing_standard_decelerate_control_y2
+dimen m3_sys_state_dragged_state_layer_opacity
+dimen m3_sys_state_focus_state_layer_opacity
+dimen m3_sys_state_hover_state_layer_opacity
+dimen m3_sys_state_pressed_state_layer_opacity
+dimen m3_timepicker_display_stroke_width
+dimen m3_timepicker_window_elevation
+dimen m3_toolbar_text_size_title
+dimen material_bottom_sheet_max_width
+dimen material_clock_display_height
+dimen material_clock_display_padding
+dimen material_clock_display_width
+dimen material_clock_face_margin_bottom
+dimen material_clock_face_margin_top
+dimen material_clock_hand_center_dot_radius
+dimen material_clock_hand_padding
+dimen material_clock_hand_stroke_width
+dimen material_clock_number_text_size
+dimen material_clock_period_toggle_height
+dimen material_clock_period_toggle_horizontal_gap
+dimen material_clock_period_toggle_vertical_gap
+dimen material_clock_period_toggle_width
+dimen material_clock_size
+dimen material_cursor_inset
+dimen material_cursor_width
+dimen material_divider_thickness
+dimen material_emphasis_disabled
+dimen material_emphasis_disabled_background
+dimen material_emphasis_high_type
+dimen material_emphasis_medium
+dimen material_filled_edittext_font_1_3_padding_bottom
+dimen material_filled_edittext_font_1_3_padding_top
+dimen material_filled_edittext_font_2_0_padding_bottom
+dimen material_filled_edittext_font_2_0_padding_top
+dimen material_font_1_3_box_collapsed_padding_top
+dimen material_font_2_0_box_collapsed_padding_top
+dimen material_helper_text_default_padding_top
+dimen material_helper_text_font_1_3_padding_horizontal
+dimen material_helper_text_font_1_3_padding_top
+dimen material_input_text_to_prefix_suffix_padding
+dimen material_textinput_default_width
+dimen material_textinput_max_width
+dimen material_textinput_min_width
+dimen material_time_picker_minimum_screen_height
+dimen material_time_picker_minimum_screen_width
+dimen mtrl_alert_dialog_background_inset_bottom
+dimen mtrl_alert_dialog_background_inset_end
+dimen mtrl_alert_dialog_background_inset_start
+dimen mtrl_alert_dialog_background_inset_top
+dimen mtrl_alert_dialog_picker_background_inset
+dimen mtrl_badge_horizontal_edge_offset
+dimen mtrl_badge_long_text_horizontal_padding
+dimen mtrl_badge_size
+dimen mtrl_badge_text_horizontal_edge_offset
+dimen mtrl_badge_text_size
+dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset
+dimen mtrl_badge_toolbar_action_menu_item_vertical_offset
+dimen mtrl_badge_with_text_size
+dimen mtrl_bottomappbar_fabOffsetEndMode
+dimen mtrl_bottomappbar_fab_bottom_margin
+dimen mtrl_bottomappbar_fab_cradle_margin
+dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius
+dimen mtrl_bottomappbar_fab_cradle_vertical_offset
+dimen mtrl_bottomappbar_height
+dimen mtrl_btn_corner_radius
+dimen mtrl_btn_dialog_btn_min_width
+dimen mtrl_btn_disabled_elevation
+dimen mtrl_btn_disabled_z
+dimen mtrl_btn_elevation
+dimen mtrl_btn_focused_z
+dimen mtrl_btn_hovered_z
+dimen mtrl_btn_icon_btn_padding_left
+dimen mtrl_btn_icon_padding
+dimen mtrl_btn_inset
+dimen mtrl_btn_letter_spacing
+dimen mtrl_btn_max_width
+dimen mtrl_btn_padding_bottom
+dimen mtrl_btn_padding_left
+dimen mtrl_btn_padding_right
+dimen mtrl_btn_padding_top
+dimen mtrl_btn_pressed_z
+dimen mtrl_btn_snackbar_margin_horizontal
+dimen mtrl_btn_stroke_size
+dimen mtrl_btn_text_btn_icon_padding
+dimen mtrl_btn_text_btn_padding_left
+dimen mtrl_btn_text_btn_padding_right
+dimen mtrl_btn_text_size
+dimen mtrl_btn_z
+dimen mtrl_calendar_action_confirm_button_min_width
+dimen mtrl_calendar_action_height
+dimen mtrl_calendar_action_padding
+dimen mtrl_calendar_bottom_padding
+dimen mtrl_calendar_content_padding
+dimen mtrl_calendar_day_corner
+dimen mtrl_calendar_day_height
+dimen mtrl_calendar_day_horizontal_padding
+dimen mtrl_calendar_day_today_stroke
+dimen mtrl_calendar_day_vertical_padding
+dimen mtrl_calendar_day_width
+dimen mtrl_calendar_days_of_week_height
+dimen mtrl_calendar_dialog_background_inset
+dimen mtrl_calendar_header_content_padding
+dimen mtrl_calendar_header_content_padding_fullscreen
+dimen mtrl_calendar_header_divider_thickness
+dimen mtrl_calendar_header_height
+dimen mtrl_calendar_header_height_fullscreen
+dimen mtrl_calendar_header_selection_line_height
+dimen mtrl_calendar_header_text_padding
+dimen mtrl_calendar_header_toggle_margin_bottom
+dimen mtrl_calendar_header_toggle_margin_top
+dimen mtrl_calendar_landscape_header_width
+dimen mtrl_calendar_maximum_default_fullscreen_minor_axis
+dimen mtrl_calendar_month_horizontal_padding
+dimen mtrl_calendar_month_vertical_padding
+dimen mtrl_calendar_navigation_bottom_padding
+dimen mtrl_calendar_navigation_height
+dimen mtrl_calendar_navigation_top_padding
+dimen mtrl_calendar_pre_l_text_clip_padding
+dimen mtrl_calendar_selection_baseline_to_top_fullscreen
+dimen mtrl_calendar_selection_text_baseline_to_bottom
+dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen
+dimen mtrl_calendar_selection_text_baseline_to_top
+dimen mtrl_calendar_text_input_padding_top
+dimen mtrl_calendar_title_baseline_to_top
+dimen mtrl_calendar_title_baseline_to_top_fullscreen
+dimen mtrl_calendar_year_corner
+dimen mtrl_calendar_year_height
+dimen mtrl_calendar_year_horizontal_padding
+dimen mtrl_calendar_year_vertical_padding
+dimen mtrl_calendar_year_width
+dimen mtrl_card_checked_icon_margin
+dimen mtrl_card_checked_icon_size
+dimen mtrl_card_corner_radius
+dimen mtrl_card_dragged_z
+dimen mtrl_card_elevation
+dimen mtrl_card_spacing
+dimen mtrl_chip_pressed_translation_z
+dimen mtrl_chip_text_size
+dimen mtrl_exposed_dropdown_menu_popup_elevation
+dimen mtrl_exposed_dropdown_menu_popup_vertical_offset
+dimen mtrl_exposed_dropdown_menu_popup_vertical_padding
+dimen mtrl_extended_fab_bottom_padding
+dimen mtrl_extended_fab_disabled_elevation
+dimen mtrl_extended_fab_disabled_translation_z
+dimen mtrl_extended_fab_elevation
+dimen mtrl_extended_fab_end_padding
+dimen mtrl_extended_fab_end_padding_icon
+dimen mtrl_extended_fab_icon_size
+dimen mtrl_extended_fab_icon_text_spacing
+dimen mtrl_extended_fab_min_height
+dimen mtrl_extended_fab_min_width
+dimen mtrl_extended_fab_start_padding
+dimen mtrl_extended_fab_start_padding_icon
+dimen mtrl_extended_fab_top_padding
+dimen mtrl_extended_fab_translation_z_base
+dimen mtrl_extended_fab_translation_z_hovered_focused
+dimen mtrl_extended_fab_translation_z_pressed
+dimen mtrl_fab_elevation
+dimen mtrl_fab_min_touch_target
+dimen mtrl_fab_translation_z_hovered_focused
+dimen mtrl_fab_translation_z_pressed
+dimen mtrl_high_ripple_default_alpha
+dimen mtrl_high_ripple_focused_alpha
+dimen mtrl_high_ripple_hovered_alpha
+dimen mtrl_high_ripple_pressed_alpha
+dimen mtrl_low_ripple_default_alpha
+dimen mtrl_low_ripple_focused_alpha
+dimen mtrl_low_ripple_hovered_alpha
+dimen mtrl_low_ripple_pressed_alpha
+dimen mtrl_min_touch_target_size
+dimen mtrl_navigation_bar_item_default_icon_size
+dimen mtrl_navigation_bar_item_default_margin
+dimen mtrl_navigation_elevation
+dimen mtrl_navigation_item_horizontal_padding
+dimen mtrl_navigation_item_icon_padding
+dimen mtrl_navigation_item_icon_size
+dimen mtrl_navigation_item_shape_horizontal_margin
+dimen mtrl_navigation_item_shape_vertical_margin
+dimen mtrl_navigation_rail_active_text_size
+dimen mtrl_navigation_rail_compact_width
+dimen mtrl_navigation_rail_default_width
+dimen mtrl_navigation_rail_elevation
+dimen mtrl_navigation_rail_icon_margin
+dimen mtrl_navigation_rail_icon_size
+dimen mtrl_navigation_rail_margin
+dimen mtrl_navigation_rail_text_bottom_margin
+dimen mtrl_navigation_rail_text_size
+dimen mtrl_progress_circular_inset
+dimen mtrl_progress_circular_inset_extra_small
+dimen mtrl_progress_circular_inset_medium
+dimen mtrl_progress_circular_inset_small
+dimen mtrl_progress_circular_radius
+dimen mtrl_progress_circular_size
+dimen mtrl_progress_circular_size_extra_small
+dimen mtrl_progress_circular_size_medium
+dimen mtrl_progress_circular_size_small
+dimen mtrl_progress_circular_track_thickness_extra_small
+dimen mtrl_progress_circular_track_thickness_medium
+dimen mtrl_progress_circular_track_thickness_small
+dimen mtrl_progress_indicator_full_rounded_corner_radius
+dimen mtrl_progress_track_thickness
+dimen mtrl_shape_corner_size_large_component
+dimen mtrl_shape_corner_size_medium_component
+dimen mtrl_shape_corner_size_small_component
+dimen mtrl_slider_halo_radius
+dimen mtrl_slider_label_padding
+dimen mtrl_slider_label_radius
+dimen mtrl_slider_label_square_side
+dimen mtrl_slider_thumb_elevation
+dimen mtrl_slider_thumb_radius
+dimen mtrl_slider_tick_radius
+dimen mtrl_slider_track_height
+dimen mtrl_slider_track_side_padding
+dimen mtrl_slider_widget_height
+dimen mtrl_snackbar_action_text_color_alpha
+dimen mtrl_snackbar_background_corner_radius
+dimen mtrl_snackbar_background_overlay_color_alpha
+dimen mtrl_snackbar_margin
+dimen mtrl_snackbar_message_margin_horizontal
+dimen mtrl_snackbar_padding_horizontal
+dimen mtrl_switch_text_padding
+dimen mtrl_switch_thumb_elevation
+dimen mtrl_switch_thumb_icon_size
+dimen mtrl_switch_thumb_size
+dimen mtrl_switch_track_height
+dimen mtrl_switch_track_width
+dimen mtrl_textinput_box_corner_radius_medium
+dimen mtrl_textinput_box_corner_radius_small
+dimen mtrl_textinput_box_label_cutout_padding
+dimen mtrl_textinput_box_stroke_width_default
+dimen mtrl_textinput_box_stroke_width_focused
+dimen mtrl_textinput_counter_margin_start
+dimen mtrl_textinput_end_icon_margin_start
+dimen mtrl_textinput_outline_box_expanded_padding
+dimen mtrl_textinput_start_icon_margin_end
+dimen mtrl_toolbar_default_height
+dimen mtrl_tooltip_arrowSize
+dimen mtrl_tooltip_cornerSize
+dimen mtrl_tooltip_minHeight
+dimen mtrl_tooltip_minWidth
+dimen mtrl_tooltip_padding
+dimen mtrl_transition_shared_axis_slide_distance
+dimen notification_action_icon_size
+dimen notification_action_text_size
+dimen notification_big_circle_margin
+dimen notification_content_margin_start
+dimen notification_large_icon_height
+dimen notification_large_icon_width
+dimen notification_main_column_padding_top
+dimen notification_media_narrow_margin
+dimen notification_right_icon_size
+dimen notification_right_side_padding_top
+dimen notification_small_icon_background_padding
+dimen notification_small_icon_size_as_large
+dimen notification_subtext_size
+dimen notification_top_pad
+dimen notification_top_pad_large_text
+dimen preference_dropdown_padding_start
+dimen preference_icon_minWidth
+dimen preference_seekbar_padding_horizontal
+dimen preference_seekbar_padding_vertical
+dimen preference_seekbar_value_minWidth
+dimen preferences_detail_width
+dimen preferences_header_width
+dimen qrcode_size
+dimen simple_menu_dialog_max_width
+dimen simple_menu_margin
+dimen simple_menu_unit
+dimen tooltip_corner_radius
+dimen tooltip_horizontal_padding
+dimen tooltip_margin
+dimen tooltip_precise_anchor_extra_offset
+dimen tooltip_precise_anchor_threshold
+dimen tooltip_vertical_padding
+dimen tooltip_y_offset_non_touch
+dimen tooltip_y_offset_touch
+dimen touch_target_min
+drawable abc_ab_share_pack_mtrl_alpha
+drawable abc_action_bar_item_background_material
+drawable abc_btn_borderless_material
+drawable abc_btn_check_material
+drawable abc_btn_check_material_anim
+drawable abc_btn_check_to_on_mtrl_000
+drawable abc_btn_check_to_on_mtrl_015
+drawable abc_btn_colored_material
+drawable abc_btn_default_mtrl_shape
+drawable abc_btn_radio_material
+drawable abc_btn_radio_material_anim
+drawable abc_btn_radio_to_on_mtrl_000
+drawable abc_btn_radio_to_on_mtrl_015
+drawable abc_btn_switch_to_on_mtrl_00001
+drawable abc_btn_switch_to_on_mtrl_00012
+drawable abc_cab_background_internal_bg
+drawable abc_cab_background_top_material
+drawable abc_cab_background_top_mtrl_alpha
+drawable abc_control_background_material
+drawable abc_dialog_material_background
+drawable abc_edit_text_material
+drawable abc_ic_ab_back_material
+drawable abc_ic_arrow_drop_right_black_24dp
+drawable abc_ic_clear_material
+drawable abc_ic_commit_search_api_mtrl_alpha
+drawable abc_ic_go_search_api_material
+drawable abc_ic_menu_copy_mtrl_am_alpha
+drawable abc_ic_menu_cut_mtrl_alpha
+drawable abc_ic_menu_overflow_material
+drawable abc_ic_menu_paste_mtrl_am_alpha
+drawable abc_ic_menu_selectall_mtrl_alpha
+drawable abc_ic_menu_share_mtrl_alpha
+drawable abc_ic_search_api_material
+drawable abc_ic_voice_search_api_material
+drawable abc_item_background_holo_dark
+drawable abc_item_background_holo_light
+drawable abc_list_divider_material
+drawable abc_list_divider_mtrl_alpha
+drawable abc_list_focused_holo
+drawable abc_list_longpressed_holo
+drawable abc_list_pressed_holo_dark
+drawable abc_list_pressed_holo_light
+drawable abc_list_selector_background_transition_holo_dark
+drawable abc_list_selector_background_transition_holo_light
+drawable abc_list_selector_disabled_holo_dark
+drawable abc_list_selector_disabled_holo_light
+drawable abc_list_selector_holo_dark
+drawable abc_list_selector_holo_light
+drawable abc_menu_hardkey_panel_mtrl_mult
+drawable abc_popup_background_mtrl_mult
+drawable abc_ratingbar_indicator_material
+drawable abc_ratingbar_material
+drawable abc_ratingbar_small_material
+drawable abc_scrubber_control_off_mtrl_alpha
+drawable abc_scrubber_control_to_pressed_mtrl_000
+drawable abc_scrubber_control_to_pressed_mtrl_005
+drawable abc_scrubber_primary_mtrl_alpha
+drawable abc_scrubber_track_mtrl_alpha
+drawable abc_seekbar_thumb_material
+drawable abc_seekbar_tick_mark_material
+drawable abc_seekbar_track_material
+drawable abc_spinner_mtrl_am_alpha
+drawable abc_spinner_textfield_background_material
+drawable abc_star_black_48dp
+drawable abc_star_half_black_48dp
+drawable abc_switch_thumb_material
+drawable abc_switch_track_mtrl_alpha
+drawable abc_tab_indicator_material
+drawable abc_tab_indicator_mtrl_alpha
+drawable abc_text_cursor_material
+drawable abc_text_select_handle_left_mtrl
+drawable abc_text_select_handle_middle_mtrl
+drawable abc_text_select_handle_right_mtrl
+drawable abc_textfield_activated_mtrl_alpha
+drawable abc_textfield_default_mtrl_alpha
+drawable abc_textfield_search_activated_mtrl_alpha
+drawable abc_textfield_search_default_mtrl_alpha
+drawable abc_textfield_search_material
+drawable abc_vector_test
+drawable avd_hide_password
+drawable avd_show_password
+drawable btn_checkbox_checked_mtrl
+drawable btn_checkbox_checked_to_unchecked_mtrl_animation
+drawable btn_checkbox_unchecked_mtrl
+drawable btn_checkbox_unchecked_to_checked_mtrl_animation
+drawable btn_radio_off_mtrl
+drawable btn_radio_off_to_on_mtrl_animation
+drawable btn_radio_on_mtrl
+drawable btn_radio_on_to_off_mtrl_animation
+drawable common_full_open_on_phone
+drawable common_google_signin_btn_icon_dark
+drawable common_google_signin_btn_icon_dark_focused
+drawable common_google_signin_btn_icon_dark_normal
+drawable common_google_signin_btn_icon_dark_normal_background
+drawable common_google_signin_btn_icon_disabled
+drawable common_google_signin_btn_icon_light
+drawable common_google_signin_btn_icon_light_focused
+drawable common_google_signin_btn_icon_light_normal
+drawable common_google_signin_btn_icon_light_normal_background
+drawable common_google_signin_btn_text_dark
+drawable common_google_signin_btn_text_dark_focused
+drawable common_google_signin_btn_text_dark_normal
+drawable common_google_signin_btn_text_dark_normal_background
+drawable common_google_signin_btn_text_disabled
+drawable common_google_signin_btn_text_light
+drawable common_google_signin_btn_text_light_focused
+drawable common_google_signin_btn_text_light_normal
+drawable common_google_signin_btn_text_light_normal_background
+drawable design_fab_background
+drawable design_ic_visibility
+drawable design_ic_visibility_off
+drawable design_password_eye
+drawable design_snackbar_background
+drawable googleg_disabled_color_18
+drawable googleg_standard_color_18
+drawable ic_action_autorenew
+drawable ic_action_bug_report
+drawable ic_action_build
+drawable ic_action_card_giftcard
+drawable ic_action_code
+drawable ic_action_perm_scan_wifi
+drawable ic_action_settings
+drawable ic_action_settings_backup_restore
+drawable ic_action_settings_ethernet
+drawable ic_action_settings_input_antenna
+drawable ic_action_settings_input_component
+drawable ic_action_update
+drawable ic_action_wifi_protected_setup
+drawable ic_alert_warning
+drawable ic_arrow_back_black_24
+drawable ic_arrow_down_24dp
+drawable ic_av_closed_caption
+drawable ic_av_closed_caption_off
+drawable ic_call_answer
+drawable ic_call_answer_low
+drawable ic_call_answer_video
+drawable ic_call_answer_video_low
+drawable ic_call_decline
+drawable ic_call_decline_low
+drawable ic_clear_black_24
+drawable ic_clock_black_24dp
+drawable ic_content_add
+drawable ic_content_file_copy
+drawable ic_content_inbox
+drawable ic_device_battery_charging_full
+drawable ic_device_bluetooth
+drawable ic_device_devices
+drawable ic_device_network_wifi
+drawable ic_device_usb
+drawable ic_device_wifi_lock
+drawable ic_device_wifi_tethering
+drawable ic_file_downloading
+drawable ic_hardware_device_hub
+drawable ic_image_flash_on
+drawable ic_image_looks_6
+drawable ic_image_remove_red_eye
+drawable ic_keyboard_black_24dp
+drawable ic_launcher_background
+drawable ic_launcher_foreground
+drawable ic_launcher_monochrome
+drawable ic_m3_chip_check
+drawable ic_m3_chip_checked_circle
+drawable ic_m3_chip_close
+drawable ic_mtrl_checked_circle
+drawable ic_mtrl_chip_checked_black
+drawable ic_mtrl_chip_checked_circle
+drawable ic_mtrl_chip_close_circle
+drawable ic_quick_settings_tile_on
+drawable ic_search_black_24
+drawable ic_settings_qrcode
+drawable ic_social_people
+drawable ic_toggle_star
+drawable m3_avd_hide_password
+drawable m3_avd_show_password
+drawable m3_bottom_sheet_drag_handle
+drawable m3_password_eye
+drawable m3_popupmenu_background_overlay
+drawable m3_radiobutton_ripple
+drawable m3_selection_control_ripple
+drawable m3_tabs_background
+drawable m3_tabs_line_indicator
+drawable m3_tabs_rounded_line_indicator
+drawable m3_tabs_transparent_background
+drawable material_cursor_drawable
+drawable material_ic_calendar_black_24dp
+drawable material_ic_clear_black_24dp
+drawable material_ic_edit_black_24dp
+drawable material_ic_keyboard_arrow_left_black_24dp
+drawable material_ic_keyboard_arrow_next_black_24dp
+drawable material_ic_keyboard_arrow_previous_black_24dp
+drawable material_ic_keyboard_arrow_right_black_24dp
+drawable material_ic_menu_arrow_down_black_24dp
+drawable material_ic_menu_arrow_up_black_24dp
+drawable mtrl_bottomsheet_drag_handle
+drawable mtrl_checkbox_button
+drawable mtrl_checkbox_button_checked_unchecked
+drawable mtrl_checkbox_button_icon
+drawable mtrl_checkbox_button_icon_checked_indeterminate
+drawable mtrl_checkbox_button_icon_checked_unchecked
+drawable mtrl_checkbox_button_icon_indeterminate_checked
+drawable mtrl_checkbox_button_icon_indeterminate_unchecked
+drawable mtrl_checkbox_button_icon_unchecked_checked
+drawable mtrl_checkbox_button_icon_unchecked_indeterminate
+drawable mtrl_checkbox_button_unchecked_checked
+drawable mtrl_dialog_background
+drawable mtrl_dropdown_arrow
+drawable mtrl_ic_arrow_drop_down
+drawable mtrl_ic_arrow_drop_up
+drawable mtrl_ic_cancel
+drawable mtrl_ic_check_mark
+drawable mtrl_ic_checkbox_checked
+drawable mtrl_ic_checkbox_unchecked
+drawable mtrl_ic_error
+drawable mtrl_ic_indeterminate
+drawable mtrl_navigation_bar_item_background
+drawable mtrl_popupmenu_background
+drawable mtrl_popupmenu_background_overlay
+drawable mtrl_switch_thumb
+drawable mtrl_switch_thumb_checked
+drawable mtrl_switch_thumb_checked_pressed
+drawable mtrl_switch_thumb_checked_unchecked
+drawable mtrl_switch_thumb_pressed
+drawable mtrl_switch_thumb_pressed_checked
+drawable mtrl_switch_thumb_pressed_unchecked
+drawable mtrl_switch_thumb_unchecked
+drawable mtrl_switch_thumb_unchecked_checked
+drawable mtrl_switch_thumb_unchecked_pressed
+drawable mtrl_switch_track
+drawable mtrl_switch_track_decoration
+drawable mtrl_tabs_default_indicator
+drawable navigation_empty_icon
+drawable notification_action_background
+drawable notification_bg
+drawable notification_bg_low
+drawable notification_bg_low_normal
+drawable notification_bg_low_pressed
+drawable notification_bg_normal
+drawable notification_bg_normal_pressed
+drawable notification_icon_background
+drawable notification_oversize_large_icon_bg
+drawable notification_template_icon_bg
+drawable notification_template_icon_low_bg
+drawable notification_tile_bg
+drawable notify_panel_notification_icon_bg
+drawable preference_list_divider_material
+drawable simple_menu_background
+drawable simple_menu_item_background
+drawable test_level_drawable
+drawable toggle_hex
+drawable tooltip_frame_dark
+drawable tooltip_frame_light
+id ALT
+id BOTTOM_END
+id BOTTOM_START
+id CTRL
+id FUNCTION
+id META
+id NO_DEBUG
+id SHIFT
+id SHOW_ALL
+id SHOW_PATH
+id SHOW_PROGRESS
+id SYM
+id TOP_END
+id TOP_START
+id accelerate
+id access_control_group
+id accessibility_action_clickable_span
+id accessibility_custom_action_0
+id accessibility_custom_action_1
+id accessibility_custom_action_10
+id accessibility_custom_action_11
+id accessibility_custom_action_12
+id accessibility_custom_action_13
+id accessibility_custom_action_14
+id accessibility_custom_action_15
+id accessibility_custom_action_16
+id accessibility_custom_action_17
+id accessibility_custom_action_18
+id accessibility_custom_action_19
+id accessibility_custom_action_2
+id accessibility_custom_action_20
+id accessibility_custom_action_21
+id accessibility_custom_action_22
+id accessibility_custom_action_23
+id accessibility_custom_action_24
+id accessibility_custom_action_25
+id accessibility_custom_action_26
+id accessibility_custom_action_27
+id accessibility_custom_action_28
+id accessibility_custom_action_29
+id accessibility_custom_action_3
+id accessibility_custom_action_30
+id accessibility_custom_action_31
+id accessibility_custom_action_4
+id accessibility_custom_action_5
+id accessibility_custom_action_6
+id accessibility_custom_action_7
+id accessibility_custom_action_8
+id accessibility_custom_action_9
+id acs_2g
+id acs_2g_wrapper
+id acs_5g
+id acs_5g_wrapper
+id acs_6g
+id acs_6g_wrapper
+id action_bar
+id action_bar_activity_content
+id action_bar_container
+id action_bar_root
+id action_bar_spinner
+id action_bar_subtitle
+id action_bar_title
+id action_container
+id action_context_bar
+id action_divider
+id action_image
+id action_menu_divider
+id action_menu_presenter
+id action_mode_bar
+id action_mode_bar_stub
+id action_mode_close_button
+id action_text
+id actions
+id activity_chooser_view_content
+id add
+id addresses
+id adjust_height
+id adjust_width
+id advanced_ap_group
+id alertTitle
+id aligned
+id all
+id allowed_list
+id allowed_list_wrapper
+id always
+id androidx_window_activity_scope
+id animateToEnd
+id animateToStart
+id arc
+id asConfigured
+id async
+id auto
+id autoComplete
+id autoCompleteToEnd
+id autoCompleteToStart
+id auto_shutdown
+id band_error
+id band_group
+id band_primary
+id band_secondary
+id barrier
+id baseline
+id beginOnFirstDraw
+id beginning
+id block
+id blocked_list
+id blocked_list_wrapper
+id blocking
+id bottom
+id bounce
+id bridged_mode_opportunistic_shutdown
+id bridged_timeout
+id bridged_timeout_wrapper
+id browser_actions_header_text
+id browser_actions_menu_item_icon
+id browser_actions_menu_item_text
+id browser_actions_menu_items
+id browser_actions_menu_view
+id bssid
+id bssid_wrapper
+id buttonPanel
+id cancel_button
+id center
+id centerCrop
+id centerInside
+id center_horizontal
+id center_vertical
+id chain
+id chains
+id checkbox
+id checked
+id chronometer
+id circle_center
+id clear_text
+id client_user_control
+id clients
+id clip_horizontal
+id clip_vertical
+id clockwise
+id collapseActionView
+id compress
+id configuration
+id configuration_ap
+id configuration_repeater
+id configuration_temp_hotspot
+id confirm_button
+id container
+id content
+id contentPanel
+id contiguous
+id coordinator
+id cos
+id counterclockwise
+id cradle
+id custom
+id customPanel
+id cut
+id dark
+id dataBinding
+id date_picker_actions
+id decelerate
+id decelerateAndComplete
+id decor_content_parent
+id default_activity_button
+id deltaRelative
+id description
+id design_bottom_sheet
+id design_menu_item_action_area
+id design_menu_item_action_area_stub
+id design_menu_item_text
+id design_navigation_view
+id dialog_button
+id dimensions
+id direct
+id disableHome
+id disablePostScroll
+id disableScroll
+id disjoint
+id donations__google
+id donations__google_android_market_donate_button
+id donations__google_android_market_spinner
+id donations__more_donate_button
+id dragDown
+id dragEnd
+id dragLeft
+id dragRight
+id dragStart
+id dragUp
+id dropdown_menu
+id easeIn
+id easeInOut
+id easeOut
+id edge
+id edit_query
+id edit_text_id
+id elastic
+id embed
+id end
+id endToStart
+id enterAlways
+id enterAlwaysCollapsed
+id exitUntilCollapsed
+id expand_activities_button
+id expanded_menu
+id fade
+id fill
+id fill_horizontal
+id fill_vertical
+id filled
+id fitCenter
+id fitEnd
+id fitStart
+id fitToContents
+id fitXY
+id fixed
+id flip
+id floating
+id forever
+id fragmentHolder
+id fragment_container_view_tag
+id fullscreen_header
+id ghost_view
+id ghost_view_holder
+id gone
+id graph
+id graph_wrap
+id group_divider
+id groups
+id header_title
+id hidden_ssid
+id hide_ime_id
+id hideable
+id home
+id homeAsUp
+id honorRequest
+id icon
+id icon_frame
+id icon_group
+id icon_only
+id ieee_80211ax
+id ieee_80211be
+id ifRoom
+id ignore
+id ignoreRequest
+id image
+id indeterminate
+id info
+id interfaces
+id invalid
+id invisible
+id inward
+id italic
+id item_touch_helper_previous_elevation
+id jumpToEnd
+id jumpToStart
+id labeled
+id layout
+id left
+id leftToRight
+id legacy
+id license
+id license_activity_scrollview
+id license_activity_textview
+id license_list
+id light
+id line1
+id line3
+id linear
+id listMode
+id list_item
+id locale
+id ltr
+id m3_side_sheet
+id mac_randomization
+id mac_randomization_wrapper
+id marquee
+id masked
+id match_parent
+id material_clock_display
+id material_clock_display_and_toggle
+id material_clock_face
+id material_clock_hand
+id material_clock_level
+id material_clock_period_am_button
+id material_clock_period_pm_button
+id material_clock_period_toggle
+id material_hour_text_input
+id material_hour_tv
+id material_label
+id material_minute_text_input
+id material_minute_tv
+id material_textinput_timepicker
+id material_timepicker_cancel_button
+id material_timepicker_container
+id material_timepicker_mode_button
+id material_timepicker_ok_button
+id material_timepicker_view
+id material_value_index
+id matrix
+id max_channel_bandwidth
+id max_channel_bandwidth_error
+id max_channel_bandwidth_wrapper
+id max_client
+id max_client_wrapper
+id message
+id middle
+id mini
+id monitor
+id month_grid
+id month_navigation_bar
+id month_navigation_fragment_toggle
+id month_navigation_next
+id month_navigation_previous
+id month_title
+id motion_base
+id mtrl_anchor_parent
+id mtrl_calendar_day_selector_frame
+id mtrl_calendar_days_of_week
+id mtrl_calendar_frame
+id mtrl_calendar_main_pane
+id mtrl_calendar_months
+id mtrl_calendar_selection_frame
+id mtrl_calendar_text_input_frame
+id mtrl_calendar_year_selector_frame
+id mtrl_card_checked_layer_id
+id mtrl_child_content_container
+id mtrl_internal_children_alpha_tag
+id mtrl_motion_snapshot_view
+id mtrl_picker_fullscreen
+id mtrl_picker_header
+id mtrl_picker_header_selection_text
+id mtrl_picker_header_title_and_selection
+id mtrl_picker_header_toggle
+id mtrl_picker_text_input_date
+id mtrl_picker_text_input_range_end
+id mtrl_picker_text_input_range_start
+id mtrl_picker_title_text
+id mtrl_view_tag_bottom_padding
+id multiply
+id navigation
+id navigation_bar_item_active_indicator_view
+id navigation_bar_item_icon_container
+id navigation_bar_item_icon_view
+id navigation_bar_item_labels_group
+id navigation_bar_item_large_label_view
+id navigation_bar_item_small_label_view
+id navigation_clients
+id navigation_header_container
+id navigation_settings
+id navigation_tethering
+id navigation_update
+id never
+id nickname
+id noScroll
+id no_licenses_text
+id none
+id normal
+id notification_background
+id notification_main_column
+id notification_main_column_container
+id off
+id offloadEnabled
+id on
+id onAttachStateChangeListener
+id onDateChanged
+id open_search_bar_text_view
+id open_search_view_background
+id open_search_view_clear_button
+id open_search_view_content_container
+id open_search_view_divider
+id open_search_view_dummy_toolbar
+id open_search_view_edit_text
+id open_search_view_header_container
+id open_search_view_root
+id open_search_view_scrim
+id open_search_view_search_prefix
+id open_search_view_status_bar_spacer
+id open_search_view_toolbar
+id open_search_view_toolbar_container
+id outline
+id outward
+id packed
+id parallax
+id parent
+id parentPanel
+id parentRelative
+id parent_matrix
+id password
+id password_toggle
+id password_wrapper
+id path
+id pathRelative
+id peekHeight
+id percent
+id persistent_randomized_mac
+id persistent_randomized_mac_wrapper
+id pin
+id position
+id postLayout
+id preferences_detail
+id preferences_header
+id preferences_sliding_pane_layout
+id pressed
+id progress_circular
+id progress_horizontal
+id radio
+id ratio
+id rectangles
+id recycler_view
+id report_drawn
+id reverseSawtooth
+id right
+id rightToLeft
+id right_icon
+id right_side
+id rounded
+id row_index_key
+id rtl
+id save_non_transition_alpha
+id save_overlay_view
+id sawtooth
+id scale
+id screen
+id scroll
+id scrollIndicatorDown
+id scrollIndicatorUp
+id scrollView
+id scrollable
+id search_badge
+id search_bar
+id search_button
+id search_close_btn
+id search_edit_frame
+id search_go_btn
+id search_mag_icon
+id search_plate
+id search_src_text
+id search_voice_btn
+id security
+id security_wrapper
+id seekbar
+id seekbar_value
+id select_dialog_listview
+id selected
+id selection_type
+id share_qr
+id shortcut
+id showCustom
+id showHome
+id showTitle
+id sin
+id skipCollapsed
+id slide
+id snackbar_action
+id snackbar_text
+id snap
+id snapMargins
+id spacer
+id special_effects_controller_view_tag
+id spinner
+id spline
+id split_action_bar
+id spread
+id spread_inside
+id square
+id src_atop
+id src_in
+id src_over
+id ssid
+id ssid_wrapper
+id standard
+id start
+id startHorizontal
+id startToEnd
+id startVertical
+id staticLayout
+id staticPostLayout
+id stats
+id stop
+id stretch
+id submenuarrow
+id submit_area
+id swipeRefresher
+id switchWidget
+id tabMode
+id tag_accessibility_actions
+id tag_accessibility_clickable_spans
+id tag_accessibility_heading
+id tag_accessibility_pane_title
+id tag_on_apply_window_listener
+id tag_on_receive_content_listener
+id tag_on_receive_content_mime_types
+id tag_screen_reader_focusable
+id tag_state_description
+id tag_transition_group
+id tag_unhandled_key_event_manager
+id tag_unhandled_key_listeners
+id tag_window_insets_animation_callback
+id text
+id text2
+id textEnd
+id textSpacerNoButtons
+id textSpacerNoTitle
+id textStart
+id textTop
+id textWatcher
+id text_input_end_icon
+id text_input_error_icon
+id text_input_start_icon
+id textinput_counter
+id textinput_error
+id textinput_helper_text
+id textinput_placeholder
+id textinput_prefix_text
+id textinput_suffix_text
+id time
+id timeout
+id timeout_wrapper
+id title
+id titleDividerNoCustom
+id title_template
+id toggle
+id toolbar
+id top
+id topPanel
+id touch_outside
+id transitionToEnd
+id transitionToStart
+id transition_current_scene
+id transition_layout_save
+id transition_position
+id transition_scene_layoutid_cache
+id transition_transform
+id triangle
+id unblock
+id unchecked
+id uniform
+id unlabeled
+id up
+id useLogo
+id user_config
+id vendor_elements
+id vendor_elements_wrapper
+id view_offset_helper
+id view_tree_lifecycle_owner
+id view_tree_on_back_pressed_dispatcher_owner
+id view_tree_saved_state_registry_owner
+id view_tree_view_model_store_owner
+id visible
+id visible_removing_fragment_view_tag
+id wide
+id withText
+id with_icon
+id withinBounds
+id wrap
+id wrap_content
+integer abc_config_activityDefaultDur
+integer abc_config_activityShortDur
+integer app_bar_elevation_anim_duration
+integer bottom_sheet_slide_duration
+integer cancel_button_image_alpha
+integer config_tooltipAnimTime
+integer design_snackbar_text_max_lines
+integer design_tab_indicator_anim_duration_ms
+integer google_play_services_version
+integer hide_password_duration
+integer m3_badge_max_number
+integer m3_btn_anim_delay_ms
+integer m3_btn_anim_duration_ms
+integer m3_card_anim_delay_ms
+integer m3_card_anim_duration_ms
+integer m3_chip_anim_duration
+integer m3_sys_motion_duration_extra_long1
+integer m3_sys_motion_duration_extra_long2
+integer m3_sys_motion_duration_extra_long3
+integer m3_sys_motion_duration_extra_long4
+integer m3_sys_motion_duration_long1
+integer m3_sys_motion_duration_long2
+integer m3_sys_motion_duration_long3
+integer m3_sys_motion_duration_long4
+integer m3_sys_motion_duration_medium1
+integer m3_sys_motion_duration_medium2
+integer m3_sys_motion_duration_medium3
+integer m3_sys_motion_duration_medium4
+integer m3_sys_motion_duration_short1
+integer m3_sys_motion_duration_short2
+integer m3_sys_motion_duration_short3
+integer m3_sys_motion_duration_short4
+integer m3_sys_motion_path
+integer m3_sys_shape_corner_extra_large_corner_family
+integer m3_sys_shape_corner_extra_small_corner_family
+integer m3_sys_shape_corner_full_corner_family
+integer m3_sys_shape_corner_large_corner_family
+integer m3_sys_shape_corner_medium_corner_family
+integer m3_sys_shape_corner_small_corner_family
+integer material_motion_duration_long_1
+integer material_motion_duration_long_2
+integer material_motion_duration_medium_1
+integer material_motion_duration_medium_2
+integer material_motion_duration_short_1
+integer material_motion_duration_short_2
+integer material_motion_path
+integer mtrl_badge_max_character_count
+integer mtrl_btn_anim_delay_ms
+integer mtrl_btn_anim_duration_ms
+integer mtrl_calendar_header_orientation
+integer mtrl_calendar_selection_text_lines
+integer mtrl_calendar_year_selector_span
+integer mtrl_card_anim_delay_ms
+integer mtrl_card_anim_duration_ms
+integer mtrl_chip_anim_duration
+integer mtrl_switch_thumb_motion_duration
+integer mtrl_switch_thumb_post_morphing_duration
+integer mtrl_switch_thumb_pre_morphing_duration
+integer mtrl_switch_thumb_pressed_duration
+integer mtrl_switch_thumb_viewport_center_coordinate
+integer mtrl_switch_thumb_viewport_size
+integer mtrl_switch_track_viewport_height
+integer mtrl_switch_track_viewport_width
+integer mtrl_tab_indicator_anim_duration_ms
+integer mtrl_view_gone
+integer mtrl_view_invisible
+integer mtrl_view_visible
+integer preferences_detail_pane_weight
+integer preferences_header_pane_weight
+integer show_password_duration
+integer simple_menu_max_units
+integer status_bar_notification_info_maxnum
+interpolator btn_checkbox_checked_mtrl_animation_interpolator_0
+interpolator btn_checkbox_checked_mtrl_animation_interpolator_1
+interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0
+interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1
+interpolator btn_radio_to_off_mtrl_animation_interpolator_0
+interpolator btn_radio_to_on_mtrl_animation_interpolator_0
+interpolator fast_out_slow_in
+interpolator m3_sys_motion_easing_emphasized
+interpolator m3_sys_motion_easing_emphasized_accelerate
+interpolator m3_sys_motion_easing_emphasized_decelerate
+interpolator m3_sys_motion_easing_linear
+interpolator m3_sys_motion_easing_standard
+interpolator m3_sys_motion_easing_standard_accelerate
+interpolator m3_sys_motion_easing_standard_decelerate
+interpolator mtrl_fast_out_linear_in
+interpolator mtrl_fast_out_slow_in
+interpolator mtrl_linear
+interpolator mtrl_linear_out_slow_in
+layout abc_action_bar_title_item
+layout abc_action_bar_up_container
+layout abc_action_menu_item_layout
+layout abc_action_menu_layout
+layout abc_action_mode_bar
+layout abc_action_mode_close_item_material
+layout abc_activity_chooser_view
+layout abc_activity_chooser_view_list_item
+layout abc_alert_dialog_button_bar_material
+layout abc_alert_dialog_material
+layout abc_alert_dialog_title_material
+layout abc_cascading_menu_item_layout
+layout abc_dialog_title_material
+layout abc_expanded_menu_layout
+layout abc_list_menu_item_checkbox
+layout abc_list_menu_item_icon
+layout abc_list_menu_item_layout
+layout abc_list_menu_item_radio
+layout abc_popup_menu_header_item_layout
+layout abc_popup_menu_item_layout
+layout abc_screen_content_include
+layout abc_screen_simple
+layout abc_screen_simple_overlay_action_mode
+layout abc_screen_toolbar
+layout abc_search_dropdown_item_icons_2line
+layout abc_search_view
+layout abc_select_dialog_material
+layout abc_tooltip
+layout activity_main
+layout browser_actions_context_menu_page
+layout browser_actions_context_menu_row
+layout custom_dialog
+layout design_bottom_navigation_item
+layout design_bottom_sheet_dialog
+layout design_layout_snackbar
+layout design_layout_snackbar_include
+layout design_layout_tab_icon
+layout design_layout_tab_text
+layout design_menu_item_action_area
+layout design_navigation_item
+layout design_navigation_item_header
+layout design_navigation_item_separator
+layout design_navigation_item_subheader
+layout design_navigation_menu
+layout design_navigation_menu_item
+layout design_text_input_end_icon
+layout design_text_input_start_icon
+layout dialog_nickname
+layout dialog_wifi_ap
+layout dialog_wps
+layout expand_button
+layout fragment_clients
+layout fragment_ebeg
+layout fragment_tethering
+layout image_frame
+layout ime_base_split_test_activity
+layout ime_secondary_split_test_activity
+layout libraries_social_licenses_license
+layout libraries_social_licenses_license_activity
+layout libraries_social_licenses_license_loading
+layout libraries_social_licenses_license_menu_activity
+layout license_menu_activity_loading
+layout license_menu_activity_no_licenses
+layout listitem_client
+layout listitem_interface
+layout listitem_manage
+layout listitem_repeater
+layout m3_alert_dialog
+layout m3_alert_dialog_actions
+layout m3_alert_dialog_title
+layout m3_auto_complete_simple_item
+layout m3_side_sheet_dialog
+layout material_chip_input_combo
+layout material_clock_display
+layout material_clock_display_divider
+layout material_clock_period_toggle
+layout material_clock_period_toggle_land
+layout material_clockface_textview
+layout material_clockface_view
+layout material_radial_view_group
+layout material_textinput_timepicker
+layout material_time_chip
+layout material_time_input
+layout material_timepicker
+layout material_timepicker_dialog
+layout material_timepicker_textinput_display
+layout mtrl_alert_dialog
+layout mtrl_alert_dialog_actions
+layout mtrl_alert_dialog_title
+layout mtrl_alert_select_dialog_item
+layout mtrl_alert_select_dialog_multichoice
+layout mtrl_alert_select_dialog_singlechoice
+layout mtrl_auto_complete_simple_item
+layout mtrl_calendar_day
+layout mtrl_calendar_day_of_week
+layout mtrl_calendar_days_of_week
+layout mtrl_calendar_horizontal
+layout mtrl_calendar_month
+layout mtrl_calendar_month_labeled
+layout mtrl_calendar_month_navigation
+layout mtrl_calendar_months
+layout mtrl_calendar_vertical
+layout mtrl_calendar_year
+layout mtrl_layout_snackbar
+layout mtrl_layout_snackbar_include
+layout mtrl_navigation_rail_item
+layout mtrl_picker_actions
+layout mtrl_picker_dialog
+layout mtrl_picker_fullscreen
+layout mtrl_picker_header_dialog
+layout mtrl_picker_header_fullscreen
+layout mtrl_picker_header_selection_text
+layout mtrl_picker_header_title_text
+layout mtrl_picker_header_toggle
+layout mtrl_picker_text_input_date
+layout mtrl_picker_text_input_date_range
+layout mtrl_search_bar
+layout mtrl_search_view
+layout notification_action
+layout notification_action_tombstone
+layout notification_template_custom_big
+layout notification_template_icon_group
+layout notification_template_part_chronometer
+layout notification_template_part_time
+layout preference
+layout preference_category
+layout preference_category_material
+layout preference_dialog_edittext
+layout preference_dropdown
+layout preference_dropdown_material
+layout preference_information
+layout preference_information_material
+layout preference_list_fragment
+layout preference_material
+layout preference_recyclerview
+layout preference_simplemenu
+layout preference_widget_checkbox
+layout preference_widget_edittext_autocomplete
+layout preference_widget_material_switch
+layout preference_widget_seekbar
+layout preference_widget_seekbar_material
+layout preference_widget_switch
+layout preference_widget_switch_compat
+layout select_dialog_item_material
+layout select_dialog_multichoice_material
+layout select_dialog_singlechoice_material
+layout simple_menu_item
+layout simple_menu_list
+layout support_simple_spinner_dropdown_item
+menu navigation
+menu popup_client
+menu toolbar_configuration
+menu toolbar_tethering
+mipmap banner
+mipmap ic_launcher
+plurals clients_stats_message_1
+plurals clients_stats_message_2
+plurals clients_stats_message_3
+plurals mtrl_badge_content_description
+plurals notification_connected_devices
+plurals notification_interfaces
+plurals quick_settings_hotspot_secondary_label_num_devices
+plurals tethering_manage_wifi_capabilities
+plurals tethering_manage_wifi_clients
+raw com_android_billingclient_heterodyne_info
+raw com_android_billingclient_registration_info
+raw firebase_common_keep
+raw keep_third_party_licenses
+raw third_party_license_metadata
+raw third_party_licenses
+string abc_action_bar_home_description
+string abc_action_bar_up_description
+string abc_action_menu_overflow_description
+string abc_action_mode_done
+string abc_activity_chooser_view_see_all
+string abc_activitychooserview_choose_application
+string abc_capital_off
+string abc_capital_on
+string abc_menu_alt_shortcut_label
+string abc_menu_ctrl_shortcut_label
+string abc_menu_delete_shortcut_label
+string abc_menu_enter_shortcut_label
+string abc_menu_function_shortcut_label
+string abc_menu_meta_shortcut_label
+string abc_menu_shift_shortcut_label
+string abc_menu_space_shortcut_label
+string abc_menu_sym_shortcut_label
+string abc_prepend_shortcut_label
+string abc_search_hint
+string abc_searchview_description_clear
+string abc_searchview_description_query
+string abc_searchview_description_search
+string abc_searchview_description_submit
+string abc_searchview_description_voice
+string abc_shareactionprovider_share_with
+string abc_shareactionprovider_share_with_application
+string abc_toolbar_collapse_description
+string androidx_startup
+string app_name
+string appbar_scrolling_view_behavior
+string bottom_sheet_behavior
+string bottomsheet_action_collapse
+string bottomsheet_action_expand
+string bottomsheet_action_expand_halfway
+string bottomsheet_drag_handle_clicked
+string bottomsheet_drag_handle_content_description
+string call_notification_answer_action
+string call_notification_answer_video_action
+string call_notification_decline_action
+string call_notification_hang_up_action
+string call_notification_incoming_text
+string call_notification_ongoing_text
+string call_notification_screening_text
+string character_counter_content_description
+string character_counter_overflowed_content_description
+string character_counter_pattern
+string clear_text_end_icon_content_description
+string clients_mac_lookup_unexpected_error
+string clients_nickname_set_to_vendor
+string clients_nickname_title
+string clients_popup_block
+string clients_popup_block_service_inactive
+string clients_popup_nickname
+string clients_popup_stats
+string clients_popup_unblock
+string clients_stats_title
+string com_google_firebase_crashlytics_mapping_file_id
+string common_google_play_services_enable_button
+string common_google_play_services_enable_text
+string common_google_play_services_enable_title
+string common_google_play_services_install_button
+string common_google_play_services_install_text
+string common_google_play_services_install_title
+string common_google_play_services_notification_channel_name
+string common_google_play_services_notification_ticker
+string common_google_play_services_unknown_issue
+string common_google_play_services_unsupported_text
+string common_google_play_services_update_button
+string common_google_play_services_update_text
+string common_google_play_services_update_title
+string common_google_play_services_updating_text
+string common_google_play_services_wear_update_text
+string common_open_on_phone
+string common_signin_button_text
+string common_signin_button_text_long
+string configuration_invalid
+string configuration_rejected
+string configuration_share
+string configuration_view
+string connected_state_failed
+string connected_state_incomplete
+string connected_state_valid
+string copy
+string copy_toast_msg
+string default_web_client_id
+string donations__button_close
+string donations__description
+string donations__google_android_market
+string donations__google_android_market_description
+string donations__google_android_market_donate_button
+string donations__google_android_market_not_supported
+string donations__google_android_market_text
+string donations__thanks_dialog
+string error_a11y_label
+string error_icon_content_description
+string exception_interface_not_found
+string expand_button_title
+string exposed_dropdown_menu_content_description
+string fab_transformation_scrim_behavior
+string fab_transformation_sheet_behavior
+string failure_reason_unknown
+string fallback_menu_item_copy_link
+string fallback_menu_item_open_in_browser
+string fallback_menu_item_share_link
+string firebase_database_url
+string gcm_defaultSenderId
+string google_api_key
+string google_app_id
+string google_crash_reporting_api_key
+string google_storage_bucket
+string hide_bottom_view_on_scroll_behavior
+string icon_content_description
+string item_view_role_description
+string license_content_error
+string license_is_loading
+string license_list_is_loading
+string m3_exceed_max_badge_text_suffix
+string m3_ref_typeface_brand_medium
+string m3_ref_typeface_brand_regular
+string m3_ref_typeface_plain_medium
+string m3_ref_typeface_plain_regular
+string m3_sys_motion_easing_emphasized
+string m3_sys_motion_easing_emphasized_accelerate
+string m3_sys_motion_easing_emphasized_decelerate
+string m3_sys_motion_easing_emphasized_path_data
+string m3_sys_motion_easing_legacy
+string m3_sys_motion_easing_legacy_accelerate
+string m3_sys_motion_easing_legacy_decelerate
+string m3_sys_motion_easing_linear
+string m3_sys_motion_easing_standard
+string m3_sys_motion_easing_standard_accelerate
+string m3_sys_motion_easing_standard_decelerate
+string material_clock_display_divider
+string material_clock_toggle_content_description
+string material_hour_24h_suffix
+string material_hour_selection
+string material_hour_suffix
+string material_minute_selection
+string material_minute_suffix
+string material_motion_easing_accelerated
+string material_motion_easing_decelerated
+string material_motion_easing_emphasized
+string material_motion_easing_linear
+string material_motion_easing_standard
+string material_slider_range_end
+string material_slider_range_start
+string material_slider_value
+string material_timepicker_am
+string material_timepicker_clock_mode_description
+string material_timepicker_hour
+string material_timepicker_minute
+string material_timepicker_pm
+string material_timepicker_select_time
+string material_timepicker_text_input_mode_description
+string mtrl_badge_numberless_content_description
+string mtrl_checkbox_button_icon_path_checked
+string mtrl_checkbox_button_icon_path_group_name
+string mtrl_checkbox_button_icon_path_indeterminate
+string mtrl_checkbox_button_icon_path_name
+string mtrl_checkbox_button_path_checked
+string mtrl_checkbox_button_path_group_name
+string mtrl_checkbox_button_path_name
+string mtrl_checkbox_button_path_unchecked
+string mtrl_checkbox_state_description_checked
+string mtrl_checkbox_state_description_indeterminate
+string mtrl_checkbox_state_description_unchecked
+string mtrl_chip_close_icon_content_description
+string mtrl_exceed_max_badge_number_content_description
+string mtrl_exceed_max_badge_number_suffix
+string mtrl_picker_a11y_next_month
+string mtrl_picker_a11y_prev_month
+string mtrl_picker_announce_current_range_selection
+string mtrl_picker_announce_current_selection
+string mtrl_picker_announce_current_selection_none
+string mtrl_picker_cancel
+string mtrl_picker_confirm
+string mtrl_picker_date_header_selected
+string mtrl_picker_date_header_title
+string mtrl_picker_date_header_unselected
+string mtrl_picker_day_of_week_column_header
+string mtrl_picker_end_date_description
+string mtrl_picker_invalid_format
+string mtrl_picker_invalid_format_example
+string mtrl_picker_invalid_format_use
+string mtrl_picker_invalid_range
+string mtrl_picker_navigate_to_current_year_description
+string mtrl_picker_navigate_to_year_description
+string mtrl_picker_out_of_range
+string mtrl_picker_range_header_only_end_selected
+string mtrl_picker_range_header_only_start_selected
+string mtrl_picker_range_header_selected
+string mtrl_picker_range_header_title
+string mtrl_picker_range_header_unselected
+string mtrl_picker_save
+string mtrl_picker_start_date_description
+string mtrl_picker_text_input_date_hint
+string mtrl_picker_text_input_date_range_end_hint
+string mtrl_picker_text_input_date_range_start_hint
+string mtrl_picker_text_input_day_abbr
+string mtrl_picker_text_input_month_abbr
+string mtrl_picker_text_input_year_abbr
+string mtrl_picker_today_description
+string mtrl_picker_toggle_to_calendar_input_mode
+string mtrl_picker_toggle_to_day_selection
+string mtrl_picker_toggle_to_text_input_mode
+string mtrl_picker_toggle_to_year_selection
+string mtrl_switch_thumb_group_name
+string mtrl_switch_thumb_path_checked
+string mtrl_switch_thumb_path_morphing
+string mtrl_switch_thumb_path_name
+string mtrl_switch_thumb_path_pressed
+string mtrl_switch_thumb_path_unchecked
+string mtrl_switch_track_decoration_path
+string mtrl_switch_track_path
+string mtrl_timepicker_cancel
+string mtrl_timepicker_confirm
+string no_licenses_available
+string noisy_su_failure
+string not_set
+string notification_channel_monitor
+string notification_channel_tethering
+string notification_interfaces_inactive
+string notification_tethering_title
+string oss_license_title
+string password_toggle_content_description
+string path_password_eye
+string path_password_eye_mask_strike_through
+string path_password_eye_mask_visible
+string path_password_strike_through
+string permission_missing
+string preference_copied
+string preferences_license_summary
+string project_id
+string repeater_channel
+string repeater_clean_pog_failure
+string repeater_configure_failure
+string repeater_create_group_failure
+string repeater_failure_disconnected
+string repeater_failure_reason_error
+string repeater_failure_reason_no_service_requests
+string repeater_failure_reason_p2p_unsupported
+string repeater_failure_reason_unsupported_operation
+string repeater_location_off
+string repeater_location_off_configure
+string repeater_missing_location_permissions
+string repeater_p2p_unavailable
+string repeater_p2p_unavailable_enable
+string repeater_remove_group_failure
+string repeater_remove_old_group_failure
+string repeater_set_oc_failure
+string repeater_set_vendor_elements_failure
+string repeater_wps
+string repeater_wps_dialog_pbc
+string repeater_wps_dialog_title
+string repeater_wps_failure
+string repeater_wps_success_keypad
+string repeater_wps_success_pbc
+string search_menu_title
+string searchbar_scrolling_view_behavior
+string searchview_clear_text_content_description
+string searchview_navigation_content_description
+string settings_downstream
+string settings_exit_app
+string settings_help
+string settings_misc
+string settings_misc_donate
+string settings_misc_donate_more
+string settings_misc_donate_summary
+string settings_misc_logcat
+string settings_misc_logcat_summary
+string settings_misc_source
+string settings_misc_source_summary
+string settings_restart_required
+string settings_service_auto_start
+string settings_service_auto_start_summary
+string settings_service_clean
+string settings_service_clean_summary
+string settings_service_dhcp_workaround
+string settings_service_dhcp_workaround_summary
+string settings_service_disable_ipv6
+string settings_service_disable_ipv6_summary
+string settings_service_ip_monitor
+string settings_service_ip_monitor_monitor
+string settings_service_ip_monitor_monitor_root
+string settings_service_ip_monitor_poll
+string settings_service_ip_monitor_poll_root
+string settings_service_masquerade
+string settings_service_masquerade_netd
+string settings_service_masquerade_none
+string settings_service_masquerade_simple
+string settings_service_repeater_safe_mode
+string settings_service_repeater_safe_mode_summary
+string settings_service_repeater_safe_mode_warning
+string settings_service_temp_hotspot_use_system
+string settings_service_temp_hotspot_use_system_summary
+string settings_service_upstream
+string settings_service_upstream_auto
+string settings_service_upstream_monitor
+string settings_service_upstream_monitor_summary
+string settings_service_wifi_lock
+string settings_service_wifi_lock_full
+string settings_service_wifi_lock_high_perf
+string settings_service_wifi_lock_high_perf_v29
+string settings_service_wifi_lock_low_latency
+string settings_service_wifi_lock_none
+string settings_system_tether_offload
+string settings_system_tether_offload_summary
+string settings_upstream
+string settings_upstream_fallback
+string settings_upstream_fallback_auto
+string side_sheet_accessibility_pane_title
+string side_sheet_behavior
+string status_bar_notification_info_overflow
+string summary_collapsed_preference_list
+string tethering_location_off
+string tethering_manage
+string tethering_manage_bluetooth
+string tethering_manage_ethernet
+string tethering_manage_ncm
+string tethering_manage_offload_enabled
+string tethering_manage_usb
+string tethering_manage_wifi
+string tethering_manage_wifi_client_blocked
+string tethering_manage_wifi_copy_mac
+string tethering_manage_wifi_country_code
+string tethering_manage_wifi_feature_ap_mac_randomization
+string tethering_manage_wifi_feature_bridged_ap_concurrency
+string tethering_manage_wifi_feature_sta_ap_concurrency
+string tethering_manage_wifi_feature_sta_bridged_ap_concurrency
+string tethering_manage_wifi_info
+string tethering_manage_wifi_info_timeout_disabled
+string tethering_manage_wifi_info_timeout_enabled
+string tethering_manage_wifi_no_features
+string tethering_manage_wifi_supported_channels
+string tethering_monitor
+string tethering_state_monitored
+string tethering_temp_hotspot
+string tethering_temp_hotspot_failure
+string tethering_temp_hotspot_failure_generic
+string tethering_temp_hotspot_failure_incompatible_mode
+string tethering_temp_hotspot_failure_no_channel
+string tethering_temp_hotspot_failure_tethering_disallowed
+string title_clients
+string title_repeater
+string title_settings
+string title_tethering
+string title_update
+string v7_preference_off
+string v7_preference_on
+string wifi_advanced_mac_address_persistent_randomized
+string wifi_advanced_mac_address_title
+string wifi_allowed_list
+string wifi_ap_choose_G
+string wifi_ap_choose_disabled
+string wifi_blocked_list
+string wifi_bridged_mode_opportunistic_shutdown
+string wifi_client_user_control
+string wifi_hidden_network
+string wifi_hotspot_access_control_title
+string wifi_hotspot_acs_channel_2g
+string wifi_hotspot_acs_channel_5g
+string wifi_hotspot_acs_channel_6g
+string wifi_hotspot_ap_advanced_title
+string wifi_hotspot_ap_band_title
+string wifi_hotspot_auto_off
+string wifi_hotspot_max_channel_bandwidth
+string wifi_hotspot_timeout
+string wifi_hotspot_timeout_bridged
+string wifi_hotspot_timeout_default
+string wifi_ieee_80211ax
+string wifi_ieee_80211be
+string wifi_mac_randomization
+string wifi_mac_randomization_non_persistent
+string wifi_mac_randomization_none
+string wifi_mac_randomization_persistent
+string wifi_max_clients
+string wifi_password
+string wifi_save
+string wifi_security
+string wifi_ssid
+string wifi_ssid_toggle_hex
+string wifi_user_config
+string wifi_vendor_elements
+style AlertDialog_AppCompat
+style AlertDialog_AppCompat_Light
+style Animation_AppCompat_Dialog
+style Animation_AppCompat_DropDownUp
+style Animation_AppCompat_Tooltip
+style Animation_Design_BottomSheetDialog
+style Animation_Material3_BottomSheetDialog
+style Animation_Material3_SideSheetDialog
+style Animation_Material3_SideSheetDialog_Left
+style Animation_Material3_SideSheetDialog_Right
+style Animation_MaterialComponents_BottomSheetDialog
+style Animation_SimpleMenuCenter
+style AppTheme
+style AppTheme_ActionBar
+style AppTheme_Preference_MaterialSwitchPreference
+style Base_AlertDialog_AppCompat
+style Base_AlertDialog_AppCompat_Light
+style Base_Animation_AppCompat_Dialog
+style Base_Animation_AppCompat_DropDownUp
+style Base_Animation_AppCompat_Tooltip
+style Base_CardView
+style Base_DialogWindowTitle_AppCompat
+style Base_DialogWindowTitleBackground_AppCompat
+style Base_MaterialAlertDialog_MaterialComponents_Title_Icon
+style Base_MaterialAlertDialog_MaterialComponents_Title_Panel
+style Base_MaterialAlertDialog_MaterialComponents_Title_Text
+style Base_TextAppearance_AppCompat
+style Base_TextAppearance_AppCompat_Body1
+style Base_TextAppearance_AppCompat_Body2
+style Base_TextAppearance_AppCompat_Button
+style Base_TextAppearance_AppCompat_Caption
+style Base_TextAppearance_AppCompat_Display1
+style Base_TextAppearance_AppCompat_Display2
+style Base_TextAppearance_AppCompat_Display3
+style Base_TextAppearance_AppCompat_Display4
+style Base_TextAppearance_AppCompat_Headline
+style Base_TextAppearance_AppCompat_Inverse
+style Base_TextAppearance_AppCompat_Large
+style Base_TextAppearance_AppCompat_Large_Inverse
+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
+style Base_TextAppearance_AppCompat_Medium
+style Base_TextAppearance_AppCompat_Medium_Inverse
+style Base_TextAppearance_AppCompat_Menu
+style Base_TextAppearance_AppCompat_SearchResult
+style Base_TextAppearance_AppCompat_SearchResult_Subtitle
+style Base_TextAppearance_AppCompat_SearchResult_Title
+style Base_TextAppearance_AppCompat_Small
+style Base_TextAppearance_AppCompat_Small_Inverse
+style Base_TextAppearance_AppCompat_Subhead
+style Base_TextAppearance_AppCompat_Subhead_Inverse
+style Base_TextAppearance_AppCompat_Title
+style Base_TextAppearance_AppCompat_Title_Inverse
+style Base_TextAppearance_AppCompat_Tooltip
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
+style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
+style Base_TextAppearance_AppCompat_Widget_ActionMode_Title
+style Base_TextAppearance_AppCompat_Widget_Button
+style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
+style Base_TextAppearance_AppCompat_Widget_Button_Colored
+style Base_TextAppearance_AppCompat_Widget_Button_Inverse
+style Base_TextAppearance_AppCompat_Widget_DropDownItem
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
+style Base_TextAppearance_AppCompat_Widget_Switch
+style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
+style Base_TextAppearance_Material3_Search
+style Base_TextAppearance_MaterialComponents_Badge
+style Base_TextAppearance_MaterialComponents_Button
+style Base_TextAppearance_MaterialComponents_Headline6
+style Base_TextAppearance_MaterialComponents_Subtitle2
+style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
+style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
+style Base_TextAppearance_Widget_AppCompat_Toolbar_Title
+style Base_Theme_AppCompat
+style Base_Theme_AppCompat_CompactMenu
+style Base_Theme_AppCompat_Dialog
+style Base_Theme_AppCompat_Dialog_Alert
+style Base_Theme_AppCompat_Dialog_FixedSize
+style Base_Theme_AppCompat_Dialog_MinWidth
+style Base_Theme_AppCompat_DialogWhenLarge
+style Base_Theme_AppCompat_Light
+style Base_Theme_AppCompat_Light_DarkActionBar
+style Base_Theme_AppCompat_Light_Dialog
+style Base_Theme_AppCompat_Light_Dialog_Alert
+style Base_Theme_AppCompat_Light_Dialog_FixedSize
+style Base_Theme_AppCompat_Light_Dialog_MinWidth
+style Base_Theme_AppCompat_Light_DialogWhenLarge
+style Base_Theme_Material3_Dark
+style Base_Theme_Material3_Dark_BottomSheetDialog
+style Base_Theme_Material3_Dark_Dialog
+style Base_Theme_Material3_Dark_Dialog_FixedSize
+style Base_Theme_Material3_Dark_DialogWhenLarge
+style Base_Theme_Material3_Dark_SideSheetDialog
+style Base_Theme_Material3_Light
+style Base_Theme_Material3_Light_BottomSheetDialog
+style Base_Theme_Material3_Light_Dialog
+style Base_Theme_Material3_Light_Dialog_FixedSize
+style Base_Theme_Material3_Light_DialogWhenLarge
+style Base_Theme_Material3_Light_SideSheetDialog
+style Base_Theme_MaterialComponents
+style Base_Theme_MaterialComponents_Bridge
+style Base_Theme_MaterialComponents_CompactMenu
+style Base_Theme_MaterialComponents_Dialog
+style Base_Theme_MaterialComponents_Dialog_Alert
+style Base_Theme_MaterialComponents_Dialog_Bridge
+style Base_Theme_MaterialComponents_Dialog_FixedSize
+style Base_Theme_MaterialComponents_Dialog_MinWidth
+style Base_Theme_MaterialComponents_DialogWhenLarge
+style Base_Theme_MaterialComponents_Light
+style Base_Theme_MaterialComponents_Light_Bridge
+style Base_Theme_MaterialComponents_Light_DarkActionBar
+style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
+style Base_Theme_MaterialComponents_Light_Dialog
+style Base_Theme_MaterialComponents_Light_Dialog_Alert
+style Base_Theme_MaterialComponents_Light_Dialog_Bridge
+style Base_Theme_MaterialComponents_Light_Dialog_FixedSize
+style Base_Theme_MaterialComponents_Light_Dialog_MinWidth
+style Base_Theme_MaterialComponents_Light_DialogWhenLarge
+style Base_ThemeOverlay_AppCompat
+style Base_ThemeOverlay_AppCompat_ActionBar
+style Base_ThemeOverlay_AppCompat_Dark
+style Base_ThemeOverlay_AppCompat_Dark_ActionBar
+style Base_ThemeOverlay_AppCompat_Dialog
+style Base_ThemeOverlay_AppCompat_Dialog_Alert
+style Base_ThemeOverlay_AppCompat_Light
+style Base_ThemeOverlay_Material3_AutoCompleteTextView
+style Base_ThemeOverlay_Material3_BottomSheetDialog
+style Base_ThemeOverlay_Material3_Dialog
+style Base_ThemeOverlay_Material3_SideSheetDialog
+style Base_ThemeOverlay_Material3_TextInputEditText
+style Base_ThemeOverlay_MaterialComponents_Dialog
+style Base_ThemeOverlay_MaterialComponents_Dialog_Alert
+style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework
+style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework
+style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog
+style Base_V14_Theme_Material3_Dark
+style Base_V14_Theme_Material3_Dark_BottomSheetDialog
+style Base_V14_Theme_Material3_Dark_Dialog
+style Base_V14_Theme_Material3_Dark_SideSheetDialog
+style Base_V14_Theme_Material3_Light
+style Base_V14_Theme_Material3_Light_BottomSheetDialog
+style Base_V14_Theme_Material3_Light_Dialog
+style Base_V14_Theme_Material3_Light_SideSheetDialog
+style Base_V14_Theme_MaterialComponents
+style Base_V14_Theme_MaterialComponents_Bridge
+style Base_V14_Theme_MaterialComponents_Dialog
+style Base_V14_Theme_MaterialComponents_Dialog_Bridge
+style Base_V14_Theme_MaterialComponents_Light
+style Base_V14_Theme_MaterialComponents_Light_Bridge
+style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
+style Base_V14_Theme_MaterialComponents_Light_Dialog
+style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge
+style Base_V14_ThemeOverlay_Material3_BottomSheetDialog
+style Base_V14_ThemeOverlay_Material3_SideSheetDialog
+style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog
+style Base_V14_ThemeOverlay_MaterialComponents_Dialog
+style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
+style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog
+style Base_V14_Widget_MaterialComponents_AutoCompleteTextView
+style Base_V21_Theme_AppCompat
+style Base_V21_Theme_AppCompat_Dialog
+style Base_V21_Theme_AppCompat_Light
+style Base_V21_Theme_AppCompat_Light_Dialog
+style Base_V21_Theme_MaterialComponents
+style Base_V21_Theme_MaterialComponents_Dialog
+style Base_V21_Theme_MaterialComponents_Light
+style Base_V21_Theme_MaterialComponents_Light_Dialog
+style Base_V21_ThemeOverlay_AppCompat_Dialog
+style Base_V21_ThemeOverlay_Material3_BottomSheetDialog
+style Base_V21_ThemeOverlay_Material3_SideSheetDialog
+style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog
+style Base_V22_Theme_AppCompat
+style Base_V22_Theme_AppCompat_Light
+style Base_V23_Theme_AppCompat
+style Base_V23_Theme_AppCompat_Light
+style Base_V24_Theme_Material3_Dark
+style Base_V24_Theme_Material3_Dark_Dialog
+style Base_V24_Theme_Material3_Light
+style Base_V24_Theme_Material3_Light_Dialog
+style Base_V26_Theme_AppCompat
+style Base_V26_Theme_AppCompat_Light
+style Base_V26_Widget_AppCompat_Toolbar
+style Base_V28_Theme_AppCompat
+style Base_V28_Theme_AppCompat_Light
+style Base_V7_Theme_AppCompat
+style Base_V7_Theme_AppCompat_Dialog
+style Base_V7_Theme_AppCompat_Light
+style Base_V7_Theme_AppCompat_Light_Dialog
+style Base_V7_ThemeOverlay_AppCompat_Dialog
+style Base_V7_Widget_AppCompat_AutoCompleteTextView
+style Base_V7_Widget_AppCompat_EditText
+style Base_V7_Widget_AppCompat_Toolbar
+style Base_Widget_AppCompat_ActionBar
+style Base_Widget_AppCompat_ActionBar_Solid
+style Base_Widget_AppCompat_ActionBar_TabBar
+style Base_Widget_AppCompat_ActionBar_TabText
+style Base_Widget_AppCompat_ActionBar_TabView
+style Base_Widget_AppCompat_ActionButton
+style Base_Widget_AppCompat_ActionButton_CloseMode
+style Base_Widget_AppCompat_ActionButton_Overflow
+style Base_Widget_AppCompat_ActionMode
+style Base_Widget_AppCompat_ActivityChooserView
+style Base_Widget_AppCompat_AutoCompleteTextView
+style Base_Widget_AppCompat_Button
+style Base_Widget_AppCompat_Button_Borderless
+style Base_Widget_AppCompat_Button_Borderless_Colored
+style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
+style Base_Widget_AppCompat_Button_Colored
+style Base_Widget_AppCompat_Button_Small
+style Base_Widget_AppCompat_ButtonBar
+style Base_Widget_AppCompat_ButtonBar_AlertDialog
+style Base_Widget_AppCompat_CompoundButton_CheckBox
+style Base_Widget_AppCompat_CompoundButton_RadioButton
+style Base_Widget_AppCompat_CompoundButton_Switch
+style Base_Widget_AppCompat_DrawerArrowToggle
+style Base_Widget_AppCompat_DrawerArrowToggle_Common
+style Base_Widget_AppCompat_DropDownItem_Spinner
+style Base_Widget_AppCompat_EditText
+style Base_Widget_AppCompat_ImageButton
+style Base_Widget_AppCompat_Light_ActionBar
+style Base_Widget_AppCompat_Light_ActionBar_Solid
+style Base_Widget_AppCompat_Light_ActionBar_TabBar
+style Base_Widget_AppCompat_Light_ActionBar_TabText
+style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
+style Base_Widget_AppCompat_Light_ActionBar_TabView
+style Base_Widget_AppCompat_Light_PopupMenu
+style Base_Widget_AppCompat_Light_PopupMenu_Overflow
+style Base_Widget_AppCompat_ListMenuView
+style Base_Widget_AppCompat_ListPopupWindow
+style Base_Widget_AppCompat_ListView
+style Base_Widget_AppCompat_ListView_DropDown
+style Base_Widget_AppCompat_ListView_Menu
+style Base_Widget_AppCompat_PopupMenu
+style Base_Widget_AppCompat_PopupMenu_Overflow
+style Base_Widget_AppCompat_PopupWindow
+style Base_Widget_AppCompat_ProgressBar
+style Base_Widget_AppCompat_ProgressBar_Horizontal
+style Base_Widget_AppCompat_RatingBar
+style Base_Widget_AppCompat_RatingBar_Indicator
+style Base_Widget_AppCompat_RatingBar_Small
+style Base_Widget_AppCompat_SearchView
+style Base_Widget_AppCompat_SearchView_ActionBar
+style Base_Widget_AppCompat_SeekBar
+style Base_Widget_AppCompat_SeekBar_Discrete
+style Base_Widget_AppCompat_Spinner
+style Base_Widget_AppCompat_Spinner_Underlined
+style Base_Widget_AppCompat_TextView
+style Base_Widget_AppCompat_TextView_SpinnerItem
+style Base_Widget_AppCompat_Toolbar
+style Base_Widget_AppCompat_Toolbar_Button_Navigation
+style Base_Widget_Design_TabLayout
+style Base_Widget_Material3_ActionBar_Solid
+style Base_Widget_Material3_ActionMode
+style Base_Widget_Material3_BottomNavigationView
+style Base_Widget_Material3_CardView
+style Base_Widget_Material3_Chip
+style Base_Widget_Material3_CollapsingToolbar
+style Base_Widget_Material3_CompoundButton_CheckBox
+style Base_Widget_Material3_CompoundButton_RadioButton
+style Base_Widget_Material3_CompoundButton_Switch
+style Base_Widget_Material3_ExtendedFloatingActionButton
+style Base_Widget_Material3_ExtendedFloatingActionButton_Icon
+style Base_Widget_Material3_FloatingActionButton
+style Base_Widget_Material3_FloatingActionButton_Large
+style Base_Widget_Material3_FloatingActionButton_Small
+style Base_Widget_Material3_Light_ActionBar_Solid
+style Base_Widget_Material3_MaterialCalendar_NavigationButton
+style Base_Widget_Material3_Snackbar
+style Base_Widget_Material3_TabLayout
+style Base_Widget_Material3_TabLayout_OnSurface
+style Base_Widget_Material3_TabLayout_Secondary
+style Base_Widget_MaterialComponents_AutoCompleteTextView
+style Base_Widget_MaterialComponents_CheckedTextView
+style Base_Widget_MaterialComponents_Chip
+style Base_Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton
+style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton
+style Base_Widget_MaterialComponents_PopupMenu
+style Base_Widget_MaterialComponents_PopupMenu_ContextMenu
+style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow
+style Base_Widget_MaterialComponents_PopupMenu_Overflow
+style Base_Widget_MaterialComponents_Slider
+style Base_Widget_MaterialComponents_Snackbar
+style Base_Widget_MaterialComponents_TextInputEditText
+style Base_Widget_MaterialComponents_TextInputLayout
+style Base_Widget_MaterialComponents_TextView
+style BasePreferenceThemeOverlay
+style CardView
+style CardView_Dark
+style CardView_Light
+style MaterialAlertDialog_Material3
+style MaterialAlertDialog_Material3_Animation
+style MaterialAlertDialog_Material3_Body_Text
+style MaterialAlertDialog_Material3_Body_Text_CenterStacked
+style MaterialAlertDialog_Material3_Title_Icon
+style MaterialAlertDialog_Material3_Title_Icon_CenterStacked
+style MaterialAlertDialog_Material3_Title_Panel
+style MaterialAlertDialog_Material3_Title_Panel_CenterStacked
+style MaterialAlertDialog_Material3_Title_Text
+style MaterialAlertDialog_Material3_Title_Text_CenterStacked
+style MaterialAlertDialog_MaterialComponents
+style MaterialAlertDialog_MaterialComponents_Body_Text
+style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar
+style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner
+style MaterialAlertDialog_MaterialComponents_Title_Icon
+style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked
+style MaterialAlertDialog_MaterialComponents_Title_Panel
+style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked
+style MaterialAlertDialog_MaterialComponents_Title_Text
+style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked
+style Platform_AppCompat
+style Platform_AppCompat_Light
+style Platform_MaterialComponents
+style Platform_MaterialComponents_Dialog
+style Platform_MaterialComponents_Light
+style Platform_MaterialComponents_Light_Dialog
+style Platform_ThemeOverlay_AppCompat
+style Platform_ThemeOverlay_AppCompat_Dark
+style Platform_ThemeOverlay_AppCompat_Light
+style Platform_V21_AppCompat
+style Platform_V21_AppCompat_Light
+style Platform_V25_AppCompat
+style Platform_V25_AppCompat_Light
+style Platform_Widget_AppCompat_Spinner
+style Preference
+style Preference_Category
+style Preference_Category_Material
+style Preference_CheckBoxPreference
+style Preference_CheckBoxPreference_Material
+style Preference_DialogPreference
+style Preference_DialogPreference_EditTextPreference
+style Preference_DialogPreference_EditTextPreference_Material
+style Preference_DialogPreference_Material
+style Preference_DropDown
+style Preference_DropDown_Material
+style Preference_Information
+style Preference_Information_Material
+style Preference_Material
+style Preference_PreferenceScreen
+style Preference_PreferenceScreen_Material
+style Preference_SeekBarPreference
+style Preference_SeekBarPreference_Material
+style Preference_SimpleMenuPreference
+style Preference_SimpleMenuPreference_Popup
+style Preference_SwitchPreference
+style Preference_SwitchPreference_Material
+style Preference_SwitchPreferenceCompat
+style Preference_SwitchPreferenceCompat_Material
+style PreferenceCategoryTitleTextStyle
+style PreferenceFragment
+style PreferenceFragment_Material
+style PreferenceFragmentList
+style PreferenceFragmentList_Material
+style PreferenceSummaryTextStyle
+style PreferenceThemeOverlay
+style PreferenceThemeOverlay_v14
+style PreferenceThemeOverlay_v14_Material
+style RtlOverlay_DialogWindowTitle_AppCompat
+style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
+style RtlOverlay_Widget_AppCompat_DialogTitle_Icon
+style RtlOverlay_Widget_AppCompat_PopupMenuItem
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
+style RtlOverlay_Widget_AppCompat_Search_DropDown
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Query
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Text
+style RtlOverlay_Widget_AppCompat_SearchView_MagIcon
+style RtlUnderlay_Widget_AppCompat_ActionButton
+style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
+style ShapeAppearance_M3_Comp_Badge_Large_Shape
+style ShapeAppearance_M3_Comp_Badge_Shape
+style ShapeAppearance_M3_Comp_BottomAppBar_Container_Shape
+style ShapeAppearance_M3_Comp_DatePicker_Modal_Date_Container_Shape
+style ShapeAppearance_M3_Comp_FilledButton_Container_Shape
+style ShapeAppearance_M3_Comp_NavigationBar_ActiveIndicator_Shape
+style ShapeAppearance_M3_Comp_NavigationBar_Container_Shape
+style ShapeAppearance_M3_Comp_NavigationDrawer_ActiveIndicator_Shape
+style ShapeAppearance_M3_Comp_NavigationRail_ActiveIndicator_Shape
+style ShapeAppearance_M3_Comp_NavigationRail_Container_Shape
+style ShapeAppearance_M3_Comp_SearchBar_Avatar_Shape
+style ShapeAppearance_M3_Comp_SearchBar_Container_Shape
+style ShapeAppearance_M3_Comp_SearchView_FullScreen_Container_Shape
+style ShapeAppearance_M3_Comp_Sheet_Side_Docked_Container_Shape
+style ShapeAppearance_M3_Comp_Switch_Handle_Shape
+style ShapeAppearance_M3_Comp_Switch_StateLayer_Shape
+style ShapeAppearance_M3_Comp_Switch_Track_Shape
+style ShapeAppearance_M3_Comp_TextButton_Container_Shape
+style ShapeAppearance_M3_Sys_Shape_Corner_ExtraLarge
+style ShapeAppearance_M3_Sys_Shape_Corner_ExtraSmall
+style ShapeAppearance_M3_Sys_Shape_Corner_Full
+style ShapeAppearance_M3_Sys_Shape_Corner_Large
+style ShapeAppearance_M3_Sys_Shape_Corner_Medium
+style ShapeAppearance_M3_Sys_Shape_Corner_None
+style ShapeAppearance_M3_Sys_Shape_Corner_Small
+style ShapeAppearance_Material3_Corner_ExtraLarge
+style ShapeAppearance_Material3_Corner_ExtraSmall
+style ShapeAppearance_Material3_Corner_Full
+style ShapeAppearance_Material3_Corner_Large
+style ShapeAppearance_Material3_Corner_Medium
+style ShapeAppearance_Material3_Corner_None
+style ShapeAppearance_Material3_Corner_Small
+style ShapeAppearance_Material3_LargeComponent
+style ShapeAppearance_Material3_MediumComponent
+style ShapeAppearance_Material3_NavigationBarView_ActiveIndicator
+style ShapeAppearance_Material3_SmallComponent
+style ShapeAppearance_Material3_Tooltip
+style ShapeAppearance_MaterialComponents
+style ShapeAppearance_MaterialComponents_Badge
+style ShapeAppearance_MaterialComponents_LargeComponent
+style ShapeAppearance_MaterialComponents_MediumComponent
+style ShapeAppearance_MaterialComponents_SmallComponent
+style ShapeAppearance_MaterialComponents_Tooltip
+style ShapeAppearanceOverlay_Material3_Button
+style ShapeAppearanceOverlay_Material3_Chip
+style ShapeAppearanceOverlay_Material3_Corner_Bottom
+style ShapeAppearanceOverlay_Material3_Corner_Left
+style ShapeAppearanceOverlay_Material3_Corner_Right
+style ShapeAppearanceOverlay_Material3_Corner_Top
+style ShapeAppearanceOverlay_Material3_FloatingActionButton
+style ShapeAppearanceOverlay_Material3_NavigationView_Item
+style ShapeAppearanceOverlay_Material3_SearchBar
+style ShapeAppearanceOverlay_Material3_SearchView
+style ShapeAppearanceOverlay_MaterialAlertDialog_Material3
+style ShapeAppearanceOverlay_MaterialComponents_BottomSheet
+style ShapeAppearanceOverlay_MaterialComponents_Chip
+style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton
+style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton
+style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day
+style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen
+style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year
+style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox
+style TextAppearance_AppCompat
+style TextAppearance_AppCompat_Body1
+style TextAppearance_AppCompat_Body2
+style TextAppearance_AppCompat_Button
+style TextAppearance_AppCompat_Caption
+style TextAppearance_AppCompat_Display1
+style TextAppearance_AppCompat_Display2
+style TextAppearance_AppCompat_Display3
+style TextAppearance_AppCompat_Display4
+style TextAppearance_AppCompat_Headline
+style TextAppearance_AppCompat_Inverse
+style TextAppearance_AppCompat_Large
+style TextAppearance_AppCompat_Large_Inverse
+style TextAppearance_AppCompat_Light_SearchResult_Subtitle
+style TextAppearance_AppCompat_Light_SearchResult_Title
+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
+style TextAppearance_AppCompat_Medium
+style TextAppearance_AppCompat_Medium_Inverse
+style TextAppearance_AppCompat_Menu
+style TextAppearance_AppCompat_SearchResult_Subtitle
+style TextAppearance_AppCompat_SearchResult_Title
+style TextAppearance_AppCompat_Small
+style TextAppearance_AppCompat_Small_Inverse
+style TextAppearance_AppCompat_Subhead
+style TextAppearance_AppCompat_Subhead_Inverse
+style TextAppearance_AppCompat_Title
+style TextAppearance_AppCompat_Title_Inverse
+style TextAppearance_AppCompat_Tooltip
+style TextAppearance_AppCompat_Widget_ActionBar_Menu
+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle
+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
+style TextAppearance_AppCompat_Widget_ActionBar_Title
+style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle
+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
+style TextAppearance_AppCompat_Widget_ActionMode_Title
+style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
+style TextAppearance_AppCompat_Widget_Button
+style TextAppearance_AppCompat_Widget_Button_Borderless_Colored
+style TextAppearance_AppCompat_Widget_Button_Colored
+style TextAppearance_AppCompat_Widget_Button_Inverse
+style TextAppearance_AppCompat_Widget_DropDownItem
+style TextAppearance_AppCompat_Widget_PopupMenu_Header
+style TextAppearance_AppCompat_Widget_PopupMenu_Large
+style TextAppearance_AppCompat_Widget_PopupMenu_Small
+style TextAppearance_AppCompat_Widget_Switch
+style TextAppearance_AppCompat_Widget_TextView_SpinnerItem
+style TextAppearance_Compat_Notification
+style TextAppearance_Compat_Notification_Info
+style TextAppearance_Compat_Notification_Line2
+style TextAppearance_Compat_Notification_Time
+style TextAppearance_Compat_Notification_Title
+style TextAppearance_Design_CollapsingToolbar_Expanded
+style TextAppearance_Design_Counter
+style TextAppearance_Design_Counter_Overflow
+style TextAppearance_Design_Error
+style TextAppearance_Design_HelperText
+style TextAppearance_Design_Hint
+style TextAppearance_Design_Placeholder
+style TextAppearance_Design_Prefix
+style TextAppearance_Design_Snackbar_Message
+style TextAppearance_Design_Suffix
+style TextAppearance_Design_Tab
+style TextAppearance_M3_Sys_Typescale_BodyLarge
+style TextAppearance_M3_Sys_Typescale_BodyMedium
+style TextAppearance_M3_Sys_Typescale_BodySmall
+style TextAppearance_M3_Sys_Typescale_DisplayLarge
+style TextAppearance_M3_Sys_Typescale_DisplayMedium
+style TextAppearance_M3_Sys_Typescale_DisplaySmall
+style TextAppearance_M3_Sys_Typescale_HeadlineLarge
+style TextAppearance_M3_Sys_Typescale_HeadlineMedium
+style TextAppearance_M3_Sys_Typescale_HeadlineSmall
+style TextAppearance_M3_Sys_Typescale_LabelLarge
+style TextAppearance_M3_Sys_Typescale_LabelMedium
+style TextAppearance_M3_Sys_Typescale_LabelSmall
+style TextAppearance_M3_Sys_Typescale_TitleLarge
+style TextAppearance_M3_Sys_Typescale_TitleMedium
+style TextAppearance_M3_Sys_Typescale_TitleSmall
+style TextAppearance_Material3_ActionBar_Subtitle
+style TextAppearance_Material3_ActionBar_Title
+style TextAppearance_Material3_BodyLarge
+style TextAppearance_Material3_BodyMedium
+style TextAppearance_Material3_BodySmall
+style TextAppearance_Material3_DisplayLarge
+style TextAppearance_Material3_DisplayMedium
+style TextAppearance_Material3_DisplaySmall
+style TextAppearance_Material3_HeadlineLarge
+style TextAppearance_Material3_HeadlineMedium
+style TextAppearance_Material3_HeadlineSmall
+style TextAppearance_Material3_LabelLarge
+style TextAppearance_Material3_LabelMedium
+style TextAppearance_Material3_LabelSmall
+style TextAppearance_Material3_MaterialTimePicker_Title
+style TextAppearance_Material3_SearchBar
+style TextAppearance_Material3_SearchView
+style TextAppearance_Material3_SearchView_Prefix
+style TextAppearance_Material3_TitleLarge
+style TextAppearance_Material3_TitleMedium
+style TextAppearance_Material3_TitleSmall
+style TextAppearance_MaterialComponents_Badge
+style TextAppearance_MaterialComponents_Body1
+style TextAppearance_MaterialComponents_Body2
+style TextAppearance_MaterialComponents_Button
+style TextAppearance_MaterialComponents_Caption
+style TextAppearance_MaterialComponents_Chip
+style TextAppearance_MaterialComponents_Headline1
+style TextAppearance_MaterialComponents_Headline2
+style TextAppearance_MaterialComponents_Headline3
+style TextAppearance_MaterialComponents_Headline4
+style TextAppearance_MaterialComponents_Headline5
+style TextAppearance_MaterialComponents_Headline6
+style TextAppearance_MaterialComponents_Overline
+style TextAppearance_MaterialComponents_Subtitle1
+style TextAppearance_MaterialComponents_Subtitle2
+style TextAppearance_MaterialComponents_TimePicker_Title
+style TextAppearance_MaterialComponents_Tooltip
+style TextAppearance_Widget_AppCompat_ExpandedMenu_Item
+style TextAppearance_Widget_AppCompat_Toolbar_Subtitle
+style TextAppearance_Widget_AppCompat_Toolbar_Title
+style Theme_AppCompat
+style Theme_AppCompat_CompactMenu
+style Theme_AppCompat_DayNight
+style Theme_AppCompat_DayNight_DarkActionBar
+style Theme_AppCompat_DayNight_Dialog
+style Theme_AppCompat_DayNight_Dialog_Alert
+style Theme_AppCompat_DayNight_Dialog_MinWidth
+style Theme_AppCompat_DayNight_DialogWhenLarge
+style Theme_AppCompat_DayNight_NoActionBar
+style Theme_AppCompat_Dialog
+style Theme_AppCompat_Dialog_Alert
+style Theme_AppCompat_Dialog_MinWidth
+style Theme_AppCompat_DialogWhenLarge
+style Theme_AppCompat_Empty
+style Theme_AppCompat_Light
+style Theme_AppCompat_Light_DarkActionBar
+style Theme_AppCompat_Light_Dialog
+style Theme_AppCompat_Light_Dialog_Alert
+style Theme_AppCompat_Light_Dialog_MinWidth
+style Theme_AppCompat_Light_DialogWhenLarge
+style Theme_AppCompat_Light_NoActionBar
+style Theme_AppCompat_NoActionBar
+style Theme_Design
+style Theme_Design_BottomSheetDialog
+style Theme_Design_Light
+style Theme_Design_Light_BottomSheetDialog
+style Theme_Design_Light_NoActionBar
+style Theme_Design_NoActionBar
+style Theme_Material3_Dark
+style Theme_Material3_Dark_BottomSheetDialog
+style Theme_Material3_Dark_Dialog
+style Theme_Material3_Dark_Dialog_Alert
+style Theme_Material3_Dark_Dialog_MinWidth
+style Theme_Material3_Dark_DialogWhenLarge
+style Theme_Material3_Dark_NoActionBar
+style Theme_Material3_Dark_SideSheetDialog
+style Theme_Material3_DayNight
+style Theme_Material3_DayNight_BottomSheetDialog
+style Theme_Material3_DayNight_Dialog
+style Theme_Material3_DayNight_Dialog_Alert
+style Theme_Material3_DayNight_Dialog_MinWidth
+style Theme_Material3_DayNight_DialogWhenLarge
+style Theme_Material3_DayNight_NoActionBar
+style Theme_Material3_DayNight_SideSheetDialog
+style Theme_Material3_DynamicColors_Dark
+style Theme_Material3_DynamicColors_DayNight
+style Theme_Material3_DynamicColors_Light
+style Theme_Material3_Light
+style Theme_Material3_Light_BottomSheetDialog
+style Theme_Material3_Light_Dialog
+style Theme_Material3_Light_Dialog_Alert
+style Theme_Material3_Light_Dialog_MinWidth
+style Theme_Material3_Light_DialogWhenLarge
+style Theme_Material3_Light_NoActionBar
+style Theme_Material3_Light_SideSheetDialog
+style Theme_MaterialComponents
+style Theme_MaterialComponents_BottomSheetDialog
+style Theme_MaterialComponents_Bridge
+style Theme_MaterialComponents_CompactMenu
+style Theme_MaterialComponents_DayNight
+style Theme_MaterialComponents_DayNight_BottomSheetDialog
+style Theme_MaterialComponents_DayNight_Bridge
+style Theme_MaterialComponents_DayNight_DarkActionBar
+style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge
+style Theme_MaterialComponents_DayNight_Dialog
+style Theme_MaterialComponents_DayNight_Dialog_Alert
+style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge
+style Theme_MaterialComponents_DayNight_Dialog_Bridge
+style Theme_MaterialComponents_DayNight_Dialog_FixedSize
+style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge
+style Theme_MaterialComponents_DayNight_Dialog_MinWidth
+style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge
+style Theme_MaterialComponents_DayNight_DialogWhenLarge
+style Theme_MaterialComponents_DayNight_NoActionBar
+style Theme_MaterialComponents_DayNight_NoActionBar_Bridge
+style Theme_MaterialComponents_Dialog
+style Theme_MaterialComponents_Dialog_Alert
+style Theme_MaterialComponents_Dialog_Alert_Bridge
+style Theme_MaterialComponents_Dialog_Bridge
+style Theme_MaterialComponents_Dialog_FixedSize
+style Theme_MaterialComponents_Dialog_FixedSize_Bridge
+style Theme_MaterialComponents_Dialog_MinWidth
+style Theme_MaterialComponents_Dialog_MinWidth_Bridge
+style Theme_MaterialComponents_DialogWhenLarge
+style Theme_MaterialComponents_Light
+style Theme_MaterialComponents_Light_BottomSheetDialog
+style Theme_MaterialComponents_Light_Bridge
+style Theme_MaterialComponents_Light_DarkActionBar
+style Theme_MaterialComponents_Light_DarkActionBar_Bridge
+style Theme_MaterialComponents_Light_Dialog
+style Theme_MaterialComponents_Light_Dialog_Alert
+style Theme_MaterialComponents_Light_Dialog_Alert_Bridge
+style Theme_MaterialComponents_Light_Dialog_Bridge
+style Theme_MaterialComponents_Light_Dialog_FixedSize
+style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge
+style Theme_MaterialComponents_Light_Dialog_MinWidth
+style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge
+style Theme_MaterialComponents_Light_DialogWhenLarge
+style Theme_MaterialComponents_Light_NoActionBar
+style Theme_MaterialComponents_Light_NoActionBar_Bridge
+style Theme_MaterialComponents_NoActionBar
+style Theme_MaterialComponents_NoActionBar_Bridge
+style ThemeOverlay_AppCompat
+style ThemeOverlay_AppCompat_ActionBar
+style ThemeOverlay_AppCompat_Dark
+style ThemeOverlay_AppCompat_Dark_ActionBar
+style ThemeOverlay_AppCompat_DayNight
+style ThemeOverlay_AppCompat_DayNight_ActionBar
+style ThemeOverlay_AppCompat_Dialog
+style ThemeOverlay_AppCompat_Dialog_Alert
+style ThemeOverlay_AppCompat_Light
+style ThemeOverlay_Design_TextInputEditText
+style ThemeOverlay_Material3
+style ThemeOverlay_Material3_ActionBar
+style ThemeOverlay_Material3_AutoCompleteTextView
+style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox
+style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox_Dense
+style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox
+style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox_Dense
+style ThemeOverlay_Material3_BottomAppBar
+style ThemeOverlay_Material3_BottomAppBar_Legacy
+style ThemeOverlay_Material3_BottomNavigationView
+style ThemeOverlay_Material3_BottomSheetDialog
+style ThemeOverlay_Material3_Button
+style ThemeOverlay_Material3_Button_ElevatedButton
+style ThemeOverlay_Material3_Button_IconButton
+style ThemeOverlay_Material3_Button_IconButton_Filled
+style ThemeOverlay_Material3_Button_IconButton_Filled_Tonal
+style ThemeOverlay_Material3_Button_TextButton
+style ThemeOverlay_Material3_Button_TextButton_Snackbar
+style ThemeOverlay_Material3_Button_TonalButton
+style ThemeOverlay_Material3_Chip
+style ThemeOverlay_Material3_Chip_Assist
+style ThemeOverlay_Material3_Dark
+style ThemeOverlay_Material3_Dark_ActionBar
+style ThemeOverlay_Material3_DayNight_BottomSheetDialog
+style ThemeOverlay_Material3_DayNight_SideSheetDialog
+style ThemeOverlay_Material3_Dialog
+style ThemeOverlay_Material3_Dialog_Alert
+style ThemeOverlay_Material3_Dialog_Alert_Framework
+style ThemeOverlay_Material3_DynamicColors_Dark
+style ThemeOverlay_Material3_DynamicColors_DayNight
+style ThemeOverlay_Material3_DynamicColors_Light
+style ThemeOverlay_Material3_ExtendedFloatingActionButton_Primary
+style ThemeOverlay_Material3_ExtendedFloatingActionButton_Secondary
+style ThemeOverlay_Material3_ExtendedFloatingActionButton_Surface
+style ThemeOverlay_Material3_ExtendedFloatingActionButton_Tertiary
+style ThemeOverlay_Material3_FloatingActionButton_Primary
+style ThemeOverlay_Material3_FloatingActionButton_Secondary
+style ThemeOverlay_Material3_FloatingActionButton_Surface
+style ThemeOverlay_Material3_FloatingActionButton_Tertiary
+style ThemeOverlay_Material3_HarmonizedColors
+style ThemeOverlay_Material3_HarmonizedColors_Empty
+style ThemeOverlay_Material3_Light
+style ThemeOverlay_Material3_Light_Dialog_Alert_Framework
+style ThemeOverlay_Material3_MaterialAlertDialog
+style ThemeOverlay_Material3_MaterialAlertDialog_Centered
+style ThemeOverlay_Material3_MaterialCalendar
+style ThemeOverlay_Material3_MaterialCalendar_Fullscreen
+style ThemeOverlay_Material3_MaterialCalendar_HeaderCancelButton
+style ThemeOverlay_Material3_MaterialTimePicker
+style ThemeOverlay_Material3_MaterialTimePicker_Display_TextInputEditText
+style ThemeOverlay_Material3_NavigationRailView
+style ThemeOverlay_Material3_NavigationView
+style ThemeOverlay_Material3_PersonalizedColors
+style ThemeOverlay_Material3_Search
+style ThemeOverlay_Material3_SideSheetDialog
+style ThemeOverlay_Material3_Snackbar
+style ThemeOverlay_Material3_TabLayout
+style ThemeOverlay_Material3_TextInputEditText
+style ThemeOverlay_Material3_TextInputEditText_FilledBox
+style ThemeOverlay_Material3_TextInputEditText_FilledBox_Dense
+style ThemeOverlay_Material3_TextInputEditText_OutlinedBox
+style ThemeOverlay_Material3_TextInputEditText_OutlinedBox_Dense
+style ThemeOverlay_Material3_Toolbar_Surface
+style ThemeOverlay_MaterialAlertDialog_Material3_Title_Icon
+style ThemeOverlay_MaterialComponents
+style ThemeOverlay_MaterialComponents_ActionBar
+style ThemeOverlay_MaterialComponents_ActionBar_Primary
+style ThemeOverlay_MaterialComponents_ActionBar_Surface
+style ThemeOverlay_MaterialComponents_AutoCompleteTextView
+style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox
+style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense
+style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox
+style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense
+style ThemeOverlay_MaterialComponents_BottomAppBar_Primary
+style ThemeOverlay_MaterialComponents_BottomAppBar_Surface
+style ThemeOverlay_MaterialComponents_BottomSheetDialog
+style ThemeOverlay_MaterialComponents_Dark
+style ThemeOverlay_MaterialComponents_Dark_ActionBar
+style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog
+style ThemeOverlay_MaterialComponents_Dialog
+style ThemeOverlay_MaterialComponents_Dialog_Alert
+style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework
+style ThemeOverlay_MaterialComponents_Light
+style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework
+style ThemeOverlay_MaterialComponents_MaterialAlertDialog
+style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered
+style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date
+style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar
+style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text
+style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day
+style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner
+style ThemeOverlay_MaterialComponents_MaterialCalendar
+style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen
+style ThemeOverlay_MaterialComponents_TextInputEditText
+style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
+style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
+style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
+style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
+style ThemeOverlay_MaterialComponents_TimePicker
+style ThemeOverlay_MaterialComponents_TimePicker_Display
+style ThemeOverlay_MaterialComponents_TimePicker_Display_TextInputEditText
+style ThemeOverlay_MaterialComponents_Toolbar_Popup_Primary
+style ThemeOverlay_MaterialComponents_Toolbar_Primary
+style ThemeOverlay_MaterialComponents_Toolbar_Surface
+style Widget_AppCompat_ActionBar
+style Widget_AppCompat_ActionBar_Solid
+style Widget_AppCompat_ActionBar_TabBar
+style Widget_AppCompat_ActionBar_TabText
+style Widget_AppCompat_ActionBar_TabView
+style Widget_AppCompat_ActionButton
+style Widget_AppCompat_ActionButton_CloseMode
+style Widget_AppCompat_ActionButton_Overflow
+style Widget_AppCompat_ActionMode
+style Widget_AppCompat_ActivityChooserView
+style Widget_AppCompat_AutoCompleteTextView
+style Widget_AppCompat_Button
+style Widget_AppCompat_Button_Borderless
+style Widget_AppCompat_Button_Borderless_Colored
+style Widget_AppCompat_Button_ButtonBar_AlertDialog
+style Widget_AppCompat_Button_Colored
+style Widget_AppCompat_Button_Small
+style Widget_AppCompat_ButtonBar
+style Widget_AppCompat_ButtonBar_AlertDialog
+style Widget_AppCompat_CompoundButton_CheckBox
+style Widget_AppCompat_CompoundButton_RadioButton
+style Widget_AppCompat_CompoundButton_Switch
+style Widget_AppCompat_DrawerArrowToggle
+style Widget_AppCompat_DropDownItem_Spinner
+style Widget_AppCompat_EditText
+style Widget_AppCompat_ImageButton
+style Widget_AppCompat_Light_ActionBar
+style Widget_AppCompat_Light_ActionBar_Solid
+style Widget_AppCompat_Light_ActionBar_Solid_Inverse
+style Widget_AppCompat_Light_ActionBar_TabBar
+style Widget_AppCompat_Light_ActionBar_TabBar_Inverse
+style Widget_AppCompat_Light_ActionBar_TabText
+style Widget_AppCompat_Light_ActionBar_TabText_Inverse
+style Widget_AppCompat_Light_ActionBar_TabView
+style Widget_AppCompat_Light_ActionBar_TabView_Inverse
+style Widget_AppCompat_Light_ActionButton
+style Widget_AppCompat_Light_ActionButton_CloseMode
+style Widget_AppCompat_Light_ActionButton_Overflow
+style Widget_AppCompat_Light_ActionMode_Inverse
+style Widget_AppCompat_Light_ActivityChooserView
+style Widget_AppCompat_Light_AutoCompleteTextView
+style Widget_AppCompat_Light_DropDownItem_Spinner
+style Widget_AppCompat_Light_ListPopupWindow
+style Widget_AppCompat_Light_ListView_DropDown
+style Widget_AppCompat_Light_PopupMenu
+style Widget_AppCompat_Light_PopupMenu_Overflow
+style Widget_AppCompat_Light_SearchView
+style Widget_AppCompat_Light_Spinner_DropDown_ActionBar
+style Widget_AppCompat_ListMenuView
+style Widget_AppCompat_ListPopupWindow
+style Widget_AppCompat_ListView
+style Widget_AppCompat_ListView_DropDown
+style Widget_AppCompat_ListView_Menu
+style Widget_AppCompat_PopupMenu
+style Widget_AppCompat_PopupMenu_Overflow
+style Widget_AppCompat_PopupWindow
+style Widget_AppCompat_ProgressBar
+style Widget_AppCompat_ProgressBar_Horizontal
+style Widget_AppCompat_RatingBar
+style Widget_AppCompat_RatingBar_Indicator
+style Widget_AppCompat_RatingBar_Small
+style Widget_AppCompat_SearchView
+style Widget_AppCompat_SearchView_ActionBar
+style Widget_AppCompat_SeekBar
+style Widget_AppCompat_SeekBar_Discrete
+style Widget_AppCompat_Spinner
+style Widget_AppCompat_Spinner_DropDown
+style Widget_AppCompat_Spinner_DropDown_ActionBar
+style Widget_AppCompat_Spinner_Underlined
+style Widget_AppCompat_TextView
+style Widget_AppCompat_TextView_SpinnerItem
+style Widget_AppCompat_Toolbar
+style Widget_AppCompat_Toolbar_Button_Navigation
+style Widget_Compat_NotificationActionContainer
+style Widget_Compat_NotificationActionText
+style Widget_Design_AppBarLayout
+style Widget_Design_BottomNavigationView
+style Widget_Design_BottomSheet_Modal
+style Widget_Design_CollapsingToolbar
+style Widget_Design_FloatingActionButton
+style Widget_Design_NavigationView
+style Widget_Design_ScrimInsetsFrameLayout
+style Widget_Design_Snackbar
+style Widget_Design_TabLayout
+style Widget_Design_TextInputEditText
+style Widget_Design_TextInputLayout
+style Widget_Material3_ActionBar_Solid
+style Widget_Material3_ActionMode
+style Widget_Material3_AppBarLayout
+style Widget_Material3_AutoCompleteTextView_FilledBox
+style Widget_Material3_AutoCompleteTextView_FilledBox_Dense
+style Widget_Material3_AutoCompleteTextView_OutlinedBox
+style Widget_Material3_AutoCompleteTextView_OutlinedBox_Dense
+style Widget_Material3_Badge
+style Widget_Material3_Badge_AdjustToBounds
+style Widget_Material3_BottomAppBar
+style Widget_Material3_BottomAppBar_Button_Navigation
+style Widget_Material3_BottomAppBar_Legacy
+style Widget_Material3_BottomNavigation_Badge
+style Widget_Material3_BottomNavigationView
+style Widget_Material3_BottomNavigationView_ActiveIndicator
+style Widget_Material3_BottomSheet
+style Widget_Material3_BottomSheet_DragHandle
+style Widget_Material3_BottomSheet_Modal
+style Widget_Material3_Button
+style Widget_Material3_Button_ElevatedButton
+style Widget_Material3_Button_ElevatedButton_Icon
+style Widget_Material3_Button_Icon
+style Widget_Material3_Button_IconButton
+style Widget_Material3_Button_IconButton_Filled
+style Widget_Material3_Button_IconButton_Filled_Tonal
+style Widget_Material3_Button_IconButton_Outlined
+style Widget_Material3_Button_OutlinedButton
+style Widget_Material3_Button_OutlinedButton_Icon
+style Widget_Material3_Button_TextButton
+style Widget_Material3_Button_TextButton_Dialog
+style Widget_Material3_Button_TextButton_Dialog_Flush
+style Widget_Material3_Button_TextButton_Dialog_Icon
+style Widget_Material3_Button_TextButton_Icon
+style Widget_Material3_Button_TextButton_Snackbar
+style Widget_Material3_Button_TonalButton
+style Widget_Material3_Button_TonalButton_Icon
+style Widget_Material3_Button_UnelevatedButton
+style Widget_Material3_CardView_Elevated
+style Widget_Material3_CardView_Filled
+style Widget_Material3_CardView_Outlined
+style Widget_Material3_CheckedTextView
+style Widget_Material3_Chip_Assist
+style Widget_Material3_Chip_Assist_Elevated
+style Widget_Material3_Chip_Filter
+style Widget_Material3_Chip_Filter_Elevated
+style Widget_Material3_Chip_Input
+style Widget_Material3_Chip_Input_Elevated
+style Widget_Material3_Chip_Input_Icon
+style Widget_Material3_Chip_Input_Icon_Elevated
+style Widget_Material3_Chip_Suggestion
+style Widget_Material3_Chip_Suggestion_Elevated
+style Widget_Material3_ChipGroup
+style Widget_Material3_CircularProgressIndicator
+style Widget_Material3_CircularProgressIndicator_ExtraSmall
+style Widget_Material3_CircularProgressIndicator_Medium
+style Widget_Material3_CircularProgressIndicator_Small
+style Widget_Material3_CollapsingToolbar
+style Widget_Material3_CollapsingToolbar_Large
+style Widget_Material3_CollapsingToolbar_Medium
+style Widget_Material3_CompoundButton_CheckBox
+style Widget_Material3_CompoundButton_MaterialSwitch
+style Widget_Material3_CompoundButton_RadioButton
+style Widget_Material3_CompoundButton_Switch
+style Widget_Material3_DrawerLayout
+style Widget_Material3_ExtendedFloatingActionButton_Icon_Primary
+style Widget_Material3_ExtendedFloatingActionButton_Icon_Secondary
+style Widget_Material3_ExtendedFloatingActionButton_Icon_Surface
+style Widget_Material3_ExtendedFloatingActionButton_Icon_Tertiary
+style Widget_Material3_ExtendedFloatingActionButton_Primary
+style Widget_Material3_ExtendedFloatingActionButton_Secondary
+style Widget_Material3_ExtendedFloatingActionButton_Surface
+style Widget_Material3_ExtendedFloatingActionButton_Tertiary
+style Widget_Material3_FloatingActionButton_Large_Primary
+style Widget_Material3_FloatingActionButton_Large_Secondary
+style Widget_Material3_FloatingActionButton_Large_Surface
+style Widget_Material3_FloatingActionButton_Large_Tertiary
+style Widget_Material3_FloatingActionButton_Primary
+style Widget_Material3_FloatingActionButton_Secondary
+style Widget_Material3_FloatingActionButton_Small_Primary
+style Widget_Material3_FloatingActionButton_Small_Secondary
+style Widget_Material3_FloatingActionButton_Small_Surface
+style Widget_Material3_FloatingActionButton_Small_Tertiary
+style Widget_Material3_FloatingActionButton_Surface
+style Widget_Material3_FloatingActionButton_Tertiary
+style Widget_Material3_Light_ActionBar_Solid
+style Widget_Material3_LinearProgressIndicator
+style Widget_Material3_MaterialButtonToggleGroup
+style Widget_Material3_MaterialCalendar
+style Widget_Material3_MaterialCalendar_Day
+style Widget_Material3_MaterialCalendar_Day_Invalid
+style Widget_Material3_MaterialCalendar_Day_Selected
+style Widget_Material3_MaterialCalendar_Day_Today
+style Widget_Material3_MaterialCalendar_DayOfWeekLabel
+style Widget_Material3_MaterialCalendar_DayTextView
+style Widget_Material3_MaterialCalendar_Fullscreen
+style Widget_Material3_MaterialCalendar_HeaderCancelButton
+style Widget_Material3_MaterialCalendar_HeaderDivider
+style Widget_Material3_MaterialCalendar_HeaderLayout
+style Widget_Material3_MaterialCalendar_HeaderLayout_Fullscreen
+style Widget_Material3_MaterialCalendar_HeaderSelection
+style Widget_Material3_MaterialCalendar_HeaderSelection_Fullscreen
+style Widget_Material3_MaterialCalendar_HeaderTitle
+style Widget_Material3_MaterialCalendar_HeaderToggleButton
+style Widget_Material3_MaterialCalendar_Item
+style Widget_Material3_MaterialCalendar_MonthNavigationButton
+style Widget_Material3_MaterialCalendar_MonthTextView
+style Widget_Material3_MaterialCalendar_Year
+style Widget_Material3_MaterialCalendar_Year_Selected
+style Widget_Material3_MaterialCalendar_Year_Today
+style Widget_Material3_MaterialCalendar_YearNavigationButton
+style Widget_Material3_MaterialDivider
+style Widget_Material3_MaterialDivider_Heavy
+style Widget_Material3_MaterialTimePicker
+style Widget_Material3_MaterialTimePicker_Button
+style Widget_Material3_MaterialTimePicker_Clock
+style Widget_Material3_MaterialTimePicker_Display
+style Widget_Material3_MaterialTimePicker_Display_Divider
+style Widget_Material3_MaterialTimePicker_Display_HelperText
+style Widget_Material3_MaterialTimePicker_Display_TextInputEditText
+style Widget_Material3_MaterialTimePicker_Display_TextInputLayout
+style Widget_Material3_MaterialTimePicker_ImageButton
+style Widget_Material3_NavigationRailView
+style Widget_Material3_NavigationRailView_ActiveIndicator
+style Widget_Material3_NavigationRailView_Badge
+style Widget_Material3_NavigationView
+style Widget_Material3_PopupMenu
+style Widget_Material3_PopupMenu_ContextMenu
+style Widget_Material3_PopupMenu_ListPopupWindow
+style Widget_Material3_PopupMenu_Overflow
+style Widget_Material3_Search_ActionButton_Overflow
+style Widget_Material3_Search_Toolbar_Button_Navigation
+style Widget_Material3_SearchBar
+style Widget_Material3_SearchBar_Outlined
+style Widget_Material3_SearchView
+style Widget_Material3_SearchView_Prefix
+style Widget_Material3_SearchView_Toolbar
+style Widget_Material3_SideSheet
+style Widget_Material3_SideSheet_Detached
+style Widget_Material3_SideSheet_Modal
+style Widget_Material3_SideSheet_Modal_Detached
+style Widget_Material3_Slider
+style Widget_Material3_Slider_Label
+style Widget_Material3_Snackbar
+style Widget_Material3_Snackbar_FullWidth
+style Widget_Material3_Snackbar_TextView
+style Widget_Material3_TabLayout
+style Widget_Material3_TabLayout_OnSurface
+style Widget_Material3_TabLayout_Secondary
+style Widget_Material3_TextInputEditText_FilledBox
+style Widget_Material3_TextInputEditText_FilledBox_Dense
+style Widget_Material3_TextInputEditText_OutlinedBox
+style Widget_Material3_TextInputEditText_OutlinedBox_Dense
+style Widget_Material3_TextInputLayout_FilledBox
+style Widget_Material3_TextInputLayout_FilledBox_Dense
+style Widget_Material3_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu
+style Widget_Material3_TextInputLayout_FilledBox_ExposedDropdownMenu
+style Widget_Material3_TextInputLayout_OutlinedBox
+style Widget_Material3_TextInputLayout_OutlinedBox_Dense
+style Widget_Material3_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu
+style Widget_Material3_TextInputLayout_OutlinedBox_ExposedDropdownMenu
+style Widget_Material3_Toolbar
+style Widget_Material3_Toolbar_OnSurface
+style Widget_Material3_Toolbar_Surface
+style Widget_Material3_Tooltip
+style Widget_MaterialComponents_ActionBar_Primary
+style Widget_MaterialComponents_ActionBar_PrimarySurface
+style Widget_MaterialComponents_ActionBar_Solid
+style Widget_MaterialComponents_ActionBar_Surface
+style Widget_MaterialComponents_ActionMode
+style Widget_MaterialComponents_AppBarLayout_Primary
+style Widget_MaterialComponents_AppBarLayout_PrimarySurface
+style Widget_MaterialComponents_AppBarLayout_Surface
+style Widget_MaterialComponents_AutoCompleteTextView_FilledBox
+style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense
+style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox
+style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense
+style Widget_MaterialComponents_Badge
+style Widget_MaterialComponents_BottomAppBar
+style Widget_MaterialComponents_BottomAppBar_Colored
+style Widget_MaterialComponents_BottomAppBar_PrimarySurface
+style Widget_MaterialComponents_BottomNavigationView
+style Widget_MaterialComponents_BottomNavigationView_Colored
+style Widget_MaterialComponents_BottomNavigationView_PrimarySurface
+style Widget_MaterialComponents_BottomSheet
+style Widget_MaterialComponents_BottomSheet_Modal
+style Widget_MaterialComponents_Button
+style Widget_MaterialComponents_Button_Icon
+style Widget_MaterialComponents_Button_OutlinedButton
+style Widget_MaterialComponents_Button_OutlinedButton_Icon
+style Widget_MaterialComponents_Button_TextButton
+style Widget_MaterialComponents_Button_TextButton_Dialog
+style Widget_MaterialComponents_Button_TextButton_Dialog_Flush
+style Widget_MaterialComponents_Button_TextButton_Dialog_Icon
+style Widget_MaterialComponents_Button_TextButton_Icon
+style Widget_MaterialComponents_Button_TextButton_Snackbar
+style Widget_MaterialComponents_Button_UnelevatedButton
+style Widget_MaterialComponents_Button_UnelevatedButton_Icon
+style Widget_MaterialComponents_CardView
+style Widget_MaterialComponents_CheckedTextView
+style Widget_MaterialComponents_Chip_Action
+style Widget_MaterialComponents_Chip_Choice
+style Widget_MaterialComponents_Chip_Entry
+style Widget_MaterialComponents_Chip_Filter
+style Widget_MaterialComponents_ChipGroup
+style Widget_MaterialComponents_CircularProgressIndicator
+style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall
+style Widget_MaterialComponents_CircularProgressIndicator_Medium
+style Widget_MaterialComponents_CircularProgressIndicator_Small
+style Widget_MaterialComponents_CollapsingToolbar
+style Widget_MaterialComponents_CompoundButton_CheckBox
+style Widget_MaterialComponents_CompoundButton_RadioButton
+style Widget_MaterialComponents_CompoundButton_Switch
+style Widget_MaterialComponents_ExtendedFloatingActionButton
+style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon
+style Widget_MaterialComponents_FloatingActionButton
+style Widget_MaterialComponents_Light_ActionBar_Solid
+style Widget_MaterialComponents_LinearProgressIndicator
+style Widget_MaterialComponents_MaterialButtonToggleGroup
+style Widget_MaterialComponents_MaterialCalendar
+style Widget_MaterialComponents_MaterialCalendar_Day
+style Widget_MaterialComponents_MaterialCalendar_Day_Invalid
+style Widget_MaterialComponents_MaterialCalendar_Day_Selected
+style Widget_MaterialComponents_MaterialCalendar_Day_Today
+style Widget_MaterialComponents_MaterialCalendar_DayOfWeekLabel
+style Widget_MaterialComponents_MaterialCalendar_DayTextView
+style Widget_MaterialComponents_MaterialCalendar_Fullscreen
+style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton
+style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton
+style Widget_MaterialComponents_MaterialCalendar_HeaderDivider
+style Widget_MaterialComponents_MaterialCalendar_HeaderLayout
+style Widget_MaterialComponents_MaterialCalendar_HeaderLayout_Fullscreen
+style Widget_MaterialComponents_MaterialCalendar_HeaderSelection
+style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen
+style Widget_MaterialComponents_MaterialCalendar_HeaderTitle
+style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton
+style Widget_MaterialComponents_MaterialCalendar_Item
+style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton
+style Widget_MaterialComponents_MaterialCalendar_MonthTextView
+style Widget_MaterialComponents_MaterialCalendar_Year
+style Widget_MaterialComponents_MaterialCalendar_Year_Selected
+style Widget_MaterialComponents_MaterialCalendar_Year_Today
+style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton
+style Widget_MaterialComponents_MaterialDivider
+style Widget_MaterialComponents_NavigationRailView
+style Widget_MaterialComponents_NavigationRailView_Colored
+style Widget_MaterialComponents_NavigationRailView_Colored_Compact
+style Widget_MaterialComponents_NavigationRailView_Compact
+style Widget_MaterialComponents_NavigationRailView_PrimarySurface
+style Widget_MaterialComponents_NavigationView
+style Widget_MaterialComponents_PopupMenu
+style Widget_MaterialComponents_PopupMenu_ContextMenu
+style Widget_MaterialComponents_PopupMenu_ListPopupWindow
+style Widget_MaterialComponents_PopupMenu_Overflow
+style Widget_MaterialComponents_ProgressIndicator
+style Widget_MaterialComponents_ShapeableImageView
+style Widget_MaterialComponents_Slider
+style Widget_MaterialComponents_Snackbar
+style Widget_MaterialComponents_Snackbar_FullWidth
+style Widget_MaterialComponents_Snackbar_TextView
+style Widget_MaterialComponents_TabLayout
+style Widget_MaterialComponents_TabLayout_Colored
+style Widget_MaterialComponents_TabLayout_PrimarySurface
+style Widget_MaterialComponents_TextInputEditText_FilledBox
+style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
+style Widget_MaterialComponents_TextInputEditText_OutlinedBox
+style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
+style Widget_MaterialComponents_TextInputLayout_FilledBox
+style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
+style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu
+style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu
+style Widget_MaterialComponents_TextInputLayout_OutlinedBox
+style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
+style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu
+style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu
+style Widget_MaterialComponents_TextView
+style Widget_MaterialComponents_TimePicker
+style Widget_MaterialComponents_TimePicker_Button
+style Widget_MaterialComponents_TimePicker_Clock
+style Widget_MaterialComponents_TimePicker_Display
+style Widget_MaterialComponents_TimePicker_Display_Divider
+style Widget_MaterialComponents_TimePicker_Display_HelperText
+style Widget_MaterialComponents_TimePicker_Display_TextInputEditText
+style Widget_MaterialComponents_TimePicker_Display_TextInputLayout
+style Widget_MaterialComponents_TimePicker_ImageButton
+style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance
+style Widget_MaterialComponents_Toolbar
+style Widget_MaterialComponents_Toolbar_Primary
+style Widget_MaterialComponents_Toolbar_PrimarySurface
+style Widget_MaterialComponents_Toolbar_Surface
+style Widget_MaterialComponents_Tooltip
+style Widget_Support_CoordinatorLayout
+style wifi_item
+style wifi_item_content
+style wifi_item_divider
+style wifi_item_edit_content
+style wifi_item_label
+style wifi_item_subhead
+styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle
+styleable ActionBarLayout android_layout_gravity
+styleable ActionMenuItemView android_minWidth
+styleable ActionMenuView
+styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle
+styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount
+styleable ActivityFilter activityAction activityName
+styleable ActivityRule alwaysExpand
+styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout
+styleable AnimatedStateListDrawableCompat android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration
+styleable AnimatedStateListDrawableItem android_id android_drawable
+styleable AnimatedStateListDrawableTransition android_drawable android_toId android_fromId android_reversible
+styleable AppBarLayout android_background android_touchscreenBlocksFocus android_keyboardNavigationCluster elevation expanded liftOnScroll liftOnScrollColor liftOnScrollTargetViewId statusBarForeground
+styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted
+styleable AppBarLayout_Layout layout_scrollEffect layout_scrollFlags layout_scrollInterpolator
+styleable AppCompatEmojiHelper
+styleable AppCompatImageView android_src srcCompat tint tintMode
+styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode
+styleable AppCompatTextHelper android_textAppearance android_drawableTop android_drawableBottom android_drawableLeft android_drawableRight android_drawableStart android_drawableEnd
+styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat emojiCompatEnabled firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale
+styleable AppCompatTheme android_windowIsFloating android_windowAnimationStyle actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle
+styleable BackgroundStyle android_selectableItemBackground selectableItemBackground
+styleable Badge autoAdjustToWithinGrandparentBounds backgroundColor badgeGravity badgeHeight badgeRadius badgeShapeAppearance badgeShapeAppearanceOverlay badgeText badgeTextAppearance badgeTextColor badgeVerticalPadding badgeWidePadding badgeWidth badgeWithTextHeight badgeWithTextRadius badgeWithTextShapeAppearance badgeWithTextShapeAppearanceOverlay badgeWithTextWidth horizontalOffset horizontalOffsetWithText largeFontVerticalOffsetAdjustment maxCharacterCount maxNumber number offsetAlignmentMode verticalOffset verticalOffsetWithText
+styleable BaseProgressIndicator android_indeterminate hideAnimationBehavior indicatorColor minHideDelay showAnimationBehavior showDelay trackColor trackCornerRadius trackThickness
+styleable BottomAppBar addElevationShadow backgroundTint elevation fabAlignmentMode fabAlignmentModeEndMargin fabAnchorMode fabAnimationMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll menuAlignmentMode navigationIconTint paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets removeEmbeddedFabElevation
+styleable BottomNavigationView android_minHeight compatShadowEnabled itemHorizontalTranslationEnabled shapeAppearance shapeAppearanceOverlay
+styleable BottomSheetBehavior_Layout android_maxWidth android_maxHeight android_elevation backgroundTint behavior_draggable behavior_expandedOffset behavior_fitToContents behavior_halfExpandedRatio behavior_hideable behavior_peekHeight behavior_saveFlags behavior_significantVelocityThreshold behavior_skipCollapsed gestureInsetBottomIgnored marginLeftSystemWindowInsets marginRightSystemWindowInsets marginTopSystemWindowInsets paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets shapeAppearance shapeAppearanceOverlay shouldRemoveExpandedCorners
+styleable ButtonBarLayout allowStacking
+styleable Capability queryPatterns shortcutMatchRequired
+styleable CardView android_minWidth android_minHeight cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop
+styleable Carousel carousel_alignment
+styleable CheckBoxPreference android_summaryOn android_summaryOff android_disableDependentsState disableDependentsState summaryOff summaryOn
+styleable CheckedTextView android_checkMark checkMarkCompat checkMarkTint checkMarkTintMode
+styleable Chip android_textAppearance android_textSize android_textColor android_ellipsize android_maxWidth android_text android_checkable checkedIcon checkedIconEnabled checkedIconTint checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipMinTouchTargetSize chipStartPadding chipStrokeColor chipStrokeWidth chipSurfaceColor closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible ensureMinTouchTargetSize hideMotionSpec iconEndPadding iconStartPadding rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec textEndPadding textStartPadding
+styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical selectionRequired singleLine singleSelection
+styleable CircularProgressIndicator indicatorDirectionCircular indicatorInset indicatorSize
+styleable ClockFaceView clockFaceBackgroundColor clockNumberTextColor
+styleable ClockHandView clockHandColor materialCircleRadius selectorSize
+styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance collapsedTitleTextColor contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance expandedTitleTextColor extraMultilineHeightEnabled forceApplySystemWindowInsetTop maxLines scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleCollapseMode titleEnabled titlePositionInterpolator titleTextEllipsize toolbarId
+styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier
+styleable ColorStateListItem android_color android_alpha android_lStar alpha lStar
+styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode
+styleable Constraint android_orientation android_id android_visibility android_layout_width android_layout_height android_layout_marginLeft android_layout_marginTop android_layout_marginRight android_layout_marginBottom android_maxWidth android_maxHeight android_minWidth android_minHeight android_alpha android_transformPivotX android_transformPivotY android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_layout_marginStart android_layout_marginEnd android_translationZ android_elevation animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop motionProgress motionStagger pathMotionArc pivotAnchor transitionEasing transitionPathRotate visibilityMode
+styleable ConstraintLayout_Layout android_orientation android_padding android_paddingLeft android_paddingTop android_paddingRight android_paddingBottom android_visibility android_maxWidth android_maxHeight android_minWidth android_minHeight android_paddingStart android_paddingEnd android_elevation barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraintSet constraint_referenced_ids flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layoutDescription layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_optimizationLevel
+styleable ConstraintLayout_placeholder content placeholder_emptyVisibility
+styleable ConstraintSet android_orientation android_id android_visibility android_layout_width android_layout_height android_layout_marginLeft android_layout_marginTop android_layout_marginRight android_layout_marginBottom android_maxWidth android_maxHeight android_minWidth android_minHeight android_pivotX android_pivotY android_alpha android_transformPivotX android_transformPivotY android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_layout_marginStart android_layout_marginEnd android_translationZ android_elevation animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids deriveConstraintsFrom drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop motionProgress motionStagger pathMotionArc pivotAnchor transitionEasing transitionPathRotate
+styleable CoordinatorLayout keylines statusBarBackground
+styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline
+styleable CustomAttribute attributeName customBoolean customColorDrawableValue customColorValue customDimension customFloatValue customIntegerValue customPixelDimension customStringValue
+styleable DialogPreference android_dialogTitle android_dialogMessage android_dialogIcon android_positiveButtonText android_negativeButtonText android_dialogLayout dialogIcon dialogLayout dialogMessage dialogTitle negativeButtonText positiveButtonText
+styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness
+styleable DrawerLayout elevation
+styleable EditTextPreference useSimpleSummaryProvider
+styleable ExtendedFloatingActionButton collapsedSize elevation extendMotionSpec extendStrategy hideMotionSpec showMotionSpec shrinkMotionSpec
+styleable ExtendedFloatingActionButton_Behavior_Layout behavior_autoHide behavior_autoShrink
+styleable FloatingActionButton android_enabled backgroundTint backgroundTintMode borderWidth elevation ensureMinTouchTargetSize fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec useCompatPadding
+styleable FloatingActionButton_Behavior_Layout behavior_autoHide
+styleable FlowLayout itemSpacing lineSpacing
+styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily
+styleable FontFamilyFont android_font android_fontWeight android_fontStyle android_ttcIndex android_fontVariationSettings font fontStyle fontVariationSettings fontWeight ttcIndex
+styleable ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding
+styleable Fragment android_name android_id android_tag
+styleable FragmentContainerView android_name android_tag
+styleable GradientColor android_startColor android_endColor android_type android_centerX android_centerY android_gradientRadius android_tileMode android_centerColor android_startX android_startY android_endX android_endY
+styleable GradientColorItem android_color android_offset
+styleable ImageFilterView altSrc brightness contrast crossfade overlay round roundPercent saturation warmth
+styleable Insets marginLeftSystemWindowInsets marginRightSystemWindowInsets marginTopSystemWindowInsets paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingStartSystemWindowInsets paddingTopSystemWindowInsets
+styleable KeyAttribute android_alpha android_transformPivotX android_transformPivotY android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_translationZ android_elevation curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate
+styleable KeyCycle android_alpha android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_translationZ android_elevation curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveOffset wavePeriod waveShape waveVariesBy
+styleable KeyFrame
+styleable KeyFramesAcceleration
+styleable KeyFramesVelocity
+styleable KeyPosition curveFit drawPath framePosition keyPositionType motionTarget pathMotionArc percentHeight percentWidth percentX percentY sizePercent transitionEasing
+styleable KeyTimeCycle android_alpha android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_translationZ android_elevation curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveDecay waveOffset wavePeriod waveShape
+styleable KeyTrigger framePosition motionTarget motion_postLayoutCollision motion_triggerOnCollision onCross onNegativeCross onPositiveCross triggerId triggerReceiver triggerSlack
+styleable Layout android_orientation android_layout_width android_layout_height android_layout_marginLeft android_layout_marginTop android_layout_marginRight android_layout_marginBottom android_layout_marginStart android_layout_marginEnd barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop maxHeight maxWidth minHeight minWidth
+styleable LinearLayoutCompat android_gravity android_orientation android_baselineAligned android_baselineAlignedChildIndex android_weightSum divider dividerPadding measureWithLargestChild showDividers
+styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_width android_layout_height android_layout_weight
+styleable LinearProgressIndicator indeterminateAnimationType indicatorDirectionLinear
+styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset
+styleable ListPreference android_entries android_entryValues entries entryValues useSimpleSummaryProvider
+styleable LoadingImageView circleCrop imageAspectRatio imageAspectRatioAdjust
+styleable MaterialAlertDialog backgroundInsetBottom backgroundInsetEnd backgroundInsetStart backgroundInsetTop backgroundTint
+styleable MaterialAlertDialogTheme materialAlertDialogBodyTextStyle materialAlertDialogButtonSpacerVisibility materialAlertDialogTheme materialAlertDialogTitleIconStyle materialAlertDialogTitlePanelStyle materialAlertDialogTitleTextStyle
+styleable MaterialAutoCompleteTextView android_inputType android_popupElevation dropDownBackgroundTint simpleItemLayout simpleItemSelectedColor simpleItemSelectedRippleColor simpleItems
+styleable MaterialButton android_background android_insetLeft android_insetRight android_insetTop android_insetBottom android_checkable backgroundTint backgroundTintMode cornerRadius elevation icon iconGravity iconPadding iconSize iconTint iconTintMode rippleColor shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth toggleCheckedStateOnClick
+styleable MaterialButtonToggleGroup android_enabled checkedButton selectionRequired singleSelection
+styleable MaterialCalendar android_windowFullscreen backgroundTint dayInvalidStyle daySelectedStyle dayStyle dayTodayStyle nestedScrollable rangeFillColor yearSelectedStyle yearStyle yearTodayStyle
+styleable MaterialCalendarItem android_insetLeft android_insetRight android_insetTop android_insetBottom itemFillColor itemShapeAppearance itemShapeAppearanceOverlay itemStrokeColor itemStrokeWidth itemTextColor
+styleable MaterialCardView android_checkable cardForegroundColor checkedIcon checkedIconGravity checkedIconMargin checkedIconSize checkedIconTint rippleColor shapeAppearance shapeAppearanceOverlay state_dragged strokeColor strokeWidth
+styleable MaterialCheckBox android_button buttonCompat buttonIcon buttonIconTint buttonIconTintMode buttonTint centerIfNoTextEnabled checkedState errorAccessibilityLabel errorShown useMaterialThemeColors
+styleable MaterialCheckBoxStates state_error state_indeterminate
+styleable MaterialDivider dividerColor dividerInsetEnd dividerInsetStart dividerThickness lastItemDecorated
+styleable MaterialRadioButton buttonTint useMaterialThemeColors
+styleable MaterialShape shapeAppearance shapeAppearanceOverlay
+styleable MaterialSwitch thumbIcon thumbIconSize thumbIconTint thumbIconTintMode trackDecoration trackDecorationTint trackDecorationTintMode
+styleable MaterialTextAppearance android_letterSpacing android_lineHeight lineHeight
+styleable MaterialTextView android_textAppearance android_lineHeight lineHeight
+styleable MaterialTimePicker backgroundTint clockIcon keyboardIcon
+styleable MaterialToolbar logoAdjustViewBounds logoScaleType navigationIconTint subtitleCentered titleCentered
+styleable MenuGroup android_enabled android_id android_visible android_menuCategory android_orderInCategory android_checkableBehavior
+styleable MenuItem android_icon android_enabled android_id android_checked android_visible android_menuCategory android_orderInCategory android_title android_titleCondensed android_alphabeticShortcut android_numericShortcut android_checkable android_onClick actionLayout actionProviderClass actionViewClass alphabeticModifiers contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText
+styleable MenuView android_windowAnimationStyle android_itemTextAppearance android_horizontalDivider android_verticalDivider android_headerBackground android_itemBackground android_itemIconDisabledAlpha preserveIconSpacing subMenuArrow
+styleable MockView mock_diagonalsColor mock_label mock_labelBackgroundColor mock_labelColor mock_showDiagonals mock_showLabel
+styleable Motion animate_relativeTo drawPath motionPathRotate motionStagger pathMotionArc transitionEasing
+styleable MotionHelper onHide onShow
+styleable MotionLayout applyMotionScene currentState layoutDescription motionDebug motionProgress showPaths
+styleable MotionScene defaultDuration layoutDuringTransition
+styleable MotionTelltales telltales_tailColor telltales_tailScale telltales_velocityMode
+styleable MultiSelectListPreference android_entries android_entryValues entries entryValues
+styleable NavigationBarActiveIndicator android_height android_width android_color marginHorizontal shapeAppearance
+styleable NavigationBarView activeIndicatorLabelPadding backgroundTint elevation itemActiveIndicatorStyle itemBackground itemIconSize itemIconTint itemPaddingBottom itemPaddingTop itemRippleColor itemTextAppearanceActive itemTextAppearanceActiveBoldEnabled itemTextAppearanceInactive itemTextColor labelVisibilityMode menu
+styleable NavigationRailView headerLayout itemMinHeight menuGravity paddingBottomSystemWindowInsets paddingStartSystemWindowInsets paddingTopSystemWindowInsets shapeAppearance shapeAppearanceOverlay
+styleable NavigationView android_layout_gravity android_background android_fitsSystemWindows android_maxWidth bottomInsetScrimEnabled dividerInsetEnd dividerInsetStart drawerLayoutCornerSize elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconSize itemIconTint itemMaxLines itemRippleColor itemShapeAppearance itemShapeAppearanceOverlay itemShapeFillColor itemShapeInsetBottom itemShapeInsetEnd itemShapeInsetStart itemShapeInsetTop itemTextAppearance itemTextAppearanceActiveBoldEnabled itemTextColor itemVerticalPadding menu shapeAppearance shapeAppearanceOverlay subheaderColor subheaderInsetEnd subheaderInsetStart subheaderTextAppearance topInsetScrimEnabled
+styleable OnClick clickAction targetId
+styleable OnSwipe dragDirection dragScale dragThreshold limitBoundsTo maxAcceleration maxVelocity moveWhenScrollAtTop nestedScrollFlags onTouchUp touchAnchorId touchAnchorSide touchRegionId
+styleable PopupWindow android_popupBackground android_popupAnimationStyle overlapAnchor
+styleable PopupWindowBackgroundState state_above_anchor
+styleable Preference android_icon android_persistent android_enabled android_layout android_title android_selectable android_key android_summary android_order android_widgetLayout android_dependency android_defaultValue android_shouldDisableView android_fragment android_singleLineTitle android_iconSpaceReserved allowDividerAbove allowDividerBelow defaultValue dependency enableCopying enabled fragment icon iconSpaceReserved isPreferenceVisible key layout order persistent selectable shouldDisableView singleLineTitle summary title widgetLayout
+styleable PreferenceFragment android_layout android_divider android_dividerHeight allowDividerAfterLastItem
+styleable PreferenceFragmentCompat android_layout android_divider android_dividerHeight allowDividerAfterLastItem
+styleable PreferenceGroup android_orderingFromXml initialExpandedChildrenCount orderingFromXml
+styleable PreferenceImageView android_maxWidth android_maxHeight maxHeight maxWidth
+styleable PreferenceTheme checkBoxPreferenceStyle dialogPreferenceStyle dropdownPreferenceStyle editTextPreferenceStyle preferenceCategoryStyle preferenceCategoryTitleTextAppearance preferenceCategoryTitleTextColor preferenceFragmentCompatStyle preferenceFragmentListStyle preferenceFragmentStyle preferenceInformationStyle preferenceScreenStyle preferenceStyle preferenceTheme seekBarPreferenceStyle switchPreferenceCompatStyle switchPreferenceStyle
+styleable PropertySet android_visibility android_alpha layout_constraintTag motionProgress visibilityMode
+styleable RadialViewGroup materialCircleRadius
+styleable RangeSlider minSeparation values
+styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle
+styleable RecyclerView android_orientation android_clipToPadding android_descendantFocusability fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd
+styleable ScrimInsetsFrameLayout insetForeground
+styleable ScrollingViewBehavior_Layout behavior_overlapTop
+styleable SearchBar android_textAppearance android_text android_hint backgroundTint defaultMarginsEnabled defaultScrollFlagsEnabled elevation forceDefaultNavigationOnClickListener hideNavigationIcon navigationIconTint strokeColor strokeWidth tintNavigationIcon
+styleable SearchView android_textAppearance android_focusable android_maxWidth android_text android_hint android_inputType android_imeOptions animateMenuItems animateNavigationIcon autoShowKeyboard backHandlingEnabled backgroundTint closeIcon commitIcon defaultQueryHint goIcon headerLayout hideNavigationIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon searchPrefixText submitBackground suggestionRowLayout useDrawerArrowDrawable voiceIcon
+styleable SeekBarPreference android_layout android_max adjustable min seekBarIncrement showSeekBarValue updatesContinuously
+styleable ShapeAppearance cornerFamily cornerFamilyBottomLeft cornerFamilyBottomRight cornerFamilyTopLeft cornerFamilyTopRight cornerSize cornerSizeBottomLeft cornerSizeBottomRight cornerSizeTopLeft cornerSizeTopRight
+styleable ShapeableImageView contentPadding contentPaddingBottom contentPaddingEnd contentPaddingLeft contentPaddingRight contentPaddingStart contentPaddingTop shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth
+styleable SideSheetBehavior_Layout android_maxWidth android_maxHeight android_elevation backgroundTint behavior_draggable coplanarSiblingViewId shapeAppearance shapeAppearanceOverlay
+styleable SignInButton buttonSize colorScheme scopeUris
+styleable SimpleMenuPopup pref_dialogElevation pref_dialogItemPadding pref_dialogMarginHorizontal pref_dialogMarginVertical pref_dialogMaxWidth pref_listElevation pref_listItemPadding pref_listMarginHorizontal pref_listMarginVertical pref_maxUnits pref_unit
+styleable SimpleMenuPreference pref_popupStyle
+styleable Slider android_enabled android_value android_stepSize android_valueFrom android_valueTo haloColor haloRadius labelBehavior labelStyle minTouchTargetSize thumbColor thumbElevation thumbRadius thumbStrokeColor thumbStrokeWidth tickColor tickColorActive tickColorInactive tickRadiusActive tickRadiusInactive tickVisible trackColor trackColorActive trackColorInactive trackHeight
+styleable Snackbar snackbarButtonStyle snackbarStyle snackbarTextViewStyle
+styleable SnackbarLayout android_maxWidth actionTextColorAlpha animationMode backgroundOverlayColorAlpha backgroundTint backgroundTintMode elevation maxActionInlineWidth shapeAppearance shapeAppearanceOverlay
+styleable Spinner android_entries android_popupBackground android_prompt android_dropDownWidth popupTheme
+styleable SplitPairFilter primaryActivityName secondaryActivityAction secondaryActivityName
+styleable SplitPairRule clearTop finishPrimaryWithSecondary finishSecondaryWithPrimary splitLayoutDirection splitMinSmallestWidth splitMinWidth splitRatio
+styleable SplitPlaceholderRule placeholderActivityName splitLayoutDirection splitMinSmallestWidth splitMinWidth splitRatio
+styleable State android_id constraints
+styleable StateListDrawable android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration
+styleable StateListDrawableItem android_drawable
+styleable StateSet defaultState
+styleable SwipeRefreshLayout swipeRefreshLayoutProgressSpinnerBackgroundColor
+styleable SwitchCompat android_textOn android_textOff android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode
+styleable SwitchMaterial useMaterialThemeColors
+styleable SwitchPreference android_summaryOn android_summaryOff android_disableDependentsState android_switchTextOn android_switchTextOff disableDependentsState summaryOff summaryOn switchTextOff switchTextOn
+styleable SwitchPreferenceCompat android_summaryOn android_summaryOff android_disableDependentsState android_switchTextOn android_switchTextOff disableDependentsState summaryOff summaryOn switchTextOff switchTextOn
+styleable TabItem android_icon android_layout android_text
+styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorAnimationMode tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextAppearance tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple
+styleable TextAppearance android_textSize android_typeface android_textStyle android_textColor android_textColorHint android_textColorLink android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_fontFamily android_textFontWeight fontFamily fontVariationSettings textAllCaps textLocale
+styleable TextInputEditText textInputLayoutFocusedRectEnabled
+styleable TextInputLayout android_enabled android_textColorHint android_maxWidth android_minWidth android_hint android_maxEms android_minEms boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeErrorColor boxStrokeWidth boxStrokeWidthFocused counterEnabled counterMaxLength counterOverflowTextAppearance counterOverflowTextColor counterTextAppearance counterTextColor cursorColor cursorErrorColor endIconCheckable endIconContentDescription endIconDrawable endIconMinSize endIconMode endIconScaleType endIconTint endIconTintMode errorAccessibilityLiveRegion errorContentDescription errorEnabled errorIconDrawable errorIconTint errorIconTintMode errorTextAppearance errorTextColor expandedHintEnabled helperText helperTextEnabled helperTextTextAppearance helperTextTextColor hintAnimationEnabled hintEnabled hintTextAppearance hintTextColor passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode placeholderText placeholderTextAppearance placeholderTextColor prefixText prefixTextAppearance prefixTextColor shapeAppearance shapeAppearanceOverlay startIconCheckable startIconContentDescription startIconDrawable startIconMinSize startIconScaleType startIconTint startIconTintMode suffixText suffixTextAppearance suffixTextColor
+styleable Theme simpleMenuPreferenceStyle
+styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance
+styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor
+styleable Tooltip android_textAppearance android_textColor android_padding android_layout_margin android_minWidth android_minHeight android_text backgroundTint
+styleable Transform android_transformPivotX android_transformPivotY android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_translationZ android_elevation
+styleable Transition android_id autoTransition constraintSetEnd constraintSetStart duration layoutDuringTransition motionInterpolator pathMotionArc staggered transitionDisable transitionFlags
+styleable Variant constraints region_heightLessThan region_heightMoreThan region_widthLessThan region_widthMoreThan
+styleable View android_theme android_focusable paddingEnd paddingStart theme
+styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode
+styleable ViewPager2 android_orientation
+styleable ViewStubCompat android_id android_layout android_inflatedId
+xml com_android_billingclient_phenotype
+xml ga_ad_services_config
+xml image_share_filepaths
+xml locales_config
+xml log_paths
+xml no_backup
+xml pref_settings
diff --git a/mobile/build/intermediates/variant_model/freedomDebug/variant_model.json b/mobile/build/intermediates/variant_model/freedomDebug/variant_model.json
new file mode 100644
index 00000000..20cebcdb
Binary files /dev/null and b/mobile/build/intermediates/variant_model/freedomDebug/variant_model.json differ
diff --git a/mobile/build/intermediates/version_control_info_file/freedomDebug/version-control-info.textproto b/mobile/build/intermediates/version_control_info_file/freedomDebug/version-control-info.textproto
new file mode 100644
index 00000000..fcabe4fe
--- /dev/null
+++ b/mobile/build/intermediates/version_control_info_file/freedomDebug/version-control-info.textproto
@@ -0,0 +1,5 @@
+repositories {
+ system: GIT
+ local_root_path: "$PROJECT_DIR"
+ revision: "74ff304e4057f88c7ef901a79a3298e9d315b494"
+}
diff --git a/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab
new file mode 100644
index 00000000..0a0f77c5
Binary files /dev/null and b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ
diff --git a/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream
new file mode 100644
index 00000000..d89a1cef
Binary files /dev/null and b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ
diff --git a/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len
new file mode 100644
index 00000000..9b5dd5be
Binary files /dev/null and b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ
diff --git a/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len
new file mode 100644
index 00000000..51b37254
Binary files /dev/null and b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ
diff --git a/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values
new file mode 100644
index 00000000..a9ab6633
Binary files /dev/null and b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values differ
diff --git a/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at
new file mode 100644
index 00000000..3b661c18
Binary files /dev/null and b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ
diff --git a/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s
new file mode 100644
index 00000000..412341e2
--- /dev/null
+++ b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s
@@ -0,0 +1 @@
+ÙAÈ@Ý<
\ No newline at end of file
diff --git a/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i
new file mode 100644
index 00000000..0b806c5a
Binary files /dev/null and b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ
diff --git a/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len
new file mode 100644
index 00000000..131e2657
Binary files /dev/null and b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ
diff --git a/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab
new file mode 100644
index 00000000..09458ab3
Binary files /dev/null and b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ
diff --git a/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream
new file mode 100644
index 00000000..c2bd5108
--- /dev/null
+++ b/mobile/build/kotlin/compileFreedomDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream
@@ -0,0 +1 @@
++hanson.xyz.vpnhotspotmod.util.UpdateChecker8hanson.xyz.vpnhotspotmod.util.UpdateChecker.GitHubUpdate2hanson.xyz.vpnhotspotmod.util.UpdateChecker.SemVer,hanson.xyz.vpnhotspotmod.AlertDialogFragment6hanson.xyz.vpnhotspotmod.AlertDialogFragment.Companionhanson.xyz.vpnhotspotmod.Emptyhanson.xyz.vpnhotspotmod.App&hanson.xyz.vpnhotspotmod.App.Companion%hanson.xyz.vpnhotspotmod.BootReceiver/hanson.xyz.vpnhotspotmod.BootReceiver.Companion/hanson.xyz.vpnhotspotmod.BootReceiver.Startable,hanson.xyz.vpnhotspotmod.BootReceiver.Config%hanson.xyz.vpnhotspotmod.EBegFragment/hanson.xyz.vpnhotspotmod.EBegFragment.Companion5hanson.xyz.vpnhotspotmod.IpNeighbourMonitoringService0hanson.xyz.vpnhotspotmod.LocalOnlyHotspotService:hanson.xyz.vpnhotspotmod.LocalOnlyHotspotService.Companion7hanson.xyz.vpnhotspotmod.LocalOnlyHotspotService.Binder8hanson.xyz.vpnhotspotmod.LocalOnlyHotspotService.Starterhanson.xyz.vpnhotspotmod.manage.TetheringTileService.Bluetooth=hanson.xyz.vpnhotspotmod.manage.TetheringTileService.Ethernet+hanson.xyz.vpnhotspotmod.net.DhcpWorkaround2hanson.xyz.vpnhotspotmod.net.InetAddressComparator(hanson.xyz.vpnhotspotmod.net.IpNeighbour.hanson.xyz.vpnhotspotmod.net.IpNeighbour.State2hanson.xyz.vpnhotspotmod.net.IpNeighbour.Companion"hanson.xyz.vpnhotspotmod.net.IpDev-hanson.xyz.vpnhotspotmod.net.MacAddressCompat7hanson.xyz.vpnhotspotmod.net.MacAddressCompat.Companion$hanson.xyz.vpnhotspotmod.net.Routing.hanson.xyz.vpnhotspotmod.net.Routing.Companion3hanson.xyz.vpnhotspotmod.net.Routing.MasqueradeMode?hanson.xyz.vpnhotspotmod.net.Routing.InterfaceNotFoundException;hanson.xyz.vpnhotspotmod.net.Routing.InterfaceGoneException-hanson.xyz.vpnhotspotmod.net.Routing.Upstream8hanson.xyz.vpnhotspotmod.net.Routing.Upstream.Subrouting+hanson.xyz.vpnhotspotmod.net.Routing.Client-hanson.xyz.vpnhotspotmod.net.Routing.DnsRoute1hanson.xyz.vpnhotspotmod.net.TetherOffloadManager'hanson.xyz.vpnhotspotmod.net.TetherType1hanson.xyz.vpnhotspotmod.net.TetherType.Companion-hanson.xyz.vpnhotspotmod.net.TetheringManagerDhanson.xyz.vpnhotspotmod.net.TetheringManager.StartTetheringCallback=hanson.xyz.vpnhotspotmod.net.TetheringManager.InPlaceExecutorDhanson.xyz.vpnhotspotmod.net.TetheringManager.TetheringEventCallback:hanson.xyz.vpnhotspotmod.net.monitor.DefaultNetworkMonitorhanson.xyz.vpnhotspotmod.net.monitor.UpstreamMonitor.Companion=hanson.xyz.vpnhotspotmod.net.monitor.UpstreamMonitor.Callback/hanson.xyz.vpnhotspotmod.net.monitor.VpnMonitor