From a655813adfa41718bf97c7b82a3394db35ed7a1f Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:11:09 +0800 Subject: [PATCH 01/61] ADD file via upload --- .../AccountDialogTitleBinding.java | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AccountDialogTitleBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AccountDialogTitleBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AccountDialogTitleBinding.java new file mode 100644 index 0000000..3deef18 --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AccountDialogTitleBinding.java @@ -0,0 +1,80 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.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 java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class AccountDialogTitleBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + @NonNull + public final TextView accountDialogSubtitle; + + @NonNull + public final TextView accountDialogTitle; + + private AccountDialogTitleBinding(@NonNull LinearLayout rootView, + @NonNull TextView accountDialogSubtitle, @NonNull TextView accountDialogTitle) { + this.rootView = rootView; + this.accountDialogSubtitle = accountDialogSubtitle; + this.accountDialogTitle = accountDialogTitle; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static AccountDialogTitleBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static AccountDialogTitleBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.account_dialog_title, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static AccountDialogTitleBinding 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.account_dialog_subtitle; + TextView accountDialogSubtitle = ViewBindings.findChildViewById(rootView, id); + if (accountDialogSubtitle == null) { + break missingId; + } + + id = R.id.account_dialog_title; + TextView accountDialogTitle = ViewBindings.findChildViewById(rootView, id); + if (accountDialogTitle == null) { + break missingId; + } + + return new AccountDialogTitleBinding((LinearLayout) rootView, accountDialogSubtitle, + accountDialogTitle); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From 3e948b20681625400c172fdb22c587f7a8993520 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:12:50 +0800 Subject: [PATCH 02/61] ADD file via upload --- .../databinding/ActivityMainBinding.java | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivityMainBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivityMainBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivityMainBinding.java new file mode 100644 index 0000000..136b00e --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivityMainBinding.java @@ -0,0 +1,80 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.Button; +import android.widget.EditText; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.constraintlayout.widget.ConstraintLayout; +import androidx.viewbinding.ViewBinding; +import androidx.viewbinding.ViewBindings; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class ActivityMainBinding implements ViewBinding { + @NonNull + private final ConstraintLayout rootView; + + @NonNull + public final Button button; + + @NonNull + public final EditText editTextTextPersonName; + + private ActivityMainBinding(@NonNull ConstraintLayout rootView, @NonNull Button button, + @NonNull EditText editTextTextPersonName) { + this.rootView = rootView; + this.button = button; + this.editTextTextPersonName = editTextTextPersonName; + } + + @Override + @NonNull + public ConstraintLayout 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.button; + Button button = ViewBindings.findChildViewById(rootView, id); + if (button == null) { + break missingId; + } + + id = R.id.editTextTextPersonName; + EditText editTextTextPersonName = ViewBindings.findChildViewById(rootView, id); + if (editTextTextPersonName == null) { + break missingId; + } + + return new ActivityMainBinding((ConstraintLayout) rootView, button, editTextTextPersonName); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From 2a3e6c8f2101df15ef92e907d9b4770e270ddfc3 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:14:02 +0800 Subject: [PATCH 03/61] ADD file via upload --- .../databinding/ActivitySplashBinding.java | 92 +++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivitySplashBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivitySplashBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivitySplashBinding.java new file mode 100644 index 0000000..6e14895 --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivitySplashBinding.java @@ -0,0 +1,92 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.Button; +import android.widget.FrameLayout; +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 java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class ActivitySplashBinding implements ViewBinding { + @NonNull + private final FrameLayout rootView; + + @NonNull + public final Button dummyButton; + + @NonNull + public final TextView fullscreenContent; + + @NonNull + public final LinearLayout fullscreenContentControls; + + private ActivitySplashBinding(@NonNull FrameLayout rootView, @NonNull Button dummyButton, + @NonNull TextView fullscreenContent, @NonNull LinearLayout fullscreenContentControls) { + this.rootView = rootView; + this.dummyButton = dummyButton; + this.fullscreenContent = fullscreenContent; + this.fullscreenContentControls = fullscreenContentControls; + } + + @Override + @NonNull + public FrameLayout getRoot() { + return rootView; + } + + @NonNull + public static ActivitySplashBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static ActivitySplashBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.activity_splash, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static ActivitySplashBinding 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.dummy_button; + Button dummyButton = ViewBindings.findChildViewById(rootView, id); + if (dummyButton == null) { + break missingId; + } + + id = R.id.fullscreen_content; + TextView fullscreenContent = ViewBindings.findChildViewById(rootView, id); + if (fullscreenContent == null) { + break missingId; + } + + id = R.id.fullscreen_content_controls; + LinearLayout fullscreenContentControls = ViewBindings.findChildViewById(rootView, id); + if (fullscreenContentControls == null) { + break missingId; + } + + return new ActivitySplashBinding((FrameLayout) rootView, dummyButton, fullscreenContent, + fullscreenContentControls); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From d0afa836ef731484cb831f75917d0afb5ade1004 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:15:44 +0800 Subject: [PATCH 04/61] ADD file via upload --- .../databinding/AddAccountTextBinding.java | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AddAccountTextBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AddAccountTextBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AddAccountTextBinding.java new file mode 100644 index 0000000..7227a81 --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AddAccountTextBinding.java @@ -0,0 +1,52 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.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.viewbinding.ViewBinding; +import java.lang.NullPointerException; +import java.lang.Override; +import net.micode.notes.R; + +public final class AddAccountTextBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + private AddAccountTextBinding(@NonNull LinearLayout rootView) { + this.rootView = rootView; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static AddAccountTextBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static AddAccountTextBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.add_account_text, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static AddAccountTextBinding bind(@NonNull View rootView) { + if (rootView == null) { + throw new NullPointerException("rootView"); + } + + return new AddAccountTextBinding((LinearLayout) rootView); + } +} -- 2.34.1 From 42cbf6404b697f3caa985878167d3eccef1d6294 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:16:24 +0800 Subject: [PATCH 05/61] ADD file via upload --- .../databinding/DatetimePickerBinding.java | 99 +++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DatetimePickerBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DatetimePickerBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DatetimePickerBinding.java new file mode 100644 index 0000000..d4f60e1 --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DatetimePickerBinding.java @@ -0,0 +1,99 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.LinearLayout; +import android.widget.NumberPicker; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.viewbinding.ViewBinding; +import androidx.viewbinding.ViewBindings; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class DatetimePickerBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + @NonNull + public final NumberPicker amPm; + + @NonNull + public final NumberPicker date; + + @NonNull + public final NumberPicker hour; + + @NonNull + public final NumberPicker minute; + + private DatetimePickerBinding(@NonNull LinearLayout rootView, @NonNull NumberPicker amPm, + @NonNull NumberPicker date, @NonNull NumberPicker hour, @NonNull NumberPicker minute) { + this.rootView = rootView; + this.amPm = amPm; + this.date = date; + this.hour = hour; + this.minute = minute; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static DatetimePickerBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static DatetimePickerBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.datetime_picker, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static DatetimePickerBinding 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.amPm; + NumberPicker amPm = ViewBindings.findChildViewById(rootView, id); + if (amPm == null) { + break missingId; + } + + id = R.id.date; + NumberPicker date = ViewBindings.findChildViewById(rootView, id); + if (date == null) { + break missingId; + } + + id = R.id.hour; + NumberPicker hour = ViewBindings.findChildViewById(rootView, id); + if (hour == null) { + break missingId; + } + + id = R.id.minute; + NumberPicker minute = ViewBindings.findChildViewById(rootView, id); + if (minute == null) { + break missingId; + } + + return new DatetimePickerBinding((LinearLayout) rootView, amPm, date, hour, minute); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From ef0f434b50cf43ae095d13c5d52f5eb2d3fd873d Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:16:34 +0800 Subject: [PATCH 06/61] ADD file via upload --- .../databinding/DialogEditTextBinding.java | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DialogEditTextBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DialogEditTextBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DialogEditTextBinding.java new file mode 100644 index 0000000..043d4eb --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DialogEditTextBinding.java @@ -0,0 +1,58 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.EditText; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.viewbinding.ViewBinding; +import java.lang.NullPointerException; +import java.lang.Override; +import net.micode.notes.R; + +public final class DialogEditTextBinding implements ViewBinding { + @NonNull + private final EditText rootView; + + @NonNull + public final EditText etFolerName; + + private DialogEditTextBinding(@NonNull EditText rootView, @NonNull EditText etFolerName) { + this.rootView = rootView; + this.etFolerName = etFolerName; + } + + @Override + @NonNull + public EditText getRoot() { + return rootView; + } + + @NonNull + public static DialogEditTextBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static DialogEditTextBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.dialog_edit_text, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static DialogEditTextBinding bind(@NonNull View rootView) { + if (rootView == null) { + throw new NullPointerException("rootView"); + } + + EditText etFolerName = (EditText) rootView; + + return new DialogEditTextBinding((EditText) rootView, etFolerName); + } +} -- 2.34.1 From 2a6341124dd2bf44c6248c95b952c1f6aaa8175b Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:16:43 +0800 Subject: [PATCH 07/61] ADD file via upload --- .../databinding/FingerprintDialogBinding.java | 79 +++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FingerprintDialogBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FingerprintDialogBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FingerprintDialogBinding.java new file mode 100644 index 0000000..e8c73f7 --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FingerprintDialogBinding.java @@ -0,0 +1,79 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.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 java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class FingerprintDialogBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + @NonNull + public final TextView cancel; + + @NonNull + public final TextView errorMsg; + + private FingerprintDialogBinding(@NonNull LinearLayout rootView, @NonNull TextView cancel, + @NonNull TextView errorMsg) { + this.rootView = rootView; + this.cancel = cancel; + this.errorMsg = errorMsg; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static FingerprintDialogBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static FingerprintDialogBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.fingerprint_dialog, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static FingerprintDialogBinding 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.cancel; + TextView cancel = ViewBindings.findChildViewById(rootView, id); + if (cancel == null) { + break missingId; + } + + id = R.id.error_msg; + TextView errorMsg = ViewBindings.findChildViewById(rootView, id); + if (errorMsg == null) { + break missingId; + } + + return new FingerprintDialogBinding((LinearLayout) rootView, cancel, errorMsg); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From bef983b7a7a0eab02ca4b8f08e3ae37d03e349ff Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:16:52 +0800 Subject: [PATCH 08/61] ADD file via upload --- .../databinding/FolderListItemBinding.java | 68 +++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FolderListItemBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FolderListItemBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FolderListItemBinding.java new file mode 100644 index 0000000..b95967f --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FolderListItemBinding.java @@ -0,0 +1,68 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.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 java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class FolderListItemBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + @NonNull + public final TextView tvFolderName; + + private FolderListItemBinding(@NonNull LinearLayout rootView, @NonNull TextView tvFolderName) { + this.rootView = rootView; + this.tvFolderName = tvFolderName; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static FolderListItemBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static FolderListItemBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.folder_list_item, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static FolderListItemBinding 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.tv_folder_name; + TextView tvFolderName = ViewBindings.findChildViewById(rootView, id); + if (tvFolderName == null) { + break missingId; + } + + return new FolderListItemBinding((LinearLayout) rootView, tvFolderName); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From 212edc95117a4552f8f6a28e21b1ac8a75cb7a6e Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:16:59 +0800 Subject: [PATCH 09/61] ADD file via upload --- .../notes/databinding/NoteEditBinding.java | 413 ++++++++++++++++++ 1 file changed, 413 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditBinding.java new file mode 100644 index 0000000..0e912fa --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditBinding.java @@ -0,0 +1,413 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.Button; +import android.widget.FrameLayout; +import android.widget.ImageButton; +import android.widget.ImageView; +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 java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; +import net.micode.notes.ui.NoteEditText; + +public final class NoteEditBinding implements ViewBinding { + @NonNull + private final FrameLayout rootView; + + @NonNull + public final ImageButton addImgBtn; + + @NonNull + public final ImageView btnSetBgColor; + + @NonNull + public final LinearLayout fontSizeSelector; + + @NonNull + public final Button iatBtn; + + @NonNull + public final ImageView ivAlertIcon; + + @NonNull + public final ImageView ivBgBlue; + + @NonNull + public final ImageView ivBgBlueSelect; + + @NonNull + public final ImageView ivBgGreen; + + @NonNull + public final ImageView ivBgGreenSelect; + + @NonNull + public final ImageView ivBgRed; + + @NonNull + public final ImageView ivBgRedSelect; + + @NonNull + public final ImageView ivBgWhite; + + @NonNull + public final ImageView ivBgWhiteSelect; + + @NonNull + public final ImageView ivBgYellow; + + @NonNull + public final ImageView ivBgYellowSelect; + + @NonNull + public final ImageView ivLargeSelect; + + @NonNull + public final ImageView ivMediumSelect; + + @NonNull + public final ImageView ivSmallSelect; + + @NonNull + public final ImageView ivSuperSelect; + + @NonNull + public final FrameLayout llFontLarge; + + @NonNull + public final FrameLayout llFontNormal; + + @NonNull + public final FrameLayout llFontSmall; + + @NonNull + public final FrameLayout llFontSuper; + + @NonNull + public final LinearLayout noteBgColorSelector; + + @NonNull + public final LinearLayout noteEditList; + + @NonNull + public final NoteEditText noteEditView; + + @NonNull + public final LinearLayout noteTitle; + + @NonNull + public final TextView numWord; + + @NonNull + public final LinearLayout svNoteEdit; + + @NonNull + public final TextView tvAlertDate; + + @NonNull + public final ImageButton tvLocked; + + @NonNull + public final TextView tvModifiedDate; + + @NonNull + public final ImageButton tvUnlocked; + + private NoteEditBinding(@NonNull FrameLayout rootView, @NonNull ImageButton addImgBtn, + @NonNull ImageView btnSetBgColor, @NonNull LinearLayout fontSizeSelector, + @NonNull Button iatBtn, @NonNull ImageView ivAlertIcon, @NonNull ImageView ivBgBlue, + @NonNull ImageView ivBgBlueSelect, @NonNull ImageView ivBgGreen, + @NonNull ImageView ivBgGreenSelect, @NonNull ImageView ivBgRed, + @NonNull ImageView ivBgRedSelect, @NonNull ImageView ivBgWhite, + @NonNull ImageView ivBgWhiteSelect, @NonNull ImageView ivBgYellow, + @NonNull ImageView ivBgYellowSelect, @NonNull ImageView ivLargeSelect, + @NonNull ImageView ivMediumSelect, @NonNull ImageView ivSmallSelect, + @NonNull ImageView ivSuperSelect, @NonNull FrameLayout llFontLarge, + @NonNull FrameLayout llFontNormal, @NonNull FrameLayout llFontSmall, + @NonNull FrameLayout llFontSuper, @NonNull LinearLayout noteBgColorSelector, + @NonNull LinearLayout noteEditList, @NonNull NoteEditText noteEditView, + @NonNull LinearLayout noteTitle, @NonNull TextView numWord, @NonNull LinearLayout svNoteEdit, + @NonNull TextView tvAlertDate, @NonNull ImageButton tvLocked, + @NonNull TextView tvModifiedDate, @NonNull ImageButton tvUnlocked) { + this.rootView = rootView; + this.addImgBtn = addImgBtn; + this.btnSetBgColor = btnSetBgColor; + this.fontSizeSelector = fontSizeSelector; + this.iatBtn = iatBtn; + this.ivAlertIcon = ivAlertIcon; + this.ivBgBlue = ivBgBlue; + this.ivBgBlueSelect = ivBgBlueSelect; + this.ivBgGreen = ivBgGreen; + this.ivBgGreenSelect = ivBgGreenSelect; + this.ivBgRed = ivBgRed; + this.ivBgRedSelect = ivBgRedSelect; + this.ivBgWhite = ivBgWhite; + this.ivBgWhiteSelect = ivBgWhiteSelect; + this.ivBgYellow = ivBgYellow; + this.ivBgYellowSelect = ivBgYellowSelect; + this.ivLargeSelect = ivLargeSelect; + this.ivMediumSelect = ivMediumSelect; + this.ivSmallSelect = ivSmallSelect; + this.ivSuperSelect = ivSuperSelect; + this.llFontLarge = llFontLarge; + this.llFontNormal = llFontNormal; + this.llFontSmall = llFontSmall; + this.llFontSuper = llFontSuper; + this.noteBgColorSelector = noteBgColorSelector; + this.noteEditList = noteEditList; + this.noteEditView = noteEditView; + this.noteTitle = noteTitle; + this.numWord = numWord; + this.svNoteEdit = svNoteEdit; + this.tvAlertDate = tvAlertDate; + this.tvLocked = tvLocked; + this.tvModifiedDate = tvModifiedDate; + this.tvUnlocked = tvUnlocked; + } + + @Override + @NonNull + public FrameLayout getRoot() { + return rootView; + } + + @NonNull + public static NoteEditBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static NoteEditBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.note_edit, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static NoteEditBinding 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.add_img_btn; + ImageButton addImgBtn = ViewBindings.findChildViewById(rootView, id); + if (addImgBtn == null) { + break missingId; + } + + id = R.id.btn_set_bg_color; + ImageView btnSetBgColor = ViewBindings.findChildViewById(rootView, id); + if (btnSetBgColor == null) { + break missingId; + } + + id = R.id.font_size_selector; + LinearLayout fontSizeSelector = ViewBindings.findChildViewById(rootView, id); + if (fontSizeSelector == null) { + break missingId; + } + + id = R.id.iatBtn; + Button iatBtn = ViewBindings.findChildViewById(rootView, id); + if (iatBtn == null) { + break missingId; + } + + id = R.id.iv_alert_icon; + ImageView ivAlertIcon = ViewBindings.findChildViewById(rootView, id); + if (ivAlertIcon == null) { + break missingId; + } + + id = R.id.iv_bg_blue; + ImageView ivBgBlue = ViewBindings.findChildViewById(rootView, id); + if (ivBgBlue == null) { + break missingId; + } + + id = R.id.iv_bg_blue_select; + ImageView ivBgBlueSelect = ViewBindings.findChildViewById(rootView, id); + if (ivBgBlueSelect == null) { + break missingId; + } + + id = R.id.iv_bg_green; + ImageView ivBgGreen = ViewBindings.findChildViewById(rootView, id); + if (ivBgGreen == null) { + break missingId; + } + + id = R.id.iv_bg_green_select; + ImageView ivBgGreenSelect = ViewBindings.findChildViewById(rootView, id); + if (ivBgGreenSelect == null) { + break missingId; + } + + id = R.id.iv_bg_red; + ImageView ivBgRed = ViewBindings.findChildViewById(rootView, id); + if (ivBgRed == null) { + break missingId; + } + + id = R.id.iv_bg_red_select; + ImageView ivBgRedSelect = ViewBindings.findChildViewById(rootView, id); + if (ivBgRedSelect == null) { + break missingId; + } + + id = R.id.iv_bg_white; + ImageView ivBgWhite = ViewBindings.findChildViewById(rootView, id); + if (ivBgWhite == null) { + break missingId; + } + + id = R.id.iv_bg_white_select; + ImageView ivBgWhiteSelect = ViewBindings.findChildViewById(rootView, id); + if (ivBgWhiteSelect == null) { + break missingId; + } + + id = R.id.iv_bg_yellow; + ImageView ivBgYellow = ViewBindings.findChildViewById(rootView, id); + if (ivBgYellow == null) { + break missingId; + } + + id = R.id.iv_bg_yellow_select; + ImageView ivBgYellowSelect = ViewBindings.findChildViewById(rootView, id); + if (ivBgYellowSelect == null) { + break missingId; + } + + id = R.id.iv_large_select; + ImageView ivLargeSelect = ViewBindings.findChildViewById(rootView, id); + if (ivLargeSelect == null) { + break missingId; + } + + id = R.id.iv_medium_select; + ImageView ivMediumSelect = ViewBindings.findChildViewById(rootView, id); + if (ivMediumSelect == null) { + break missingId; + } + + id = R.id.iv_small_select; + ImageView ivSmallSelect = ViewBindings.findChildViewById(rootView, id); + if (ivSmallSelect == null) { + break missingId; + } + + id = R.id.iv_super_select; + ImageView ivSuperSelect = ViewBindings.findChildViewById(rootView, id); + if (ivSuperSelect == null) { + break missingId; + } + + id = R.id.ll_font_large; + FrameLayout llFontLarge = ViewBindings.findChildViewById(rootView, id); + if (llFontLarge == null) { + break missingId; + } + + id = R.id.ll_font_normal; + FrameLayout llFontNormal = ViewBindings.findChildViewById(rootView, id); + if (llFontNormal == null) { + break missingId; + } + + id = R.id.ll_font_small; + FrameLayout llFontSmall = ViewBindings.findChildViewById(rootView, id); + if (llFontSmall == null) { + break missingId; + } + + id = R.id.ll_font_super; + FrameLayout llFontSuper = ViewBindings.findChildViewById(rootView, id); + if (llFontSuper == null) { + break missingId; + } + + id = R.id.note_bg_color_selector; + LinearLayout noteBgColorSelector = ViewBindings.findChildViewById(rootView, id); + if (noteBgColorSelector == null) { + break missingId; + } + + id = R.id.note_edit_list; + LinearLayout noteEditList = ViewBindings.findChildViewById(rootView, id); + if (noteEditList == null) { + break missingId; + } + + id = R.id.note_edit_view; + NoteEditText noteEditView = ViewBindings.findChildViewById(rootView, id); + if (noteEditView == null) { + break missingId; + } + + id = R.id.note_title; + LinearLayout noteTitle = ViewBindings.findChildViewById(rootView, id); + if (noteTitle == null) { + break missingId; + } + + id = R.id.num_word; + TextView numWord = ViewBindings.findChildViewById(rootView, id); + if (numWord == null) { + break missingId; + } + + id = R.id.sv_note_edit; + LinearLayout svNoteEdit = ViewBindings.findChildViewById(rootView, id); + if (svNoteEdit == null) { + break missingId; + } + + id = R.id.tv_alert_date; + TextView tvAlertDate = ViewBindings.findChildViewById(rootView, id); + if (tvAlertDate == null) { + break missingId; + } + + id = R.id.tv_locked; + ImageButton tvLocked = ViewBindings.findChildViewById(rootView, id); + if (tvLocked == null) { + break missingId; + } + + id = R.id.tv_modified_date; + TextView tvModifiedDate = ViewBindings.findChildViewById(rootView, id); + if (tvModifiedDate == null) { + break missingId; + } + + id = R.id.tv_unlocked; + ImageButton tvUnlocked = ViewBindings.findChildViewById(rootView, id); + if (tvUnlocked == null) { + break missingId; + } + + return new NoteEditBinding((FrameLayout) rootView, addImgBtn, btnSetBgColor, fontSizeSelector, + iatBtn, ivAlertIcon, ivBgBlue, ivBgBlueSelect, ivBgGreen, ivBgGreenSelect, ivBgRed, + ivBgRedSelect, ivBgWhite, ivBgWhiteSelect, ivBgYellow, ivBgYellowSelect, ivLargeSelect, + ivMediumSelect, ivSmallSelect, ivSuperSelect, llFontLarge, llFontNormal, llFontSmall, + llFontSuper, noteBgColorSelector, noteEditList, noteEditView, noteTitle, numWord, + svNoteEdit, tvAlertDate, tvLocked, tvModifiedDate, tvUnlocked); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From 841854e85a07b35fc8f065245892383f2e823e7d Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:17:06 +0800 Subject: [PATCH 10/61] ADD file via upload --- .../databinding/NoteEditListItemBinding.java | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditListItemBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditListItemBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditListItemBinding.java new file mode 100644 index 0000000..a6bc2fc --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditListItemBinding.java @@ -0,0 +1,80 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.CheckBox; +import android.widget.LinearLayout; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.viewbinding.ViewBinding; +import androidx.viewbinding.ViewBindings; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; +import net.micode.notes.ui.NoteEditText; + +public final class NoteEditListItemBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + @NonNull + public final CheckBox cbEditItem; + + @NonNull + public final NoteEditText etEditText; + + private NoteEditListItemBinding(@NonNull LinearLayout rootView, @NonNull CheckBox cbEditItem, + @NonNull NoteEditText etEditText) { + this.rootView = rootView; + this.cbEditItem = cbEditItem; + this.etEditText = etEditText; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static NoteEditListItemBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static NoteEditListItemBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.note_edit_list_item, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static NoteEditListItemBinding 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.cb_edit_item; + CheckBox cbEditItem = ViewBindings.findChildViewById(rootView, id); + if (cbEditItem == null) { + break missingId; + } + + id = R.id.et_edit_text; + NoteEditText etEditText = ViewBindings.findChildViewById(rootView, id); + if (etEditText == null) { + break missingId; + } + + return new NoteEditListItemBinding((LinearLayout) rootView, cbEditItem, etEditText); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From 33b2741273fdb4b3a7875fa7c466d1ee2387cf8f Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:17:19 +0800 Subject: [PATCH 11/61] ADD file via upload --- .../notes/databinding/NoteItemBinding.java | 119 ++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteItemBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteItemBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteItemBinding.java new file mode 100644 index 0000000..d261ec6 --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteItemBinding.java @@ -0,0 +1,119 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.CheckBox; +import android.widget.FrameLayout; +import android.widget.ImageView; +import android.widget.TextView; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.viewbinding.ViewBinding; +import androidx.viewbinding.ViewBindings; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class NoteItemBinding implements ViewBinding { + @NonNull + private final FrameLayout rootView; + + @NonNull + public final CheckBox checkbox; + + @NonNull + public final ImageView ivAlertIcon; + + @NonNull + public final FrameLayout noteItem; + + @NonNull + public final TextView tvName; + + @NonNull + public final TextView tvTime; + + @NonNull + public final TextView tvTitle; + + private NoteItemBinding(@NonNull FrameLayout rootView, @NonNull CheckBox checkbox, + @NonNull ImageView ivAlertIcon, @NonNull FrameLayout noteItem, @NonNull TextView tvName, + @NonNull TextView tvTime, @NonNull TextView tvTitle) { + this.rootView = rootView; + this.checkbox = checkbox; + this.ivAlertIcon = ivAlertIcon; + this.noteItem = noteItem; + this.tvName = tvName; + this.tvTime = tvTime; + this.tvTitle = tvTitle; + } + + @Override + @NonNull + public FrameLayout getRoot() { + return rootView; + } + + @NonNull + public static NoteItemBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static NoteItemBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.note_item, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static NoteItemBinding 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 = com.google.android.material.R.id.checkbox; + CheckBox checkbox = ViewBindings.findChildViewById(rootView, id); + if (checkbox == null) { + break missingId; + } + + id = R.id.iv_alert_icon; + ImageView ivAlertIcon = ViewBindings.findChildViewById(rootView, id); + if (ivAlertIcon == null) { + break missingId; + } + + FrameLayout noteItem = (FrameLayout) rootView; + + id = R.id.tv_name; + TextView tvName = ViewBindings.findChildViewById(rootView, id); + if (tvName == null) { + break missingId; + } + + id = R.id.tv_time; + TextView tvTime = ViewBindings.findChildViewById(rootView, id); + if (tvTime == null) { + break missingId; + } + + id = R.id.tv_title; + TextView tvTitle = ViewBindings.findChildViewById(rootView, id); + if (tvTitle == null) { + break missingId; + } + + return new NoteItemBinding((FrameLayout) rootView, checkbox, ivAlertIcon, noteItem, tvName, + tvTime, tvTitle); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From d3a88f33d70fd771ef9b0335c2f927d7138f7af4 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:17:29 +0800 Subject: [PATCH 12/61] ADD file via upload --- .../notes/databinding/NoteListBinding.java | 91 +++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListBinding.java new file mode 100644 index 0000000..257008e --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListBinding.java @@ -0,0 +1,91 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.Button; +import android.widget.FrameLayout; +import android.widget.ListView; +import android.widget.TextView; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.viewbinding.ViewBinding; +import androidx.viewbinding.ViewBindings; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class NoteListBinding implements ViewBinding { + @NonNull + private final FrameLayout rootView; + + @NonNull + public final Button btnNewNote; + + @NonNull + public final ListView notesList; + + @NonNull + public final TextView tvTitleBar; + + private NoteListBinding(@NonNull FrameLayout rootView, @NonNull Button btnNewNote, + @NonNull ListView notesList, @NonNull TextView tvTitleBar) { + this.rootView = rootView; + this.btnNewNote = btnNewNote; + this.notesList = notesList; + this.tvTitleBar = tvTitleBar; + } + + @Override + @NonNull + public FrameLayout getRoot() { + return rootView; + } + + @NonNull + public static NoteListBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static NoteListBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.note_list, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static NoteListBinding 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.btn_new_note; + Button btnNewNote = ViewBindings.findChildViewById(rootView, id); + if (btnNewNote == null) { + break missingId; + } + + id = R.id.notes_list; + ListView notesList = ViewBindings.findChildViewById(rootView, id); + if (notesList == null) { + break missingId; + } + + id = R.id.tv_title_bar; + TextView tvTitleBar = ViewBindings.findChildViewById(rootView, id); + if (tvTitleBar == null) { + break missingId; + } + + return new NoteListBinding((FrameLayout) rootView, btnNewNote, notesList, tvTitleBar); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From 81990cff61fc42049ce5fd85d6573fbd517a41c4 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:17:35 +0800 Subject: [PATCH 13/61] ADD file via upload --- .../NoteListDropdownMenuBinding.java | 75 +++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListDropdownMenuBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListDropdownMenuBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListDropdownMenuBinding.java new file mode 100644 index 0000000..6b9c889 --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListDropdownMenuBinding.java @@ -0,0 +1,75 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.Button; +import android.widget.LinearLayout; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.viewbinding.ViewBinding; +import androidx.viewbinding.ViewBindings; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class NoteListDropdownMenuBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + @NonNull + public final LinearLayout navigationBar; + + @NonNull + public final Button selectionMenu; + + private NoteListDropdownMenuBinding(@NonNull LinearLayout rootView, + @NonNull LinearLayout navigationBar, @NonNull Button selectionMenu) { + this.rootView = rootView; + this.navigationBar = navigationBar; + this.selectionMenu = selectionMenu; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static NoteListDropdownMenuBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static NoteListDropdownMenuBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.note_list_dropdown_menu, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static NoteListDropdownMenuBinding 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: { + LinearLayout navigationBar = (LinearLayout) rootView; + + id = R.id.selection_menu; + Button selectionMenu = ViewBindings.findChildViewById(rootView, id); + if (selectionMenu == null) { + break missingId; + } + + return new NoteListDropdownMenuBinding((LinearLayout) rootView, navigationBar, selectionMenu); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From 2fa78e8805112190a4fb98933627f59f0b898e00 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:17:43 +0800 Subject: [PATCH 14/61] ADD file via upload --- .../databinding/NoteListFooterBinding.java | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListFooterBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListFooterBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListFooterBinding.java new file mode 100644 index 0000000..be88509 --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListFooterBinding.java @@ -0,0 +1,51 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.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 java.lang.NullPointerException; +import java.lang.Override; +import net.micode.notes.R; + +public final class NoteListFooterBinding implements ViewBinding { + @NonNull + private final View rootView; + + private NoteListFooterBinding(@NonNull View rootView) { + this.rootView = rootView; + } + + @Override + @NonNull + public View getRoot() { + return rootView; + } + + @NonNull + public static NoteListFooterBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static NoteListFooterBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.note_list_footer, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static NoteListFooterBinding bind(@NonNull View rootView) { + if (rootView == null) { + throw new NullPointerException("rootView"); + } + + return new NoteListFooterBinding(rootView); + } +} -- 2.34.1 From 1a7ec8fbb590dc6a02713e6cd1cd435910282a84 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:17:54 +0800 Subject: [PATCH 15/61] ADD file via upload --- .../databinding/SettingsHeaderBinding.java | 81 +++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/SettingsHeaderBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/SettingsHeaderBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/SettingsHeaderBinding.java new file mode 100644 index 0000000..9149f21 --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/SettingsHeaderBinding.java @@ -0,0 +1,81 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.Button; +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 java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class SettingsHeaderBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + @NonNull + public final TextView prefenereceSyncStatusTextview; + + @NonNull + public final Button preferenceSyncButton; + + private SettingsHeaderBinding(@NonNull LinearLayout rootView, + @NonNull TextView prefenereceSyncStatusTextview, @NonNull Button preferenceSyncButton) { + this.rootView = rootView; + this.prefenereceSyncStatusTextview = prefenereceSyncStatusTextview; + this.preferenceSyncButton = preferenceSyncButton; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static SettingsHeaderBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static SettingsHeaderBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.settings_header, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static SettingsHeaderBinding 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.prefenerece_sync_status_textview; + TextView prefenereceSyncStatusTextview = ViewBindings.findChildViewById(rootView, id); + if (prefenereceSyncStatusTextview == null) { + break missingId; + } + + id = R.id.preference_sync_button; + Button preferenceSyncButton = ViewBindings.findChildViewById(rootView, id); + if (preferenceSyncButton == null) { + break missingId; + } + + return new SettingsHeaderBinding((LinearLayout) rootView, prefenereceSyncStatusTextview, + preferenceSyncButton); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From 0d2c41306373398ee9a1358545c1276a229d89ac Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:18:00 +0800 Subject: [PATCH 16/61] ADD file via upload --- .../notes/databinding/Widget2xBinding.java | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget2xBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget2xBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget2xBinding.java new file mode 100644 index 0000000..e55e28a --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget2xBinding.java @@ -0,0 +1,80 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.FrameLayout; +import android.widget.ImageView; +import android.widget.TextView; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.viewbinding.ViewBinding; +import androidx.viewbinding.ViewBindings; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class Widget2xBinding implements ViewBinding { + @NonNull + private final FrameLayout rootView; + + @NonNull + public final ImageView widgetBgImage; + + @NonNull + public final TextView widgetText; + + private Widget2xBinding(@NonNull FrameLayout rootView, @NonNull ImageView widgetBgImage, + @NonNull TextView widgetText) { + this.rootView = rootView; + this.widgetBgImage = widgetBgImage; + this.widgetText = widgetText; + } + + @Override + @NonNull + public FrameLayout getRoot() { + return rootView; + } + + @NonNull + public static Widget2xBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static Widget2xBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.widget_2x, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static Widget2xBinding 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.widget_bg_image; + ImageView widgetBgImage = ViewBindings.findChildViewById(rootView, id); + if (widgetBgImage == null) { + break missingId; + } + + id = R.id.widget_text; + TextView widgetText = ViewBindings.findChildViewById(rootView, id); + if (widgetText == null) { + break missingId; + } + + return new Widget2xBinding((FrameLayout) rootView, widgetBgImage, widgetText); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From 7522e32abf22efd45438514900395f4e63b26902 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:18:07 +0800 Subject: [PATCH 17/61] ADD file via upload --- .../notes/databinding/Widget4xBinding.java | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget4xBinding.java diff --git a/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget4xBinding.java b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget4xBinding.java new file mode 100644 index 0000000..85b6cff --- /dev/null +++ b/src/Notes-master/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget4xBinding.java @@ -0,0 +1,80 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.FrameLayout; +import android.widget.ImageView; +import android.widget.TextView; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.viewbinding.ViewBinding; +import androidx.viewbinding.ViewBindings; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class Widget4xBinding implements ViewBinding { + @NonNull + private final FrameLayout rootView; + + @NonNull + public final ImageView widgetBgImage; + + @NonNull + public final TextView widgetText; + + private Widget4xBinding(@NonNull FrameLayout rootView, @NonNull ImageView widgetBgImage, + @NonNull TextView widgetText) { + this.rootView = rootView; + this.widgetBgImage = widgetBgImage; + this.widgetText = widgetText; + } + + @Override + @NonNull + public FrameLayout getRoot() { + return rootView; + } + + @NonNull + public static Widget4xBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static Widget4xBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.widget_4x, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static Widget4xBinding 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.widget_bg_image; + ImageView widgetBgImage = ViewBindings.findChildViewById(rootView, id); + if (widgetBgImage == null) { + break missingId; + } + + id = R.id.widget_text; + TextView widgetText = ViewBindings.findChildViewById(rootView, id); + if (widgetText == null) { + break missingId; + } + + return new Widget4xBinding((FrameLayout) rootView, widgetBgImage, widgetText); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} -- 2.34.1 From 632b58bf5b31d8b049068eb9de958bb77c012414 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:20:59 +0800 Subject: [PATCH 18/61] ADD file via upload --- .../debug/net/micode/notes/BuildConfig.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/Notes-master/app/build/generated/source/buildConfig/debug/net/micode/notes/BuildConfig.java diff --git a/src/Notes-master/app/build/generated/source/buildConfig/debug/net/micode/notes/BuildConfig.java b/src/Notes-master/app/build/generated/source/buildConfig/debug/net/micode/notes/BuildConfig.java new file mode 100644 index 0000000..287d38f --- /dev/null +++ b/src/Notes-master/app/build/generated/source/buildConfig/debug/net/micode/notes/BuildConfig.java @@ -0,0 +1,12 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package net.micode.notes; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String APPLICATION_ID = "net.micode.notes"; + public static final String BUILD_TYPE = "debug"; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "1.0"; +} -- 2.34.1 From 1f0cc116e4790bd55832301f47c26248991a34c2 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:26:15 +0800 Subject: [PATCH 19/61] ADD file via upload --- .../annotation_processor_list/debug/annotationProcessors.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/annotation_processor_list/debug/annotationProcessors.json diff --git a/src/Notes-master/app/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/src/Notes-master/app/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/src/Notes-master/app/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file -- 2.34.1 From 3ebf2abeaa3ac00ffd51dcb5263ad148a2c93ff2 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:28:07 +0800 Subject: [PATCH 20/61] ADD file via upload --- .../intermediates/app_metadata/debug/app-metadata.properties | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/Notes-master/app/build/intermediates/app_metadata/debug/app-metadata.properties diff --git a/src/Notes-master/app/build/intermediates/app_metadata/debug/app-metadata.properties b/src/Notes-master/app/build/intermediates/app_metadata/debug/app-metadata.properties new file mode 100644 index 0000000..418c461 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/app_metadata/debug/app-metadata.properties @@ -0,0 +1,2 @@ +appMetadataVersion=1.0 +androidGradlePluginVersion=7.0.2 \ No newline at end of file -- 2.34.1 From ebaa5972f126a802c7f975ebaafb4f463bc63df0 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:29:40 +0800 Subject: [PATCH 21/61] ADD file via upload --- .../debug/output-metadata.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/Notes-master/app/build/intermediates/compatible_screen_manifest/debug/output-metadata.json diff --git a/src/Notes-master/app/build/intermediates/compatible_screen_manifest/debug/output-metadata.json b/src/Notes-master/app/build/intermediates/compatible_screen_manifest/debug/output-metadata.json new file mode 100644 index 0000000..714f651 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/compatible_screen_manifest/debug/output-metadata.json @@ -0,0 +1,10 @@ +{ + "version": 3, + "artifactType": { + "type": "COMPATIBLE_SCREEN_MANIFEST", + "kind": "Directory" + }, + "applicationId": "net.micode.notes", + "variantName": "debug", + "elements": [] +} \ No newline at end of file -- 2.34.1 From 03b7933ba6422f1fe3257a29e898886f4b9940e6 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:31:18 +0800 Subject: [PATCH 22/61] ADD file via upload --- .../debug/R.jar | Bin 0 -> 745824 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/Notes-master/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar diff --git a/src/Notes-master/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar b/src/Notes-master/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000000000000000000000000000000000000..7a5438e6e049521819b4ff06911fa099f275df4a GIT binary patch literal 745824 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 Date: Mon, 3 Jun 2024 23:32:37 +0800 Subject: [PATCH 23/61] ADD file via upload --- .../out/net.micode.notes-binding_classes.json | Bin 0 -> 7374 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_base_class_log_artifact/debug/out/net.micode.notes-binding_classes.json diff --git a/src/Notes-master/app/build/intermediates/data_binding_base_class_log_artifact/debug/out/net.micode.notes-binding_classes.json b/src/Notes-master/app/build/intermediates/data_binding_base_class_log_artifact/debug/out/net.micode.notes-binding_classes.json new file mode 100644 index 0000000000000000000000000000000000000000..e288b8043bc73cae0789ea8ea70c800ba63737b0 GIT binary patch literal 7374 zcmeI1%}c{D7{=eTe}(icJ%}f7${Y$#gbh51l+1Rs?5l3wrpW$v^?91cr5`5`W?(4W znlx#iYNb52Ay~eioHhA~4 z&^j#I+>iXOMO}(<$%=9uGg9DKq|iM7VfH9bRVW^33#V!ZnA! zRr`FdJQLh69TDqb264_9P501d6nSFRsDn`iS2D&QF0IUtH?B%e-pWi=#dwcV8f_{o z;+Bc*DTb0=~y~T|XUrsTnNiV`(iU@=jN4rblHC>V0tGX>U-IR(vGqYogKuCK? zH;n-B2mba_={&`Q&t@kseyvH*!#-5B>q1<{rV>{mCHOcVoaEX;6 z!|y`2hz)rT#S^WyqiDj|lcCnB>Fbs1Jk2(mj1ct+t*bqAonO~d Date: Mon, 3 Jun 2024 23:34:36 +0800 Subject: [PATCH 24/61] ADD file via upload --- .../debugout/account_dialog_title-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/account_dialog_title-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/account_dialog_title-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/account_dialog_title-layout.xml new file mode 100644 index 0000000..a55380d --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/account_dialog_title-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From c0cfd6f4ac58210357b1ae1734a0cfd9e51e73a6 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:35:07 +0800 Subject: [PATCH 25/61] ADD file via upload --- .../debugout/activity_main-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/activity_main-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/activity_main-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/activity_main-layout.xml new file mode 100644 index 0000000..952cf07 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/activity_main-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From e922f0c0e3a7d274a3f66c62288eac2e8aaeb975 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:35:14 +0800 Subject: [PATCH 26/61] ADD file via upload --- .../debugout/activity_splash-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/activity_splash-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/activity_splash-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/activity_splash-layout.xml new file mode 100644 index 0000000..6d3de37 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/activity_splash-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 4d05b03bd5e53c30cee858996a32ee7698b01ed9 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:35:20 +0800 Subject: [PATCH 27/61] ADD file via upload --- .../debugout/add_account_text-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/add_account_text-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/add_account_text-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/add_account_text-layout.xml new file mode 100644 index 0000000..578a0ec --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/add_account_text-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 1af461114bfa692d73fc4f34787832e3b5329fb1 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:35:30 +0800 Subject: [PATCH 28/61] ADD file via upload --- .../debugout/datetime_picker-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/datetime_picker-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/datetime_picker-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/datetime_picker-layout.xml new file mode 100644 index 0000000..49537f1 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/datetime_picker-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 06dac6e817a868f04bef6fc0138d18c8ed962456 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:35:38 +0800 Subject: [PATCH 29/61] ADD file via upload --- .../debugout/dialog_edit_text-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/dialog_edit_text-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/dialog_edit_text-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/dialog_edit_text-layout.xml new file mode 100644 index 0000000..0a21998 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/dialog_edit_text-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 0c99919a5303a85318876ed1997973d014bf617f Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:35:45 +0800 Subject: [PATCH 30/61] ADD file via upload --- .../debugout/fingerprint_dialog-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/fingerprint_dialog-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/fingerprint_dialog-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/fingerprint_dialog-layout.xml new file mode 100644 index 0000000..84aee93 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/fingerprint_dialog-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 2d1c95dc8f0227d84b20267c3e37932223286949 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:35:53 +0800 Subject: [PATCH 31/61] ADD file via upload --- .../debugout/folder_list_item-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/folder_list_item-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/folder_list_item-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/folder_list_item-layout.xml new file mode 100644 index 0000000..34472de --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/folder_list_item-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From c63c886e625f660edafaee04d2ac29989350f8f1 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:35:58 +0800 Subject: [PATCH 32/61] ADD file via upload --- .../debugout/note_edit_list_item-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_edit_list_item-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_edit_list_item-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_edit_list_item-layout.xml new file mode 100644 index 0000000..eed3afc --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_edit_list_item-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 91a0f4f38cfb7bacb52f7cef04ee0c456f7b3f5e Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:36:05 +0800 Subject: [PATCH 33/61] ADD file via upload --- .../debugout/note_edit-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_edit-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_edit-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_edit-layout.xml new file mode 100644 index 0000000..bfc25ba --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_edit-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 2a338ea5a43b52218810249eb37caed802e65b38 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:36:23 +0800 Subject: [PATCH 34/61] ADD file via upload --- .../debugout/note_item-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_item-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_item-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_item-layout.xml new file mode 100644 index 0000000..be62ced --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_item-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 82541d7841aaff7cc2dea8870502e8c23d4e7fe1 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:36:30 +0800 Subject: [PATCH 35/61] ADD file via upload --- .../debugout/note_list_dropdown_menu-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_list_dropdown_menu-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_list_dropdown_menu-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_list_dropdown_menu-layout.xml new file mode 100644 index 0000000..e29bc0b --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_list_dropdown_menu-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From dc8211070e725308d17b263e006001e61b65ee58 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:36:35 +0800 Subject: [PATCH 36/61] ADD file via upload --- .../debugout/note_list_footer-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_list_footer-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_list_footer-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_list_footer-layout.xml new file mode 100644 index 0000000..5465737 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_list_footer-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From d02635e3779e882ae0edc2dc6bae3188e1e11685 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:36:41 +0800 Subject: [PATCH 37/61] ADD file via upload --- .../debugout/note_list-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_list-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_list-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_list-layout.xml new file mode 100644 index 0000000..96f1bb6 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/note_list-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From d6079def71dd498d2127409c401123e536f8a9be Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:36:47 +0800 Subject: [PATCH 38/61] ADD file via upload --- .../debugout/settings_header-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/settings_header-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/settings_header-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/settings_header-layout.xml new file mode 100644 index 0000000..114055f --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/settings_header-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From bd075fe2b99230777f60d5f520e2d9c57d3cad24 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:36:54 +0800 Subject: [PATCH 39/61] ADD file via upload --- .../debugout/widget_2x-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/widget_2x-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/widget_2x-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/widget_2x-layout.xml new file mode 100644 index 0000000..3b1b0b6 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/widget_2x-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From bb12e7fc2ca184aacc669a556551dd5310ec62bb Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:37:01 +0800 Subject: [PATCH 40/61] ADD file via upload --- .../debugout/widget_4x-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/widget_4x-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/widget_4x-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/widget_4x-layout.xml new file mode 100644 index 0000000..fd60bdc --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_merge/debugout/widget_4x-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 6f513fc95b1c5ac8c4e351e000ffd0dee72d0b63 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:39:43 +0800 Subject: [PATCH 41/61] ADD file via upload --- .../debug/out/account_dialog_title-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/account_dialog_title-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/account_dialog_title-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/account_dialog_title-layout.xml new file mode 100644 index 0000000..a55380d --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/account_dialog_title-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From cb76f5358300d3b95c2ff5f6a165cc0106658061 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:39:52 +0800 Subject: [PATCH 42/61] ADD file via upload --- .../debug/out/activity_main-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_main-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_main-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_main-layout.xml new file mode 100644 index 0000000..952cf07 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_main-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From b54e2723b049c890a1d4b9af2a62a6677e52208b Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:40:02 +0800 Subject: [PATCH 43/61] ADD file via upload --- .../debug/out/activity_splash-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_splash-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_splash-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_splash-layout.xml new file mode 100644 index 0000000..6d3de37 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_splash-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 1b821db9847b7cd71d8bd28188c1976a4ee30ba9 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:40:09 +0800 Subject: [PATCH 44/61] ADD file via upload --- .../debug/out/add_account_text-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/add_account_text-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/add_account_text-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/add_account_text-layout.xml new file mode 100644 index 0000000..578a0ec --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/add_account_text-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 6780d01a0d00fc2d9e110e0cecac3bc1b5b36ed5 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:40:15 +0800 Subject: [PATCH 45/61] ADD file via upload --- .../debug/out/datetime_picker-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/datetime_picker-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/datetime_picker-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/datetime_picker-layout.xml new file mode 100644 index 0000000..49537f1 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/datetime_picker-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 76ae01b4363a38b8b21866e17a9e504fcb37a698 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:40:20 +0800 Subject: [PATCH 46/61] ADD file via upload --- .../debug/out/dialog_edit_text-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/dialog_edit_text-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/dialog_edit_text-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/dialog_edit_text-layout.xml new file mode 100644 index 0000000..0a21998 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/dialog_edit_text-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 7888a2b2912850095b1ab1be5cf97f339144e7da Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:40:30 +0800 Subject: [PATCH 47/61] ADD file via upload --- .../debug/out/fingerprint_dialog-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/fingerprint_dialog-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/fingerprint_dialog-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/fingerprint_dialog-layout.xml new file mode 100644 index 0000000..84aee93 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/fingerprint_dialog-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From c3204c9e1148aff40f88dc4e1ab4068697844f01 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:40:38 +0800 Subject: [PATCH 48/61] ADD file via upload --- .../debug/out/folder_list_item-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/folder_list_item-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/folder_list_item-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/folder_list_item-layout.xml new file mode 100644 index 0000000..34472de --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/folder_list_item-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 8b4c6d3c88541d1a5ca5c850b70097121c3d3a9f Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:40:46 +0800 Subject: [PATCH 49/61] ADD file via upload --- .../debug/out/note_edit_list_item-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit_list_item-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit_list_item-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit_list_item-layout.xml new file mode 100644 index 0000000..eed3afc --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit_list_item-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 84137a7d7521f521cd91bf203407786fe03d15fe Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:40:56 +0800 Subject: [PATCH 50/61] ADD file via upload --- .../debug/out/note_edit-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit-layout.xml new file mode 100644 index 0000000..bfc25ba --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From ff45f5b76811d1c536fa9476788b9b3acf6cb7a5 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:41:04 +0800 Subject: [PATCH 51/61] ADD file via upload --- .../debug/out/note_item-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_item-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_item-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_item-layout.xml new file mode 100644 index 0000000..be62ced --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_item-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 8327db89be168f97103e6cb0d8b0bdf7fcc66193 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:41:10 +0800 Subject: [PATCH 52/61] ADD file via upload --- .../debug/out/note_list_dropdown_menu-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_dropdown_menu-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_dropdown_menu-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_dropdown_menu-layout.xml new file mode 100644 index 0000000..e29bc0b --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_dropdown_menu-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 4a64a5c0dbbb715e2c525eed023ed73f0a6f1c8c Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:41:25 +0800 Subject: [PATCH 53/61] ADD file via upload --- .../debug/out/note_list_footer-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_footer-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_footer-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_footer-layout.xml new file mode 100644 index 0000000..5465737 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_footer-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 9c87434100d4c0d05670958e079ef365372b329c Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:41:31 +0800 Subject: [PATCH 54/61] ADD file via upload --- .../debug/out/note_list-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list-layout.xml new file mode 100644 index 0000000..96f1bb6 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From c3390464b84919a89365567b717b4a8ed46ebbc0 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:41:40 +0800 Subject: [PATCH 55/61] ADD file via upload --- .../debug/out/settings_header-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/settings_header-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/settings_header-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/settings_header-layout.xml new file mode 100644 index 0000000..114055f --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/settings_header-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From f6b15aee343f37d5b26b30560e58c0b4dba75ba3 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:41:47 +0800 Subject: [PATCH 56/61] ADD file via upload --- .../debug/out/widget_2x-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_2x-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_2x-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_2x-layout.xml new file mode 100644 index 0000000..3b1b0b6 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_2x-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From b97d54386d2d68f107acc3075dce5605e5e1f35c Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:41:54 +0800 Subject: [PATCH 57/61] ADD file via upload --- .../debug/out/widget_4x-layout.xml | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_4x-layout.xml diff --git a/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_4x-layout.xml b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_4x-layout.xml new file mode 100644 index 0000000..fd60bdc --- /dev/null +++ b/src/Notes-master/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_4x-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file -- 2.34.1 From 04d833de73e4a0ef30249d81bb7c95b99205fbc3 Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:45:01 +0800 Subject: [PATCH 58/61] ADD file via upload --- .../debug/package-aware-r.txt | 3618 +++++++++++++++++ 1 file changed, 3618 insertions(+) create mode 100644 src/Notes-master/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt diff --git a/src/Notes-master/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt b/src/Notes-master/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt new file mode 100644 index 0000000..cab9fad --- /dev/null +++ b/src/Notes-master/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt @@ -0,0 +1,3618 @@ +net.micode.notes +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_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 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 linear_indeterminate_line1_head_interpolator +animator linear_indeterminate_line1_tail_interpolator +animator linear_indeterminate_line2_head_interpolator +animator linear_indeterminate_line2_tail_interpolator +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 format_for_exported_note +array menu_share_ways +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 activityChooserViewStyle +attr alertDialogButtonGroupStyle +attr alertDialogCenterButtons +attr alertDialogStyle +attr alertDialogTheme +attr allowStacking +attr alpha +attr alphabeticModifiers +attr altSrc +attr animate_relativeTo +attr animationMode +attr appBarLayoutStyle +attr applyMotionScene +attr arcMode +attr arrowHeadLength +attr arrowShaftLength +attr attributeName +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr autoTransition +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 badgeStyle +attr badgeTextColor +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_skipCollapsed +attr borderWidth +attr borderlessButtonStyle +attr bottomAppBarStyle +attr bottomNavigationStyle +attr bottomSheetDialogTheme +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 buttonIconDimen +attr buttonPanelSideLayout +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 chainUseRtl +attr checkboxStyle +attr checkedButton +attr checkedChip +attr checkedIcon +attr checkedIconEnabled +attr checkedIconMargin +attr checkedIconSize +attr checkedIconTint +attr checkedIconVisible +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 circleRadius +attr circularProgressIndicatorStyle +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 collapsingToolbarLayoutStyle +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorOnBackground +attr colorOnError +attr colorOnPrimary +attr colorOnPrimarySurface +attr colorOnSecondary +attr colorOnSurface +attr colorPrimary +attr colorPrimaryDark +attr colorPrimarySurface +attr colorPrimaryVariant +attr colorSecondary +attr colorSecondaryVariant +attr colorSurface +attr colorSwitchThumbNormal +attr commitIcon +attr constraintSet +attr constraintSetEnd +attr constraintSetStart +attr constraint_referenced_ids +attr constraint_referenced_tags +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 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 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 defaultQueryHint +attr defaultState +attr deltaPolarAngle +attr deltaPolarRadius +attr deriveConstraintsFrom +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr displayOptions +attr divider +attr dividerHorizontal +attr dividerPadding +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 dropDownListViewStyle +attr dropdownListPreferredItemHeight +attr duration +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elevation +attr elevationOverlayColor +attr elevationOverlayEnabled +attr enableEdgeToEdge +attr endIconCheckable +attr endIconContentDescription +attr endIconDrawable +attr endIconMode +attr endIconTint +attr endIconTintMode +attr enforceMaterialTheme +attr enforceTextAppearance +attr ensureMinTouchTargetSize +attr errorContentDescription +attr errorEnabled +attr errorIconDrawable +attr errorIconTint +attr errorIconTintMode +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 extendMotionSpec +attr extendedFloatingActionButtonStyle +attr extraMultilineHeightEnabled +attr fabAlignmentMode +attr fabAnimationMode +attr fabCradleMargin +attr fabCradleRoundedCornerRadius +attr fabCradleVerticalOffset +attr fabCustomSize +attr fabSize +attr fastScrollEnabled +attr fastScrollHorizontalThumbDrawable +attr fastScrollHorizontalTrackDrawable +attr fastScrollVerticalThumbDrawable +attr fastScrollVerticalTrackDrawable +attr firstBaselineToTopHeight +attr floatingActionButtonStyle +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 foregroundInsidePadding +attr framePosition +attr fullscreenBackgroundColor +attr fullscreenTextColor +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 hideOnContentScroll +attr hideOnScroll +attr hintAnimationEnabled +attr hintEnabled +attr hintTextAppearance +attr hintTextColor +attr homeAsUpIndicator +attr homeLayout +attr horizontalOffset +attr hoveredFocusedTranslationZ +attr icon +attr iconEndPadding +attr iconGravity +attr iconPadding +attr iconSize +attr iconStartPadding +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr imageButtonStyle +attr indeterminateAnimationType +attr indeterminateProgressStyle +attr indicatorColor +attr indicatorDirectionCircular +attr indicatorDirectionLinear +attr indicatorInset +attr indicatorSize +attr initialActivityCount +attr insetForeground +attr isLightTheme +attr isMaterialTheme +attr itemBackground +attr itemFillColor +attr itemHorizontalPadding +attr itemHorizontalTranslationEnabled +attr itemIconPadding +attr itemIconSize +attr itemIconTint +attr itemMaxLines +attr itemPadding +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 itemTextAppearanceInactive +attr itemTextColor +attr keyPositionType +attr keyboardIcon +attr keylines +attr labelBehavior +attr labelStyle +attr labelVisibilityMode +attr lastBaselineToBottomHeight +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_scrollFlags +attr layout_scrollInterpolator +attr liftOnScroll +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 logoDescription +attr materialAlertDialogBodyTextStyle +attr materialAlertDialogTheme +attr materialAlertDialogTitleIconStyle +attr materialAlertDialogTitlePanelStyle +attr materialAlertDialogTitleTextStyle +attr materialButtonOutlinedStyle +attr materialButtonStyle +attr materialButtonToggleGroupStyle +attr materialCalendarDay +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 materialCardViewStyle +attr materialCircleRadius +attr materialClockStyle +attr materialThemeOverlay +attr materialTimePickerStyle +attr materialTimePickerTheme +attr maxAcceleration +attr maxActionInlineWidth +attr maxButtonHeight +attr maxCharacterCount +attr maxHeight +attr maxImageSize +attr maxLines +attr maxVelocity +attr maxWidth +attr measureWithLargestChild +attr menu +attr menuGravity +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 motionDurationLong1 +attr motionDurationLong2 +attr motionDurationMedium1 +attr motionDurationMedium2 +attr motionDurationShort1 +attr motionDurationShort2 +attr motionEasingAccelerated +attr motionEasingDecelerated +attr motionEasingEmphasized +attr motionEasingLinear +attr motionEasingStandard +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 nestedScrollFlags +attr nestedScrollable +attr number +attr numericModifiers +attr onCross +attr onHide +attr onNegativeCross +attr onPositiveCross +attr onShow +attr onTouchUp +attr overlapAnchor +attr overlay +attr paddingBottomNoButtons +attr paddingBottomSystemWindowInsets +attr paddingEnd +attr paddingLeftSystemWindowInsets +attr paddingRightSystemWindowInsets +attr paddingStart +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 pivotAnchor +attr placeholderText +attr placeholderTextAppearance +attr placeholderTextColor +attr placeholder_emptyVisibility +attr popupMenuBackground +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr prefixText +attr prefixTextAppearance +attr prefixTextColor +attr preserveIconSpacing +attr pressedTranslationZ +attr progressBarPadding +attr progressBarStyle +attr queryBackground +attr queryHint +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 reverseLayout +attr rippleColor +attr round +attr roundPercent +attr saturation +attr scrimAnimationDuration +attr scrimBackground +attr scrimVisibleHeightTrigger +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr selectionRequired +attr selectorSize +attr shapeAppearance +attr shapeAppearanceLargeComponent +attr shapeAppearanceMediumComponent +attr shapeAppearanceOverlay +attr shapeAppearanceSmallComponent +attr showAnimationBehavior +attr showAsAction +attr showDelay +attr showDividers +attr showMotionSpec +attr showPaths +attr showText +attr showTitle +attr shrinkMotionSpec +attr singleChoiceItemLayout +attr singleLine +attr singleSelection +attr sizePercent +attr sliderStyle +attr snackbarButtonStyle +attr snackbarStyle +attr snackbarTextViewStyle +attr spanCount +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr srcCompat +attr stackFromEnd +attr staggered +attr startIconCheckable +attr startIconContentDescription +attr startIconDrawable +attr startIconTint +attr startIconTintMode +attr state_above_anchor +attr state_collapsed +attr state_collapsible +attr state_dragged +attr state_liftable +attr state_lifted +attr statusBarBackground +attr statusBarForeground +attr statusBarScrim +attr strokeColor +attr strokeWidth +attr subMenuArrow +attr submitBackground +attr subtitle +attr subtitleCentered +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suffixText +attr suffixTextAppearance +attr suffixTextColor +attr suggestionRowLayout +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +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 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 textAppearanceButton +attr textAppearanceCaption +attr textAppearanceHeadline1 +attr textAppearanceHeadline2 +attr textAppearanceHeadline3 +attr textAppearanceHeadline4 +attr textAppearanceHeadline5 +attr textAppearanceHeadline6 +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 textColorAlertDialogListItem +attr textColorSearchUrl +attr textEndPadding +attr textInputLayoutFocusedRectEnabled +attr textInputStyle +attr textLocale +attr textStartPadding +attr theme +attr themeLineHeight +attr thickness +attr thumbColor +attr thumbElevation +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 tickVisible +attr tint +attr tintMode +attr title +attr titleCentered +attr titleCollapseMode +attr titleEnabled +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarId +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr tooltipForegroundColor +attr tooltipFrameBackground +attr tooltipStyle +attr tooltipText +attr touchAnchorId +attr touchAnchorSide +attr touchRegionId +attr track +attr trackColor +attr trackColorActive +attr trackColorInactive +attr trackCornerRadius +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 useCompatPadding +attr useMaterialThemeColors +attr values +attr verticalOffset +attr viewInflaterClass +attr visibilityMode +attr voiceIcon +attr warmth +attr waveDecay +attr waveOffset +attr wavePeriod +attr waveShape +attr waveVariesBy +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 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 black_overlay +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 button_material_dark +color button_material_light +color cardview_dark_background +color cardview_light_background +color cardview_shadow_end_color +color cardview_shadow_start_color +color checkbox_themeable_attribute_color +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_blue_600 +color light_blue_900 +color light_blue_A200 +color light_blue_A400 +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_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_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_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_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 notification_action_color_filter +color notification_icon_bg_color +color primary_dark_material_dark +color primary_dark_material_light +color primary_material_dark +color primary_material_light +color primary_text_dark +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 radiobutton_themeable_attribute_color +color ripple_material_dark +color ripple_material_light +color secondary_text_dark +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 test_mtrl_calendar_day +color test_mtrl_calendar_day_selected +color tooltip_background_dark +color tooltip_background_light +color user_query_highlight +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 action_bar_size +dimen appcompat_dialog_background_inset +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 default_dimension +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_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 material_bottom_sheet_max_width +dimen material_clock_display_padding +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_margin_left +dimen material_clock_period_toggle_width +dimen material_clock_size +dimen material_cursor_inset_bottom +dimen material_cursor_inset_top +dimen material_cursor_width +dimen material_emphasis_disabled +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_text_view_test_line_height +dimen material_text_view_test_line_height_override +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 material_timepicker_dialog_buttons_margin_top +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_radius +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_radius +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_edittext_rectangle_top_offset +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_corner_radius +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_large_touch_target +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_track_height +dimen mtrl_slider_track_side_padding +dimen mtrl_slider_track_top +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_thumb_elevation +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 test_mtrl_calendar_day_cornerSize +dimen test_navigation_bar_active_item_max_width +dimen test_navigation_bar_active_item_min_width +dimen test_navigation_bar_active_text_size +dimen test_navigation_bar_elevation +dimen test_navigation_bar_height +dimen test_navigation_bar_icon_size +dimen test_navigation_bar_item_max_width +dimen test_navigation_bar_item_min_width +dimen test_navigation_bar_label_padding +dimen test_navigation_bar_shadow_height +dimen test_navigation_bar_text_size +dimen text_font_size_large +dimen text_font_size_medium +dimen text_font_size_normal +dimen text_font_size_small +dimen text_font_size_super +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 +drawable _20240425220702 +drawable _20240425220709 +drawable _20240425220723 +drawable _20240425224255 +drawable _20240425224259 +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 add_node +drawable avd_hide_password +drawable avd_show_password +drawable bg_btn_set_color +drawable bg_color_btn_mask +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 call_record +drawable clock +drawable delete +drawable design_fab_background +drawable design_ic_visibility +drawable design_ic_visibility_off +drawable design_password_eye +drawable design_snackbar_background +drawable dropdown_icon +drawable edit_blue +drawable edit_green +drawable edit_red +drawable edit_title_blue +drawable edit_title_green +drawable edit_title_red +drawable edit_title_white +drawable edit_title_yellow +drawable edit_white +drawable edit_yellow +drawable font_large +drawable font_normal +drawable font_size_selector_bg +drawable font_small +drawable font_super +drawable ic_clock_black_24dp +drawable ic_fp_40px +drawable ic_keyboard_black_24dp +drawable ic_mtrl_checked_circle +drawable ic_mtrl_chip_checked_black +drawable ic_mtrl_chip_checked_circle +drawable ic_mtrl_chip_close_circle +drawable icon_app +drawable list_background +drawable list_blue_down +drawable list_blue_middle +drawable list_blue_single +drawable list_blue_up +drawable list_folder +drawable list_footer_bg +drawable list_green_down +drawable list_green_middle +drawable list_green_single +drawable list_green_up +drawable list_red_down +drawable list_red_middle +drawable list_red_single +drawable list_red_up +drawable list_white_down +drawable list_white_middle +drawable list_white_single +drawable list_white_up +drawable list_yellow_down +drawable list_yellow_middle +drawable list_yellow_single +drawable list_yellow_up +drawable listtest +drawable lock +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 menu_delete +drawable menu_move +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_error +drawable mtrl_navigation_bar_item_background +drawable mtrl_popupmenu_background +drawable mtrl_popupmenu_background_dark +drawable mtrl_tabs_default_indicator +drawable navigation_empty_icon +drawable new_note +drawable new_note_normal +drawable new_note_pressed +drawable note_bk +drawable note_edit_color_selector_panel +drawable notification +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_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable search_result +drawable selected +drawable splash +drawable test_custom_background +drawable title_alert +drawable title_bar_bg +drawable tooltip_frame_dark +drawable tooltip_frame_light +drawable unlock +drawable wallpaper1 +drawable wallpaper2 +drawable widget_2x_blue +drawable widget_2x_green +drawable widget_2x_red +drawable widget_2x_white +drawable widget_2x_yellow +drawable widget_4x_blue +drawable widget_4x_green +drawable widget_4x_red +drawable widget_4x_white +drawable widget_4x_yellow +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 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 account_dialog_subtitle +id account_dialog_title +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_select_all +id action_text +id actions +id activity_chooser_view_content +id add +id add_img_btn +id alertTitle +id aligned +id all +id always +id amPm +id animateToEnd +id animateToStart +id arc +id asConfigured +id async +id auto +id autoComplete +id autoCompleteToEnd +id autoCompleteToStart +id barrier +id baseline +id beginOnFirstDraw +id beginning +id blocking +id bottom +id bounce +id btn_new_note +id btn_set_bg_color +id button +id buttonPanel +id cache_measures +id cancel +id cancel_button +id cb_edit_item +id center +id center_horizontal +id center_vertical +id chain +id chains +id checkbox +id checked +id chip +id chip1 +id chip2 +id chip3 +id chip_group +id chronometer +id circle_center +id clear_text +id clip_horizontal +id clip_vertical +id clockwise +id collapseActionView +id confirm_button +id container +id content +id contentPanel +id contiguous +id coordinator +id cos +id counterclockwise +id custom +id customPanel +id cut +id date +id date_picker_actions +id decelerate +id decelerateAndComplete +id decor_content_parent +id default_activity_button +id delete +id deltaRelative +id dependency_ordering +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 dragDown +id dragEnd +id dragLeft +id dragRight +id dragStart +id dragUp +id dropdown_menu +id dummy_button +id easeIn +id easeInOut +id easeOut +id editTextTextPersonName +id edit_query +id elastic +id end +id endToStart +id enterAlways +id enterAlwaysCollapsed +id error_msg +id et_edit_text +id et_foler_name +id exitUntilCollapsed +id expand_activities_button +id expanded_menu +id fade +id fill +id fill_horizontal +id fill_vertical +id filled +id fitToContents +id fixed +id flip +id floating +id font_size_selector +id forever +id fragment_container_view_tag +id fullscreen_content +id fullscreen_content_controls +id ghost_view +id ghost_view_holder +id gone +id graph +id graph_wrap +id group_divider +id grouping +id groups +id guideline +id header_title +id hideable +id home +id homeAsUp +id honorRequest +id hour +id iatBtn +id icon +id icon_group +id ifRoom +id ignore +id ignoreRequest +id image +id info +id invisible +id inward +id italic +id item_touch_helper_previous_elevation +id iv_alert_icon +id iv_bg_blue +id iv_bg_blue_select +id iv_bg_green +id iv_bg_green_select +id iv_bg_red +id iv_bg_red_select +id iv_bg_white +id iv_bg_white_select +id iv_bg_yellow +id iv_bg_yellow_select +id iv_large_select +id iv_medium_select +id iv_small_select +id iv_super_select +id jumpToEnd +id jumpToStart +id labeled +id layout +id left +id leftToRight +id line1 +id line3 +id linear +id listMode +id list_item +id ll_font_large +id ll_font_normal +id ll_font_small +id ll_font_super +id masked +id material_clock_display +id material_clock_face +id material_clock_hand +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_edit_text +id material_timepicker_mode_button +id material_timepicker_ok_button +id material_timepicker_view +id material_value_index +id menu_alert +id menu_count_word +id menu_delete +id menu_delete_remind +id menu_export_text +id menu_font_size +id menu_list_mode +id menu_new_folder +id menu_new_note +id menu_quit_secret +id menu_search +id menu_secret +id menu_send_to_desktop +id menu_setting +id menu_share +id menu_sync +id menu_wallpaper1 +id menu_wallpaper2 +id message +id middle +id mini +id minute +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 move +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_bar +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_header_container +id never +id noScroll +id none +id normal +id note_bg_color_selector +id note_edit_list +id note_edit_view +id note_item +id note_title +id notes_list +id notification_background +id notification_main_column +id notification_main_column_container +id num_word +id off +id on +id outline +id outward +id packed +id parallax +id parent +id parentPanel +id parentRelative +id parent_matrix +id password_toggle +id path +id pathRelative +id peekHeight +id percent +id pin +id position +id postLayout +id prefenerece_sync_status_textview +id preference_sync_button +id progress_circular +id progress_horizontal +id radio +id ratio +id rectangles +id reverseSawtooth +id right +id rightToLeft +id right_icon +id right_side +id rounded +id row_index_key +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 select_dialog_listview +id selected +id selection_menu +id selection_type +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 spline +id split_action_bar +id spread +id spread_inside +id square +id src_atop +id src_in +id src_over +id standard +id start +id startHorizontal +id startToEnd +id startVertical +id staticLayout +id staticPostLayout +id stop +id stretch +id submenuarrow +id submit_area +id sv_note_edit +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 test_checkbox_android_button_tint +id test_checkbox_app_button_tint +id test_radiobutton_android_button_tint +id test_radiobutton_app_button_tint +id text +id text2 +id textEnd +id textSpacerNoButtons +id textSpacerNoTitle +id textStart +id textTop +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 title +id titleDividerNoCustom +id title_template +id toggle +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 tv_alert_date +id tv_folder_name +id tv_locked +id tv_modified_date +id tv_name +id tv_time +id tv_title +id tv_title_bar +id tv_unlocked +id unchecked +id uniform +id unlabeled +id up +id useLogo +id view_offset_helper +id view_tree_lifecycle_owner +id view_tree_saved_state_registry_owner +id view_tree_view_model_store_owner +id visible +id visible_removing_fragment_view_tag +id widget_bg_image +id widget_text +id withText +id withinBounds +id wrap +id wrap_content +id zero_corner_chip +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 hide_password_duration +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_tab_indicator_anim_duration_ms +integer show_password_duration +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 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 account_dialog_title +layout activity_main +layout activity_splash +layout add_account_text +layout custom_dialog +layout datetime_picker +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_edit_text +layout fingerprint_dialog +layout folder_list_item +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_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 note_edit +layout note_edit_list_item +layout note_item +layout note_list +layout note_list_dropdown_menu +layout note_list_footer +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 select_dialog_item_material +layout select_dialog_multichoice_material +layout select_dialog_singlechoice_material +layout settings_header +layout support_simple_spinner_dropdown_item +layout test_action_chip +layout test_chip_zero_corner_radius +layout test_design_checkbox +layout test_design_radiobutton +layout test_navigation_bar_item_layout +layout test_reflow_chipgroup +layout test_toolbar +layout test_toolbar_custom_background +layout test_toolbar_elevation +layout test_toolbar_surface +layout text_view_with_line_height_from_appearance +layout text_view_with_line_height_from_layout +layout text_view_with_line_height_from_style +layout text_view_with_theme_line_height +layout text_view_without_line_height +layout widget_2x +layout widget_4x +menu call_note_edit +menu call_record_folder +menu note_edit +menu note_list +menu note_list_dropdown +menu note_list_options +menu sub_folder +plurals mtrl_badge_content_description +plurals search_results_title +raw introduction +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 alert_message_delete_folder +string alert_message_delete_note +string alert_message_delete_notes +string alert_title_delete +string app_name +string app_widget2x2 +string app_widget4x4 +string appbar_scrolling_view_behavior +string bottom_sheet_behavior +string bottomsheet_action_expand_halfway +string button_delete +string button_send +string call_record_folder_name +string character_counter_content_description +string character_counter_overflowed_content_description +string character_counter_pattern +string chip_text +string clear_text_end_icon_content_description +string datetime_dialog_cancel +string datetime_dialog_ok +string delete_remind_time_message +string dummy_button +string dummy_content +string edit_message +string error_icon_content_description +string error_note_empty_for_clock +string error_note_empty_for_send_to_desktop +string error_note_not_exist +string error_sdcard_export +string error_sdcard_unmounted +string error_sync_cancelled +string error_sync_internal +string error_sync_network +string exposed_dropdown_menu_content_description +string fab_transformation_scrim_behavior +string fab_transformation_sheet_behavior +string failed_sdcard_export +string file_name_txt_format +string file_path +string folder_exist +string forbidden_add_in_trash +string forbidden_change_trash_name +string forbidden_delete_trash +string forbidden_move_to_trash +string format_date_ymd +string format_datetime_mdhm +string format_exported_file_location +string format_folder_files_count +string format_move_notes_to_folder +string hide_bottom_view_on_scroll_behavior +string hint_foler_name +string icon_content_description +string info_note_enter_desktop +string item_view_role_description +string material_clock_display_divider +string material_clock_toggle_content_description +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_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 menu_alert +string menu_create_folder +string menu_delete +string menu_deselect_all +string menu_export_text +string menu_folder_change_name +string menu_folder_delete +string menu_folder_move_out +string menu_folder_view +string menu_font_large +string menu_font_normal +string menu_font_size +string menu_font_small +string menu_font_super +string menu_list_mode +string menu_move +string menu_move_parent_folder +string menu_normal_mode +string menu_quit_secret +string menu_remove_remind +string menu_search +string menu_secret +string menu_select_all +string menu_select_none +string menu_select_title +string menu_send_to_desktop +string menu_setting +string menu_share +string menu_sync +string menu_sync_cancel +string menu_title_select_folder +string mtrl_badge_numberless_content_description +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_selection +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_invalid_format +string mtrl_picker_invalid_format_example +string mtrl_picker_invalid_format_use +string mtrl_picker_invalid_range +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_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_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 note_alert_expired +string note_link_email +string note_link_other +string note_link_tel +string note_link_web +string notealert_enter +string notealert_ok +string notelist_menu_new +string notelist_string_info +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 preferences_account_summary +string preferences_account_title +string preferences_add_account +string preferences_bg_random_appear_title +string preferences_button_sync_cancel +string preferences_button_sync_immediately +string preferences_dialog_change_account_title +string preferences_dialog_change_account_warn_msg +string preferences_dialog_select_account_tips +string preferences_dialog_select_account_title +string preferences_last_sync_time +string preferences_last_sync_time_format +string preferences_menu_cancel +string preferences_menu_change_account +string preferences_menu_remove_account +string preferences_title +string preferences_toast_cannot_change_account +string preferences_toast_success_set_accout +string search +string search_hint +string search_label +string search_menu_title +string search_setting_description +string set_remind_time_message +string status_bar_notification_info_overflow +string success_sdcard_export +string success_sync_account +string sync_progress_init_list +string sync_progress_login +string sync_progress_syncing +string ticker_cancel +string ticker_fail +string ticker_success +string ticker_syncing +string title_activity_splash +string trash_name +string wallpaper1 +string wallpaper2 +string widget_havenot_content +string widget_under_visit_mode +style AlertDialog_AppCompat +style AlertDialog_AppCompat_Light +style AndroidThemeColorAccentYellow +style Animation_AppCompat_Dialog +style Animation_AppCompat_DropDownUp +style Animation_AppCompat_Tooltip +style Animation_Design_BottomSheetDialog +style Animation_MaterialComponents_BottomSheetDialog +style AppTheme_Base +style AppTheme_Base_Fullscreen +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_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_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_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_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_MaterialComponents_BottomSheetDialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog +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_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_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_MaterialComponents_AutoCompleteTextView +style Base_Widget_MaterialComponents_CheckedTextView +style Base_Widget_MaterialComponents_Chip +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 CardView +style CardView_Dark +style CardView_Light +style EmptyTheme +style HighlightTextAppearancePrimary +style HighlightTextAppearanceSecondary +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 NoteActionBarStyle +style NoteTheme +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 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_MaterialComponents +style ShapeAppearance_MaterialComponents_LargeComponent +style ShapeAppearance_MaterialComponents_MediumComponent +style ShapeAppearance_MaterialComponents_SmallComponent +style ShapeAppearance_MaterialComponents_Test +style ShapeAppearance_MaterialComponents_Tooltip +style ShapeAppearanceOverlay +style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize +style ShapeAppearanceOverlay_BottomRightCut +style ShapeAppearanceOverlay_Cut +style ShapeAppearanceOverlay_DifferentCornerSize +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 ShapeAppearanceOverlay_TopLeftCut +style ShapeAppearanceOverlay_TopRightDifferentCornerSize +style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +style Test_Theme_MaterialComponents_MaterialCalendar +style Test_Widget_MaterialComponents_MaterialCalendar +style Test_Widget_MaterialComponents_MaterialCalendar_Day +style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected +style TestStyleWithLineHeight +style TestStyleWithLineHeightAppearance +style TestStyleWithThemeLineHeightAttribute +style TestStyleWithoutLineHeight +style TestThemeWithLineHeight +style TestThemeWithLineHeightDisabled +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_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 TextAppearanceLarge +style TextAppearanceMedium +style TextAppearanceNormal +style TextAppearancePrimaryItem +style TextAppearanceSecondaryItem +style TextAppearanceSuper +style TextAppearanceUnderMenuIcon +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_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_BarSize +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_LargeTouch +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_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_Toolbar_Primary +style ThemeOverlay_MaterialComponents_Toolbar_Surface +style ThemeOverlay_Mynotes_FullscreenContainer +style ThemeOverlayColorAccentRed +style UI_AppTheme +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_AppTheme_Base_ActionBar_Fullscreen +style Widget_AppTheme_Base_ButtonBar_Fullscreen +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_MaterialComponents_ActionBar_Primary +style Widget_MaterialComponents_ActionBar_PrimarySurface +style Widget_MaterialComponents_ActionBar_Solid +style Widget_MaterialComponents_ActionBar_Surface +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_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_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_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_TextInputEditText +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 +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 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 liftOnScrollTargetViewId statusBarForeground +styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted +styleable AppBarLayout_Layout layout_scrollFlags layout_scrollInterpolator +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 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 Badge backgroundColor badgeGravity badgeTextColor horizontalOffset maxCharacterCount number verticalOffset +styleable BaseProgressIndicator android_indeterminate hideAnimationBehavior indicatorColor minHideDelay showAnimationBehavior showDelay trackColor trackCornerRadius trackThickness +styleable BottomAppBar backgroundTint elevation fabAlignmentMode fabAnimationMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets +styleable BottomNavigationView itemHorizontalTranslationEnabled +styleable BottomSheetBehavior_Layout android_maxWidth android_elevation backgroundTint behavior_draggable behavior_expandedOffset behavior_fitToContents behavior_halfExpandedRatio behavior_hideable behavior_peekHeight behavior_saveFlags behavior_skipCollapsed gestureInsetBottomIgnored paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets shapeAppearance shapeAppearanceOverlay +styleable ButtonBarLayout allowStacking +styleable CardView android_minWidth android_minHeight cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop +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 contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance extraMultilineHeightEnabled forceApplySystemWindowInsetTop maxLines scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleCollapseMode titleEnabled toolbarId +styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier +styleable ColorStateListItem android_color android_alpha alpha +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 constraint_referenced_tags 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 constraint_referenced_tags 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 constraint_referenced_tags 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 DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness +styleable ExtendedFloatingActionButton collapsedSize elevation extendMotionSpec 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 FullscreenAttrs fullscreenBackgroundColor fullscreenTextColor +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 paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets 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 constraint_referenced_tags 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 MaterialAlertDialog backgroundInsetBottom backgroundInsetEnd backgroundInsetStart backgroundInsetTop +styleable MaterialAlertDialogTheme materialAlertDialogBodyTextStyle materialAlertDialogTheme materialAlertDialogTitleIconStyle materialAlertDialogTitlePanelStyle materialAlertDialogTitleTextStyle +styleable MaterialAutoCompleteTextView android_inputType +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 +styleable MaterialButtonToggleGroup checkedButton selectionRequired singleSelection +styleable MaterialCalendar android_windowFullscreen 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 checkedIconMargin checkedIconSize checkedIconTint rippleColor shapeAppearance shapeAppearanceOverlay state_dragged strokeColor strokeWidth +styleable MaterialCheckBox buttonTint useMaterialThemeColors +styleable MaterialRadioButton buttonTint useMaterialThemeColors +styleable MaterialShape shapeAppearance shapeAppearanceOverlay +styleable MaterialTextAppearance android_letterSpacing android_lineHeight lineHeight +styleable MaterialTextView android_textAppearance android_lineHeight lineHeight +styleable MaterialTimePicker clockIcon keyboardIcon +styleable MaterialToolbar 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 NavigationBarView backgroundTint elevation itemBackground itemIconSize itemIconTint itemRippleColor itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu +styleable NavigationRailView headerLayout menuGravity +styleable NavigationView android_background android_fitsSystemWindows android_maxWidth elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconSize itemIconTint itemMaxLines itemShapeAppearance itemShapeAppearanceOverlay itemShapeFillColor itemShapeInsetBottom itemShapeInsetEnd itemShapeInsetStart itemShapeInsetTop itemTextAppearance itemTextColor menu shapeAppearance shapeAppearanceOverlay +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 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 SearchView android_focusable android_maxWidth android_inputType android_imeOptions closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon +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 Slider android_enabled android_value android_stepSize android_valueFrom android_valueTo haloColor haloRadius labelBehavior labelStyle thumbColor thumbElevation thumbRadius thumbStrokeColor thumbStrokeWidth tickColor tickColorActive tickColorInactive tickVisible trackColor trackColorActive trackColorInactive trackHeight +styleable Snackbar snackbarButtonStyle snackbarStyle snackbarTextViewStyle +styleable SnackbarLayout android_maxWidth actionTextColorAlpha animationMode backgroundOverlayColorAlpha backgroundTint backgroundTintMode elevation maxActionInlineWidth +styleable Spinner android_entries android_popupBackground android_prompt android_dropDownWidth popupTheme +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 SwitchCompat android_textOn android_textOff android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode +styleable SwitchMaterial useMaterialThemeColors +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 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 boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeErrorColor boxStrokeWidth boxStrokeWidthFocused counterEnabled counterMaxLength counterOverflowTextAppearance counterOverflowTextColor counterTextAppearance counterTextColor endIconCheckable endIconContentDescription endIconDrawable endIconMode endIconTint endIconTintMode 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 startIconTint startIconTintMode suffixText suffixTextAppearance suffixTextColor +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_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 preferences +xml searchable +xml standalone_badge +xml standalone_badge_gravity_bottom_end +xml standalone_badge_gravity_bottom_start +xml standalone_badge_gravity_top_start +xml standalone_badge_offset +xml widget_2x_info +xml widget_4x_info -- 2.34.1 From 5805201b4937de75c7dcd1c04af4c37c6bdb6ebe Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:46:17 +0800 Subject: [PATCH 59/61] ADD file via upload --- .../debug/stableIds.txt | 3623 +++++++++++++++++ 1 file changed, 3623 insertions(+) create mode 100644 src/Notes-master/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt diff --git a/src/Notes-master/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt b/src/Notes-master/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt new file mode 100644 index 0000000..acdba16 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt @@ -0,0 +1,3623 @@ +net.micode.notes:xml/widget_2x_info = 0x7f130007 +net.micode.notes:xml/standalone_badge_offset = 0x7f130006 +net.micode.notes:xml/standalone_badge_gravity_top_start = 0x7f130005 +net.micode.notes:xml/standalone_badge_gravity_bottom_start = 0x7f130004 +net.micode.notes:xml/standalone_badge = 0x7f130002 +net.micode.notes:xml/preferences = 0x7f130000 +net.micode.notes:styleable/View = 0x7f120084 +net.micode.notes:styleable/Transition = 0x7f120082 +net.micode.notes:styleable/Transform = 0x7f120081 +net.micode.notes:styleable/Toolbar = 0x7f12007f +net.micode.notes:styleable/ThemeEnforcement = 0x7f12007e +net.micode.notes:styleable/TextAppearance = 0x7f12007b +net.micode.notes:styleable/TabLayout = 0x7f12007a +net.micode.notes:styleable/TabItem = 0x7f120079 +net.micode.notes:styleable/SwitchMaterial = 0x7f120078 +net.micode.notes:styleable/SwitchCompat = 0x7f120077 +net.micode.notes:styleable/StateListDrawableItem = 0x7f120075 +net.micode.notes:styleable/StateListDrawable = 0x7f120074 +net.micode.notes:styleable/State = 0x7f120073 +net.micode.notes:styleable/Spinner = 0x7f120072 +net.micode.notes:styleable/Snackbar = 0x7f120070 +net.micode.notes:styleable/ShapeAppearance = 0x7f12006d +net.micode.notes:styleable/SearchView = 0x7f12006c +net.micode.notes:styleable/ScrimInsetsFrameLayout = 0x7f12006a +net.micode.notes:styleable/RecyclerView = 0x7f120069 +net.micode.notes:styleable/RadialViewGroup = 0x7f120066 +net.micode.notes:styleable/PropertySet = 0x7f120065 +net.micode.notes:styleable/PopupWindowBackgroundState = 0x7f120064 +net.micode.notes:styleable/PopupWindow = 0x7f120063 +net.micode.notes:styleable/OnSwipe = 0x7f120062 +net.micode.notes:styleable/OnClick = 0x7f120061 +net.micode.notes:styleable/NavigationView = 0x7f120060 +net.micode.notes:styleable/MotionTelltales = 0x7f12005d +net.micode.notes:styleable/MotionLayout = 0x7f12005b +net.micode.notes:styleable/MotionHelper = 0x7f12005a +net.micode.notes:styleable/MockView = 0x7f120058 +net.micode.notes:styleable/MenuGroup = 0x7f120055 +net.micode.notes:styleable/MaterialToolbar = 0x7f120054 +net.micode.notes:styleable/MaterialTextView = 0x7f120052 +net.micode.notes:styleable/MaterialShape = 0x7f120050 +net.micode.notes:styleable/MaterialRadioButton = 0x7f12004f +net.micode.notes:styleable/MaterialCheckBox = 0x7f12004e +net.micode.notes:styleable/MaterialCardView = 0x7f12004d +net.micode.notes:styleable/MaterialCalendarItem = 0x7f12004c +net.micode.notes:styleable/MaterialCalendar = 0x7f12004b +net.micode.notes:styleable/MaterialButtonToggleGroup = 0x7f12004a +net.micode.notes:styleable/MaterialButton = 0x7f120049 +net.micode.notes:styleable/MaterialAlertDialog = 0x7f120046 +net.micode.notes:styleable/LinearProgressIndicator = 0x7f120044 +net.micode.notes:styleable/LinearLayoutCompat_Layout = 0x7f120043 +net.micode.notes:styleable/Layout = 0x7f120041 +net.micode.notes:styleable/KeyTrigger = 0x7f120040 +net.micode.notes:styleable/KeyFramesVelocity = 0x7f12003d +net.micode.notes:styleable/KeyAttribute = 0x7f120039 +net.micode.notes:styleable/ImageFilterView = 0x7f120037 +net.micode.notes:styleable/GradientColorItem = 0x7f120036 +net.micode.notes:styleable/GradientColor = 0x7f120035 +net.micode.notes:styleable/FullscreenAttrs = 0x7f120034 +net.micode.notes:styleable/FragmentContainerView = 0x7f120033 +net.micode.notes:styleable/ForegroundLinearLayout = 0x7f120031 +net.micode.notes:styleable/FontFamilyFont = 0x7f120030 +net.micode.notes:styleable/FontFamily = 0x7f12002f +net.micode.notes:styleable/FlowLayout = 0x7f12002e +net.micode.notes:styleable/FloatingActionButton_Behavior_Layout = 0x7f12002d +net.micode.notes:styleable/ExtendedFloatingActionButton = 0x7f12002a +net.micode.notes:styleable/DrawerArrowToggle = 0x7f120029 +net.micode.notes:styleable/CustomAttribute = 0x7f120028 +net.micode.notes:styleable/CoordinatorLayout_Layout = 0x7f120027 +net.micode.notes:styleable/CoordinatorLayout = 0x7f120026 +net.micode.notes:styleable/ConstraintLayout_Layout = 0x7f120023 +net.micode.notes:styleable/Constraint = 0x7f120022 +net.micode.notes:xml/standalone_badge_gravity_bottom_end = 0x7f130003 +net.micode.notes:styleable/CollapsingToolbarLayout_Layout = 0x7f12001f +net.micode.notes:styleable/CollapsingToolbarLayout = 0x7f12001e +net.micode.notes:styleable/ClockHandView = 0x7f12001d +net.micode.notes:styleable/Chip = 0x7f120019 +net.micode.notes:styleable/CardView = 0x7f120018 +net.micode.notes:styleable/ButtonBarLayout = 0x7f120017 +net.micode.notes:styleable/BottomNavigationView = 0x7f120015 +net.micode.notes:styleable/BaseProgressIndicator = 0x7f120013 +net.micode.notes:styleable/Badge = 0x7f120012 +net.micode.notes:styleable/AppCompatTheme = 0x7f120011 +net.micode.notes:styleable/AppCompatTextView = 0x7f120010 +net.micode.notes:styleable/AppCompatSeekBar = 0x7f12000e +net.micode.notes:styleable/AppBarLayout_Layout = 0x7f12000c +net.micode.notes:styleable/AnimatedStateListDrawableItem = 0x7f120008 +net.micode.notes:styleable/AnimatedStateListDrawableCompat = 0x7f120007 +net.micode.notes:styleable/ActionMode = 0x7f120004 +net.micode.notes:styleable/ActionBar = 0x7f120000 +net.micode.notes:style/Widget.Support.CoordinatorLayout = 0x7f1102e1 +net.micode.notes:style/Widget.MaterialComponents.Toolbar.Surface = 0x7f1102df +net.micode.notes:style/Widget.MaterialComponents.Toolbar.PrimarySurface = 0x7f1102de +net.micode.notes:style/Widget.MaterialComponents.Toolbar = 0x7f1102dc +net.micode.notes:style/Widget.MaterialComponents.TimePicker.ImageButton.ShapeAppearance = 0x7f1102db +net.micode.notes:style/Widget.MaterialComponents.TimePicker.ImageButton = 0x7f1102da +net.micode.notes:style/Widget.MaterialComponents.TimePicker.Clock = 0x7f1102d7 +net.micode.notes:style/Widget.MaterialComponents.TimePicker.Button = 0x7f1102d6 +net.micode.notes:style/Widget.MaterialComponents.TextView = 0x7f1102d4 +net.micode.notes:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu = 0x7f1102d3 +net.micode.notes:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu = 0x7f1102d2 +net.micode.notes:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense = 0x7f1102d1 +net.micode.notes:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox = 0x7f1102d0 +net.micode.notes:style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu = 0x7f1102cf +net.micode.notes:style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense = 0x7f1102cd +net.micode.notes:style/Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense = 0x7f1102cb +net.micode.notes:style/Widget.MaterialComponents.TextInputEditText.OutlinedBox = 0x7f1102ca +net.micode.notes:style/Widget.MaterialComponents.TabLayout.PrimarySurface = 0x7f1102c7 +net.micode.notes:style/Widget.MaterialComponents.TabLayout.Colored = 0x7f1102c6 +net.micode.notes:style/Widget.MaterialComponents.TabLayout = 0x7f1102c5 +net.micode.notes:style/Widget.MaterialComponents.Snackbar.TextView = 0x7f1102c4 +net.micode.notes:style/Widget.MaterialComponents.Snackbar = 0x7f1102c2 +net.micode.notes:style/Widget.MaterialComponents.Slider = 0x7f1102c1 +net.micode.notes:style/Widget.MaterialComponents.ProgressIndicator = 0x7f1102bf +net.micode.notes:style/Widget.MaterialComponents.PopupMenu = 0x7f1102bb +net.micode.notes:style/Widget.MaterialComponents.NavigationRailView.PrimarySurface = 0x7f1102b9 +net.micode.notes:style/Widget.MaterialComponents.NavigationRailView.Compact = 0x7f1102b8 +net.micode.notes:style/Widget.MaterialComponents.NavigationRailView.Colored = 0x7f1102b6 +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.Year.Today = 0x7f1102b3 +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.Year.Selected = 0x7f1102b2 +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.Year = 0x7f1102b1 +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.MonthNavigationButton = 0x7f1102af +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.Item = 0x7f1102ae +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton = 0x7f1102ad +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.HeaderTitle = 0x7f1102ac +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.HeaderSelection = 0x7f1102aa +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.HeaderLayout = 0x7f1102a9 +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.HeaderConfirmButton = 0x7f1102a7 +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.HeaderCancelButton = 0x7f1102a6 +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.Day.Selected = 0x7f1102a2 +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.Day.Invalid = 0x7f1102a1 +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.Day = 0x7f1102a0 +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar = 0x7f11029f +net.micode.notes:style/Widget.MaterialComponents.MaterialButtonToggleGroup = 0x7f11029e +net.micode.notes:style/Widget.MaterialComponents.Light.ActionBar.Solid = 0x7f11029c +net.micode.notes:style/Widget.MaterialComponents.ExtendedFloatingActionButton = 0x7f110299 +net.micode.notes:style/Widget.MaterialComponents.CompoundButton.RadioButton = 0x7f110297 +net.micode.notes:style/Widget.MaterialComponents.CollapsingToolbar = 0x7f110295 +net.micode.notes:style/Widget.MaterialComponents.CircularProgressIndicator.Small = 0x7f110294 +net.micode.notes:style/Widget.MaterialComponents.CircularProgressIndicator.Medium = 0x7f110293 +net.micode.notes:style/Widget.MaterialComponents.CircularProgressIndicator.ExtraSmall = 0x7f110292 +net.micode.notes:style/Widget.MaterialComponents.CircularProgressIndicator = 0x7f110291 +net.micode.notes:styleable/KeyPosition = 0x7f12003e +net.micode.notes:style/Widget.MaterialComponents.ChipGroup = 0x7f110290 +net.micode.notes:style/Widget.MaterialComponents.Chip.Filter = 0x7f11028f +net.micode.notes:style/Widget.MaterialComponents.Chip.Choice = 0x7f11028d +net.micode.notes:style/Widget.MaterialComponents.CardView = 0x7f11028a +net.micode.notes:style/Widget.MaterialComponents.Button.TextButton.Snackbar = 0x7f110287 +net.micode.notes:style/Widget.MaterialComponents.Button.TextButton.Icon = 0x7f110286 +net.micode.notes:style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush = 0x7f110284 +net.micode.notes:style/Widget.MaterialComponents.Button.TextButton = 0x7f110282 +net.micode.notes:style/Widget.MaterialComponents.Button.OutlinedButton.Icon = 0x7f110281 +net.micode.notes:style/Widget.MaterialComponents.Button.OutlinedButton = 0x7f110280 +net.micode.notes:style/Widget.MaterialComponents.BottomSheet.Modal = 0x7f11027d +net.micode.notes:style/Widget.MaterialComponents.BottomAppBar.Colored = 0x7f110277 +net.micode.notes:style/Widget.MaterialComponents.BottomAppBar = 0x7f110276 +net.micode.notes:style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense = 0x7f110274 +net.micode.notes:style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox = 0x7f110273 +net.micode.notes:style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense = 0x7f110272 +net.micode.notes:style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox = 0x7f110271 +net.micode.notes:style/Widget.MaterialComponents.AppBarLayout.Surface = 0x7f110270 +net.micode.notes:style/Widget.MaterialComponents.AppBarLayout.PrimarySurface = 0x7f11026f +net.micode.notes:style/Widget.MaterialComponents.ActionBar.Solid = 0x7f11026c +net.micode.notes:style/Widget.MaterialComponents.ActionBar.Primary = 0x7f11026a +net.micode.notes:style/Widget.Design.TextInputLayout = 0x7f110269 +net.micode.notes:style/Widget.Design.TextInputEditText = 0x7f110268 +net.micode.notes:style/Widget.Design.TabLayout = 0x7f110267 +net.micode.notes:style/Widget.Design.FloatingActionButton = 0x7f110263 +net.micode.notes:style/Widget.Design.CollapsingToolbar = 0x7f110262 +net.micode.notes:style/Widget.Design.BottomSheet.Modal = 0x7f110261 +net.micode.notes:style/Widget.Compat.NotificationActionContainer = 0x7f11025d +net.micode.notes:style/Widget.AppTheme.Base.ButtonBar.Fullscreen = 0x7f11025c +net.micode.notes:style/Widget.AppCompat.TextView = 0x7f110257 +net.micode.notes:style/Widget.AppCompat.Spinner.Underlined = 0x7f110256 +net.micode.notes:style/Widget.AppCompat.Spinner = 0x7f110253 +net.micode.notes:style/Widget.AppCompat.SearchView.ActionBar = 0x7f110250 +net.micode.notes:style/Widget.AppCompat.RatingBar.Small = 0x7f11024e +net.micode.notes:style/Widget.AppCompat.RatingBar.Indicator = 0x7f11024d +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.HeaderDivider = 0x7f1102a8 +net.micode.notes:style/Widget.AppCompat.RatingBar = 0x7f11024c +net.micode.notes:style/Widget.AppCompat.ProgressBar = 0x7f11024a +net.micode.notes:style/Widget.AppCompat.PopupMenu.Overflow = 0x7f110248 +net.micode.notes:style/Widget.AppCompat.PopupMenu = 0x7f110247 +net.micode.notes:style/Widget.AppCompat.ListView.DropDown = 0x7f110245 +net.micode.notes:style/Widget.AppCompat.ListPopupWindow = 0x7f110243 +net.micode.notes:style/Widget.AppCompat.Light.SearchView = 0x7f110240 +net.micode.notes:style/Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f11023f +net.micode.notes:style/Widget.AppCompat.Light.PopupMenu = 0x7f11023e +net.micode.notes:style/Widget.AppCompat.Light.ListView.DropDown = 0x7f11023d +net.micode.notes:style/Widget.AppCompat.Light.ListPopupWindow = 0x7f11023c +net.micode.notes:style/Widget.AppCompat.Light.DropDownItem.Spinner = 0x7f11023b +net.micode.notes:style/Widget.AppCompat.Light.AutoCompleteTextView = 0x7f11023a +net.micode.notes:style/Widget.AppCompat.Light.ActivityChooserView = 0x7f110239 +net.micode.notes:style/Widget.AppCompat.Light.ActionMode.Inverse = 0x7f110238 +net.micode.notes:style/Widget.AppCompat.Light.ActionButton.Overflow = 0x7f110237 +net.micode.notes:style/Widget.AppCompat.Light.ActionButton = 0x7f110235 +net.micode.notes:style/Widget.Design.Snackbar = 0x7f110266 +net.micode.notes:style/Widget.AppCompat.Light.ActionBar.TabView.Inverse = 0x7f110234 +net.micode.notes:style/Widget.AppCompat.Light.ActionBar.TabText = 0x7f110231 +net.micode.notes:style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse = 0x7f110230 +net.micode.notes:style/Widget.AppCompat.Light.ActionBar.Solid.Inverse = 0x7f11022e +net.micode.notes:styleable/Variant = 0x7f120083 +net.micode.notes:style/Widget.AppCompat.Light.ActionBar = 0x7f11022c +net.micode.notes:style/Widget.AppCompat.ImageButton = 0x7f11022b +net.micode.notes:style/Widget.AppCompat.DrawerArrowToggle = 0x7f110228 +net.micode.notes:style/Widget.AppCompat.CompoundButton.Switch = 0x7f110227 +net.micode.notes:style/Widget.AppCompat.CompoundButton.RadioButton = 0x7f110226 +net.micode.notes:style/Widget.AppCompat.CompoundButton.CheckBox = 0x7f110225 +net.micode.notes:style/Widget.AppCompat.ButtonBar.AlertDialog = 0x7f110224 +net.micode.notes:style/Widget.AppCompat.ButtonBar = 0x7f110223 +net.micode.notes:style/Widget.AppCompat.Button.Colored = 0x7f110221 +net.micode.notes:style/Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f110220 +net.micode.notes:style/Widget.AppCompat.Button.Borderless = 0x7f11021e +net.micode.notes:style/Widget.AppCompat.AutoCompleteTextView = 0x7f11021c +net.micode.notes:style/Widget.AppCompat.ActivityChooserView = 0x7f11021b +net.micode.notes:styleable/Tooltip = 0x7f120080 +net.micode.notes:style/Widget.AppCompat.ActionMode = 0x7f11021a +net.micode.notes:style/Widget.AppCompat.ActionButton.Overflow = 0x7f110219 +net.micode.notes:style/Widget.AppCompat.ActionBar.TabText = 0x7f110215 +net.micode.notes:styleable/AppBarLayout = 0x7f12000a +net.micode.notes:style/Widget.AppCompat.ActionBar.TabBar = 0x7f110214 +net.micode.notes:style/Widget.AppCompat.ActionBar.Solid = 0x7f110213 +net.micode.notes:style/Widget.AppCompat.ActionBar = 0x7f110212 +net.micode.notes:style/UI.AppTheme = 0x7f110211 +net.micode.notes:style/ThemeOverlayColorAccentRed = 0x7f110210 +net.micode.notes:style/ThemeOverlay.Mynotes.FullscreenContainer = 0x7f11020f +net.micode.notes:style/ThemeOverlay.MaterialComponents.Toolbar.Surface = 0x7f11020e +net.micode.notes:style/ThemeOverlay.MaterialComponents.Toolbar.Primary = 0x7f11020d +net.micode.notes:style/ThemeOverlay.MaterialComponents.TimePicker.Display = 0x7f11020c +net.micode.notes:style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense = 0x7f11020a +net.micode.notes:style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox = 0x7f110207 +net.micode.notes:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Spinner = 0x7f110203 +net.micode.notes:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text.Day = 0x7f110202 +net.micode.notes:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text = 0x7f110201 +net.micode.notes:style/ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework = 0x7f1101fc +net.micode.notes:style/ThemeOverlay.MaterialComponents.Dialog.Alert.Framework = 0x7f1101fa +net.micode.notes:style/ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f1101f9 +net.micode.notes:style/ThemeOverlay.MaterialComponents.DayNight.BottomSheetDialog = 0x7f1101f7 +net.micode.notes:style/ThemeOverlay.MaterialComponents.Dark = 0x7f1101f5 +net.micode.notes:style/ThemeOverlay.MaterialComponents.BottomAppBar.Surface = 0x7f1101f3 +net.micode.notes:style/ThemeOverlay.MaterialComponents.BottomAppBar.Primary = 0x7f1101f2 +net.micode.notes:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense = 0x7f1101f1 +net.micode.notes:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox = 0x7f1101f0 +net.micode.notes:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox.Dense = 0x7f1101ef +net.micode.notes:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView = 0x7f1101ed +net.micode.notes:style/ThemeOverlay.MaterialComponents.ActionBar.Surface = 0x7f1101ec +net.micode.notes:style/ThemeOverlay.MaterialComponents.ActionBar = 0x7f1101ea +net.micode.notes:style/ThemeOverlay.MaterialComponents = 0x7f1101e9 +net.micode.notes:style/Widget.AppCompat.Light.ActionBar.Solid = 0x7f11022d +net.micode.notes:style/ThemeOverlay.Design.TextInputEditText = 0x7f1101e8 +net.micode.notes:style/ThemeOverlay.AppCompat.Light = 0x7f1101e7 +net.micode.notes:style/ThemeOverlay.AppCompat.Dialog = 0x7f1101e5 +net.micode.notes:style/ThemeOverlay.MaterialComponents.ActionBar.Primary = 0x7f1101eb +net.micode.notes:style/ThemeOverlay.AppCompat.DayNight = 0x7f1101e3 +net.micode.notes:style/ThemeOverlay.AppCompat.Dark = 0x7f1101e1 +net.micode.notes:style/Theme.MaterialComponents.Light.NoActionBar.Bridge = 0x7f1101dc +net.micode.notes:style/Theme.MaterialComponents.Light.NoActionBar = 0x7f1101db +net.micode.notes:style/Theme.MaterialComponents.Light.DialogWhenLarge = 0x7f1101d9 +net.micode.notes:style/Theme.MaterialComponents.Light.Dialog.MinWidth.Bridge = 0x7f1101d8 +net.micode.notes:style/Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f1101d4 +net.micode.notes:style/Theme.MaterialComponents.Light.Dialog = 0x7f1101d1 +net.micode.notes:style/Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f1101d0 +net.micode.notes:style/Theme.MaterialComponents.Light.DarkActionBar = 0x7f1101cf +net.micode.notes:style/Theme.MaterialComponents.Light.BottomSheetDialog = 0x7f1101cd +net.micode.notes:style/Theme.MaterialComponents.Light.BarSize = 0x7f1101cc +net.micode.notes:style/Theme.MaterialComponents.Dialog.MinWidth = 0x7f1101c8 +net.micode.notes:style/Theme.MaterialComponents.Dialog.Alert = 0x7f1101c3 +net.micode.notes:style/Theme.MaterialComponents.DayNight.Dialog.MinWidth.Bridge = 0x7f1101be +net.micode.notes:style/Theme.MaterialComponents.DayNight.DarkActionBar = 0x7f1101b5 +net.micode.notes:style/Theme.MaterialComponents.DayNight = 0x7f1101b2 +net.micode.notes:style/Theme.MaterialComponents.BottomSheetDialog = 0x7f1101af +net.micode.notes:attr/cardCornerRadius = 0x7f040079 +net.micode.notes:style/Theme.Design.Light.BottomSheetDialog = 0x7f1101ab +net.micode.notes:attr/listPreferredItemPaddingStart = 0x7f04021a +net.micode.notes:id/on = 0x7f090156 +net.micode.notes:id/search_src_text = 0x7f090187 +net.micode.notes:style/Theme.AppCompat.Light.Dialog.Alert = 0x7f1101a3 +net.micode.notes:style/MaterialAlertDialog.MaterialComponents.Title.Text.CenterStacked = 0x7f1100f5 +net.micode.notes:style/Theme.AppCompat.Light.Dialog = 0x7f1101a2 +net.micode.notes:style/Theme.AppCompat.Light = 0x7f1101a0 +net.micode.notes:style/Theme.AppCompat.DialogWhenLarge = 0x7f11019e +net.micode.notes:style/Theme.AppCompat.Dialog.MinWidth = 0x7f11019d +net.micode.notes:style/Theme.AppCompat.DayNight.Dialog = 0x7f110196 +net.micode.notes:styleable/ColorStateListItem = 0x7f120020 +net.micode.notes:string/file_name_txt_format = 0x7f100040 +net.micode.notes:string/search_label = 0x7f1000c9 +net.micode.notes:style/TextAppearanceUnderMenuIcon = 0x7f110191 +net.micode.notes:style/TextAppearanceSuper = 0x7f110190 +net.micode.notes:style/TextAppearanceSecondaryItem = 0x7f11018f +net.micode.notes:style/TextAppearanceMedium = 0x7f11018c +net.micode.notes:style/TextAppearance.Widget.AppCompat.Toolbar.Title = 0x7f11018a +net.micode.notes:style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f110189 +net.micode.notes:attr/boxStrokeErrorColor = 0x7f040067 +net.micode.notes:style/TextAppearance.MaterialComponents.Subtitle1 = 0x7f110184 +net.micode.notes:string/format_folder_files_count = 0x7f10004a +net.micode.notes:id/jumpToStart = 0x7f0900e9 +net.micode.notes:style/TextAppearance.MaterialComponents.Headline6 = 0x7f110182 +net.micode.notes:style/TextAppearance.MaterialComponents.Chip = 0x7f11017c +net.micode.notes:style/TextAppearance.MaterialComponents.Button = 0x7f11017a +net.micode.notes:style/Widget.MaterialComponents.TextInputEditText.FilledBox.Dense = 0x7f1102c9 +net.micode.notes:id/accessibility_custom_action_27 = 0x7f090024 +net.micode.notes:style/TextAppearance.Design.Tab = 0x7f110176 +net.micode.notes:style/TextAppearance.Design.Suffix = 0x7f110175 +net.micode.notes:style/TextAppearance.Compat.Notification.Title = 0x7f11016b +net.micode.notes:style/Widget.MaterialComponents.LinearProgressIndicator = 0x7f11029d +net.micode.notes:color/tooltip_background_dark = 0x7f0600d3 +net.micode.notes:style/TextAppearance.Compat.Notification.Line2 = 0x7f110169 +net.micode.notes:style/TextAppearance.Compat.Notification = 0x7f110167 +net.micode.notes:style/TextAppearance.AppCompat.Widget.DropDownItem = 0x7f110161 +net.micode.notes:style/TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f110160 +net.micode.notes:attr/mock_diagonalsColor = 0x7f04024a +net.micode.notes:style/TextAppearance.AppCompat.Widget.Button.Colored = 0x7f11015f +net.micode.notes:style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored = 0x7f11015e +net.micode.notes:style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse = 0x7f11015c +net.micode.notes:attr/thumbStrokeColor = 0x7f04033b +net.micode.notes:style/TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f11015b +net.micode.notes:style/TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f110154 +net.micode.notes:style/TextAppearance.AppCompat.Small.Inverse = 0x7f11014e +net.micode.notes:id/action_bar_spinner = 0x7f090036 +net.micode.notes:style/TextAppearance.AppCompat.Small = 0x7f11014d +net.micode.notes:style/TextAppearance.AppCompat.SearchResult.Subtitle = 0x7f11014b +net.micode.notes:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f110146 +net.micode.notes:string/preferences_account_title = 0x7f1000b6 +net.micode.notes:style/TextAppearance.AppCompat.Light.SearchResult.Subtitle = 0x7f110144 +net.micode.notes:string/preferences_dialog_select_account_tips = 0x7f1000bd +net.micode.notes:style/TextAppearance.AppCompat.Headline = 0x7f110140 +net.micode.notes:attr/actionModeSelectAllDrawable = 0x7f040019 +net.micode.notes:style/TextAppearance.AppCompat.Large.Inverse = 0x7f110143 +net.micode.notes:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox = 0x7f1101ee +net.micode.notes:attr/layout_constraintEnd_toEndOf = 0x7f0401d9 +net.micode.notes:style/TextAppearance.AppCompat.Display3 = 0x7f11013e +net.micode.notes:style/TextAppearance.AppCompat.Display2 = 0x7f11013d +net.micode.notes:style/TestThemeWithLineHeight = 0x7f110135 +net.micode.notes:style/Test.Widget.MaterialComponents.MaterialCalendar.Day.Selected = 0x7f110130 +net.micode.notes:style/Test.Theme.MaterialComponents.MaterialCalendar = 0x7f11012d +net.micode.notes:style/Test.ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day = 0x7f11012c +net.micode.notes:style/ShapeAppearanceOverlay.MaterialComponents.ExtendedFloatingActionButton = 0x7f110124 +net.micode.notes:string/title_activity_splash = 0x7f1000d7 +net.micode.notes:style/ShapeAppearanceOverlay.Cut = 0x7f110120 +net.micode.notes:style/ShapeAppearanceOverlay.BottomRightCut = 0x7f11011f +net.micode.notes:layout/design_navigation_menu = 0x7f0c002d +net.micode.notes:style/Base.Widget.AppCompat.ListView.DropDown = 0x7f1100c4 +net.micode.notes:style/RtlUnderlay.Widget.AppCompat.ActionButton.Overflow = 0x7f110116 +net.micode.notes:style/RtlOverlay.Widget.AppCompat.Search.DropDown = 0x7f11010f +net.micode.notes:style/Base.Widget.AppCompat.SearchView.ActionBar = 0x7f1100cf +net.micode.notes:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text = 0x7f11010d +net.micode.notes:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut = 0x7f11010b +net.micode.notes:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup = 0x7f11010a +net.micode.notes:id/view_tree_saved_state_registry_owner = 0x7f0901f0 +net.micode.notes:style/TextAppearance.Design.CollapsingToolbar.Expanded = 0x7f11016c +net.micode.notes:style/RtlOverlay.Widget.AppCompat.PopupMenuItem = 0x7f110109 +net.micode.notes:style/RtlOverlay.Widget.AppCompat.DialogTitle.Icon = 0x7f110108 +net.micode.notes:style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem = 0x7f110107 +net.micode.notes:styleable/ScrollingViewBehavior_Layout = 0x7f12006b +net.micode.notes:attr/telltales_velocityMode = 0x7f040316 +net.micode.notes:style/Platform.V25.AppCompat.Light = 0x7f110104 +net.micode.notes:style/Platform.V25.AppCompat = 0x7f110103 +net.micode.notes:style/Platform.ThemeOverlay.AppCompat.Light = 0x7f110100 +net.micode.notes:style/TextAppearance.AppCompat.Widget.PopupMenu.Large = 0x7f110163 +net.micode.notes:style/Base.MaterialAlertDialog.MaterialComponents.Title.Panel = 0x7f110013 +net.micode.notes:style/Platform.ThemeOverlay.AppCompat = 0x7f1100fe +net.micode.notes:style/Platform.MaterialComponents.Light.Dialog = 0x7f1100fd +net.micode.notes:style/Platform.MaterialComponents.Dialog = 0x7f1100fb +net.micode.notes:style/Platform.AppCompat.Light = 0x7f1100f9 +net.micode.notes:style/MaterialAlertDialog.MaterialComponents.Title.Panel = 0x7f1100f2 +net.micode.notes:style/MaterialAlertDialog.MaterialComponents.Title.Icon = 0x7f1100f0 +net.micode.notes:style/MaterialAlertDialog.MaterialComponents.Picker.Date.Spinner = 0x7f1100ef +net.micode.notes:attr/searchHintIcon = 0x7f0402b3 +net.micode.notes:style/MaterialAlertDialog.MaterialComponents.Picker.Date.Calendar = 0x7f1100ee +net.micode.notes:style/TextAppearance.AppCompat.Display4 = 0x7f11013f +net.micode.notes:style/Base.Theme.MaterialComponents.CompactMenu = 0x7f110059 +net.micode.notes:style/HighlightTextAppearanceSecondary = 0x7f1100eb +net.micode.notes:style/Theme.MaterialComponents.NoActionBar.Bridge = 0x7f1101de +net.micode.notes:style/CardView.Light = 0x7f1100e8 +net.micode.notes:dimen/mtrl_calendar_selection_baseline_to_top_fullscreen = 0x7f070109 +net.micode.notes:style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f110166 +net.micode.notes:id/tv_locked = 0x7f0901e2 +net.micode.notes:style/Base.Widget.MaterialComponents.TextView = 0x7f1100e5 +net.micode.notes:style/Base.Widget.MaterialComponents.TextInputLayout = 0x7f1100e4 +net.micode.notes:dimen/mtrl_navigation_bar_item_default_margin = 0x7f070141 +net.micode.notes:color/switch_thumb_normal_material_light = 0x7f0600d0 +net.micode.notes:style/Base.Widget.MaterialComponents.TextInputEditText = 0x7f1100e3 +net.micode.notes:drawable/mtrl_navigation_bar_item_background = 0x7f0800b2 +net.micode.notes:style/TextAppearance.Compat.Notification.Info = 0x7f110168 +net.micode.notes:attr/customStringValue = 0x7f040100 +net.micode.notes:style/Base.Widget.MaterialComponents.Snackbar = 0x7f1100e2 +net.micode.notes:style/Base.Widget.MaterialComponents.Slider = 0x7f1100e1 +net.micode.notes:style/Base.Widget.MaterialComponents.PopupMenu.Overflow = 0x7f1100e0 +net.micode.notes:attr/layout_constraintHeight_max = 0x7f0401df +net.micode.notes:string/character_counter_pattern = 0x7f10002a +net.micode.notes:style/Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton = 0x7f1100dc +net.micode.notes:style/Base.Widget.AppCompat.SeekBar.Discrete = 0x7f1100d1 +net.micode.notes:style/Base.Widget.AppCompat.SeekBar = 0x7f1100d0 +net.micode.notes:styleable/FloatingActionButton = 0x7f12002c +net.micode.notes:style/Base.Widget.AppCompat.RatingBar.Indicator = 0x7f1100cc +net.micode.notes:style/Base.Widget.AppCompat.RatingBar = 0x7f1100cb +net.micode.notes:style/Theme.MaterialComponents.Dialog = 0x7f1101c2 +net.micode.notes:style/Base.Widget.AppCompat.ProgressBar.Horizontal = 0x7f1100ca +net.micode.notes:style/Platform.ThemeOverlay.AppCompat.Dark = 0x7f1100ff +net.micode.notes:drawable/abc_list_selector_background_transition_holo_light = 0x7f080036 +net.micode.notes:style/Base.Widget.AppCompat.PopupWindow = 0x7f1100c8 +net.micode.notes:style/Base.Widget.AppCompat.PopupMenu = 0x7f1100c6 +net.micode.notes:style/Base.Widget.AppCompat.ListView.Menu = 0x7f1100c5 +net.micode.notes:style/Base.Widget.AppCompat.ListMenuView = 0x7f1100c1 +net.micode.notes:style/Widget.AppCompat.Button = 0x7f11021d +net.micode.notes:dimen/abc_dialog_padding_top_material = 0x7f070025 +net.micode.notes:color/background_material_light = 0x7f060020 +net.micode.notes:style/Base.Widget.AppCompat.Light.ActionBar.TabView = 0x7f1100be +net.micode.notes:style/Base.Widget.AppCompat.Light.ActionBar.TabBar = 0x7f1100bb +net.micode.notes:style/Base.Widget.AppCompat.EditText = 0x7f1100b7 +net.micode.notes:integer/design_snackbar_text_max_lines = 0x7f0a0006 +net.micode.notes:style/Base.Widget.AppCompat.DropDownItem.Spinner = 0x7f1100b6 +net.micode.notes:style/Base.Widget.AppCompat.CompoundButton.Switch = 0x7f1100b3 +net.micode.notes:dimen/hint_pressed_alpha_material_dark = 0x7f070098 +net.micode.notes:style/Base.Widget.AppCompat.CompoundButton.RadioButton = 0x7f1100b2 +net.micode.notes:style/Base.Widget.AppCompat.CompoundButton.CheckBox = 0x7f1100b1 +net.micode.notes:style/Theme.MaterialComponents = 0x7f1101ae +net.micode.notes:style/Base.Widget.AppCompat.Button.Colored = 0x7f1100ad +net.micode.notes:dimen/design_snackbar_background_corner_radius = 0x7f070080 +net.micode.notes:style/Base.Widget.AppCompat.AutoCompleteTextView = 0x7f1100a8 +net.micode.notes:style/NoteActionBarStyle = 0x7f1100f6 +net.micode.notes:id/row_index_key = 0x7f090174 +net.micode.notes:style/Base.Widget.AppCompat.ActivityChooserView = 0x7f1100a7 +net.micode.notes:style/Base.Widget.AppCompat.ActionMode = 0x7f1100a6 +net.micode.notes:attr/placeholderText = 0x7f040290 +net.micode.notes:style/Theme.AppCompat.Light.NoActionBar = 0x7f1101a6 +net.micode.notes:style/Base.Widget.AppCompat.ActionButton.Overflow = 0x7f1100a5 +net.micode.notes:style/Base.Widget.AppCompat.ActionBar.TabText = 0x7f1100a1 +net.micode.notes:style/Base.V7.Widget.AppCompat.EditText = 0x7f11009c +net.micode.notes:id/view_tree_lifecycle_owner = 0x7f0901ef +net.micode.notes:style/Base.V7.Widget.AppCompat.AutoCompleteTextView = 0x7f11009b +net.micode.notes:style/Base.V7.ThemeOverlay.AppCompat.Dialog = 0x7f11009a +net.micode.notes:style/Base.V7.Theme.AppCompat = 0x7f110096 +net.micode.notes:style/Theme.MaterialComponents.Light.Bridge = 0x7f1101ce +net.micode.notes:style/Base.V28.Theme.AppCompat.Light = 0x7f110095 +net.micode.notes:style/Base.V26.Theme.AppCompat.Light = 0x7f110092 +net.micode.notes:drawable/abc_btn_radio_material = 0x7f080014 +net.micode.notes:style/Base.V23.Theme.AppCompat = 0x7f11008f +net.micode.notes:string/material_motion_easing_decelerated = 0x7f100058 +net.micode.notes:style/Base.V22.Theme.AppCompat = 0x7f11008d +net.micode.notes:style/TextAppearance.MaterialComponents.Headline2 = 0x7f11017e +net.micode.notes:attr/touchAnchorSide = 0x7f04035e +net.micode.notes:style/Base.V21.Theme.MaterialComponents.Light = 0x7f110089 +net.micode.notes:style/Base.V21.Theme.MaterialComponents.Dialog = 0x7f110088 +net.micode.notes:id/delete = 0x7f090089 +net.micode.notes:style/Base.V21.Theme.AppCompat.Light.Dialog = 0x7f110086 +net.micode.notes:style/Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f11007e +net.micode.notes:style/Base.V14.Theme.MaterialComponents.Light.Dialog = 0x7f11007d +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f110036 +net.micode.notes:style/Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f11007c +net.micode.notes:style/Base.V14.Theme.MaterialComponents.Dialog = 0x7f110078 +net.micode.notes:style/Base.ThemeOverlay.MaterialComponents.Dialog.Alert.Framework = 0x7f110073 +net.micode.notes:style/Base.ThemeOverlay.AppCompat.ActionBar = 0x7f11006b +net.micode.notes:style/Base.ThemeOverlay.AppCompat = 0x7f11006a +net.micode.notes:style/Base.Theme.MaterialComponents.Light.Dialog = 0x7f110064 +net.micode.notes:style/Base.Theme.MaterialComponents.Light.DarkActionBar = 0x7f110062 +net.micode.notes:id/cancel = 0x7f090062 +net.micode.notes:style/Base.Theme.MaterialComponents.Light = 0x7f110060 +net.micode.notes:style/Base.Theme.MaterialComponents.Dialog.MinWidth = 0x7f11005e +net.micode.notes:styleable/ShapeableImageView = 0x7f12006e +net.micode.notes:style/Base.Theme.MaterialComponents.Dialog.FixedSize = 0x7f11005d +net.micode.notes:style/Base.Theme.MaterialComponents.Dialog.Alert = 0x7f11005b +net.micode.notes:style/TextAppearance.MaterialComponents.Body2 = 0x7f110179 +net.micode.notes:style/Base.Theme.AppCompat.Light.DialogWhenLarge = 0x7f110056 +net.micode.notes:dimen/mtrl_calendar_text_input_padding_top = 0x7f07010d +net.micode.notes:style/Base.Theme.AppCompat.Light.Dialog = 0x7f110052 +net.micode.notes:style/Widget.MaterialComponents.PopupMenu.Overflow = 0x7f1102be +net.micode.notes:style/TextAppearance.AppCompat.Medium.Inverse = 0x7f110149 +net.micode.notes:style/Base.Theme.AppCompat.Dialog.MinWidth = 0x7f11004e +net.micode.notes:style/Base.Theme.AppCompat.Dialog.FixedSize = 0x7f11004d +net.micode.notes:style/Base.Theme.AppCompat.Dialog.Alert = 0x7f11004c +net.micode.notes:dimen/mtrl_extended_fab_start_padding = 0x7f07012c +net.micode.notes:style/Base.Theme.AppCompat.Dialog = 0x7f11004b +net.micode.notes:style/Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f110046 +net.micode.notes:style/Base.TextAppearance.MaterialComponents.Headline6 = 0x7f110044 +net.micode.notes:layout/account_dialog_title = 0x7f0c001c +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.Switch = 0x7f110040 +net.micode.notes:style/Widget.AppTheme.Base.ActionBar.Fullscreen = 0x7f11025b +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.Button.Colored = 0x7f11003a +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored = 0x7f110039 +net.micode.notes:style/Base.Widget.AppCompat.ImageButton = 0x7f1100b8 +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f110034 +net.micode.notes:style/Base.TextAppearance.AppCompat.Title = 0x7f11002e +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.DayTextView = 0x7f1102a4 +net.micode.notes:dimen/abc_text_size_body_1_material = 0x7f07003f +net.micode.notes:style/Base.TextAppearance.AppCompat.Small.Inverse = 0x7f11002b +net.micode.notes:style/Base.TextAppearance.AppCompat.SearchResult.Title = 0x7f110029 +net.micode.notes:string/abc_searchview_description_search = 0x7f100015 +net.micode.notes:style/Base.TextAppearance.AppCompat.SearchResult.Subtitle = 0x7f110028 +net.micode.notes:attr/fabCradleRoundedCornerRadius = 0x7f04014b +net.micode.notes:id/guideline = 0x7f0900c6 +net.micode.notes:style/Base.TextAppearance.MaterialComponents.Badge = 0x7f110042 +net.micode.notes:style/Base.TextAppearance.AppCompat.Menu = 0x7f110026 +net.micode.notes:style/Base.TextAppearance.AppCompat.Medium.Inverse = 0x7f110025 +net.micode.notes:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f110023 +net.micode.notes:dimen/mtrl_btn_text_btn_padding_right = 0x7f0700e8 +net.micode.notes:style/Base.TextAppearance.AppCompat.Display4 = 0x7f11001d +net.micode.notes:style/Base.TextAppearance.AppCompat.Display3 = 0x7f11001c +net.micode.notes:style/Base.TextAppearance.AppCompat.Button = 0x7f110018 +net.micode.notes:layout/test_action_chip = 0x7f0c0070 +net.micode.notes:style/Base.TextAppearance.AppCompat.Body1 = 0x7f110016 +net.micode.notes:attr/materialCalendarHeaderToggleButton = 0x7f04022d +net.micode.notes:style/Base.DialogWindowTitle.AppCompat = 0x7f110010 +net.micode.notes:attr/drawableRightCompat = 0x7f04011a +net.micode.notes:style/Base.Animation.AppCompat.Tooltip = 0x7f11000e +net.micode.notes:string/note_link_tel = 0x7f1000aa +net.micode.notes:style/Base.Animation.AppCompat.Dialog = 0x7f11000c +net.micode.notes:style/Base.AlertDialog.AppCompat = 0x7f11000a +net.micode.notes:style/Animation.MaterialComponents.BottomSheetDialog = 0x7f110007 +net.micode.notes:layout/abc_alert_dialog_material = 0x7f0c0009 +net.micode.notes:id/iv_bg_green = 0x7f0900dc +net.micode.notes:style/Animation.Design.BottomSheetDialog = 0x7f110006 +net.micode.notes:styleable/RangeSlider = 0x7f120067 +net.micode.notes:dimen/mtrl_badge_text_horizontal_edge_offset = 0x7f0700c8 +net.micode.notes:style/Animation.AppCompat.Dialog = 0x7f110003 +net.micode.notes:attr/bottomSheetDialogTheme = 0x7f04005d +net.micode.notes:style/AndroidThemeColorAccentYellow = 0x7f110002 +net.micode.notes:style/MaterialAlertDialog.MaterialComponents.Title.Icon.CenterStacked = 0x7f1100f1 +net.micode.notes:style/AlertDialog.AppCompat = 0x7f110000 +net.micode.notes:string/wallpaper1 = 0x7f1000d9 +net.micode.notes:id/visible = 0x7f0901f2 +net.micode.notes:style/Base.TextAppearance.AppCompat.Medium = 0x7f110024 +net.micode.notes:id/line3 = 0x7f0900ef +net.micode.notes:string/trash_name = 0x7f1000d8 +net.micode.notes:string/ticker_syncing = 0x7f1000d6 +net.micode.notes:id/tag_transition_group = 0x7f0901b8 +net.micode.notes:string/ticker_fail = 0x7f1000d4 +net.micode.notes:string/ticker_cancel = 0x7f1000d3 +net.micode.notes:anim/abc_popup_enter = 0x7f010003 +net.micode.notes:style/Base.DialogWindowTitleBackground.AppCompat = 0x7f110011 +net.micode.notes:string/sync_progress_syncing = 0x7f1000d2 +net.micode.notes:style/Widget.AppCompat.ListView.Menu = 0x7f110246 +net.micode.notes:attr/triggerReceiver = 0x7f04036f +net.micode.notes:string/sync_progress_login = 0x7f1000d1 +net.micode.notes:string/success_sync_account = 0x7f1000cf +net.micode.notes:attr/boxStrokeWidthFocused = 0x7f040069 +net.micode.notes:attr/switchPadding = 0x7f0402f5 +net.micode.notes:color/abc_hint_foreground_material_light = 0x7f060008 +net.micode.notes:string/preferences_title = 0x7f1000c4 +net.micode.notes:attr/textColorAlertDialogListItem = 0x7f04032e +net.micode.notes:string/preferences_last_sync_time_format = 0x7f1000c0 +net.micode.notes:styleable/MaterialAutoCompleteTextView = 0x7f120048 +net.micode.notes:style/Theme.Design.NoActionBar = 0x7f1101ad +net.micode.notes:attr/useCompatPadding = 0x7f040372 +net.micode.notes:string/preferences_bg_random_appear_title = 0x7f1000b8 +net.micode.notes:style/Widget.AppCompat.SearchView = 0x7f11024f +net.micode.notes:string/preferences_account_summary = 0x7f1000b5 +net.micode.notes:string/sync_progress_init_list = 0x7f1000d0 +net.micode.notes:string/notelist_string_info = 0x7f1000af +net.micode.notes:id/accessibility_custom_action_28 = 0x7f090025 +net.micode.notes:string/notealert_ok = 0x7f1000ad +net.micode.notes:style/Theme.MaterialComponents.Light.Dialog.FixedSize.Bridge = 0x7f1101d6 +net.micode.notes:string/notealert_enter = 0x7f1000ac +net.micode.notes:string/note_link_web = 0x7f1000ab +net.micode.notes:string/search_hint = 0x7f1000c8 +net.micode.notes:string/note_link_other = 0x7f1000a9 +net.micode.notes:string/note_link_email = 0x7f1000a8 +net.micode.notes:string/note_alert_expired = 0x7f1000a7 +net.micode.notes:bool/abc_action_bar_embed_tabs = 0x7f050000 +net.micode.notes:string/mtrl_picker_toggle_to_year_selection = 0x7f1000a6 +net.micode.notes:id/month_navigation_next = 0x7f090124 +net.micode.notes:string/mtrl_picker_toggle_to_text_input_mode = 0x7f1000a5 +net.micode.notes:string/mtrl_picker_toggle_to_day_selection = 0x7f1000a4 +net.micode.notes:string/mtrl_picker_text_input_year_abbr = 0x7f1000a2 +net.micode.notes:id/search_badge = 0x7f09017f +net.micode.notes:id/disableScroll = 0x7f090096 +net.micode.notes:string/mtrl_picker_text_input_date_range_end_hint = 0x7f10009e +net.micode.notes:string/mtrl_picker_save = 0x7f10009c +net.micode.notes:dimen/mtrl_btn_text_btn_padding_left = 0x7f0700e7 +net.micode.notes:string/mtrl_picker_range_header_selected = 0x7f100099 +net.micode.notes:string/mtrl_picker_range_header_only_end_selected = 0x7f100097 +net.micode.notes:string/mtrl_picker_out_of_range = 0x7f100096 +net.micode.notes:style/ThemeOverlay.AppCompat.ActionBar = 0x7f1101e0 +net.micode.notes:animator/fragment_open_exit = 0x7f020008 +net.micode.notes:string/mtrl_picker_invalid_format_use = 0x7f100093 +net.micode.notes:string/abc_capital_on = 0x7f100007 +net.micode.notes:string/search = 0x7f1000c7 +net.micode.notes:string/mtrl_picker_invalid_format = 0x7f100091 +net.micode.notes:string/mtrl_picker_day_of_week_column_header = 0x7f100090 +net.micode.notes:string/mtrl_picker_date_header_unselected = 0x7f10008f +net.micode.notes:color/design_dark_default_color_on_surface = 0x7f060037 +net.micode.notes:string/mtrl_picker_confirm = 0x7f10008c +net.micode.notes:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Centered = 0x7f1101fe +net.micode.notes:string/mtrl_picker_cancel = 0x7f10008b +net.micode.notes:string/mtrl_picker_a11y_prev_month = 0x7f100089 +net.micode.notes:string/mtrl_exceed_max_badge_number_suffix = 0x7f100087 +net.micode.notes:string/menu_share = 0x7f100080 +net.micode.notes:anim/design_bottom_sheet_slide_in = 0x7f010018 +net.micode.notes:style/ShapeAppearanceOverlay = 0x7f11011d +net.micode.notes:string/menu_send_to_desktop = 0x7f10007e +net.micode.notes:string/set_remind_time_message = 0x7f1000cc +net.micode.notes:string/menu_select_none = 0x7f10007c +net.micode.notes:string/mtrl_picker_date_header_selected = 0x7f10008d +net.micode.notes:string/menu_select_all = 0x7f10007b +net.micode.notes:string/menu_secret = 0x7f10007a +net.micode.notes:string/menu_remove_remind = 0x7f100078 +net.micode.notes:attr/actionModeCloseContentDescription = 0x7f040012 +net.micode.notes:style/Base.V14.Theme.MaterialComponents = 0x7f110076 +net.micode.notes:id/design_navigation_view = 0x7f090090 +net.micode.notes:string/menu_move_parent_folder = 0x7f100075 +net.micode.notes:style/TextAppearance.MaterialComponents.Body1 = 0x7f110178 +net.micode.notes:string/menu_list_mode = 0x7f100073 +net.micode.notes:styleable/ClockFaceView = 0x7f12001c +net.micode.notes:attr/defaultDuration = 0x7f040105 +net.micode.notes:string/menu_font_small = 0x7f100071 +net.micode.notes:attr/cardMaxElevation = 0x7f04007c +net.micode.notes:dimen/mtrl_slider_track_top = 0x7f07016a +net.micode.notes:string/menu_font_size = 0x7f100070 +net.micode.notes:string/preferences_toast_cannot_change_account = 0x7f1000c5 +net.micode.notes:id/et_edit_text = 0x7f0900ab +net.micode.notes:string/menu_font_normal = 0x7f10006f +net.micode.notes:string/menu_folder_view = 0x7f10006d +net.micode.notes:dimen/abc_dialog_min_width_minor = 0x7f070023 +net.micode.notes:string/menu_folder_delete = 0x7f10006b +net.micode.notes:string/menu_folder_change_name = 0x7f10006a +net.micode.notes:string/menu_delete = 0x7f100067 +net.micode.notes:string/menu_create_folder = 0x7f100066 +net.micode.notes:string/menu_alert = 0x7f100065 +net.micode.notes:style/Base.Theme.MaterialComponents.Light.Dialog.Alert = 0x7f110065 +net.micode.notes:string/material_timepicker_select_time = 0x7f100063 +net.micode.notes:string/material_timepicker_clock_mode_description = 0x7f10005f +net.micode.notes:string/material_slider_range_start = 0x7f10005d +net.micode.notes:attr/behavior_peekHeight = 0x7f040056 +net.micode.notes:string/material_slider_range_end = 0x7f10005c +net.micode.notes:string/material_motion_easing_linear = 0x7f10005a +net.micode.notes:color/mtrl_navigation_bar_ripple_color = 0x7f0600a3 +net.micode.notes:string/material_motion_easing_emphasized = 0x7f100059 +net.micode.notes:string/material_motion_easing_accelerated = 0x7f100057 +net.micode.notes:integer/abc_config_activityShortDur = 0x7f0a0001 +net.micode.notes:string/material_minute_suffix = 0x7f100056 +net.micode.notes:style/Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f110063 +net.micode.notes:string/material_minute_selection = 0x7f100055 +net.micode.notes:attr/expandedTitleMarginTop = 0x7f040143 +net.micode.notes:attr/titleMargins = 0x7f040352 +net.micode.notes:string/material_hour_selection = 0x7f100053 +net.micode.notes:string/material_clock_toggle_content_description = 0x7f100052 +net.micode.notes:dimen/mtrl_exposed_dropdown_menu_popup_vertical_offset = 0x7f07011f +net.micode.notes:color/abc_search_url_text_selected = 0x7f060010 +net.micode.notes:string/preferences_dialog_change_account_title = 0x7f1000bb +net.micode.notes:style/Theme.MaterialComponents.Bridge = 0x7f1101b0 +net.micode.notes:string/hint_foler_name = 0x7f10004d +net.micode.notes:string/format_date_ymd = 0x7f100047 +net.micode.notes:string/forbidden_add_in_trash = 0x7f100043 +net.micode.notes:string/folder_exist = 0x7f100042 +net.micode.notes:drawable/abc_ab_share_pack_mtrl_alpha = 0x7f08000b +net.micode.notes:string/fab_transformation_scrim_behavior = 0x7f10003d +net.micode.notes:string/error_sync_internal = 0x7f10003a +net.micode.notes:attr/errorIconTintMode = 0x7f040138 +net.micode.notes:string/error_sdcard_export = 0x7f100037 +net.micode.notes:string/error_note_not_exist = 0x7f100036 +net.micode.notes:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Calendar = 0x7f110200 +net.micode.notes:style/TextAppearance.Design.Counter.Overflow = 0x7f11016e +net.micode.notes:string/error_note_empty_for_send_to_desktop = 0x7f100035 +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f110032 +net.micode.notes:dimen/abc_action_button_min_height_material = 0x7f07000d +net.micode.notes:string/error_note_empty_for_clock = 0x7f100034 +net.micode.notes:styleable/AlertDialog = 0x7f120006 +net.micode.notes:attr/materialAlertDialogTitlePanelStyle = 0x7f040220 +net.micode.notes:string/error_icon_content_description = 0x7f100033 +net.micode.notes:string/edit_message = 0x7f100032 +net.micode.notes:dimen/abc_text_size_display_1_material = 0x7f070043 +net.micode.notes:style/Platform.MaterialComponents.Light = 0x7f1100fc +net.micode.notes:dimen/mtrl_textinput_box_corner_radius_medium = 0x7f070173 +net.micode.notes:string/clear_text_end_icon_content_description = 0x7f10002c +net.micode.notes:string/chip_text = 0x7f10002b +net.micode.notes:string/call_record_folder_name = 0x7f100027 +net.micode.notes:id/accessibility_custom_action_15 = 0x7f090017 +net.micode.notes:style/Theme.MaterialComponents.DayNight.DarkActionBar.Bridge = 0x7f1101b6 +net.micode.notes:string/bottomsheet_action_expand_halfway = 0x7f100024 +net.micode.notes:string/appbar_scrolling_view_behavior = 0x7f100022 +net.micode.notes:styleable/SnackbarLayout = 0x7f120071 +net.micode.notes:string/app_widget4x4 = 0x7f100021 +net.micode.notes:string/app_widget2x2 = 0x7f100020 +net.micode.notes:string/app_name = 0x7f10001f +net.micode.notes:drawable/abc_list_selector_background_transition_holo_dark = 0x7f080035 +net.micode.notes:string/alert_title_delete = 0x7f10001e +net.micode.notes:attr/popupMenuStyle = 0x7f040295 +net.micode.notes:dimen/abc_search_view_preferred_width = 0x7f070037 +net.micode.notes:string/alert_message_delete_note = 0x7f10001c +net.micode.notes:string/abc_shareactionprovider_share_with = 0x7f100018 +net.micode.notes:drawable/list_yellow_middle = 0x7f08009b +net.micode.notes:string/abc_searchview_description_voice = 0x7f100017 +net.micode.notes:color/notification_icon_bg_color = 0x7f0600b9 +net.micode.notes:layout/note_item = 0x7f0c0061 +net.micode.notes:string/abc_searchview_description_submit = 0x7f100016 +net.micode.notes:string/abc_searchview_description_query = 0x7f100014 +net.micode.notes:string/abc_search_hint = 0x7f100012 +net.micode.notes:string/abc_menu_sym_shortcut_label = 0x7f100010 +net.micode.notes:string/abc_menu_shift_shortcut_label = 0x7f10000e +net.micode.notes:string/abc_menu_ctrl_shortcut_label = 0x7f100009 +net.micode.notes:style/TestThemeWithLineHeightDisabled = 0x7f110136 +net.micode.notes:attr/indicatorColor = 0x7f04019d +net.micode.notes:string/abc_capital_off = 0x7f100006 +net.micode.notes:string/abc_activitychooserview_choose_application = 0x7f100005 +net.micode.notes:string/abc_action_menu_overflow_description = 0x7f100002 +net.micode.notes:style/TextAppearance.Design.Snackbar.Message = 0x7f110174 +net.micode.notes:style/HighlightTextAppearancePrimary = 0x7f1100ea +net.micode.notes:string/abc_action_bar_up_description = 0x7f100001 +net.micode.notes:drawable/lock = 0x7f08009f +net.micode.notes:string/abc_action_bar_home_description = 0x7f100000 +net.micode.notes:raw/introduction = 0x7f0f0000 +net.micode.notes:menu/note_list_options = 0x7f0d0005 +net.micode.notes:style/Base.TextAppearance.AppCompat.Headline = 0x7f11001e +net.micode.notes:string/failed_sdcard_export = 0x7f10003f +net.micode.notes:menu/note_list_dropdown = 0x7f0d0004 +net.micode.notes:attr/themeLineHeight = 0x7f040336 +net.micode.notes:menu/call_record_folder = 0x7f0d0001 +net.micode.notes:layout/text_view_with_theme_line_height = 0x7f0c007d +net.micode.notes:layout/text_view_with_line_height_from_style = 0x7f0c007c +net.micode.notes:layout/test_toolbar_elevation = 0x7f0c0078 +net.micode.notes:layout/test_toolbar = 0x7f0c0076 +net.micode.notes:layout/test_navigation_bar_item_layout = 0x7f0c0074 +net.micode.notes:layout/test_design_radiobutton = 0x7f0c0073 +net.micode.notes:layout/test_chip_zero_corner_radius = 0x7f0c0071 +net.micode.notes:layout/support_simple_spinner_dropdown_item = 0x7f0c006f +net.micode.notes:layout/select_dialog_item_material = 0x7f0c006b +net.micode.notes:id/menu_delete = 0x7f09010d +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f110035 +net.micode.notes:layout/notification_template_part_time = 0x7f0c006a +net.micode.notes:id/default_activity_button = 0x7f090088 +net.micode.notes:id/iv_bg_white_select = 0x7f0900e1 +net.micode.notes:style/Base.Theme.MaterialComponents.DialogWhenLarge = 0x7f11005f +net.micode.notes:layout/notification_template_icon_group = 0x7f0c0068 +net.micode.notes:style/Base.Widget.AppCompat.Light.PopupMenu = 0x7f1100bf +net.micode.notes:style/Theme.MaterialComponents.DayNight.DialogWhenLarge = 0x7f1101bf +net.micode.notes:layout/notification_template_custom_big = 0x7f0c0067 +net.micode.notes:dimen/notification_action_icon_size = 0x7f070183 +net.micode.notes:string/path_password_strike_through = 0x7f1000b4 +net.micode.notes:layout/notification_action_tombstone = 0x7f0c0066 +net.micode.notes:layout/notification_action = 0x7f0c0065 +net.micode.notes:style/Base.Theme.MaterialComponents = 0x7f110057 +net.micode.notes:layout/note_list_dropdown_menu = 0x7f0c0063 +net.micode.notes:style/Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f110232 +net.micode.notes:layout/mtrl_picker_text_input_date_range = 0x7f0c005e +net.micode.notes:dimen/abc_action_button_min_width_overflow_material = 0x7f07000f +net.micode.notes:layout/mtrl_picker_text_input_date = 0x7f0c005d +net.micode.notes:color/mtrl_fab_bg_color_selector = 0x7f060099 +net.micode.notes:layout/mtrl_picker_header_toggle = 0x7f0c005c +net.micode.notes:layout/mtrl_picker_header_title_text = 0x7f0c005b +net.micode.notes:layout/abc_dialog_title_material = 0x7f0c000c +net.micode.notes:style/Theme.AppCompat.DayNight.NoActionBar = 0x7f11019a +net.micode.notes:attr/actionModePasteDrawable = 0x7f040017 +net.micode.notes:attr/layout_scrollFlags = 0x7f040204 +net.micode.notes:id/ll_font_small = 0x7f0900f5 +net.micode.notes:layout/mtrl_picker_header_selection_text = 0x7f0c005a +net.micode.notes:style/TextAppearance.AppCompat.Title = 0x7f110151 +net.micode.notes:layout/mtrl_picker_header_fullscreen = 0x7f0c0059 +net.micode.notes:layout/material_timepicker_dialog = 0x7f0c0040 +net.micode.notes:layout/mtrl_picker_header_dialog = 0x7f0c0058 +net.micode.notes:layout/mtrl_picker_fullscreen = 0x7f0c0057 +net.micode.notes:attr/round = 0x7f0402ad +net.micode.notes:style/Base.Widget.MaterialComponents.PopupMenu = 0x7f1100dd +net.micode.notes:layout/mtrl_picker_dialog = 0x7f0c0056 +net.micode.notes:styleable/KeyFrame = 0x7f12003b +net.micode.notes:layout/mtrl_picker_actions = 0x7f0c0055 +net.micode.notes:layout/test_toolbar_custom_background = 0x7f0c0077 +net.micode.notes:style/Base.Theme.AppCompat.Light.Dialog.MinWidth = 0x7f110055 +net.micode.notes:layout/mtrl_navigation_rail_item = 0x7f0c0054 +net.micode.notes:attr/listPreferredItemPaddingLeft = 0x7f040218 +net.micode.notes:layout/mtrl_layout_snackbar = 0x7f0c0052 +net.micode.notes:layout/mtrl_calendar_months = 0x7f0c004f +net.micode.notes:layout/mtrl_calendar_month_navigation = 0x7f0c004e +net.micode.notes:layout/mtrl_calendar_month_labeled = 0x7f0c004d +net.micode.notes:color/mtrl_navigation_bar_colored_item_tint = 0x7f0600a0 +net.micode.notes:drawable/notification_tile_bg = 0x7f0800c7 +net.micode.notes:layout/mtrl_calendar_day = 0x7f0c0048 +net.micode.notes:style/Theme.MaterialComponents.DayNight.Dialog.Alert.Bridge = 0x7f1101b9 +net.micode.notes:layout/note_edit_list_item = 0x7f0c0060 +net.micode.notes:layout/mtrl_alert_select_dialog_singlechoice = 0x7f0c0047 +net.micode.notes:dimen/compat_button_inset_vertical_material = 0x7f070058 +net.micode.notes:id/clear_text = 0x7f090073 +net.micode.notes:layout/mtrl_alert_select_dialog_item = 0x7f0c0045 +net.micode.notes:style/TextAppearance.MaterialComponents.Overline = 0x7f110183 +net.micode.notes:layout/mtrl_alert_dialog_actions = 0x7f0c0043 +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f110037 +net.micode.notes:layout/mtrl_alert_dialog = 0x7f0c0042 +net.micode.notes:layout/material_timepicker = 0x7f0c003f +net.micode.notes:style/Base.TextAppearance.AppCompat.Large = 0x7f110020 +net.micode.notes:style/Widget.AppCompat.Spinner.DropDown.ActionBar = 0x7f110255 +net.micode.notes:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen = 0x7f110127 +net.micode.notes:layout/material_time_input = 0x7f0c003e +net.micode.notes:layout/material_time_chip = 0x7f0c003d +net.micode.notes:string/delete_remind_time_message = 0x7f10002f +net.micode.notes:layout/material_textinput_timepicker = 0x7f0c003c +net.micode.notes:style/TestStyleWithLineHeight = 0x7f110131 +net.micode.notes:string/menu_normal_mode = 0x7f100076 +net.micode.notes:color/material_blue_grey_950 = 0x7f060065 +net.micode.notes:layout/material_radial_view_group = 0x7f0c003b +net.micode.notes:layout/material_clockface_view = 0x7f0c003a +net.micode.notes:color/dim_foreground_disabled_material_light = 0x7f060056 +net.micode.notes:layout/material_clockface_textview = 0x7f0c0039 +net.micode.notes:attr/showDelay = 0x7f0402c2 +net.micode.notes:layout/material_clock_period_toggle = 0x7f0c0037 +net.micode.notes:style/EmptyTheme = 0x7f1100e9 +net.micode.notes:style/Widget.MaterialComponents.TimePicker.Display = 0x7f1102d8 +net.micode.notes:layout/folder_list_item = 0x7f0c0033 +net.micode.notes:style/Widget.AppCompat.Spinner.DropDown = 0x7f110254 +net.micode.notes:layout/design_text_input_start_icon = 0x7f0c0030 +net.micode.notes:attr/layoutManager = 0x7f0401c8 +net.micode.notes:layout/design_navigation_menu_item = 0x7f0c002e +net.micode.notes:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date = 0x7f1101ff +net.micode.notes:id/CTRL = 0x7f090003 +net.micode.notes:id/accessibility_custom_action_14 = 0x7f090016 +net.micode.notes:id/note_edit_list = 0x7f09014c +net.micode.notes:layout/design_navigation_item = 0x7f0c0029 +net.micode.notes:dimen/abc_edit_text_inset_top_material = 0x7f07002e +net.micode.notes:string/wallpaper2 = 0x7f1000da +net.micode.notes:style/ShapeAppearanceOverlay.TopLeftCut = 0x7f11012a +net.micode.notes:layout/design_menu_item_action_area = 0x7f0c0028 +net.micode.notes:layout/design_layout_tab_icon = 0x7f0c0026 +net.micode.notes:layout/design_layout_snackbar_include = 0x7f0c0025 +net.micode.notes:layout/note_list = 0x7f0c0062 +net.micode.notes:layout/design_layout_snackbar = 0x7f0c0024 +net.micode.notes:layout/design_bottom_sheet_dialog = 0x7f0c0023 +net.micode.notes:layout/design_bottom_navigation_item = 0x7f0c0022 +net.micode.notes:layout/mtrl_alert_select_dialog_multichoice = 0x7f0c0046 +net.micode.notes:layout/datetime_picker = 0x7f0c0021 +net.micode.notes:dimen/mtrl_alert_dialog_background_inset_bottom = 0x7f0700c0 +net.micode.notes:drawable/abc_star_black_48dp = 0x7f08004a +net.micode.notes:layout/custom_dialog = 0x7f0c0020 +net.micode.notes:attr/closeIconSize = 0x7f0400a9 +net.micode.notes:layout/abc_select_dialog_material = 0x7f0c001a +net.micode.notes:layout/abc_screen_simple_overlay_action_mode = 0x7f0c0016 +net.micode.notes:layout/abc_screen_simple = 0x7f0c0015 +net.micode.notes:layout/abc_screen_content_include = 0x7f0c0014 +net.micode.notes:string/widget_havenot_content = 0x7f1000db +net.micode.notes:layout/abc_list_menu_item_icon = 0x7f0c000f +net.micode.notes:attr/menuGravity = 0x7f040244 +net.micode.notes:style/Base.Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f110066 +net.micode.notes:id/accessibility_custom_action_6 = 0x7f09002c +net.micode.notes:layout/abc_list_menu_item_checkbox = 0x7f0c000e +net.micode.notes:layout/abc_cascading_menu_item_layout = 0x7f0c000b +net.micode.notes:layout/abc_alert_dialog_button_bar_material = 0x7f0c0008 +net.micode.notes:attr/contentInsetStartWithNavigation = 0x7f0400d8 +net.micode.notes:layout/abc_action_menu_layout = 0x7f0c0003 +net.micode.notes:layout/abc_action_bar_title_item = 0x7f0c0000 +net.micode.notes:interpolator/mtrl_linear_out_slow_in = 0x7f0b000a +net.micode.notes:interpolator/mtrl_linear = 0x7f0b0009 +net.micode.notes:style/ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f1101f4 +net.micode.notes:interpolator/mtrl_fast_out_linear_in = 0x7f0b0007 +net.micode.notes:interpolator/btn_radio_to_on_mtrl_animation_interpolator_0 = 0x7f0b0005 +net.micode.notes:styleable/TextInputLayout = 0x7f12007d +net.micode.notes:interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0 = 0x7f0b0000 +net.micode.notes:dimen/abc_action_bar_overflow_padding_end_material = 0x7f070007 +net.micode.notes:integer/status_bar_notification_info_maxnum = 0x7f0a001b +net.micode.notes:integer/mtrl_tab_indicator_anim_duration_ms = 0x7f0a0019 +net.micode.notes:style/Base.V14.Theme.MaterialComponents.Dialog.Bridge = 0x7f110079 +net.micode.notes:integer/mtrl_card_anim_duration_ms = 0x7f0a0017 +net.micode.notes:color/foreground_material_dark = 0x7f06005b +net.micode.notes:style/Test.Widget.MaterialComponents.MaterialCalendar = 0x7f11012e +net.micode.notes:attr/lineHeight = 0x7f040209 +net.micode.notes:integer/mtrl_card_anim_delay_ms = 0x7f0a0016 +net.micode.notes:integer/mtrl_calendar_header_orientation = 0x7f0a0013 +net.micode.notes:attr/actionOverflowButtonStyle = 0x7f04001f +net.micode.notes:integer/mtrl_btn_anim_duration_ms = 0x7f0a0012 +net.micode.notes:integer/material_motion_duration_short_2 = 0x7f0a000e +net.micode.notes:attr/navigationIconTint = 0x7f040268 +net.micode.notes:dimen/abc_text_size_large_material = 0x7f070048 +net.micode.notes:integer/material_motion_duration_short_1 = 0x7f0a000d +net.micode.notes:string/exposed_dropdown_menu_content_description = 0x7f10003c +net.micode.notes:integer/material_motion_duration_medium_2 = 0x7f0a000c +net.micode.notes:integer/material_motion_duration_long_2 = 0x7f0a000a +net.micode.notes:integer/hide_password_duration = 0x7f0a0008 +net.micode.notes:integer/design_tab_indicator_anim_duration_ms = 0x7f0a0007 +net.micode.notes:style/Base.V14.Theme.MaterialComponents.Bridge = 0x7f110077 +net.micode.notes:attr/lastBaselineToBottomHeight = 0x7f0401c4 +net.micode.notes:integer/config_tooltipAnimTime = 0x7f0a0005 +net.micode.notes:integer/app_bar_elevation_anim_duration = 0x7f0a0002 +net.micode.notes:dimen/abc_dialog_fixed_height_minor = 0x7f07001d +net.micode.notes:style/Base.Theme.MaterialComponents.Light.DialogWhenLarge = 0x7f110069 +net.micode.notes:id/widget_text = 0x7f0901f5 +net.micode.notes:style/Base.Theme.MaterialComponents.Dialog.Bridge = 0x7f11005c +net.micode.notes:id/up = 0x7f0901ec +net.micode.notes:id/uniform = 0x7f0901ea +net.micode.notes:style/CardView.Dark = 0x7f1100e7 +net.micode.notes:attr/iconSize = 0x7f040195 +net.micode.notes:dimen/mtrl_navigation_rail_text_bottom_margin = 0x7f07014f +net.micode.notes:id/tv_unlocked = 0x7f0901e8 +net.micode.notes:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse = 0x7f11015a +net.micode.notes:dimen/mtrl_calendar_header_divider_thickness = 0x7f0700fa +net.micode.notes:attr/layout_constrainedWidth = 0x7f0401cf +net.micode.notes:color/dim_foreground_material_light = 0x7f060058 +net.micode.notes:dimen/design_snackbar_elevation = 0x7f070081 +net.micode.notes:id/tv_title_bar = 0x7f0901e7 +net.micode.notes:id/tv_time = 0x7f0901e5 +net.micode.notes:id/tv_folder_name = 0x7f0901e1 +net.micode.notes:id/tv_alert_date = 0x7f0901e0 +net.micode.notes:id/triangle = 0x7f0901df +net.micode.notes:dimen/mtrl_chip_text_size = 0x7f07011c +net.micode.notes:id/transition_transform = 0x7f0901de +net.micode.notes:id/transition_scene_layoutid_cache = 0x7f0901dd +net.micode.notes:string/fab_transformation_sheet_behavior = 0x7f10003e +net.micode.notes:id/transition_position = 0x7f0901dc +net.micode.notes:id/transition_current_scene = 0x7f0901da +net.micode.notes:attr/stackFromEnd = 0x7f0402d7 +net.micode.notes:integer/mtrl_chip_anim_duration = 0x7f0a0018 +net.micode.notes:id/touch_outside = 0x7f0901d7 +net.micode.notes:string/alert_message_delete_folder = 0x7f10001b +net.micode.notes:id/toggle = 0x7f0901d4 +net.micode.notes:id/mtrl_view_tag_bottom_padding = 0x7f09013f +net.micode.notes:drawable/abc_ic_search_api_material = 0x7f08002b +net.micode.notes:id/time = 0x7f0901d0 +net.micode.notes:id/textinput_suffix_text = 0x7f0901cf +net.micode.notes:id/textinput_prefix_text = 0x7f0901ce +net.micode.notes:id/textinput_placeholder = 0x7f0901cd +net.micode.notes:integer/bottom_sheet_slide_duration = 0x7f0a0003 +net.micode.notes:id/textinput_helper_text = 0x7f0901cc +net.micode.notes:style/Base.Widget.AppCompat.Light.ActionBar = 0x7f1100b9 +net.micode.notes:id/textinput_error = 0x7f0901cb +net.micode.notes:id/textinput_counter = 0x7f0901ca +net.micode.notes:id/text_input_start_icon = 0x7f0901c9 +net.micode.notes:id/text_input_end_icon = 0x7f0901c7 +net.micode.notes:id/textSpacerNoTitle = 0x7f0901c4 +net.micode.notes:id/textSpacerNoButtons = 0x7f0901c3 +net.micode.notes:id/textEnd = 0x7f0901c2 +net.micode.notes:string/mtrl_picker_range_header_unselected = 0x7f10009b +net.micode.notes:id/text2 = 0x7f0901c1 +net.micode.notes:style/TextAppearance.Design.Counter = 0x7f11016d +net.micode.notes:id/text = 0x7f0901c0 +net.micode.notes:dimen/mtrl_badge_radius = 0x7f0700c7 +net.micode.notes:attr/actionModeWebSearchDrawable = 0x7f04001e +net.micode.notes:id/test_radiobutton_android_button_tint = 0x7f0901be +net.micode.notes:id/test_checkbox_android_button_tint = 0x7f0901bc +net.micode.notes:menu/note_list = 0x7f0d0003 +net.micode.notes:id/asConfigured = 0x7f090050 +net.micode.notes:id/tag_unhandled_key_listeners = 0x7f0901ba +net.micode.notes:drawable/listtest = 0x7f08009e +net.micode.notes:id/tag_state_description = 0x7f0901b7 +net.micode.notes:id/tag_on_receive_content_mime_types = 0x7f0901b5 +net.micode.notes:string/datetime_dialog_ok = 0x7f10002e +net.micode.notes:attr/textInputStyle = 0x7f040332 +net.micode.notes:id/tag_accessibility_clickable_spans = 0x7f0901b0 +net.micode.notes:id/tag_accessibility_actions = 0x7f0901af +net.micode.notes:style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon = 0x7f11029a +net.micode.notes:style/Widget.AppCompat.Button.Borderless.Colored = 0x7f11021f +net.micode.notes:id/submit_area = 0x7f0901ac +net.micode.notes:id/ifRoom = 0x7f0900d0 +net.micode.notes:id/stretch = 0x7f0901aa +net.micode.notes:id/stop = 0x7f0901a9 +net.micode.notes:id/staticPostLayout = 0x7f0901a8 +net.micode.notes:style/Base.TextAppearance.Widget.AppCompat.Toolbar.Title = 0x7f110048 +net.micode.notes:id/startToEnd = 0x7f0901a5 +net.micode.notes:id/startHorizontal = 0x7f0901a4 +net.micode.notes:id/src_over = 0x7f0901a1 +net.micode.notes:id/src_atop = 0x7f09019f +net.micode.notes:id/square = 0x7f09019e +net.micode.notes:id/split_action_bar = 0x7f09019b +net.micode.notes:id/special_effects_controller_view_tag = 0x7f090199 +net.micode.notes:id/spacer = 0x7f090198 +net.micode.notes:attr/chipIconSize = 0x7f040091 +net.micode.notes:id/snapMargins = 0x7f090197 +net.micode.notes:id/snackbar_action = 0x7f090194 +net.micode.notes:style/TestStyleWithLineHeightAppearance = 0x7f110132 +net.micode.notes:integer/mtrl_calendar_selection_text_lines = 0x7f0a0014 +net.micode.notes:attr/flow_firstVerticalBias = 0x7f040158 +net.micode.notes:id/withText = 0x7f0901f6 +net.micode.notes:attr/maxWidth = 0x7f040241 +net.micode.notes:attr/hintAnimationEnabled = 0x7f040189 +net.micode.notes:id/slide = 0x7f090193 +net.micode.notes:layout/abc_expanded_menu_layout = 0x7f0c000d +net.micode.notes:string/forbidden_delete_trash = 0x7f100045 +net.micode.notes:id/skipCollapsed = 0x7f090192 +net.micode.notes:id/sin = 0x7f090191 +net.micode.notes:id/showTitle = 0x7f090190 +net.micode.notes:id/showHome = 0x7f09018f +net.micode.notes:id/showCustom = 0x7f09018e +net.micode.notes:color/androidx_core_secondary_text_default_material_light = 0x7f06001c +net.micode.notes:layout/design_navigation_item_subheader = 0x7f0c002c +net.micode.notes:id/fullscreen_content_controls = 0x7f0900bd +net.micode.notes:layout/abc_action_menu_item_layout = 0x7f0c0002 +net.micode.notes:id/selection_type = 0x7f09018c +net.micode.notes:id/selected = 0x7f09018a +net.micode.notes:id/search_voice_btn = 0x7f090188 +net.micode.notes:id/search_plate = 0x7f090186 +net.micode.notes:id/search_close_btn = 0x7f090182 +net.micode.notes:id/search_bar = 0x7f090180 +net.micode.notes:layout/mtrl_calendar_days_of_week = 0x7f0c004a +net.micode.notes:id/snackbar_text = 0x7f090195 +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f11003f +net.micode.notes:id/accessibility_custom_action_2 = 0x7f09001c +net.micode.notes:id/scrollIndicatorUp = 0x7f09017c +net.micode.notes:id/scroll = 0x7f09017a +net.micode.notes:style/Base.Widget.AppCompat.Light.ActionBar.TabText = 0x7f1100bc +net.micode.notes:id/screen = 0x7f090179 +net.micode.notes:id/sawtooth = 0x7f090177 +net.micode.notes:id/save_overlay_view = 0x7f090176 +net.micode.notes:style/Base.Theme.AppCompat.Light.DarkActionBar = 0x7f110051 +net.micode.notes:id/multiply = 0x7f090140 +net.micode.notes:id/save_non_transition_alpha = 0x7f090175 +net.micode.notes:attr/buttonStyle = 0x7f040074 +net.micode.notes:attr/placeholderTextAppearance = 0x7f040291 +net.micode.notes:dimen/mtrl_extended_fab_translation_z_base = 0x7f07012f +net.micode.notes:id/rounded = 0x7f090173 +net.micode.notes:id/right_icon = 0x7f090171 +net.micode.notes:attr/onHide = 0x7f040271 +net.micode.notes:id/rightToLeft = 0x7f090170 +net.micode.notes:attr/targetId = 0x7f040313 +net.micode.notes:id/ratio = 0x7f09016c +net.micode.notes:drawable/ic_clock_black_24dp = 0x7f08007f +net.micode.notes:id/progress_circular = 0x7f090169 +net.micode.notes:layout/note_list_footer = 0x7f0c0064 +net.micode.notes:id/preference_sync_button = 0x7f090168 +net.micode.notes:style/Theme.MaterialComponents.Dialog.FixedSize = 0x7f1101c6 +net.micode.notes:id/position = 0x7f090165 +net.micode.notes:id/pin = 0x7f090164 +net.micode.notes:id/path = 0x7f090160 +net.micode.notes:id/parent_matrix = 0x7f09015e +net.micode.notes:id/parent = 0x7f09015b +net.micode.notes:id/radio = 0x7f09016b +net.micode.notes:id/parallax = 0x7f09015a +net.micode.notes:style/Base.Widget.AppCompat.DrawerArrowToggle.Common = 0x7f1100b5 +net.micode.notes:id/accessibility_custom_action_10 = 0x7f090012 +net.micode.notes:id/outline = 0x7f090157 +net.micode.notes:attr/flow_horizontalAlign = 0x7f04015a +net.micode.notes:id/off = 0x7f090155 +net.micode.notes:id/notification_main_column_container = 0x7f090153 +net.micode.notes:attr/staggered = 0x7f0402d8 +net.micode.notes:dimen/mtrl_exposed_dropdown_menu_popup_vertical_padding = 0x7f070120 +net.micode.notes:dimen/mtrl_shape_corner_size_large_component = 0x7f07015f +net.micode.notes:id/notification_background = 0x7f090151 +net.micode.notes:id/note_title = 0x7f09014f +net.micode.notes:style/MaterialAlertDialog.MaterialComponents.Title.Text = 0x7f1100f4 +net.micode.notes:style/Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f11007f +net.micode.notes:id/note_item = 0x7f09014e +net.micode.notes:id/search_button = 0x7f090181 +net.micode.notes:id/normal = 0x7f09014a +net.micode.notes:id/none = 0x7f090149 +net.micode.notes:id/navigation_bar_item_small_label_view = 0x7f090145 +net.micode.notes:attr/constraintSetEnd = 0x7f0400cc +net.micode.notes:id/search_edit_frame = 0x7f090183 +net.micode.notes:dimen/default_dimension = 0x7f07005e +net.micode.notes:id/navigation_bar_item_large_label_view = 0x7f090144 +net.micode.notes:id/navigation_bar_item_labels_group = 0x7f090143 +net.micode.notes:style/TextAppearancePrimaryItem = 0x7f11018e +net.micode.notes:drawable/list_blue_single = 0x7f08008a +net.micode.notes:id/navigation_bar = 0x7f090141 +net.micode.notes:id/text_input_error_icon = 0x7f0901c8 +net.micode.notes:id/mtrl_picker_title_text = 0x7f09013e +net.micode.notes:id/mtrl_picker_text_input_range_end = 0x7f09013c +net.micode.notes:style/ShapeAppearanceOverlay.BottomLeftDifferentCornerSize = 0x7f11011e +net.micode.notes:attr/mock_labelColor = 0x7f04024d +net.micode.notes:id/mtrl_picker_header_title_and_selection = 0x7f090139 +net.micode.notes:id/mtrl_picker_header_selection_text = 0x7f090138 +net.micode.notes:style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f110158 +net.micode.notes:layout/mtrl_layout_snackbar_include = 0x7f0c0053 +net.micode.notes:attr/expandedTitleMarginEnd = 0x7f040141 +net.micode.notes:id/mtrl_picker_fullscreen = 0x7f090136 +net.micode.notes:animator/fragment_close_exit = 0x7f020004 +net.micode.notes:id/scrollable = 0x7f09017e +net.micode.notes:id/mtrl_motion_snapshot_view = 0x7f090135 +net.micode.notes:attr/textAppearanceHeadline2 = 0x7f04031d +net.micode.notes:id/mtrl_calendar_text_input_frame = 0x7f090130 +net.micode.notes:id/action_bar = 0x7f090032 +net.micode.notes:id/mtrl_calendar_main_pane = 0x7f09012d +net.micode.notes:style/Theme.MaterialComponents.Light.Dialog.FixedSize = 0x7f1101d5 +net.micode.notes:color/material_grey_100 = 0x7f060069 +net.micode.notes:id/mtrl_calendar_frame = 0x7f09012c +net.micode.notes:styleable/ViewStubCompat = 0x7f120087 +net.micode.notes:attr/switchTextAppearance = 0x7f0402f7 +net.micode.notes:id/mtrl_calendar_days_of_week = 0x7f09012b +net.micode.notes:anim/btn_checkbox_to_checked_box_outer_merged_animation = 0x7f01000d +net.micode.notes:id/mtrl_calendar_year_selector_frame = 0x7f090131 +net.micode.notes:style/Base.Widget.AppCompat.ListPopupWindow = 0x7f1100c2 +net.micode.notes:string/format_move_notes_to_folder = 0x7f10004b +net.micode.notes:dimen/mtrl_snackbar_padding_horizontal = 0x7f070171 +net.micode.notes:id/mtrl_calendar_day_selector_frame = 0x7f09012a +net.micode.notes:id/mtrl_anchor_parent = 0x7f090129 +net.micode.notes:layout/material_chip_input_combo = 0x7f0c0034 +net.micode.notes:drawable/clock = 0x7f080068 +net.micode.notes:id/motion_base = 0x7f090127 +net.micode.notes:id/month_navigation_bar = 0x7f090122 +net.micode.notes:id/mini = 0x7f09011f +net.micode.notes:id/menu_wallpaper2 = 0x7f09011c +net.micode.notes:id/menu_wallpaper1 = 0x7f09011b +net.micode.notes:id/menu_share = 0x7f090119 +net.micode.notes:attr/flow_padding = 0x7f040163 +net.micode.notes:id/menu_setting = 0x7f090118 +net.micode.notes:id/menu_send_to_desktop = 0x7f090117 +net.micode.notes:id/navigation_header_container = 0x7f090146 +net.micode.notes:id/menu_quit_secret = 0x7f090114 +net.micode.notes:id/menu_new_note = 0x7f090113 +net.micode.notes:interpolator/btn_radio_to_off_mtrl_animation_interpolator_0 = 0x7f0b0004 +net.micode.notes:id/menu_list_mode = 0x7f090111 +net.micode.notes:id/menu_font_size = 0x7f090110 +net.micode.notes:id/menu_delete_remind = 0x7f09010e +net.micode.notes:color/material_slider_halo_color = 0x7f06007c +net.micode.notes:id/menu_count_word = 0x7f09010c +net.micode.notes:attr/gapBetweenBars = 0x7f04017a +net.micode.notes:id/material_timepicker_ok_button = 0x7f090108 +net.micode.notes:id/material_timepicker_mode_button = 0x7f090107 +net.micode.notes:style/Theme.MaterialComponents.Dialog.Alert.Bridge = 0x7f1101c4 +net.micode.notes:dimen/mtrl_slider_thumb_elevation = 0x7f070166 +net.micode.notes:id/material_timepicker_edit_text = 0x7f090106 +net.micode.notes:id/material_timepicker_container = 0x7f090105 +net.micode.notes:id/material_hour_tv = 0x7f0900ff +net.micode.notes:attr/itemShapeAppearanceOverlay = 0x7f0401b1 +net.micode.notes:id/material_hour_text_input = 0x7f0900fe +net.micode.notes:id/material_clock_period_toggle = 0x7f0900fd +net.micode.notes:id/material_clock_period_am_button = 0x7f0900fb +net.micode.notes:id/material_clock_face = 0x7f0900f9 +net.micode.notes:attr/boxStrokeColor = 0x7f040066 +net.micode.notes:id/ll_font_super = 0x7f0900f6 +net.micode.notes:style/Base.TextAppearance.AppCompat.Caption = 0x7f110019 +net.micode.notes:id/select_dialog_listview = 0x7f090189 +net.micode.notes:id/ll_font_normal = 0x7f0900f4 +net.micode.notes:style/TextAppearance.MaterialComponents.Headline1 = 0x7f11017d +net.micode.notes:string/mtrl_picker_text_input_date_hint = 0x7f10009d +net.micode.notes:id/title_template = 0x7f0901d3 +net.micode.notes:dimen/abc_text_size_subtitle_material_toolbar = 0x7f07004e +net.micode.notes:id/ll_font_large = 0x7f0900f3 +net.micode.notes:attr/snackbarTextViewStyle = 0x7f0402d0 +net.micode.notes:id/list_item = 0x7f0900f2 +net.micode.notes:attr/chipEndPadding = 0x7f04008d +net.micode.notes:id/listMode = 0x7f0900f1 +net.micode.notes:id/linear = 0x7f0900f0 +net.micode.notes:style/TextAppearance.AppCompat.Body1 = 0x7f110138 +net.micode.notes:id/line1 = 0x7f0900ee +net.micode.notes:id/leftToRight = 0x7f0900ed +net.micode.notes:id/layout = 0x7f0900eb +net.micode.notes:layout/mtrl_calendar_horizontal = 0x7f0c004b +net.micode.notes:id/labeled = 0x7f0900ea +net.micode.notes:id/jumpToEnd = 0x7f0900e8 +net.micode.notes:style/Base.V21.Theme.AppCompat.Light = 0x7f110085 +net.micode.notes:id/iv_super_select = 0x7f0900e7 +net.micode.notes:drawable/abc_scrubber_control_off_mtrl_alpha = 0x7f080040 +net.micode.notes:style/Base.TextAppearance.AppCompat.Inverse = 0x7f11001f +net.micode.notes:drawable/notification_bg_normal_pressed = 0x7f0800c3 +net.micode.notes:id/iv_small_select = 0x7f0900e6 +net.micode.notes:dimen/mtrl_calendar_month_vertical_padding = 0x7f070104 +net.micode.notes:id/iv_large_select = 0x7f0900e4 +net.micode.notes:id/iv_bg_yellow = 0x7f0900e2 +net.micode.notes:attr/preserveIconSpacing = 0x7f04029b +net.micode.notes:style/Base.Theme.AppCompat.Light = 0x7f110050 +net.micode.notes:style/Widget.MaterialComponents.TimePicker = 0x7f1102d5 +net.micode.notes:id/notes_list = 0x7f090150 +net.micode.notes:id/iv_bg_blue_select = 0x7f0900db +net.micode.notes:id/iv_bg_blue = 0x7f0900da +net.micode.notes:dimen/mtrl_shape_corner_size_medium_component = 0x7f070160 +net.micode.notes:id/iv_alert_icon = 0x7f0900d9 +net.micode.notes:id/item_touch_helper_previous_elevation = 0x7f0900d8 +net.micode.notes:id/italic = 0x7f0900d7 +net.micode.notes:id/info = 0x7f0900d4 +net.micode.notes:style/Theme.AppCompat.Light.DarkActionBar = 0x7f1101a1 +net.micode.notes:dimen/cardview_compat_inset_shadow = 0x7f070053 +net.micode.notes:id/image = 0x7f0900d3 +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f110031 +net.micode.notes:id/ignore = 0x7f0900d1 +net.micode.notes:id/icon_group = 0x7f0900cf +net.micode.notes:string/abc_searchview_description_clear = 0x7f100013 +net.micode.notes:attr/panelMenuListTheme = 0x7f040281 +net.micode.notes:id/homeAsUp = 0x7f0900ca +net.micode.notes:color/mtrl_textinput_filled_box_default_background_color = 0x7f0600b5 +net.micode.notes:id/hideable = 0x7f0900c8 +net.micode.notes:id/header_title = 0x7f0900c7 +net.micode.notes:id/graph_wrap = 0x7f0900c2 +net.micode.notes:dimen/test_navigation_bar_label_padding = 0x7f07019b +net.micode.notes:id/gone = 0x7f0900c0 +net.micode.notes:style/Theme.MaterialComponents.NoActionBar = 0x7f1101dd +net.micode.notes:id/transition_layout_save = 0x7f0901db +net.micode.notes:id/fixed = 0x7f0900b6 +net.micode.notes:attr/boxStrokeWidth = 0x7f040068 +net.micode.notes:style/Platform.Widget.AppCompat.Spinner = 0x7f110105 +net.micode.notes:id/fitToContents = 0x7f0900b5 +net.micode.notes:id/textTop = 0x7f0901c6 +net.micode.notes:id/fill_vertical = 0x7f0900b3 +net.micode.notes:id/fill_horizontal = 0x7f0900b2 +net.micode.notes:id/fade = 0x7f0900b0 +net.micode.notes:id/exitUntilCollapsed = 0x7f0900ad +net.micode.notes:id/et_foler_name = 0x7f0900ac +net.micode.notes:style/Theme.AppCompat.Empty = 0x7f11019f +net.micode.notes:dimen/notification_right_icon_size = 0x7f07018b +net.micode.notes:layout/mtrl_calendar_day_of_week = 0x7f0c0049 +net.micode.notes:style/Widget.AppCompat.Light.ActionBar.TabView = 0x7f110233 +net.micode.notes:layout/abc_activity_chooser_view_list_item = 0x7f0c0007 +net.micode.notes:id/error_msg = 0x7f0900aa +net.micode.notes:string/dummy_content = 0x7f100031 +net.micode.notes:attr/listChoiceIndicatorSingleAnimated = 0x7f04020e +net.micode.notes:id/tag_accessibility_pane_title = 0x7f0901b2 +net.micode.notes:attr/closeIcon = 0x7f0400a6 +net.micode.notes:id/enterAlwaysCollapsed = 0x7f0900a9 +net.micode.notes:dimen/abc_dialog_title_divider_material = 0x7f070026 +net.micode.notes:id/enterAlways = 0x7f0900a8 +net.micode.notes:attr/drawableStartCompat = 0x7f04011c +net.micode.notes:layout/abc_search_view = 0x7f0c0019 +net.micode.notes:id/end = 0x7f0900a6 +net.micode.notes:id/edit_query = 0x7f0900a4 +net.micode.notes:id/mtrl_internal_children_alpha_tag = 0x7f090134 +net.micode.notes:attr/borderlessButtonStyle = 0x7f04005a +net.micode.notes:id/editTextTextPersonName = 0x7f0900a3 +net.micode.notes:attr/tabMinWidth = 0x7f040306 +net.micode.notes:id/easeIn = 0x7f0900a0 +net.micode.notes:id/dummy_button = 0x7f09009f +net.micode.notes:color/material_slider_inactive_tick_marks_color = 0x7f06007d +net.micode.notes:layout/abc_popup_menu_header_item_layout = 0x7f0c0012 +net.micode.notes:id/dropdown_menu = 0x7f09009e +net.micode.notes:id/dragUp = 0x7f09009d +net.micode.notes:id/masked = 0x7f0900f7 +net.micode.notes:id/dragStart = 0x7f09009c +net.micode.notes:id/dragLeft = 0x7f09009a +net.micode.notes:id/disablePostScroll = 0x7f090095 +net.micode.notes:color/cardview_shadow_start_color = 0x7f06002d +net.micode.notes:id/direct = 0x7f090093 +net.micode.notes:style/Base.V21.Theme.MaterialComponents.Light.Dialog = 0x7f11008a +net.micode.notes:id/dimensions = 0x7f090092 +net.micode.notes:id/decor_content_parent = 0x7f090087 +net.micode.notes:attr/paddingLeftSystemWindowInsets = 0x7f04027b +net.micode.notes:id/decelerateAndComplete = 0x7f090086 +net.micode.notes:id/decelerate = 0x7f090085 +net.micode.notes:id/date = 0x7f090083 +net.micode.notes:style/Base.Theme.MaterialComponents.Light.Dialog.MinWidth = 0x7f110068 +net.micode.notes:id/cut = 0x7f090082 +net.micode.notes:id/customPanel = 0x7f090081 +net.micode.notes:id/custom = 0x7f090080 +net.micode.notes:id/counterclockwise = 0x7f09007f +net.micode.notes:style/TextAppearance.Design.Hint = 0x7f110171 +net.micode.notes:dimen/design_bottom_sheet_peek_height_min = 0x7f07006e +net.micode.notes:id/menu_alert = 0x7f09010b +net.micode.notes:id/cos = 0x7f09007e +net.micode.notes:dimen/mtrl_badge_with_text_radius = 0x7f0700cc +net.micode.notes:id/coordinator = 0x7f09007d +net.micode.notes:id/contiguous = 0x7f09007c +net.micode.notes:color/mtrl_text_btn_text_color_selector = 0x7f0600b2 +net.micode.notes:layout/text_view_with_line_height_from_appearance = 0x7f0c007a +net.micode.notes:dimen/abc_dialog_min_width_major = 0x7f070022 +net.micode.notes:attr/motionDurationShort2 = 0x7f040256 +net.micode.notes:id/contentPanel = 0x7f09007b +net.micode.notes:id/content = 0x7f09007a +net.micode.notes:attr/titleTextAppearance = 0x7f040353 +net.micode.notes:id/container = 0x7f090079 +net.micode.notes:anim/design_bottom_sheet_slide_out = 0x7f010019 +net.micode.notes:string/menu_move = 0x7f100074 +net.micode.notes:style/Base.V14.Theme.MaterialComponents.Light.Bridge = 0x7f11007b +net.micode.notes:id/confirm_button = 0x7f090078 +net.micode.notes:id/clockwise = 0x7f090076 +net.micode.notes:id/chronometer = 0x7f090071 +net.micode.notes:id/checked = 0x7f09006b +net.micode.notes:style/TextAppearance.MaterialComponents.Tooltip = 0x7f110187 +net.micode.notes:style/Base.TextAppearance.AppCompat.Large.Inverse = 0x7f110021 +net.micode.notes:id/chains = 0x7f090069 +net.micode.notes:id/cache_measures = 0x7f090061 +net.micode.notes:id/btn_set_bg_color = 0x7f09005e +net.micode.notes:attr/pathMotionArc = 0x7f040288 +net.micode.notes:id/btn_new_note = 0x7f09005d +net.micode.notes:id/bounce = 0x7f09005c +net.micode.notes:attr/toolbarNavigationButtonStyle = 0x7f040357 +net.micode.notes:id/bottom = 0x7f09005b +net.micode.notes:id/barrier = 0x7f090056 +net.micode.notes:attr/recyclerViewStyle = 0x7f0402a6 +net.micode.notes:id/autoComplete = 0x7f090053 +net.micode.notes:style/Widget.MaterialComponents.ActionBar.Surface = 0x7f11026d +net.micode.notes:id/async = 0x7f090051 +net.micode.notes:id/animateToStart = 0x7f09004e +net.micode.notes:string/preferences_menu_cancel = 0x7f1000c1 +net.micode.notes:dimen/mtrl_btn_padding_left = 0x7f0700e0 +net.micode.notes:id/animateToEnd = 0x7f09004d +net.micode.notes:id/amPm = 0x7f09004c +net.micode.notes:id/always = 0x7f09004b +net.micode.notes:color/material_blue_grey_800 = 0x7f060063 +net.micode.notes:attr/hideAnimationBehavior = 0x7f040185 +net.micode.notes:layout/test_design_checkbox = 0x7f0c0072 +net.micode.notes:style/Base.TextAppearance.AppCompat = 0x7f110015 +net.micode.notes:id/aligned = 0x7f090049 +net.micode.notes:style/ShapeAppearance.MaterialComponents.LargeComponent = 0x7f110118 +net.micode.notes:id/alertTitle = 0x7f090048 +net.micode.notes:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f110147 +net.micode.notes:layout/mtrl_calendar_year = 0x7f0c0051 +net.micode.notes:id/add_img_btn = 0x7f090047 +net.micode.notes:anim/mtrl_bottom_sheet_slide_out = 0x7f01001e +net.micode.notes:id/add = 0x7f090046 +net.micode.notes:style/Widget.AppCompat.Button.Small = 0x7f110222 +net.micode.notes:id/actions = 0x7f090044 +net.micode.notes:id/selection_menu = 0x7f09018b +net.micode.notes:id/action_text = 0x7f090043 +net.micode.notes:id/action_mode_close_button = 0x7f090041 +net.micode.notes:dimen/abc_text_size_caption_material = 0x7f070042 +net.micode.notes:id/action_menu_divider = 0x7f09003d +net.micode.notes:id/action_divider = 0x7f09003b +net.micode.notes:id/action_bar_title = 0x7f090038 +net.micode.notes:id/action_bar_subtitle = 0x7f090037 +net.micode.notes:id/action_bar_container = 0x7f090034 +net.micode.notes:id/action_bar_activity_content = 0x7f090033 +net.micode.notes:id/mtrl_picker_text_input_range_start = 0x7f09013d +net.micode.notes:id/account_dialog_title = 0x7f090031 +net.micode.notes:id/chip1 = 0x7f09006d +net.micode.notes:id/accessibility_custom_action_31 = 0x7f090029 +net.micode.notes:id/accessibility_custom_action_24 = 0x7f090021 +net.micode.notes:attr/colorOnPrimary = 0x7f0400be +net.micode.notes:id/accessibility_custom_action_23 = 0x7f090020 +net.micode.notes:id/accessibility_custom_action_22 = 0x7f09001f +net.micode.notes:style/Base.Widget.AppCompat.TextView = 0x7f1100d4 +net.micode.notes:id/accessibility_custom_action_21 = 0x7f09001e +net.micode.notes:color/foreground_material_light = 0x7f06005c +net.micode.notes:id/accessibility_custom_action_20 = 0x7f09001d +net.micode.notes:style/TextAppearance.AppCompat.SearchResult.Title = 0x7f11014c +net.micode.notes:id/accessibility_custom_action_18 = 0x7f09001a +net.micode.notes:id/accessibility_custom_action_13 = 0x7f090015 +net.micode.notes:attr/customColorDrawableValue = 0x7f0400f9 +net.micode.notes:layout/material_clock_display_divider = 0x7f0c0036 +net.micode.notes:id/accessibility_custom_action_12 = 0x7f090014 +net.micode.notes:id/accessibility_custom_action_11 = 0x7f090013 +net.micode.notes:id/accessibility_custom_action_1 = 0x7f090011 +net.micode.notes:style/TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f110157 +net.micode.notes:id/view_offset_helper = 0x7f0901ee +net.micode.notes:id/accessibility_custom_action_0 = 0x7f090010 +net.micode.notes:style/Base.ThemeOverlay.AppCompat.Dark = 0x7f11006c +net.micode.notes:attr/buttonBarStyle = 0x7f04006f +net.micode.notes:id/TOP_START = 0x7f09000d +net.micode.notes:color/material_on_surface_emphasis_medium = 0x7f060078 +net.micode.notes:id/SYM = 0x7f09000b +net.micode.notes:xml/searchable = 0x7f130001 +net.micode.notes:id/tag_on_receive_content_listener = 0x7f0901b4 +net.micode.notes:id/SHOW_PROGRESS = 0x7f09000a +net.micode.notes:id/SHOW_ALL = 0x7f090008 +net.micode.notes:id/SHIFT = 0x7f090007 +net.micode.notes:style/Widget.MaterialComponents.CompoundButton.Switch = 0x7f110298 +net.micode.notes:id/NO_DEBUG = 0x7f090006 +net.micode.notes:attr/elevationOverlayColor = 0x7f040128 +net.micode.notes:id/pathRelative = 0x7f090161 +net.micode.notes:id/FUNCTION = 0x7f090004 +net.micode.notes:string/error_sync_cancelled = 0x7f100039 +net.micode.notes:id/BOTTOM_START = 0x7f090002 +net.micode.notes:id/BOTTOM_END = 0x7f090001 +net.micode.notes:drawable/widget_4x_yellow = 0x7f0800dd +net.micode.notes:drawable/widget_4x_red = 0x7f0800db +net.micode.notes:drawable/widget_2x_yellow = 0x7f0800d8 +net.micode.notes:attr/layout_constraintEnd_toStartOf = 0x7f0401da +net.micode.notes:string/icon_content_description = 0x7f10004e +net.micode.notes:drawable/widget_2x_red = 0x7f0800d6 +net.micode.notes:drawable/widget_2x_blue = 0x7f0800d4 +net.micode.notes:style/Base.Widget.AppCompat.ListView = 0x7f1100c3 +net.micode.notes:drawable/unlock = 0x7f0800d1 +net.micode.notes:drawable/tooltip_frame_light = 0x7f0800d0 +net.micode.notes:drawable/tooltip_frame_dark = 0x7f0800cf +net.micode.notes:style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon = 0x7f110114 +net.micode.notes:drawable/title_alert = 0x7f0800cd +net.micode.notes:id/top = 0x7f0901d5 +net.micode.notes:dimen/abc_button_padding_horizontal_material = 0x7f070014 +net.micode.notes:string/abc_activity_chooser_view_see_all = 0x7f100004 +net.micode.notes:attr/layout_goneMarginEnd = 0x7f0401fc +net.micode.notes:drawable/test_custom_background = 0x7f0800cc +net.micode.notes:style/Widget.MaterialComponents.BottomNavigationView.PrimarySurface = 0x7f11027b +net.micode.notes:drawable/selected = 0x7f0800ca +net.micode.notes:drawable/notify_panel_notification_icon_bg = 0x7f0800c8 +net.micode.notes:style/Theme.MaterialComponents.CompactMenu = 0x7f1101b1 +net.micode.notes:drawable/notification_template_icon_low_bg = 0x7f0800c6 +net.micode.notes:anim/btn_checkbox_to_unchecked_check_path_merged_animation = 0x7f010010 +net.micode.notes:drawable/notification_bg_normal = 0x7f0800c2 +net.micode.notes:drawable/notification_bg_low_normal = 0x7f0800c0 +net.micode.notes:dimen/mtrl_btn_disabled_elevation = 0x7f0700d5 +net.micode.notes:drawable/notification_bg_low = 0x7f0800bf +net.micode.notes:style/Base.ThemeOverlay.AppCompat.Dialog = 0x7f11006e +net.micode.notes:attr/layout_constrainedHeight = 0x7f0401ce +net.micode.notes:dimen/mtrl_navigation_rail_compact_width = 0x7f070149 +net.micode.notes:drawable/notification_bg = 0x7f0800be +net.micode.notes:id/action_menu_presenter = 0x7f09003e +net.micode.notes:color/bright_foreground_material_light = 0x7f060027 +net.micode.notes:drawable/notification_action_background = 0x7f0800bd +net.micode.notes:style/Theme.AppCompat.DayNight.Dialog.MinWidth = 0x7f110198 +net.micode.notes:drawable/note_edit_color_selector_panel = 0x7f0800bb +net.micode.notes:drawable/note_bk = 0x7f0800ba +net.micode.notes:dimen/text_font_size_small = 0x7f0701a1 +net.micode.notes:drawable/new_note_pressed = 0x7f0800b9 +net.micode.notes:style/ShapeAppearanceOverlay.MaterialComponents.Chip = 0x7f110123 +net.micode.notes:drawable/new_note_normal = 0x7f0800b8 +net.micode.notes:drawable/navigation_empty_icon = 0x7f0800b6 +net.micode.notes:drawable/mtrl_tabs_default_indicator = 0x7f0800b5 +net.micode.notes:drawable/mtrl_popupmenu_background_dark = 0x7f0800b4 +net.micode.notes:id/accessibility_custom_action_19 = 0x7f09001b +net.micode.notes:drawable/mtrl_popupmenu_background = 0x7f0800b3 +net.micode.notes:attr/textAppearanceLargePopupMenu = 0x7f040322 +net.micode.notes:layout/widget_2x = 0x7f0c007f +net.micode.notes:dimen/mtrl_calendar_header_text_padding = 0x7f0700fe +net.micode.notes:drawable/mtrl_ic_arrow_drop_up = 0x7f0800af +net.micode.notes:drawable/mtrl_ic_arrow_drop_down = 0x7f0800ae +net.micode.notes:attr/rippleColor = 0x7f0402ac +net.micode.notes:layout/activity_splash = 0x7f0c001e +net.micode.notes:drawable/menu_move = 0x7f0800ab +net.micode.notes:drawable/menu_delete = 0x7f0800aa +net.micode.notes:drawable/material_ic_menu_arrow_up_black_24dp = 0x7f0800a9 +net.micode.notes:drawable/material_ic_menu_arrow_down_black_24dp = 0x7f0800a8 +net.micode.notes:attr/constraints = 0x7f0400d0 +net.micode.notes:drawable/material_ic_keyboard_arrow_right_black_24dp = 0x7f0800a7 +net.micode.notes:drawable/material_ic_keyboard_arrow_previous_black_24dp = 0x7f0800a6 +net.micode.notes:drawable/material_ic_keyboard_arrow_next_black_24dp = 0x7f0800a5 +net.micode.notes:attr/switchMinWidth = 0x7f0402f4 +net.micode.notes:drawable/material_ic_clear_black_24dp = 0x7f0800a2 +net.micode.notes:style/Widget.AppCompat.DropDownItem.Spinner = 0x7f110229 +net.micode.notes:style/Base.Theme.AppCompat.DialogWhenLarge = 0x7f11004f +net.micode.notes:drawable/list_yellow_down = 0x7f08009a +net.micode.notes:styleable/ChipGroup = 0x7f12001a +net.micode.notes:drawable/list_red_up = 0x7f080095 +net.micode.notes:drawable/list_red_middle = 0x7f080093 +net.micode.notes:integer/material_motion_duration_medium_1 = 0x7f0a000b +net.micode.notes:color/mtrl_card_view_foreground = 0x7f06008f +net.micode.notes:id/icon = 0x7f0900ce +net.micode.notes:drawable/list_red_down = 0x7f080092 +net.micode.notes:drawable/list_green_single = 0x7f080090 +net.micode.notes:id/textStart = 0x7f0901c5 +net.micode.notes:attr/saturation = 0x7f0402af +net.micode.notes:drawable/list_green_middle = 0x7f08008f +net.micode.notes:id/dependency_ordering = 0x7f09008b +net.micode.notes:attr/motionDurationMedium1 = 0x7f040253 +net.micode.notes:drawable/list_footer_bg = 0x7f08008d +net.micode.notes:drawable/list_folder = 0x7f08008c +net.micode.notes:id/accessibility_custom_action_30 = 0x7f090028 +net.micode.notes:drawable/list_blue_middle = 0x7f080089 +net.micode.notes:style/Widget.MaterialComponents.Button.TextButton.Dialog.Icon = 0x7f110285 +net.micode.notes:drawable/icon_app = 0x7f080086 +net.micode.notes:style/Base.Widget.AppCompat.ButtonBar = 0x7f1100af +net.micode.notes:style/Base.MaterialAlertDialog.MaterialComponents.Title.Text = 0x7f110014 +net.micode.notes:drawable/ic_mtrl_chip_checked_circle = 0x7f080084 +net.micode.notes:drawable/ic_mtrl_chip_checked_black = 0x7f080083 +net.micode.notes:id/TOP_END = 0x7f09000c +net.micode.notes:drawable/ic_mtrl_checked_circle = 0x7f080082 +net.micode.notes:drawable/ic_keyboard_black_24dp = 0x7f080081 +net.micode.notes:dimen/abc_alert_dialog_button_dimen = 0x7f070011 +net.micode.notes:string/error_sync_network = 0x7f10003b +net.micode.notes:string/abc_toolbar_collapse_description = 0x7f10001a +net.micode.notes:drawable/font_small = 0x7f08007d +net.micode.notes:drawable/font_size_selector_bg = 0x7f08007c +net.micode.notes:style/Base.Widget.AppCompat.Toolbar.Button.Navigation = 0x7f1100d7 +net.micode.notes:attr/font = 0x7f040169 +net.micode.notes:id/inward = 0x7f0900d6 +net.micode.notes:id/chain = 0x7f090068 +net.micode.notes:drawable/edit_yellow = 0x7f080079 +net.micode.notes:drawable/edit_white = 0x7f080078 +net.micode.notes:drawable/edit_title_yellow = 0x7f080077 +net.micode.notes:style/Base.Widget.AppCompat.ActionBar.Solid = 0x7f11009f +net.micode.notes:dimen/design_navigation_item_icon_padding = 0x7f07007a +net.micode.notes:style/Base.V21.Theme.AppCompat.Dialog = 0x7f110084 +net.micode.notes:attr/coordinatorLayoutStyle = 0x7f0400e3 +net.micode.notes:drawable/edit_title_red = 0x7f080075 +net.micode.notes:id/accessibility_custom_action_25 = 0x7f090022 +net.micode.notes:drawable/edit_title_green = 0x7f080074 +net.micode.notes:style/Base.V7.Theme.AppCompat.Dialog = 0x7f110097 +net.micode.notes:drawable/edit_red = 0x7f080072 +net.micode.notes:drawable/edit_green = 0x7f080071 +net.micode.notes:attr/imageButtonStyle = 0x7f04019a +net.micode.notes:drawable/edit_blue = 0x7f080070 +net.micode.notes:drawable/design_snackbar_background = 0x7f08006e +net.micode.notes:id/mtrl_picker_header_toggle = 0x7f09013a +net.micode.notes:drawable/design_password_eye = 0x7f08006d +net.micode.notes:drawable/design_ic_visibility_off = 0x7f08006c +net.micode.notes:style/Theme.AppCompat.DayNight.Dialog.Alert = 0x7f110197 +net.micode.notes:style/Base.ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f110072 +net.micode.notes:drawable/design_ic_visibility = 0x7f08006b +net.micode.notes:color/design_dark_default_color_primary = 0x7f060038 +net.micode.notes:drawable/design_fab_background = 0x7f08006a +net.micode.notes:style/Base.TextAppearance.AppCompat.Body2 = 0x7f110017 +net.micode.notes:style/Base.TextAppearance.AppCompat.Title.Inverse = 0x7f11002f +net.micode.notes:id/startVertical = 0x7f0901a6 +net.micode.notes:drawable/call_record = 0x7f080067 +net.micode.notes:dimen/design_bottom_navigation_shadow_height = 0x7f07006a +net.micode.notes:string/abc_menu_meta_shortcut_label = 0x7f10000d +net.micode.notes:layout/text_view_without_line_height = 0x7f0c007e +net.micode.notes:drawable/btn_radio_on_mtrl = 0x7f080065 +net.micode.notes:id/iv_bg_green_select = 0x7f0900dd +net.micode.notes:drawable/btn_radio_off_to_on_mtrl_animation = 0x7f080064 +net.micode.notes:style/Base.Widget.AppCompat.ActionBar = 0x7f11009e +net.micode.notes:attr/iconPadding = 0x7f040194 +net.micode.notes:drawable/btn_radio_off_mtrl = 0x7f080063 +net.micode.notes:layout/abc_list_menu_item_radio = 0x7f0c0011 +net.micode.notes:id/tag_window_insets_animation_callback = 0x7f0901bb +net.micode.notes:drawable/btn_checkbox_unchecked_to_checked_mtrl_animation = 0x7f080062 +net.micode.notes:id/accessibility_custom_action_4 = 0x7f09002a +net.micode.notes:drawable/btn_checkbox_checked_to_unchecked_mtrl_animation = 0x7f080060 +net.micode.notes:drawable/btn_checkbox_checked_mtrl = 0x7f08005f +net.micode.notes:attr/itemBackground = 0x7f0401a6 +net.micode.notes:drawable/bg_color_btn_mask = 0x7f08005e +net.micode.notes:drawable/avd_show_password = 0x7f08005c +net.micode.notes:drawable/add_node = 0x7f08005a +net.micode.notes:id/accelerate = 0x7f09000e +net.micode.notes:string/abc_menu_alt_shortcut_label = 0x7f100008 +net.micode.notes:attr/colorOnSurface = 0x7f0400c1 +net.micode.notes:drawable/abc_textfield_search_default_mtrl_alpha = 0x7f080057 +net.micode.notes:drawable/abc_textfield_search_activated_mtrl_alpha = 0x7f080056 +net.micode.notes:attr/scrimAnimationDuration = 0x7f0402b0 +net.micode.notes:drawable/abc_textfield_default_mtrl_alpha = 0x7f080055 +net.micode.notes:drawable/abc_tab_indicator_mtrl_alpha = 0x7f08004f +net.micode.notes:drawable/abc_tab_indicator_material = 0x7f08004e +net.micode.notes:drawable/abc_switch_thumb_material = 0x7f08004c +net.micode.notes:drawable/abc_spinner_mtrl_am_alpha = 0x7f080048 +net.micode.notes:attr/colorPrimary = 0x7f0400c2 +net.micode.notes:style/TextAppearance.AppCompat.Subhead = 0x7f11014f +net.micode.notes:drawable/abc_seekbar_track_material = 0x7f080047 +net.micode.notes:drawable/abc_scrubber_primary_mtrl_alpha = 0x7f080043 +net.micode.notes:string/menu_deselect_all = 0x7f100068 +net.micode.notes:attr/percentHeight = 0x7f04028a +net.micode.notes:drawable/abc_ratingbar_small_material = 0x7f08003f +net.micode.notes:style/Base.V23.Theme.AppCompat.Light = 0x7f110090 +net.micode.notes:layout/abc_screen_toolbar = 0x7f0c0017 +net.micode.notes:attr/tabPaddingBottom = 0x7f040309 +net.micode.notes:drawable/abc_menu_hardkey_panel_mtrl_mult = 0x7f08003b +net.micode.notes:style/ShapeAppearance.MaterialComponents.SmallComponent = 0x7f11011a +net.micode.notes:drawable/abc_list_selector_holo_light = 0x7f08003a +net.micode.notes:attr/materialButtonOutlinedStyle = 0x7f040222 +net.micode.notes:drawable/abc_list_selector_holo_dark = 0x7f080039 +net.micode.notes:style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f110188 +net.micode.notes:drawable/abc_list_selector_disabled_holo_light = 0x7f080038 +net.micode.notes:integer/cancel_button_image_alpha = 0x7f0a0004 +net.micode.notes:drawable/abc_list_selector_disabled_holo_dark = 0x7f080037 +net.micode.notes:styleable/Motion = 0x7f120059 +net.micode.notes:layout/settings_header = 0x7f0c006e +net.micode.notes:id/peekHeight = 0x7f090162 +net.micode.notes:color/design_default_color_primary_variant = 0x7f060047 +net.micode.notes:style/Theme.AppCompat.Dialog.Alert = 0x7f11019c +net.micode.notes:attr/contentInsetEndWithActions = 0x7f0400d4 +net.micode.notes:style/Theme.AppCompat.Light.Dialog.MinWidth = 0x7f1101a4 +net.micode.notes:id/disjoint = 0x7f090097 +net.micode.notes:drawable/abc_list_longpressed_holo = 0x7f080032 +net.micode.notes:drawable/abc_list_focused_holo = 0x7f080031 +net.micode.notes:style/TextAppearance.MaterialComponents.Badge = 0x7f110177 +net.micode.notes:layout/abc_activity_chooser_view = 0x7f0c0006 +net.micode.notes:attr/region_widthMoreThan = 0x7f0402aa +net.micode.notes:id/month_navigation_fragment_toggle = 0x7f090123 +net.micode.notes:drawable/mtrl_dropdown_arrow = 0x7f0800ad +net.micode.notes:drawable/abc_list_divider_material = 0x7f08002f +net.micode.notes:id/note_edit_view = 0x7f09014d +net.micode.notes:dimen/mtrl_progress_circular_inset_extra_small = 0x7f070152 +net.micode.notes:drawable/abc_item_background_holo_light = 0x7f08002e +net.micode.notes:drawable/abc_ic_voice_search_api_material = 0x7f08002c +net.micode.notes:attr/searchViewStyle = 0x7f0402b5 +net.micode.notes:drawable/abc_ic_menu_share_mtrl_alpha = 0x7f08002a +net.micode.notes:drawable/abc_ic_menu_overflow_material = 0x7f080027 +net.micode.notes:layout/text_view_with_line_height_from_layout = 0x7f0c007b +net.micode.notes:attr/motionDurationLong1 = 0x7f040251 +net.micode.notes:drawable/abc_ic_menu_cut_mtrl_alpha = 0x7f080026 +net.micode.notes:drawable/abc_ic_go_search_api_material = 0x7f080024 +net.micode.notes:style/Base.V7.Theme.AppCompat.Light = 0x7f110098 +net.micode.notes:drawable/abc_ic_commit_search_api_mtrl_alpha = 0x7f080023 +net.micode.notes:attr/helperTextTextAppearance = 0x7f040183 +net.micode.notes:drawable/abc_ic_arrow_drop_right_black_24dp = 0x7f080021 +net.micode.notes:drawable/list_red_single = 0x7f080094 +net.micode.notes:drawable/abc_ic_ab_back_material = 0x7f080020 +net.micode.notes:drawable/abc_dialog_material_background = 0x7f08001e +net.micode.notes:attr/alertDialogTheme = 0x7f040028 +net.micode.notes:style/Base.Theme.AppCompat.Light.Dialog.FixedSize = 0x7f110054 +net.micode.notes:string/menu_setting = 0x7f10007f +net.micode.notes:drawable/abc_control_background_material = 0x7f08001d +net.micode.notes:drawable/abc_cab_background_internal_bg = 0x7f08001a +net.micode.notes:style/Base.Widget.AppCompat.Button.Borderless.Colored = 0x7f1100ab +net.micode.notes:styleable/MenuView = 0x7f120057 +net.micode.notes:drawable/abc_btn_radio_to_on_mtrl_015 = 0x7f080017 +net.micode.notes:drawable/abc_btn_radio_material_anim = 0x7f080015 +net.micode.notes:drawable/abc_btn_default_mtrl_shape = 0x7f080013 +net.micode.notes:drawable/abc_seekbar_thumb_material = 0x7f080045 +net.micode.notes:drawable/abc_btn_colored_material = 0x7f080012 +net.micode.notes:drawable/abc_btn_check_to_on_mtrl_015 = 0x7f080011 +net.micode.notes:drawable/abc_btn_check_material_anim = 0x7f08000f +net.micode.notes:drawable/abc_scrubber_control_to_pressed_mtrl_000 = 0x7f080041 +net.micode.notes:drawable/list_white_single = 0x7f080098 +net.micode.notes:drawable/abc_action_bar_item_background_material = 0x7f08000c +net.micode.notes:drawable/_20240425224259 = 0x7f08000a +net.micode.notes:attr/chipIconTint = 0x7f040092 +net.micode.notes:drawable/_20240425220709 = 0x7f080007 +net.micode.notes:attr/counterTextAppearance = 0x7f0400f3 +net.micode.notes:drawable/_20240425220702 = 0x7f080006 +net.micode.notes:drawable/$avd_show_password__2 = 0x7f080005 +net.micode.notes:drawable/$avd_show_password__0 = 0x7f080003 +net.micode.notes:drawable/$avd_hide_password__2 = 0x7f080002 +net.micode.notes:id/mtrl_calendar_months = 0x7f09012e +net.micode.notes:attr/tickColorInactive = 0x7f040342 +net.micode.notes:id/endToStart = 0x7f0900a7 +net.micode.notes:drawable/$avd_hide_password__1 = 0x7f080001 +net.micode.notes:id/accessibility_custom_action_3 = 0x7f090027 +net.micode.notes:dimen/tooltip_y_offset_touch = 0x7f0701aa +net.micode.notes:dimen/tooltip_y_offset_non_touch = 0x7f0701a9 +net.micode.notes:dimen/design_bottom_navigation_margin = 0x7f070069 +net.micode.notes:dimen/tooltip_vertical_padding = 0x7f0701a8 +net.micode.notes:id/mtrl_child_content_container = 0x7f090133 +net.micode.notes:styleable/StateSet = 0x7f120076 +net.micode.notes:style/TextAppearanceLarge = 0x7f11018b +net.micode.notes:dimen/tooltip_precise_anchor_threshold = 0x7f0701a7 +net.micode.notes:attr/shrinkMotionSpec = 0x7f0402c8 +net.micode.notes:dimen/tooltip_precise_anchor_extra_offset = 0x7f0701a6 +net.micode.notes:dimen/tooltip_margin = 0x7f0701a5 +net.micode.notes:attr/horizontalOffset = 0x7f04018f +net.micode.notes:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow = 0x7f11010c +net.micode.notes:style/Base.ThemeOverlay.AppCompat.Dialog.Alert = 0x7f11006f +net.micode.notes:color/material_slider_inactive_track_color = 0x7f06007e +net.micode.notes:id/chip3 = 0x7f09006f +net.micode.notes:attr/expandedTitleGravity = 0x7f04013e +net.micode.notes:id/action_select_all = 0x7f090042 +net.micode.notes:dimen/text_font_size_normal = 0x7f0701a0 +net.micode.notes:style/Widget.AppCompat.Light.ActionBar.TabBar = 0x7f11022f +net.micode.notes:dimen/test_navigation_bar_text_size = 0x7f07019d +net.micode.notes:style/TextAppearance.Design.Prefix = 0x7f110173 +net.micode.notes:style/Theme.MaterialComponents.DayNight.Bridge = 0x7f1101b4 +net.micode.notes:dimen/test_navigation_bar_shadow_height = 0x7f07019c +net.micode.notes:id/groups = 0x7f0900c5 +net.micode.notes:string/path_password_eye = 0x7f1000b1 +net.micode.notes:id/button = 0x7f09005f +net.micode.notes:dimen/test_navigation_bar_item_max_width = 0x7f070199 +net.micode.notes:drawable/abc_btn_check_material = 0x7f08000e +net.micode.notes:dimen/test_navigation_bar_height = 0x7f070197 +net.micode.notes:string/material_timepicker_am = 0x7f10005e +net.micode.notes:id/right_side = 0x7f090172 +net.micode.notes:dimen/test_navigation_bar_active_item_min_width = 0x7f070194 +net.micode.notes:style/ShapeAppearanceOverlay.MaterialComponents.FloatingActionButton = 0x7f110125 +net.micode.notes:dimen/test_navigation_bar_active_item_max_width = 0x7f070193 +net.micode.notes:styleable/CompoundButton = 0x7f120021 +net.micode.notes:dimen/notification_top_pad = 0x7f070190 +net.micode.notes:dimen/notification_subtext_size = 0x7f07018f +net.micode.notes:style/TextAppearance.Compat.Notification.Time = 0x7f11016a +net.micode.notes:dimen/notification_small_icon_size_as_large = 0x7f07018e +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f110033 +net.micode.notes:style/TextAppearance.AppCompat.Subhead.Inverse = 0x7f110150 +net.micode.notes:dimen/notification_right_side_padding_top = 0x7f07018c +net.micode.notes:attr/actionViewClass = 0x7f040023 +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f11003b +net.micode.notes:dimen/mtrl_transition_shared_axis_slide_distance = 0x7f070182 +net.micode.notes:color/mtrl_tabs_icon_color_selector = 0x7f0600ae +net.micode.notes:layout/widget_4x = 0x7f0c0080 +net.micode.notes:attr/textAppearanceHeadline5 = 0x7f040320 +net.micode.notes:dimen/mtrl_tooltip_padding = 0x7f070181 +net.micode.notes:dimen/mtrl_tooltip_cornerSize = 0x7f07017e +net.micode.notes:dimen/mtrl_navigation_item_horizontal_padding = 0x7f070143 +net.micode.notes:dimen/mtrl_slider_widget_height = 0x7f07016b +net.micode.notes:dimen/mtrl_tooltip_arrowSize = 0x7f07017d +net.micode.notes:dimen/abc_text_size_body_2_material = 0x7f070040 +net.micode.notes:dimen/mtrl_snackbar_message_margin_horizontal = 0x7f070170 +net.micode.notes:attr/moveWhenScrollAtTop = 0x7f040264 +net.micode.notes:styleable/MotionScene = 0x7f12005c +net.micode.notes:dimen/mtrl_snackbar_action_text_color_alpha = 0x7f07016c +net.micode.notes:dimen/mtrl_slider_track_side_padding = 0x7f070169 +net.micode.notes:dimen/notification_big_circle_margin = 0x7f070185 +net.micode.notes:dimen/mtrl_slider_thumb_radius = 0x7f070167 +net.micode.notes:dimen/mtrl_calendar_day_corner = 0x7f0700f0 +net.micode.notes:dimen/mtrl_calendar_year_corner = 0x7f070110 +net.micode.notes:dimen/mtrl_slider_label_square_side = 0x7f070165 +net.micode.notes:dimen/mtrl_slider_label_radius = 0x7f070164 +net.micode.notes:bool/abc_config_actionMenuItemAllCaps = 0x7f050001 +net.micode.notes:dimen/mtrl_slider_halo_radius = 0x7f070162 +net.micode.notes:style/Base.Widget.AppCompat.Spinner = 0x7f1100d2 +net.micode.notes:dimen/test_navigation_bar_icon_size = 0x7f070198 +net.micode.notes:attr/cornerFamily = 0x7f0400e4 +net.micode.notes:attr/liftOnScroll = 0x7f040206 +net.micode.notes:dimen/mtrl_progress_circular_track_thickness_small = 0x7f07015c +net.micode.notes:dimen/abc_list_item_height_large_material = 0x7f070030 +net.micode.notes:style/RtlOverlay.DialogWindowTitle.AppCompat = 0x7f110106 +net.micode.notes:style/Widget.MaterialComponents.NavigationView = 0x7f1102ba +net.micode.notes:id/useLogo = 0x7f0901ed +net.micode.notes:attr/errorEnabled = 0x7f040135 +net.micode.notes:dimen/mtrl_progress_circular_size_extra_small = 0x7f070157 +net.micode.notes:string/menu_title_select_folder = 0x7f100083 +net.micode.notes:dimen/mtrl_progress_circular_inset_medium = 0x7f070153 +net.micode.notes:id/clip_horizontal = 0x7f090074 +net.micode.notes:attr/windowMinWidthMinor = 0x7f040387 +net.micode.notes:dimen/mtrl_progress_circular_inset = 0x7f070151 +net.micode.notes:color/abc_btn_colored_borderless_text_material = 0x7f060002 +net.micode.notes:dimen/mtrl_navigation_rail_margin = 0x7f07014e +net.micode.notes:string/dummy_button = 0x7f100030 +net.micode.notes:style/Widget.MaterialComponents.Button = 0x7f11027e +net.micode.notes:string/button_delete = 0x7f100025 +net.micode.notes:drawable/_20240425220723 = 0x7f080008 +net.micode.notes:attr/behavior_hideable = 0x7f040054 +net.micode.notes:color/material_slider_active_track_color = 0x7f06007b +net.micode.notes:attr/motionEasingDecelerated = 0x7f040258 +net.micode.notes:attr/titleMargin = 0x7f04034d +net.micode.notes:dimen/mtrl_navigation_rail_icon_size = 0x7f07014d +net.micode.notes:dimen/mtrl_navigation_rail_active_text_size = 0x7f070148 +net.micode.notes:xml/widget_4x_info = 0x7f130008 +net.micode.notes:string/abc_action_mode_done = 0x7f100003 +net.micode.notes:dimen/mtrl_navigation_elevation = 0x7f070142 +net.micode.notes:dimen/mtrl_navigation_bar_item_default_icon_size = 0x7f070140 +net.micode.notes:dimen/design_bottom_navigation_elevation = 0x7f070063 +net.micode.notes:dimen/mtrl_low_ripple_pressed_alpha = 0x7f07013e +net.micode.notes:dimen/mtrl_low_ripple_hovered_alpha = 0x7f07013d +net.micode.notes:dimen/mtrl_fab_translation_z_hovered_focused = 0x7f070134 +net.micode.notes:attr/behavior_draggable = 0x7f040050 +net.micode.notes:attr/backgroundSplit = 0x7f040043 +net.micode.notes:styleable/TextInputEditText = 0x7f12007c +net.micode.notes:color/material_on_primary_emphasis_high_type = 0x7f060074 +net.micode.notes:dimen/mtrl_fab_min_touch_target = 0x7f070133 +net.micode.notes:style/Widget.MaterialComponents.AppBarLayout.Primary = 0x7f11026e +net.micode.notes:style/Widget.AppCompat.PopupWindow = 0x7f110249 +net.micode.notes:dimen/mtrl_progress_circular_track_thickness_medium = 0x7f07015b +net.micode.notes:dimen/mtrl_snackbar_background_overlay_color_alpha = 0x7f07016e +net.micode.notes:dimen/mtrl_extended_fab_min_width = 0x7f07012b +net.micode.notes:style/ThemeOverlay.MaterialComponents.TextInputEditText = 0x7f110206 +net.micode.notes:style/ShapeAppearance.MaterialComponents.Tooltip = 0x7f11011c +net.micode.notes:id/accessibility_custom_action_29 = 0x7f090026 +net.micode.notes:dimen/mtrl_extended_fab_min_height = 0x7f07012a +net.micode.notes:dimen/mtrl_extended_fab_end_padding_icon = 0x7f070127 +net.micode.notes:layout/mtrl_calendar_month = 0x7f0c004c +net.micode.notes:dimen/mtrl_extended_fab_disabled_translation_z = 0x7f070124 +net.micode.notes:dimen/abc_panel_menu_list_width = 0x7f070034 +net.micode.notes:style/Widget.AppCompat.SeekBar = 0x7f110251 +net.micode.notes:dimen/mtrl_extended_fab_corner_radius = 0x7f070122 +net.micode.notes:color/material_on_surface_emphasis_high_type = 0x7f060077 +net.micode.notes:style/Base.Widget.MaterialComponents.AutoCompleteTextView = 0x7f1100d9 +net.micode.notes:attr/windowFixedWidthMajor = 0x7f040384 +net.micode.notes:attr/backgroundColor = 0x7f04003d +net.micode.notes:dimen/mtrl_calendar_year_vertical_padding = 0x7f070113 +net.micode.notes:dimen/abc_select_dialog_padding_start_material = 0x7f07003a +net.micode.notes:color/mtrl_btn_transparent_bg_color = 0x7f06008c +net.micode.notes:dimen/mtrl_calendar_year_horizontal_padding = 0x7f070112 +net.micode.notes:id/filled = 0x7f0900b4 +net.micode.notes:style/Widget.MaterialComponents.PopupMenu.ListPopupWindow = 0x7f1102bd +net.micode.notes:id/accessibility_custom_action_17 = 0x7f090019 +net.micode.notes:dimen/mtrl_calendar_navigation_height = 0x7f070106 +net.micode.notes:interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1 = 0x7f0b0001 +net.micode.notes:id/test_checkbox_app_button_tint = 0x7f0901bd +net.micode.notes:dimen/mtrl_calendar_navigation_bottom_padding = 0x7f070105 +net.micode.notes:color/tooltip_background_light = 0x7f0600d4 +net.micode.notes:layout/material_clock_period_toggle_land = 0x7f0c0038 +net.micode.notes:style/Base.MaterialAlertDialog.MaterialComponents.Title.Icon = 0x7f110012 +net.micode.notes:color/dim_foreground_material_dark = 0x7f060057 +net.micode.notes:dimen/mtrl_calendar_month_horizontal_padding = 0x7f070103 +net.micode.notes:style/Base.Widget.AppCompat.Button = 0x7f1100a9 +net.micode.notes:dimen/mtrl_calendar_header_toggle_margin_top = 0x7f070100 +net.micode.notes:style/Theme.AppCompat.NoActionBar = 0x7f1101a7 +net.micode.notes:layout/abc_popup_menu_item_layout = 0x7f0c0013 +net.micode.notes:id/honorRequest = 0x7f0900cb +net.micode.notes:attr/scrimVisibleHeightTrigger = 0x7f0402b2 +net.micode.notes:dimen/mtrl_calendar_header_selection_line_height = 0x7f0700fd +net.micode.notes:attr/paddingTopNoTitle = 0x7f04027e +net.micode.notes:dimen/mtrl_calendar_dialog_background_inset = 0x7f0700f7 +net.micode.notes:attr/fontFamily = 0x7f04016a +net.micode.notes:dimen/mtrl_calendar_header_height = 0x7f0700fb +net.micode.notes:dimen/mtrl_calendar_days_of_week_height = 0x7f0700f6 +net.micode.notes:string/menu_font_large = 0x7f10006e +net.micode.notes:color/design_default_color_error = 0x7f06003f +net.micode.notes:attr/itemHorizontalTranslationEnabled = 0x7f0401a9 +net.micode.notes:dimen/mtrl_calendar_day_today_stroke = 0x7f0700f3 +net.micode.notes:style/TextAppearance.MaterialComponents.Caption = 0x7f11017b +net.micode.notes:id/prefenerece_sync_status_textview = 0x7f090167 +net.micode.notes:dimen/mtrl_calendar_action_padding = 0x7f0700ed +net.micode.notes:dimen/compat_button_padding_horizontal_material = 0x7f070059 +net.micode.notes:id/tv_title = 0x7f0901e6 +net.micode.notes:style/AppTheme.Base = 0x7f110008 +net.micode.notes:attr/boxCornerRadiusBottomStart = 0x7f040063 +net.micode.notes:styleable/KeyTimeCycle = 0x7f12003f +net.micode.notes:attr/controlBackground = 0x7f0400e2 +net.micode.notes:dimen/mtrl_btn_z = 0x7f0700ea +net.micode.notes:string/info_note_enter_desktop = 0x7f10004f +net.micode.notes:attr/materialCalendarMonth = 0x7f04022e +net.micode.notes:dimen/mtrl_btn_text_size = 0x7f0700e9 +net.micode.notes:string/mtrl_picker_text_input_month_abbr = 0x7f1000a1 +net.micode.notes:dimen/mtrl_btn_stroke_size = 0x7f0700e5 +net.micode.notes:style/MaterialAlertDialog.MaterialComponents = 0x7f1100ec +net.micode.notes:drawable/list_white_down = 0x7f080096 +net.micode.notes:attr/customFloatValue = 0x7f0400fc +net.micode.notes:color/material_deep_teal_200 = 0x7f060067 +net.micode.notes:dimen/mtrl_btn_pressed_z = 0x7f0700e3 +net.micode.notes:dimen/mtrl_btn_padding_top = 0x7f0700e2 +net.micode.notes:drawable/notification_template_icon_bg = 0x7f0800c5 +net.micode.notes:dimen/mtrl_btn_max_width = 0x7f0700de +net.micode.notes:dimen/mtrl_btn_letter_spacing = 0x7f0700dd +net.micode.notes:dimen/mtrl_btn_icon_padding = 0x7f0700db +net.micode.notes:style/Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f110075 +net.micode.notes:string/preferences_button_sync_immediately = 0x7f1000ba +net.micode.notes:dimen/mtrl_btn_hovered_z = 0x7f0700d9 +net.micode.notes:attr/deriveConstraintsFrom = 0x7f04010a +net.micode.notes:dimen/mtrl_btn_disabled_z = 0x7f0700d6 +net.micode.notes:dimen/compat_control_corner_material = 0x7f07005b +net.micode.notes:attr/waveShape = 0x7f04037d +net.micode.notes:dimen/mtrl_toolbar_default_height = 0x7f07017c +net.micode.notes:id/home = 0x7f0900c9 +net.micode.notes:drawable/abc_ic_clear_material = 0x7f080022 +net.micode.notes:style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar = 0x7f110241 +net.micode.notes:attr/motionDurationShort1 = 0x7f040255 +net.micode.notes:dimen/mtrl_bottomappbar_height = 0x7f0700d2 +net.micode.notes:dimen/mtrl_bottomappbar_fab_cradle_vertical_offset = 0x7f0700d1 +net.micode.notes:attr/region_widthLessThan = 0x7f0402a9 +net.micode.notes:id/date_picker_actions = 0x7f090084 +net.micode.notes:dimen/mtrl_bottomappbar_fab_cradle_margin = 0x7f0700cf +net.micode.notes:color/abc_hint_foreground_material_dark = 0x7f060007 +net.micode.notes:color/design_dark_default_color_surface = 0x7f06003d +net.micode.notes:dimen/mtrl_badge_toolbar_action_menu_item_vertical_offset = 0x7f0700cb +net.micode.notes:id/transitionToEnd = 0x7f0901d8 +net.micode.notes:attr/trackTint = 0x7f040367 +net.micode.notes:dimen/mtrl_badge_toolbar_action_menu_item_horizontal_offset = 0x7f0700ca +net.micode.notes:dimen/mtrl_alert_dialog_background_inset_start = 0x7f0700c2 +net.micode.notes:dimen/mtrl_alert_dialog_background_inset_end = 0x7f0700c1 +net.micode.notes:attr/fontProviderQuery = 0x7f040170 +net.micode.notes:attr/daySelectedStyle = 0x7f040102 +net.micode.notes:dimen/mtrl_progress_circular_size_small = 0x7f070159 +net.micode.notes:style/Widget.MaterialComponents.Chip.Action = 0x7f11028c +net.micode.notes:dimen/material_text_view_test_line_height_override = 0x7f0700b9 +net.micode.notes:style/Base.TextAppearance.AppCompat.Display2 = 0x7f11001b +net.micode.notes:string/status_bar_notification_info_overflow = 0x7f1000cd +net.micode.notes:id/message = 0x7f09011d +net.micode.notes:id/deltaRelative = 0x7f09008a +net.micode.notes:dimen/abc_text_size_small_material = 0x7f07004c +net.micode.notes:dimen/material_helper_text_font_1_3_padding_horizontal = 0x7f0700b5 +net.micode.notes:styleable/ConstraintLayout_placeholder = 0x7f120024 +net.micode.notes:attr/allowStacking = 0x7f040029 +net.micode.notes:string/mtrl_picker_toggle_to_calendar_input_mode = 0x7f1000a3 +net.micode.notes:id/beginning = 0x7f090059 +net.micode.notes:style/Widget.AppCompat.Toolbar.Button.Navigation = 0x7f11025a +net.micode.notes:dimen/material_helper_text_default_padding_top = 0x7f0700b4 +net.micode.notes:attr/titleMarginEnd = 0x7f04034f +net.micode.notes:dimen/material_font_1_3_box_collapsed_padding_top = 0x7f0700b2 +net.micode.notes:dimen/compat_notification_large_icon_max_width = 0x7f07005d +net.micode.notes:styleable/ActionBarLayout = 0x7f120001 +net.micode.notes:dimen/material_filled_edittext_font_2_0_padding_top = 0x7f0700b1 +net.micode.notes:dimen/test_navigation_bar_elevation = 0x7f070196 +net.micode.notes:dimen/material_filled_edittext_font_2_0_padding_bottom = 0x7f0700b0 +net.micode.notes:drawable/list_white_middle = 0x7f080097 +net.micode.notes:menu/note_edit = 0x7f0d0002 +net.micode.notes:layout/material_clock_display = 0x7f0c0035 +net.micode.notes:attr/chipSurfaceColor = 0x7f04009e +net.micode.notes:dimen/material_filled_edittext_font_1_3_padding_top = 0x7f0700af +net.micode.notes:style/TextAppearance.MaterialComponents.TimePicker.Title = 0x7f110186 +net.micode.notes:attr/homeLayout = 0x7f04018e +net.micode.notes:dimen/material_emphasis_high_type = 0x7f0700ac +net.micode.notes:attr/helperTextTextColor = 0x7f040184 +net.micode.notes:style/TextAppearanceNormal = 0x7f11018d +net.micode.notes:id/invisible = 0x7f0900d5 +net.micode.notes:dimen/mtrl_calendar_day_height = 0x7f0700f1 +net.micode.notes:attr/layout_goneMarginBottom = 0x7f0401fb +net.micode.notes:dimen/material_cursor_width = 0x7f0700aa +net.micode.notes:attr/chainUseRtl = 0x7f040080 +net.micode.notes:attr/bottomAppBarStyle = 0x7f04005b +net.micode.notes:attr/tabBackground = 0x7f0402f8 +net.micode.notes:dimen/material_cursor_inset_top = 0x7f0700a9 +net.micode.notes:attr/fabAlignmentMode = 0x7f040148 +net.micode.notes:drawable/abc_popup_background_mtrl_mult = 0x7f08003c +net.micode.notes:dimen/material_clock_period_toggle_margin_left = 0x7f0700a5 +net.micode.notes:dimen/material_clock_period_toggle_height = 0x7f0700a4 +net.micode.notes:styleable/BottomAppBar = 0x7f120014 +net.micode.notes:dimen/material_clock_display_padding = 0x7f07009e +net.micode.notes:drawable/abc_edit_text_material = 0x7f08001f +net.micode.notes:dimen/abc_action_bar_stacked_max_height = 0x7f070009 +net.micode.notes:color/mtrl_tabs_legacy_text_color_selector = 0x7f0600b0 +net.micode.notes:dimen/item_touch_helper_swipe_escape_max_velocity = 0x7f07009b +net.micode.notes:string/mtrl_picker_range_header_title = 0x7f10009a +net.micode.notes:attr/contentPaddingStart = 0x7f0400de +net.micode.notes:dimen/mtrl_calendar_header_content_padding = 0x7f0700f8 +net.micode.notes:id/widget_bg_image = 0x7f0901f4 +net.micode.notes:id/packed = 0x7f090159 +net.micode.notes:dimen/item_touch_helper_max_drag_scroll_per_frame = 0x7f07009a +net.micode.notes:style/Base.Widget.AppCompat.ActionButton = 0x7f1100a3 +net.micode.notes:styleable/ViewPager2 = 0x7f120086 +net.micode.notes:dimen/abc_floating_window_z = 0x7f07002f +net.micode.notes:dimen/highlight_alpha_material_dark = 0x7f070094 +net.micode.notes:attr/colorPrimarySurface = 0x7f0400c4 +net.micode.notes:style/Base.Theme.AppCompat = 0x7f110049 +net.micode.notes:dimen/fastscroll_margin = 0x7f070091 +net.micode.notes:dimen/fastscroll_default_thickness = 0x7f070090 +net.micode.notes:attr/chipMinTouchTargetSize = 0x7f040095 +net.micode.notes:attr/showPaths = 0x7f0402c5 +net.micode.notes:layout/mtrl_alert_dialog_title = 0x7f0c0044 +net.micode.notes:dimen/mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 0x7f0700d0 +net.micode.notes:attr/itemTextAppearance = 0x7f0401ba +net.micode.notes:dimen/design_tab_text_size = 0x7f07008b +net.micode.notes:id/rectangles = 0x7f09016d +net.micode.notes:dimen/design_tab_scrollable_min_width = 0x7f07008a +net.micode.notes:style/Theme.MaterialComponents.DayNight.Dialog = 0x7f1101b7 +net.micode.notes:dimen/mtrl_textinput_box_corner_radius_small = 0x7f070174 +net.micode.notes:layout/notification_template_part_chronometer = 0x7f0c0069 +net.micode.notes:dimen/mtrl_slider_track_height = 0x7f070168 +net.micode.notes:dimen/design_snackbar_padding_vertical_2lines = 0x7f070087 +net.micode.notes:anim/btn_radio_to_off_mtrl_ring_outer_animation = 0x7f010013 +net.micode.notes:dimen/design_snackbar_padding_horizontal = 0x7f070085 +net.micode.notes:drawable/abc_ic_menu_copy_mtrl_am_alpha = 0x7f080025 +net.micode.notes:style/Widget.AppCompat.TextView.SpinnerItem = 0x7f110258 +net.micode.notes:attr/buttonStyleSmall = 0x7f040075 +net.micode.notes:dimen/abc_dialog_list_padding_top_no_title = 0x7f070021 +net.micode.notes:dimen/design_snackbar_extra_spacing_horizontal = 0x7f070082 +net.micode.notes:dimen/design_snackbar_action_text_color_alpha = 0x7f07007f +net.micode.notes:color/mtrl_navigation_item_background_color = 0x7f0600a4 +net.micode.notes:attr/boxBackgroundMode = 0x7f040060 +net.micode.notes:style/TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f110164 +net.micode.notes:dimen/design_navigation_max_width = 0x7f07007b +net.micode.notes:style/Base.CardView = 0x7f11000f +net.micode.notes:styleable/ActionMenuItemView = 0x7f120002 +net.micode.notes:dimen/design_navigation_icon_size = 0x7f070078 +net.micode.notes:style/Widget.MaterialComponents.Snackbar.FullWidth = 0x7f1102c3 +net.micode.notes:style/Widget.AppCompat.ListView = 0x7f110244 +net.micode.notes:attr/expandActivityOverflowButtonDrawable = 0x7f04013b +net.micode.notes:attr/collapseContentDescription = 0x7f0400ae +net.micode.notes:dimen/design_navigation_icon_padding = 0x7f070077 +net.micode.notes:drawable/list_blue_down = 0x7f080088 +net.micode.notes:dimen/design_fab_border_width = 0x7f07006f +net.micode.notes:integer/abc_config_activityDefaultDur = 0x7f0a0000 +net.micode.notes:style/Theme.MaterialComponents.DayNight.Dialog.FixedSize = 0x7f1101bb +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.Button = 0x7f110038 +net.micode.notes:color/mtrl_choice_chip_text_color = 0x7f060097 +net.micode.notes:id/visible_removing_fragment_view_tag = 0x7f0901f3 +net.micode.notes:id/iv_bg_yellow_select = 0x7f0900e3 +net.micode.notes:style/Widget.MaterialComponents.BottomNavigationView = 0x7f110279 +net.micode.notes:id/checkbox = 0x7f09006a +net.micode.notes:id/ghost_view_holder = 0x7f0900bf +net.micode.notes:anim/btn_checkbox_to_unchecked_icon_null_animation = 0x7f010011 +net.micode.notes:attr/sizePercent = 0x7f0402cc +net.micode.notes:dimen/design_bottom_navigation_item_min_width = 0x7f070067 +net.micode.notes:dimen/design_bottom_navigation_icon_size = 0x7f070065 +net.micode.notes:style/Widget.MaterialComponents.PopupMenu.ContextMenu = 0x7f1102bc +net.micode.notes:drawable/material_ic_edit_black_24dp = 0x7f0800a3 +net.micode.notes:id/unchecked = 0x7f0901e9 +net.micode.notes:attr/trackColorInactive = 0x7f040363 +net.micode.notes:drawable/abc_list_divider_mtrl_alpha = 0x7f080030 +net.micode.notes:dimen/design_bottom_navigation_height = 0x7f070064 +net.micode.notes:dimen/design_bottom_navigation_active_item_max_width = 0x7f070060 +net.micode.notes:color/design_fab_shadow_end_color = 0x7f06004c +net.micode.notes:dimen/design_appbar_elevation = 0x7f07005f +net.micode.notes:attr/listPopupWindowStyle = 0x7f040213 +net.micode.notes:drawable/abc_btn_check_to_on_mtrl_000 = 0x7f080010 +net.micode.notes:dimen/compat_notification_large_icon_max_height = 0x7f07005c +net.micode.notes:id/blocking = 0x7f09005a +net.micode.notes:dimen/mtrl_switch_thumb_elevation = 0x7f070172 +net.micode.notes:dimen/mtrl_edittext_rectangle_top_offset = 0x7f07011d +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.YearNavigationButton = 0x7f1102b4 +net.micode.notes:drawable/edit_title_white = 0x7f080076 +net.micode.notes:drawable/abc_list_pressed_holo_dark = 0x7f080033 +net.micode.notes:dimen/compat_button_padding_vertical_material = 0x7f07005a +net.micode.notes:attr/materialCalendarHeaderDivider = 0x7f040229 +net.micode.notes:style/NoteTheme = 0x7f1100f7 +net.micode.notes:id/design_menu_item_action_area = 0x7f09008d +net.micode.notes:attr/fontProviderAuthority = 0x7f04016b +net.micode.notes:dimen/cardview_default_radius = 0x7f070055 +net.micode.notes:dimen/design_bottom_navigation_text_size = 0x7f07006b +net.micode.notes:attr/chipMinHeight = 0x7f040094 +net.micode.notes:dimen/cardview_default_elevation = 0x7f070054 +net.micode.notes:style/Theme.Design.Light = 0x7f1101aa +net.micode.notes:dimen/appcompat_dialog_background_inset = 0x7f070052 +net.micode.notes:drawable/title_bar_bg = 0x7f0800ce +net.micode.notes:dimen/abc_text_size_title_material_toolbar = 0x7f070050 +net.micode.notes:layout/abc_alert_dialog_title_material = 0x7f0c000a +net.micode.notes:dimen/abc_text_size_title_material = 0x7f07004f +net.micode.notes:attr/textAppearanceHeadline3 = 0x7f04031e +net.micode.notes:styleable/Insets = 0x7f120038 +net.micode.notes:dimen/abc_text_size_subhead_material = 0x7f07004d +net.micode.notes:dimen/abc_text_size_menu_material = 0x7f07004b +net.micode.notes:integer/mtrl_calendar_year_selector_span = 0x7f0a0015 +net.micode.notes:attr/appBarLayoutStyle = 0x7f04002f +net.micode.notes:dimen/abc_text_size_medium_material = 0x7f070049 +net.micode.notes:dimen/material_clock_hand_padding = 0x7f0700a1 +net.micode.notes:string/mtrl_picker_range_header_only_start_selected = 0x7f100098 +net.micode.notes:drawable/abc_cab_background_top_mtrl_alpha = 0x7f08001c +net.micode.notes:drawable/widget_4x_green = 0x7f0800da +net.micode.notes:dimen/abc_text_size_headline_material = 0x7f070047 +net.micode.notes:style/TextAppearance.AppCompat.Light.SearchResult.Title = 0x7f110145 +net.micode.notes:style/Widget.MaterialComponents.BottomNavigationView.Colored = 0x7f11027a +net.micode.notes:attr/checkedIconSize = 0x7f040087 +net.micode.notes:attr/layout_goneMarginLeft = 0x7f0401fd +net.micode.notes:dimen/material_clock_face_margin_top = 0x7f07009f +net.micode.notes:dimen/design_snackbar_min_width = 0x7f070084 +net.micode.notes:dimen/abc_switch_padding = 0x7f07003e +net.micode.notes:dimen/mtrl_extended_fab_icon_size = 0x7f070128 +net.micode.notes:attr/itemHorizontalPadding = 0x7f0401a8 +net.micode.notes:dimen/abc_star_small = 0x7f07003d +net.micode.notes:array/format_for_exported_note = 0x7f030000 +net.micode.notes:dimen/mtrl_min_touch_target_size = 0x7f07013f +net.micode.notes:dimen/abc_seekbar_track_progress_height_material = 0x7f070039 +net.micode.notes:style/Widget.MaterialComponents.Button.UnelevatedButton.Icon = 0x7f110289 +net.micode.notes:dimen/abc_list_item_height_small_material = 0x7f070032 +net.micode.notes:id/note_bg_color_selector = 0x7f09014b +net.micode.notes:color/mtrl_tabs_colored_ripple_color = 0x7f0600ad +net.micode.notes:attr/fabCradleMargin = 0x7f04014a +net.micode.notes:attr/fontProviderPackage = 0x7f04016f +net.micode.notes:attr/checkedTextViewStyle = 0x7f04008a +net.micode.notes:drawable/list_green_up = 0x7f080091 +net.micode.notes:layout/abc_action_mode_close_item_material = 0x7f0c0005 +net.micode.notes:drawable/abc_vector_test = 0x7f080059 +net.micode.notes:attr/switchStyle = 0x7f0402f6 +net.micode.notes:drawable/$avd_show_password__1 = 0x7f080004 +net.micode.notes:color/mtrl_calendar_item_stroke_color = 0x7f06008d +net.micode.notes:color/mtrl_tabs_icon_color_selector_colored = 0x7f0600af +net.micode.notes:color/design_fab_shadow_mid_color = 0x7f06004d +net.micode.notes:dimen/mtrl_shape_corner_size_small_component = 0x7f070161 +net.micode.notes:dimen/abc_edit_text_inset_horizontal_material = 0x7f07002d +net.micode.notes:attr/buttonTint = 0x7f040076 +net.micode.notes:style/Base.Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f1100c0 +net.micode.notes:dimen/abc_dropdownitem_text_padding_right = 0x7f07002b +net.micode.notes:style/TextAppearance.AppCompat.Button = 0x7f11013a +net.micode.notes:style/Widget.MaterialComponents.TextInputLayout.FilledBox = 0x7f1102cc +net.micode.notes:dimen/abc_dropdownitem_text_padding_left = 0x7f07002a +net.micode.notes:drawable/abc_btn_radio_to_on_mtrl_000 = 0x7f080016 +net.micode.notes:string/character_counter_overflowed_content_description = 0x7f100029 +net.micode.notes:drawable/mtrl_dialog_background = 0x7f0800ac +net.micode.notes:attr/defaultQueryHint = 0x7f040106 +net.micode.notes:color/abc_secondary_text_material_dark = 0x7f060011 +net.micode.notes:dimen/abc_disabled_alpha_material_light = 0x7f070028 +net.micode.notes:dimen/material_textinput_max_width = 0x7f0700bb +net.micode.notes:dimen/abc_disabled_alpha_material_dark = 0x7f070027 +net.micode.notes:dimen/mtrl_calendar_navigation_top_padding = 0x7f070107 +net.micode.notes:attr/fastScrollHorizontalTrackDrawable = 0x7f040151 +net.micode.notes:dimen/abc_dialog_padding_material = 0x7f070024 +net.micode.notes:dimen/abc_dialog_list_padding_bottom_no_buttons = 0x7f070020 +net.micode.notes:style/Base.TextAppearance.AppCompat.Subhead = 0x7f11002c +net.micode.notes:animator/mtrl_fab_transformation_sheet_expand_spec = 0x7f020019 +net.micode.notes:dimen/mtrl_extended_fab_start_padding_icon = 0x7f07012d +net.micode.notes:dimen/abc_dialog_fixed_width_minor = 0x7f07001f +net.micode.notes:anim/mtrl_card_lowers_interpolator = 0x7f01001f +net.micode.notes:dimen/abc_dialog_fixed_height_major = 0x7f07001c +net.micode.notes:dimen/abc_control_padding_material = 0x7f07001a +net.micode.notes:dimen/abc_text_size_display_3_material = 0x7f070045 +net.micode.notes:drawable/list_background = 0x7f080087 +net.micode.notes:dimen/material_bottom_sheet_max_width = 0x7f07009d +net.micode.notes:dimen/mtrl_progress_indicator_full_rounded_corner_radius = 0x7f07015d +net.micode.notes:dimen/abc_cascading_menus_min_smallest_width = 0x7f070016 +net.micode.notes:style/Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f110047 +net.micode.notes:dimen/fastscroll_minimum_range = 0x7f070092 +net.micode.notes:dimen/abc_button_inset_horizontal_material = 0x7f070012 +net.micode.notes:string/material_timepicker_hour = 0x7f100060 +net.micode.notes:dimen/mtrl_slider_label_padding = 0x7f070163 +net.micode.notes:dimen/mtrl_exposed_dropdown_menu_popup_elevation = 0x7f07011e +net.micode.notes:attr/flow_lastHorizontalBias = 0x7f04015e +net.micode.notes:dimen/abc_seekbar_track_background_height_material = 0x7f070038 +net.micode.notes:dimen/abc_alert_dialog_button_bar_height = 0x7f070010 +net.micode.notes:attr/thumbStrokeWidth = 0x7f04033c +net.micode.notes:attr/panelMenuListWidth = 0x7f040282 +net.micode.notes:dimen/abc_action_bar_stacked_tab_max_width = 0x7f07000a +net.micode.notes:style/Widget.Compat.NotificationActionText = 0x7f11025e +net.micode.notes:attr/path_percent = 0x7f040289 +net.micode.notes:dimen/abc_action_bar_default_height_material = 0x7f070002 +net.micode.notes:style/ShapeAppearance.MaterialComponents.Test = 0x7f11011b +net.micode.notes:dimen/abc_action_bar_content_inset_material = 0x7f070000 +net.micode.notes:id/wrap_content = 0x7f0901f9 +net.micode.notes:attr/closeIconVisible = 0x7f0400ac +net.micode.notes:style/TextAppearance.Design.HelperText = 0x7f110170 +net.micode.notes:style/Base.Theme.AppCompat.Light.Dialog.Alert = 0x7f110053 +net.micode.notes:color/test_mtrl_calendar_day = 0x7f0600d1 +net.micode.notes:style/Base.Widget.AppCompat.ActionButton.CloseMode = 0x7f1100a4 +net.micode.notes:id/ignoreRequest = 0x7f0900d2 +net.micode.notes:attr/layout_collapseMode = 0x7f0401cc +net.micode.notes:color/switch_thumb_material_light = 0x7f0600ce +net.micode.notes:attr/endIconDrawable = 0x7f04012d +net.micode.notes:color/switch_thumb_disabled_material_light = 0x7f0600cc +net.micode.notes:attr/cardElevation = 0x7f04007a +net.micode.notes:attr/layout_constraintGuide_begin = 0x7f0401db +net.micode.notes:color/switch_thumb_disabled_material_dark = 0x7f0600cb +net.micode.notes:dimen/mtrl_navigation_item_icon_padding = 0x7f070144 +net.micode.notes:color/secondary_text_disabled_material_light = 0x7f0600ca +net.micode.notes:color/secondary_text_dark = 0x7f0600c6 +net.micode.notes:attr/checkedIconVisible = 0x7f040089 +net.micode.notes:layout/select_dialog_singlechoice_material = 0x7f0c006d +net.micode.notes:id/easeInOut = 0x7f0900a1 +net.micode.notes:attr/cornerRadius = 0x7f0400e9 +net.micode.notes:color/ripple_material_dark = 0x7f0600c4 +net.micode.notes:color/primary_text_disabled_material_dark = 0x7f0600c1 +net.micode.notes:drawable/delete = 0x7f080069 +net.micode.notes:attr/constraintSetStart = 0x7f0400cd +net.micode.notes:color/primary_text_default_material_light = 0x7f0600c0 +net.micode.notes:dimen/test_mtrl_calendar_day_cornerSize = 0x7f070192 +net.micode.notes:string/alert_message_delete_notes = 0x7f10001d +net.micode.notes:attr/keyPositionType = 0x7f0401be +net.micode.notes:color/primary_material_dark = 0x7f0600bc +net.micode.notes:style/TextAppearance.AppCompat.Medium = 0x7f110148 +net.micode.notes:color/primary_dark_material_dark = 0x7f0600ba +net.micode.notes:attr/firstBaselineToTopHeight = 0x7f040154 +net.micode.notes:drawable/abc_textfield_search_material = 0x7f080058 +net.micode.notes:attr/minTouchTargetSize = 0x7f040248 +net.micode.notes:dimen/highlight_alpha_material_light = 0x7f070095 +net.micode.notes:color/notification_action_color_filter = 0x7f0600b8 +net.micode.notes:attr/autoSizeMaxTextSize = 0x7f040036 +net.micode.notes:dimen/mtrl_navigation_rail_text_size = 0x7f070150 +net.micode.notes:color/mtrl_textinput_hovered_box_stroke_color = 0x7f0600b7 +net.micode.notes:style/Theme.MaterialComponents.DayNight.Dialog.Alert = 0x7f1101b8 +net.micode.notes:dimen/notification_content_margin_start = 0x7f070186 +net.micode.notes:attr/layout_constraintGuide_percent = 0x7f0401dd +net.micode.notes:id/move = 0x7f090128 +net.micode.notes:attr/layout_anchor = 0x7f0401c9 +net.micode.notes:dimen/mtrl_btn_icon_btn_padding_left = 0x7f0700da +net.micode.notes:color/mtrl_textinput_disabled_color = 0x7f0600b4 +net.micode.notes:id/material_value_index = 0x7f09010a +net.micode.notes:dimen/disabled_alpha_material_light = 0x7f07008f +net.micode.notes:layout/material_timepicker_textinput_display = 0x7f0c0041 +net.micode.notes:attr/listPreferredItemHeight = 0x7f040214 +net.micode.notes:color/design_default_color_on_primary = 0x7f060042 +net.micode.notes:color/mtrl_textinput_default_box_stroke_color = 0x7f0600b3 +net.micode.notes:color/mtrl_error = 0x7f060098 +net.micode.notes:style/Platform.AppCompat = 0x7f1100f8 +net.micode.notes:styleable/MaterialTextAppearance = 0x7f120051 +net.micode.notes:dimen/mtrl_btn_dialog_btn_min_width = 0x7f0700d4 +net.micode.notes:dimen/abc_control_corner_material = 0x7f070018 +net.micode.notes:id/view_tree_view_model_store_owner = 0x7f0901f1 +net.micode.notes:style/TextAppearance.Design.Placeholder = 0x7f110172 +net.micode.notes:attr/waveOffset = 0x7f04037b +net.micode.notes:color/mtrl_popupmenu_overlay_color = 0x7f0600ab +net.micode.notes:id/month_grid = 0x7f090121 +net.micode.notes:string/search_menu_title = 0x7f1000ca +net.micode.notes:color/mtrl_on_primary_text_btn_text_color_selector = 0x7f0600a7 +net.micode.notes:attr/itemTextAppearanceActive = 0x7f0401bb +net.micode.notes:color/design_default_color_background = 0x7f06003e +net.micode.notes:color/mtrl_navigation_item_icon_tint = 0x7f0600a5 +net.micode.notes:color/mtrl_navigation_bar_item_tint = 0x7f0600a2 +net.micode.notes:style/ThemeOverlay.AppCompat = 0x7f1101df +net.micode.notes:color/mtrl_navigation_bar_colored_ripple_color = 0x7f0600a1 +net.micode.notes:color/mtrl_filled_background_color = 0x7f06009c +net.micode.notes:color/mtrl_fab_ripple_color = 0x7f06009b +net.micode.notes:string/abc_menu_function_shortcut_label = 0x7f10000c +net.micode.notes:dimen/mtrl_badge_long_text_horizontal_padding = 0x7f0700c6 +net.micode.notes:id/num_word = 0x7f090154 +net.micode.notes:drawable/abc_seekbar_tick_mark_material = 0x7f080046 +net.micode.notes:attr/behavior_saveFlags = 0x7f040057 +net.micode.notes:style/TextAppearance.MaterialComponents.Subtitle2 = 0x7f110185 +net.micode.notes:dimen/mtrl_tooltip_minHeight = 0x7f07017f +net.micode.notes:color/mtrl_choice_chip_ripple_color = 0x7f060096 +net.micode.notes:attr/chipGroupStyle = 0x7f04008e +net.micode.notes:color/mtrl_chip_text_color = 0x7f060094 +net.micode.notes:attr/textAppearanceCaption = 0x7f04031b +net.micode.notes:color/mtrl_chip_close_icon_tint = 0x7f060092 +net.micode.notes:style/TextAppearance.MaterialComponents.Headline4 = 0x7f110180 +net.micode.notes:dimen/mtrl_calendar_landscape_header_width = 0x7f070101 +net.micode.notes:dimen/mtrl_calendar_day_horizontal_padding = 0x7f0700f2 +net.micode.notes:id/group_divider = 0x7f0900c3 +net.micode.notes:color/mtrl_chip_background_color = 0x7f060091 +net.micode.notes:drawable/edit_title_blue = 0x7f080073 +net.micode.notes:color/mtrl_card_view_ripple = 0x7f060090 +net.micode.notes:id/mtrl_picker_text_input_date = 0x7f09013b +net.micode.notes:attr/seekBarStyle = 0x7f0402b6 +net.micode.notes:dimen/mtrl_calendar_day_vertical_padding = 0x7f0700f4 +net.micode.notes:attr/tabIconTintMode = 0x7f0402fc +net.micode.notes:color/mtrl_calendar_selected_range = 0x7f06008e +net.micode.notes:style/MaterialAlertDialog.MaterialComponents.Title.Panel.CenterStacked = 0x7f1100f3 +net.micode.notes:styleable/MaterialAlertDialogTheme = 0x7f120047 +net.micode.notes:color/mtrl_btn_text_color_selector = 0x7f06008b +net.micode.notes:color/mtrl_btn_text_color_disabled = 0x7f06008a +net.micode.notes:attr/circularProgressIndicatorStyle = 0x7f0400a0 +net.micode.notes:color/cardview_light_background = 0x7f06002b +net.micode.notes:attr/isLightTheme = 0x7f0401a4 +net.micode.notes:color/mtrl_btn_text_btn_bg_color_selector = 0x7f060088 +net.micode.notes:color/mtrl_btn_bg_color_selector = 0x7f060085 +net.micode.notes:dimen/tooltip_corner_radius = 0x7f0701a3 +net.micode.notes:id/mtrl_calendar_selection_frame = 0x7f09012f +net.micode.notes:color/cardview_shadow_end_color = 0x7f06002c +net.micode.notes:color/material_timepicker_clock_text_color = 0x7f060082 +net.micode.notes:string/menu_sync = 0x7f100081 +net.micode.notes:attr/actionModeCloseDrawable = 0x7f040013 +net.micode.notes:id/sv_note_edit = 0x7f0901ad +net.micode.notes:attr/layout_constraintCircleAngle = 0x7f0401d6 +net.micode.notes:color/material_timepicker_button_stroke = 0x7f060081 +net.micode.notes:attr/itemShapeFillColor = 0x7f0401b2 +net.micode.notes:style/Widget.MaterialComponents.Button.UnelevatedButton = 0x7f110288 +net.micode.notes:attr/tabIndicatorHeight = 0x7f040303 +net.micode.notes:dimen/mtrl_alert_dialog_background_inset_top = 0x7f0700c3 +net.micode.notes:string/abc_shareactionprovider_share_with_application = 0x7f100019 +net.micode.notes:attr/textAppearanceSearchResultSubtitle = 0x7f040329 +net.micode.notes:color/material_slider_active_tick_marks_color = 0x7f06007a +net.micode.notes:color/material_on_surface_stroke = 0x7f060079 +net.micode.notes:attr/itemShapeAppearance = 0x7f0401b0 +net.micode.notes:style/TextAppearance.AppCompat.Caption = 0x7f11013b +net.micode.notes:style/Base.ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f11006d +net.micode.notes:attr/navigationIcon = 0x7f040267 +net.micode.notes:color/material_on_surface_disabled = 0x7f060076 +net.micode.notes:id/spline = 0x7f09019a +net.micode.notes:style/TextAppearance.AppCompat.Widget.Button = 0x7f11015d +net.micode.notes:dimen/design_snackbar_padding_vertical = 0x7f070086 +net.micode.notes:color/material_on_background_emphasis_medium = 0x7f060072 +net.micode.notes:drawable/list_white_up = 0x7f080099 +net.micode.notes:drawable/wallpaper2 = 0x7f0800d3 +net.micode.notes:id/outward = 0x7f090158 +net.micode.notes:string/preferences_button_sync_cancel = 0x7f1000b9 +net.micode.notes:id/expanded_menu = 0x7f0900af +net.micode.notes:color/material_on_background_disabled = 0x7f060070 +net.micode.notes:dimen/material_clock_size = 0x7f0700a7 +net.micode.notes:color/material_grey_900 = 0x7f06006f +net.micode.notes:string/mtrl_chip_close_icon_content_description = 0x7f100085 +net.micode.notes:attr/layout_constraintLeft_creator = 0x7f0401e5 +net.micode.notes:id/collapseActionView = 0x7f090077 +net.micode.notes:color/material_on_primary_emphasis_medium = 0x7f060075 +net.micode.notes:color/material_grey_50 = 0x7f06006b +net.micode.notes:dimen/mtrl_low_ripple_focused_alpha = 0x7f07013c +net.micode.notes:dimen/item_touch_helper_swipe_escape_velocity = 0x7f07009c +net.micode.notes:dimen/design_navigation_item_horizontal_padding = 0x7f070079 +net.micode.notes:attr/animationMode = 0x7f04002e +net.micode.notes:drawable/abc_ratingbar_material = 0x7f08003e +net.micode.notes:id/fill = 0x7f0900b1 +net.micode.notes:dimen/mtrl_progress_circular_inset_small = 0x7f070154 +net.micode.notes:string/preferences_menu_change_account = 0x7f1000c2 +net.micode.notes:color/material_deep_teal_500 = 0x7f060068 +net.micode.notes:dimen/mtrl_btn_text_btn_icon_padding = 0x7f0700e6 +net.micode.notes:color/material_blue_grey_900 = 0x7f060064 +net.micode.notes:style/Base.Widget.AppCompat.ProgressBar = 0x7f1100c9 +net.micode.notes:color/light_blue_A400 = 0x7f060062 +net.micode.notes:style/Base.V28.Theme.AppCompat = 0x7f110094 +net.micode.notes:dimen/notification_main_column_padding_top = 0x7f070189 +net.micode.notes:color/light_blue_900 = 0x7f060060 +net.micode.notes:dimen/mtrl_fab_translation_z_pressed = 0x7f070135 +net.micode.notes:plurals/mtrl_badge_content_description = 0x7f0e0000 +net.micode.notes:style/ThemeOverlay.MaterialComponents.Light = 0x7f1101fb +net.micode.notes:color/light_blue_600 = 0x7f06005f +net.micode.notes:id/all = 0x7f09004a +net.micode.notes:attr/collapseIcon = 0x7f0400af +net.micode.notes:color/highlighted_text_material_light = 0x7f06005e +net.micode.notes:attr/tabRippleColor = 0x7f04030d +net.micode.notes:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Title = 0x7f11010e +net.micode.notes:color/material_cursor_color = 0x7f060066 +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Large = 0x7f11003e +net.micode.notes:attr/flow_verticalBias = 0x7f040165 +net.micode.notes:color/error_color_material_dark = 0x7f060059 +net.micode.notes:id/shortcut = 0x7f09018d +net.micode.notes:id/action_container = 0x7f090039 +net.micode.notes:attr/layout_constraintBottom_toTopOf = 0x7f0401d4 +net.micode.notes:style/Base.V21.Theme.MaterialComponents = 0x7f110087 +net.micode.notes:dimen/material_helper_text_font_1_3_padding_top = 0x7f0700b6 +net.micode.notes:dimen/mtrl_card_elevation = 0x7f070119 +net.micode.notes:attr/errorTextAppearance = 0x7f040139 +net.micode.notes:style/CardView = 0x7f1100e6 +net.micode.notes:color/dim_foreground_disabled_material_dark = 0x7f060055 +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f11003d +net.micode.notes:attr/itemSpacing = 0x7f0401b7 +net.micode.notes:color/design_icon_tint = 0x7f060053 +net.micode.notes:attr/buttonBarNegativeButtonStyle = 0x7f04006c +net.micode.notes:id/zero_corner_chip = 0x7f0901fa +net.micode.notes:attr/actionModeFindDrawable = 0x7f040016 +net.micode.notes:color/design_fab_stroke_top_inner_color = 0x7f060051 +net.micode.notes:color/design_fab_stroke_end_outer_color = 0x7f060050 +net.micode.notes:attr/barrierDirection = 0x7f04004c +net.micode.notes:color/design_default_color_secondary_variant = 0x7f060049 +net.micode.notes:dimen/compat_button_inset_horizontal_material = 0x7f070057 +net.micode.notes:attr/state_collapsible = 0x7f0402e0 +net.micode.notes:color/design_default_color_secondary = 0x7f060048 +net.micode.notes:attr/actionTextColorAlpha = 0x7f040022 +net.micode.notes:attr/helperTextEnabled = 0x7f040182 +net.micode.notes:attr/showTitle = 0x7f0402c7 +net.micode.notes:attr/startIconTint = 0x7f0402dc +net.micode.notes:id/fragment_container_view_tag = 0x7f0900bb +net.micode.notes:color/design_default_color_on_error = 0x7f060041 +net.micode.notes:id/accessibility_custom_action_7 = 0x7f09002d +net.micode.notes:color/design_default_color_on_background = 0x7f060040 +net.micode.notes:dimen/mtrl_extended_fab_bottom_padding = 0x7f070121 +net.micode.notes:style/Animation.AppCompat.Tooltip = 0x7f110005 +net.micode.notes:style/Theme.MaterialComponents.Light.Dialog.Alert = 0x7f1101d2 +net.micode.notes:attr/backgroundInsetEnd = 0x7f04003f +net.micode.notes:attr/maxButtonHeight = 0x7f04023b +net.micode.notes:color/design_dark_default_color_secondary_variant = 0x7f06003c +net.micode.notes:dimen/mtrl_progress_circular_size = 0x7f070156 +net.micode.notes:attr/flow_firstHorizontalBias = 0x7f040156 +net.micode.notes:drawable/abc_btn_borderless_material = 0x7f08000d +net.micode.notes:color/design_dark_default_color_primary_dark = 0x7f060039 +net.micode.notes:id/tag_on_apply_window_listener = 0x7f0901b3 +net.micode.notes:attr/showMotionSpec = 0x7f0402c4 +net.micode.notes:attr/paddingBottomSystemWindowInsets = 0x7f040279 +net.micode.notes:color/design_dark_default_color_on_secondary = 0x7f060036 +net.micode.notes:string/material_timepicker_minute = 0x7f100061 +net.micode.notes:attr/subtitleTextAppearance = 0x7f0402ed +net.micode.notes:color/design_dark_default_color_on_primary = 0x7f060035 +net.micode.notes:attr/contrast = 0x7f0400e1 +net.micode.notes:dimen/mtrl_progress_track_thickness = 0x7f07015e +net.micode.notes:color/design_dark_default_color_on_error = 0x7f060034 +net.micode.notes:anim/btn_checkbox_to_checked_box_inner_merged_animation = 0x7f01000c +net.micode.notes:dimen/mtrl_calendar_content_padding = 0x7f0700ef +net.micode.notes:color/material_timepicker_modebutton_tint = 0x7f060084 +net.micode.notes:dimen/mtrl_calendar_action_confirm_button_min_width = 0x7f0700eb +net.micode.notes:dimen/abc_dialog_corner_radius_material = 0x7f07001b +net.micode.notes:dimen/text_font_size_medium = 0x7f07019f +net.micode.notes:color/design_dark_default_color_on_background = 0x7f060033 +net.micode.notes:style/Base.V7.Theme.AppCompat.Light.Dialog = 0x7f110099 +net.micode.notes:attr/customPixelDimension = 0x7f0400ff +net.micode.notes:string/mtrl_picker_date_header_title = 0x7f10008e +net.micode.notes:dimen/test_navigation_bar_active_text_size = 0x7f070195 +net.micode.notes:attr/statusBarScrim = 0x7f0402e6 +net.micode.notes:layout/design_layout_tab_text = 0x7f0c0027 +net.micode.notes:color/design_dark_default_color_background = 0x7f060031 +net.micode.notes:dimen/design_tab_max_width = 0x7f070089 +net.micode.notes:style/Base.Widget.AppCompat.ButtonBar.AlertDialog = 0x7f1100b0 +net.micode.notes:styleable/ActionMenuView = 0x7f120003 +net.micode.notes:color/design_box_stroke_color = 0x7f060030 +net.micode.notes:color/checkbox_themeable_attribute_color = 0x7f06002e +net.micode.notes:dimen/abc_dialog_fixed_width_major = 0x7f07001e +net.micode.notes:dimen/abc_action_bar_subtitle_top_margin_material = 0x7f07000c +net.micode.notes:id/clip_vertical = 0x7f090075 +net.micode.notes:color/button_material_light = 0x7f060029 +net.micode.notes:attr/motionDurationMedium2 = 0x7f040254 +net.micode.notes:color/bright_foreground_material_dark = 0x7f060026 +net.micode.notes:style/Theme.AppCompat.DayNight = 0x7f110194 +net.micode.notes:attr/customColorValue = 0x7f0400fa +net.micode.notes:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Text = 0x7f110113 +net.micode.notes:attr/cardForegroundColor = 0x7f04007b +net.micode.notes:dimen/material_clock_hand_center_dot_radius = 0x7f0700a0 +net.micode.notes:color/bright_foreground_disabled_material_light = 0x7f060023 +net.micode.notes:dimen/material_time_picker_minimum_screen_height = 0x7f0700bd +net.micode.notes:style/TestStyleWithoutLineHeight = 0x7f110134 +net.micode.notes:color/bright_foreground_disabled_material_dark = 0x7f060022 +net.micode.notes:attr/constraint_referenced_tags = 0x7f0400cf +net.micode.notes:dimen/design_fab_translation_z_hovered_focused = 0x7f070074 +net.micode.notes:dimen/design_bottom_navigation_active_item_min_width = 0x7f070061 +net.micode.notes:attr/toolbarStyle = 0x7f040358 +net.micode.notes:dimen/mtrl_calendar_selection_text_baseline_to_bottom = 0x7f07010a +net.micode.notes:color/black_overlay = 0x7f060021 +net.micode.notes:color/background_material_dark = 0x7f06001f +net.micode.notes:color/background_floating_material_light = 0x7f06001e +net.micode.notes:attr/itemStrokeWidth = 0x7f0401b9 +net.micode.notes:dimen/design_bottom_navigation_active_text_size = 0x7f070062 +net.micode.notes:style/Base.Theme.AppCompat.CompactMenu = 0x7f11004a +net.micode.notes:attr/headerLayout = 0x7f04017f +net.micode.notes:color/androidx_core_ripple_material_light = 0x7f06001b +net.micode.notes:color/accent_material_light = 0x7f06001a +net.micode.notes:style/Base.TextAppearance.AppCompat.Subhead.Inverse = 0x7f11002d +net.micode.notes:color/accent_material_dark = 0x7f060019 +net.micode.notes:dimen/material_clock_period_toggle_width = 0x7f0700a6 +net.micode.notes:drawable/btn_radio_on_to_off_mtrl_animation = 0x7f080066 +net.micode.notes:color/abc_tint_switch_track = 0x7f060018 +net.micode.notes:style/Widget.MaterialComponents.BottomSheet = 0x7f11027c +net.micode.notes:layout/design_text_input_end_icon = 0x7f0c002f +net.micode.notes:attr/gestureInsetBottomIgnored = 0x7f04017b +net.micode.notes:attr/tabIndicatorAnimationMode = 0x7f0402ff +net.micode.notes:color/abc_tint_seek_thumb = 0x7f060016 +net.micode.notes:color/abc_tint_edittext = 0x7f060015 +net.micode.notes:color/abc_tint_default = 0x7f060014 +net.micode.notes:color/abc_tint_btn_checkable = 0x7f060013 +net.micode.notes:drawable/notification_bg_low_pressed = 0x7f0800c1 +net.micode.notes:color/bright_foreground_inverse_material_light = 0x7f060025 +net.micode.notes:attr/actionOverflowMenuStyle = 0x7f040020 +net.micode.notes:id/dragEnd = 0x7f090099 +net.micode.notes:dimen/notification_small_icon_background_padding = 0x7f07018d +net.micode.notes:id/account_dialog_subtitle = 0x7f090030 +net.micode.notes:color/abc_search_url_text_pressed = 0x7f06000f +net.micode.notes:layout/test_toolbar_surface = 0x7f0c0079 +net.micode.notes:color/abc_primary_text_material_light = 0x7f06000c +net.micode.notes:drawable/dropdown_icon = 0x7f08006f +net.micode.notes:color/abc_primary_text_material_dark = 0x7f06000b +net.micode.notes:layout/design_navigation_item_header = 0x7f0c002a +net.micode.notes:color/abc_primary_text_disable_only_material_light = 0x7f06000a +net.micode.notes:attr/layout_keyline = 0x7f040202 +net.micode.notes:attr/barrierAllowsGoneWidgets = 0x7f04004b +net.micode.notes:color/abc_primary_text_disable_only_material_dark = 0x7f060009 +net.micode.notes:style/TextAppearance.AppCompat.Title.Inverse = 0x7f110152 +net.micode.notes:drawable/widget_2x_green = 0x7f0800d5 +net.micode.notes:dimen/mtrl_calendar_action_height = 0x7f0700ec +net.micode.notes:dimen/design_fab_size_mini = 0x7f070072 +net.micode.notes:attr/duration = 0x7f040123 +net.micode.notes:style/TextAppearance.AppCompat.Menu = 0x7f11014a +net.micode.notes:drawable/ic_mtrl_chip_close_circle = 0x7f080085 +net.micode.notes:attr/maxImageSize = 0x7f04023e +net.micode.notes:color/abc_decor_view_status_guard = 0x7f060005 +net.micode.notes:styleable/ExtendedFloatingActionButton_Behavior_Layout = 0x7f12002b +net.micode.notes:attr/elevationOverlayEnabled = 0x7f040129 +net.micode.notes:attr/radioButtonStyle = 0x7f0402a1 +net.micode.notes:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year = 0x7f110128 +net.micode.notes:color/abc_background_cache_hint_selector_material_light = 0x7f060001 +net.micode.notes:styleable/NavigationRailView = 0x7f12005f +net.micode.notes:bool/mtrl_btn_textappearance_all_caps = 0x7f050002 +net.micode.notes:attr/yearSelectedStyle = 0x7f040389 +net.micode.notes:id/material_clock_period_pm_button = 0x7f0900fc +net.micode.notes:attr/textAppearanceSubtitle2 = 0x7f04032d +net.micode.notes:attr/textColorSearchUrl = 0x7f04032f +net.micode.notes:attr/windowNoTitle = 0x7f040388 +net.micode.notes:style/Test.Widget.MaterialComponents.MaterialCalendar.Day = 0x7f11012f +net.micode.notes:attr/layout_constraintCircleRadius = 0x7f0401d7 +net.micode.notes:color/button_material_dark = 0x7f060028 +net.micode.notes:id/spread_inside = 0x7f09019d +net.micode.notes:id/action_bar_root = 0x7f090035 +net.micode.notes:attr/windowMinWidthMajor = 0x7f040386 +net.micode.notes:style/Base.V21.Theme.AppCompat = 0x7f110083 +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f110041 +net.micode.notes:attr/windowFixedHeightMajor = 0x7f040382 +net.micode.notes:attr/windowActionModeOverlay = 0x7f040381 +net.micode.notes:id/search_mag_icon = 0x7f090185 +net.micode.notes:attr/flow_horizontalStyle = 0x7f04015d +net.micode.notes:attr/flow_horizontalGap = 0x7f04015c +net.micode.notes:attr/waveVariesBy = 0x7f04037e +net.micode.notes:attr/wavePeriod = 0x7f04037c +net.micode.notes:attr/transitionDisable = 0x7f040369 +net.micode.notes:attr/waveDecay = 0x7f04037a +net.micode.notes:attr/voiceIcon = 0x7f040378 +net.micode.notes:style/Widget.AppCompat.SeekBar.Discrete = 0x7f110252 +net.micode.notes:style/Widget.AppCompat.ActionBar.TabView = 0x7f110216 +net.micode.notes:style/MaterialAlertDialog.MaterialComponents.Body.Text = 0x7f1100ed +net.micode.notes:style/Widget.MaterialComponents.NavigationRailView = 0x7f1102b5 +net.micode.notes:attr/backgroundInsetBottom = 0x7f04003e +net.micode.notes:attr/visibilityMode = 0x7f040377 +net.micode.notes:color/material_on_background_emphasis_high_type = 0x7f060071 +net.micode.notes:attr/listDividerAlertDialog = 0x7f04020f +net.micode.notes:attr/viewInflaterClass = 0x7f040376 +net.micode.notes:attr/verticalOffset = 0x7f040375 +net.micode.notes:style/TextAppearance.AppCompat.Widget.Switch = 0x7f110165 +net.micode.notes:attr/colorSecondary = 0x7f0400c6 +net.micode.notes:color/mtrl_on_surface_ripple_color = 0x7f0600a8 +net.micode.notes:attr/useMaterialThemeColors = 0x7f040373 +net.micode.notes:string/character_counter_content_description = 0x7f100028 +net.micode.notes:attr/colorError = 0x7f0400bb +net.micode.notes:styleable/MaterialTimePicker = 0x7f120053 +net.micode.notes:attr/actionMenuTextAppearance = 0x7f04000e +net.micode.notes:attr/materialAlertDialogBodyTextStyle = 0x7f04021d +net.micode.notes:attr/labelBehavior = 0x7f0401c1 +net.micode.notes:attr/trackColor = 0x7f040361 +net.micode.notes:attr/ttcIndex = 0x7f040371 +net.micode.notes:attr/transitionFlags = 0x7f04036b +net.micode.notes:attr/transitionEasing = 0x7f04036a +net.micode.notes:id/wrap = 0x7f0901f8 +net.micode.notes:attr/trackCornerRadius = 0x7f040364 +net.micode.notes:attr/track = 0x7f040360 +net.micode.notes:style/Widget.MaterialComponents.BottomAppBar.PrimarySurface = 0x7f110278 +net.micode.notes:attr/listLayout = 0x7f040211 +net.micode.notes:id/staticLayout = 0x7f0901a7 +net.micode.notes:attr/title = 0x7f040349 +net.micode.notes:id/start = 0x7f0901a3 +net.micode.notes:dimen/mtrl_bottomappbar_fab_bottom_margin = 0x7f0700ce +net.micode.notes:id/material_clock_display = 0x7f0900f8 +net.micode.notes:attr/layout_optimizationLevel = 0x7f040203 +net.micode.notes:color/material_grey_300 = 0x7f06006a +net.micode.notes:dimen/mtrl_textinput_counter_margin_start = 0x7f070178 +net.micode.notes:attr/touchAnchorId = 0x7f04035d +net.micode.notes:attr/tooltipText = 0x7f04035c +net.micode.notes:id/right = 0x7f09016f +net.micode.notes:animator/linear_indeterminate_line1_tail_interpolator = 0x7f02000a +net.micode.notes:attr/subtitleTextColor = 0x7f0402ee +net.micode.notes:dimen/mtrl_extended_fab_top_padding = 0x7f07012e +net.micode.notes:style/Base.Theme.MaterialComponents.Light.Dialog.FixedSize = 0x7f110067 +net.micode.notes:id/iv_medium_select = 0x7f0900e5 +net.micode.notes:attr/enforceTextAppearance = 0x7f040132 +net.micode.notes:attr/height = 0x7f040180 +net.micode.notes:attr/tooltipStyle = 0x7f04035b +net.micode.notes:attr/toolbarId = 0x7f040356 +net.micode.notes:attr/actionDropDownStyle = 0x7f04000c +net.micode.notes:attr/titleTextStyle = 0x7f040355 +net.micode.notes:id/material_timepicker_view = 0x7f090109 +net.micode.notes:attr/titleMarginStart = 0x7f040350 +net.micode.notes:attr/titleMarginBottom = 0x7f04034e +net.micode.notes:interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 0x7f0b0002 +net.micode.notes:id/circle_center = 0x7f090072 +net.micode.notes:attr/titleEnabled = 0x7f04034c +net.micode.notes:style/Theme.MaterialComponents.Dialog.MinWidth.Bridge = 0x7f1101c9 +net.micode.notes:attr/tabPadding = 0x7f040308 +net.micode.notes:attr/titleCollapseMode = 0x7f04034b +net.micode.notes:attr/tickVisible = 0x7f040346 +net.micode.notes:id/scrollIndicatorDown = 0x7f09017b +net.micode.notes:attr/background = 0x7f04003c +net.micode.notes:id/standard = 0x7f0901a2 +net.micode.notes:attr/tickMarkTintMode = 0x7f040345 +net.micode.notes:style/Base.Widget.AppCompat.Light.ActionBar.Solid = 0x7f1100ba +net.micode.notes:attr/tickMark = 0x7f040343 +net.micode.notes:style/Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f1100bd +net.micode.notes:attr/subtitle = 0x7f0402eb +net.micode.notes:attr/thumbTint = 0x7f04033e +net.micode.notes:dimen/mtrl_btn_padding_right = 0x7f0700e1 +net.micode.notes:attr/thumbTextPadding = 0x7f04033d +net.micode.notes:drawable/abc_cab_background_top_material = 0x7f08001b +net.micode.notes:attr/thumbRadius = 0x7f04033a +net.micode.notes:attr/thickness = 0x7f040337 +net.micode.notes:dimen/mtrl_calendar_title_baseline_to_top_fullscreen = 0x7f07010f +net.micode.notes:string/mtrl_exceed_max_badge_number_content_description = 0x7f100086 +net.micode.notes:attr/materialAlertDialogTitleIconStyle = 0x7f04021f +net.micode.notes:id/tag_unhandled_key_event_manager = 0x7f0901b9 +net.micode.notes:attr/textStartPadding = 0x7f040334 +net.micode.notes:color/secondary_text_disabled_material_dark = 0x7f0600c9 +net.micode.notes:style/Base.Widget.AppCompat.TextView.SpinnerItem = 0x7f1100d5 +net.micode.notes:attr/textInputLayoutFocusedRectEnabled = 0x7f040331 +net.micode.notes:attr/panelBackground = 0x7f040280 +net.micode.notes:dimen/abc_list_item_height_material = 0x7f070031 +net.micode.notes:dimen/mtrl_card_dragged_z = 0x7f070118 +net.micode.notes:dimen/design_bottom_navigation_label_padding = 0x7f070068 +net.micode.notes:style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f110155 +net.micode.notes:attr/textAppearanceOverline = 0x7f040327 +net.micode.notes:dimen/material_textinput_min_width = 0x7f0700bc +net.micode.notes:attr/textAppearanceListItemSmall = 0x7f040326 +net.micode.notes:attr/layout_scrollInterpolator = 0x7f040205 +net.micode.notes:dimen/mtrl_calendar_header_height_fullscreen = 0x7f0700fc +net.micode.notes:attr/textAppearanceListItem = 0x7f040324 +net.micode.notes:attr/altSrc = 0x7f04002c +net.micode.notes:attr/materialCalendarStyle = 0x7f040230 +net.micode.notes:attr/textAppearanceLineHeightEnabled = 0x7f040323 +net.micode.notes:string/button_send = 0x7f100026 +net.micode.notes:attr/badgeGravity = 0x7f040047 +net.micode.notes:style/Widget.MaterialComponents.Chip.Entry = 0x7f11028e +net.micode.notes:attr/windowFixedHeightMinor = 0x7f040383 +net.micode.notes:string/mtrl_picker_text_input_day_abbr = 0x7f1000a0 +net.micode.notes:attr/textAppearanceHeadline6 = 0x7f040321 +net.micode.notes:attr/constraintSet = 0x7f0400cb +net.micode.notes:attr/textAppearanceHeadline1 = 0x7f04031c +net.micode.notes:string/file_path = 0x7f100041 +net.micode.notes:animator/design_appbar_state_list_animator = 0x7f020000 +net.micode.notes:layout/abc_action_mode_bar = 0x7f0c0004 +net.micode.notes:attr/textAppearanceButton = 0x7f04031a +net.micode.notes:attr/textAppearanceBody1 = 0x7f040318 +net.micode.notes:drawable/btn_checkbox_unchecked_mtrl = 0x7f080061 +net.micode.notes:dimen/design_navigation_separator_vertical_padding = 0x7f07007d +net.micode.notes:dimen/abc_text_size_button_material = 0x7f070041 +net.micode.notes:attr/textAllCaps = 0x7f040317 +net.micode.notes:attr/haloColor = 0x7f04017d +net.micode.notes:id/test_radiobutton_app_button_tint = 0x7f0901bf +net.micode.notes:style/Widget.MaterialComponents.CheckedTextView = 0x7f11028b +net.micode.notes:color/design_dark_default_color_error = 0x7f060032 +net.micode.notes:attr/telltales_tailScale = 0x7f040315 +net.micode.notes:attr/tabPaddingStart = 0x7f04030b +net.micode.notes:attr/tabPaddingEnd = 0x7f04030a +net.micode.notes:attr/mock_labelBackgroundColor = 0x7f04024c +net.micode.notes:color/design_dark_default_color_secondary = 0x7f06003b +net.micode.notes:attr/tabMode = 0x7f040307 +net.micode.notes:string/abc_menu_space_shortcut_label = 0x7f10000f +net.micode.notes:attr/contentPaddingTop = 0x7f0400df +net.micode.notes:dimen/abc_dropdownitem_icon_width = 0x7f070029 +net.micode.notes:dimen/clock_face_margin_start = 0x7f070056 +net.micode.notes:color/mtrl_btn_stroke_color_selector = 0x7f060087 +net.micode.notes:attr/layout_editor_absoluteX = 0x7f0401f9 +net.micode.notes:attr/tabIndicator = 0x7f0402fd +net.micode.notes:attr/tabIconTint = 0x7f0402fb +net.micode.notes:attr/tabGravity = 0x7f0402fa +net.micode.notes:id/material_textinput_timepicker = 0x7f090103 +net.micode.notes:id/cb_edit_item = 0x7f090064 +net.micode.notes:animator/fragment_fade_enter = 0x7f020005 +net.micode.notes:id/menu_new_folder = 0x7f090112 +net.micode.notes:attr/materialButtonStyle = 0x7f040223 +net.micode.notes:style/Widget.Design.NavigationView = 0x7f110264 +net.micode.notes:dimen/mtrl_progress_circular_size_medium = 0x7f070158 +net.micode.notes:attr/hintTextColor = 0x7f04018c +net.micode.notes:attr/chipBackgroundColor = 0x7f04008b +net.micode.notes:dimen/mtrl_high_ripple_default_alpha = 0x7f070136 +net.micode.notes:style/Base.V26.Theme.AppCompat = 0x7f110091 +net.micode.notes:dimen/material_font_2_0_box_collapsed_padding_top = 0x7f0700b3 +net.micode.notes:attr/autoSizeMinTextSize = 0x7f040037 +net.micode.notes:attr/materialCalendarTheme = 0x7f040231 +net.micode.notes:attr/onTouchUp = 0x7f040275 +net.micode.notes:attr/suggestionRowLayout = 0x7f0402f3 +net.micode.notes:attr/suffixText = 0x7f0402f0 +net.micode.notes:dimen/notification_media_narrow_margin = 0x7f07018a +net.micode.notes:attr/subMenuArrow = 0x7f0402e9 +net.micode.notes:dimen/mtrl_progress_circular_track_thickness_extra_small = 0x7f07015a +net.micode.notes:drawable/widget_2x_white = 0x7f0800d7 +net.micode.notes:attr/strokeWidth = 0x7f0402e8 +net.micode.notes:dimen/material_clock_number_text_size = 0x7f0700a3 +net.micode.notes:dimen/abc_text_size_display_2_material = 0x7f070044 +net.micode.notes:color/secondary_text_default_material_dark = 0x7f0600c7 +net.micode.notes:attr/backgroundStacked = 0x7f040044 +net.micode.notes:attr/cardViewStyle = 0x7f04007f +net.micode.notes:attr/statusBarForeground = 0x7f0402e5 +net.micode.notes:dimen/mtrl_navigation_rail_elevation = 0x7f07014b +net.micode.notes:style/Base.V7.Widget.AppCompat.Toolbar = 0x7f11009d +net.micode.notes:layout/abc_action_bar_up_container = 0x7f0c0001 +net.micode.notes:attr/statusBarBackground = 0x7f0402e4 +net.micode.notes:style/Theme.MaterialComponents.DayNight.NoActionBar.Bridge = 0x7f1101c1 +net.micode.notes:id/chip2 = 0x7f09006e +net.micode.notes:anim/btn_radio_to_off_mtrl_ring_outer_path_animation = 0x7f010014 +net.micode.notes:attr/dividerVertical = 0x7f040112 +net.micode.notes:attr/curveFit = 0x7f0400f7 +net.micode.notes:attr/layout_constraintTag = 0x7f0401ed +net.micode.notes:style/Base.ThemeOverlay.AppCompat.Light = 0x7f110070 +net.micode.notes:drawable/list_green_down = 0x7f08008e +net.micode.notes:id/cancel_button = 0x7f090063 +net.micode.notes:animator/linear_indeterminate_line2_head_interpolator = 0x7f02000b +net.micode.notes:string/mtrl_picker_a11y_next_month = 0x7f100088 +net.micode.notes:attr/placeholderTextColor = 0x7f040292 +net.micode.notes:attr/layout_goneMarginTop = 0x7f040200 +net.micode.notes:id/ALT = 0x7f090000 +net.micode.notes:attr/startIconContentDescription = 0x7f0402da +net.micode.notes:dimen/abc_text_size_display_4_material = 0x7f070046 +net.micode.notes:attr/startIconCheckable = 0x7f0402d9 +net.micode.notes:style/ShapeAppearanceOverlay.MaterialComponents.BottomSheet = 0x7f110122 +net.micode.notes:id/elastic = 0x7f0900a5 +net.micode.notes:attr/errorContentDescription = 0x7f040134 +net.micode.notes:string/mtrl_picker_announce_current_selection = 0x7f10008a +net.micode.notes:dimen/mtrl_calendar_header_toggle_margin_bottom = 0x7f0700ff +net.micode.notes:attr/boxCornerRadiusTopEnd = 0x7f040064 +net.micode.notes:attr/spinnerStyle = 0x7f0402d4 +net.micode.notes:style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense = 0x7f110208 +net.micode.notes:attr/paddingStart = 0x7f04027d +net.micode.notes:styleable/KeyFramesAcceleration = 0x7f12003c +net.micode.notes:id/menu_secret = 0x7f090116 +net.micode.notes:animator/mtrl_fab_transformation_sheet_collapse_spec = 0x7f020018 +net.micode.notes:animator/fragment_fade_exit = 0x7f020006 +net.micode.notes:attr/snackbarButtonStyle = 0x7f0402ce +net.micode.notes:drawable/mtrl_ic_cancel = 0x7f0800b0 +net.micode.notes:dimen/material_clock_hand_stroke_width = 0x7f0700a2 +net.micode.notes:attr/editTextColor = 0x7f040125 +net.micode.notes:style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu = 0x7f1102ce +net.micode.notes:color/abc_background_cache_hint_selector_material_dark = 0x7f060000 +net.micode.notes:attr/materialCalendarHeaderConfirmButton = 0x7f040228 +net.micode.notes:attr/singleLine = 0x7f0402ca +net.micode.notes:anim/abc_fade_in = 0x7f010000 +net.micode.notes:id/notification_main_column = 0x7f090152 +net.micode.notes:attr/hideMotionSpec = 0x7f040186 +net.micode.notes:dimen/mtrl_calendar_day_width = 0x7f0700f5 +net.micode.notes:attr/colorOnPrimarySurface = 0x7f0400bf +net.micode.notes:attr/colorSecondaryVariant = 0x7f0400c7 +net.micode.notes:attr/checkedChip = 0x7f040083 +net.micode.notes:style/Platform.V21.AppCompat = 0x7f110101 +net.micode.notes:attr/autoCompleteTextViewStyle = 0x7f040035 +net.micode.notes:attr/flow_lastVerticalBias = 0x7f040160 +net.micode.notes:attr/showAnimationBehavior = 0x7f0402c0 +net.micode.notes:id/parentRelative = 0x7f09015d +net.micode.notes:id/minute = 0x7f090120 +net.micode.notes:attr/popupMenuBackground = 0x7f040294 +net.micode.notes:color/mtrl_navigation_item_text_color = 0x7f0600a6 +net.micode.notes:dimen/hint_alpha_material_dark = 0x7f070096 +net.micode.notes:attr/tooltipForegroundColor = 0x7f040359 +net.micode.notes:attr/shapeAppearanceSmallComponent = 0x7f0402bf +net.micode.notes:attr/drawableBottomCompat = 0x7f040117 +net.micode.notes:attr/dividerPadding = 0x7f040111 +net.micode.notes:attr/boxCornerRadiusBottomEnd = 0x7f040062 +net.micode.notes:attr/shapeAppearanceOverlay = 0x7f0402be +net.micode.notes:dimen/mtrl_snackbar_background_corner_radius = 0x7f07016d +net.micode.notes:attr/shapeAppearanceMediumComponent = 0x7f0402bd +net.micode.notes:id/center_vertical = 0x7f090067 +net.micode.notes:attr/prefixTextColor = 0x7f04029a +net.micode.notes:string/widget_under_visit_mode = 0x7f1000dc +net.micode.notes:attr/chipStrokeWidth = 0x7f04009c +net.micode.notes:attr/shapeAppearanceLargeComponent = 0x7f0402bc +net.micode.notes:color/abc_tint_spinner = 0x7f060017 +net.micode.notes:attr/selectorSize = 0x7f0402ba +net.micode.notes:dimen/mtrl_high_ripple_pressed_alpha = 0x7f070139 +net.micode.notes:attr/applyMotionScene = 0x7f040030 +net.micode.notes:attr/itemShapeInsetEnd = 0x7f0401b4 +net.micode.notes:attr/collapsedSize = 0x7f0400b0 +net.micode.notes:attr/materialCalendarFullscreenTheme = 0x7f040226 +net.micode.notes:attr/passwordToggleDrawable = 0x7f040284 +net.micode.notes:attr/layoutDuringTransition = 0x7f0401c7 +net.micode.notes:attr/selectionRequired = 0x7f0402b9 +net.micode.notes:attr/selectableItemBackgroundBorderless = 0x7f0402b8 +net.micode.notes:attr/selectableItemBackground = 0x7f0402b7 +net.micode.notes:color/mtrl_filled_icon_tint = 0x7f06009d +net.micode.notes:dimen/design_textinput_caption_translate_y = 0x7f07008d +net.micode.notes:dimen/design_fab_translation_z_pressed = 0x7f070075 +net.micode.notes:id/reverseSawtooth = 0x7f09016e +net.micode.notes:drawable/widget_4x_white = 0x7f0800dc +net.micode.notes:attr/logo = 0x7f04021b +net.micode.notes:attr/ratingBarStyleIndicator = 0x7f0402a4 +net.micode.notes:attr/flow_horizontalBias = 0x7f04015b +net.micode.notes:string/mtrl_picker_invalid_format_example = 0x7f100092 +net.micode.notes:attr/queryBackground = 0x7f04029f +net.micode.notes:attr/closeItemLayout = 0x7f0400ad +net.micode.notes:attr/pressedTranslationZ = 0x7f04029c +net.micode.notes:color/mtrl_fab_icon_text_color_selector = 0x7f06009a +net.micode.notes:attr/checkedIcon = 0x7f040084 +net.micode.notes:attr/clockHandColor = 0x7f0400a3 +net.micode.notes:layout/design_navigation_item_separator = 0x7f0c002b +net.micode.notes:attr/materialButtonToggleGroupStyle = 0x7f040224 +net.micode.notes:attr/foregroundInsidePadding = 0x7f040176 +net.micode.notes:attr/prefixTextAppearance = 0x7f040299 +net.micode.notes:attr/showText = 0x7f0402c6 +net.micode.notes:attr/popupWindowStyle = 0x7f040297 +net.micode.notes:attr/layout_constraintHorizontal_weight = 0x7f0401e4 +net.micode.notes:attr/motionProgress = 0x7f04025f +net.micode.notes:attr/nestedScrollFlags = 0x7f04026c +net.micode.notes:attr/triggerSlack = 0x7f040370 +net.micode.notes:dimen/material_input_text_to_prefix_suffix_padding = 0x7f0700b7 +net.micode.notes:attr/ratingBarStyle = 0x7f0402a3 +net.micode.notes:styleable/LinearLayoutCompat = 0x7f120042 +net.micode.notes:attr/customBoolean = 0x7f0400f8 +net.micode.notes:id/noScroll = 0x7f090148 +net.micode.notes:id/design_bottom_sheet = 0x7f09008c +net.micode.notes:drawable/abc_spinner_textfield_background_material = 0x7f080049 +net.micode.notes:attr/motion_triggerOnCollision = 0x7f040263 +net.micode.notes:attr/perpendicularPath_percent = 0x7f04028e +net.micode.notes:attr/percentWidth = 0x7f04028b +net.micode.notes:color/material_slider_thumb_color = 0x7f06007f +net.micode.notes:attr/closeIconEndPadding = 0x7f0400a8 +net.micode.notes:attr/passwordToggleTintMode = 0x7f040287 +net.micode.notes:id/search_go_btn = 0x7f090184 +net.micode.notes:styleable/NavigationBarView = 0x7f12005e +net.micode.notes:attr/colorSurface = 0x7f0400c8 +net.micode.notes:color/primary_dark_material_light = 0x7f0600bb +net.micode.notes:attr/endIconCheckable = 0x7f04012b +net.micode.notes:dimen/material_emphasis_disabled = 0x7f0700ab +net.micode.notes:attr/bottomNavigationStyle = 0x7f04005c +net.micode.notes:style/Base.TextAppearance.AppCompat.Display1 = 0x7f11001a +net.micode.notes:dimen/abc_text_size_menu_header_material = 0x7f07004a +net.micode.notes:drawable/font_normal = 0x7f08007b +net.micode.notes:attr/passwordToggleTint = 0x7f040286 +net.micode.notes:id/auto = 0x7f090052 +net.micode.notes:attr/errorTextColor = 0x7f04013a +net.micode.notes:attr/passwordToggleEnabled = 0x7f040285 +net.micode.notes:attr/actionBarTabBarStyle = 0x7f040006 +net.micode.notes:attr/passwordToggleContentDescription = 0x7f040283 +net.micode.notes:attr/textLocale = 0x7f040333 +net.micode.notes:string/material_timepicker_pm = 0x7f100062 +net.micode.notes:style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f110156 +net.micode.notes:style/TextAppearance.AppCompat = 0x7f110137 +net.micode.notes:attr/cornerFamilyBottomRight = 0x7f0400e6 +net.micode.notes:string/preferences_dialog_change_account_warn_msg = 0x7f1000bc +net.micode.notes:attr/itemTextColor = 0x7f0401bd +net.micode.notes:attr/textAppearancePopupMenuHeader = 0x7f040328 +net.micode.notes:styleable/ListPopupWindow = 0x7f120045 +net.micode.notes:attr/flow_verticalAlign = 0x7f040164 +net.micode.notes:dimen/design_navigation_padding_bottom = 0x7f07007c +net.micode.notes:attr/buttonTintMode = 0x7f040077 +net.micode.notes:attr/onPositiveCross = 0x7f040273 +net.micode.notes:attr/itemShapeInsetStart = 0x7f0401b5 +net.micode.notes:attr/onNegativeCross = 0x7f040272 +net.micode.notes:attr/textAppearanceListItemSecondary = 0x7f040325 +net.micode.notes:id/left = 0x7f0900ec +net.micode.notes:dimen/mtrl_card_corner_radius = 0x7f070117 +net.micode.notes:attr/placeholder_emptyVisibility = 0x7f040293 +net.micode.notes:attr/alertDialogButtonGroupStyle = 0x7f040025 +net.micode.notes:dimen/abc_action_bar_default_padding_start_material = 0x7f070004 +net.micode.notes:attr/number = 0x7f04026e +net.micode.notes:attr/currentState = 0x7f0400f6 +net.micode.notes:attr/keylines = 0x7f0401c0 +net.micode.notes:attr/progressBarPadding = 0x7f04029d +net.micode.notes:color/design_default_color_on_secondary = 0x7f060043 +net.micode.notes:style/Widget.MaterialComponents.FloatingActionButton = 0x7f11029b +net.micode.notes:attr/navigationContentDescription = 0x7f040266 +net.micode.notes:dimen/mtrl_fab_elevation = 0x7f070132 +net.micode.notes:color/material_on_primary_disabled = 0x7f060073 +net.micode.notes:attr/multiChoiceItemLayout = 0x7f040265 +net.micode.notes:styleable/CircularProgressIndicator = 0x7f12001b +net.micode.notes:color/mtrl_btn_ripple_color = 0x7f060086 +net.micode.notes:color/material_timepicker_button_background = 0x7f060080 +net.micode.notes:dimen/design_tab_text_size_2line = 0x7f07008c +net.micode.notes:attr/motion_postLayoutCollision = 0x7f040262 +net.micode.notes:dimen/mtrl_btn_inset = 0x7f0700dc +net.micode.notes:string/forbidden_change_trash_name = 0x7f100044 +net.micode.notes:attr/clickAction = 0x7f0400a1 +net.micode.notes:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f1101fd +net.micode.notes:dimen/mtrl_calendar_pre_l_text_clip_padding = 0x7f070108 +net.micode.notes:attr/roundPercent = 0x7f0402ae +net.micode.notes:color/radiobutton_themeable_attribute_color = 0x7f0600c3 +net.micode.notes:attr/motionPathRotate = 0x7f04025e +net.micode.notes:dimen/hint_alpha_material_light = 0x7f070097 +net.micode.notes:attr/actionBarDivider = 0x7f040000 +net.micode.notes:string/forbidden_move_to_trash = 0x7f100046 +net.micode.notes:attr/hoveredFocusedTranslationZ = 0x7f040190 +net.micode.notes:styleable/ActivityChooserView = 0x7f120005 +net.micode.notes:attr/motionPath = 0x7f04025d +net.micode.notes:color/secondary_text_default_material_light = 0x7f0600c8 +net.micode.notes:attr/flow_firstHorizontalStyle = 0x7f040157 +net.micode.notes:id/accessibility_custom_action_5 = 0x7f09002b +net.micode.notes:attr/motionEasingStandard = 0x7f04025b +net.micode.notes:id/progress_horizontal = 0x7f09016a +net.micode.notes:attr/motionEasingLinear = 0x7f04025a +net.micode.notes:drawable/abc_ratingbar_indicator_material = 0x7f08003d +net.micode.notes:dimen/abc_list_item_padding_horizontal_material = 0x7f070033 +net.micode.notes:dimen/mtrl_textinput_box_stroke_width_default = 0x7f070176 +net.micode.notes:attr/errorIconDrawable = 0x7f040136 +net.micode.notes:attr/layout_behavior = 0x7f0401cb +net.micode.notes:attr/layoutDescription = 0x7f0401c6 +net.micode.notes:dimen/mtrl_textinput_box_label_cutout_padding = 0x7f070175 +net.micode.notes:attr/logoDescription = 0x7f04021c +net.micode.notes:attr/closeIconTint = 0x7f0400ab +net.micode.notes:attr/actionBarSplitStyle = 0x7f040004 +net.micode.notes:id/submenuarrow = 0x7f0901ab +net.micode.notes:attr/endIconContentDescription = 0x7f04012c +net.micode.notes:attr/sliderStyle = 0x7f0402cd +net.micode.notes:string/path_password_eye_mask_strike_through = 0x7f1000b2 +net.micode.notes:integer/mtrl_badge_max_character_count = 0x7f0a0010 +net.micode.notes:attr/motionDurationLong2 = 0x7f040252 +net.micode.notes:attr/progressBarStyle = 0x7f04029e +net.micode.notes:attr/layout_constraintWidth_min = 0x7f0401f6 +net.micode.notes:attr/mock_showLabel = 0x7f04024f +net.micode.notes:color/design_bottom_navigation_shadow_color = 0x7f06002f +net.micode.notes:dimen/disabled_alpha_material_dark = 0x7f07008e +net.micode.notes:style/Theme.MaterialComponents.Dialog.Bridge = 0x7f1101c5 +net.micode.notes:attr/colorControlNormal = 0x7f0400ba +net.micode.notes:attr/minWidth = 0x7f040249 +net.micode.notes:dimen/hint_pressed_alpha_material_light = 0x7f070099 +net.micode.notes:attr/touchRegionId = 0x7f04035f +net.micode.notes:id/material_minute_text_input = 0x7f090101 +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.Fullscreen = 0x7f1102a5 +net.micode.notes:attr/minHideDelay = 0x7f040246 +net.micode.notes:attr/content = 0x7f0400d1 +net.micode.notes:attr/maxLines = 0x7f04023f +net.micode.notes:style/Platform.MaterialComponents = 0x7f1100fa +net.micode.notes:attr/subtitleCentered = 0x7f0402ec +net.micode.notes:drawable/material_ic_calendar_black_24dp = 0x7f0800a1 +net.micode.notes:color/abc_search_url_text_normal = 0x7f06000e +net.micode.notes:attr/titleTextColor = 0x7f040354 +net.micode.notes:style/Base.Theme.MaterialComponents.Bridge = 0x7f110058 +net.micode.notes:anim/abc_slide_in_top = 0x7f010007 +net.micode.notes:id/titleDividerNoCustom = 0x7f0901d2 +net.micode.notes:dimen/abc_action_bar_overflow_padding_start_material = 0x7f070008 +net.micode.notes:attr/itemIconTint = 0x7f0401ac +net.micode.notes:attr/hintEnabled = 0x7f04018a +net.micode.notes:style/Widget.MaterialComponents.TextInputEditText.FilledBox = 0x7f1102c8 +net.micode.notes:attr/singleChoiceItemLayout = 0x7f0402c9 +net.micode.notes:string/mtrl_picker_text_input_date_range_start_hint = 0x7f10009f +net.micode.notes:attr/maxHeight = 0x7f04023d +net.micode.notes:attr/hideOnContentScroll = 0x7f040187 +net.micode.notes:attr/trackColorActive = 0x7f040362 +net.micode.notes:dimen/mtrl_textinput_start_icon_margin_end = 0x7f07017b +net.micode.notes:styleable/ViewBackgroundHelper = 0x7f120085 +net.micode.notes:attr/layout_constraintVertical_chainStyle = 0x7f0401f2 +net.micode.notes:style/Widget.MaterialComponents.TimePicker.Display.TextInputEditText = 0x7f1102d9 +net.micode.notes:attr/materialTimePickerTheme = 0x7f040238 +net.micode.notes:attr/warmth = 0x7f040379 +net.micode.notes:attr/materialCircleRadius = 0x7f040234 +net.micode.notes:styleable/ConstraintSet = 0x7f120025 +net.micode.notes:attr/materialCalendarYearNavigationButton = 0x7f040232 +net.micode.notes:attr/layout_constraintHeight_default = 0x7f0401de +net.micode.notes:id/scale = 0x7f090178 +net.micode.notes:attr/maxActionInlineWidth = 0x7f04023a +net.micode.notes:style/TextAppearance.MaterialComponents.Headline5 = 0x7f110181 +net.micode.notes:drawable/abc_text_select_handle_right_mtrl = 0x7f080053 +net.micode.notes:attr/tabTextAppearance = 0x7f040310 +net.micode.notes:style/ThemeOverlay.MaterialComponents.MaterialCalendar = 0x7f110204 +net.micode.notes:style/Base.Widget.MaterialComponents.PopupMenu.ContextMenu = 0x7f1100de +net.micode.notes:attr/materialCalendarHeaderTitle = 0x7f04022c +net.micode.notes:id/center = 0x7f090065 +net.micode.notes:id/accessibility_custom_action_16 = 0x7f090018 +net.micode.notes:dimen/mtrl_high_ripple_focused_alpha = 0x7f070137 +net.micode.notes:attr/materialCalendarHeaderCancelButton = 0x7f040227 +net.micode.notes:attr/spanCount = 0x7f0402d1 +net.micode.notes:style/Base.V21.ThemeOverlay.AppCompat.Dialog = 0x7f11008b +net.micode.notes:attr/fullscreenTextColor = 0x7f040179 +net.micode.notes:string/menu_export_text = 0x7f100069 +net.micode.notes:attr/thumbElevation = 0x7f040339 +net.micode.notes:color/design_fab_shadow_start_color = 0x7f06004e +net.micode.notes:attr/materialCalendarDay = 0x7f040225 +net.micode.notes:attr/tooltipFrameBackground = 0x7f04035a +net.micode.notes:attr/itemIconSize = 0x7f0401ab +net.micode.notes:dimen/abc_action_bar_icon_vertical_padding_material = 0x7f070006 +net.micode.notes:attr/windowFixedWidthMinor = 0x7f040385 +net.micode.notes:attr/listPreferredItemPaddingEnd = 0x7f040217 +net.micode.notes:attr/state_collapsed = 0x7f0402df +net.micode.notes:attr/state_dragged = 0x7f0402e1 +net.micode.notes:attr/listPreferredItemHeightSmall = 0x7f040216 +net.micode.notes:attr/behavior_skipCollapsed = 0x7f040058 +net.micode.notes:attr/listPreferredItemHeightLarge = 0x7f040215 +net.micode.notes:attr/tabInlineLabel = 0x7f040304 +net.micode.notes:attr/motionTarget = 0x7f040261 +net.micode.notes:attr/listChoiceIndicatorMultipleAnimated = 0x7f04020d +net.micode.notes:dimen/abc_action_bar_subtitle_bottom_margin_material = 0x7f07000b +net.micode.notes:attr/buttonBarNeutralButtonStyle = 0x7f04006d +net.micode.notes:attr/actionModeSplitBackground = 0x7f04001b +net.micode.notes:attr/lineSpacing = 0x7f04020a +net.micode.notes:color/test_mtrl_calendar_day_selected = 0x7f0600d2 +net.micode.notes:string/ticker_success = 0x7f1000d5 +net.micode.notes:string/material_timepicker_text_input_mode_description = 0x7f100064 +net.micode.notes:id/center_horizontal = 0x7f090066 +net.micode.notes:attr/region_heightLessThan = 0x7f0402a7 +net.micode.notes:dimen/mtrl_navigation_item_shape_vertical_margin = 0x7f070147 +net.micode.notes:style/Base.Widget.AppCompat.Button.Small = 0x7f1100ae +net.micode.notes:attr/showAsAction = 0x7f0402c1 +net.micode.notes:style/Widget.AppCompat.ListMenuView = 0x7f110242 +net.micode.notes:style/Widget.AppCompat.EditText = 0x7f11022a +net.micode.notes:attr/layout_insetEdge = 0x7f040201 +net.micode.notes:dimen/mtrl_snackbar_margin = 0x7f07016f +net.micode.notes:dimen/abc_action_bar_content_inset_with_nav = 0x7f070001 +net.micode.notes:color/design_default_color_surface = 0x7f06004a +net.micode.notes:layout/note_edit = 0x7f0c005f +net.micode.notes:string/preferences_menu_remove_account = 0x7f1000c3 +net.micode.notes:attr/percentX = 0x7f04028c +net.micode.notes:attr/checkboxStyle = 0x7f040081 +net.micode.notes:attr/colorAccent = 0x7f0400b5 +net.micode.notes:color/switch_thumb_normal_material_dark = 0x7f0600cf +net.micode.notes:attr/layout_constraintVertical_weight = 0x7f0401f3 +net.micode.notes:attr/layout_constraintVertical_bias = 0x7f0401f1 +net.micode.notes:attr/layout_constraintTop_toBottomOf = 0x7f0401ef +net.micode.notes:id/never = 0x7f090147 +net.micode.notes:dimen/mtrl_bottomappbar_fabOffsetEndMode = 0x7f0700cd +net.micode.notes:string/mtrl_badge_numberless_content_description = 0x7f100084 +net.micode.notes:attr/onShow = 0x7f040274 +net.micode.notes:attr/layout_constraintStart_toStartOf = 0x7f0401ec +net.micode.notes:dimen/mtrl_calendar_bottom_padding = 0x7f0700ee +net.micode.notes:attr/triggerId = 0x7f04036e +net.micode.notes:string/menu_search = 0x7f100079 +net.micode.notes:attr/colorOnBackground = 0x7f0400bc +net.micode.notes:attr/fabSize = 0x7f04014e +net.micode.notes:attr/layout_constraintRight_toLeftOf = 0x7f0401e9 +net.micode.notes:attr/iconGravity = 0x7f040193 +net.micode.notes:attr/dayInvalidStyle = 0x7f040101 +net.micode.notes:attr/yearStyle = 0x7f04038a +net.micode.notes:string/path_password_eye_mask_visible = 0x7f1000b3 +net.micode.notes:attr/errorIconTint = 0x7f040137 +net.micode.notes:style/Widget.MaterialComponents.NavigationRailView.Colored.Compact = 0x7f1102b7 +net.micode.notes:dimen/design_bottom_sheet_elevation = 0x7f07006c +net.micode.notes:attr/layout_constraintHorizontal_bias = 0x7f0401e2 +net.micode.notes:attr/dialogPreferredPadding = 0x7f04010c +net.micode.notes:dimen/mtrl_progress_circular_radius = 0x7f070155 +net.micode.notes:attr/layout_dodgeInsetEdges = 0x7f0401f8 +net.micode.notes:attr/trackTintMode = 0x7f040368 +net.micode.notes:attr/layout_constraintRight_creator = 0x7f0401e8 +net.micode.notes:style/Base.Theme.MaterialComponents.Light.Bridge = 0x7f110061 +net.micode.notes:attr/layout_constraintHeight_min = 0x7f0401e0 +net.micode.notes:attr/displayOptions = 0x7f04010e +net.micode.notes:attr/materialCalendarMonthNavigationButton = 0x7f04022f +net.micode.notes:id/buttonPanel = 0x7f090060 +net.micode.notes:drawable/abc_text_cursor_material = 0x7f080050 +net.micode.notes:attr/layout_constraintRight_toRightOf = 0x7f0401ea +net.micode.notes:attr/layout_constraintBottom_toBottomOf = 0x7f0401d3 +net.micode.notes:style/Widget.MaterialComponents.Button.Icon = 0x7f11027f +net.micode.notes:drawable/abc_item_background_holo_dark = 0x7f08002d +net.micode.notes:attr/buttonIconDimen = 0x7f040072 +net.micode.notes:attr/tint = 0x7f040347 +net.micode.notes:attr/trackThickness = 0x7f040366 +net.micode.notes:attr/liftOnScrollTargetViewId = 0x7f040207 +net.micode.notes:attr/indicatorSize = 0x7f0401a1 +net.micode.notes:attr/layout_constraintDimensionRatio = 0x7f0401d8 +net.micode.notes:attr/colorOnError = 0x7f0400bd +net.micode.notes:attr/paddingTopSystemWindowInsets = 0x7f04027f +net.micode.notes:dimen/mtrl_btn_snackbar_margin_horizontal = 0x7f0700e4 +net.micode.notes:string/menu_font_super = 0x7f100072 +net.micode.notes:dimen/abc_star_big = 0x7f07003b +net.micode.notes:attr/cardUseCompatPadding = 0x7f04007e +net.micode.notes:id/tag_screen_reader_focusable = 0x7f0901b6 +net.micode.notes:attr/layout_goneMarginRight = 0x7f0401fe +net.micode.notes:attr/layout_constraintBottom_creator = 0x7f0401d2 +net.micode.notes:attr/layout_constraintBaseline_toBaselineOf = 0x7f0401d1 +net.micode.notes:attr/tickColor = 0x7f040340 +net.micode.notes:animator/mtrl_extended_fab_change_size_expand_motion_spec = 0x7f020012 +net.micode.notes:attr/circleRadius = 0x7f04009f +net.micode.notes:attr/layout_anchorGravity = 0x7f0401ca +net.micode.notes:string/item_view_role_description = 0x7f100050 +net.micode.notes:attr/percentY = 0x7f04028d +net.micode.notes:style/Theme.AppCompat.DayNight.DarkActionBar = 0x7f110195 +net.micode.notes:id/mtrl_picker_header = 0x7f090137 +net.micode.notes:attr/layout_constraintLeft_toRightOf = 0x7f0401e7 +net.micode.notes:id/tag_accessibility_heading = 0x7f0901b1 +net.micode.notes:dimen/mtrl_badge_horizontal_edge_offset = 0x7f0700c5 +net.micode.notes:style/Theme.Design = 0x7f1101a8 +net.micode.notes:attr/actionBarStyle = 0x7f040005 +net.micode.notes:style/Base.Animation.AppCompat.DropDownUp = 0x7f11000d +net.micode.notes:dimen/abc_action_bar_default_padding_end_material = 0x7f070003 +net.micode.notes:dimen/mtrl_card_checked_icon_size = 0x7f070116 +net.micode.notes:dimen/abc_action_bar_elevation_material = 0x7f070005 +net.micode.notes:attr/checkedButton = 0x7f040082 +net.micode.notes:style/ThemeOverlay.MaterialComponents.Dialog = 0x7f1101f8 +net.micode.notes:attr/actionButtonStyle = 0x7f04000b +net.micode.notes:layout/mtrl_calendar_vertical = 0x7f0c0050 +net.micode.notes:attr/keyboardIcon = 0x7f0401bf +net.micode.notes:attr/textAppearanceHeadline4 = 0x7f04031f +net.micode.notes:attr/motionDebug = 0x7f040250 +net.micode.notes:dimen/abc_action_button_min_width_material = 0x7f07000e +net.micode.notes:attr/navigationViewStyle = 0x7f04026b +net.micode.notes:color/mtrl_btn_text_btn_ripple_color = 0x7f060089 +net.micode.notes:drawable/widget_4x_blue = 0x7f0800d9 +net.micode.notes:animator/mtrl_fab_show_motion_spec = 0x7f020017 +net.micode.notes:id/activity_chooser_view_content = 0x7f090045 +net.micode.notes:attr/chipStrokeColor = 0x7f04009b +net.micode.notes:style/Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f110081 +net.micode.notes:style/Base.Widget.AppCompat.DrawerArrowToggle = 0x7f1100b4 +net.micode.notes:attr/backgroundTintMode = 0x7f040046 +net.micode.notes:attr/layout_constraintWidth_default = 0x7f0401f4 +net.micode.notes:attr/tickMarkTint = 0x7f040344 +net.micode.notes:attr/fontStyle = 0x7f040172 +net.micode.notes:style/Base.Widget.AppCompat.RatingBar.Small = 0x7f1100cd +net.micode.notes:attr/textAppearanceSmallPopupMenu = 0x7f04032b +net.micode.notes:attr/tickColorActive = 0x7f040341 +net.micode.notes:attr/onCross = 0x7f040270 +net.micode.notes:attr/itemShapeInsetTop = 0x7f0401b6 +net.micode.notes:attr/boxCollapsedPaddingTop = 0x7f040061 +net.micode.notes:attr/itemShapeInsetBottom = 0x7f0401b3 +net.micode.notes:attr/textAppearanceSearchResultTitle = 0x7f04032a +net.micode.notes:attr/autoSizeTextType = 0x7f04003a +net.micode.notes:drawable/_20240425224255 = 0x7f080009 +net.micode.notes:attr/itemMaxLines = 0x7f0401ad +net.micode.notes:attr/chipSpacing = 0x7f040096 +net.micode.notes:attr/trackHeight = 0x7f040365 +net.micode.notes:drawable/abc_textfield_activated_mtrl_alpha = 0x7f080054 +net.micode.notes:attr/transitionPathRotate = 0x7f04036c +net.micode.notes:attr/itemFillColor = 0x7f0401a7 +net.micode.notes:animator/linear_indeterminate_line2_tail_interpolator = 0x7f02000c +net.micode.notes:dimen/mtrl_extended_fab_icon_text_spacing = 0x7f070129 +net.micode.notes:layout/add_account_text = 0x7f0c001f +net.micode.notes:dimen/design_bottom_sheet_modal_elevation = 0x7f07006d +net.micode.notes:style/ShapeAppearanceOverlay.MaterialComponents.TextInputLayout.FilledBox = 0x7f110129 +net.micode.notes:id/material_label = 0x7f090100 +net.micode.notes:style/ThemeOverlay.MaterialComponents.Dark.ActionBar = 0x7f1101f6 +net.micode.notes:attr/tabIndicatorGravity = 0x7f040302 +net.micode.notes:animator/mtrl_card_state_list_anim = 0x7f02000f +net.micode.notes:attr/contentInsetRight = 0x7f0400d6 +net.micode.notes:attr/isMaterialTheme = 0x7f0401a5 +net.micode.notes:style/Base.Widget.AppCompat.PopupMenu.Overflow = 0x7f1100c7 +net.micode.notes:string/preferences_last_sync_time = 0x7f1000bf +net.micode.notes:attr/showDividers = 0x7f0402c3 +net.micode.notes:drawable/font_super = 0x7f08007e +net.micode.notes:attr/insetForeground = 0x7f0401a3 +net.micode.notes:attr/initialActivityCount = 0x7f0401a2 +net.micode.notes:drawable/list_blue_up = 0x7f08008b +net.micode.notes:attr/mock_label = 0x7f04024b +net.micode.notes:style/Widget.Design.AppBarLayout = 0x7f11025f +net.micode.notes:attr/backgroundTint = 0x7f040045 +net.micode.notes:attr/materialCalendarHeaderLayout = 0x7f04022a +net.micode.notes:attr/indicatorDirectionLinear = 0x7f04019f +net.micode.notes:styleable/AppCompatImageView = 0x7f12000d +net.micode.notes:attr/limitBoundsTo = 0x7f040208 +net.micode.notes:style/Widget.MaterialComponents.Toolbar.Primary = 0x7f1102dd +net.micode.notes:attr/framePosition = 0x7f040177 +net.micode.notes:drawable/$avd_hide_password__0 = 0x7f080000 +net.micode.notes:attr/indicatorDirectionCircular = 0x7f04019e +net.micode.notes:string/material_motion_easing_standard = 0x7f10005b +net.micode.notes:attr/indeterminateProgressStyle = 0x7f04019c +net.micode.notes:style/TextAppearance.AppCompat.Inverse = 0x7f110141 +net.micode.notes:style/Widget.AppCompat.ProgressBar.Horizontal = 0x7f11024b +net.micode.notes:layout/abc_search_dropdown_item_icons_2line = 0x7f0c0018 +net.micode.notes:attr/divider = 0x7f04010f +net.micode.notes:attr/indeterminateAnimationType = 0x7f04019b +net.micode.notes:dimen/mtrl_extended_fab_translation_z_pressed = 0x7f070131 +net.micode.notes:dimen/text_font_size_large = 0x7f07019e +net.micode.notes:attr/values = 0x7f040374 +net.micode.notes:attr/crossfade = 0x7f0400f5 +net.micode.notes:attr/suffixTextAppearance = 0x7f0402f1 +net.micode.notes:string/password_toggle_content_description = 0x7f1000b0 +net.micode.notes:attr/iconTintMode = 0x7f040198 +net.micode.notes:attr/animate_relativeTo = 0x7f04002d +net.micode.notes:attr/iconTint = 0x7f040197 +net.micode.notes:string/success_sdcard_export = 0x7f1000ce +net.micode.notes:attr/endIconTintMode = 0x7f040130 +net.micode.notes:style/ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen = 0x7f110205 +net.micode.notes:attr/layout_constraintLeft_toLeftOf = 0x7f0401e6 +net.micode.notes:animator/mtrl_btn_state_list_anim = 0x7f02000d +net.micode.notes:attr/tabStyle = 0x7f04030f +net.micode.notes:attr/iconStartPadding = 0x7f040196 +net.micode.notes:string/menu_sync_cancel = 0x7f100082 +net.micode.notes:layout/select_dialog_multichoice_material = 0x7f0c006c +net.micode.notes:dimen/mtrl_textinput_outline_box_expanded_padding = 0x7f07017a +net.micode.notes:id/dragDown = 0x7f090098 +net.micode.notes:style/TextAppearance.Design.Error = 0x7f11016f +net.micode.notes:attr/contentInsetLeft = 0x7f0400d5 +net.micode.notes:dimen/material_filled_edittext_font_1_3_padding_bottom = 0x7f0700ae +net.micode.notes:dimen/abc_edit_text_inset_bottom_material = 0x7f07002c +net.micode.notes:attr/alertDialogStyle = 0x7f040027 +net.micode.notes:layout/abc_list_menu_item_layout = 0x7f0c0010 +net.micode.notes:attr/iconEndPadding = 0x7f040192 +net.micode.notes:styleable/AppCompatTextHelper = 0x7f12000f +net.micode.notes:id/iatBtn = 0x7f0900cd +net.micode.notes:attr/haloRadius = 0x7f04017e +net.micode.notes:attr/popupTheme = 0x7f040296 +net.micode.notes:styleable/Fragment = 0x7f120032 +net.micode.notes:attr/homeAsUpIndicator = 0x7f04018d +net.micode.notes:style/TextAppearance.MaterialComponents.Headline3 = 0x7f11017f +net.micode.notes:attr/materialAlertDialogTheme = 0x7f04021e +net.micode.notes:attr/tabIndicatorAnimationDuration = 0x7f0402fe +net.micode.notes:attr/hintTextAppearance = 0x7f04018b +net.micode.notes:style/Theme.AppCompat.DayNight.DialogWhenLarge = 0x7f110199 +net.micode.notes:styleable/RecycleListView = 0x7f120068 +net.micode.notes:attr/hideOnScroll = 0x7f040188 +net.micode.notes:style/Base.V14.Theme.MaterialComponents.Light = 0x7f11007a +net.micode.notes:attr/flow_verticalStyle = 0x7f040167 +net.micode.notes:style/Base.TextAppearance.MaterialComponents.Button = 0x7f110043 +net.micode.notes:style/Base.V21.ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f11008c +net.micode.notes:dimen/mtrl_navigation_rail_icon_margin = 0x7f07014c +net.micode.notes:attr/tabUnboundedRipple = 0x7f040312 +net.micode.notes:attr/fontProviderCerts = 0x7f04016c +net.micode.notes:attr/listPreferredItemPaddingRight = 0x7f040219 +net.micode.notes:style/Base.TextAppearance.AppCompat.SearchResult = 0x7f110027 +net.micode.notes:dimen/abc_button_padding_vertical_material = 0x7f070015 +net.micode.notes:attr/arrowHeadLength = 0x7f040032 +net.micode.notes:attr/helperText = 0x7f040181 +net.micode.notes:style/Base.ThemeOverlay.MaterialComponents.Dialog = 0x7f110071 +net.micode.notes:dimen/mtrl_btn_focused_z = 0x7f0700d8 +net.micode.notes:style/TextAppearance.AppCompat.Tooltip = 0x7f110153 +net.micode.notes:attr/tintMode = 0x7f040348 +net.micode.notes:attr/dayTodayStyle = 0x7f040104 +net.micode.notes:id/accessibility_custom_action_26 = 0x7f090023 +net.micode.notes:attr/theme = 0x7f040335 +net.micode.notes:attr/materialCardViewStyle = 0x7f040233 +net.micode.notes:color/light_blue_A200 = 0x7f060061 +net.micode.notes:string/bottom_sheet_behavior = 0x7f100023 +net.micode.notes:id/action_context_bar = 0x7f09003a +net.micode.notes:attr/actionModeTheme = 0x7f04001d +net.micode.notes:attr/textAppearanceSubtitle1 = 0x7f04032c +net.micode.notes:style/Widget.MaterialComponents.ShapeableImageView = 0x7f1102c0 +net.micode.notes:style/ShapeAppearance.MaterialComponents.MediumComponent = 0x7f110119 +net.micode.notes:id/postLayout = 0x7f090166 +net.micode.notes:attr/fullscreenBackgroundColor = 0x7f040178 +net.micode.notes:dimen/design_fab_image_size = 0x7f070071 +net.micode.notes:attr/boxBackgroundColor = 0x7f04005f +net.micode.notes:drawable/new_note = 0x7f0800b7 +net.micode.notes:attr/dayStyle = 0x7f040103 +net.micode.notes:dimen/mtrl_alert_dialog_picker_background_inset = 0x7f0700c4 +net.micode.notes:dimen/mtrl_large_touch_target = 0x7f07013a +net.micode.notes:attr/forceApplySystemWindowInsetTop = 0x7f040175 +net.micode.notes:attr/chipIconVisible = 0x7f040093 +net.micode.notes:attr/materialThemeOverlay = 0x7f040236 +net.micode.notes:attr/behavior_halfExpandedRatio = 0x7f040053 +net.micode.notes:attr/fontVariationSettings = 0x7f040173 +net.micode.notes:attr/tabIndicatorColor = 0x7f040300 +net.micode.notes:dimen/mtrl_calendar_maximum_default_fullscreen_minor_axis = 0x7f070102 +net.micode.notes:attr/layout = 0x7f0401c5 +net.micode.notes:id/password_toggle = 0x7f09015f +net.micode.notes:plurals/search_results_title = 0x7f0e0001 +net.micode.notes:attr/fontProviderFetchTimeout = 0x7f04016e +net.micode.notes:color/abc_secondary_text_material_light = 0x7f060012 +net.micode.notes:id/navigation_bar_item_icon_view = 0x7f090142 +net.micode.notes:attr/fontProviderFetchStrategy = 0x7f04016d +net.micode.notes:integer/mtrl_btn_anim_delay_ms = 0x7f0a0011 +net.micode.notes:attr/listMenuViewStyle = 0x7f040212 +net.micode.notes:attr/enableEdgeToEdge = 0x7f04012a +net.micode.notes:attr/flow_wrapMode = 0x7f040168 +net.micode.notes:attr/flow_lastVerticalStyle = 0x7f040161 +net.micode.notes:attr/chipStyle = 0x7f04009d +net.micode.notes:attr/itemTextAppearanceInactive = 0x7f0401bc +net.micode.notes:id/material_minute_tv = 0x7f090102 +net.micode.notes:attr/flow_lastHorizontalStyle = 0x7f04015f +net.micode.notes:color/error_color_material_light = 0x7f06005a +net.micode.notes:dimen/notification_action_text_size = 0x7f070184 +net.micode.notes:dimen/mtrl_calendar_header_content_padding_fullscreen = 0x7f0700f9 +net.micode.notes:attr/state_lifted = 0x7f0402e3 +net.micode.notes:dimen/mtrl_btn_corner_radius = 0x7f0700d3 +net.micode.notes:attr/flow_verticalGap = 0x7f040166 +net.micode.notes:style/AlertDialog.AppCompat.Light = 0x7f110001 +net.micode.notes:style/Theme.MaterialComponents.Light = 0x7f1101cb +net.micode.notes:style/Base.Widget.AppCompat.SearchView = 0x7f1100ce +net.micode.notes:style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox = 0x7f110209 +net.micode.notes:attr/motionInterpolator = 0x7f04025c +net.micode.notes:attr/actionMenuTextColor = 0x7f04000f +net.micode.notes:id/graph = 0x7f0900c1 +net.micode.notes:color/primary_material_light = 0x7f0600bd +net.micode.notes:attr/floatingActionButtonStyle = 0x7f040155 +net.micode.notes:attr/navigationRailStyle = 0x7f04026a +net.micode.notes:attr/autoSizePresetSizes = 0x7f040038 +net.micode.notes:attr/tabIndicatorFullWidth = 0x7f040301 +net.micode.notes:attr/iconifiedByDefault = 0x7f040199 +net.micode.notes:attr/fastScrollVerticalThumbDrawable = 0x7f040152 +net.micode.notes:attr/motionEasingEmphasized = 0x7f040259 +net.micode.notes:styleable/AnimatedStateListDrawableTransition = 0x7f120009 +net.micode.notes:attr/tabSelectedTextColor = 0x7f04030e +net.micode.notes:style/AppTheme.Base.Fullscreen = 0x7f110009 +net.micode.notes:attr/layout_constraintHeight_percent = 0x7f0401e1 +net.micode.notes:drawable/abc_btn_switch_to_on_mtrl_00001 = 0x7f080018 +net.micode.notes:dimen/mtrl_navigation_item_icon_size = 0x7f070145 +net.micode.notes:attr/dragThreshold = 0x7f040115 +net.micode.notes:string/mtrl_picker_invalid_range = 0x7f100094 +net.micode.notes:id/fullscreen_content = 0x7f0900bc +net.micode.notes:attr/dropdownListPreferredItemHeight = 0x7f040122 +net.micode.notes:attr/fabCustomSize = 0x7f04014d +net.micode.notes:style/Theme.Design.Light.NoActionBar = 0x7f1101ac +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.Day.Today = 0x7f1102a3 +net.micode.notes:dimen/notification_top_pad_large_text = 0x7f070191 +net.micode.notes:color/abc_decor_view_status_guard_light = 0x7f060006 +net.micode.notes:attr/contentPaddingEnd = 0x7f0400db +net.micode.notes:attr/fabAnimationMode = 0x7f040149 +net.micode.notes:attr/pivotAnchor = 0x7f04028f +net.micode.notes:attr/counterEnabled = 0x7f0400ef +net.micode.notes:attr/extraMultilineHeightEnabled = 0x7f040147 +net.micode.notes:style/Base.V22.Theme.AppCompat.Light = 0x7f11008e +net.micode.notes:attr/textEndPadding = 0x7f040330 +net.micode.notes:attr/expandedTitleMargin = 0x7f04013f +net.micode.notes:styleable/AppBarLayoutStates = 0x7f12000b +net.micode.notes:attr/editTextBackground = 0x7f040124 +net.micode.notes:id/design_menu_item_action_area_stub = 0x7f09008e +net.micode.notes:attr/expandedHintEnabled = 0x7f04013d +net.micode.notes:attr/layout_goneMarginStart = 0x7f0401ff +net.micode.notes:attr/labelStyle = 0x7f0401c2 +net.micode.notes:anim/abc_slide_in_bottom = 0x7f010006 +net.micode.notes:id/chip_group = 0x7f090070 +net.micode.notes:attr/itemPadding = 0x7f0401ae +net.micode.notes:attr/clockFaceBackgroundColor = 0x7f0400a2 +net.micode.notes:color/switch_thumb_material_dark = 0x7f0600cd +net.micode.notes:id/design_menu_item_text = 0x7f09008f +net.micode.notes:attr/enforceMaterialTheme = 0x7f040131 +net.micode.notes:dimen/abc_progress_bar_height_material = 0x7f070035 +net.micode.notes:attr/colorBackgroundFloating = 0x7f0400b6 +net.micode.notes:attr/endIconMode = 0x7f04012e +net.micode.notes:attr/listChoiceBackgroundIndicator = 0x7f04020c +net.micode.notes:styleable/BottomSheetBehavior_Layout = 0x7f120016 +net.micode.notes:string/menu_folder_move_out = 0x7f10006c +net.micode.notes:attr/chipIconEnabled = 0x7f040090 +net.micode.notes:attr/buttonBarButtonStyle = 0x7f04006b +net.micode.notes:styleable/Slider = 0x7f12006f +net.micode.notes:color/mtrl_choice_chip_background_color = 0x7f060095 +net.micode.notes:attr/elevation = 0x7f040127 +net.micode.notes:style/Platform.V21.AppCompat.Light = 0x7f110102 +net.micode.notes:attr/startIconDrawable = 0x7f0402db +net.micode.notes:attr/spinnerDropDownItemStyle = 0x7f0402d3 +net.micode.notes:color/mtrl_scrim_color = 0x7f0600ac +net.micode.notes:attr/actionBarWidgetTheme = 0x7f04000a +net.micode.notes:color/design_snackbar_background_color = 0x7f060054 +net.micode.notes:string/datetime_dialog_cancel = 0x7f10002d +net.micode.notes:attr/cardBackgroundColor = 0x7f040078 +net.micode.notes:style/Theme.MaterialComponents.DayNight.NoActionBar = 0x7f1101c0 +net.micode.notes:color/highlighted_text_material_dark = 0x7f06005d +net.micode.notes:anim/mtrl_bottom_sheet_slide_in = 0x7f01001d +net.micode.notes:anim/btn_radio_to_off_mtrl_dot_group_animation = 0x7f010012 +net.micode.notes:attr/drawerArrowStyle = 0x7f040120 +net.micode.notes:attr/drawableTopCompat = 0x7f04011f +net.micode.notes:id/percent = 0x7f090163 +net.micode.notes:dimen/notification_large_icon_height = 0x7f070187 +net.micode.notes:attr/flow_firstVerticalStyle = 0x7f040159 +net.micode.notes:attr/drawableTint = 0x7f04011d +net.micode.notes:style/Theme.MaterialComponents.Light.Dialog.Alert.Bridge = 0x7f1101d3 +net.micode.notes:drawable/abc_ic_menu_selectall_mtrl_alpha = 0x7f080029 +net.micode.notes:dimen/material_timepicker_dialog_buttons_margin_top = 0x7f0700bf +net.micode.notes:dimen/design_fab_elevation = 0x7f070070 +net.micode.notes:style/Base.ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework = 0x7f110074 +net.micode.notes:dimen/material_emphasis_medium = 0x7f0700ad +net.micode.notes:attr/actionModeCloseButtonStyle = 0x7f040011 +net.micode.notes:attr/dividerHorizontal = 0x7f040110 +net.micode.notes:attr/numericModifiers = 0x7f04026f +net.micode.notes:attr/fastScrollHorizontalThumbDrawable = 0x7f040150 +net.micode.notes:attr/alertDialogCenterButtons = 0x7f040026 +net.micode.notes:id/scrollView = 0x7f09017d +net.micode.notes:color/design_default_color_on_surface = 0x7f060044 +net.micode.notes:id/baseline = 0x7f090057 +net.micode.notes:animator/design_fab_show_motion_spec = 0x7f020002 +net.micode.notes:drawable/ic_fp_40px = 0x7f080080 +net.micode.notes:attr/startIconTintMode = 0x7f0402dd +net.micode.notes:style/Widget.Design.BottomNavigationView = 0x7f110260 +net.micode.notes:dimen/mtrl_calendar_year_width = 0x7f070114 +net.micode.notes:id/topPanel = 0x7f0901d6 +net.micode.notes:attr/borderWidth = 0x7f040059 +net.micode.notes:style/Theme.AppCompat.CompactMenu = 0x7f110193 +net.micode.notes:dimen/mtrl_calendar_selection_text_baseline_to_bottom_fullscreen = 0x7f07010b +net.micode.notes:attr/drawPath = 0x7f040116 +net.micode.notes:attr/dialogCornerRadius = 0x7f04010b +net.micode.notes:string/preferences_dialog_select_account_title = 0x7f1000be +net.micode.notes:dimen/design_fab_size_normal = 0x7f070073 +net.micode.notes:style/Widget.Design.ScrimInsetsFrameLayout = 0x7f110265 +net.micode.notes:attr/deltaPolarRadius = 0x7f040109 +net.micode.notes:menu/call_note_edit = 0x7f0d0000 +net.micode.notes:attr/deltaPolarAngle = 0x7f040108 +net.micode.notes:dimen/abc_star_medium = 0x7f07003c +net.micode.notes:style/Base.V14.ThemeOverlay.MaterialComponents.Dialog = 0x7f110080 +net.micode.notes:drawable/search_result = 0x7f0800c9 +net.micode.notes:attr/clockIcon = 0x7f0400a4 +net.micode.notes:animator/fragment_close_enter = 0x7f020003 +net.micode.notes:attr/alpha = 0x7f04002a +net.micode.notes:color/background_floating_material_dark = 0x7f06001d +net.micode.notes:attr/actionBarTabTextStyle = 0x7f040008 +net.micode.notes:attr/layout_constraintStart_toEndOf = 0x7f0401eb +net.micode.notes:animator/mtrl_extended_fab_change_size_collapse_motion_spec = 0x7f020011 +net.micode.notes:id/iv_bg_red = 0x7f0900de +net.micode.notes:attr/customNavigationLayout = 0x7f0400fe +net.micode.notes:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1 = 0x7f110110 +net.micode.notes:drawable/bg_btn_set_color = 0x7f08005d +net.micode.notes:attr/prefixText = 0x7f040298 +net.micode.notes:attr/titleCentered = 0x7f04034a +net.micode.notes:id/easeOut = 0x7f0900a2 +net.micode.notes:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Query = 0x7f110112 +net.micode.notes:string/material_hour_suffix = 0x7f100054 +net.micode.notes:drawable/abc_ic_menu_paste_mtrl_am_alpha = 0x7f080028 +net.micode.notes:attr/expandedTitleMarginStart = 0x7f040142 +net.micode.notes:drawable/abc_list_pressed_holo_light = 0x7f080034 +net.micode.notes:attr/spinBars = 0x7f0402d2 +net.micode.notes:dimen/mtrl_textinput_box_stroke_width_focused = 0x7f070177 +net.micode.notes:attr/alphabeticModifiers = 0x7f04002b +net.micode.notes:dimen/mtrl_card_checked_icon_margin = 0x7f070115 +net.micode.notes:attr/counterOverflowTextColor = 0x7f0400f2 +net.micode.notes:style/Theme.MaterialComponents.Light.Dialog.MinWidth = 0x7f1101d7 +net.micode.notes:dimen/abc_search_view_preferred_height = 0x7f070036 +net.micode.notes:color/mtrl_chip_surface_color = 0x7f060093 +net.micode.notes:id/mtrl_card_checked_layer_id = 0x7f090132 +net.micode.notes:id/action_mode_bar = 0x7f09003f +net.micode.notes:attr/attributeName = 0x7f040034 +net.micode.notes:style/ShapeAppearanceOverlay.TopRightDifferentCornerSize = 0x7f11012b +net.micode.notes:id/material_clock_hand = 0x7f0900fa +net.micode.notes:color/primary_text_disabled_material_light = 0x7f0600c2 +net.micode.notes:animator/mtrl_btn_unelevated_state_list_anim = 0x7f02000e +net.micode.notes:id/dialog_button = 0x7f090091 +net.micode.notes:attr/clockNumberTextColor = 0x7f0400a5 +net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.DropDownItem = 0x7f11003c +net.micode.notes:attr/chipStandaloneStyle = 0x7f040099 +net.micode.notes:dimen/design_bottom_navigation_item_max_width = 0x7f070066 +net.micode.notes:style/Base.Widget.MaterialComponents.CheckedTextView = 0x7f1100da +net.micode.notes:anim/abc_shrink_fade_out_from_bottom = 0x7f010005 +net.micode.notes:attr/cornerSizeTopRight = 0x7f0400ee +net.micode.notes:style/Base.TextAppearance.MaterialComponents.Subtitle2 = 0x7f110045 +net.micode.notes:drawable/mtrl_ic_error = 0x7f0800b1 +net.micode.notes:attr/buttonPanelSideLayout = 0x7f040073 +net.micode.notes:color/ripple_material_light = 0x7f0600c5 +net.micode.notes:attr/drawableTintMode = 0x7f04011e +net.micode.notes:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f110159 +net.micode.notes:attr/navigationMode = 0x7f040269 +net.micode.notes:attr/minSeparation = 0x7f040247 +net.micode.notes:attr/windowActionBarOverlay = 0x7f040380 +net.micode.notes:style/RtlUnderlay.Widget.AppCompat.ActionButton = 0x7f110115 +net.micode.notes:attr/customIntegerValue = 0x7f0400fd +net.micode.notes:attr/backgroundInsetStart = 0x7f040040 +net.micode.notes:attr/counterMaxLength = 0x7f0400f0 +net.micode.notes:attr/autoTransition = 0x7f04003b +net.micode.notes:attr/activityChooserViewStyle = 0x7f040024 +net.micode.notes:attr/cornerSizeTopLeft = 0x7f0400ed +net.micode.notes:attr/cornerSizeBottomRight = 0x7f0400ec +net.micode.notes:color/design_fab_stroke_top_outer_color = 0x7f060052 +net.micode.notes:style/ShapeAppearanceOverlay.DifferentCornerSize = 0x7f110121 +net.micode.notes:string/mtrl_picker_navigate_to_year_description = 0x7f100095 +net.micode.notes:dimen/design_snackbar_action_inline_max_width = 0x7f07007e +net.micode.notes:attr/cornerSizeBottomLeft = 0x7f0400eb +net.micode.notes:attr/overlay = 0x7f040277 +net.micode.notes:attr/extendedFloatingActionButtonStyle = 0x7f040146 +net.micode.notes:color/abc_btn_colored_text_material = 0x7f060003 +net.micode.notes:attr/tabPaddingTop = 0x7f04030c +net.micode.notes:drawable/list_yellow_up = 0x7f08009d +net.micode.notes:attr/cornerSize = 0x7f0400ea +net.micode.notes:attr/cornerFamilyTopRight = 0x7f0400e8 +net.micode.notes:attr/dragScale = 0x7f040114 +net.micode.notes:attr/maxAcceleration = 0x7f040239 +net.micode.notes:layout/dialog_edit_text = 0x7f0c0031 +net.micode.notes:attr/cornerFamilyTopLeft = 0x7f0400e7 +net.micode.notes:attr/textAppearanceBody2 = 0x7f040319 +net.micode.notes:string/abc_prepend_shortcut_label = 0x7f100011 +net.micode.notes:attr/windowActionBar = 0x7f04037f +net.micode.notes:menu/sub_folder = 0x7f0d0006 +net.micode.notes:attr/itemRippleColor = 0x7f0401af +net.micode.notes:dimen/mtrl_chip_pressed_translation_z = 0x7f07011b +net.micode.notes:style/Base.TextAppearance.AppCompat.Tooltip = 0x7f110030 +net.micode.notes:id/snap = 0x7f090196 +net.micode.notes:attr/expandedTitleTextAppearance = 0x7f040144 +net.micode.notes:style/TestStyleWithThemeLineHeightAttribute = 0x7f110133 +net.micode.notes:attr/contentPaddingRight = 0x7f0400dd +net.micode.notes:string/search_setting_description = 0x7f1000cb +net.micode.notes:style/Theme.MaterialComponents.DayNight.Dialog.MinWidth = 0x7f1101bd +net.micode.notes:attr/contentPaddingBottom = 0x7f0400da +net.micode.notes:attr/contentScrim = 0x7f0400e0 +net.micode.notes:id/iv_bg_red_select = 0x7f0900df +net.micode.notes:drawable/abc_btn_switch_to_on_mtrl_00012 = 0x7f080019 +net.micode.notes:attr/contentPadding = 0x7f0400d9 +net.micode.notes:attr/colorPrimaryDark = 0x7f0400c3 +net.micode.notes:attr/overlapAnchor = 0x7f040276 +net.micode.notes:style/Theme.MaterialComponents.DialogWhenLarge = 0x7f1101ca +net.micode.notes:animator/mtrl_chip_state_list_anim = 0x7f020010 +net.micode.notes:style/Base.Widget.AppCompat.ActionBar.TabView = 0x7f1100a2 +net.micode.notes:drawable/font_large = 0x7f08007a +net.micode.notes:attr/contentInsetEnd = 0x7f0400d3 +net.micode.notes:attr/constraint_referenced_ids = 0x7f0400ce +net.micode.notes:attr/materialTimePickerStyle = 0x7f040237 +net.micode.notes:anim/btn_radio_to_on_mtrl_dot_group_animation = 0x7f010015 +net.micode.notes:attr/layout_constraintWidth_percent = 0x7f0401f7 +net.micode.notes:id/material_timepicker_cancel_button = 0x7f090104 +net.micode.notes:style/Widget.AppCompat.Light.ActionButton.CloseMode = 0x7f110236 +net.micode.notes:attr/counterTextColor = 0x7f0400f4 +net.micode.notes:attr/flow_maxElementsWrap = 0x7f040162 +net.micode.notes:attr/commitIcon = 0x7f0400ca +net.micode.notes:attr/motionEasingAccelerated = 0x7f040257 +net.micode.notes:attr/colorSwitchThumbNormal = 0x7f0400c9 +net.micode.notes:attr/linearProgressIndicatorStyle = 0x7f04020b +net.micode.notes:color/mtrl_tabs_ripple_color = 0x7f0600b1 +net.micode.notes:attr/layout_constraintBaseline_creator = 0x7f0401d0 +net.micode.notes:drawable/notification_icon_background = 0x7f0800c4 +net.micode.notes:dimen/mtrl_btn_elevation = 0x7f0700d7 +net.micode.notes:attr/expandedTitleMarginBottom = 0x7f040140 +net.micode.notes:style/TextAppearance.AppCompat.Body2 = 0x7f110139 +net.micode.notes:attr/actionBarTheme = 0x7f040009 +net.micode.notes:integer/material_motion_path = 0x7f0a000f +net.micode.notes:attr/colorPrimaryVariant = 0x7f0400c5 +net.micode.notes:dimen/mtrl_navigation_rail_default_width = 0x7f07014a +net.micode.notes:anim/abc_grow_fade_in_from_bottom = 0x7f010002 +net.micode.notes:id/tabMode = 0x7f0901ae +net.micode.notes:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2 = 0x7f110111 +net.micode.notes:id/month_navigation_previous = 0x7f090125 +net.micode.notes:attr/layout_editor_absoluteY = 0x7f0401fa +net.micode.notes:interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 0x7f0b0003 +net.micode.notes:drawable/material_cursor_drawable = 0x7f0800a0 +net.micode.notes:attr/colorOnSecondary = 0x7f0400c0 +net.micode.notes:style/Theme.MaterialComponents.Light.LargeTouch = 0x7f1101da +net.micode.notes:color/material_grey_850 = 0x7f06006e +net.micode.notes:attr/queryHint = 0x7f0402a0 +net.micode.notes:animator/fragment_open_enter = 0x7f020007 +net.micode.notes:attr/colorControlHighlight = 0x7f0400b9 +net.micode.notes:dimen/design_snackbar_max_width = 0x7f070083 +net.micode.notes:layout/activity_main = 0x7f0c001d +net.micode.notes:id/action_image = 0x7f09003c +net.micode.notes:attr/listItemLayout = 0x7f040210 +net.micode.notes:attr/maxVelocity = 0x7f040240 +net.micode.notes:attr/collapsedTitleGravity = 0x7f0400b1 +net.micode.notes:attr/itemStrokeColor = 0x7f0401b8 +net.micode.notes:attr/closeIconStartPadding = 0x7f0400aa +net.micode.notes:dimen/mtrl_calendar_year_height = 0x7f070111 +net.micode.notes:attr/goIcon = 0x7f04017c +net.micode.notes:attr/paddingRightSystemWindowInsets = 0x7f04027c +net.micode.notes:id/grouping = 0x7f0900c4 +net.micode.notes:attr/editTextStyle = 0x7f040126 +net.micode.notes:color/design_default_color_primary = 0x7f060045 +net.micode.notes:attr/defaultState = 0x7f040107 +net.micode.notes:attr/motionStagger = 0x7f040260 +net.micode.notes:id/disableHome = 0x7f090094 +net.micode.notes:attr/indicatorInset = 0x7f0401a0 +net.micode.notes:dimen/mtrl_calendar_selection_text_baseline_to_top = 0x7f07010c +net.micode.notes:dimen/mtrl_extended_fab_translation_z_hovered_focused = 0x7f070130 +net.micode.notes:style/Base.V26.Widget.AppCompat.Toolbar = 0x7f110093 +net.micode.notes:id/autoCompleteToEnd = 0x7f090054 +net.micode.notes:dimen/highlight_alpha_material_colored = 0x7f070093 +net.micode.notes:id/chip = 0x7f09006c +net.micode.notes:attr/region_heightMoreThan = 0x7f0402a8 +net.micode.notes:attr/chipStartPadding = 0x7f04009a +net.micode.notes:color/mtrl_outlined_stroke_color = 0x7f0600aa +net.micode.notes:color/mtrl_outlined_icon_tint = 0x7f0600a9 +net.micode.notes:attr/chipSpacingVertical = 0x7f040098 +net.micode.notes:drawable/abc_text_select_handle_left_mtrl = 0x7f080051 +net.micode.notes:id/accessibility_custom_action_8 = 0x7f09002e +net.micode.notes:anim/fragment_fast_out_extra_slow_in = 0x7f01001c +net.micode.notes:style/Animation.AppCompat.DropDownUp = 0x7f110004 +net.micode.notes:anim/btn_radio_to_on_mtrl_ring_outer_animation = 0x7f010016 +net.micode.notes:interpolator/fast_out_slow_in = 0x7f0b0006 +net.micode.notes:color/abc_search_url_text = 0x7f06000d +net.micode.notes:style/Theme.MaterialComponents.DayNight.Dialog.FixedSize.Bridge = 0x7f1101bc +net.micode.notes:style/Widget.AppCompat.ActionButton = 0x7f110217 +net.micode.notes:style/Base.Widget.AppCompat.ActionBar.TabBar = 0x7f1100a0 +net.micode.notes:dimen/mtrl_calendar_title_baseline_to_top = 0x7f07010e +net.micode.notes:id/ghost_view = 0x7f0900be +net.micode.notes:dimen/material_cursor_inset_bottom = 0x7f0700a8 +net.micode.notes:attr/icon = 0x7f040191 +net.micode.notes:attr/thumbTintMode = 0x7f04033f +net.micode.notes:attr/actionBarPopupTheme = 0x7f040002 +net.micode.notes:attr/counterOverflowTextAppearance = 0x7f0400f1 +net.micode.notes:style/Theme.Design.BottomSheetDialog = 0x7f1101a9 +net.micode.notes:dimen/tooltip_horizontal_padding = 0x7f0701a4 +net.micode.notes:attr/dialogTheme = 0x7f04010d +net.micode.notes:id/accessibility_custom_action_9 = 0x7f09002f +net.micode.notes:attr/chipCornerRadius = 0x7f04008c +net.micode.notes:style/Base.Widget.AppCompat.Toolbar = 0x7f1100d6 +net.micode.notes:id/forever = 0x7f0900ba +net.micode.notes:id/autoCompleteToStart = 0x7f090055 +net.micode.notes:attr/checkedIconTint = 0x7f040088 +net.micode.notes:color/material_grey_600 = 0x7f06006c +net.micode.notes:id/spread = 0x7f09019c +net.micode.notes:attr/expanded = 0x7f04013c +net.micode.notes:dimen/mtrl_low_ripple_default_alpha = 0x7f07013b +net.micode.notes:integer/material_motion_duration_long_1 = 0x7f0a0009 +net.micode.notes:attr/contentInsetStart = 0x7f0400d7 +net.micode.notes:color/material_grey_800 = 0x7f06006d +net.micode.notes:id/accessibility_action_clickable_span = 0x7f09000f +net.micode.notes:drawable/abc_text_select_handle_middle_mtrl = 0x7f080052 +net.micode.notes:style/ThemeOverlay.MaterialComponents.TimePicker = 0x7f11020b +net.micode.notes:color/mtrl_filled_stroke_color = 0x7f06009e +net.micode.notes:attr/actionBarSize = 0x7f040003 +net.micode.notes:color/abc_color_highlight_material = 0x7f060004 +net.micode.notes:dimen/notification_large_icon_width = 0x7f070188 +net.micode.notes:attr/fontProviderSystemFontFamily = 0x7f040171 +net.micode.notes:color/mtrl_indicator_text_color = 0x7f06009f +net.micode.notes:id/tv_name = 0x7f0901e4 +net.micode.notes:id/withinBounds = 0x7f0901f7 +net.micode.notes:attr/paddingBottomNoButtons = 0x7f040278 +net.micode.notes:style/Theme.AppCompat = 0x7f110192 +net.micode.notes:id/menu_sync = 0x7f09011a +net.micode.notes:attr/checkedIconMargin = 0x7f040086 +net.micode.notes:drawable/abc_scrubber_control_to_pressed_mtrl_005 = 0x7f080042 +net.micode.notes:dimen/test_navigation_bar_item_min_width = 0x7f07019a +net.micode.notes:dimen/mtrl_extended_fab_disabled_elevation = 0x7f070123 +net.micode.notes:style/ThemeOverlay.AppCompat.Dialog.Alert = 0x7f1101e6 +net.micode.notes:id/iv_bg_white = 0x7f0900e0 +net.micode.notes:id/dragRight = 0x7f09009b +net.micode.notes:attr/buttonCompat = 0x7f040070 +net.micode.notes:attr/boxCornerRadiusTopStart = 0x7f040065 +net.micode.notes:id/middle = 0x7f09011e +net.micode.notes:anim/abc_fade_out = 0x7f010001 +net.micode.notes:attr/measureWithLargestChild = 0x7f040242 +net.micode.notes:attr/buttonGravity = 0x7f040071 +net.micode.notes:style/Base.Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f1100ac +net.micode.notes:attr/closeIconEnabled = 0x7f0400a7 +net.micode.notes:id/expand_activities_button = 0x7f0900ae +net.micode.notes:color/primary_text_dark = 0x7f0600be +net.micode.notes:attr/snackbarStyle = 0x7f0402cf +net.micode.notes:attr/contentPaddingLeft = 0x7f0400dc +net.micode.notes:attr/tabTextColor = 0x7f040311 +net.micode.notes:style/Base.Widget.MaterialComponents.Chip = 0x7f1100db +net.micode.notes:color/primary_text_default_material_dark = 0x7f0600bf +net.micode.notes:attr/state_above_anchor = 0x7f0402de +net.micode.notes:dimen/material_textinput_default_width = 0x7f0700ba +net.micode.notes:attr/shapeAppearance = 0x7f0402bb +net.micode.notes:id/transitionToStart = 0x7f0901d9 +net.micode.notes:id/beginOnFirstDraw = 0x7f090058 +net.micode.notes:attr/bottomSheetStyle = 0x7f04005e +net.micode.notes:attr/thumbColor = 0x7f040338 +net.micode.notes:id/month_title = 0x7f090126 +net.micode.notes:attr/fabCradleVerticalOffset = 0x7f04014c +net.micode.notes:drawable/notification = 0x7f0800bc +net.micode.notes:attr/checkedIconEnabled = 0x7f040085 +net.micode.notes:drawable/abc_star_half_black_48dp = 0x7f08004b +net.micode.notes:string/menu_quit_secret = 0x7f100077 +net.micode.notes:styleable/MenuItem = 0x7f120056 +net.micode.notes:dimen/mtrl_btn_padding_bottom = 0x7f0700df +net.micode.notes:attr/strokeColor = 0x7f0402e7 +net.micode.notes:attr/behavior_fitToContents = 0x7f040052 +net.micode.notes:style/Theme.AppCompat.Light.DialogWhenLarge = 0x7f1101a5 +net.micode.notes:dimen/abc_button_inset_vertical_material = 0x7f070013 +net.micode.notes:attr/colorButtonNormal = 0x7f0400b7 +net.micode.notes:style/TextAppearance.AppCompat.Large = 0x7f110142 +net.micode.notes:attr/itemIconPadding = 0x7f0401aa +net.micode.notes:attr/behavior_expandedOffset = 0x7f040051 +net.micode.notes:attr/singleSelection = 0x7f0402cb +net.micode.notes:id/menu_search = 0x7f090115 +net.micode.notes:color/bright_foreground_inverse_material_dark = 0x7f060024 +net.micode.notes:id/title = 0x7f0901d1 +net.micode.notes:attr/barLength = 0x7f04004a +net.micode.notes:dimen/mtrl_tooltip_minWidth = 0x7f070180 +net.micode.notes:attr/behavior_autoShrink = 0x7f04004f +net.micode.notes:dimen/mtrl_high_ripple_hovered_alpha = 0x7f070138 +net.micode.notes:attr/layout_constraintHorizontal_chainStyle = 0x7f0401e3 +net.micode.notes:style/Widget.AppCompat.Toolbar = 0x7f110259 +net.micode.notes:dimen/mtrl_textinput_end_icon_margin_start = 0x7f070179 +net.micode.notes:attr/state_liftable = 0x7f0402e2 +net.micode.notes:attr/nestedScrollable = 0x7f04026d +net.micode.notes:attr/chipIcon = 0x7f04008f +net.micode.notes:dimen/action_bar_size = 0x7f070051 +net.micode.notes:attr/cardPreventCornerOverlap = 0x7f04007d +net.micode.notes:attr/collapsedTitleTextAppearance = 0x7f0400b2 +net.micode.notes:attr/yearTodayStyle = 0x7f04038b +net.micode.notes:style/ThemeOverlay.AppCompat.DayNight.ActionBar = 0x7f1101e4 +net.micode.notes:attr/suffixTextColor = 0x7f0402f2 +net.micode.notes:id/parentPanel = 0x7f09015c +net.micode.notes:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f110022 +net.micode.notes:attr/actionBarTabStyle = 0x7f040007 +net.micode.notes:id/font_size_selector = 0x7f0900b9 +net.micode.notes:anim/design_snackbar_in = 0x7f01001a +net.micode.notes:style/Base.AlertDialog.AppCompat.Light = 0x7f11000b +net.micode.notes:attr/badgeTextColor = 0x7f040049 +net.micode.notes:attr/materialCalendarHeaderSelection = 0x7f04022b +net.micode.notes:dimen/abc_config_prefDialogWidth = 0x7f070017 +net.micode.notes:attr/layout_collapseParallaxMultiplier = 0x7f0401cd +net.micode.notes:attr/cornerFamilyBottomLeft = 0x7f0400e5 +net.micode.notes:drawable/splash = 0x7f0800cb +net.micode.notes:attr/materialClockStyle = 0x7f040235 +net.micode.notes:attr/badgeStyle = 0x7f040048 +net.micode.notes:dimen/abc_control_inset_material = 0x7f070019 +net.micode.notes:string/format_exported_file_location = 0x7f100049 +net.micode.notes:string/error_sdcard_unmounted = 0x7f100038 +net.micode.notes:anim/btn_radio_to_on_mtrl_ring_outer_path_animation = 0x7f010017 +net.micode.notes:attr/actionModePopupWindowStyle = 0x7f040018 +net.micode.notes:attr/drawableSize = 0x7f04011b +net.micode.notes:drawable/avd_hide_password = 0x7f08005b +net.micode.notes:animator/design_fab_hide_motion_spec = 0x7f020001 +net.micode.notes:attr/backgroundOverlayColorAlpha = 0x7f040042 +net.micode.notes:drawable/wallpaper1 = 0x7f0800d2 +net.micode.notes:attr/ensureMinTouchTargetSize = 0x7f040133 +net.micode.notes:style/Theme.MaterialComponents.DayNight.Dialog.Bridge = 0x7f1101ba +net.micode.notes:dimen/mtrl_extended_fab_end_padding = 0x7f070126 +net.micode.notes:anim/abc_slide_out_top = 0x7f010009 +net.micode.notes:attr/backgroundInsetTop = 0x7f040041 +net.micode.notes:anim/btn_checkbox_to_unchecked_box_inner_merged_animation = 0x7f01000f +net.micode.notes:color/design_default_color_primary_dark = 0x7f060046 +net.micode.notes:anim/abc_slide_out_bottom = 0x7f010008 +net.micode.notes:attr/layout_constraintGuide_end = 0x7f0401dc +net.micode.notes:attr/materialAlertDialogTitleTextStyle = 0x7f040221 +net.micode.notes:dimen/mtrl_navigation_item_shape_horizontal_margin = 0x7f070146 +net.micode.notes:integer/show_password_duration = 0x7f0a001a +net.micode.notes:anim/abc_tooltip_enter = 0x7f01000a +net.micode.notes:color/mtrl_textinput_focused_box_stroke_color = 0x7f0600b6 +net.micode.notes:interpolator/mtrl_fast_out_slow_in = 0x7f0b0008 +net.micode.notes:attr/ratingBarStyleSmall = 0x7f0402a5 +net.micode.notes:style/TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f110162 +net.micode.notes:string/notelist_menu_new = 0x7f1000ae +net.micode.notes:attr/reverseLayout = 0x7f0402ab +net.micode.notes:attr/drawableLeftCompat = 0x7f040119 +net.micode.notes:id/META = 0x7f090005 +net.micode.notes:attr/color = 0x7f0400b4 +net.micode.notes:attr/behavior_overlapTop = 0x7f040055 +net.micode.notes:dimen/mtrl_badge_text_size = 0x7f0700c9 +net.micode.notes:style/Base.V14.ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f110082 +net.micode.notes:string/abc_menu_delete_shortcut_label = 0x7f10000a +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.MonthTextView = 0x7f1102b0 +net.micode.notes:layout/fingerprint_dialog = 0x7f0c0032 +net.micode.notes:attr/brightness = 0x7f04006a +net.micode.notes:attr/autoSizeStepGranularity = 0x7f040039 +net.micode.notes:attr/paddingEnd = 0x7f04027a +net.micode.notes:string/format_datetime_mdhm = 0x7f100048 +net.micode.notes:attr/fastScrollEnabled = 0x7f04014f +net.micode.notes:style/Widget.MaterialComponents.Tooltip = 0x7f1102e0 +net.micode.notes:style/Base.TextAppearance.AppCompat.Small = 0x7f11002a +net.micode.notes:style/Widget.MaterialComponents.CompoundButton.CheckBox = 0x7f110296 +net.micode.notes:attr/endIconTint = 0x7f04012f +net.micode.notes:style/TextAppearance.AppCompat.Display1 = 0x7f11013c +net.micode.notes:id/arc = 0x7f09004f +net.micode.notes:attr/arcMode = 0x7f040031 +net.micode.notes:attr/fastScrollVerticalTrackDrawable = 0x7f040153 +net.micode.notes:attr/layout_constraintCircle = 0x7f0401d5 +net.micode.notes:drawable/abc_scrubber_track_mtrl_alpha = 0x7f080044 +net.micode.notes:attr/extendMotionSpec = 0x7f040145 +net.micode.notes:attr/tabMaxWidth = 0x7f040305 +net.micode.notes:array/menu_share_ways = 0x7f030001 +net.micode.notes:attr/layout_constraintTop_creator = 0x7f0401ee +net.micode.notes:attr/titleMarginTop = 0x7f040351 +net.micode.notes:id/unlabeled = 0x7f0901eb +net.micode.notes:style/Widget.MaterialComponents.Button.TextButton.Dialog = 0x7f110283 +net.micode.notes:attr/submitBackground = 0x7f0402ea +net.micode.notes:style/Theme.MaterialComponents.DayNight.BottomSheetDialog = 0x7f1101b3 +net.micode.notes:id/hour = 0x7f0900cc +net.micode.notes:color/material_timepicker_clockface = 0x7f060083 +net.micode.notes:style/Widget.MaterialComponents.Badge = 0x7f110275 +net.micode.notes:dimen/text_font_size_super = 0x7f0701a2 +net.micode.notes:attr/fontWeight = 0x7f040174 +net.micode.notes:style/Base.Theme.MaterialComponents.Dialog = 0x7f11005a +net.micode.notes:attr/actionModeShareDrawable = 0x7f04001a +net.micode.notes:style/Theme.MaterialComponents.Dialog.FixedSize.Bridge = 0x7f1101c7 +net.micode.notes:attr/dropDownListViewStyle = 0x7f040121 +net.micode.notes:id/SHOW_PATH = 0x7f090009 +net.micode.notes:attr/dragDirection = 0x7f040113 +net.micode.notes:attr/scrimBackground = 0x7f0402b1 +net.micode.notes:style/ShapeAppearance.MaterialComponents = 0x7f110117 +net.micode.notes:attr/actionModeCutDrawable = 0x7f040015 +net.micode.notes:attr/actionModeBackground = 0x7f040010 +net.micode.notes:styleable/KeyCycle = 0x7f12003a +net.micode.notes:id/menu_export_text = 0x7f09010f +net.micode.notes:attr/actionLayout = 0x7f04000d +net.micode.notes:dimen/mtrl_extended_fab_elevation = 0x7f070125 +net.micode.notes:attr/mock_showDiagonals = 0x7f04024e +net.micode.notes:attr/searchIcon = 0x7f0402b4 +net.micode.notes:style/Widget.AppCompat.ActionButton.CloseMode = 0x7f110218 +net.micode.notes:attr/colorControlActivated = 0x7f0400b8 +net.micode.notes:attr/buttonBarPositiveButtonStyle = 0x7f04006e +net.micode.notes:string/hide_bottom_view_on_scroll_behavior = 0x7f10004c +net.micode.notes:dimen/design_navigation_elevation = 0x7f070076 +net.micode.notes:attr/splitTrack = 0x7f0402d5 +net.micode.notes:animator/mtrl_extended_fab_show_motion_spec = 0x7f020014 +net.micode.notes:string/preferences_toast_success_set_accout = 0x7f1000c6 +net.micode.notes:attr/srcCompat = 0x7f0402d6 +net.micode.notes:attr/menu = 0x7f040243 +net.micode.notes:color/design_error = 0x7f06004b +net.micode.notes:attr/contentDescription = 0x7f0400d2 +net.micode.notes:attr/actionBarItemBackground = 0x7f040001 +net.micode.notes:attr/arrowShaftLength = 0x7f040033 +net.micode.notes:attr/customDimension = 0x7f0400fb +net.micode.notes:style/Theme.AppCompat.Dialog = 0x7f11019b +net.micode.notes:attr/barrierMargin = 0x7f04004d +net.micode.notes:drawable/abc_switch_track_mtrl_alpha = 0x7f08004d +net.micode.notes:style/Base.Widget.AppCompat.Spinner.Underlined = 0x7f1100d3 +net.micode.notes:layout/test_reflow_chipgroup = 0x7f0c0075 +net.micode.notes:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day = 0x7f110126 +net.micode.notes:attr/layout_constraintWidth_max = 0x7f0401f5 +net.micode.notes:animator/mtrl_extended_fab_hide_motion_spec = 0x7f020013 +net.micode.notes:string/abc_menu_enter_shortcut_label = 0x7f10000b +net.micode.notes:drawable/material_ic_keyboard_arrow_left_black_24dp = 0x7f0800a4 +net.micode.notes:animator/mtrl_fab_hide_motion_spec = 0x7f020016 +net.micode.notes:attr/layout_constraintTop_toTopOf = 0x7f0401f0 +net.micode.notes:attr/telltales_tailColor = 0x7f040314 +net.micode.notes:color/design_dark_default_color_primary_variant = 0x7f06003a +net.micode.notes:id/src_in = 0x7f0901a0 +net.micode.notes:attr/minHeight = 0x7f040245 +net.micode.notes:attr/labelVisibilityMode = 0x7f0401c3 +net.micode.notes:attr/actionModeCopyDrawable = 0x7f040014 +net.micode.notes:dimen/material_text_view_test_line_height = 0x7f0700b8 +net.micode.notes:attr/behavior_autoHide = 0x7f04004e +net.micode.notes:animator/mtrl_extended_fab_state_list_animator = 0x7f020015 +net.micode.notes:attr/actionModeStyle = 0x7f04001c +net.micode.notes:style/Widget.MaterialComponents.MaterialCalendar.HeaderSelection.Fullscreen = 0x7f1102ab +net.micode.notes:layout/abc_tooltip = 0x7f0c001b +net.micode.notes:dimen/mtrl_card_spacing = 0x7f07011a +net.micode.notes:string/menu_select_title = 0x7f10007d +net.micode.notes:anim/abc_tooltip_exit = 0x7f01000b +net.micode.notes:string/material_clock_display_divider = 0x7f100051 +net.micode.notes:anim/design_snackbar_out = 0x7f01001b +net.micode.notes:id/flip = 0x7f0900b7 +net.micode.notes:style/Widget.MaterialComponents.ActionBar.PrimarySurface = 0x7f11026b +net.micode.notes:attr/drawableEndCompat = 0x7f040118 +net.micode.notes:attr/subtitleTextStyle = 0x7f0402ef +net.micode.notes:string/preferences_add_account = 0x7f1000b7 +net.micode.notes:animator/linear_indeterminate_line1_head_interpolator = 0x7f020009 +net.micode.notes:attr/rangeFillColor = 0x7f0402a2 +net.micode.notes:color/user_query_highlight = 0x7f0600d5 +net.micode.notes:style/Base.Widget.AppCompat.Button.Borderless = 0x7f1100aa +net.micode.notes:id/tv_modified_date = 0x7f0901e3 +net.micode.notes:anim/btn_checkbox_to_checked_icon_null_animation = 0x7f01000e +net.micode.notes:attr/chipSpacingHorizontal = 0x7f040097 +net.micode.notes:attr/maxCharacterCount = 0x7f04023c +net.micode.notes:dimen/design_snackbar_text_size = 0x7f070088 +net.micode.notes:id/action_mode_bar_stub = 0x7f090040 +net.micode.notes:color/cardview_dark_background = 0x7f06002a +net.micode.notes:attr/transitionShapeAppearance = 0x7f04036d +net.micode.notes:style/Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow = 0x7f1100df +net.micode.notes:attr/collapsingToolbarLayoutStyle = 0x7f0400b3 +net.micode.notes:drawable/list_yellow_single = 0x7f08009c +net.micode.notes:style/Base.Widget.Design.TabLayout = 0x7f1100d8 +net.micode.notes:dimen/material_time_picker_minimum_screen_width = 0x7f0700be +net.micode.notes:style/ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f1101e2 +net.micode.notes:color/design_fab_stroke_end_inner_color = 0x7f06004f +net.micode.notes:attr/tabContentStart = 0x7f0402f9 +net.micode.notes:id/floating = 0x7f0900b8 +net.micode.notes:attr/actionProviderClass = 0x7f040021 +net.micode.notes:anim/abc_popup_exit = 0x7f010004 -- 2.34.1 From 793dbe2d3de12bdab17139860c4ba0188400d15d Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:47:07 +0800 Subject: [PATCH 60/61] ADD file via upload --- .../signing_config_versions/debug/signing-config-versions.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/Notes-master/app/build/intermediates/signing_config_versions/debug/signing-config-versions.json diff --git a/src/Notes-master/app/build/intermediates/signing_config_versions/debug/signing-config-versions.json b/src/Notes-master/app/build/intermediates/signing_config_versions/debug/signing-config-versions.json new file mode 100644 index 0000000..bb4deaa --- /dev/null +++ b/src/Notes-master/app/build/intermediates/signing_config_versions/debug/signing-config-versions.json @@ -0,0 +1 @@ +{"enableV1Signing":true,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false} \ No newline at end of file -- 2.34.1 From 69690f52f21dac527fb2b495c2b64b97c7cffd2d Mon Sep 17 00:00:00 2001 From: pyg8ivf7o <15022759515@163.com> Date: Mon, 3 Jun 2024 23:48:05 +0800 Subject: [PATCH 61/61] ADD file via upload --- .../runtime_symbol_list/debug/R.txt | 5102 +++++++++++++++++ 1 file changed, 5102 insertions(+) create mode 100644 src/Notes-master/app/build/intermediates/runtime_symbol_list/debug/R.txt diff --git a/src/Notes-master/app/build/intermediates/runtime_symbol_list/debug/R.txt b/src/Notes-master/app/build/intermediates/runtime_symbol_list/debug/R.txt new file mode 100644 index 0000000..4113a46 --- /dev/null +++ b/src/Notes-master/app/build/intermediates/runtime_symbol_list/debug/R.txt @@ -0,0 +1,5102 @@ +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_from_bottom 0x7f010005 +int anim abc_slide_in_bottom 0x7f010006 +int anim abc_slide_in_top 0x7f010007 +int anim abc_slide_out_bottom 0x7f010008 +int anim abc_slide_out_top 0x7f010009 +int anim abc_tooltip_enter 0x7f01000a +int anim abc_tooltip_exit 0x7f01000b +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000c +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000e +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010011 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010014 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010017 +int anim design_bottom_sheet_slide_in 0x7f010018 +int anim design_bottom_sheet_slide_out 0x7f010019 +int anim design_snackbar_in 0x7f01001a +int anim design_snackbar_out 0x7f01001b +int anim fragment_fast_out_extra_slow_in 0x7f01001c +int anim mtrl_bottom_sheet_slide_in 0x7f01001d +int anim mtrl_bottom_sheet_slide_out 0x7f01001e +int anim mtrl_card_lowers_interpolator 0x7f01001f +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 linear_indeterminate_line1_head_interpolator 0x7f020009 +int animator linear_indeterminate_line1_tail_interpolator 0x7f02000a +int animator linear_indeterminate_line2_head_interpolator 0x7f02000b +int animator linear_indeterminate_line2_tail_interpolator 0x7f02000c +int animator mtrl_btn_state_list_anim 0x7f02000d +int animator mtrl_btn_unelevated_state_list_anim 0x7f02000e +int animator mtrl_card_state_list_anim 0x7f02000f +int animator mtrl_chip_state_list_anim 0x7f020010 +int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x7f020011 +int animator mtrl_extended_fab_change_size_expand_motion_spec 0x7f020012 +int animator mtrl_extended_fab_hide_motion_spec 0x7f020013 +int animator mtrl_extended_fab_show_motion_spec 0x7f020014 +int animator mtrl_extended_fab_state_list_animator 0x7f020015 +int animator mtrl_fab_hide_motion_spec 0x7f020016 +int animator mtrl_fab_show_motion_spec 0x7f020017 +int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020018 +int animator mtrl_fab_transformation_sheet_expand_spec 0x7f020019 +int array format_for_exported_note 0x7f030000 +int array menu_share_ways 0x7f030001 +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 activityChooserViewStyle 0x7f040024 +int attr alertDialogButtonGroupStyle 0x7f040025 +int attr alertDialogCenterButtons 0x7f040026 +int attr alertDialogStyle 0x7f040027 +int attr alertDialogTheme 0x7f040028 +int attr allowStacking 0x7f040029 +int attr alpha 0x7f04002a +int attr alphabeticModifiers 0x7f04002b +int attr altSrc 0x7f04002c +int attr animate_relativeTo 0x7f04002d +int attr animationMode 0x7f04002e +int attr appBarLayoutStyle 0x7f04002f +int attr applyMotionScene 0x7f040030 +int attr arcMode 0x7f040031 +int attr arrowHeadLength 0x7f040032 +int attr arrowShaftLength 0x7f040033 +int attr attributeName 0x7f040034 +int attr autoCompleteTextViewStyle 0x7f040035 +int attr autoSizeMaxTextSize 0x7f040036 +int attr autoSizeMinTextSize 0x7f040037 +int attr autoSizePresetSizes 0x7f040038 +int attr autoSizeStepGranularity 0x7f040039 +int attr autoSizeTextType 0x7f04003a +int attr autoTransition 0x7f04003b +int attr background 0x7f04003c +int attr backgroundColor 0x7f04003d +int attr backgroundInsetBottom 0x7f04003e +int attr backgroundInsetEnd 0x7f04003f +int attr backgroundInsetStart 0x7f040040 +int attr backgroundInsetTop 0x7f040041 +int attr backgroundOverlayColorAlpha 0x7f040042 +int attr backgroundSplit 0x7f040043 +int attr backgroundStacked 0x7f040044 +int attr backgroundTint 0x7f040045 +int attr backgroundTintMode 0x7f040046 +int attr badgeGravity 0x7f040047 +int attr badgeStyle 0x7f040048 +int attr badgeTextColor 0x7f040049 +int attr barLength 0x7f04004a +int attr barrierAllowsGoneWidgets 0x7f04004b +int attr barrierDirection 0x7f04004c +int attr barrierMargin 0x7f04004d +int attr behavior_autoHide 0x7f04004e +int attr behavior_autoShrink 0x7f04004f +int attr behavior_draggable 0x7f040050 +int attr behavior_expandedOffset 0x7f040051 +int attr behavior_fitToContents 0x7f040052 +int attr behavior_halfExpandedRatio 0x7f040053 +int attr behavior_hideable 0x7f040054 +int attr behavior_overlapTop 0x7f040055 +int attr behavior_peekHeight 0x7f040056 +int attr behavior_saveFlags 0x7f040057 +int attr behavior_skipCollapsed 0x7f040058 +int attr borderWidth 0x7f040059 +int attr borderlessButtonStyle 0x7f04005a +int attr bottomAppBarStyle 0x7f04005b +int attr bottomNavigationStyle 0x7f04005c +int attr bottomSheetDialogTheme 0x7f04005d +int attr bottomSheetStyle 0x7f04005e +int attr boxBackgroundColor 0x7f04005f +int attr boxBackgroundMode 0x7f040060 +int attr boxCollapsedPaddingTop 0x7f040061 +int attr boxCornerRadiusBottomEnd 0x7f040062 +int attr boxCornerRadiusBottomStart 0x7f040063 +int attr boxCornerRadiusTopEnd 0x7f040064 +int attr boxCornerRadiusTopStart 0x7f040065 +int attr boxStrokeColor 0x7f040066 +int attr boxStrokeErrorColor 0x7f040067 +int attr boxStrokeWidth 0x7f040068 +int attr boxStrokeWidthFocused 0x7f040069 +int attr brightness 0x7f04006a +int attr buttonBarButtonStyle 0x7f04006b +int attr buttonBarNegativeButtonStyle 0x7f04006c +int attr buttonBarNeutralButtonStyle 0x7f04006d +int attr buttonBarPositiveButtonStyle 0x7f04006e +int attr buttonBarStyle 0x7f04006f +int attr buttonCompat 0x7f040070 +int attr buttonGravity 0x7f040071 +int attr buttonIconDimen 0x7f040072 +int attr buttonPanelSideLayout 0x7f040073 +int attr buttonStyle 0x7f040074 +int attr buttonStyleSmall 0x7f040075 +int attr buttonTint 0x7f040076 +int attr buttonTintMode 0x7f040077 +int attr cardBackgroundColor 0x7f040078 +int attr cardCornerRadius 0x7f040079 +int attr cardElevation 0x7f04007a +int attr cardForegroundColor 0x7f04007b +int attr cardMaxElevation 0x7f04007c +int attr cardPreventCornerOverlap 0x7f04007d +int attr cardUseCompatPadding 0x7f04007e +int attr cardViewStyle 0x7f04007f +int attr chainUseRtl 0x7f040080 +int attr checkboxStyle 0x7f040081 +int attr checkedButton 0x7f040082 +int attr checkedChip 0x7f040083 +int attr checkedIcon 0x7f040084 +int attr checkedIconEnabled 0x7f040085 +int attr checkedIconMargin 0x7f040086 +int attr checkedIconSize 0x7f040087 +int attr checkedIconTint 0x7f040088 +int attr checkedIconVisible 0x7f040089 +int attr checkedTextViewStyle 0x7f04008a +int attr chipBackgroundColor 0x7f04008b +int attr chipCornerRadius 0x7f04008c +int attr chipEndPadding 0x7f04008d +int attr chipGroupStyle 0x7f04008e +int attr chipIcon 0x7f04008f +int attr chipIconEnabled 0x7f040090 +int attr chipIconSize 0x7f040091 +int attr chipIconTint 0x7f040092 +int attr chipIconVisible 0x7f040093 +int attr chipMinHeight 0x7f040094 +int attr chipMinTouchTargetSize 0x7f040095 +int attr chipSpacing 0x7f040096 +int attr chipSpacingHorizontal 0x7f040097 +int attr chipSpacingVertical 0x7f040098 +int attr chipStandaloneStyle 0x7f040099 +int attr chipStartPadding 0x7f04009a +int attr chipStrokeColor 0x7f04009b +int attr chipStrokeWidth 0x7f04009c +int attr chipStyle 0x7f04009d +int attr chipSurfaceColor 0x7f04009e +int attr circleRadius 0x7f04009f +int attr circularProgressIndicatorStyle 0x7f0400a0 +int attr clickAction 0x7f0400a1 +int attr clockFaceBackgroundColor 0x7f0400a2 +int attr clockHandColor 0x7f0400a3 +int attr clockIcon 0x7f0400a4 +int attr clockNumberTextColor 0x7f0400a5 +int attr closeIcon 0x7f0400a6 +int attr closeIconEnabled 0x7f0400a7 +int attr closeIconEndPadding 0x7f0400a8 +int attr closeIconSize 0x7f0400a9 +int attr closeIconStartPadding 0x7f0400aa +int attr closeIconTint 0x7f0400ab +int attr closeIconVisible 0x7f0400ac +int attr closeItemLayout 0x7f0400ad +int attr collapseContentDescription 0x7f0400ae +int attr collapseIcon 0x7f0400af +int attr collapsedSize 0x7f0400b0 +int attr collapsedTitleGravity 0x7f0400b1 +int attr collapsedTitleTextAppearance 0x7f0400b2 +int attr collapsingToolbarLayoutStyle 0x7f0400b3 +int attr color 0x7f0400b4 +int attr colorAccent 0x7f0400b5 +int attr colorBackgroundFloating 0x7f0400b6 +int attr colorButtonNormal 0x7f0400b7 +int attr colorControlActivated 0x7f0400b8 +int attr colorControlHighlight 0x7f0400b9 +int attr colorControlNormal 0x7f0400ba +int attr colorError 0x7f0400bb +int attr colorOnBackground 0x7f0400bc +int attr colorOnError 0x7f0400bd +int attr colorOnPrimary 0x7f0400be +int attr colorOnPrimarySurface 0x7f0400bf +int attr colorOnSecondary 0x7f0400c0 +int attr colorOnSurface 0x7f0400c1 +int attr colorPrimary 0x7f0400c2 +int attr colorPrimaryDark 0x7f0400c3 +int attr colorPrimarySurface 0x7f0400c4 +int attr colorPrimaryVariant 0x7f0400c5 +int attr colorSecondary 0x7f0400c6 +int attr colorSecondaryVariant 0x7f0400c7 +int attr colorSurface 0x7f0400c8 +int attr colorSwitchThumbNormal 0x7f0400c9 +int attr commitIcon 0x7f0400ca +int attr constraintSet 0x7f0400cb +int attr constraintSetEnd 0x7f0400cc +int attr constraintSetStart 0x7f0400cd +int attr constraint_referenced_ids 0x7f0400ce +int attr constraint_referenced_tags 0x7f0400cf +int attr constraints 0x7f0400d0 +int attr content 0x7f0400d1 +int attr contentDescription 0x7f0400d2 +int attr contentInsetEnd 0x7f0400d3 +int attr contentInsetEndWithActions 0x7f0400d4 +int attr contentInsetLeft 0x7f0400d5 +int attr contentInsetRight 0x7f0400d6 +int attr contentInsetStart 0x7f0400d7 +int attr contentInsetStartWithNavigation 0x7f0400d8 +int attr contentPadding 0x7f0400d9 +int attr contentPaddingBottom 0x7f0400da +int attr contentPaddingEnd 0x7f0400db +int attr contentPaddingLeft 0x7f0400dc +int attr contentPaddingRight 0x7f0400dd +int attr contentPaddingStart 0x7f0400de +int attr contentPaddingTop 0x7f0400df +int attr contentScrim 0x7f0400e0 +int attr contrast 0x7f0400e1 +int attr controlBackground 0x7f0400e2 +int attr coordinatorLayoutStyle 0x7f0400e3 +int attr cornerFamily 0x7f0400e4 +int attr cornerFamilyBottomLeft 0x7f0400e5 +int attr cornerFamilyBottomRight 0x7f0400e6 +int attr cornerFamilyTopLeft 0x7f0400e7 +int attr cornerFamilyTopRight 0x7f0400e8 +int attr cornerRadius 0x7f0400e9 +int attr cornerSize 0x7f0400ea +int attr cornerSizeBottomLeft 0x7f0400eb +int attr cornerSizeBottomRight 0x7f0400ec +int attr cornerSizeTopLeft 0x7f0400ed +int attr cornerSizeTopRight 0x7f0400ee +int attr counterEnabled 0x7f0400ef +int attr counterMaxLength 0x7f0400f0 +int attr counterOverflowTextAppearance 0x7f0400f1 +int attr counterOverflowTextColor 0x7f0400f2 +int attr counterTextAppearance 0x7f0400f3 +int attr counterTextColor 0x7f0400f4 +int attr crossfade 0x7f0400f5 +int attr currentState 0x7f0400f6 +int attr curveFit 0x7f0400f7 +int attr customBoolean 0x7f0400f8 +int attr customColorDrawableValue 0x7f0400f9 +int attr customColorValue 0x7f0400fa +int attr customDimension 0x7f0400fb +int attr customFloatValue 0x7f0400fc +int attr customIntegerValue 0x7f0400fd +int attr customNavigationLayout 0x7f0400fe +int attr customPixelDimension 0x7f0400ff +int attr customStringValue 0x7f040100 +int attr dayInvalidStyle 0x7f040101 +int attr daySelectedStyle 0x7f040102 +int attr dayStyle 0x7f040103 +int attr dayTodayStyle 0x7f040104 +int attr defaultDuration 0x7f040105 +int attr defaultQueryHint 0x7f040106 +int attr defaultState 0x7f040107 +int attr deltaPolarAngle 0x7f040108 +int attr deltaPolarRadius 0x7f040109 +int attr deriveConstraintsFrom 0x7f04010a +int attr dialogCornerRadius 0x7f04010b +int attr dialogPreferredPadding 0x7f04010c +int attr dialogTheme 0x7f04010d +int attr displayOptions 0x7f04010e +int attr divider 0x7f04010f +int attr dividerHorizontal 0x7f040110 +int attr dividerPadding 0x7f040111 +int attr dividerVertical 0x7f040112 +int attr dragDirection 0x7f040113 +int attr dragScale 0x7f040114 +int attr dragThreshold 0x7f040115 +int attr drawPath 0x7f040116 +int attr drawableBottomCompat 0x7f040117 +int attr drawableEndCompat 0x7f040118 +int attr drawableLeftCompat 0x7f040119 +int attr drawableRightCompat 0x7f04011a +int attr drawableSize 0x7f04011b +int attr drawableStartCompat 0x7f04011c +int attr drawableTint 0x7f04011d +int attr drawableTintMode 0x7f04011e +int attr drawableTopCompat 0x7f04011f +int attr drawerArrowStyle 0x7f040120 +int attr dropDownListViewStyle 0x7f040121 +int attr dropdownListPreferredItemHeight 0x7f040122 +int attr duration 0x7f040123 +int attr editTextBackground 0x7f040124 +int attr editTextColor 0x7f040125 +int attr editTextStyle 0x7f040126 +int attr elevation 0x7f040127 +int attr elevationOverlayColor 0x7f040128 +int attr elevationOverlayEnabled 0x7f040129 +int attr enableEdgeToEdge 0x7f04012a +int attr endIconCheckable 0x7f04012b +int attr endIconContentDescription 0x7f04012c +int attr endIconDrawable 0x7f04012d +int attr endIconMode 0x7f04012e +int attr endIconTint 0x7f04012f +int attr endIconTintMode 0x7f040130 +int attr enforceMaterialTheme 0x7f040131 +int attr enforceTextAppearance 0x7f040132 +int attr ensureMinTouchTargetSize 0x7f040133 +int attr errorContentDescription 0x7f040134 +int attr errorEnabled 0x7f040135 +int attr errorIconDrawable 0x7f040136 +int attr errorIconTint 0x7f040137 +int attr errorIconTintMode 0x7f040138 +int attr errorTextAppearance 0x7f040139 +int attr errorTextColor 0x7f04013a +int attr expandActivityOverflowButtonDrawable 0x7f04013b +int attr expanded 0x7f04013c +int attr expandedHintEnabled 0x7f04013d +int attr expandedTitleGravity 0x7f04013e +int attr expandedTitleMargin 0x7f04013f +int attr expandedTitleMarginBottom 0x7f040140 +int attr expandedTitleMarginEnd 0x7f040141 +int attr expandedTitleMarginStart 0x7f040142 +int attr expandedTitleMarginTop 0x7f040143 +int attr expandedTitleTextAppearance 0x7f040144 +int attr extendMotionSpec 0x7f040145 +int attr extendedFloatingActionButtonStyle 0x7f040146 +int attr extraMultilineHeightEnabled 0x7f040147 +int attr fabAlignmentMode 0x7f040148 +int attr fabAnimationMode 0x7f040149 +int attr fabCradleMargin 0x7f04014a +int attr fabCradleRoundedCornerRadius 0x7f04014b +int attr fabCradleVerticalOffset 0x7f04014c +int attr fabCustomSize 0x7f04014d +int attr fabSize 0x7f04014e +int attr fastScrollEnabled 0x7f04014f +int attr fastScrollHorizontalThumbDrawable 0x7f040150 +int attr fastScrollHorizontalTrackDrawable 0x7f040151 +int attr fastScrollVerticalThumbDrawable 0x7f040152 +int attr fastScrollVerticalTrackDrawable 0x7f040153 +int attr firstBaselineToTopHeight 0x7f040154 +int attr floatingActionButtonStyle 0x7f040155 +int attr flow_firstHorizontalBias 0x7f040156 +int attr flow_firstHorizontalStyle 0x7f040157 +int attr flow_firstVerticalBias 0x7f040158 +int attr flow_firstVerticalStyle 0x7f040159 +int attr flow_horizontalAlign 0x7f04015a +int attr flow_horizontalBias 0x7f04015b +int attr flow_horizontalGap 0x7f04015c +int attr flow_horizontalStyle 0x7f04015d +int attr flow_lastHorizontalBias 0x7f04015e +int attr flow_lastHorizontalStyle 0x7f04015f +int attr flow_lastVerticalBias 0x7f040160 +int attr flow_lastVerticalStyle 0x7f040161 +int attr flow_maxElementsWrap 0x7f040162 +int attr flow_padding 0x7f040163 +int attr flow_verticalAlign 0x7f040164 +int attr flow_verticalBias 0x7f040165 +int attr flow_verticalGap 0x7f040166 +int attr flow_verticalStyle 0x7f040167 +int attr flow_wrapMode 0x7f040168 +int attr font 0x7f040169 +int attr fontFamily 0x7f04016a +int attr fontProviderAuthority 0x7f04016b +int attr fontProviderCerts 0x7f04016c +int attr fontProviderFetchStrategy 0x7f04016d +int attr fontProviderFetchTimeout 0x7f04016e +int attr fontProviderPackage 0x7f04016f +int attr fontProviderQuery 0x7f040170 +int attr fontProviderSystemFontFamily 0x7f040171 +int attr fontStyle 0x7f040172 +int attr fontVariationSettings 0x7f040173 +int attr fontWeight 0x7f040174 +int attr forceApplySystemWindowInsetTop 0x7f040175 +int attr foregroundInsidePadding 0x7f040176 +int attr framePosition 0x7f040177 +int attr fullscreenBackgroundColor 0x7f040178 +int attr fullscreenTextColor 0x7f040179 +int attr gapBetweenBars 0x7f04017a +int attr gestureInsetBottomIgnored 0x7f04017b +int attr goIcon 0x7f04017c +int attr haloColor 0x7f04017d +int attr haloRadius 0x7f04017e +int attr headerLayout 0x7f04017f +int attr height 0x7f040180 +int attr helperText 0x7f040181 +int attr helperTextEnabled 0x7f040182 +int attr helperTextTextAppearance 0x7f040183 +int attr helperTextTextColor 0x7f040184 +int attr hideAnimationBehavior 0x7f040185 +int attr hideMotionSpec 0x7f040186 +int attr hideOnContentScroll 0x7f040187 +int attr hideOnScroll 0x7f040188 +int attr hintAnimationEnabled 0x7f040189 +int attr hintEnabled 0x7f04018a +int attr hintTextAppearance 0x7f04018b +int attr hintTextColor 0x7f04018c +int attr homeAsUpIndicator 0x7f04018d +int attr homeLayout 0x7f04018e +int attr horizontalOffset 0x7f04018f +int attr hoveredFocusedTranslationZ 0x7f040190 +int attr icon 0x7f040191 +int attr iconEndPadding 0x7f040192 +int attr iconGravity 0x7f040193 +int attr iconPadding 0x7f040194 +int attr iconSize 0x7f040195 +int attr iconStartPadding 0x7f040196 +int attr iconTint 0x7f040197 +int attr iconTintMode 0x7f040198 +int attr iconifiedByDefault 0x7f040199 +int attr imageButtonStyle 0x7f04019a +int attr indeterminateAnimationType 0x7f04019b +int attr indeterminateProgressStyle 0x7f04019c +int attr indicatorColor 0x7f04019d +int attr indicatorDirectionCircular 0x7f04019e +int attr indicatorDirectionLinear 0x7f04019f +int attr indicatorInset 0x7f0401a0 +int attr indicatorSize 0x7f0401a1 +int attr initialActivityCount 0x7f0401a2 +int attr insetForeground 0x7f0401a3 +int attr isLightTheme 0x7f0401a4 +int attr isMaterialTheme 0x7f0401a5 +int attr itemBackground 0x7f0401a6 +int attr itemFillColor 0x7f0401a7 +int attr itemHorizontalPadding 0x7f0401a8 +int attr itemHorizontalTranslationEnabled 0x7f0401a9 +int attr itemIconPadding 0x7f0401aa +int attr itemIconSize 0x7f0401ab +int attr itemIconTint 0x7f0401ac +int attr itemMaxLines 0x7f0401ad +int attr itemPadding 0x7f0401ae +int attr itemRippleColor 0x7f0401af +int attr itemShapeAppearance 0x7f0401b0 +int attr itemShapeAppearanceOverlay 0x7f0401b1 +int attr itemShapeFillColor 0x7f0401b2 +int attr itemShapeInsetBottom 0x7f0401b3 +int attr itemShapeInsetEnd 0x7f0401b4 +int attr itemShapeInsetStart 0x7f0401b5 +int attr itemShapeInsetTop 0x7f0401b6 +int attr itemSpacing 0x7f0401b7 +int attr itemStrokeColor 0x7f0401b8 +int attr itemStrokeWidth 0x7f0401b9 +int attr itemTextAppearance 0x7f0401ba +int attr itemTextAppearanceActive 0x7f0401bb +int attr itemTextAppearanceInactive 0x7f0401bc +int attr itemTextColor 0x7f0401bd +int attr keyPositionType 0x7f0401be +int attr keyboardIcon 0x7f0401bf +int attr keylines 0x7f0401c0 +int attr labelBehavior 0x7f0401c1 +int attr labelStyle 0x7f0401c2 +int attr labelVisibilityMode 0x7f0401c3 +int attr lastBaselineToBottomHeight 0x7f0401c4 +int attr layout 0x7f0401c5 +int attr layoutDescription 0x7f0401c6 +int attr layoutDuringTransition 0x7f0401c7 +int attr layoutManager 0x7f0401c8 +int attr layout_anchor 0x7f0401c9 +int attr layout_anchorGravity 0x7f0401ca +int attr layout_behavior 0x7f0401cb +int attr layout_collapseMode 0x7f0401cc +int attr layout_collapseParallaxMultiplier 0x7f0401cd +int attr layout_constrainedHeight 0x7f0401ce +int attr layout_constrainedWidth 0x7f0401cf +int attr layout_constraintBaseline_creator 0x7f0401d0 +int attr layout_constraintBaseline_toBaselineOf 0x7f0401d1 +int attr layout_constraintBottom_creator 0x7f0401d2 +int attr layout_constraintBottom_toBottomOf 0x7f0401d3 +int attr layout_constraintBottom_toTopOf 0x7f0401d4 +int attr layout_constraintCircle 0x7f0401d5 +int attr layout_constraintCircleAngle 0x7f0401d6 +int attr layout_constraintCircleRadius 0x7f0401d7 +int attr layout_constraintDimensionRatio 0x7f0401d8 +int attr layout_constraintEnd_toEndOf 0x7f0401d9 +int attr layout_constraintEnd_toStartOf 0x7f0401da +int attr layout_constraintGuide_begin 0x7f0401db +int attr layout_constraintGuide_end 0x7f0401dc +int attr layout_constraintGuide_percent 0x7f0401dd +int attr layout_constraintHeight_default 0x7f0401de +int attr layout_constraintHeight_max 0x7f0401df +int attr layout_constraintHeight_min 0x7f0401e0 +int attr layout_constraintHeight_percent 0x7f0401e1 +int attr layout_constraintHorizontal_bias 0x7f0401e2 +int attr layout_constraintHorizontal_chainStyle 0x7f0401e3 +int attr layout_constraintHorizontal_weight 0x7f0401e4 +int attr layout_constraintLeft_creator 0x7f0401e5 +int attr layout_constraintLeft_toLeftOf 0x7f0401e6 +int attr layout_constraintLeft_toRightOf 0x7f0401e7 +int attr layout_constraintRight_creator 0x7f0401e8 +int attr layout_constraintRight_toLeftOf 0x7f0401e9 +int attr layout_constraintRight_toRightOf 0x7f0401ea +int attr layout_constraintStart_toEndOf 0x7f0401eb +int attr layout_constraintStart_toStartOf 0x7f0401ec +int attr layout_constraintTag 0x7f0401ed +int attr layout_constraintTop_creator 0x7f0401ee +int attr layout_constraintTop_toBottomOf 0x7f0401ef +int attr layout_constraintTop_toTopOf 0x7f0401f0 +int attr layout_constraintVertical_bias 0x7f0401f1 +int attr layout_constraintVertical_chainStyle 0x7f0401f2 +int attr layout_constraintVertical_weight 0x7f0401f3 +int attr layout_constraintWidth_default 0x7f0401f4 +int attr layout_constraintWidth_max 0x7f0401f5 +int attr layout_constraintWidth_min 0x7f0401f6 +int attr layout_constraintWidth_percent 0x7f0401f7 +int attr layout_dodgeInsetEdges 0x7f0401f8 +int attr layout_editor_absoluteX 0x7f0401f9 +int attr layout_editor_absoluteY 0x7f0401fa +int attr layout_goneMarginBottom 0x7f0401fb +int attr layout_goneMarginEnd 0x7f0401fc +int attr layout_goneMarginLeft 0x7f0401fd +int attr layout_goneMarginRight 0x7f0401fe +int attr layout_goneMarginStart 0x7f0401ff +int attr layout_goneMarginTop 0x7f040200 +int attr layout_insetEdge 0x7f040201 +int attr layout_keyline 0x7f040202 +int attr layout_optimizationLevel 0x7f040203 +int attr layout_scrollFlags 0x7f040204 +int attr layout_scrollInterpolator 0x7f040205 +int attr liftOnScroll 0x7f040206 +int attr liftOnScrollTargetViewId 0x7f040207 +int attr limitBoundsTo 0x7f040208 +int attr lineHeight 0x7f040209 +int attr lineSpacing 0x7f04020a +int attr linearProgressIndicatorStyle 0x7f04020b +int attr listChoiceBackgroundIndicator 0x7f04020c +int attr listChoiceIndicatorMultipleAnimated 0x7f04020d +int attr listChoiceIndicatorSingleAnimated 0x7f04020e +int attr listDividerAlertDialog 0x7f04020f +int attr listItemLayout 0x7f040210 +int attr listLayout 0x7f040211 +int attr listMenuViewStyle 0x7f040212 +int attr listPopupWindowStyle 0x7f040213 +int attr listPreferredItemHeight 0x7f040214 +int attr listPreferredItemHeightLarge 0x7f040215 +int attr listPreferredItemHeightSmall 0x7f040216 +int attr listPreferredItemPaddingEnd 0x7f040217 +int attr listPreferredItemPaddingLeft 0x7f040218 +int attr listPreferredItemPaddingRight 0x7f040219 +int attr listPreferredItemPaddingStart 0x7f04021a +int attr logo 0x7f04021b +int attr logoDescription 0x7f04021c +int attr materialAlertDialogBodyTextStyle 0x7f04021d +int attr materialAlertDialogTheme 0x7f04021e +int attr materialAlertDialogTitleIconStyle 0x7f04021f +int attr materialAlertDialogTitlePanelStyle 0x7f040220 +int attr materialAlertDialogTitleTextStyle 0x7f040221 +int attr materialButtonOutlinedStyle 0x7f040222 +int attr materialButtonStyle 0x7f040223 +int attr materialButtonToggleGroupStyle 0x7f040224 +int attr materialCalendarDay 0x7f040225 +int attr materialCalendarFullscreenTheme 0x7f040226 +int attr materialCalendarHeaderCancelButton 0x7f040227 +int attr materialCalendarHeaderConfirmButton 0x7f040228 +int attr materialCalendarHeaderDivider 0x7f040229 +int attr materialCalendarHeaderLayout 0x7f04022a +int attr materialCalendarHeaderSelection 0x7f04022b +int attr materialCalendarHeaderTitle 0x7f04022c +int attr materialCalendarHeaderToggleButton 0x7f04022d +int attr materialCalendarMonth 0x7f04022e +int attr materialCalendarMonthNavigationButton 0x7f04022f +int attr materialCalendarStyle 0x7f040230 +int attr materialCalendarTheme 0x7f040231 +int attr materialCalendarYearNavigationButton 0x7f040232 +int attr materialCardViewStyle 0x7f040233 +int attr materialCircleRadius 0x7f040234 +int attr materialClockStyle 0x7f040235 +int attr materialThemeOverlay 0x7f040236 +int attr materialTimePickerStyle 0x7f040237 +int attr materialTimePickerTheme 0x7f040238 +int attr maxAcceleration 0x7f040239 +int attr maxActionInlineWidth 0x7f04023a +int attr maxButtonHeight 0x7f04023b +int attr maxCharacterCount 0x7f04023c +int attr maxHeight 0x7f04023d +int attr maxImageSize 0x7f04023e +int attr maxLines 0x7f04023f +int attr maxVelocity 0x7f040240 +int attr maxWidth 0x7f040241 +int attr measureWithLargestChild 0x7f040242 +int attr menu 0x7f040243 +int attr menuGravity 0x7f040244 +int attr minHeight 0x7f040245 +int attr minHideDelay 0x7f040246 +int attr minSeparation 0x7f040247 +int attr minTouchTargetSize 0x7f040248 +int attr minWidth 0x7f040249 +int attr mock_diagonalsColor 0x7f04024a +int attr mock_label 0x7f04024b +int attr mock_labelBackgroundColor 0x7f04024c +int attr mock_labelColor 0x7f04024d +int attr mock_showDiagonals 0x7f04024e +int attr mock_showLabel 0x7f04024f +int attr motionDebug 0x7f040250 +int attr motionDurationLong1 0x7f040251 +int attr motionDurationLong2 0x7f040252 +int attr motionDurationMedium1 0x7f040253 +int attr motionDurationMedium2 0x7f040254 +int attr motionDurationShort1 0x7f040255 +int attr motionDurationShort2 0x7f040256 +int attr motionEasingAccelerated 0x7f040257 +int attr motionEasingDecelerated 0x7f040258 +int attr motionEasingEmphasized 0x7f040259 +int attr motionEasingLinear 0x7f04025a +int attr motionEasingStandard 0x7f04025b +int attr motionInterpolator 0x7f04025c +int attr motionPath 0x7f04025d +int attr motionPathRotate 0x7f04025e +int attr motionProgress 0x7f04025f +int attr motionStagger 0x7f040260 +int attr motionTarget 0x7f040261 +int attr motion_postLayoutCollision 0x7f040262 +int attr motion_triggerOnCollision 0x7f040263 +int attr moveWhenScrollAtTop 0x7f040264 +int attr multiChoiceItemLayout 0x7f040265 +int attr navigationContentDescription 0x7f040266 +int attr navigationIcon 0x7f040267 +int attr navigationIconTint 0x7f040268 +int attr navigationMode 0x7f040269 +int attr navigationRailStyle 0x7f04026a +int attr navigationViewStyle 0x7f04026b +int attr nestedScrollFlags 0x7f04026c +int attr nestedScrollable 0x7f04026d +int attr number 0x7f04026e +int attr numericModifiers 0x7f04026f +int attr onCross 0x7f040270 +int attr onHide 0x7f040271 +int attr onNegativeCross 0x7f040272 +int attr onPositiveCross 0x7f040273 +int attr onShow 0x7f040274 +int attr onTouchUp 0x7f040275 +int attr overlapAnchor 0x7f040276 +int attr overlay 0x7f040277 +int attr paddingBottomNoButtons 0x7f040278 +int attr paddingBottomSystemWindowInsets 0x7f040279 +int attr paddingEnd 0x7f04027a +int attr paddingLeftSystemWindowInsets 0x7f04027b +int attr paddingRightSystemWindowInsets 0x7f04027c +int attr paddingStart 0x7f04027d +int attr paddingTopNoTitle 0x7f04027e +int attr paddingTopSystemWindowInsets 0x7f04027f +int attr panelBackground 0x7f040280 +int attr panelMenuListTheme 0x7f040281 +int attr panelMenuListWidth 0x7f040282 +int attr passwordToggleContentDescription 0x7f040283 +int attr passwordToggleDrawable 0x7f040284 +int attr passwordToggleEnabled 0x7f040285 +int attr passwordToggleTint 0x7f040286 +int attr passwordToggleTintMode 0x7f040287 +int attr pathMotionArc 0x7f040288 +int attr path_percent 0x7f040289 +int attr percentHeight 0x7f04028a +int attr percentWidth 0x7f04028b +int attr percentX 0x7f04028c +int attr percentY 0x7f04028d +int attr perpendicularPath_percent 0x7f04028e +int attr pivotAnchor 0x7f04028f +int attr placeholderText 0x7f040290 +int attr placeholderTextAppearance 0x7f040291 +int attr placeholderTextColor 0x7f040292 +int attr placeholder_emptyVisibility 0x7f040293 +int attr popupMenuBackground 0x7f040294 +int attr popupMenuStyle 0x7f040295 +int attr popupTheme 0x7f040296 +int attr popupWindowStyle 0x7f040297 +int attr prefixText 0x7f040298 +int attr prefixTextAppearance 0x7f040299 +int attr prefixTextColor 0x7f04029a +int attr preserveIconSpacing 0x7f04029b +int attr pressedTranslationZ 0x7f04029c +int attr progressBarPadding 0x7f04029d +int attr progressBarStyle 0x7f04029e +int attr queryBackground 0x7f04029f +int attr queryHint 0x7f0402a0 +int attr radioButtonStyle 0x7f0402a1 +int attr rangeFillColor 0x7f0402a2 +int attr ratingBarStyle 0x7f0402a3 +int attr ratingBarStyleIndicator 0x7f0402a4 +int attr ratingBarStyleSmall 0x7f0402a5 +int attr recyclerViewStyle 0x7f0402a6 +int attr region_heightLessThan 0x7f0402a7 +int attr region_heightMoreThan 0x7f0402a8 +int attr region_widthLessThan 0x7f0402a9 +int attr region_widthMoreThan 0x7f0402aa +int attr reverseLayout 0x7f0402ab +int attr rippleColor 0x7f0402ac +int attr round 0x7f0402ad +int attr roundPercent 0x7f0402ae +int attr saturation 0x7f0402af +int attr scrimAnimationDuration 0x7f0402b0 +int attr scrimBackground 0x7f0402b1 +int attr scrimVisibleHeightTrigger 0x7f0402b2 +int attr searchHintIcon 0x7f0402b3 +int attr searchIcon 0x7f0402b4 +int attr searchViewStyle 0x7f0402b5 +int attr seekBarStyle 0x7f0402b6 +int attr selectableItemBackground 0x7f0402b7 +int attr selectableItemBackgroundBorderless 0x7f0402b8 +int attr selectionRequired 0x7f0402b9 +int attr selectorSize 0x7f0402ba +int attr shapeAppearance 0x7f0402bb +int attr shapeAppearanceLargeComponent 0x7f0402bc +int attr shapeAppearanceMediumComponent 0x7f0402bd +int attr shapeAppearanceOverlay 0x7f0402be +int attr shapeAppearanceSmallComponent 0x7f0402bf +int attr showAnimationBehavior 0x7f0402c0 +int attr showAsAction 0x7f0402c1 +int attr showDelay 0x7f0402c2 +int attr showDividers 0x7f0402c3 +int attr showMotionSpec 0x7f0402c4 +int attr showPaths 0x7f0402c5 +int attr showText 0x7f0402c6 +int attr showTitle 0x7f0402c7 +int attr shrinkMotionSpec 0x7f0402c8 +int attr singleChoiceItemLayout 0x7f0402c9 +int attr singleLine 0x7f0402ca +int attr singleSelection 0x7f0402cb +int attr sizePercent 0x7f0402cc +int attr sliderStyle 0x7f0402cd +int attr snackbarButtonStyle 0x7f0402ce +int attr snackbarStyle 0x7f0402cf +int attr snackbarTextViewStyle 0x7f0402d0 +int attr spanCount 0x7f0402d1 +int attr spinBars 0x7f0402d2 +int attr spinnerDropDownItemStyle 0x7f0402d3 +int attr spinnerStyle 0x7f0402d4 +int attr splitTrack 0x7f0402d5 +int attr srcCompat 0x7f0402d6 +int attr stackFromEnd 0x7f0402d7 +int attr staggered 0x7f0402d8 +int attr startIconCheckable 0x7f0402d9 +int attr startIconContentDescription 0x7f0402da +int attr startIconDrawable 0x7f0402db +int attr startIconTint 0x7f0402dc +int attr startIconTintMode 0x7f0402dd +int attr state_above_anchor 0x7f0402de +int attr state_collapsed 0x7f0402df +int attr state_collapsible 0x7f0402e0 +int attr state_dragged 0x7f0402e1 +int attr state_liftable 0x7f0402e2 +int attr state_lifted 0x7f0402e3 +int attr statusBarBackground 0x7f0402e4 +int attr statusBarForeground 0x7f0402e5 +int attr statusBarScrim 0x7f0402e6 +int attr strokeColor 0x7f0402e7 +int attr strokeWidth 0x7f0402e8 +int attr subMenuArrow 0x7f0402e9 +int attr submitBackground 0x7f0402ea +int attr subtitle 0x7f0402eb +int attr subtitleCentered 0x7f0402ec +int attr subtitleTextAppearance 0x7f0402ed +int attr subtitleTextColor 0x7f0402ee +int attr subtitleTextStyle 0x7f0402ef +int attr suffixText 0x7f0402f0 +int attr suffixTextAppearance 0x7f0402f1 +int attr suffixTextColor 0x7f0402f2 +int attr suggestionRowLayout 0x7f0402f3 +int attr switchMinWidth 0x7f0402f4 +int attr switchPadding 0x7f0402f5 +int attr switchStyle 0x7f0402f6 +int attr switchTextAppearance 0x7f0402f7 +int attr tabBackground 0x7f0402f8 +int attr tabContentStart 0x7f0402f9 +int attr tabGravity 0x7f0402fa +int attr tabIconTint 0x7f0402fb +int attr tabIconTintMode 0x7f0402fc +int attr tabIndicator 0x7f0402fd +int attr tabIndicatorAnimationDuration 0x7f0402fe +int attr tabIndicatorAnimationMode 0x7f0402ff +int attr tabIndicatorColor 0x7f040300 +int attr tabIndicatorFullWidth 0x7f040301 +int attr tabIndicatorGravity 0x7f040302 +int attr tabIndicatorHeight 0x7f040303 +int attr tabInlineLabel 0x7f040304 +int attr tabMaxWidth 0x7f040305 +int attr tabMinWidth 0x7f040306 +int attr tabMode 0x7f040307 +int attr tabPadding 0x7f040308 +int attr tabPaddingBottom 0x7f040309 +int attr tabPaddingEnd 0x7f04030a +int attr tabPaddingStart 0x7f04030b +int attr tabPaddingTop 0x7f04030c +int attr tabRippleColor 0x7f04030d +int attr tabSelectedTextColor 0x7f04030e +int attr tabStyle 0x7f04030f +int attr tabTextAppearance 0x7f040310 +int attr tabTextColor 0x7f040311 +int attr tabUnboundedRipple 0x7f040312 +int attr targetId 0x7f040313 +int attr telltales_tailColor 0x7f040314 +int attr telltales_tailScale 0x7f040315 +int attr telltales_velocityMode 0x7f040316 +int attr textAllCaps 0x7f040317 +int attr textAppearanceBody1 0x7f040318 +int attr textAppearanceBody2 0x7f040319 +int attr textAppearanceButton 0x7f04031a +int attr textAppearanceCaption 0x7f04031b +int attr textAppearanceHeadline1 0x7f04031c +int attr textAppearanceHeadline2 0x7f04031d +int attr textAppearanceHeadline3 0x7f04031e +int attr textAppearanceHeadline4 0x7f04031f +int attr textAppearanceHeadline5 0x7f040320 +int attr textAppearanceHeadline6 0x7f040321 +int attr textAppearanceLargePopupMenu 0x7f040322 +int attr textAppearanceLineHeightEnabled 0x7f040323 +int attr textAppearanceListItem 0x7f040324 +int attr textAppearanceListItemSecondary 0x7f040325 +int attr textAppearanceListItemSmall 0x7f040326 +int attr textAppearanceOverline 0x7f040327 +int attr textAppearancePopupMenuHeader 0x7f040328 +int attr textAppearanceSearchResultSubtitle 0x7f040329 +int attr textAppearanceSearchResultTitle 0x7f04032a +int attr textAppearanceSmallPopupMenu 0x7f04032b +int attr textAppearanceSubtitle1 0x7f04032c +int attr textAppearanceSubtitle2 0x7f04032d +int attr textColorAlertDialogListItem 0x7f04032e +int attr textColorSearchUrl 0x7f04032f +int attr textEndPadding 0x7f040330 +int attr textInputLayoutFocusedRectEnabled 0x7f040331 +int attr textInputStyle 0x7f040332 +int attr textLocale 0x7f040333 +int attr textStartPadding 0x7f040334 +int attr theme 0x7f040335 +int attr themeLineHeight 0x7f040336 +int attr thickness 0x7f040337 +int attr thumbColor 0x7f040338 +int attr thumbElevation 0x7f040339 +int attr thumbRadius 0x7f04033a +int attr thumbStrokeColor 0x7f04033b +int attr thumbStrokeWidth 0x7f04033c +int attr thumbTextPadding 0x7f04033d +int attr thumbTint 0x7f04033e +int attr thumbTintMode 0x7f04033f +int attr tickColor 0x7f040340 +int attr tickColorActive 0x7f040341 +int attr tickColorInactive 0x7f040342 +int attr tickMark 0x7f040343 +int attr tickMarkTint 0x7f040344 +int attr tickMarkTintMode 0x7f040345 +int attr tickVisible 0x7f040346 +int attr tint 0x7f040347 +int attr tintMode 0x7f040348 +int attr title 0x7f040349 +int attr titleCentered 0x7f04034a +int attr titleCollapseMode 0x7f04034b +int attr titleEnabled 0x7f04034c +int attr titleMargin 0x7f04034d +int attr titleMarginBottom 0x7f04034e +int attr titleMarginEnd 0x7f04034f +int attr titleMarginStart 0x7f040350 +int attr titleMarginTop 0x7f040351 +int attr titleMargins 0x7f040352 +int attr titleTextAppearance 0x7f040353 +int attr titleTextColor 0x7f040354 +int attr titleTextStyle 0x7f040355 +int attr toolbarId 0x7f040356 +int attr toolbarNavigationButtonStyle 0x7f040357 +int attr toolbarStyle 0x7f040358 +int attr tooltipForegroundColor 0x7f040359 +int attr tooltipFrameBackground 0x7f04035a +int attr tooltipStyle 0x7f04035b +int attr tooltipText 0x7f04035c +int attr touchAnchorId 0x7f04035d +int attr touchAnchorSide 0x7f04035e +int attr touchRegionId 0x7f04035f +int attr track 0x7f040360 +int attr trackColor 0x7f040361 +int attr trackColorActive 0x7f040362 +int attr trackColorInactive 0x7f040363 +int attr trackCornerRadius 0x7f040364 +int attr trackHeight 0x7f040365 +int attr trackThickness 0x7f040366 +int attr trackTint 0x7f040367 +int attr trackTintMode 0x7f040368 +int attr transitionDisable 0x7f040369 +int attr transitionEasing 0x7f04036a +int attr transitionFlags 0x7f04036b +int attr transitionPathRotate 0x7f04036c +int attr transitionShapeAppearance 0x7f04036d +int attr triggerId 0x7f04036e +int attr triggerReceiver 0x7f04036f +int attr triggerSlack 0x7f040370 +int attr ttcIndex 0x7f040371 +int attr useCompatPadding 0x7f040372 +int attr useMaterialThemeColors 0x7f040373 +int attr values 0x7f040374 +int attr verticalOffset 0x7f040375 +int attr viewInflaterClass 0x7f040376 +int attr visibilityMode 0x7f040377 +int attr voiceIcon 0x7f040378 +int attr warmth 0x7f040379 +int attr waveDecay 0x7f04037a +int attr waveOffset 0x7f04037b +int attr wavePeriod 0x7f04037c +int attr waveShape 0x7f04037d +int attr waveVariesBy 0x7f04037e +int attr windowActionBar 0x7f04037f +int attr windowActionBarOverlay 0x7f040380 +int attr windowActionModeOverlay 0x7f040381 +int attr windowFixedHeightMajor 0x7f040382 +int attr windowFixedHeightMinor 0x7f040383 +int attr windowFixedWidthMajor 0x7f040384 +int attr windowFixedWidthMinor 0x7f040385 +int attr windowMinWidthMajor 0x7f040386 +int attr windowMinWidthMinor 0x7f040387 +int attr windowNoTitle 0x7f040388 +int attr yearSelectedStyle 0x7f040389 +int attr yearStyle 0x7f04038a +int attr yearTodayStyle 0x7f04038b +int bool abc_action_bar_embed_tabs 0x7f050000 +int bool abc_config_actionMenuItemAllCaps 0x7f050001 +int bool mtrl_btn_textappearance_all_caps 0x7f050002 +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 black_overlay 0x7f060021 +int color bright_foreground_disabled_material_dark 0x7f060022 +int color bright_foreground_disabled_material_light 0x7f060023 +int color bright_foreground_inverse_material_dark 0x7f060024 +int color bright_foreground_inverse_material_light 0x7f060025 +int color bright_foreground_material_dark 0x7f060026 +int color bright_foreground_material_light 0x7f060027 +int color button_material_dark 0x7f060028 +int color button_material_light 0x7f060029 +int color cardview_dark_background 0x7f06002a +int color cardview_light_background 0x7f06002b +int color cardview_shadow_end_color 0x7f06002c +int color cardview_shadow_start_color 0x7f06002d +int color checkbox_themeable_attribute_color 0x7f06002e +int color design_bottom_navigation_shadow_color 0x7f06002f +int color design_box_stroke_color 0x7f060030 +int color design_dark_default_color_background 0x7f060031 +int color design_dark_default_color_error 0x7f060032 +int color design_dark_default_color_on_background 0x7f060033 +int color design_dark_default_color_on_error 0x7f060034 +int color design_dark_default_color_on_primary 0x7f060035 +int color design_dark_default_color_on_secondary 0x7f060036 +int color design_dark_default_color_on_surface 0x7f060037 +int color design_dark_default_color_primary 0x7f060038 +int color design_dark_default_color_primary_dark 0x7f060039 +int color design_dark_default_color_primary_variant 0x7f06003a +int color design_dark_default_color_secondary 0x7f06003b +int color design_dark_default_color_secondary_variant 0x7f06003c +int color design_dark_default_color_surface 0x7f06003d +int color design_default_color_background 0x7f06003e +int color design_default_color_error 0x7f06003f +int color design_default_color_on_background 0x7f060040 +int color design_default_color_on_error 0x7f060041 +int color design_default_color_on_primary 0x7f060042 +int color design_default_color_on_secondary 0x7f060043 +int color design_default_color_on_surface 0x7f060044 +int color design_default_color_primary 0x7f060045 +int color design_default_color_primary_dark 0x7f060046 +int color design_default_color_primary_variant 0x7f060047 +int color design_default_color_secondary 0x7f060048 +int color design_default_color_secondary_variant 0x7f060049 +int color design_default_color_surface 0x7f06004a +int color design_error 0x7f06004b +int color design_fab_shadow_end_color 0x7f06004c +int color design_fab_shadow_mid_color 0x7f06004d +int color design_fab_shadow_start_color 0x7f06004e +int color design_fab_stroke_end_inner_color 0x7f06004f +int color design_fab_stroke_end_outer_color 0x7f060050 +int color design_fab_stroke_top_inner_color 0x7f060051 +int color design_fab_stroke_top_outer_color 0x7f060052 +int color design_icon_tint 0x7f060053 +int color design_snackbar_background_color 0x7f060054 +int color dim_foreground_disabled_material_dark 0x7f060055 +int color dim_foreground_disabled_material_light 0x7f060056 +int color dim_foreground_material_dark 0x7f060057 +int color dim_foreground_material_light 0x7f060058 +int color error_color_material_dark 0x7f060059 +int color error_color_material_light 0x7f06005a +int color foreground_material_dark 0x7f06005b +int color foreground_material_light 0x7f06005c +int color highlighted_text_material_dark 0x7f06005d +int color highlighted_text_material_light 0x7f06005e +int color light_blue_600 0x7f06005f +int color light_blue_900 0x7f060060 +int color light_blue_A200 0x7f060061 +int color light_blue_A400 0x7f060062 +int color material_blue_grey_800 0x7f060063 +int color material_blue_grey_900 0x7f060064 +int color material_blue_grey_950 0x7f060065 +int color material_cursor_color 0x7f060066 +int color material_deep_teal_200 0x7f060067 +int color material_deep_teal_500 0x7f060068 +int color material_grey_100 0x7f060069 +int color material_grey_300 0x7f06006a +int color material_grey_50 0x7f06006b +int color material_grey_600 0x7f06006c +int color material_grey_800 0x7f06006d +int color material_grey_850 0x7f06006e +int color material_grey_900 0x7f06006f +int color material_on_background_disabled 0x7f060070 +int color material_on_background_emphasis_high_type 0x7f060071 +int color material_on_background_emphasis_medium 0x7f060072 +int color material_on_primary_disabled 0x7f060073 +int color material_on_primary_emphasis_high_type 0x7f060074 +int color material_on_primary_emphasis_medium 0x7f060075 +int color material_on_surface_disabled 0x7f060076 +int color material_on_surface_emphasis_high_type 0x7f060077 +int color material_on_surface_emphasis_medium 0x7f060078 +int color material_on_surface_stroke 0x7f060079 +int color material_slider_active_tick_marks_color 0x7f06007a +int color material_slider_active_track_color 0x7f06007b +int color material_slider_halo_color 0x7f06007c +int color material_slider_inactive_tick_marks_color 0x7f06007d +int color material_slider_inactive_track_color 0x7f06007e +int color material_slider_thumb_color 0x7f06007f +int color material_timepicker_button_background 0x7f060080 +int color material_timepicker_button_stroke 0x7f060081 +int color material_timepicker_clock_text_color 0x7f060082 +int color material_timepicker_clockface 0x7f060083 +int color material_timepicker_modebutton_tint 0x7f060084 +int color mtrl_btn_bg_color_selector 0x7f060085 +int color mtrl_btn_ripple_color 0x7f060086 +int color mtrl_btn_stroke_color_selector 0x7f060087 +int color mtrl_btn_text_btn_bg_color_selector 0x7f060088 +int color mtrl_btn_text_btn_ripple_color 0x7f060089 +int color mtrl_btn_text_color_disabled 0x7f06008a +int color mtrl_btn_text_color_selector 0x7f06008b +int color mtrl_btn_transparent_bg_color 0x7f06008c +int color mtrl_calendar_item_stroke_color 0x7f06008d +int color mtrl_calendar_selected_range 0x7f06008e +int color mtrl_card_view_foreground 0x7f06008f +int color mtrl_card_view_ripple 0x7f060090 +int color mtrl_chip_background_color 0x7f060091 +int color mtrl_chip_close_icon_tint 0x7f060092 +int color mtrl_chip_surface_color 0x7f060093 +int color mtrl_chip_text_color 0x7f060094 +int color mtrl_choice_chip_background_color 0x7f060095 +int color mtrl_choice_chip_ripple_color 0x7f060096 +int color mtrl_choice_chip_text_color 0x7f060097 +int color mtrl_error 0x7f060098 +int color mtrl_fab_bg_color_selector 0x7f060099 +int color mtrl_fab_icon_text_color_selector 0x7f06009a +int color mtrl_fab_ripple_color 0x7f06009b +int color mtrl_filled_background_color 0x7f06009c +int color mtrl_filled_icon_tint 0x7f06009d +int color mtrl_filled_stroke_color 0x7f06009e +int color mtrl_indicator_text_color 0x7f06009f +int color mtrl_navigation_bar_colored_item_tint 0x7f0600a0 +int color mtrl_navigation_bar_colored_ripple_color 0x7f0600a1 +int color mtrl_navigation_bar_item_tint 0x7f0600a2 +int color mtrl_navigation_bar_ripple_color 0x7f0600a3 +int color mtrl_navigation_item_background_color 0x7f0600a4 +int color mtrl_navigation_item_icon_tint 0x7f0600a5 +int color mtrl_navigation_item_text_color 0x7f0600a6 +int color mtrl_on_primary_text_btn_text_color_selector 0x7f0600a7 +int color mtrl_on_surface_ripple_color 0x7f0600a8 +int color mtrl_outlined_icon_tint 0x7f0600a9 +int color mtrl_outlined_stroke_color 0x7f0600aa +int color mtrl_popupmenu_overlay_color 0x7f0600ab +int color mtrl_scrim_color 0x7f0600ac +int color mtrl_tabs_colored_ripple_color 0x7f0600ad +int color mtrl_tabs_icon_color_selector 0x7f0600ae +int color mtrl_tabs_icon_color_selector_colored 0x7f0600af +int color mtrl_tabs_legacy_text_color_selector 0x7f0600b0 +int color mtrl_tabs_ripple_color 0x7f0600b1 +int color mtrl_text_btn_text_color_selector 0x7f0600b2 +int color mtrl_textinput_default_box_stroke_color 0x7f0600b3 +int color mtrl_textinput_disabled_color 0x7f0600b4 +int color mtrl_textinput_filled_box_default_background_color 0x7f0600b5 +int color mtrl_textinput_focused_box_stroke_color 0x7f0600b6 +int color mtrl_textinput_hovered_box_stroke_color 0x7f0600b7 +int color notification_action_color_filter 0x7f0600b8 +int color notification_icon_bg_color 0x7f0600b9 +int color primary_dark_material_dark 0x7f0600ba +int color primary_dark_material_light 0x7f0600bb +int color primary_material_dark 0x7f0600bc +int color primary_material_light 0x7f0600bd +int color primary_text_dark 0x7f0600be +int color primary_text_default_material_dark 0x7f0600bf +int color primary_text_default_material_light 0x7f0600c0 +int color primary_text_disabled_material_dark 0x7f0600c1 +int color primary_text_disabled_material_light 0x7f0600c2 +int color radiobutton_themeable_attribute_color 0x7f0600c3 +int color ripple_material_dark 0x7f0600c4 +int color ripple_material_light 0x7f0600c5 +int color secondary_text_dark 0x7f0600c6 +int color secondary_text_default_material_dark 0x7f0600c7 +int color secondary_text_default_material_light 0x7f0600c8 +int color secondary_text_disabled_material_dark 0x7f0600c9 +int color secondary_text_disabled_material_light 0x7f0600ca +int color switch_thumb_disabled_material_dark 0x7f0600cb +int color switch_thumb_disabled_material_light 0x7f0600cc +int color switch_thumb_material_dark 0x7f0600cd +int color switch_thumb_material_light 0x7f0600ce +int color switch_thumb_normal_material_dark 0x7f0600cf +int color switch_thumb_normal_material_light 0x7f0600d0 +int color test_mtrl_calendar_day 0x7f0600d1 +int color test_mtrl_calendar_day_selected 0x7f0600d2 +int color tooltip_background_dark 0x7f0600d3 +int color tooltip_background_light 0x7f0600d4 +int color user_query_highlight 0x7f0600d5 +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 action_bar_size 0x7f070051 +int dimen appcompat_dialog_background_inset 0x7f070052 +int dimen cardview_compat_inset_shadow 0x7f070053 +int dimen cardview_default_elevation 0x7f070054 +int dimen cardview_default_radius 0x7f070055 +int dimen clock_face_margin_start 0x7f070056 +int dimen compat_button_inset_horizontal_material 0x7f070057 +int dimen compat_button_inset_vertical_material 0x7f070058 +int dimen compat_button_padding_horizontal_material 0x7f070059 +int dimen compat_button_padding_vertical_material 0x7f07005a +int dimen compat_control_corner_material 0x7f07005b +int dimen compat_notification_large_icon_max_height 0x7f07005c +int dimen compat_notification_large_icon_max_width 0x7f07005d +int dimen default_dimension 0x7f07005e +int dimen design_appbar_elevation 0x7f07005f +int dimen design_bottom_navigation_active_item_max_width 0x7f070060 +int dimen design_bottom_navigation_active_item_min_width 0x7f070061 +int dimen design_bottom_navigation_active_text_size 0x7f070062 +int dimen design_bottom_navigation_elevation 0x7f070063 +int dimen design_bottom_navigation_height 0x7f070064 +int dimen design_bottom_navigation_icon_size 0x7f070065 +int dimen design_bottom_navigation_item_max_width 0x7f070066 +int dimen design_bottom_navigation_item_min_width 0x7f070067 +int dimen design_bottom_navigation_label_padding 0x7f070068 +int dimen design_bottom_navigation_margin 0x7f070069 +int dimen design_bottom_navigation_shadow_height 0x7f07006a +int dimen design_bottom_navigation_text_size 0x7f07006b +int dimen design_bottom_sheet_elevation 0x7f07006c +int dimen design_bottom_sheet_modal_elevation 0x7f07006d +int dimen design_bottom_sheet_peek_height_min 0x7f07006e +int dimen design_fab_border_width 0x7f07006f +int dimen design_fab_elevation 0x7f070070 +int dimen design_fab_image_size 0x7f070071 +int dimen design_fab_size_mini 0x7f070072 +int dimen design_fab_size_normal 0x7f070073 +int dimen design_fab_translation_z_hovered_focused 0x7f070074 +int dimen design_fab_translation_z_pressed 0x7f070075 +int dimen design_navigation_elevation 0x7f070076 +int dimen design_navigation_icon_padding 0x7f070077 +int dimen design_navigation_icon_size 0x7f070078 +int dimen design_navigation_item_horizontal_padding 0x7f070079 +int dimen design_navigation_item_icon_padding 0x7f07007a +int dimen design_navigation_max_width 0x7f07007b +int dimen design_navigation_padding_bottom 0x7f07007c +int dimen design_navigation_separator_vertical_padding 0x7f07007d +int dimen design_snackbar_action_inline_max_width 0x7f07007e +int dimen design_snackbar_action_text_color_alpha 0x7f07007f +int dimen design_snackbar_background_corner_radius 0x7f070080 +int dimen design_snackbar_elevation 0x7f070081 +int dimen design_snackbar_extra_spacing_horizontal 0x7f070082 +int dimen design_snackbar_max_width 0x7f070083 +int dimen design_snackbar_min_width 0x7f070084 +int dimen design_snackbar_padding_horizontal 0x7f070085 +int dimen design_snackbar_padding_vertical 0x7f070086 +int dimen design_snackbar_padding_vertical_2lines 0x7f070087 +int dimen design_snackbar_text_size 0x7f070088 +int dimen design_tab_max_width 0x7f070089 +int dimen design_tab_scrollable_min_width 0x7f07008a +int dimen design_tab_text_size 0x7f07008b +int dimen design_tab_text_size_2line 0x7f07008c +int dimen design_textinput_caption_translate_y 0x7f07008d +int dimen disabled_alpha_material_dark 0x7f07008e +int dimen disabled_alpha_material_light 0x7f07008f +int dimen fastscroll_default_thickness 0x7f070090 +int dimen fastscroll_margin 0x7f070091 +int dimen fastscroll_minimum_range 0x7f070092 +int dimen highlight_alpha_material_colored 0x7f070093 +int dimen highlight_alpha_material_dark 0x7f070094 +int dimen highlight_alpha_material_light 0x7f070095 +int dimen hint_alpha_material_dark 0x7f070096 +int dimen hint_alpha_material_light 0x7f070097 +int dimen hint_pressed_alpha_material_dark 0x7f070098 +int dimen hint_pressed_alpha_material_light 0x7f070099 +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f07009a +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f07009b +int dimen item_touch_helper_swipe_escape_velocity 0x7f07009c +int dimen material_bottom_sheet_max_width 0x7f07009d +int dimen material_clock_display_padding 0x7f07009e +int dimen material_clock_face_margin_top 0x7f07009f +int dimen material_clock_hand_center_dot_radius 0x7f0700a0 +int dimen material_clock_hand_padding 0x7f0700a1 +int dimen material_clock_hand_stroke_width 0x7f0700a2 +int dimen material_clock_number_text_size 0x7f0700a3 +int dimen material_clock_period_toggle_height 0x7f0700a4 +int dimen material_clock_period_toggle_margin_left 0x7f0700a5 +int dimen material_clock_period_toggle_width 0x7f0700a6 +int dimen material_clock_size 0x7f0700a7 +int dimen material_cursor_inset_bottom 0x7f0700a8 +int dimen material_cursor_inset_top 0x7f0700a9 +int dimen material_cursor_width 0x7f0700aa +int dimen material_emphasis_disabled 0x7f0700ab +int dimen material_emphasis_high_type 0x7f0700ac +int dimen material_emphasis_medium 0x7f0700ad +int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f0700ae +int dimen material_filled_edittext_font_1_3_padding_top 0x7f0700af +int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f0700b0 +int dimen material_filled_edittext_font_2_0_padding_top 0x7f0700b1 +int dimen material_font_1_3_box_collapsed_padding_top 0x7f0700b2 +int dimen material_font_2_0_box_collapsed_padding_top 0x7f0700b3 +int dimen material_helper_text_default_padding_top 0x7f0700b4 +int dimen material_helper_text_font_1_3_padding_horizontal 0x7f0700b5 +int dimen material_helper_text_font_1_3_padding_top 0x7f0700b6 +int dimen material_input_text_to_prefix_suffix_padding 0x7f0700b7 +int dimen material_text_view_test_line_height 0x7f0700b8 +int dimen material_text_view_test_line_height_override 0x7f0700b9 +int dimen material_textinput_default_width 0x7f0700ba +int dimen material_textinput_max_width 0x7f0700bb +int dimen material_textinput_min_width 0x7f0700bc +int dimen material_time_picker_minimum_screen_height 0x7f0700bd +int dimen material_time_picker_minimum_screen_width 0x7f0700be +int dimen material_timepicker_dialog_buttons_margin_top 0x7f0700bf +int dimen mtrl_alert_dialog_background_inset_bottom 0x7f0700c0 +int dimen mtrl_alert_dialog_background_inset_end 0x7f0700c1 +int dimen mtrl_alert_dialog_background_inset_start 0x7f0700c2 +int dimen mtrl_alert_dialog_background_inset_top 0x7f0700c3 +int dimen mtrl_alert_dialog_picker_background_inset 0x7f0700c4 +int dimen mtrl_badge_horizontal_edge_offset 0x7f0700c5 +int dimen mtrl_badge_long_text_horizontal_padding 0x7f0700c6 +int dimen mtrl_badge_radius 0x7f0700c7 +int dimen mtrl_badge_text_horizontal_edge_offset 0x7f0700c8 +int dimen mtrl_badge_text_size 0x7f0700c9 +int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f0700ca +int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f0700cb +int dimen mtrl_badge_with_text_radius 0x7f0700cc +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f0700cd +int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f0700ce +int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f0700cf +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f0700d0 +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f0700d1 +int dimen mtrl_bottomappbar_height 0x7f0700d2 +int dimen mtrl_btn_corner_radius 0x7f0700d3 +int dimen mtrl_btn_dialog_btn_min_width 0x7f0700d4 +int dimen mtrl_btn_disabled_elevation 0x7f0700d5 +int dimen mtrl_btn_disabled_z 0x7f0700d6 +int dimen mtrl_btn_elevation 0x7f0700d7 +int dimen mtrl_btn_focused_z 0x7f0700d8 +int dimen mtrl_btn_hovered_z 0x7f0700d9 +int dimen mtrl_btn_icon_btn_padding_left 0x7f0700da +int dimen mtrl_btn_icon_padding 0x7f0700db +int dimen mtrl_btn_inset 0x7f0700dc +int dimen mtrl_btn_letter_spacing 0x7f0700dd +int dimen mtrl_btn_max_width 0x7f0700de +int dimen mtrl_btn_padding_bottom 0x7f0700df +int dimen mtrl_btn_padding_left 0x7f0700e0 +int dimen mtrl_btn_padding_right 0x7f0700e1 +int dimen mtrl_btn_padding_top 0x7f0700e2 +int dimen mtrl_btn_pressed_z 0x7f0700e3 +int dimen mtrl_btn_snackbar_margin_horizontal 0x7f0700e4 +int dimen mtrl_btn_stroke_size 0x7f0700e5 +int dimen mtrl_btn_text_btn_icon_padding 0x7f0700e6 +int dimen mtrl_btn_text_btn_padding_left 0x7f0700e7 +int dimen mtrl_btn_text_btn_padding_right 0x7f0700e8 +int dimen mtrl_btn_text_size 0x7f0700e9 +int dimen mtrl_btn_z 0x7f0700ea +int dimen mtrl_calendar_action_confirm_button_min_width 0x7f0700eb +int dimen mtrl_calendar_action_height 0x7f0700ec +int dimen mtrl_calendar_action_padding 0x7f0700ed +int dimen mtrl_calendar_bottom_padding 0x7f0700ee +int dimen mtrl_calendar_content_padding 0x7f0700ef +int dimen mtrl_calendar_day_corner 0x7f0700f0 +int dimen mtrl_calendar_day_height 0x7f0700f1 +int dimen mtrl_calendar_day_horizontal_padding 0x7f0700f2 +int dimen mtrl_calendar_day_today_stroke 0x7f0700f3 +int dimen mtrl_calendar_day_vertical_padding 0x7f0700f4 +int dimen mtrl_calendar_day_width 0x7f0700f5 +int dimen mtrl_calendar_days_of_week_height 0x7f0700f6 +int dimen mtrl_calendar_dialog_background_inset 0x7f0700f7 +int dimen mtrl_calendar_header_content_padding 0x7f0700f8 +int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f0700f9 +int dimen mtrl_calendar_header_divider_thickness 0x7f0700fa +int dimen mtrl_calendar_header_height 0x7f0700fb +int dimen mtrl_calendar_header_height_fullscreen 0x7f0700fc +int dimen mtrl_calendar_header_selection_line_height 0x7f0700fd +int dimen mtrl_calendar_header_text_padding 0x7f0700fe +int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f0700ff +int dimen mtrl_calendar_header_toggle_margin_top 0x7f070100 +int dimen mtrl_calendar_landscape_header_width 0x7f070101 +int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f070102 +int dimen mtrl_calendar_month_horizontal_padding 0x7f070103 +int dimen mtrl_calendar_month_vertical_padding 0x7f070104 +int dimen mtrl_calendar_navigation_bottom_padding 0x7f070105 +int dimen mtrl_calendar_navigation_height 0x7f070106 +int dimen mtrl_calendar_navigation_top_padding 0x7f070107 +int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f070108 +int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f070109 +int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f07010a +int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f07010b +int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f07010c +int dimen mtrl_calendar_text_input_padding_top 0x7f07010d +int dimen mtrl_calendar_title_baseline_to_top 0x7f07010e +int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f07010f +int dimen mtrl_calendar_year_corner 0x7f070110 +int dimen mtrl_calendar_year_height 0x7f070111 +int dimen mtrl_calendar_year_horizontal_padding 0x7f070112 +int dimen mtrl_calendar_year_vertical_padding 0x7f070113 +int dimen mtrl_calendar_year_width 0x7f070114 +int dimen mtrl_card_checked_icon_margin 0x7f070115 +int dimen mtrl_card_checked_icon_size 0x7f070116 +int dimen mtrl_card_corner_radius 0x7f070117 +int dimen mtrl_card_dragged_z 0x7f070118 +int dimen mtrl_card_elevation 0x7f070119 +int dimen mtrl_card_spacing 0x7f07011a +int dimen mtrl_chip_pressed_translation_z 0x7f07011b +int dimen mtrl_chip_text_size 0x7f07011c +int dimen mtrl_edittext_rectangle_top_offset 0x7f07011d +int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f07011e +int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f07011f +int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f070120 +int dimen mtrl_extended_fab_bottom_padding 0x7f070121 +int dimen mtrl_extended_fab_corner_radius 0x7f070122 +int dimen mtrl_extended_fab_disabled_elevation 0x7f070123 +int dimen mtrl_extended_fab_disabled_translation_z 0x7f070124 +int dimen mtrl_extended_fab_elevation 0x7f070125 +int dimen mtrl_extended_fab_end_padding 0x7f070126 +int dimen mtrl_extended_fab_end_padding_icon 0x7f070127 +int dimen mtrl_extended_fab_icon_size 0x7f070128 +int dimen mtrl_extended_fab_icon_text_spacing 0x7f070129 +int dimen mtrl_extended_fab_min_height 0x7f07012a +int dimen mtrl_extended_fab_min_width 0x7f07012b +int dimen mtrl_extended_fab_start_padding 0x7f07012c +int dimen mtrl_extended_fab_start_padding_icon 0x7f07012d +int dimen mtrl_extended_fab_top_padding 0x7f07012e +int dimen mtrl_extended_fab_translation_z_base 0x7f07012f +int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f070130 +int dimen mtrl_extended_fab_translation_z_pressed 0x7f070131 +int dimen mtrl_fab_elevation 0x7f070132 +int dimen mtrl_fab_min_touch_target 0x7f070133 +int dimen mtrl_fab_translation_z_hovered_focused 0x7f070134 +int dimen mtrl_fab_translation_z_pressed 0x7f070135 +int dimen mtrl_high_ripple_default_alpha 0x7f070136 +int dimen mtrl_high_ripple_focused_alpha 0x7f070137 +int dimen mtrl_high_ripple_hovered_alpha 0x7f070138 +int dimen mtrl_high_ripple_pressed_alpha 0x7f070139 +int dimen mtrl_large_touch_target 0x7f07013a +int dimen mtrl_low_ripple_default_alpha 0x7f07013b +int dimen mtrl_low_ripple_focused_alpha 0x7f07013c +int dimen mtrl_low_ripple_hovered_alpha 0x7f07013d +int dimen mtrl_low_ripple_pressed_alpha 0x7f07013e +int dimen mtrl_min_touch_target_size 0x7f07013f +int dimen mtrl_navigation_bar_item_default_icon_size 0x7f070140 +int dimen mtrl_navigation_bar_item_default_margin 0x7f070141 +int dimen mtrl_navigation_elevation 0x7f070142 +int dimen mtrl_navigation_item_horizontal_padding 0x7f070143 +int dimen mtrl_navigation_item_icon_padding 0x7f070144 +int dimen mtrl_navigation_item_icon_size 0x7f070145 +int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f070146 +int dimen mtrl_navigation_item_shape_vertical_margin 0x7f070147 +int dimen mtrl_navigation_rail_active_text_size 0x7f070148 +int dimen mtrl_navigation_rail_compact_width 0x7f070149 +int dimen mtrl_navigation_rail_default_width 0x7f07014a +int dimen mtrl_navigation_rail_elevation 0x7f07014b +int dimen mtrl_navigation_rail_icon_margin 0x7f07014c +int dimen mtrl_navigation_rail_icon_size 0x7f07014d +int dimen mtrl_navigation_rail_margin 0x7f07014e +int dimen mtrl_navigation_rail_text_bottom_margin 0x7f07014f +int dimen mtrl_navigation_rail_text_size 0x7f070150 +int dimen mtrl_progress_circular_inset 0x7f070151 +int dimen mtrl_progress_circular_inset_extra_small 0x7f070152 +int dimen mtrl_progress_circular_inset_medium 0x7f070153 +int dimen mtrl_progress_circular_inset_small 0x7f070154 +int dimen mtrl_progress_circular_radius 0x7f070155 +int dimen mtrl_progress_circular_size 0x7f070156 +int dimen mtrl_progress_circular_size_extra_small 0x7f070157 +int dimen mtrl_progress_circular_size_medium 0x7f070158 +int dimen mtrl_progress_circular_size_small 0x7f070159 +int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f07015a +int dimen mtrl_progress_circular_track_thickness_medium 0x7f07015b +int dimen mtrl_progress_circular_track_thickness_small 0x7f07015c +int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f07015d +int dimen mtrl_progress_track_thickness 0x7f07015e +int dimen mtrl_shape_corner_size_large_component 0x7f07015f +int dimen mtrl_shape_corner_size_medium_component 0x7f070160 +int dimen mtrl_shape_corner_size_small_component 0x7f070161 +int dimen mtrl_slider_halo_radius 0x7f070162 +int dimen mtrl_slider_label_padding 0x7f070163 +int dimen mtrl_slider_label_radius 0x7f070164 +int dimen mtrl_slider_label_square_side 0x7f070165 +int dimen mtrl_slider_thumb_elevation 0x7f070166 +int dimen mtrl_slider_thumb_radius 0x7f070167 +int dimen mtrl_slider_track_height 0x7f070168 +int dimen mtrl_slider_track_side_padding 0x7f070169 +int dimen mtrl_slider_track_top 0x7f07016a +int dimen mtrl_slider_widget_height 0x7f07016b +int dimen mtrl_snackbar_action_text_color_alpha 0x7f07016c +int dimen mtrl_snackbar_background_corner_radius 0x7f07016d +int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f07016e +int dimen mtrl_snackbar_margin 0x7f07016f +int dimen mtrl_snackbar_message_margin_horizontal 0x7f070170 +int dimen mtrl_snackbar_padding_horizontal 0x7f070171 +int dimen mtrl_switch_thumb_elevation 0x7f070172 +int dimen mtrl_textinput_box_corner_radius_medium 0x7f070173 +int dimen mtrl_textinput_box_corner_radius_small 0x7f070174 +int dimen mtrl_textinput_box_label_cutout_padding 0x7f070175 +int dimen mtrl_textinput_box_stroke_width_default 0x7f070176 +int dimen mtrl_textinput_box_stroke_width_focused 0x7f070177 +int dimen mtrl_textinput_counter_margin_start 0x7f070178 +int dimen mtrl_textinput_end_icon_margin_start 0x7f070179 +int dimen mtrl_textinput_outline_box_expanded_padding 0x7f07017a +int dimen mtrl_textinput_start_icon_margin_end 0x7f07017b +int dimen mtrl_toolbar_default_height 0x7f07017c +int dimen mtrl_tooltip_arrowSize 0x7f07017d +int dimen mtrl_tooltip_cornerSize 0x7f07017e +int dimen mtrl_tooltip_minHeight 0x7f07017f +int dimen mtrl_tooltip_minWidth 0x7f070180 +int dimen mtrl_tooltip_padding 0x7f070181 +int dimen mtrl_transition_shared_axis_slide_distance 0x7f070182 +int dimen notification_action_icon_size 0x7f070183 +int dimen notification_action_text_size 0x7f070184 +int dimen notification_big_circle_margin 0x7f070185 +int dimen notification_content_margin_start 0x7f070186 +int dimen notification_large_icon_height 0x7f070187 +int dimen notification_large_icon_width 0x7f070188 +int dimen notification_main_column_padding_top 0x7f070189 +int dimen notification_media_narrow_margin 0x7f07018a +int dimen notification_right_icon_size 0x7f07018b +int dimen notification_right_side_padding_top 0x7f07018c +int dimen notification_small_icon_background_padding 0x7f07018d +int dimen notification_small_icon_size_as_large 0x7f07018e +int dimen notification_subtext_size 0x7f07018f +int dimen notification_top_pad 0x7f070190 +int dimen notification_top_pad_large_text 0x7f070191 +int dimen test_mtrl_calendar_day_cornerSize 0x7f070192 +int dimen test_navigation_bar_active_item_max_width 0x7f070193 +int dimen test_navigation_bar_active_item_min_width 0x7f070194 +int dimen test_navigation_bar_active_text_size 0x7f070195 +int dimen test_navigation_bar_elevation 0x7f070196 +int dimen test_navigation_bar_height 0x7f070197 +int dimen test_navigation_bar_icon_size 0x7f070198 +int dimen test_navigation_bar_item_max_width 0x7f070199 +int dimen test_navigation_bar_item_min_width 0x7f07019a +int dimen test_navigation_bar_label_padding 0x7f07019b +int dimen test_navigation_bar_shadow_height 0x7f07019c +int dimen test_navigation_bar_text_size 0x7f07019d +int dimen text_font_size_large 0x7f07019e +int dimen text_font_size_medium 0x7f07019f +int dimen text_font_size_normal 0x7f0701a0 +int dimen text_font_size_small 0x7f0701a1 +int dimen text_font_size_super 0x7f0701a2 +int dimen tooltip_corner_radius 0x7f0701a3 +int dimen tooltip_horizontal_padding 0x7f0701a4 +int dimen tooltip_margin 0x7f0701a5 +int dimen tooltip_precise_anchor_extra_offset 0x7f0701a6 +int dimen tooltip_precise_anchor_threshold 0x7f0701a7 +int dimen tooltip_vertical_padding 0x7f0701a8 +int dimen tooltip_y_offset_non_touch 0x7f0701a9 +int dimen tooltip_y_offset_touch 0x7f0701aa +int drawable _20240425220702 0x7f080006 +int drawable _20240425220709 0x7f080007 +int drawable _20240425220723 0x7f080008 +int drawable _20240425224255 0x7f080009 +int drawable _20240425224259 0x7f08000a +int drawable abc_ab_share_pack_mtrl_alpha 0x7f08000b +int drawable abc_action_bar_item_background_material 0x7f08000c +int drawable abc_btn_borderless_material 0x7f08000d +int drawable abc_btn_check_material 0x7f08000e +int drawable abc_btn_check_material_anim 0x7f08000f +int drawable abc_btn_check_to_on_mtrl_000 0x7f080010 +int drawable abc_btn_check_to_on_mtrl_015 0x7f080011 +int drawable abc_btn_colored_material 0x7f080012 +int drawable abc_btn_default_mtrl_shape 0x7f080013 +int drawable abc_btn_radio_material 0x7f080014 +int drawable abc_btn_radio_material_anim 0x7f080015 +int drawable abc_btn_radio_to_on_mtrl_000 0x7f080016 +int drawable abc_btn_radio_to_on_mtrl_015 0x7f080017 +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f080018 +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f080019 +int drawable abc_cab_background_internal_bg 0x7f08001a +int drawable abc_cab_background_top_material 0x7f08001b +int drawable abc_cab_background_top_mtrl_alpha 0x7f08001c +int drawable abc_control_background_material 0x7f08001d +int drawable abc_dialog_material_background 0x7f08001e +int drawable abc_edit_text_material 0x7f08001f +int drawable abc_ic_ab_back_material 0x7f080020 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080021 +int drawable abc_ic_clear_material 0x7f080022 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080023 +int drawable abc_ic_go_search_api_material 0x7f080024 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f080025 +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f080026 +int drawable abc_ic_menu_overflow_material 0x7f080027 +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f080028 +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f080029 +int drawable abc_ic_menu_share_mtrl_alpha 0x7f08002a +int drawable abc_ic_search_api_material 0x7f08002b +int drawable abc_ic_voice_search_api_material 0x7f08002c +int drawable abc_item_background_holo_dark 0x7f08002d +int drawable abc_item_background_holo_light 0x7f08002e +int drawable abc_list_divider_material 0x7f08002f +int drawable abc_list_divider_mtrl_alpha 0x7f080030 +int drawable abc_list_focused_holo 0x7f080031 +int drawable abc_list_longpressed_holo 0x7f080032 +int drawable abc_list_pressed_holo_dark 0x7f080033 +int drawable abc_list_pressed_holo_light 0x7f080034 +int drawable abc_list_selector_background_transition_holo_dark 0x7f080035 +int drawable abc_list_selector_background_transition_holo_light 0x7f080036 +int drawable abc_list_selector_disabled_holo_dark 0x7f080037 +int drawable abc_list_selector_disabled_holo_light 0x7f080038 +int drawable abc_list_selector_holo_dark 0x7f080039 +int drawable abc_list_selector_holo_light 0x7f08003a +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f08003b +int drawable abc_popup_background_mtrl_mult 0x7f08003c +int drawable abc_ratingbar_indicator_material 0x7f08003d +int drawable abc_ratingbar_material 0x7f08003e +int drawable abc_ratingbar_small_material 0x7f08003f +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f080040 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f080041 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f080042 +int drawable abc_scrubber_primary_mtrl_alpha 0x7f080043 +int drawable abc_scrubber_track_mtrl_alpha 0x7f080044 +int drawable abc_seekbar_thumb_material 0x7f080045 +int drawable abc_seekbar_tick_mark_material 0x7f080046 +int drawable abc_seekbar_track_material 0x7f080047 +int drawable abc_spinner_mtrl_am_alpha 0x7f080048 +int drawable abc_spinner_textfield_background_material 0x7f080049 +int drawable abc_star_black_48dp 0x7f08004a +int drawable abc_star_half_black_48dp 0x7f08004b +int drawable abc_switch_thumb_material 0x7f08004c +int drawable abc_switch_track_mtrl_alpha 0x7f08004d +int drawable abc_tab_indicator_material 0x7f08004e +int drawable abc_tab_indicator_mtrl_alpha 0x7f08004f +int drawable abc_text_cursor_material 0x7f080050 +int drawable abc_text_select_handle_left_mtrl 0x7f080051 +int drawable abc_text_select_handle_middle_mtrl 0x7f080052 +int drawable abc_text_select_handle_right_mtrl 0x7f080053 +int drawable abc_textfield_activated_mtrl_alpha 0x7f080054 +int drawable abc_textfield_default_mtrl_alpha 0x7f080055 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080056 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f080057 +int drawable abc_textfield_search_material 0x7f080058 +int drawable abc_vector_test 0x7f080059 +int drawable add_node 0x7f08005a +int drawable avd_hide_password 0x7f08005b +int drawable avd_show_password 0x7f08005c +int drawable bg_btn_set_color 0x7f08005d +int drawable bg_color_btn_mask 0x7f08005e +int drawable btn_checkbox_checked_mtrl 0x7f08005f +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f080060 +int drawable btn_checkbox_unchecked_mtrl 0x7f080061 +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f080062 +int drawable btn_radio_off_mtrl 0x7f080063 +int drawable btn_radio_off_to_on_mtrl_animation 0x7f080064 +int drawable btn_radio_on_mtrl 0x7f080065 +int drawable btn_radio_on_to_off_mtrl_animation 0x7f080066 +int drawable call_record 0x7f080067 +int drawable clock 0x7f080068 +int drawable delete 0x7f080069 +int drawable design_fab_background 0x7f08006a +int drawable design_ic_visibility 0x7f08006b +int drawable design_ic_visibility_off 0x7f08006c +int drawable design_password_eye 0x7f08006d +int drawable design_snackbar_background 0x7f08006e +int drawable dropdown_icon 0x7f08006f +int drawable edit_blue 0x7f080070 +int drawable edit_green 0x7f080071 +int drawable edit_red 0x7f080072 +int drawable edit_title_blue 0x7f080073 +int drawable edit_title_green 0x7f080074 +int drawable edit_title_red 0x7f080075 +int drawable edit_title_white 0x7f080076 +int drawable edit_title_yellow 0x7f080077 +int drawable edit_white 0x7f080078 +int drawable edit_yellow 0x7f080079 +int drawable font_large 0x7f08007a +int drawable font_normal 0x7f08007b +int drawable font_size_selector_bg 0x7f08007c +int drawable font_small 0x7f08007d +int drawable font_super 0x7f08007e +int drawable ic_clock_black_24dp 0x7f08007f +int drawable ic_fp_40px 0x7f080080 +int drawable ic_keyboard_black_24dp 0x7f080081 +int drawable ic_mtrl_checked_circle 0x7f080082 +int drawable ic_mtrl_chip_checked_black 0x7f080083 +int drawable ic_mtrl_chip_checked_circle 0x7f080084 +int drawable ic_mtrl_chip_close_circle 0x7f080085 +int drawable icon_app 0x7f080086 +int drawable list_background 0x7f080087 +int drawable list_blue_down 0x7f080088 +int drawable list_blue_middle 0x7f080089 +int drawable list_blue_single 0x7f08008a +int drawable list_blue_up 0x7f08008b +int drawable list_folder 0x7f08008c +int drawable list_footer_bg 0x7f08008d +int drawable list_green_down 0x7f08008e +int drawable list_green_middle 0x7f08008f +int drawable list_green_single 0x7f080090 +int drawable list_green_up 0x7f080091 +int drawable list_red_down 0x7f080092 +int drawable list_red_middle 0x7f080093 +int drawable list_red_single 0x7f080094 +int drawable list_red_up 0x7f080095 +int drawable list_white_down 0x7f080096 +int drawable list_white_middle 0x7f080097 +int drawable list_white_single 0x7f080098 +int drawable list_white_up 0x7f080099 +int drawable list_yellow_down 0x7f08009a +int drawable list_yellow_middle 0x7f08009b +int drawable list_yellow_single 0x7f08009c +int drawable list_yellow_up 0x7f08009d +int drawable listtest 0x7f08009e +int drawable lock 0x7f08009f +int drawable material_cursor_drawable 0x7f0800a0 +int drawable material_ic_calendar_black_24dp 0x7f0800a1 +int drawable material_ic_clear_black_24dp 0x7f0800a2 +int drawable material_ic_edit_black_24dp 0x7f0800a3 +int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f0800a4 +int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f0800a5 +int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f0800a6 +int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f0800a7 +int drawable material_ic_menu_arrow_down_black_24dp 0x7f0800a8 +int drawable material_ic_menu_arrow_up_black_24dp 0x7f0800a9 +int drawable menu_delete 0x7f0800aa +int drawable menu_move 0x7f0800ab +int drawable mtrl_dialog_background 0x7f0800ac +int drawable mtrl_dropdown_arrow 0x7f0800ad +int drawable mtrl_ic_arrow_drop_down 0x7f0800ae +int drawable mtrl_ic_arrow_drop_up 0x7f0800af +int drawable mtrl_ic_cancel 0x7f0800b0 +int drawable mtrl_ic_error 0x7f0800b1 +int drawable mtrl_navigation_bar_item_background 0x7f0800b2 +int drawable mtrl_popupmenu_background 0x7f0800b3 +int drawable mtrl_popupmenu_background_dark 0x7f0800b4 +int drawable mtrl_tabs_default_indicator 0x7f0800b5 +int drawable navigation_empty_icon 0x7f0800b6 +int drawable new_note 0x7f0800b7 +int drawable new_note_normal 0x7f0800b8 +int drawable new_note_pressed 0x7f0800b9 +int drawable note_bk 0x7f0800ba +int drawable note_edit_color_selector_panel 0x7f0800bb +int drawable notification 0x7f0800bc +int drawable notification_action_background 0x7f0800bd +int drawable notification_bg 0x7f0800be +int drawable notification_bg_low 0x7f0800bf +int drawable notification_bg_low_normal 0x7f0800c0 +int drawable notification_bg_low_pressed 0x7f0800c1 +int drawable notification_bg_normal 0x7f0800c2 +int drawable notification_bg_normal_pressed 0x7f0800c3 +int drawable notification_icon_background 0x7f0800c4 +int drawable notification_template_icon_bg 0x7f0800c5 +int drawable notification_template_icon_low_bg 0x7f0800c6 +int drawable notification_tile_bg 0x7f0800c7 +int drawable notify_panel_notification_icon_bg 0x7f0800c8 +int drawable search_result 0x7f0800c9 +int drawable selected 0x7f0800ca +int drawable splash 0x7f0800cb +int drawable test_custom_background 0x7f0800cc +int drawable title_alert 0x7f0800cd +int drawable title_bar_bg 0x7f0800ce +int drawable tooltip_frame_dark 0x7f0800cf +int drawable tooltip_frame_light 0x7f0800d0 +int drawable unlock 0x7f0800d1 +int drawable wallpaper1 0x7f0800d2 +int drawable wallpaper2 0x7f0800d3 +int drawable widget_2x_blue 0x7f0800d4 +int drawable widget_2x_green 0x7f0800d5 +int drawable widget_2x_red 0x7f0800d6 +int drawable widget_2x_white 0x7f0800d7 +int drawable widget_2x_yellow 0x7f0800d8 +int drawable widget_4x_blue 0x7f0800d9 +int drawable widget_4x_green 0x7f0800da +int drawable widget_4x_red 0x7f0800db +int drawable widget_4x_white 0x7f0800dc +int drawable widget_4x_yellow 0x7f0800dd +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 accessibility_action_clickable_span 0x7f09000f +int id accessibility_custom_action_0 0x7f090010 +int id accessibility_custom_action_1 0x7f090011 +int id accessibility_custom_action_10 0x7f090012 +int id accessibility_custom_action_11 0x7f090013 +int id accessibility_custom_action_12 0x7f090014 +int id accessibility_custom_action_13 0x7f090015 +int id accessibility_custom_action_14 0x7f090016 +int id accessibility_custom_action_15 0x7f090017 +int id accessibility_custom_action_16 0x7f090018 +int id accessibility_custom_action_17 0x7f090019 +int id accessibility_custom_action_18 0x7f09001a +int id accessibility_custom_action_19 0x7f09001b +int id accessibility_custom_action_2 0x7f09001c +int id accessibility_custom_action_20 0x7f09001d +int id accessibility_custom_action_21 0x7f09001e +int id accessibility_custom_action_22 0x7f09001f +int id accessibility_custom_action_23 0x7f090020 +int id accessibility_custom_action_24 0x7f090021 +int id accessibility_custom_action_25 0x7f090022 +int id accessibility_custom_action_26 0x7f090023 +int id accessibility_custom_action_27 0x7f090024 +int id accessibility_custom_action_28 0x7f090025 +int id accessibility_custom_action_29 0x7f090026 +int id accessibility_custom_action_3 0x7f090027 +int id accessibility_custom_action_30 0x7f090028 +int id accessibility_custom_action_31 0x7f090029 +int id accessibility_custom_action_4 0x7f09002a +int id accessibility_custom_action_5 0x7f09002b +int id accessibility_custom_action_6 0x7f09002c +int id accessibility_custom_action_7 0x7f09002d +int id accessibility_custom_action_8 0x7f09002e +int id accessibility_custom_action_9 0x7f09002f +int id account_dialog_subtitle 0x7f090030 +int id account_dialog_title 0x7f090031 +int id action_bar 0x7f090032 +int id action_bar_activity_content 0x7f090033 +int id action_bar_container 0x7f090034 +int id action_bar_root 0x7f090035 +int id action_bar_spinner 0x7f090036 +int id action_bar_subtitle 0x7f090037 +int id action_bar_title 0x7f090038 +int id action_container 0x7f090039 +int id action_context_bar 0x7f09003a +int id action_divider 0x7f09003b +int id action_image 0x7f09003c +int id action_menu_divider 0x7f09003d +int id action_menu_presenter 0x7f09003e +int id action_mode_bar 0x7f09003f +int id action_mode_bar_stub 0x7f090040 +int id action_mode_close_button 0x7f090041 +int id action_select_all 0x7f090042 +int id action_text 0x7f090043 +int id actions 0x7f090044 +int id activity_chooser_view_content 0x7f090045 +int id add 0x7f090046 +int id add_img_btn 0x7f090047 +int id alertTitle 0x7f090048 +int id aligned 0x7f090049 +int id all 0x7f09004a +int id always 0x7f09004b +int id amPm 0x7f09004c +int id animateToEnd 0x7f09004d +int id animateToStart 0x7f09004e +int id arc 0x7f09004f +int id asConfigured 0x7f090050 +int id async 0x7f090051 +int id auto 0x7f090052 +int id autoComplete 0x7f090053 +int id autoCompleteToEnd 0x7f090054 +int id autoCompleteToStart 0x7f090055 +int id barrier 0x7f090056 +int id baseline 0x7f090057 +int id beginOnFirstDraw 0x7f090058 +int id beginning 0x7f090059 +int id blocking 0x7f09005a +int id bottom 0x7f09005b +int id bounce 0x7f09005c +int id btn_new_note 0x7f09005d +int id btn_set_bg_color 0x7f09005e +int id button 0x7f09005f +int id buttonPanel 0x7f090060 +int id cache_measures 0x7f090061 +int id cancel 0x7f090062 +int id cancel_button 0x7f090063 +int id cb_edit_item 0x7f090064 +int id center 0x7f090065 +int id center_horizontal 0x7f090066 +int id center_vertical 0x7f090067 +int id chain 0x7f090068 +int id chains 0x7f090069 +int id checkbox 0x7f09006a +int id checked 0x7f09006b +int id chip 0x7f09006c +int id chip1 0x7f09006d +int id chip2 0x7f09006e +int id chip3 0x7f09006f +int id chip_group 0x7f090070 +int id chronometer 0x7f090071 +int id circle_center 0x7f090072 +int id clear_text 0x7f090073 +int id clip_horizontal 0x7f090074 +int id clip_vertical 0x7f090075 +int id clockwise 0x7f090076 +int id collapseActionView 0x7f090077 +int id confirm_button 0x7f090078 +int id container 0x7f090079 +int id content 0x7f09007a +int id contentPanel 0x7f09007b +int id contiguous 0x7f09007c +int id coordinator 0x7f09007d +int id cos 0x7f09007e +int id counterclockwise 0x7f09007f +int id custom 0x7f090080 +int id customPanel 0x7f090081 +int id cut 0x7f090082 +int id date 0x7f090083 +int id date_picker_actions 0x7f090084 +int id decelerate 0x7f090085 +int id decelerateAndComplete 0x7f090086 +int id decor_content_parent 0x7f090087 +int id default_activity_button 0x7f090088 +int id delete 0x7f090089 +int id deltaRelative 0x7f09008a +int id dependency_ordering 0x7f09008b +int id design_bottom_sheet 0x7f09008c +int id design_menu_item_action_area 0x7f09008d +int id design_menu_item_action_area_stub 0x7f09008e +int id design_menu_item_text 0x7f09008f +int id design_navigation_view 0x7f090090 +int id dialog_button 0x7f090091 +int id dimensions 0x7f090092 +int id direct 0x7f090093 +int id disableHome 0x7f090094 +int id disablePostScroll 0x7f090095 +int id disableScroll 0x7f090096 +int id disjoint 0x7f090097 +int id dragDown 0x7f090098 +int id dragEnd 0x7f090099 +int id dragLeft 0x7f09009a +int id dragRight 0x7f09009b +int id dragStart 0x7f09009c +int id dragUp 0x7f09009d +int id dropdown_menu 0x7f09009e +int id dummy_button 0x7f09009f +int id easeIn 0x7f0900a0 +int id easeInOut 0x7f0900a1 +int id easeOut 0x7f0900a2 +int id editTextTextPersonName 0x7f0900a3 +int id edit_query 0x7f0900a4 +int id elastic 0x7f0900a5 +int id end 0x7f0900a6 +int id endToStart 0x7f0900a7 +int id enterAlways 0x7f0900a8 +int id enterAlwaysCollapsed 0x7f0900a9 +int id error_msg 0x7f0900aa +int id et_edit_text 0x7f0900ab +int id et_foler_name 0x7f0900ac +int id exitUntilCollapsed 0x7f0900ad +int id expand_activities_button 0x7f0900ae +int id expanded_menu 0x7f0900af +int id fade 0x7f0900b0 +int id fill 0x7f0900b1 +int id fill_horizontal 0x7f0900b2 +int id fill_vertical 0x7f0900b3 +int id filled 0x7f0900b4 +int id fitToContents 0x7f0900b5 +int id fixed 0x7f0900b6 +int id flip 0x7f0900b7 +int id floating 0x7f0900b8 +int id font_size_selector 0x7f0900b9 +int id forever 0x7f0900ba +int id fragment_container_view_tag 0x7f0900bb +int id fullscreen_content 0x7f0900bc +int id fullscreen_content_controls 0x7f0900bd +int id ghost_view 0x7f0900be +int id ghost_view_holder 0x7f0900bf +int id gone 0x7f0900c0 +int id graph 0x7f0900c1 +int id graph_wrap 0x7f0900c2 +int id group_divider 0x7f0900c3 +int id grouping 0x7f0900c4 +int id groups 0x7f0900c5 +int id guideline 0x7f0900c6 +int id header_title 0x7f0900c7 +int id hideable 0x7f0900c8 +int id home 0x7f0900c9 +int id homeAsUp 0x7f0900ca +int id honorRequest 0x7f0900cb +int id hour 0x7f0900cc +int id iatBtn 0x7f0900cd +int id icon 0x7f0900ce +int id icon_group 0x7f0900cf +int id ifRoom 0x7f0900d0 +int id ignore 0x7f0900d1 +int id ignoreRequest 0x7f0900d2 +int id image 0x7f0900d3 +int id info 0x7f0900d4 +int id invisible 0x7f0900d5 +int id inward 0x7f0900d6 +int id italic 0x7f0900d7 +int id item_touch_helper_previous_elevation 0x7f0900d8 +int id iv_alert_icon 0x7f0900d9 +int id iv_bg_blue 0x7f0900da +int id iv_bg_blue_select 0x7f0900db +int id iv_bg_green 0x7f0900dc +int id iv_bg_green_select 0x7f0900dd +int id iv_bg_red 0x7f0900de +int id iv_bg_red_select 0x7f0900df +int id iv_bg_white 0x7f0900e0 +int id iv_bg_white_select 0x7f0900e1 +int id iv_bg_yellow 0x7f0900e2 +int id iv_bg_yellow_select 0x7f0900e3 +int id iv_large_select 0x7f0900e4 +int id iv_medium_select 0x7f0900e5 +int id iv_small_select 0x7f0900e6 +int id iv_super_select 0x7f0900e7 +int id jumpToEnd 0x7f0900e8 +int id jumpToStart 0x7f0900e9 +int id labeled 0x7f0900ea +int id layout 0x7f0900eb +int id left 0x7f0900ec +int id leftToRight 0x7f0900ed +int id line1 0x7f0900ee +int id line3 0x7f0900ef +int id linear 0x7f0900f0 +int id listMode 0x7f0900f1 +int id list_item 0x7f0900f2 +int id ll_font_large 0x7f0900f3 +int id ll_font_normal 0x7f0900f4 +int id ll_font_small 0x7f0900f5 +int id ll_font_super 0x7f0900f6 +int id masked 0x7f0900f7 +int id material_clock_display 0x7f0900f8 +int id material_clock_face 0x7f0900f9 +int id material_clock_hand 0x7f0900fa +int id material_clock_period_am_button 0x7f0900fb +int id material_clock_period_pm_button 0x7f0900fc +int id material_clock_period_toggle 0x7f0900fd +int id material_hour_text_input 0x7f0900fe +int id material_hour_tv 0x7f0900ff +int id material_label 0x7f090100 +int id material_minute_text_input 0x7f090101 +int id material_minute_tv 0x7f090102 +int id material_textinput_timepicker 0x7f090103 +int id material_timepicker_cancel_button 0x7f090104 +int id material_timepicker_container 0x7f090105 +int id material_timepicker_edit_text 0x7f090106 +int id material_timepicker_mode_button 0x7f090107 +int id material_timepicker_ok_button 0x7f090108 +int id material_timepicker_view 0x7f090109 +int id material_value_index 0x7f09010a +int id menu_alert 0x7f09010b +int id menu_count_word 0x7f09010c +int id menu_delete 0x7f09010d +int id menu_delete_remind 0x7f09010e +int id menu_export_text 0x7f09010f +int id menu_font_size 0x7f090110 +int id menu_list_mode 0x7f090111 +int id menu_new_folder 0x7f090112 +int id menu_new_note 0x7f090113 +int id menu_quit_secret 0x7f090114 +int id menu_search 0x7f090115 +int id menu_secret 0x7f090116 +int id menu_send_to_desktop 0x7f090117 +int id menu_setting 0x7f090118 +int id menu_share 0x7f090119 +int id menu_sync 0x7f09011a +int id menu_wallpaper1 0x7f09011b +int id menu_wallpaper2 0x7f09011c +int id message 0x7f09011d +int id middle 0x7f09011e +int id mini 0x7f09011f +int id minute 0x7f090120 +int id month_grid 0x7f090121 +int id month_navigation_bar 0x7f090122 +int id month_navigation_fragment_toggle 0x7f090123 +int id month_navigation_next 0x7f090124 +int id month_navigation_previous 0x7f090125 +int id month_title 0x7f090126 +int id motion_base 0x7f090127 +int id move 0x7f090128 +int id mtrl_anchor_parent 0x7f090129 +int id mtrl_calendar_day_selector_frame 0x7f09012a +int id mtrl_calendar_days_of_week 0x7f09012b +int id mtrl_calendar_frame 0x7f09012c +int id mtrl_calendar_main_pane 0x7f09012d +int id mtrl_calendar_months 0x7f09012e +int id mtrl_calendar_selection_frame 0x7f09012f +int id mtrl_calendar_text_input_frame 0x7f090130 +int id mtrl_calendar_year_selector_frame 0x7f090131 +int id mtrl_card_checked_layer_id 0x7f090132 +int id mtrl_child_content_container 0x7f090133 +int id mtrl_internal_children_alpha_tag 0x7f090134 +int id mtrl_motion_snapshot_view 0x7f090135 +int id mtrl_picker_fullscreen 0x7f090136 +int id mtrl_picker_header 0x7f090137 +int id mtrl_picker_header_selection_text 0x7f090138 +int id mtrl_picker_header_title_and_selection 0x7f090139 +int id mtrl_picker_header_toggle 0x7f09013a +int id mtrl_picker_text_input_date 0x7f09013b +int id mtrl_picker_text_input_range_end 0x7f09013c +int id mtrl_picker_text_input_range_start 0x7f09013d +int id mtrl_picker_title_text 0x7f09013e +int id mtrl_view_tag_bottom_padding 0x7f09013f +int id multiply 0x7f090140 +int id navigation_bar 0x7f090141 +int id navigation_bar_item_icon_view 0x7f090142 +int id navigation_bar_item_labels_group 0x7f090143 +int id navigation_bar_item_large_label_view 0x7f090144 +int id navigation_bar_item_small_label_view 0x7f090145 +int id navigation_header_container 0x7f090146 +int id never 0x7f090147 +int id noScroll 0x7f090148 +int id none 0x7f090149 +int id normal 0x7f09014a +int id note_bg_color_selector 0x7f09014b +int id note_edit_list 0x7f09014c +int id note_edit_view 0x7f09014d +int id note_item 0x7f09014e +int id note_title 0x7f09014f +int id notes_list 0x7f090150 +int id notification_background 0x7f090151 +int id notification_main_column 0x7f090152 +int id notification_main_column_container 0x7f090153 +int id num_word 0x7f090154 +int id off 0x7f090155 +int id on 0x7f090156 +int id outline 0x7f090157 +int id outward 0x7f090158 +int id packed 0x7f090159 +int id parallax 0x7f09015a +int id parent 0x7f09015b +int id parentPanel 0x7f09015c +int id parentRelative 0x7f09015d +int id parent_matrix 0x7f09015e +int id password_toggle 0x7f09015f +int id path 0x7f090160 +int id pathRelative 0x7f090161 +int id peekHeight 0x7f090162 +int id percent 0x7f090163 +int id pin 0x7f090164 +int id position 0x7f090165 +int id postLayout 0x7f090166 +int id prefenerece_sync_status_textview 0x7f090167 +int id preference_sync_button 0x7f090168 +int id progress_circular 0x7f090169 +int id progress_horizontal 0x7f09016a +int id radio 0x7f09016b +int id ratio 0x7f09016c +int id rectangles 0x7f09016d +int id reverseSawtooth 0x7f09016e +int id right 0x7f09016f +int id rightToLeft 0x7f090170 +int id right_icon 0x7f090171 +int id right_side 0x7f090172 +int id rounded 0x7f090173 +int id row_index_key 0x7f090174 +int id save_non_transition_alpha 0x7f090175 +int id save_overlay_view 0x7f090176 +int id sawtooth 0x7f090177 +int id scale 0x7f090178 +int id screen 0x7f090179 +int id scroll 0x7f09017a +int id scrollIndicatorDown 0x7f09017b +int id scrollIndicatorUp 0x7f09017c +int id scrollView 0x7f09017d +int id scrollable 0x7f09017e +int id search_badge 0x7f09017f +int id search_bar 0x7f090180 +int id search_button 0x7f090181 +int id search_close_btn 0x7f090182 +int id search_edit_frame 0x7f090183 +int id search_go_btn 0x7f090184 +int id search_mag_icon 0x7f090185 +int id search_plate 0x7f090186 +int id search_src_text 0x7f090187 +int id search_voice_btn 0x7f090188 +int id select_dialog_listview 0x7f090189 +int id selected 0x7f09018a +int id selection_menu 0x7f09018b +int id selection_type 0x7f09018c +int id shortcut 0x7f09018d +int id showCustom 0x7f09018e +int id showHome 0x7f09018f +int id showTitle 0x7f090190 +int id sin 0x7f090191 +int id skipCollapsed 0x7f090192 +int id slide 0x7f090193 +int id snackbar_action 0x7f090194 +int id snackbar_text 0x7f090195 +int id snap 0x7f090196 +int id snapMargins 0x7f090197 +int id spacer 0x7f090198 +int id special_effects_controller_view_tag 0x7f090199 +int id spline 0x7f09019a +int id split_action_bar 0x7f09019b +int id spread 0x7f09019c +int id spread_inside 0x7f09019d +int id square 0x7f09019e +int id src_atop 0x7f09019f +int id src_in 0x7f0901a0 +int id src_over 0x7f0901a1 +int id standard 0x7f0901a2 +int id start 0x7f0901a3 +int id startHorizontal 0x7f0901a4 +int id startToEnd 0x7f0901a5 +int id startVertical 0x7f0901a6 +int id staticLayout 0x7f0901a7 +int id staticPostLayout 0x7f0901a8 +int id stop 0x7f0901a9 +int id stretch 0x7f0901aa +int id submenuarrow 0x7f0901ab +int id submit_area 0x7f0901ac +int id sv_note_edit 0x7f0901ad +int id tabMode 0x7f0901ae +int id tag_accessibility_actions 0x7f0901af +int id tag_accessibility_clickable_spans 0x7f0901b0 +int id tag_accessibility_heading 0x7f0901b1 +int id tag_accessibility_pane_title 0x7f0901b2 +int id tag_on_apply_window_listener 0x7f0901b3 +int id tag_on_receive_content_listener 0x7f0901b4 +int id tag_on_receive_content_mime_types 0x7f0901b5 +int id tag_screen_reader_focusable 0x7f0901b6 +int id tag_state_description 0x7f0901b7 +int id tag_transition_group 0x7f0901b8 +int id tag_unhandled_key_event_manager 0x7f0901b9 +int id tag_unhandled_key_listeners 0x7f0901ba +int id tag_window_insets_animation_callback 0x7f0901bb +int id test_checkbox_android_button_tint 0x7f0901bc +int id test_checkbox_app_button_tint 0x7f0901bd +int id test_radiobutton_android_button_tint 0x7f0901be +int id test_radiobutton_app_button_tint 0x7f0901bf +int id text 0x7f0901c0 +int id text2 0x7f0901c1 +int id textEnd 0x7f0901c2 +int id textSpacerNoButtons 0x7f0901c3 +int id textSpacerNoTitle 0x7f0901c4 +int id textStart 0x7f0901c5 +int id textTop 0x7f0901c6 +int id text_input_end_icon 0x7f0901c7 +int id text_input_error_icon 0x7f0901c8 +int id text_input_start_icon 0x7f0901c9 +int id textinput_counter 0x7f0901ca +int id textinput_error 0x7f0901cb +int id textinput_helper_text 0x7f0901cc +int id textinput_placeholder 0x7f0901cd +int id textinput_prefix_text 0x7f0901ce +int id textinput_suffix_text 0x7f0901cf +int id time 0x7f0901d0 +int id title 0x7f0901d1 +int id titleDividerNoCustom 0x7f0901d2 +int id title_template 0x7f0901d3 +int id toggle 0x7f0901d4 +int id top 0x7f0901d5 +int id topPanel 0x7f0901d6 +int id touch_outside 0x7f0901d7 +int id transitionToEnd 0x7f0901d8 +int id transitionToStart 0x7f0901d9 +int id transition_current_scene 0x7f0901da +int id transition_layout_save 0x7f0901db +int id transition_position 0x7f0901dc +int id transition_scene_layoutid_cache 0x7f0901dd +int id transition_transform 0x7f0901de +int id triangle 0x7f0901df +int id tv_alert_date 0x7f0901e0 +int id tv_folder_name 0x7f0901e1 +int id tv_locked 0x7f0901e2 +int id tv_modified_date 0x7f0901e3 +int id tv_name 0x7f0901e4 +int id tv_time 0x7f0901e5 +int id tv_title 0x7f0901e6 +int id tv_title_bar 0x7f0901e7 +int id tv_unlocked 0x7f0901e8 +int id unchecked 0x7f0901e9 +int id uniform 0x7f0901ea +int id unlabeled 0x7f0901eb +int id up 0x7f0901ec +int id useLogo 0x7f0901ed +int id view_offset_helper 0x7f0901ee +int id view_tree_lifecycle_owner 0x7f0901ef +int id view_tree_saved_state_registry_owner 0x7f0901f0 +int id view_tree_view_model_store_owner 0x7f0901f1 +int id visible 0x7f0901f2 +int id visible_removing_fragment_view_tag 0x7f0901f3 +int id widget_bg_image 0x7f0901f4 +int id widget_text 0x7f0901f5 +int id withText 0x7f0901f6 +int id withinBounds 0x7f0901f7 +int id wrap 0x7f0901f8 +int id wrap_content 0x7f0901f9 +int id zero_corner_chip 0x7f0901fa +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 hide_password_duration 0x7f0a0008 +int integer material_motion_duration_long_1 0x7f0a0009 +int integer material_motion_duration_long_2 0x7f0a000a +int integer material_motion_duration_medium_1 0x7f0a000b +int integer material_motion_duration_medium_2 0x7f0a000c +int integer material_motion_duration_short_1 0x7f0a000d +int integer material_motion_duration_short_2 0x7f0a000e +int integer material_motion_path 0x7f0a000f +int integer mtrl_badge_max_character_count 0x7f0a0010 +int integer mtrl_btn_anim_delay_ms 0x7f0a0011 +int integer mtrl_btn_anim_duration_ms 0x7f0a0012 +int integer mtrl_calendar_header_orientation 0x7f0a0013 +int integer mtrl_calendar_selection_text_lines 0x7f0a0014 +int integer mtrl_calendar_year_selector_span 0x7f0a0015 +int integer mtrl_card_anim_delay_ms 0x7f0a0016 +int integer mtrl_card_anim_duration_ms 0x7f0a0017 +int integer mtrl_chip_anim_duration 0x7f0a0018 +int integer mtrl_tab_indicator_anim_duration_ms 0x7f0a0019 +int integer show_password_duration 0x7f0a001a +int integer status_bar_notification_info_maxnum 0x7f0a001b +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 mtrl_fast_out_linear_in 0x7f0b0007 +int interpolator mtrl_fast_out_slow_in 0x7f0b0008 +int interpolator mtrl_linear 0x7f0b0009 +int interpolator mtrl_linear_out_slow_in 0x7f0b000a +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 account_dialog_title 0x7f0c001c +int layout activity_main 0x7f0c001d +int layout activity_splash 0x7f0c001e +int layout add_account_text 0x7f0c001f +int layout custom_dialog 0x7f0c0020 +int layout datetime_picker 0x7f0c0021 +int layout design_bottom_navigation_item 0x7f0c0022 +int layout design_bottom_sheet_dialog 0x7f0c0023 +int layout design_layout_snackbar 0x7f0c0024 +int layout design_layout_snackbar_include 0x7f0c0025 +int layout design_layout_tab_icon 0x7f0c0026 +int layout design_layout_tab_text 0x7f0c0027 +int layout design_menu_item_action_area 0x7f0c0028 +int layout design_navigation_item 0x7f0c0029 +int layout design_navigation_item_header 0x7f0c002a +int layout design_navigation_item_separator 0x7f0c002b +int layout design_navigation_item_subheader 0x7f0c002c +int layout design_navigation_menu 0x7f0c002d +int layout design_navigation_menu_item 0x7f0c002e +int layout design_text_input_end_icon 0x7f0c002f +int layout design_text_input_start_icon 0x7f0c0030 +int layout dialog_edit_text 0x7f0c0031 +int layout fingerprint_dialog 0x7f0c0032 +int layout folder_list_item 0x7f0c0033 +int layout material_chip_input_combo 0x7f0c0034 +int layout material_clock_display 0x7f0c0035 +int layout material_clock_display_divider 0x7f0c0036 +int layout material_clock_period_toggle 0x7f0c0037 +int layout material_clock_period_toggle_land 0x7f0c0038 +int layout material_clockface_textview 0x7f0c0039 +int layout material_clockface_view 0x7f0c003a +int layout material_radial_view_group 0x7f0c003b +int layout material_textinput_timepicker 0x7f0c003c +int layout material_time_chip 0x7f0c003d +int layout material_time_input 0x7f0c003e +int layout material_timepicker 0x7f0c003f +int layout material_timepicker_dialog 0x7f0c0040 +int layout material_timepicker_textinput_display 0x7f0c0041 +int layout mtrl_alert_dialog 0x7f0c0042 +int layout mtrl_alert_dialog_actions 0x7f0c0043 +int layout mtrl_alert_dialog_title 0x7f0c0044 +int layout mtrl_alert_select_dialog_item 0x7f0c0045 +int layout mtrl_alert_select_dialog_multichoice 0x7f0c0046 +int layout mtrl_alert_select_dialog_singlechoice 0x7f0c0047 +int layout mtrl_calendar_day 0x7f0c0048 +int layout mtrl_calendar_day_of_week 0x7f0c0049 +int layout mtrl_calendar_days_of_week 0x7f0c004a +int layout mtrl_calendar_horizontal 0x7f0c004b +int layout mtrl_calendar_month 0x7f0c004c +int layout mtrl_calendar_month_labeled 0x7f0c004d +int layout mtrl_calendar_month_navigation 0x7f0c004e +int layout mtrl_calendar_months 0x7f0c004f +int layout mtrl_calendar_vertical 0x7f0c0050 +int layout mtrl_calendar_year 0x7f0c0051 +int layout mtrl_layout_snackbar 0x7f0c0052 +int layout mtrl_layout_snackbar_include 0x7f0c0053 +int layout mtrl_navigation_rail_item 0x7f0c0054 +int layout mtrl_picker_actions 0x7f0c0055 +int layout mtrl_picker_dialog 0x7f0c0056 +int layout mtrl_picker_fullscreen 0x7f0c0057 +int layout mtrl_picker_header_dialog 0x7f0c0058 +int layout mtrl_picker_header_fullscreen 0x7f0c0059 +int layout mtrl_picker_header_selection_text 0x7f0c005a +int layout mtrl_picker_header_title_text 0x7f0c005b +int layout mtrl_picker_header_toggle 0x7f0c005c +int layout mtrl_picker_text_input_date 0x7f0c005d +int layout mtrl_picker_text_input_date_range 0x7f0c005e +int layout note_edit 0x7f0c005f +int layout note_edit_list_item 0x7f0c0060 +int layout note_item 0x7f0c0061 +int layout note_list 0x7f0c0062 +int layout note_list_dropdown_menu 0x7f0c0063 +int layout note_list_footer 0x7f0c0064 +int layout notification_action 0x7f0c0065 +int layout notification_action_tombstone 0x7f0c0066 +int layout notification_template_custom_big 0x7f0c0067 +int layout notification_template_icon_group 0x7f0c0068 +int layout notification_template_part_chronometer 0x7f0c0069 +int layout notification_template_part_time 0x7f0c006a +int layout select_dialog_item_material 0x7f0c006b +int layout select_dialog_multichoice_material 0x7f0c006c +int layout select_dialog_singlechoice_material 0x7f0c006d +int layout settings_header 0x7f0c006e +int layout support_simple_spinner_dropdown_item 0x7f0c006f +int layout test_action_chip 0x7f0c0070 +int layout test_chip_zero_corner_radius 0x7f0c0071 +int layout test_design_checkbox 0x7f0c0072 +int layout test_design_radiobutton 0x7f0c0073 +int layout test_navigation_bar_item_layout 0x7f0c0074 +int layout test_reflow_chipgroup 0x7f0c0075 +int layout test_toolbar 0x7f0c0076 +int layout test_toolbar_custom_background 0x7f0c0077 +int layout test_toolbar_elevation 0x7f0c0078 +int layout test_toolbar_surface 0x7f0c0079 +int layout text_view_with_line_height_from_appearance 0x7f0c007a +int layout text_view_with_line_height_from_layout 0x7f0c007b +int layout text_view_with_line_height_from_style 0x7f0c007c +int layout text_view_with_theme_line_height 0x7f0c007d +int layout text_view_without_line_height 0x7f0c007e +int layout widget_2x 0x7f0c007f +int layout widget_4x 0x7f0c0080 +int menu call_note_edit 0x7f0d0000 +int menu call_record_folder 0x7f0d0001 +int menu note_edit 0x7f0d0002 +int menu note_list 0x7f0d0003 +int menu note_list_dropdown 0x7f0d0004 +int menu note_list_options 0x7f0d0005 +int menu sub_folder 0x7f0d0006 +int plurals mtrl_badge_content_description 0x7f0e0000 +int plurals search_results_title 0x7f0e0001 +int raw introduction 0x7f0f0000 +int string abc_action_bar_home_description 0x7f100000 +int string abc_action_bar_up_description 0x7f100001 +int string abc_action_menu_overflow_description 0x7f100002 +int string abc_action_mode_done 0x7f100003 +int string abc_activity_chooser_view_see_all 0x7f100004 +int string abc_activitychooserview_choose_application 0x7f100005 +int string abc_capital_off 0x7f100006 +int string abc_capital_on 0x7f100007 +int string abc_menu_alt_shortcut_label 0x7f100008 +int string abc_menu_ctrl_shortcut_label 0x7f100009 +int string abc_menu_delete_shortcut_label 0x7f10000a +int string abc_menu_enter_shortcut_label 0x7f10000b +int string abc_menu_function_shortcut_label 0x7f10000c +int string abc_menu_meta_shortcut_label 0x7f10000d +int string abc_menu_shift_shortcut_label 0x7f10000e +int string abc_menu_space_shortcut_label 0x7f10000f +int string abc_menu_sym_shortcut_label 0x7f100010 +int string abc_prepend_shortcut_label 0x7f100011 +int string abc_search_hint 0x7f100012 +int string abc_searchview_description_clear 0x7f100013 +int string abc_searchview_description_query 0x7f100014 +int string abc_searchview_description_search 0x7f100015 +int string abc_searchview_description_submit 0x7f100016 +int string abc_searchview_description_voice 0x7f100017 +int string abc_shareactionprovider_share_with 0x7f100018 +int string abc_shareactionprovider_share_with_application 0x7f100019 +int string abc_toolbar_collapse_description 0x7f10001a +int string alert_message_delete_folder 0x7f10001b +int string alert_message_delete_note 0x7f10001c +int string alert_message_delete_notes 0x7f10001d +int string alert_title_delete 0x7f10001e +int string app_name 0x7f10001f +int string app_widget2x2 0x7f100020 +int string app_widget4x4 0x7f100021 +int string appbar_scrolling_view_behavior 0x7f100022 +int string bottom_sheet_behavior 0x7f100023 +int string bottomsheet_action_expand_halfway 0x7f100024 +int string button_delete 0x7f100025 +int string button_send 0x7f100026 +int string call_record_folder_name 0x7f100027 +int string character_counter_content_description 0x7f100028 +int string character_counter_overflowed_content_description 0x7f100029 +int string character_counter_pattern 0x7f10002a +int string chip_text 0x7f10002b +int string clear_text_end_icon_content_description 0x7f10002c +int string datetime_dialog_cancel 0x7f10002d +int string datetime_dialog_ok 0x7f10002e +int string delete_remind_time_message 0x7f10002f +int string dummy_button 0x7f100030 +int string dummy_content 0x7f100031 +int string edit_message 0x7f100032 +int string error_icon_content_description 0x7f100033 +int string error_note_empty_for_clock 0x7f100034 +int string error_note_empty_for_send_to_desktop 0x7f100035 +int string error_note_not_exist 0x7f100036 +int string error_sdcard_export 0x7f100037 +int string error_sdcard_unmounted 0x7f100038 +int string error_sync_cancelled 0x7f100039 +int string error_sync_internal 0x7f10003a +int string error_sync_network 0x7f10003b +int string exposed_dropdown_menu_content_description 0x7f10003c +int string fab_transformation_scrim_behavior 0x7f10003d +int string fab_transformation_sheet_behavior 0x7f10003e +int string failed_sdcard_export 0x7f10003f +int string file_name_txt_format 0x7f100040 +int string file_path 0x7f100041 +int string folder_exist 0x7f100042 +int string forbidden_add_in_trash 0x7f100043 +int string forbidden_change_trash_name 0x7f100044 +int string forbidden_delete_trash 0x7f100045 +int string forbidden_move_to_trash 0x7f100046 +int string format_date_ymd 0x7f100047 +int string format_datetime_mdhm 0x7f100048 +int string format_exported_file_location 0x7f100049 +int string format_folder_files_count 0x7f10004a +int string format_move_notes_to_folder 0x7f10004b +int string hide_bottom_view_on_scroll_behavior 0x7f10004c +int string hint_foler_name 0x7f10004d +int string icon_content_description 0x7f10004e +int string info_note_enter_desktop 0x7f10004f +int string item_view_role_description 0x7f100050 +int string material_clock_display_divider 0x7f100051 +int string material_clock_toggle_content_description 0x7f100052 +int string material_hour_selection 0x7f100053 +int string material_hour_suffix 0x7f100054 +int string material_minute_selection 0x7f100055 +int string material_minute_suffix 0x7f100056 +int string material_motion_easing_accelerated 0x7f100057 +int string material_motion_easing_decelerated 0x7f100058 +int string material_motion_easing_emphasized 0x7f100059 +int string material_motion_easing_linear 0x7f10005a +int string material_motion_easing_standard 0x7f10005b +int string material_slider_range_end 0x7f10005c +int string material_slider_range_start 0x7f10005d +int string material_timepicker_am 0x7f10005e +int string material_timepicker_clock_mode_description 0x7f10005f +int string material_timepicker_hour 0x7f100060 +int string material_timepicker_minute 0x7f100061 +int string material_timepicker_pm 0x7f100062 +int string material_timepicker_select_time 0x7f100063 +int string material_timepicker_text_input_mode_description 0x7f100064 +int string menu_alert 0x7f100065 +int string menu_create_folder 0x7f100066 +int string menu_delete 0x7f100067 +int string menu_deselect_all 0x7f100068 +int string menu_export_text 0x7f100069 +int string menu_folder_change_name 0x7f10006a +int string menu_folder_delete 0x7f10006b +int string menu_folder_move_out 0x7f10006c +int string menu_folder_view 0x7f10006d +int string menu_font_large 0x7f10006e +int string menu_font_normal 0x7f10006f +int string menu_font_size 0x7f100070 +int string menu_font_small 0x7f100071 +int string menu_font_super 0x7f100072 +int string menu_list_mode 0x7f100073 +int string menu_move 0x7f100074 +int string menu_move_parent_folder 0x7f100075 +int string menu_normal_mode 0x7f100076 +int string menu_quit_secret 0x7f100077 +int string menu_remove_remind 0x7f100078 +int string menu_search 0x7f100079 +int string menu_secret 0x7f10007a +int string menu_select_all 0x7f10007b +int string menu_select_none 0x7f10007c +int string menu_select_title 0x7f10007d +int string menu_send_to_desktop 0x7f10007e +int string menu_setting 0x7f10007f +int string menu_share 0x7f100080 +int string menu_sync 0x7f100081 +int string menu_sync_cancel 0x7f100082 +int string menu_title_select_folder 0x7f100083 +int string mtrl_badge_numberless_content_description 0x7f100084 +int string mtrl_chip_close_icon_content_description 0x7f100085 +int string mtrl_exceed_max_badge_number_content_description 0x7f100086 +int string mtrl_exceed_max_badge_number_suffix 0x7f100087 +int string mtrl_picker_a11y_next_month 0x7f100088 +int string mtrl_picker_a11y_prev_month 0x7f100089 +int string mtrl_picker_announce_current_selection 0x7f10008a +int string mtrl_picker_cancel 0x7f10008b +int string mtrl_picker_confirm 0x7f10008c +int string mtrl_picker_date_header_selected 0x7f10008d +int string mtrl_picker_date_header_title 0x7f10008e +int string mtrl_picker_date_header_unselected 0x7f10008f +int string mtrl_picker_day_of_week_column_header 0x7f100090 +int string mtrl_picker_invalid_format 0x7f100091 +int string mtrl_picker_invalid_format_example 0x7f100092 +int string mtrl_picker_invalid_format_use 0x7f100093 +int string mtrl_picker_invalid_range 0x7f100094 +int string mtrl_picker_navigate_to_year_description 0x7f100095 +int string mtrl_picker_out_of_range 0x7f100096 +int string mtrl_picker_range_header_only_end_selected 0x7f100097 +int string mtrl_picker_range_header_only_start_selected 0x7f100098 +int string mtrl_picker_range_header_selected 0x7f100099 +int string mtrl_picker_range_header_title 0x7f10009a +int string mtrl_picker_range_header_unselected 0x7f10009b +int string mtrl_picker_save 0x7f10009c +int string mtrl_picker_text_input_date_hint 0x7f10009d +int string mtrl_picker_text_input_date_range_end_hint 0x7f10009e +int string mtrl_picker_text_input_date_range_start_hint 0x7f10009f +int string mtrl_picker_text_input_day_abbr 0x7f1000a0 +int string mtrl_picker_text_input_month_abbr 0x7f1000a1 +int string mtrl_picker_text_input_year_abbr 0x7f1000a2 +int string mtrl_picker_toggle_to_calendar_input_mode 0x7f1000a3 +int string mtrl_picker_toggle_to_day_selection 0x7f1000a4 +int string mtrl_picker_toggle_to_text_input_mode 0x7f1000a5 +int string mtrl_picker_toggle_to_year_selection 0x7f1000a6 +int string note_alert_expired 0x7f1000a7 +int string note_link_email 0x7f1000a8 +int string note_link_other 0x7f1000a9 +int string note_link_tel 0x7f1000aa +int string note_link_web 0x7f1000ab +int string notealert_enter 0x7f1000ac +int string notealert_ok 0x7f1000ad +int string notelist_menu_new 0x7f1000ae +int string notelist_string_info 0x7f1000af +int string password_toggle_content_description 0x7f1000b0 +int string path_password_eye 0x7f1000b1 +int string path_password_eye_mask_strike_through 0x7f1000b2 +int string path_password_eye_mask_visible 0x7f1000b3 +int string path_password_strike_through 0x7f1000b4 +int string preferences_account_summary 0x7f1000b5 +int string preferences_account_title 0x7f1000b6 +int string preferences_add_account 0x7f1000b7 +int string preferences_bg_random_appear_title 0x7f1000b8 +int string preferences_button_sync_cancel 0x7f1000b9 +int string preferences_button_sync_immediately 0x7f1000ba +int string preferences_dialog_change_account_title 0x7f1000bb +int string preferences_dialog_change_account_warn_msg 0x7f1000bc +int string preferences_dialog_select_account_tips 0x7f1000bd +int string preferences_dialog_select_account_title 0x7f1000be +int string preferences_last_sync_time 0x7f1000bf +int string preferences_last_sync_time_format 0x7f1000c0 +int string preferences_menu_cancel 0x7f1000c1 +int string preferences_menu_change_account 0x7f1000c2 +int string preferences_menu_remove_account 0x7f1000c3 +int string preferences_title 0x7f1000c4 +int string preferences_toast_cannot_change_account 0x7f1000c5 +int string preferences_toast_success_set_accout 0x7f1000c6 +int string search 0x7f1000c7 +int string search_hint 0x7f1000c8 +int string search_label 0x7f1000c9 +int string search_menu_title 0x7f1000ca +int string search_setting_description 0x7f1000cb +int string set_remind_time_message 0x7f1000cc +int string status_bar_notification_info_overflow 0x7f1000cd +int string success_sdcard_export 0x7f1000ce +int string success_sync_account 0x7f1000cf +int string sync_progress_init_list 0x7f1000d0 +int string sync_progress_login 0x7f1000d1 +int string sync_progress_syncing 0x7f1000d2 +int string ticker_cancel 0x7f1000d3 +int string ticker_fail 0x7f1000d4 +int string ticker_success 0x7f1000d5 +int string ticker_syncing 0x7f1000d6 +int string title_activity_splash 0x7f1000d7 +int string trash_name 0x7f1000d8 +int string wallpaper1 0x7f1000d9 +int string wallpaper2 0x7f1000da +int string widget_havenot_content 0x7f1000db +int string widget_under_visit_mode 0x7f1000dc +int style AlertDialog_AppCompat 0x7f110000 +int style AlertDialog_AppCompat_Light 0x7f110001 +int style AndroidThemeColorAccentYellow 0x7f110002 +int style Animation_AppCompat_Dialog 0x7f110003 +int style Animation_AppCompat_DropDownUp 0x7f110004 +int style Animation_AppCompat_Tooltip 0x7f110005 +int style Animation_Design_BottomSheetDialog 0x7f110006 +int style Animation_MaterialComponents_BottomSheetDialog 0x7f110007 +int style AppTheme_Base 0x7f110008 +int style AppTheme_Base_Fullscreen 0x7f110009 +int style Base_AlertDialog_AppCompat 0x7f11000a +int style Base_AlertDialog_AppCompat_Light 0x7f11000b +int style Base_Animation_AppCompat_Dialog 0x7f11000c +int style Base_Animation_AppCompat_DropDownUp 0x7f11000d +int style Base_Animation_AppCompat_Tooltip 0x7f11000e +int style Base_CardView 0x7f11000f +int style Base_DialogWindowTitle_AppCompat 0x7f110010 +int style Base_DialogWindowTitleBackground_AppCompat 0x7f110011 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f110012 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f110013 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Text 0x7f110014 +int style Base_TextAppearance_AppCompat 0x7f110015 +int style Base_TextAppearance_AppCompat_Body1 0x7f110016 +int style Base_TextAppearance_AppCompat_Body2 0x7f110017 +int style Base_TextAppearance_AppCompat_Button 0x7f110018 +int style Base_TextAppearance_AppCompat_Caption 0x7f110019 +int style Base_TextAppearance_AppCompat_Display1 0x7f11001a +int style Base_TextAppearance_AppCompat_Display2 0x7f11001b +int style Base_TextAppearance_AppCompat_Display3 0x7f11001c +int style Base_TextAppearance_AppCompat_Display4 0x7f11001d +int style Base_TextAppearance_AppCompat_Headline 0x7f11001e +int style Base_TextAppearance_AppCompat_Inverse 0x7f11001f +int style Base_TextAppearance_AppCompat_Large 0x7f110020 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f110021 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f110022 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f110023 +int style Base_TextAppearance_AppCompat_Medium 0x7f110024 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f110025 +int style Base_TextAppearance_AppCompat_Menu 0x7f110026 +int style Base_TextAppearance_AppCompat_SearchResult 0x7f110027 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f110028 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f110029 +int style Base_TextAppearance_AppCompat_Small 0x7f11002a +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f11002b +int style Base_TextAppearance_AppCompat_Subhead 0x7f11002c +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f11002d +int style Base_TextAppearance_AppCompat_Title 0x7f11002e +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f11002f +int style Base_TextAppearance_AppCompat_Tooltip 0x7f110030 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f110031 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f110032 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f110033 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f110034 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f110035 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f110036 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f110037 +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f110038 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f110039 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f11003a +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f11003b +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f11003c +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f11003d +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f11003e +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f11003f +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f110040 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f110041 +int style Base_TextAppearance_MaterialComponents_Badge 0x7f110042 +int style Base_TextAppearance_MaterialComponents_Button 0x7f110043 +int style Base_TextAppearance_MaterialComponents_Headline6 0x7f110044 +int style Base_TextAppearance_MaterialComponents_Subtitle2 0x7f110045 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f110046 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f110047 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f110048 +int style Base_Theme_AppCompat 0x7f110049 +int style Base_Theme_AppCompat_CompactMenu 0x7f11004a +int style Base_Theme_AppCompat_Dialog 0x7f11004b +int style Base_Theme_AppCompat_Dialog_Alert 0x7f11004c +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f11004d +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f11004e +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f11004f +int style Base_Theme_AppCompat_Light 0x7f110050 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f110051 +int style Base_Theme_AppCompat_Light_Dialog 0x7f110052 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f110053 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f110054 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f110055 +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f110056 +int style Base_Theme_MaterialComponents 0x7f110057 +int style Base_Theme_MaterialComponents_Bridge 0x7f110058 +int style Base_Theme_MaterialComponents_CompactMenu 0x7f110059 +int style Base_Theme_MaterialComponents_Dialog 0x7f11005a +int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f11005b +int style Base_Theme_MaterialComponents_Dialog_Bridge 0x7f11005c +int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f11005d +int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f11005e +int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f11005f +int style Base_Theme_MaterialComponents_Light 0x7f110060 +int style Base_Theme_MaterialComponents_Light_Bridge 0x7f110061 +int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f110062 +int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f110063 +int style Base_Theme_MaterialComponents_Light_Dialog 0x7f110064 +int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f110065 +int style Base_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f110066 +int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f110067 +int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f110068 +int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f110069 +int style Base_ThemeOverlay_AppCompat 0x7f11006a +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f11006b +int style Base_ThemeOverlay_AppCompat_Dark 0x7f11006c +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f11006d +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f11006e +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f11006f +int style Base_ThemeOverlay_AppCompat_Light 0x7f110070 +int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f110071 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f110072 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f110073 +int style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f110074 +int style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f110075 +int style Base_V14_Theme_MaterialComponents 0x7f110076 +int style Base_V14_Theme_MaterialComponents_Bridge 0x7f110077 +int style Base_V14_Theme_MaterialComponents_Dialog 0x7f110078 +int style Base_V14_Theme_MaterialComponents_Dialog_Bridge 0x7f110079 +int style Base_V14_Theme_MaterialComponents_Light 0x7f11007a +int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f11007b +int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f11007c +int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f11007d +int style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f11007e +int style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f11007f +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f110080 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f110081 +int style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f110082 +int style Base_V21_Theme_AppCompat 0x7f110083 +int style Base_V21_Theme_AppCompat_Dialog 0x7f110084 +int style Base_V21_Theme_AppCompat_Light 0x7f110085 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f110086 +int style Base_V21_Theme_MaterialComponents 0x7f110087 +int style Base_V21_Theme_MaterialComponents_Dialog 0x7f110088 +int style Base_V21_Theme_MaterialComponents_Light 0x7f110089 +int style Base_V21_Theme_MaterialComponents_Light_Dialog 0x7f11008a +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f11008b +int style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f11008c +int style Base_V22_Theme_AppCompat 0x7f11008d +int style Base_V22_Theme_AppCompat_Light 0x7f11008e +int style Base_V23_Theme_AppCompat 0x7f11008f +int style Base_V23_Theme_AppCompat_Light 0x7f110090 +int style Base_V26_Theme_AppCompat 0x7f110091 +int style Base_V26_Theme_AppCompat_Light 0x7f110092 +int style Base_V26_Widget_AppCompat_Toolbar 0x7f110093 +int style Base_V28_Theme_AppCompat 0x7f110094 +int style Base_V28_Theme_AppCompat_Light 0x7f110095 +int style Base_V7_Theme_AppCompat 0x7f110096 +int style Base_V7_Theme_AppCompat_Dialog 0x7f110097 +int style Base_V7_Theme_AppCompat_Light 0x7f110098 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f110099 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f11009a +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f11009b +int style Base_V7_Widget_AppCompat_EditText 0x7f11009c +int style Base_V7_Widget_AppCompat_Toolbar 0x7f11009d +int style Base_Widget_AppCompat_ActionBar 0x7f11009e +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f11009f +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f1100a0 +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f1100a1 +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f1100a2 +int style Base_Widget_AppCompat_ActionButton 0x7f1100a3 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f1100a4 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f1100a5 +int style Base_Widget_AppCompat_ActionMode 0x7f1100a6 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f1100a7 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f1100a8 +int style Base_Widget_AppCompat_Button 0x7f1100a9 +int style Base_Widget_AppCompat_Button_Borderless 0x7f1100aa +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f1100ab +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f1100ac +int style Base_Widget_AppCompat_Button_Colored 0x7f1100ad +int style Base_Widget_AppCompat_Button_Small 0x7f1100ae +int style Base_Widget_AppCompat_ButtonBar 0x7f1100af +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f1100b0 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f1100b1 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f1100b2 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f1100b3 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f1100b4 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f1100b5 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f1100b6 +int style Base_Widget_AppCompat_EditText 0x7f1100b7 +int style Base_Widget_AppCompat_ImageButton 0x7f1100b8 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f1100b9 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f1100ba +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f1100bb +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f1100bc +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1100bd +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f1100be +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f1100bf +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1100c0 +int style Base_Widget_AppCompat_ListMenuView 0x7f1100c1 +int style Base_Widget_AppCompat_ListPopupWindow 0x7f1100c2 +int style Base_Widget_AppCompat_ListView 0x7f1100c3 +int style Base_Widget_AppCompat_ListView_DropDown 0x7f1100c4 +int style Base_Widget_AppCompat_ListView_Menu 0x7f1100c5 +int style Base_Widget_AppCompat_PopupMenu 0x7f1100c6 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f1100c7 +int style Base_Widget_AppCompat_PopupWindow 0x7f1100c8 +int style Base_Widget_AppCompat_ProgressBar 0x7f1100c9 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f1100ca +int style Base_Widget_AppCompat_RatingBar 0x7f1100cb +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f1100cc +int style Base_Widget_AppCompat_RatingBar_Small 0x7f1100cd +int style Base_Widget_AppCompat_SearchView 0x7f1100ce +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f1100cf +int style Base_Widget_AppCompat_SeekBar 0x7f1100d0 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f1100d1 +int style Base_Widget_AppCompat_Spinner 0x7f1100d2 +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f1100d3 +int style Base_Widget_AppCompat_TextView 0x7f1100d4 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1100d5 +int style Base_Widget_AppCompat_Toolbar 0x7f1100d6 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1100d7 +int style Base_Widget_Design_TabLayout 0x7f1100d8 +int style Base_Widget_MaterialComponents_AutoCompleteTextView 0x7f1100d9 +int style Base_Widget_MaterialComponents_CheckedTextView 0x7f1100da +int style Base_Widget_MaterialComponents_Chip 0x7f1100db +int style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton 0x7f1100dc +int style Base_Widget_MaterialComponents_PopupMenu 0x7f1100dd +int style Base_Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1100de +int style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1100df +int style Base_Widget_MaterialComponents_PopupMenu_Overflow 0x7f1100e0 +int style Base_Widget_MaterialComponents_Slider 0x7f1100e1 +int style Base_Widget_MaterialComponents_Snackbar 0x7f1100e2 +int style Base_Widget_MaterialComponents_TextInputEditText 0x7f1100e3 +int style Base_Widget_MaterialComponents_TextInputLayout 0x7f1100e4 +int style Base_Widget_MaterialComponents_TextView 0x7f1100e5 +int style CardView 0x7f1100e6 +int style CardView_Dark 0x7f1100e7 +int style CardView_Light 0x7f1100e8 +int style EmptyTheme 0x7f1100e9 +int style HighlightTextAppearancePrimary 0x7f1100ea +int style HighlightTextAppearanceSecondary 0x7f1100eb +int style MaterialAlertDialog_MaterialComponents 0x7f1100ec +int style MaterialAlertDialog_MaterialComponents_Body_Text 0x7f1100ed +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar 0x7f1100ee +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner 0x7f1100ef +int style MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f1100f0 +int style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked 0x7f1100f1 +int style MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f1100f2 +int style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked 0x7f1100f3 +int style MaterialAlertDialog_MaterialComponents_Title_Text 0x7f1100f4 +int style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked 0x7f1100f5 +int style NoteActionBarStyle 0x7f1100f6 +int style NoteTheme 0x7f1100f7 +int style Platform_AppCompat 0x7f1100f8 +int style Platform_AppCompat_Light 0x7f1100f9 +int style Platform_MaterialComponents 0x7f1100fa +int style Platform_MaterialComponents_Dialog 0x7f1100fb +int style Platform_MaterialComponents_Light 0x7f1100fc +int style Platform_MaterialComponents_Light_Dialog 0x7f1100fd +int style Platform_ThemeOverlay_AppCompat 0x7f1100fe +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1100ff +int style Platform_ThemeOverlay_AppCompat_Light 0x7f110100 +int style Platform_V21_AppCompat 0x7f110101 +int style Platform_V21_AppCompat_Light 0x7f110102 +int style Platform_V25_AppCompat 0x7f110103 +int style Platform_V25_AppCompat_Light 0x7f110104 +int style Platform_Widget_AppCompat_Spinner 0x7f110105 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f110106 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f110107 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f110108 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f110109 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f11010a +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f11010b +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f11010c +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f11010d +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f11010e +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f11010f +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f110110 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f110111 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f110112 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f110113 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f110114 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f110115 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f110116 +int style ShapeAppearance_MaterialComponents 0x7f110117 +int style ShapeAppearance_MaterialComponents_LargeComponent 0x7f110118 +int style ShapeAppearance_MaterialComponents_MediumComponent 0x7f110119 +int style ShapeAppearance_MaterialComponents_SmallComponent 0x7f11011a +int style ShapeAppearance_MaterialComponents_Test 0x7f11011b +int style ShapeAppearance_MaterialComponents_Tooltip 0x7f11011c +int style ShapeAppearanceOverlay 0x7f11011d +int style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize 0x7f11011e +int style ShapeAppearanceOverlay_BottomRightCut 0x7f11011f +int style ShapeAppearanceOverlay_Cut 0x7f110120 +int style ShapeAppearanceOverlay_DifferentCornerSize 0x7f110121 +int style ShapeAppearanceOverlay_MaterialComponents_BottomSheet 0x7f110122 +int style ShapeAppearanceOverlay_MaterialComponents_Chip 0x7f110123 +int style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton 0x7f110124 +int style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton 0x7f110125 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f110126 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen 0x7f110127 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year 0x7f110128 +int style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox 0x7f110129 +int style ShapeAppearanceOverlay_TopLeftCut 0x7f11012a +int style ShapeAppearanceOverlay_TopRightDifferentCornerSize 0x7f11012b +int style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f11012c +int style Test_Theme_MaterialComponents_MaterialCalendar 0x7f11012d +int style Test_Widget_MaterialComponents_MaterialCalendar 0x7f11012e +int style Test_Widget_MaterialComponents_MaterialCalendar_Day 0x7f11012f +int style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f110130 +int style TestStyleWithLineHeight 0x7f110131 +int style TestStyleWithLineHeightAppearance 0x7f110132 +int style TestStyleWithThemeLineHeightAttribute 0x7f110133 +int style TestStyleWithoutLineHeight 0x7f110134 +int style TestThemeWithLineHeight 0x7f110135 +int style TestThemeWithLineHeightDisabled 0x7f110136 +int style TextAppearance_AppCompat 0x7f110137 +int style TextAppearance_AppCompat_Body1 0x7f110138 +int style TextAppearance_AppCompat_Body2 0x7f110139 +int style TextAppearance_AppCompat_Button 0x7f11013a +int style TextAppearance_AppCompat_Caption 0x7f11013b +int style TextAppearance_AppCompat_Display1 0x7f11013c +int style TextAppearance_AppCompat_Display2 0x7f11013d +int style TextAppearance_AppCompat_Display3 0x7f11013e +int style TextAppearance_AppCompat_Display4 0x7f11013f +int style TextAppearance_AppCompat_Headline 0x7f110140 +int style TextAppearance_AppCompat_Inverse 0x7f110141 +int style TextAppearance_AppCompat_Large 0x7f110142 +int style TextAppearance_AppCompat_Large_Inverse 0x7f110143 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f110144 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f110145 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f110146 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f110147 +int style TextAppearance_AppCompat_Medium 0x7f110148 +int style TextAppearance_AppCompat_Medium_Inverse 0x7f110149 +int style TextAppearance_AppCompat_Menu 0x7f11014a +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f11014b +int style TextAppearance_AppCompat_SearchResult_Title 0x7f11014c +int style TextAppearance_AppCompat_Small 0x7f11014d +int style TextAppearance_AppCompat_Small_Inverse 0x7f11014e +int style TextAppearance_AppCompat_Subhead 0x7f11014f +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f110150 +int style TextAppearance_AppCompat_Title 0x7f110151 +int style TextAppearance_AppCompat_Title_Inverse 0x7f110152 +int style TextAppearance_AppCompat_Tooltip 0x7f110153 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f110154 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f110155 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f110156 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f110157 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f110158 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f110159 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f11015a +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f11015b +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f11015c +int style TextAppearance_AppCompat_Widget_Button 0x7f11015d +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f11015e +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f11015f +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f110160 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f110161 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f110162 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f110163 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f110164 +int style TextAppearance_AppCompat_Widget_Switch 0x7f110165 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f110166 +int style TextAppearance_Compat_Notification 0x7f110167 +int style TextAppearance_Compat_Notification_Info 0x7f110168 +int style TextAppearance_Compat_Notification_Line2 0x7f110169 +int style TextAppearance_Compat_Notification_Time 0x7f11016a +int style TextAppearance_Compat_Notification_Title 0x7f11016b +int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f11016c +int style TextAppearance_Design_Counter 0x7f11016d +int style TextAppearance_Design_Counter_Overflow 0x7f11016e +int style TextAppearance_Design_Error 0x7f11016f +int style TextAppearance_Design_HelperText 0x7f110170 +int style TextAppearance_Design_Hint 0x7f110171 +int style TextAppearance_Design_Placeholder 0x7f110172 +int style TextAppearance_Design_Prefix 0x7f110173 +int style TextAppearance_Design_Snackbar_Message 0x7f110174 +int style TextAppearance_Design_Suffix 0x7f110175 +int style TextAppearance_Design_Tab 0x7f110176 +int style TextAppearance_MaterialComponents_Badge 0x7f110177 +int style TextAppearance_MaterialComponents_Body1 0x7f110178 +int style TextAppearance_MaterialComponents_Body2 0x7f110179 +int style TextAppearance_MaterialComponents_Button 0x7f11017a +int style TextAppearance_MaterialComponents_Caption 0x7f11017b +int style TextAppearance_MaterialComponents_Chip 0x7f11017c +int style TextAppearance_MaterialComponents_Headline1 0x7f11017d +int style TextAppearance_MaterialComponents_Headline2 0x7f11017e +int style TextAppearance_MaterialComponents_Headline3 0x7f11017f +int style TextAppearance_MaterialComponents_Headline4 0x7f110180 +int style TextAppearance_MaterialComponents_Headline5 0x7f110181 +int style TextAppearance_MaterialComponents_Headline6 0x7f110182 +int style TextAppearance_MaterialComponents_Overline 0x7f110183 +int style TextAppearance_MaterialComponents_Subtitle1 0x7f110184 +int style TextAppearance_MaterialComponents_Subtitle2 0x7f110185 +int style TextAppearance_MaterialComponents_TimePicker_Title 0x7f110186 +int style TextAppearance_MaterialComponents_Tooltip 0x7f110187 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f110188 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f110189 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f11018a +int style TextAppearanceLarge 0x7f11018b +int style TextAppearanceMedium 0x7f11018c +int style TextAppearanceNormal 0x7f11018d +int style TextAppearancePrimaryItem 0x7f11018e +int style TextAppearanceSecondaryItem 0x7f11018f +int style TextAppearanceSuper 0x7f110190 +int style TextAppearanceUnderMenuIcon 0x7f110191 +int style Theme_AppCompat 0x7f110192 +int style Theme_AppCompat_CompactMenu 0x7f110193 +int style Theme_AppCompat_DayNight 0x7f110194 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f110195 +int style Theme_AppCompat_DayNight_Dialog 0x7f110196 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f110197 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f110198 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f110199 +int style Theme_AppCompat_DayNight_NoActionBar 0x7f11019a +int style Theme_AppCompat_Dialog 0x7f11019b +int style Theme_AppCompat_Dialog_Alert 0x7f11019c +int style Theme_AppCompat_Dialog_MinWidth 0x7f11019d +int style Theme_AppCompat_DialogWhenLarge 0x7f11019e +int style Theme_AppCompat_Empty 0x7f11019f +int style Theme_AppCompat_Light 0x7f1101a0 +int style Theme_AppCompat_Light_DarkActionBar 0x7f1101a1 +int style Theme_AppCompat_Light_Dialog 0x7f1101a2 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f1101a3 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f1101a4 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f1101a5 +int style Theme_AppCompat_Light_NoActionBar 0x7f1101a6 +int style Theme_AppCompat_NoActionBar 0x7f1101a7 +int style Theme_Design 0x7f1101a8 +int style Theme_Design_BottomSheetDialog 0x7f1101a9 +int style Theme_Design_Light 0x7f1101aa +int style Theme_Design_Light_BottomSheetDialog 0x7f1101ab +int style Theme_Design_Light_NoActionBar 0x7f1101ac +int style Theme_Design_NoActionBar 0x7f1101ad +int style Theme_MaterialComponents 0x7f1101ae +int style Theme_MaterialComponents_BottomSheetDialog 0x7f1101af +int style Theme_MaterialComponents_Bridge 0x7f1101b0 +int style Theme_MaterialComponents_CompactMenu 0x7f1101b1 +int style Theme_MaterialComponents_DayNight 0x7f1101b2 +int style Theme_MaterialComponents_DayNight_BottomSheetDialog 0x7f1101b3 +int style Theme_MaterialComponents_DayNight_Bridge 0x7f1101b4 +int style Theme_MaterialComponents_DayNight_DarkActionBar 0x7f1101b5 +int style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge 0x7f1101b6 +int style Theme_MaterialComponents_DayNight_Dialog 0x7f1101b7 +int style Theme_MaterialComponents_DayNight_Dialog_Alert 0x7f1101b8 +int style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge 0x7f1101b9 +int style Theme_MaterialComponents_DayNight_Dialog_Bridge 0x7f1101ba +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize 0x7f1101bb +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge 0x7f1101bc +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth 0x7f1101bd +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge 0x7f1101be +int style Theme_MaterialComponents_DayNight_DialogWhenLarge 0x7f1101bf +int style Theme_MaterialComponents_DayNight_NoActionBar 0x7f1101c0 +int style Theme_MaterialComponents_DayNight_NoActionBar_Bridge 0x7f1101c1 +int style Theme_MaterialComponents_Dialog 0x7f1101c2 +int style Theme_MaterialComponents_Dialog_Alert 0x7f1101c3 +int style Theme_MaterialComponents_Dialog_Alert_Bridge 0x7f1101c4 +int style Theme_MaterialComponents_Dialog_Bridge 0x7f1101c5 +int style Theme_MaterialComponents_Dialog_FixedSize 0x7f1101c6 +int style Theme_MaterialComponents_Dialog_FixedSize_Bridge 0x7f1101c7 +int style Theme_MaterialComponents_Dialog_MinWidth 0x7f1101c8 +int style Theme_MaterialComponents_Dialog_MinWidth_Bridge 0x7f1101c9 +int style Theme_MaterialComponents_DialogWhenLarge 0x7f1101ca +int style Theme_MaterialComponents_Light 0x7f1101cb +int style Theme_MaterialComponents_Light_BarSize 0x7f1101cc +int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f1101cd +int style Theme_MaterialComponents_Light_Bridge 0x7f1101ce +int style Theme_MaterialComponents_Light_DarkActionBar 0x7f1101cf +int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f1101d0 +int style Theme_MaterialComponents_Light_Dialog 0x7f1101d1 +int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f1101d2 +int style Theme_MaterialComponents_Light_Dialog_Alert_Bridge 0x7f1101d3 +int style Theme_MaterialComponents_Light_Dialog_Bridge 0x7f1101d4 +int style Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f1101d5 +int style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge 0x7f1101d6 +int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f1101d7 +int style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge 0x7f1101d8 +int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f1101d9 +int style Theme_MaterialComponents_Light_LargeTouch 0x7f1101da +int style Theme_MaterialComponents_Light_NoActionBar 0x7f1101db +int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f1101dc +int style Theme_MaterialComponents_NoActionBar 0x7f1101dd +int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f1101de +int style ThemeOverlay_AppCompat 0x7f1101df +int style ThemeOverlay_AppCompat_ActionBar 0x7f1101e0 +int style ThemeOverlay_AppCompat_Dark 0x7f1101e1 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f1101e2 +int style ThemeOverlay_AppCompat_DayNight 0x7f1101e3 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f1101e4 +int style ThemeOverlay_AppCompat_Dialog 0x7f1101e5 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f1101e6 +int style ThemeOverlay_AppCompat_Light 0x7f1101e7 +int style ThemeOverlay_Design_TextInputEditText 0x7f1101e8 +int style ThemeOverlay_MaterialComponents 0x7f1101e9 +int style ThemeOverlay_MaterialComponents_ActionBar 0x7f1101ea +int style ThemeOverlay_MaterialComponents_ActionBar_Primary 0x7f1101eb +int style ThemeOverlay_MaterialComponents_ActionBar_Surface 0x7f1101ec +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView 0x7f1101ed +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f1101ee +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f1101ef +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f1101f0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f1101f1 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Primary 0x7f1101f2 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Surface 0x7f1101f3 +int style ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f1101f4 +int style ThemeOverlay_MaterialComponents_Dark 0x7f1101f5 +int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f1101f6 +int style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog 0x7f1101f7 +int style ThemeOverlay_MaterialComponents_Dialog 0x7f1101f8 +int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f1101f9 +int style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f1101fa +int style ThemeOverlay_MaterialComponents_Light 0x7f1101fb +int style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f1101fc +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f1101fd +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered 0x7f1101fe +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date 0x7f1101ff +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar 0x7f110200 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text 0x7f110201 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day 0x7f110202 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner 0x7f110203 +int style ThemeOverlay_MaterialComponents_MaterialCalendar 0x7f110204 +int style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen 0x7f110205 +int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f110206 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f110207 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f110208 +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f110209 +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f11020a +int style ThemeOverlay_MaterialComponents_TimePicker 0x7f11020b +int style ThemeOverlay_MaterialComponents_TimePicker_Display 0x7f11020c +int style ThemeOverlay_MaterialComponents_Toolbar_Primary 0x7f11020d +int style ThemeOverlay_MaterialComponents_Toolbar_Surface 0x7f11020e +int style ThemeOverlay_Mynotes_FullscreenContainer 0x7f11020f +int style ThemeOverlayColorAccentRed 0x7f110210 +int style UI_AppTheme 0x7f110211 +int style Widget_AppCompat_ActionBar 0x7f110212 +int style Widget_AppCompat_ActionBar_Solid 0x7f110213 +int style Widget_AppCompat_ActionBar_TabBar 0x7f110214 +int style Widget_AppCompat_ActionBar_TabText 0x7f110215 +int style Widget_AppCompat_ActionBar_TabView 0x7f110216 +int style Widget_AppCompat_ActionButton 0x7f110217 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f110218 +int style Widget_AppCompat_ActionButton_Overflow 0x7f110219 +int style Widget_AppCompat_ActionMode 0x7f11021a +int style Widget_AppCompat_ActivityChooserView 0x7f11021b +int style Widget_AppCompat_AutoCompleteTextView 0x7f11021c +int style Widget_AppCompat_Button 0x7f11021d +int style Widget_AppCompat_Button_Borderless 0x7f11021e +int style Widget_AppCompat_Button_Borderless_Colored 0x7f11021f +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f110220 +int style Widget_AppCompat_Button_Colored 0x7f110221 +int style Widget_AppCompat_Button_Small 0x7f110222 +int style Widget_AppCompat_ButtonBar 0x7f110223 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f110224 +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f110225 +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f110226 +int style Widget_AppCompat_CompoundButton_Switch 0x7f110227 +int style Widget_AppCompat_DrawerArrowToggle 0x7f110228 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f110229 +int style Widget_AppCompat_EditText 0x7f11022a +int style Widget_AppCompat_ImageButton 0x7f11022b +int style Widget_AppCompat_Light_ActionBar 0x7f11022c +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f11022d +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f11022e +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f11022f +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f110230 +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f110231 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f110232 +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f110233 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f110234 +int style Widget_AppCompat_Light_ActionButton 0x7f110235 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f110236 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f110237 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f110238 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f110239 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f11023a +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f11023b +int style Widget_AppCompat_Light_ListPopupWindow 0x7f11023c +int style Widget_AppCompat_Light_ListView_DropDown 0x7f11023d +int style Widget_AppCompat_Light_PopupMenu 0x7f11023e +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f11023f +int style Widget_AppCompat_Light_SearchView 0x7f110240 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f110241 +int style Widget_AppCompat_ListMenuView 0x7f110242 +int style Widget_AppCompat_ListPopupWindow 0x7f110243 +int style Widget_AppCompat_ListView 0x7f110244 +int style Widget_AppCompat_ListView_DropDown 0x7f110245 +int style Widget_AppCompat_ListView_Menu 0x7f110246 +int style Widget_AppCompat_PopupMenu 0x7f110247 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f110248 +int style Widget_AppCompat_PopupWindow 0x7f110249 +int style Widget_AppCompat_ProgressBar 0x7f11024a +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f11024b +int style Widget_AppCompat_RatingBar 0x7f11024c +int style Widget_AppCompat_RatingBar_Indicator 0x7f11024d +int style Widget_AppCompat_RatingBar_Small 0x7f11024e +int style Widget_AppCompat_SearchView 0x7f11024f +int style Widget_AppCompat_SearchView_ActionBar 0x7f110250 +int style Widget_AppCompat_SeekBar 0x7f110251 +int style Widget_AppCompat_SeekBar_Discrete 0x7f110252 +int style Widget_AppCompat_Spinner 0x7f110253 +int style Widget_AppCompat_Spinner_DropDown 0x7f110254 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f110255 +int style Widget_AppCompat_Spinner_Underlined 0x7f110256 +int style Widget_AppCompat_TextView 0x7f110257 +int style Widget_AppCompat_TextView_SpinnerItem 0x7f110258 +int style Widget_AppCompat_Toolbar 0x7f110259 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f11025a +int style Widget_AppTheme_Base_ActionBar_Fullscreen 0x7f11025b +int style Widget_AppTheme_Base_ButtonBar_Fullscreen 0x7f11025c +int style Widget_Compat_NotificationActionContainer 0x7f11025d +int style Widget_Compat_NotificationActionText 0x7f11025e +int style Widget_Design_AppBarLayout 0x7f11025f +int style Widget_Design_BottomNavigationView 0x7f110260 +int style Widget_Design_BottomSheet_Modal 0x7f110261 +int style Widget_Design_CollapsingToolbar 0x7f110262 +int style Widget_Design_FloatingActionButton 0x7f110263 +int style Widget_Design_NavigationView 0x7f110264 +int style Widget_Design_ScrimInsetsFrameLayout 0x7f110265 +int style Widget_Design_Snackbar 0x7f110266 +int style Widget_Design_TabLayout 0x7f110267 +int style Widget_Design_TextInputEditText 0x7f110268 +int style Widget_Design_TextInputLayout 0x7f110269 +int style Widget_MaterialComponents_ActionBar_Primary 0x7f11026a +int style Widget_MaterialComponents_ActionBar_PrimarySurface 0x7f11026b +int style Widget_MaterialComponents_ActionBar_Solid 0x7f11026c +int style Widget_MaterialComponents_ActionBar_Surface 0x7f11026d +int style Widget_MaterialComponents_AppBarLayout_Primary 0x7f11026e +int style Widget_MaterialComponents_AppBarLayout_PrimarySurface 0x7f11026f +int style Widget_MaterialComponents_AppBarLayout_Surface 0x7f110270 +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f110271 +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f110272 +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f110273 +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f110274 +int style Widget_MaterialComponents_Badge 0x7f110275 +int style Widget_MaterialComponents_BottomAppBar 0x7f110276 +int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f110277 +int style Widget_MaterialComponents_BottomAppBar_PrimarySurface 0x7f110278 +int style Widget_MaterialComponents_BottomNavigationView 0x7f110279 +int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f11027a +int style Widget_MaterialComponents_BottomNavigationView_PrimarySurface 0x7f11027b +int style Widget_MaterialComponents_BottomSheet 0x7f11027c +int style Widget_MaterialComponents_BottomSheet_Modal 0x7f11027d +int style Widget_MaterialComponents_Button 0x7f11027e +int style Widget_MaterialComponents_Button_Icon 0x7f11027f +int style Widget_MaterialComponents_Button_OutlinedButton 0x7f110280 +int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f110281 +int style Widget_MaterialComponents_Button_TextButton 0x7f110282 +int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f110283 +int style Widget_MaterialComponents_Button_TextButton_Dialog_Flush 0x7f110284 +int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f110285 +int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f110286 +int style Widget_MaterialComponents_Button_TextButton_Snackbar 0x7f110287 +int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f110288 +int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f110289 +int style Widget_MaterialComponents_CardView 0x7f11028a +int style Widget_MaterialComponents_CheckedTextView 0x7f11028b +int style Widget_MaterialComponents_Chip_Action 0x7f11028c +int style Widget_MaterialComponents_Chip_Choice 0x7f11028d +int style Widget_MaterialComponents_Chip_Entry 0x7f11028e +int style Widget_MaterialComponents_Chip_Filter 0x7f11028f +int style Widget_MaterialComponents_ChipGroup 0x7f110290 +int style Widget_MaterialComponents_CircularProgressIndicator 0x7f110291 +int style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall 0x7f110292 +int style Widget_MaterialComponents_CircularProgressIndicator_Medium 0x7f110293 +int style Widget_MaterialComponents_CircularProgressIndicator_Small 0x7f110294 +int style Widget_MaterialComponents_CollapsingToolbar 0x7f110295 +int style Widget_MaterialComponents_CompoundButton_CheckBox 0x7f110296 +int style Widget_MaterialComponents_CompoundButton_RadioButton 0x7f110297 +int style Widget_MaterialComponents_CompoundButton_Switch 0x7f110298 +int style Widget_MaterialComponents_ExtendedFloatingActionButton 0x7f110299 +int style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon 0x7f11029a +int style Widget_MaterialComponents_FloatingActionButton 0x7f11029b +int style Widget_MaterialComponents_Light_ActionBar_Solid 0x7f11029c +int style Widget_MaterialComponents_LinearProgressIndicator 0x7f11029d +int style Widget_MaterialComponents_MaterialButtonToggleGroup 0x7f11029e +int style Widget_MaterialComponents_MaterialCalendar 0x7f11029f +int style Widget_MaterialComponents_MaterialCalendar_Day 0x7f1102a0 +int style Widget_MaterialComponents_MaterialCalendar_Day_Invalid 0x7f1102a1 +int style Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f1102a2 +int style Widget_MaterialComponents_MaterialCalendar_Day_Today 0x7f1102a3 +int style Widget_MaterialComponents_MaterialCalendar_DayTextView 0x7f1102a4 +int style Widget_MaterialComponents_MaterialCalendar_Fullscreen 0x7f1102a5 +int style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton 0x7f1102a6 +int style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton 0x7f1102a7 +int style Widget_MaterialComponents_MaterialCalendar_HeaderDivider 0x7f1102a8 +int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout 0x7f1102a9 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection 0x7f1102aa +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen 0x7f1102ab +int style Widget_MaterialComponents_MaterialCalendar_HeaderTitle 0x7f1102ac +int style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x7f1102ad +int style Widget_MaterialComponents_MaterialCalendar_Item 0x7f1102ae +int style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton 0x7f1102af +int style Widget_MaterialComponents_MaterialCalendar_MonthTextView 0x7f1102b0 +int style Widget_MaterialComponents_MaterialCalendar_Year 0x7f1102b1 +int style Widget_MaterialComponents_MaterialCalendar_Year_Selected 0x7f1102b2 +int style Widget_MaterialComponents_MaterialCalendar_Year_Today 0x7f1102b3 +int style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton 0x7f1102b4 +int style Widget_MaterialComponents_NavigationRailView 0x7f1102b5 +int style Widget_MaterialComponents_NavigationRailView_Colored 0x7f1102b6 +int style Widget_MaterialComponents_NavigationRailView_Colored_Compact 0x7f1102b7 +int style Widget_MaterialComponents_NavigationRailView_Compact 0x7f1102b8 +int style Widget_MaterialComponents_NavigationRailView_PrimarySurface 0x7f1102b9 +int style Widget_MaterialComponents_NavigationView 0x7f1102ba +int style Widget_MaterialComponents_PopupMenu 0x7f1102bb +int style Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1102bc +int style Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1102bd +int style Widget_MaterialComponents_PopupMenu_Overflow 0x7f1102be +int style Widget_MaterialComponents_ProgressIndicator 0x7f1102bf +int style Widget_MaterialComponents_ShapeableImageView 0x7f1102c0 +int style Widget_MaterialComponents_Slider 0x7f1102c1 +int style Widget_MaterialComponents_Snackbar 0x7f1102c2 +int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f1102c3 +int style Widget_MaterialComponents_Snackbar_TextView 0x7f1102c4 +int style Widget_MaterialComponents_TabLayout 0x7f1102c5 +int style Widget_MaterialComponents_TabLayout_Colored 0x7f1102c6 +int style Widget_MaterialComponents_TabLayout_PrimarySurface 0x7f1102c7 +int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f1102c8 +int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1102c9 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1102ca +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1102cb +int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f1102cc +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f1102cd +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x7f1102ce +int style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu 0x7f1102cf +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f1102d0 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f1102d1 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x7f1102d2 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x7f1102d3 +int style Widget_MaterialComponents_TextView 0x7f1102d4 +int style Widget_MaterialComponents_TimePicker 0x7f1102d5 +int style Widget_MaterialComponents_TimePicker_Button 0x7f1102d6 +int style Widget_MaterialComponents_TimePicker_Clock 0x7f1102d7 +int style Widget_MaterialComponents_TimePicker_Display 0x7f1102d8 +int style Widget_MaterialComponents_TimePicker_Display_TextInputEditText 0x7f1102d9 +int style Widget_MaterialComponents_TimePicker_ImageButton 0x7f1102da +int style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance 0x7f1102db +int style Widget_MaterialComponents_Toolbar 0x7f1102dc +int style Widget_MaterialComponents_Toolbar_Primary 0x7f1102dd +int style Widget_MaterialComponents_Toolbar_PrimarySurface 0x7f1102de +int style Widget_MaterialComponents_Toolbar_Surface 0x7f1102df +int style Widget_MaterialComponents_Tooltip 0x7f1102e0 +int style Widget_Support_CoordinatorLayout 0x7f1102e1 +int[] styleable ActionBar { 0x7f04003c, 0x7f040043, 0x7f040044, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f0400d7, 0x7f0400d8, 0x7f0400fe, 0x7f04010e, 0x7f04010f, 0x7f040127, 0x7f040180, 0x7f040187, 0x7f04018d, 0x7f04018e, 0x7f040191, 0x7f04019c, 0x7f0401ae, 0x7f04021b, 0x7f040269, 0x7f040296, 0x7f04029d, 0x7f04029e, 0x7f0402eb, 0x7f0402ef, 0x7f040349, 0x7f040355 } +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 { 0x7f04003c, 0x7f040043, 0x7f0400ad, 0x7f040180, 0x7f0402ef, 0x7f040355 } +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 { 0x7f04013b, 0x7f0401a2 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x010100f2, 0x7f040072, 0x7f040073, 0x7f040210, 0x7f040211, 0x7f040265, 0x7f0402c7, 0x7f0402c9 } +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, 0x7f040127, 0x7f04013c, 0x7f040206, 0x7f040207, 0x7f0402e5 } +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_liftOnScrollTargetViewId 6 +int styleable AppBarLayout_statusBarForeground 7 +int[] styleable AppBarLayoutStates { 0x7f0402df, 0x7f0402e0, 0x7f0402e2, 0x7f0402e3 } +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 { 0x7f040204, 0x7f040205 } +int styleable AppBarLayout_Layout_layout_scrollFlags 0 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 1 +int[] styleable AppCompatImageView { 0x01010119, 0x7f0402d6, 0x7f040347, 0x7f040348 } +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, 0x7f040343, 0x7f040344, 0x7f040345 } +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, 0x7f040036, 0x7f040037, 0x7f040038, 0x7f040039, 0x7f04003a, 0x7f040117, 0x7f040118, 0x7f040119, 0x7f04011a, 0x7f04011c, 0x7f04011d, 0x7f04011e, 0x7f04011f, 0x7f040154, 0x7f04016a, 0x7f040173, 0x7f0401c4, 0x7f040209, 0x7f040317, 0x7f040333 } +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_firstBaselineToTopHeight 14 +int styleable AppCompatTextView_fontFamily 15 +int styleable AppCompatTextView_fontVariationSettings 16 +int styleable AppCompatTextView_lastBaselineToBottomHeight 17 +int styleable AppCompatTextView_lineHeight 18 +int styleable AppCompatTextView_textAllCaps 19 +int styleable AppCompatTextView_textLocale 20 +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, 0x7f040024, 0x7f040025, 0x7f040026, 0x7f040027, 0x7f040028, 0x7f040035, 0x7f04005a, 0x7f04006b, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f04006f, 0x7f040074, 0x7f040075, 0x7f040081, 0x7f04008a, 0x7f0400b5, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400b9, 0x7f0400ba, 0x7f0400bb, 0x7f0400c2, 0x7f0400c3, 0x7f0400c9, 0x7f0400e2, 0x7f04010b, 0x7f04010c, 0x7f04010d, 0x7f040110, 0x7f040112, 0x7f040121, 0x7f040122, 0x7f040124, 0x7f040125, 0x7f040126, 0x7f04018d, 0x7f04019a, 0x7f04020c, 0x7f04020d, 0x7f04020e, 0x7f04020f, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f040280, 0x7f040281, 0x7f040282, 0x7f040295, 0x7f040297, 0x7f0402a1, 0x7f0402a3, 0x7f0402a4, 0x7f0402a5, 0x7f0402b5, 0x7f0402b6, 0x7f0402b7, 0x7f0402b8, 0x7f0402d3, 0x7f0402d4, 0x7f0402f6, 0x7f040322, 0x7f040324, 0x7f040325, 0x7f040326, 0x7f040328, 0x7f040329, 0x7f04032a, 0x7f04032b, 0x7f04032e, 0x7f04032f, 0x7f040357, 0x7f040358, 0x7f040359, 0x7f04035a, 0x7f040376, 0x7f04037f, 0x7f040380, 0x7f040381, 0x7f040382, 0x7f040383, 0x7f040384, 0x7f040385, 0x7f040386, 0x7f040387, 0x7f040388 } +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 Badge { 0x7f04003d, 0x7f040047, 0x7f040049, 0x7f04018f, 0x7f04023c, 0x7f04026e, 0x7f040375 } +int styleable Badge_backgroundColor 0 +int styleable Badge_badgeGravity 1 +int styleable Badge_badgeTextColor 2 +int styleable Badge_horizontalOffset 3 +int styleable Badge_maxCharacterCount 4 +int styleable Badge_number 5 +int styleable Badge_verticalOffset 6 +int[] styleable BaseProgressIndicator { 0x01010139, 0x7f040185, 0x7f04019d, 0x7f040246, 0x7f0402c0, 0x7f0402c2, 0x7f040361, 0x7f040364, 0x7f040366 } +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 { 0x7f040045, 0x7f040127, 0x7f040148, 0x7f040149, 0x7f04014a, 0x7f04014b, 0x7f04014c, 0x7f040188, 0x7f040279, 0x7f04027b, 0x7f04027c } +int styleable BottomAppBar_backgroundTint 0 +int styleable BottomAppBar_elevation 1 +int styleable BottomAppBar_fabAlignmentMode 2 +int styleable BottomAppBar_fabAnimationMode 3 +int styleable BottomAppBar_fabCradleMargin 4 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 5 +int styleable BottomAppBar_fabCradleVerticalOffset 6 +int styleable BottomAppBar_hideOnScroll 7 +int styleable BottomAppBar_paddingBottomSystemWindowInsets 8 +int styleable BottomAppBar_paddingLeftSystemWindowInsets 9 +int styleable BottomAppBar_paddingRightSystemWindowInsets 10 +int[] styleable BottomNavigationView { 0x7f0401a9 } +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 0 +int[] styleable BottomSheetBehavior_Layout { 0x0101011f, 0x01010440, 0x7f040045, 0x7f040050, 0x7f040051, 0x7f040052, 0x7f040053, 0x7f040054, 0x7f040056, 0x7f040057, 0x7f040058, 0x7f04017b, 0x7f040279, 0x7f04027b, 0x7f04027c, 0x7f04027f, 0x7f0402bb, 0x7f0402be } +int styleable BottomSheetBehavior_Layout_android_maxWidth 0 +int styleable BottomSheetBehavior_Layout_android_elevation 1 +int styleable BottomSheetBehavior_Layout_backgroundTint 2 +int styleable BottomSheetBehavior_Layout_behavior_draggable 3 +int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 4 +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 5 +int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 6 +int styleable BottomSheetBehavior_Layout_behavior_hideable 7 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 8 +int styleable BottomSheetBehavior_Layout_behavior_saveFlags 9 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 10 +int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 11 +int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 12 +int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 13 +int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 14 +int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 15 +int styleable BottomSheetBehavior_Layout_shapeAppearance 16 +int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 17 +int[] styleable ButtonBarLayout { 0x7f040029 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable CardView { 0x0101013f, 0x01010140, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f0400d9, 0x7f0400da, 0x7f0400dc, 0x7f0400dd, 0x7f0400df } +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 Chip { 0x01010034, 0x01010095, 0x01010098, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f040084, 0x7f040085, 0x7f040088, 0x7f040089, 0x7f04008b, 0x7f04008c, 0x7f04008d, 0x7f04008f, 0x7f040090, 0x7f040091, 0x7f040092, 0x7f040093, 0x7f040094, 0x7f040095, 0x7f04009a, 0x7f04009b, 0x7f04009c, 0x7f04009e, 0x7f0400a6, 0x7f0400a7, 0x7f0400a8, 0x7f0400a9, 0x7f0400aa, 0x7f0400ab, 0x7f0400ac, 0x7f040133, 0x7f040186, 0x7f040192, 0x7f040196, 0x7f0402ac, 0x7f0402bb, 0x7f0402be, 0x7f0402c4, 0x7f040330, 0x7f040334 } +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 { 0x7f040083, 0x7f040096, 0x7f040097, 0x7f040098, 0x7f0402b9, 0x7f0402ca, 0x7f0402cb } +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 { 0x7f04019e, 0x7f0401a0, 0x7f0401a1 } +int styleable CircularProgressIndicator_indicatorDirectionCircular 0 +int styleable CircularProgressIndicator_indicatorInset 1 +int styleable CircularProgressIndicator_indicatorSize 2 +int[] styleable ClockFaceView { 0x7f0400a2, 0x7f0400a5 } +int styleable ClockFaceView_clockFaceBackgroundColor 0 +int styleable ClockFaceView_clockNumberTextColor 1 +int[] styleable ClockHandView { 0x7f0400a3, 0x7f040234, 0x7f0402ba } +int styleable ClockHandView_clockHandColor 0 +int styleable ClockHandView_materialCircleRadius 1 +int styleable ClockHandView_selectorSize 2 +int[] styleable CollapsingToolbarLayout { 0x7f0400b1, 0x7f0400b2, 0x7f0400e0, 0x7f04013e, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040142, 0x7f040143, 0x7f040144, 0x7f040147, 0x7f040175, 0x7f04023f, 0x7f0402b0, 0x7f0402b2, 0x7f0402e6, 0x7f040349, 0x7f04034b, 0x7f04034c, 0x7f040356 } +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_contentScrim 2 +int styleable CollapsingToolbarLayout_expandedTitleGravity 3 +int styleable CollapsingToolbarLayout_expandedTitleMargin 4 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9 +int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 10 +int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 11 +int styleable CollapsingToolbarLayout_maxLines 12 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 13 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 14 +int styleable CollapsingToolbarLayout_statusBarScrim 15 +int styleable CollapsingToolbarLayout_title 16 +int styleable CollapsingToolbarLayout_titleCollapseMode 17 +int styleable CollapsingToolbarLayout_titleEnabled 18 +int styleable CollapsingToolbarLayout_toolbarId 19 +int[] styleable CollapsingToolbarLayout_Layout { 0x7f0401cc, 0x7f0401cd } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f04002a } +int styleable ColorStateListItem_android_color 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_alpha 2 +int[] styleable CompoundButton { 0x01010107, 0x7f040070, 0x7f040076, 0x7f040077 } +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, 0x7f04002d, 0x7f04004b, 0x7f04004c, 0x7f04004d, 0x7f040080, 0x7f0400ce, 0x7f0400cf, 0x7f040116, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f04015b, 0x7f04015c, 0x7f04015d, 0x7f04015e, 0x7f04015f, 0x7f040160, 0x7f040161, 0x7f040162, 0x7f040164, 0x7f040165, 0x7f040166, 0x7f040167, 0x7f040168, 0x7f0401ce, 0x7f0401cf, 0x7f0401d0, 0x7f0401d1, 0x7f0401d2, 0x7f0401d3, 0x7f0401d4, 0x7f0401d5, 0x7f0401d6, 0x7f0401d7, 0x7f0401d8, 0x7f0401d9, 0x7f0401da, 0x7f0401db, 0x7f0401dc, 0x7f0401dd, 0x7f0401de, 0x7f0401df, 0x7f0401e0, 0x7f0401e1, 0x7f0401e2, 0x7f0401e3, 0x7f0401e4, 0x7f0401e5, 0x7f0401e6, 0x7f0401e7, 0x7f0401e8, 0x7f0401e9, 0x7f0401ea, 0x7f0401eb, 0x7f0401ec, 0x7f0401ed, 0x7f0401ee, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7, 0x7f0401f9, 0x7f0401fa, 0x7f0401fb, 0x7f0401fc, 0x7f0401fd, 0x7f0401fe, 0x7f0401ff, 0x7f040200, 0x7f04025f, 0x7f040260, 0x7f040288, 0x7f04028f, 0x7f04036a, 0x7f04036c, 0x7f040377 } +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_constraint_referenced_tags 33 +int styleable Constraint_drawPath 34 +int styleable Constraint_flow_firstHorizontalBias 35 +int styleable Constraint_flow_firstHorizontalStyle 36 +int styleable Constraint_flow_firstVerticalBias 37 +int styleable Constraint_flow_firstVerticalStyle 38 +int styleable Constraint_flow_horizontalAlign 39 +int styleable Constraint_flow_horizontalBias 40 +int styleable Constraint_flow_horizontalGap 41 +int styleable Constraint_flow_horizontalStyle 42 +int styleable Constraint_flow_lastHorizontalBias 43 +int styleable Constraint_flow_lastHorizontalStyle 44 +int styleable Constraint_flow_lastVerticalBias 45 +int styleable Constraint_flow_lastVerticalStyle 46 +int styleable Constraint_flow_maxElementsWrap 47 +int styleable Constraint_flow_verticalAlign 48 +int styleable Constraint_flow_verticalBias 49 +int styleable Constraint_flow_verticalGap 50 +int styleable Constraint_flow_verticalStyle 51 +int styleable Constraint_flow_wrapMode 52 +int styleable Constraint_layout_constrainedHeight 53 +int styleable Constraint_layout_constrainedWidth 54 +int styleable Constraint_layout_constraintBaseline_creator 55 +int styleable Constraint_layout_constraintBaseline_toBaselineOf 56 +int styleable Constraint_layout_constraintBottom_creator 57 +int styleable Constraint_layout_constraintBottom_toBottomOf 58 +int styleable Constraint_layout_constraintBottom_toTopOf 59 +int styleable Constraint_layout_constraintCircle 60 +int styleable Constraint_layout_constraintCircleAngle 61 +int styleable Constraint_layout_constraintCircleRadius 62 +int styleable Constraint_layout_constraintDimensionRatio 63 +int styleable Constraint_layout_constraintEnd_toEndOf 64 +int styleable Constraint_layout_constraintEnd_toStartOf 65 +int styleable Constraint_layout_constraintGuide_begin 66 +int styleable Constraint_layout_constraintGuide_end 67 +int styleable Constraint_layout_constraintGuide_percent 68 +int styleable Constraint_layout_constraintHeight_default 69 +int styleable Constraint_layout_constraintHeight_max 70 +int styleable Constraint_layout_constraintHeight_min 71 +int styleable Constraint_layout_constraintHeight_percent 72 +int styleable Constraint_layout_constraintHorizontal_bias 73 +int styleable Constraint_layout_constraintHorizontal_chainStyle 74 +int styleable Constraint_layout_constraintHorizontal_weight 75 +int styleable Constraint_layout_constraintLeft_creator 76 +int styleable Constraint_layout_constraintLeft_toLeftOf 77 +int styleable Constraint_layout_constraintLeft_toRightOf 78 +int styleable Constraint_layout_constraintRight_creator 79 +int styleable Constraint_layout_constraintRight_toLeftOf 80 +int styleable Constraint_layout_constraintRight_toRightOf 81 +int styleable Constraint_layout_constraintStart_toEndOf 82 +int styleable Constraint_layout_constraintStart_toStartOf 83 +int styleable Constraint_layout_constraintTag 84 +int styleable Constraint_layout_constraintTop_creator 85 +int styleable Constraint_layout_constraintTop_toBottomOf 86 +int styleable Constraint_layout_constraintTop_toTopOf 87 +int styleable Constraint_layout_constraintVertical_bias 88 +int styleable Constraint_layout_constraintVertical_chainStyle 89 +int styleable Constraint_layout_constraintVertical_weight 90 +int styleable Constraint_layout_constraintWidth_default 91 +int styleable Constraint_layout_constraintWidth_max 92 +int styleable Constraint_layout_constraintWidth_min 93 +int styleable Constraint_layout_constraintWidth_percent 94 +int styleable Constraint_layout_editor_absoluteX 95 +int styleable Constraint_layout_editor_absoluteY 96 +int styleable Constraint_layout_goneMarginBottom 97 +int styleable Constraint_layout_goneMarginEnd 98 +int styleable Constraint_layout_goneMarginLeft 99 +int styleable Constraint_layout_goneMarginRight 100 +int styleable Constraint_layout_goneMarginStart 101 +int styleable Constraint_layout_goneMarginTop 102 +int styleable Constraint_motionProgress 103 +int styleable Constraint_motionStagger 104 +int styleable Constraint_pathMotionArc 105 +int styleable Constraint_pivotAnchor 106 +int styleable Constraint_transitionEasing 107 +int styleable Constraint_transitionPathRotate 108 +int styleable Constraint_visibilityMode 109 +int[] styleable ConstraintLayout_Layout { 0x010100c4, 0x010100d5, 0x010100d6, 0x010100d7, 0x010100d8, 0x010100d9, 0x010100dc, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010103b3, 0x010103b4, 0x01010440, 0x7f04004b, 0x7f04004c, 0x7f04004d, 0x7f040080, 0x7f0400cb, 0x7f0400ce, 0x7f0400cf, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f04015b, 0x7f04015c, 0x7f04015d, 0x7f04015e, 0x7f04015f, 0x7f040160, 0x7f040161, 0x7f040162, 0x7f040164, 0x7f040165, 0x7f040166, 0x7f040167, 0x7f040168, 0x7f0401c6, 0x7f0401ce, 0x7f0401cf, 0x7f0401d0, 0x7f0401d1, 0x7f0401d2, 0x7f0401d3, 0x7f0401d4, 0x7f0401d5, 0x7f0401d6, 0x7f0401d7, 0x7f0401d8, 0x7f0401d9, 0x7f0401da, 0x7f0401db, 0x7f0401dc, 0x7f0401dd, 0x7f0401de, 0x7f0401df, 0x7f0401e0, 0x7f0401e1, 0x7f0401e2, 0x7f0401e3, 0x7f0401e4, 0x7f0401e5, 0x7f0401e6, 0x7f0401e7, 0x7f0401e8, 0x7f0401e9, 0x7f0401ea, 0x7f0401eb, 0x7f0401ec, 0x7f0401ed, 0x7f0401ee, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7, 0x7f0401f9, 0x7f0401fa, 0x7f0401fb, 0x7f0401fc, 0x7f0401fd, 0x7f0401fe, 0x7f0401ff, 0x7f040200, 0x7f040203 } +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_constraint_referenced_tags 20 +int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 21 +int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 22 +int styleable ConstraintLayout_Layout_flow_firstVerticalBias 23 +int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 24 +int styleable ConstraintLayout_Layout_flow_horizontalAlign 25 +int styleable ConstraintLayout_Layout_flow_horizontalBias 26 +int styleable ConstraintLayout_Layout_flow_horizontalGap 27 +int styleable ConstraintLayout_Layout_flow_horizontalStyle 28 +int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 29 +int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 30 +int styleable ConstraintLayout_Layout_flow_lastVerticalBias 31 +int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 32 +int styleable ConstraintLayout_Layout_flow_maxElementsWrap 33 +int styleable ConstraintLayout_Layout_flow_verticalAlign 34 +int styleable ConstraintLayout_Layout_flow_verticalBias 35 +int styleable ConstraintLayout_Layout_flow_verticalGap 36 +int styleable ConstraintLayout_Layout_flow_verticalStyle 37 +int styleable ConstraintLayout_Layout_flow_wrapMode 38 +int styleable ConstraintLayout_Layout_layoutDescription 39 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 40 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 41 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 42 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 43 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 44 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 45 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 46 +int styleable ConstraintLayout_Layout_layout_constraintCircle 47 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 48 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 49 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 50 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 51 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 52 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 53 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 54 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 55 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 56 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 57 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 58 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 59 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 60 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 61 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 62 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 63 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 64 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 65 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 66 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 67 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 68 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 69 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 70 +int styleable ConstraintLayout_Layout_layout_constraintTag 71 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 72 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 73 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 74 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 75 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 76 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 77 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 78 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 79 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 80 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 81 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 82 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 83 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 84 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 85 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 86 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 87 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 88 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 89 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 90 +int[] styleable ConstraintLayout_placeholder { 0x7f0400d1, 0x7f040293 } +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, 0x7f04002d, 0x7f04004b, 0x7f04004c, 0x7f04004d, 0x7f040080, 0x7f0400ce, 0x7f0400cf, 0x7f04010a, 0x7f040116, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f04015b, 0x7f04015c, 0x7f04015d, 0x7f04015e, 0x7f04015f, 0x7f040160, 0x7f040161, 0x7f040162, 0x7f040164, 0x7f040165, 0x7f040166, 0x7f040167, 0x7f040168, 0x7f0401ce, 0x7f0401cf, 0x7f0401d0, 0x7f0401d1, 0x7f0401d2, 0x7f0401d3, 0x7f0401d4, 0x7f0401d5, 0x7f0401d6, 0x7f0401d7, 0x7f0401d8, 0x7f0401d9, 0x7f0401da, 0x7f0401db, 0x7f0401dc, 0x7f0401dd, 0x7f0401de, 0x7f0401df, 0x7f0401e0, 0x7f0401e1, 0x7f0401e2, 0x7f0401e3, 0x7f0401e4, 0x7f0401e5, 0x7f0401e6, 0x7f0401e7, 0x7f0401e8, 0x7f0401e9, 0x7f0401ea, 0x7f0401eb, 0x7f0401ec, 0x7f0401ed, 0x7f0401ee, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7, 0x7f0401f9, 0x7f0401fa, 0x7f0401fb, 0x7f0401fc, 0x7f0401fd, 0x7f0401fe, 0x7f0401ff, 0x7f040200, 0x7f04025f, 0x7f040260, 0x7f040288, 0x7f04028f, 0x7f04036a, 0x7f04036c } +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_constraint_referenced_tags 35 +int styleable ConstraintSet_deriveConstraintsFrom 36 +int styleable ConstraintSet_drawPath 37 +int styleable ConstraintSet_flow_firstHorizontalBias 38 +int styleable ConstraintSet_flow_firstHorizontalStyle 39 +int styleable ConstraintSet_flow_firstVerticalBias 40 +int styleable ConstraintSet_flow_firstVerticalStyle 41 +int styleable ConstraintSet_flow_horizontalAlign 42 +int styleable ConstraintSet_flow_horizontalBias 43 +int styleable ConstraintSet_flow_horizontalGap 44 +int styleable ConstraintSet_flow_horizontalStyle 45 +int styleable ConstraintSet_flow_lastHorizontalBias 46 +int styleable ConstraintSet_flow_lastHorizontalStyle 47 +int styleable ConstraintSet_flow_lastVerticalBias 48 +int styleable ConstraintSet_flow_lastVerticalStyle 49 +int styleable ConstraintSet_flow_maxElementsWrap 50 +int styleable ConstraintSet_flow_verticalAlign 51 +int styleable ConstraintSet_flow_verticalBias 52 +int styleable ConstraintSet_flow_verticalGap 53 +int styleable ConstraintSet_flow_verticalStyle 54 +int styleable ConstraintSet_flow_wrapMode 55 +int styleable ConstraintSet_layout_constrainedHeight 56 +int styleable ConstraintSet_layout_constrainedWidth 57 +int styleable ConstraintSet_layout_constraintBaseline_creator 58 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 59 +int styleable ConstraintSet_layout_constraintBottom_creator 60 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 61 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 62 +int styleable ConstraintSet_layout_constraintCircle 63 +int styleable ConstraintSet_layout_constraintCircleAngle 64 +int styleable ConstraintSet_layout_constraintCircleRadius 65 +int styleable ConstraintSet_layout_constraintDimensionRatio 66 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 67 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 68 +int styleable ConstraintSet_layout_constraintGuide_begin 69 +int styleable ConstraintSet_layout_constraintGuide_end 70 +int styleable ConstraintSet_layout_constraintGuide_percent 71 +int styleable ConstraintSet_layout_constraintHeight_default 72 +int styleable ConstraintSet_layout_constraintHeight_max 73 +int styleable ConstraintSet_layout_constraintHeight_min 74 +int styleable ConstraintSet_layout_constraintHeight_percent 75 +int styleable ConstraintSet_layout_constraintHorizontal_bias 76 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 77 +int styleable ConstraintSet_layout_constraintHorizontal_weight 78 +int styleable ConstraintSet_layout_constraintLeft_creator 79 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 80 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 81 +int styleable ConstraintSet_layout_constraintRight_creator 82 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 83 +int styleable ConstraintSet_layout_constraintRight_toRightOf 84 +int styleable ConstraintSet_layout_constraintStart_toEndOf 85 +int styleable ConstraintSet_layout_constraintStart_toStartOf 86 +int styleable ConstraintSet_layout_constraintTag 87 +int styleable ConstraintSet_layout_constraintTop_creator 88 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 89 +int styleable ConstraintSet_layout_constraintTop_toTopOf 90 +int styleable ConstraintSet_layout_constraintVertical_bias 91 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 92 +int styleable ConstraintSet_layout_constraintVertical_weight 93 +int styleable ConstraintSet_layout_constraintWidth_default 94 +int styleable ConstraintSet_layout_constraintWidth_max 95 +int styleable ConstraintSet_layout_constraintWidth_min 96 +int styleable ConstraintSet_layout_constraintWidth_percent 97 +int styleable ConstraintSet_layout_editor_absoluteX 98 +int styleable ConstraintSet_layout_editor_absoluteY 99 +int styleable ConstraintSet_layout_goneMarginBottom 100 +int styleable ConstraintSet_layout_goneMarginEnd 101 +int styleable ConstraintSet_layout_goneMarginLeft 102 +int styleable ConstraintSet_layout_goneMarginRight 103 +int styleable ConstraintSet_layout_goneMarginStart 104 +int styleable ConstraintSet_layout_goneMarginTop 105 +int styleable ConstraintSet_motionProgress 106 +int styleable ConstraintSet_motionStagger 107 +int styleable ConstraintSet_pathMotionArc 108 +int styleable ConstraintSet_pivotAnchor 109 +int styleable ConstraintSet_transitionEasing 110 +int styleable ConstraintSet_transitionPathRotate 111 +int[] styleable CoordinatorLayout { 0x7f0401c0, 0x7f0402e4 } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f0401c9, 0x7f0401ca, 0x7f0401cb, 0x7f0401f8, 0x7f040201, 0x7f040202 } +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 { 0x7f040034, 0x7f0400f8, 0x7f0400f9, 0x7f0400fa, 0x7f0400fb, 0x7f0400fc, 0x7f0400fd, 0x7f0400ff, 0x7f040100 } +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 DrawerArrowToggle { 0x7f040032, 0x7f040033, 0x7f04004a, 0x7f0400b4, 0x7f04011b, 0x7f04017a, 0x7f0402d2, 0x7f040337 } +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 ExtendedFloatingActionButton { 0x7f0400b0, 0x7f040127, 0x7f040145, 0x7f040186, 0x7f0402c4, 0x7f0402c8 } +int styleable ExtendedFloatingActionButton_collapsedSize 0 +int styleable ExtendedFloatingActionButton_elevation 1 +int styleable ExtendedFloatingActionButton_extendMotionSpec 2 +int styleable ExtendedFloatingActionButton_hideMotionSpec 3 +int styleable ExtendedFloatingActionButton_showMotionSpec 4 +int styleable ExtendedFloatingActionButton_shrinkMotionSpec 5 +int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x7f04004e, 0x7f04004f } +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 +int[] styleable FloatingActionButton { 0x0101000e, 0x7f040045, 0x7f040046, 0x7f040059, 0x7f040127, 0x7f040133, 0x7f04014d, 0x7f04014e, 0x7f040186, 0x7f040190, 0x7f04023e, 0x7f04029c, 0x7f0402ac, 0x7f0402bb, 0x7f0402be, 0x7f0402c4, 0x7f040372 } +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 { 0x7f04004e } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int[] styleable FlowLayout { 0x7f0401b7, 0x7f04020a } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x7f04016b, 0x7f04016c, 0x7f04016d, 0x7f04016e, 0x7f04016f, 0x7f040170, 0x7f040171 } +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, 0x7f040169, 0x7f040172, 0x7f040173, 0x7f040174, 0x7f040371 } +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, 0x7f040176 } +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 FullscreenAttrs { 0x7f040178, 0x7f040179 } +int styleable FullscreenAttrs_fullscreenBackgroundColor 0 +int styleable FullscreenAttrs_fullscreenTextColor 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 { 0x7f04002c, 0x7f04006a, 0x7f0400e1, 0x7f0400f5, 0x7f040277, 0x7f0402ad, 0x7f0402ae, 0x7f0402af, 0x7f040379 } +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 { 0x7f040279, 0x7f04027b, 0x7f04027c, 0x7f04027f } +int styleable Insets_paddingBottomSystemWindowInsets 0 +int styleable Insets_paddingLeftSystemWindowInsets 1 +int styleable Insets_paddingRightSystemWindowInsets 2 +int styleable Insets_paddingTopSystemWindowInsets 3 +int[] styleable KeyAttribute { 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f0400f7, 0x7f040177, 0x7f04025f, 0x7f040261, 0x7f04036a, 0x7f04036c } +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, 0x7f0400f7, 0x7f040177, 0x7f04025f, 0x7f040261, 0x7f04036a, 0x7f04036c, 0x7f04037b, 0x7f04037c, 0x7f04037d, 0x7f04037e } +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 { 0x7f0400f7, 0x7f040116, 0x7f040177, 0x7f0401be, 0x7f040261, 0x7f040288, 0x7f04028a, 0x7f04028b, 0x7f04028c, 0x7f04028d, 0x7f0402cc, 0x7f04036a } +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, 0x7f0400f7, 0x7f040177, 0x7f04025f, 0x7f040261, 0x7f04036a, 0x7f04036c, 0x7f04037a, 0x7f04037b, 0x7f04037c, 0x7f04037d } +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 { 0x7f040177, 0x7f040261, 0x7f040262, 0x7f040263, 0x7f040270, 0x7f040272, 0x7f040273, 0x7f04036e, 0x7f04036f, 0x7f040370 } +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, 0x7f04004b, 0x7f04004c, 0x7f04004d, 0x7f040080, 0x7f0400ce, 0x7f0400cf, 0x7f0401ce, 0x7f0401cf, 0x7f0401d0, 0x7f0401d1, 0x7f0401d2, 0x7f0401d3, 0x7f0401d4, 0x7f0401d5, 0x7f0401d6, 0x7f0401d7, 0x7f0401d8, 0x7f0401d9, 0x7f0401da, 0x7f0401db, 0x7f0401dc, 0x7f0401dd, 0x7f0401de, 0x7f0401df, 0x7f0401e0, 0x7f0401e1, 0x7f0401e2, 0x7f0401e3, 0x7f0401e4, 0x7f0401e5, 0x7f0401e6, 0x7f0401e7, 0x7f0401e8, 0x7f0401e9, 0x7f0401ea, 0x7f0401eb, 0x7f0401ec, 0x7f0401ee, 0x7f0401ef, 0x7f0401f0, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7, 0x7f0401f9, 0x7f0401fa, 0x7f0401fb, 0x7f0401fc, 0x7f0401fd, 0x7f0401fe, 0x7f0401ff, 0x7f040200, 0x7f04023d, 0x7f040241, 0x7f040245, 0x7f040249 } +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_constraint_referenced_tags 14 +int styleable Layout_layout_constrainedHeight 15 +int styleable Layout_layout_constrainedWidth 16 +int styleable Layout_layout_constraintBaseline_creator 17 +int styleable Layout_layout_constraintBaseline_toBaselineOf 18 +int styleable Layout_layout_constraintBottom_creator 19 +int styleable Layout_layout_constraintBottom_toBottomOf 20 +int styleable Layout_layout_constraintBottom_toTopOf 21 +int styleable Layout_layout_constraintCircle 22 +int styleable Layout_layout_constraintCircleAngle 23 +int styleable Layout_layout_constraintCircleRadius 24 +int styleable Layout_layout_constraintDimensionRatio 25 +int styleable Layout_layout_constraintEnd_toEndOf 26 +int styleable Layout_layout_constraintEnd_toStartOf 27 +int styleable Layout_layout_constraintGuide_begin 28 +int styleable Layout_layout_constraintGuide_end 29 +int styleable Layout_layout_constraintGuide_percent 30 +int styleable Layout_layout_constraintHeight_default 31 +int styleable Layout_layout_constraintHeight_max 32 +int styleable Layout_layout_constraintHeight_min 33 +int styleable Layout_layout_constraintHeight_percent 34 +int styleable Layout_layout_constraintHorizontal_bias 35 +int styleable Layout_layout_constraintHorizontal_chainStyle 36 +int styleable Layout_layout_constraintHorizontal_weight 37 +int styleable Layout_layout_constraintLeft_creator 38 +int styleable Layout_layout_constraintLeft_toLeftOf 39 +int styleable Layout_layout_constraintLeft_toRightOf 40 +int styleable Layout_layout_constraintRight_creator 41 +int styleable Layout_layout_constraintRight_toLeftOf 42 +int styleable Layout_layout_constraintRight_toRightOf 43 +int styleable Layout_layout_constraintStart_toEndOf 44 +int styleable Layout_layout_constraintStart_toStartOf 45 +int styleable Layout_layout_constraintTop_creator 46 +int styleable Layout_layout_constraintTop_toBottomOf 47 +int styleable Layout_layout_constraintTop_toTopOf 48 +int styleable Layout_layout_constraintVertical_bias 49 +int styleable Layout_layout_constraintVertical_chainStyle 50 +int styleable Layout_layout_constraintVertical_weight 51 +int styleable Layout_layout_constraintWidth_default 52 +int styleable Layout_layout_constraintWidth_max 53 +int styleable Layout_layout_constraintWidth_min 54 +int styleable Layout_layout_constraintWidth_percent 55 +int styleable Layout_layout_editor_absoluteX 56 +int styleable Layout_layout_editor_absoluteY 57 +int styleable Layout_layout_goneMarginBottom 58 +int styleable Layout_layout_goneMarginEnd 59 +int styleable Layout_layout_goneMarginLeft 60 +int styleable Layout_layout_goneMarginRight 61 +int styleable Layout_layout_goneMarginStart 62 +int styleable Layout_layout_goneMarginTop 63 +int styleable Layout_maxHeight 64 +int styleable Layout_maxWidth 65 +int styleable Layout_minHeight 66 +int styleable Layout_minWidth 67 +int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f04010f, 0x7f040111, 0x7f040242, 0x7f0402c3 } +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 { 0x7f04019b, 0x7f04019f } +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 MaterialAlertDialog { 0x7f04003e, 0x7f04003f, 0x7f040040, 0x7f040041 } +int styleable MaterialAlertDialog_backgroundInsetBottom 0 +int styleable MaterialAlertDialog_backgroundInsetEnd 1 +int styleable MaterialAlertDialog_backgroundInsetStart 2 +int styleable MaterialAlertDialog_backgroundInsetTop 3 +int[] styleable MaterialAlertDialogTheme { 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221 } +int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 +int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 1 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 2 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 3 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 4 +int[] styleable MaterialAutoCompleteTextView { 0x01010220 } +int styleable MaterialAutoCompleteTextView_android_inputType 0 +int[] styleable MaterialButton { 0x010100d4, 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x010101e5, 0x7f040045, 0x7f040046, 0x7f0400e9, 0x7f040127, 0x7f040191, 0x7f040193, 0x7f040194, 0x7f040195, 0x7f040197, 0x7f040198, 0x7f0402ac, 0x7f0402bb, 0x7f0402be, 0x7f0402e7, 0x7f0402e8 } +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 MaterialButtonToggleGroup { 0x7f040082, 0x7f0402b9, 0x7f0402cb } +int styleable MaterialButtonToggleGroup_checkedButton 0 +int styleable MaterialButtonToggleGroup_selectionRequired 1 +int styleable MaterialButtonToggleGroup_singleSelection 2 +int[] styleable MaterialCalendar { 0x0101020d, 0x7f040101, 0x7f040102, 0x7f040103, 0x7f040104, 0x7f04026d, 0x7f0402a2, 0x7f040389, 0x7f04038a, 0x7f04038b } +int styleable MaterialCalendar_android_windowFullscreen 0 +int styleable MaterialCalendar_dayInvalidStyle 1 +int styleable MaterialCalendar_daySelectedStyle 2 +int styleable MaterialCalendar_dayStyle 3 +int styleable MaterialCalendar_dayTodayStyle 4 +int styleable MaterialCalendar_nestedScrollable 5 +int styleable MaterialCalendar_rangeFillColor 6 +int styleable MaterialCalendar_yearSelectedStyle 7 +int styleable MaterialCalendar_yearStyle 8 +int styleable MaterialCalendar_yearTodayStyle 9 +int[] styleable MaterialCalendarItem { 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f0401a7, 0x7f0401b0, 0x7f0401b1, 0x7f0401b8, 0x7f0401b9, 0x7f0401bd } +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, 0x7f04007b, 0x7f040084, 0x7f040086, 0x7f040087, 0x7f040088, 0x7f0402ac, 0x7f0402bb, 0x7f0402be, 0x7f0402e1, 0x7f0402e7, 0x7f0402e8 } +int styleable MaterialCardView_android_checkable 0 +int styleable MaterialCardView_cardForegroundColor 1 +int styleable MaterialCardView_checkedIcon 2 +int styleable MaterialCardView_checkedIconMargin 3 +int styleable MaterialCardView_checkedIconSize 4 +int styleable MaterialCardView_checkedIconTint 5 +int styleable MaterialCardView_rippleColor 6 +int styleable MaterialCardView_shapeAppearance 7 +int styleable MaterialCardView_shapeAppearanceOverlay 8 +int styleable MaterialCardView_state_dragged 9 +int styleable MaterialCardView_strokeColor 10 +int styleable MaterialCardView_strokeWidth 11 +int[] styleable MaterialCheckBox { 0x7f040076, 0x7f040373 } +int styleable MaterialCheckBox_buttonTint 0 +int styleable MaterialCheckBox_useMaterialThemeColors 1 +int[] styleable MaterialRadioButton { 0x7f040076, 0x7f040373 } +int styleable MaterialRadioButton_buttonTint 0 +int styleable MaterialRadioButton_useMaterialThemeColors 1 +int[] styleable MaterialShape { 0x7f0402bb, 0x7f0402be } +int styleable MaterialShape_shapeAppearance 0 +int styleable MaterialShape_shapeAppearanceOverlay 1 +int[] styleable MaterialTextAppearance { 0x010104b6, 0x0101057f, 0x7f040209 } +int styleable MaterialTextAppearance_android_letterSpacing 0 +int styleable MaterialTextAppearance_android_lineHeight 1 +int styleable MaterialTextAppearance_lineHeight 2 +int[] styleable MaterialTextView { 0x01010034, 0x0101057f, 0x7f040209 } +int styleable MaterialTextView_android_textAppearance 0 +int styleable MaterialTextView_android_lineHeight 1 +int styleable MaterialTextView_lineHeight 2 +int[] styleable MaterialTimePicker { 0x7f0400a4, 0x7f0401bf } +int styleable MaterialTimePicker_clockIcon 0 +int styleable MaterialTimePicker_keyboardIcon 1 +int[] styleable MaterialToolbar { 0x7f040268, 0x7f0402ec, 0x7f04034a } +int styleable MaterialToolbar_navigationIconTint 0 +int styleable MaterialToolbar_subtitleCentered 1 +int styleable MaterialToolbar_titleCentered 2 +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, 0x7f04002b, 0x7f0400d2, 0x7f040197, 0x7f040198, 0x7f04026f, 0x7f0402c1, 0x7f04035c } +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, 0x7f04029b, 0x7f0402e9 } +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 { 0x7f04024a, 0x7f04024b, 0x7f04024c, 0x7f04024d, 0x7f04024e, 0x7f04024f } +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 { 0x7f04002d, 0x7f040116, 0x7f04025e, 0x7f040260, 0x7f040288, 0x7f04036a } +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 { 0x7f040271, 0x7f040274 } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLayout { 0x7f040030, 0x7f0400f6, 0x7f0401c6, 0x7f040250, 0x7f04025f, 0x7f0402c5 } +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 { 0x7f040105, 0x7f0401c7 } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x7f040314, 0x7f040315, 0x7f040316 } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int[] styleable NavigationBarView { 0x7f040045, 0x7f040127, 0x7f0401a6, 0x7f0401ab, 0x7f0401ac, 0x7f0401af, 0x7f0401bb, 0x7f0401bc, 0x7f0401bd, 0x7f0401c3, 0x7f040243 } +int styleable NavigationBarView_backgroundTint 0 +int styleable NavigationBarView_elevation 1 +int styleable NavigationBarView_itemBackground 2 +int styleable NavigationBarView_itemIconSize 3 +int styleable NavigationBarView_itemIconTint 4 +int styleable NavigationBarView_itemRippleColor 5 +int styleable NavigationBarView_itemTextAppearanceActive 6 +int styleable NavigationBarView_itemTextAppearanceInactive 7 +int styleable NavigationBarView_itemTextColor 8 +int styleable NavigationBarView_labelVisibilityMode 9 +int styleable NavigationBarView_menu 10 +int[] styleable NavigationRailView { 0x7f04017f, 0x7f040244 } +int styleable NavigationRailView_headerLayout 0 +int styleable NavigationRailView_menuGravity 1 +int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f040127, 0x7f04017f, 0x7f0401a6, 0x7f0401a8, 0x7f0401aa, 0x7f0401ab, 0x7f0401ac, 0x7f0401ad, 0x7f0401b0, 0x7f0401b1, 0x7f0401b2, 0x7f0401b3, 0x7f0401b4, 0x7f0401b5, 0x7f0401b6, 0x7f0401ba, 0x7f0401bd, 0x7f040243, 0x7f0402bb, 0x7f0402be } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_maxWidth 2 +int styleable NavigationView_elevation 3 +int styleable NavigationView_headerLayout 4 +int styleable NavigationView_itemBackground 5 +int styleable NavigationView_itemHorizontalPadding 6 +int styleable NavigationView_itemIconPadding 7 +int styleable NavigationView_itemIconSize 8 +int styleable NavigationView_itemIconTint 9 +int styleable NavigationView_itemMaxLines 10 +int styleable NavigationView_itemShapeAppearance 11 +int styleable NavigationView_itemShapeAppearanceOverlay 12 +int styleable NavigationView_itemShapeFillColor 13 +int styleable NavigationView_itemShapeInsetBottom 14 +int styleable NavigationView_itemShapeInsetEnd 15 +int styleable NavigationView_itemShapeInsetStart 16 +int styleable NavigationView_itemShapeInsetTop 17 +int styleable NavigationView_itemTextAppearance 18 +int styleable NavigationView_itemTextColor 19 +int styleable NavigationView_menu 20 +int styleable NavigationView_shapeAppearance 21 +int styleable NavigationView_shapeAppearanceOverlay 22 +int[] styleable OnClick { 0x7f0400a1, 0x7f040313 } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x7f040113, 0x7f040114, 0x7f040115, 0x7f040208, 0x7f040239, 0x7f040240, 0x7f040264, 0x7f04026c, 0x7f040275, 0x7f04035d, 0x7f04035e, 0x7f04035f } +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, 0x7f040276 } +int styleable PopupWindow_android_popupBackground 0 +int styleable PopupWindow_android_popupAnimationStyle 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f0402de } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable PropertySet { 0x010100dc, 0x0101031f, 0x7f0401ed, 0x7f04025f, 0x7f040377 } +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 { 0x7f040234 } +int styleable RadialViewGroup_materialCircleRadius 0 +int[] styleable RangeSlider { 0x7f040247, 0x7f040374 } +int styleable RangeSlider_minSeparation 0 +int styleable RangeSlider_values 1 +int[] styleable RecycleListView { 0x7f040278, 0x7f04027e } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x010100c4, 0x010100eb, 0x010100f1, 0x7f04014f, 0x7f040150, 0x7f040151, 0x7f040152, 0x7f040153, 0x7f0401c8, 0x7f0402ab, 0x7f0402d1, 0x7f0402d7 } +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 { 0x7f0401a3 } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollingViewBehavior_Layout { 0x7f040055 } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0400a6, 0x7f0400ca, 0x7f040106, 0x7f04017c, 0x7f040199, 0x7f0401c5, 0x7f04029f, 0x7f0402a0, 0x7f0402b3, 0x7f0402b4, 0x7f0402ea, 0x7f0402f3, 0x7f040378 } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_maxWidth 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_imeOptions 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable ShapeAppearance { 0x7f0400e4, 0x7f0400e5, 0x7f0400e6, 0x7f0400e7, 0x7f0400e8, 0x7f0400ea, 0x7f0400eb, 0x7f0400ec, 0x7f0400ed, 0x7f0400ee } +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 { 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f0400de, 0x7f0400df, 0x7f0402bb, 0x7f0402be, 0x7f0402e7, 0x7f0402e8 } +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 Slider { 0x0101000e, 0x01010024, 0x01010146, 0x010102de, 0x010102df, 0x7f04017d, 0x7f04017e, 0x7f0401c1, 0x7f0401c2, 0x7f040338, 0x7f040339, 0x7f04033a, 0x7f04033b, 0x7f04033c, 0x7f040340, 0x7f040341, 0x7f040342, 0x7f040346, 0x7f040361, 0x7f040362, 0x7f040363, 0x7f040365 } +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_thumbColor 9 +int styleable Slider_thumbElevation 10 +int styleable Slider_thumbRadius 11 +int styleable Slider_thumbStrokeColor 12 +int styleable Slider_thumbStrokeWidth 13 +int styleable Slider_tickColor 14 +int styleable Slider_tickColorActive 15 +int styleable Slider_tickColorInactive 16 +int styleable Slider_tickVisible 17 +int styleable Slider_trackColor 18 +int styleable Slider_trackColorActive 19 +int styleable Slider_trackColorInactive 20 +int styleable Slider_trackHeight 21 +int[] styleable Snackbar { 0x7f0402ce, 0x7f0402cf, 0x7f0402d0 } +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int styleable Snackbar_snackbarTextViewStyle 2 +int[] styleable SnackbarLayout { 0x0101011f, 0x7f040022, 0x7f04002e, 0x7f040042, 0x7f040045, 0x7f040046, 0x7f040127, 0x7f04023a } +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 Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f040296 } +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 State { 0x010100d0, 0x7f0400d0 } +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 { 0x7f040107 } +int styleable StateSet_defaultState 0 +int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0402c6, 0x7f0402d5, 0x7f0402f4, 0x7f0402f5, 0x7f0402f7, 0x7f04033d, 0x7f04033e, 0x7f04033f, 0x7f040360, 0x7f040367, 0x7f040368 } +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 { 0x7f040373 } +int styleable SwitchMaterial_useMaterialThemeColors 0 +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 { 0x7f0402f8, 0x7f0402f9, 0x7f0402fa, 0x7f0402fb, 0x7f0402fc, 0x7f0402fd, 0x7f0402fe, 0x7f0402ff, 0x7f040300, 0x7f040301, 0x7f040302, 0x7f040303, 0x7f040304, 0x7f040305, 0x7f040306, 0x7f040307, 0x7f040308, 0x7f040309, 0x7f04030a, 0x7f04030b, 0x7f04030c, 0x7f04030d, 0x7f04030e, 0x7f040310, 0x7f040311, 0x7f040312 } +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_tabSelectedTextColor 22 +int styleable TabLayout_tabTextAppearance 23 +int styleable TabLayout_tabTextColor 24 +int styleable TabLayout_tabUnboundedRipple 25 +int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x01010585, 0x7f04016a, 0x7f040173, 0x7f040317, 0x7f040333 } +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 { 0x7f040331 } +int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 +int[] styleable TextInputLayout { 0x0101000e, 0x0101009a, 0x0101011f, 0x0101013f, 0x01010150, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f040065, 0x7f040066, 0x7f040067, 0x7f040068, 0x7f040069, 0x7f0400ef, 0x7f0400f0, 0x7f0400f1, 0x7f0400f2, 0x7f0400f3, 0x7f0400f4, 0x7f04012b, 0x7f04012c, 0x7f04012d, 0x7f04012e, 0x7f04012f, 0x7f040130, 0x7f040134, 0x7f040135, 0x7f040136, 0x7f040137, 0x7f040138, 0x7f040139, 0x7f04013a, 0x7f04013d, 0x7f040181, 0x7f040182, 0x7f040183, 0x7f040184, 0x7f040189, 0x7f04018a, 0x7f04018b, 0x7f04018c, 0x7f040283, 0x7f040284, 0x7f040285, 0x7f040286, 0x7f040287, 0x7f040290, 0x7f040291, 0x7f040292, 0x7f040298, 0x7f040299, 0x7f04029a, 0x7f0402bb, 0x7f0402be, 0x7f0402d9, 0x7f0402da, 0x7f0402db, 0x7f0402dc, 0x7f0402dd, 0x7f0402f0, 0x7f0402f1, 0x7f0402f2 } +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_boxBackgroundColor 5 +int styleable TextInputLayout_boxBackgroundMode 6 +int styleable TextInputLayout_boxCollapsedPaddingTop 7 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 8 +int styleable TextInputLayout_boxCornerRadiusBottomStart 9 +int styleable TextInputLayout_boxCornerRadiusTopEnd 10 +int styleable TextInputLayout_boxCornerRadiusTopStart 11 +int styleable TextInputLayout_boxStrokeColor 12 +int styleable TextInputLayout_boxStrokeErrorColor 13 +int styleable TextInputLayout_boxStrokeWidth 14 +int styleable TextInputLayout_boxStrokeWidthFocused 15 +int styleable TextInputLayout_counterEnabled 16 +int styleable TextInputLayout_counterMaxLength 17 +int styleable TextInputLayout_counterOverflowTextAppearance 18 +int styleable TextInputLayout_counterOverflowTextColor 19 +int styleable TextInputLayout_counterTextAppearance 20 +int styleable TextInputLayout_counterTextColor 21 +int styleable TextInputLayout_endIconCheckable 22 +int styleable TextInputLayout_endIconContentDescription 23 +int styleable TextInputLayout_endIconDrawable 24 +int styleable TextInputLayout_endIconMode 25 +int styleable TextInputLayout_endIconTint 26 +int styleable TextInputLayout_endIconTintMode 27 +int styleable TextInputLayout_errorContentDescription 28 +int styleable TextInputLayout_errorEnabled 29 +int styleable TextInputLayout_errorIconDrawable 30 +int styleable TextInputLayout_errorIconTint 31 +int styleable TextInputLayout_errorIconTintMode 32 +int styleable TextInputLayout_errorTextAppearance 33 +int styleable TextInputLayout_errorTextColor 34 +int styleable TextInputLayout_expandedHintEnabled 35 +int styleable TextInputLayout_helperText 36 +int styleable TextInputLayout_helperTextEnabled 37 +int styleable TextInputLayout_helperTextTextAppearance 38 +int styleable TextInputLayout_helperTextTextColor 39 +int styleable TextInputLayout_hintAnimationEnabled 40 +int styleable TextInputLayout_hintEnabled 41 +int styleable TextInputLayout_hintTextAppearance 42 +int styleable TextInputLayout_hintTextColor 43 +int styleable TextInputLayout_passwordToggleContentDescription 44 +int styleable TextInputLayout_passwordToggleDrawable 45 +int styleable TextInputLayout_passwordToggleEnabled 46 +int styleable TextInputLayout_passwordToggleTint 47 +int styleable TextInputLayout_passwordToggleTintMode 48 +int styleable TextInputLayout_placeholderText 49 +int styleable TextInputLayout_placeholderTextAppearance 50 +int styleable TextInputLayout_placeholderTextColor 51 +int styleable TextInputLayout_prefixText 52 +int styleable TextInputLayout_prefixTextAppearance 53 +int styleable TextInputLayout_prefixTextColor 54 +int styleable TextInputLayout_shapeAppearance 55 +int styleable TextInputLayout_shapeAppearanceOverlay 56 +int styleable TextInputLayout_startIconCheckable 57 +int styleable TextInputLayout_startIconContentDescription 58 +int styleable TextInputLayout_startIconDrawable 59 +int styleable TextInputLayout_startIconTint 60 +int styleable TextInputLayout_startIconTintMode 61 +int styleable TextInputLayout_suffixText 62 +int styleable TextInputLayout_suffixTextAppearance 63 +int styleable TextInputLayout_suffixTextColor 64 +int[] styleable ThemeEnforcement { 0x01010034, 0x7f040131, 0x7f040132 } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f040071, 0x7f0400ae, 0x7f0400af, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f0400d7, 0x7f0400d8, 0x7f04021b, 0x7f04021c, 0x7f04023b, 0x7f040243, 0x7f040266, 0x7f040267, 0x7f040296, 0x7f0402eb, 0x7f0402ed, 0x7f0402ee, 0x7f040349, 0x7f04034d, 0x7f04034e, 0x7f04034f, 0x7f040350, 0x7f040351, 0x7f040352, 0x7f040353, 0x7f040354 } +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, 0x010100d5, 0x010100f6, 0x0101013f, 0x01010140, 0x0101014f, 0x7f040045 } +int styleable Tooltip_android_textAppearance 0 +int styleable Tooltip_android_padding 1 +int styleable Tooltip_android_layout_margin 2 +int styleable Tooltip_android_minWidth 3 +int styleable Tooltip_android_minHeight 4 +int styleable Tooltip_android_text 5 +int styleable Tooltip_backgroundTint 6 +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, 0x7f04003b, 0x7f0400cc, 0x7f0400cd, 0x7f040123, 0x7f0401c7, 0x7f04025c, 0x7f040288, 0x7f0402d8, 0x7f040369, 0x7f04036b } +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 { 0x7f0400d0, 0x7f0402a7, 0x7f0402a8, 0x7f0402a9, 0x7f0402aa } +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, 0x7f04027a, 0x7f04027d, 0x7f040335 } +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, 0x7f040045, 0x7f040046 } +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 preferences 0x7f130000 +int xml searchable 0x7f130001 +int xml standalone_badge 0x7f130002 +int xml standalone_badge_gravity_bottom_end 0x7f130003 +int xml standalone_badge_gravity_bottom_start 0x7f130004 +int xml standalone_badge_gravity_top_start 0x7f130005 +int xml standalone_badge_offset 0x7f130006 +int xml widget_2x_info 0x7f130007 +int xml widget_4x_info 0x7f130008 -- 2.34.1