diff --git a/.gradle/9.1.0/executionHistory/executionHistory.bin b/.gradle/9.1.0/executionHistory/executionHistory.bin
index b87dde9..61c491e 100644
Binary files a/.gradle/9.1.0/executionHistory/executionHistory.bin and b/.gradle/9.1.0/executionHistory/executionHistory.bin differ
diff --git a/.gradle/9.1.0/executionHistory/executionHistory.lock b/.gradle/9.1.0/executionHistory/executionHistory.lock
index 02fa238..078699a 100644
Binary files a/.gradle/9.1.0/executionHistory/executionHistory.lock and b/.gradle/9.1.0/executionHistory/executionHistory.lock differ
diff --git a/.gradle/9.1.0/fileHashes/fileHashes.bin b/.gradle/9.1.0/fileHashes/fileHashes.bin
index f915660..352263f 100644
Binary files a/.gradle/9.1.0/fileHashes/fileHashes.bin and b/.gradle/9.1.0/fileHashes/fileHashes.bin differ
diff --git a/.gradle/9.1.0/fileHashes/fileHashes.lock b/.gradle/9.1.0/fileHashes/fileHashes.lock
index 31352d7..d4f38de 100644
Binary files a/.gradle/9.1.0/fileHashes/fileHashes.lock and b/.gradle/9.1.0/fileHashes/fileHashes.lock differ
diff --git a/.gradle/9.1.0/fileHashes/resourceHashesCache.bin b/.gradle/9.1.0/fileHashes/resourceHashesCache.bin
index 58a8ec7..3141d1a 100644
Binary files a/.gradle/9.1.0/fileHashes/resourceHashesCache.bin and b/.gradle/9.1.0/fileHashes/resourceHashesCache.bin differ
diff --git a/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/.gradle/buildOutputCleanup/buildOutputCleanup.lock
index 691b022..850909f 100644
Binary files a/.gradle/buildOutputCleanup/buildOutputCleanup.lock and b/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ
diff --git a/.gradle/file-system.probe b/.gradle/file-system.probe
index 044f856..fcaa552 100644
Binary files a/.gradle/file-system.probe and b/.gradle/file-system.probe differ
diff --git a/.idea/caches/deviceStreaming.xml b/.idea/caches/deviceStreaming.xml
index 2cfab22..f6fbe50 100644
--- a/.idea/caches/deviceStreaming.xml
+++ b/.idea/caches/deviceStreaming.xml
@@ -124,6 +124,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
@@ -136,6 +148,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
@@ -196,6 +220,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
@@ -496,6 +532,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
@@ -616,6 +664,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1038,6 +1098,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/DialogAddMedicationBinding.java b/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/DialogAddMedicationBinding.java
new file mode 100644
index 0000000..220df92
--- /dev/null
+++ b/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/DialogAddMedicationBinding.java
@@ -0,0 +1,124 @@
+// Generated by view binder compiler. Do not edit!
+package com.example.cuida.databinding;
+
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.CheckBox;
+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 com.example.cuida.R;
+import com.google.android.material.textfield.TextInputEditText;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+
+public final class DialogAddMedicationBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final CheckBox checkboxInhalatory;
+
+ @NonNull
+ public final CheckBox checkboxOral;
+
+ @NonNull
+ public final CheckBox checkboxTopical;
+
+ @NonNull
+ public final TextInputEditText editMedName;
+
+ @NonNull
+ public final TextInputEditText editMedNotes;
+
+ @NonNull
+ public final TextView textMedTime;
+
+ private DialogAddMedicationBinding(@NonNull LinearLayout rootView,
+ @NonNull CheckBox checkboxInhalatory, @NonNull CheckBox checkboxOral,
+ @NonNull CheckBox checkboxTopical, @NonNull TextInputEditText editMedName,
+ @NonNull TextInputEditText editMedNotes, @NonNull TextView textMedTime) {
+ this.rootView = rootView;
+ this.checkboxInhalatory = checkboxInhalatory;
+ this.checkboxOral = checkboxOral;
+ this.checkboxTopical = checkboxTopical;
+ this.editMedName = editMedName;
+ this.editMedNotes = editMedNotes;
+ this.textMedTime = textMedTime;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static DialogAddMedicationBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static DialogAddMedicationBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.dialog_add_medication, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static DialogAddMedicationBinding 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.checkbox_inhalatory;
+ CheckBox checkboxInhalatory = ViewBindings.findChildViewById(rootView, id);
+ if (checkboxInhalatory == null) {
+ break missingId;
+ }
+
+ id = R.id.checkbox_oral;
+ CheckBox checkboxOral = ViewBindings.findChildViewById(rootView, id);
+ if (checkboxOral == null) {
+ break missingId;
+ }
+
+ id = R.id.checkbox_topical;
+ CheckBox checkboxTopical = ViewBindings.findChildViewById(rootView, id);
+ if (checkboxTopical == null) {
+ break missingId;
+ }
+
+ id = R.id.edit_med_name;
+ TextInputEditText editMedName = ViewBindings.findChildViewById(rootView, id);
+ if (editMedName == null) {
+ break missingId;
+ }
+
+ id = R.id.edit_med_notes;
+ TextInputEditText editMedNotes = ViewBindings.findChildViewById(rootView, id);
+ if (editMedNotes == null) {
+ break missingId;
+ }
+
+ id = R.id.text_med_time;
+ TextView textMedTime = ViewBindings.findChildViewById(rootView, id);
+ if (textMedTime == null) {
+ break missingId;
+ }
+
+ return new DialogAddMedicationBinding((LinearLayout) rootView, checkboxInhalatory,
+ checkboxOral, checkboxTopical, editMedName, editMedNotes, textMedTime);
+ }
+ String missingId = rootView.getResources().getResourceName(id);
+ throw new NullPointerException("Missing required view with ID: ".concat(missingId));
+ }
+}
diff --git a/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentMedicationBinding.java b/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentMedicationBinding.java
index be756d4..4b630b7 100644
--- a/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentMedicationBinding.java
+++ b/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentMedicationBinding.java
@@ -4,33 +4,44 @@ package com.example.cuida.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.constraintlayout.widget.ConstraintLayout;
import androidx.recyclerview.widget.RecyclerView;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.example.cuida.R;
+import com.google.android.material.floatingactionbutton.FloatingActionButton;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class FragmentMedicationBinding implements ViewBinding {
@NonNull
- private final LinearLayout rootView;
+ private final ConstraintLayout rootView;
+
+ @NonNull
+ public final FloatingActionButton fabAddMedication;
@NonNull
public final RecyclerView recyclerMedication;
- private FragmentMedicationBinding(@NonNull LinearLayout rootView,
- @NonNull RecyclerView recyclerMedication) {
+ @NonNull
+ public final TextView textTitle;
+
+ private FragmentMedicationBinding(@NonNull ConstraintLayout rootView,
+ @NonNull FloatingActionButton fabAddMedication, @NonNull RecyclerView recyclerMedication,
+ @NonNull TextView textTitle) {
this.rootView = rootView;
+ this.fabAddMedication = fabAddMedication;
this.recyclerMedication = recyclerMedication;
+ this.textTitle = textTitle;
}
@Override
@NonNull
- public LinearLayout getRoot() {
+ public ConstraintLayout getRoot() {
return rootView;
}
@@ -55,13 +66,26 @@ public final class FragmentMedicationBinding implements ViewBinding {
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
+ id = R.id.fab_add_medication;
+ FloatingActionButton fabAddMedication = ViewBindings.findChildViewById(rootView, id);
+ if (fabAddMedication == null) {
+ break missingId;
+ }
+
id = R.id.recycler_medication;
RecyclerView recyclerMedication = ViewBindings.findChildViewById(rootView, id);
if (recyclerMedication == null) {
break missingId;
}
- return new FragmentMedicationBinding((LinearLayout) rootView, recyclerMedication);
+ id = R.id.text_title;
+ TextView textTitle = ViewBindings.findChildViewById(rootView, id);
+ if (textTitle == null) {
+ break missingId;
+ }
+
+ return new FragmentMedicationBinding((ConstraintLayout) rootView, fabAddMedication,
+ recyclerMedication, textTitle);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
diff --git a/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentSns24Binding.java b/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentSns24Binding.java
index ed3bcc1..00b6cfc 100644
--- a/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentSns24Binding.java
+++ b/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentSns24Binding.java
@@ -27,6 +27,9 @@ public final class FragmentSns24Binding implements ViewBinding {
@NonNull
public final MaterialButton buttonCallSns;
+ @NonNull
+ public final MaterialButton buttonFindHospital;
+
@NonNull
public final TextInputEditText inputSymptoms;
@@ -35,10 +38,12 @@ public final class FragmentSns24Binding implements ViewBinding {
private FragmentSns24Binding(@NonNull LinearLayout rootView,
@NonNull MaterialButton buttonAiTriage, @NonNull MaterialButton buttonCallSns,
- @NonNull TextInputEditText inputSymptoms, @NonNull TextView textAiResult) {
+ @NonNull MaterialButton buttonFindHospital, @NonNull TextInputEditText inputSymptoms,
+ @NonNull TextView textAiResult) {
this.rootView = rootView;
this.buttonAiTriage = buttonAiTriage;
this.buttonCallSns = buttonCallSns;
+ this.buttonFindHospital = buttonFindHospital;
this.inputSymptoms = inputSymptoms;
this.textAiResult = textAiResult;
}
@@ -82,6 +87,12 @@ public final class FragmentSns24Binding implements ViewBinding {
break missingId;
}
+ id = R.id.button_find_hospital;
+ MaterialButton buttonFindHospital = ViewBindings.findChildViewById(rootView, id);
+ if (buttonFindHospital == null) {
+ break missingId;
+ }
+
id = R.id.input_symptoms;
TextInputEditText inputSymptoms = ViewBindings.findChildViewById(rootView, id);
if (inputSymptoms == null) {
@@ -95,7 +106,7 @@ public final class FragmentSns24Binding implements ViewBinding {
}
return new FragmentSns24Binding((LinearLayout) rootView, buttonAiTriage, buttonCallSns,
- inputSymptoms, textAiResult);
+ buttonFindHospital, inputSymptoms, textAiResult);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
diff --git a/app/build/intermediates/apk/debug/app-debug.apk b/app/build/intermediates/apk/debug/app-debug.apk
index 5942252..420e029 100644
Binary files a/app/build/intermediates/apk/debug/app-debug.apk and b/app/build/intermediates/apk/debug/app-debug.apk differ
diff --git a/app/build/intermediates/compile_and_runtime_r_class_jar/debug/processDebugResources/R.jar b/app/build/intermediates/compile_and_runtime_r_class_jar/debug/processDebugResources/R.jar
index 6cbafb6..6f36090 100644
Binary files a/app/build/intermediates/compile_and_runtime_r_class_jar/debug/processDebugResources/R.jar and b/app/build/intermediates/compile_and_runtime_r_class_jar/debug/processDebugResources/R.jar differ
diff --git a/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.example.cuida-binding_classes.json b/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.example.cuida-binding_classes.json
index 757b089..bfe93db 100644
Binary files a/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.example.cuida-binding_classes.json and b/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.example.cuida-binding_classes.json differ
diff --git a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/dialog_add_medication-layout.xml b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/dialog_add_medication-layout.xml
new file mode 100644
index 0000000..9197c85
--- /dev/null
+++ b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/dialog_add_medication-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_medication-layout.xml b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_medication-layout.xml
index a1b33c2..a176f6a 100644
--- a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_medication-layout.xml
+++ b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_medication-layout.xml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_sns24-layout.xml b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_sns24-layout.xml
index 4d6057c..6f1ac77 100644
--- a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_sns24-layout.xml
+++ b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_sns24-layout.xml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/dialog_add_medication-layout.xml b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/dialog_add_medication-layout.xml
new file mode 100644
index 0000000..9197c85
--- /dev/null
+++ b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/dialog_add_medication-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_medication-layout.xml b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_medication-layout.xml
index a1b33c2..a176f6a 100644
--- a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_medication-layout.xml
+++ b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_medication-layout.xml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_sns24-layout.xml b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_sns24-layout.xml
index 4d6057c..6f1ac77 100644
--- a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_sns24-layout.xml
+++ b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_sns24-layout.xml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex
index 7c6241d..f520f8d 100644
Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex differ
diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/10/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/10/classes.dex
index 4a65754..2ff59bb 100644
Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/10/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/10/classes.dex differ
diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex
index 7cd2a3c..d6b586d 100644
Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex differ
diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex
index 6f2d376..bce7dec 100644
Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex differ
diff --git a/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out b/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out
index 951c7f5..729b74b 100644
Binary files a/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out and b/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out differ
diff --git a/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json b/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json
index 393a79f..f62bbc1 100644
Binary files a/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json and b/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json differ
diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties b/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties
index a7a1251..06805f8 100644
--- a/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties
+++ b/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties
@@ -1,4 +1,4 @@
-#Tue Feb 03 16:56:38 WET 2026
+#Thu Feb 12 10:36:42 WET 2026
com.example.cuida.app-main-64\:/drawable-v26/ic_launcher_final.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable-v26_ic_launcher_final.xml.flat
com.example.cuida.app-main-64\:/drawable/ic_launcher.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_ic_launcher.xml.flat
com.example.cuida.app-main-64\:/drawable/ic_launcher_final.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_ic_launcher_final.xml.flat
@@ -13,6 +13,7 @@ com.example.cuida.app-mergeDebugResources-61\:/layout/activity_forgot_password.x
com.example.cuida.app-mergeDebugResources-61\:/layout/activity_login.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_login.xml.flat
com.example.cuida.app-mergeDebugResources-61\:/layout/activity_main.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_main.xml.flat
com.example.cuida.app-mergeDebugResources-61\:/layout/activity_register.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_register.xml.flat
+com.example.cuida.app-mergeDebugResources-61\:/layout/dialog_add_medication.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_dialog_add_medication.xml.flat
com.example.cuida.app-mergeDebugResources-61\:/layout/dialog_change_password.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_dialog_change_password.xml.flat
com.example.cuida.app-mergeDebugResources-61\:/layout/dialog_edit_profile.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_dialog_edit_profile.xml.flat
com.example.cuida.app-mergeDebugResources-61\:/layout/fragment_appointments.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_fragment_appointments.xml.flat
diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml
index d5972c5..5184fee 100644
--- a/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml
+++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml
@@ -11608,7 +11608,7 @@
- 1dp
- #E0E0E0
- @color/surface_color
- CuidaInícioConsultasMedicaçãoSNS 24PerfilIniciar SessãoCriar ContaEsqueci-me da Palavra-passeEmailPalavra-passeNome CompletoIdadeEntrarRegistarNão tem conta?Já tem conta?844909242089AIzaSyCrTuHBRLoHkockoJEgAI9O7-gQJT6CkW41:844909242089:android:4a039a7dbec802836ab278AIzaSyCrTuHBRLoHkockoJEgAI9O7-gQJT6CkW4cuidamais-7b904.firebasestorage.appcuidamais-7b904
+ CuidaInícioConsultasMedicaçãoSNS 24PerfilIniciar SessãoCriar ContaEsqueci-me da Palavra-passeEmailPalavra-passeNome CompletoIdadeEntrarRegistarNão tem conta?Já tem conta?844909242089AIzaSyCrTuHBRLoHkockoJEgAI9O7-gQJT6CkW41:844909242089:android:4a039a7dbec802836ab278AIzaSyCrTuHBRLoHkockoJEgAI9O7-gQJT6CkW4cuidamais-7b904.firebasestorage.appcuidamais-7b904
diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/dialog_add_medication.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/dialog_add_medication.xml
new file mode 100644
index 0000000..44160ec
--- /dev/null
+++ b/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/dialog_add_medication.xml
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/fragment_schedule_appointment.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/fragment_schedule_appointment.xml
deleted file mode 100644
index 1a854c8..0000000
--- a/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/fragment_schedule_appointment.xml
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/item_appointment.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/item_appointment.xml
deleted file mode 100644
index 77997c4..0000000
--- a/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/item_appointment.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
index e76548e..3b90c7d 100644
--- a/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
+++ b/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
@@ -1,4 +1,4 @@
-#Tue Feb 03 16:56:38 WET 2026
+#Thu Feb 12 10:36:42 WET 2026
com.example.cuida.app-main-6\:/drawable-v26/ic_launcher_final.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable-v26/ic_launcher_final.xml
com.example.cuida.app-main-6\:/drawable/ic_launcher.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ic_launcher.xml
com.example.cuida.app-main-6\:/drawable/ic_launcher_final.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ic_launcher_final.xml
@@ -13,6 +13,7 @@ com.example.cuida.app-packageDebugResources-3\:/layout/activity_forgot_password.
com.example.cuida.app-packageDebugResources-3\:/layout/activity_login.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/activity_login.xml
com.example.cuida.app-packageDebugResources-3\:/layout/activity_main.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/activity_main.xml
com.example.cuida.app-packageDebugResources-3\:/layout/activity_register.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/activity_register.xml
+com.example.cuida.app-packageDebugResources-3\:/layout/dialog_add_medication.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/dialog_add_medication.xml
com.example.cuida.app-packageDebugResources-3\:/layout/dialog_change_password.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/dialog_change_password.xml
com.example.cuida.app-packageDebugResources-3\:/layout/dialog_edit_profile.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/dialog_edit_profile.xml
com.example.cuida.app-packageDebugResources-3\:/layout/fragment_appointments.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/fragment_appointments.xml
diff --git a/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml
index 3dafc13..4475794 100644
--- a/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml
+++ b/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml
@@ -27,4 +27,4 @@
- 1dp
- #E0E0E0
- @color/surface_color
- CuidaInícioConsultasMedicaçãoSNS 24PerfilIniciar SessãoCriar ContaEsqueci-me da Palavra-passeEmailPalavra-passeNome CompletoIdadeEntrarRegistarNão tem conta?Já tem conta?844909242089AIzaSyCrTuHBRLoHkockoJEgAI9O7-gQJT6CkW41:844909242089:android:4a039a7dbec802836ab278AIzaSyCrTuHBRLoHkockoJEgAI9O7-gQJT6CkW4cuidamais-7b904.firebasestorage.appcuidamais-7b904
\ No newline at end of file
+ CuidaInícioConsultasMedicaçãoSNS 24PerfilIniciar SessãoCriar ContaEsqueci-me da Palavra-passeEmailPalavra-passeNome CompletoIdadeEntrarRegistarNão tem conta?Já tem conta?844909242089AIzaSyCrTuHBRLoHkockoJEgAI9O7-gQJT6CkW41:844909242089:android:4a039a7dbec802836ab278AIzaSyCrTuHBRLoHkockoJEgAI9O7-gQJT6CkW4cuidamais-7b904.firebasestorage.appcuidamais-7b904
\ No newline at end of file
diff --git a/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/dialog_add_medication.xml b/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/dialog_add_medication.xml
new file mode 100644
index 0000000..44160ec
--- /dev/null
+++ b/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/dialog_add_medication.xml
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/fragment_schedule_appointment.xml b/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/fragment_schedule_appointment.xml
deleted file mode 100644
index 1a854c8..0000000
--- a/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/fragment_schedule_appointment.xml
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/item_appointment.xml b/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/item_appointment.xml
deleted file mode 100644
index 77997c4..0000000
--- a/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/item_appointment.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt b/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt
index 9f35607..6b9d0b3 100644
--- a/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt
+++ b/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt
@@ -1,4 +1,4 @@
-#Tue Feb 10 15:45:47 WET 2026
+#Thu Feb 12 10:36:43 WET 2026
base.0=/Users/230405/Desktop/papcuida/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex
base.1=/Users/230405/Desktop/papcuida/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex
base.10=/Users/230405/Desktop/papcuida/app/build/intermediates/dex/debug/mergeProjectDexDebug/7/classes.dex
diff --git a/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources b/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources
index 5e0d938..3ee730c 100644
--- a/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources
+++ b/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources
@@ -1 +1 @@
-[{"key":"AndroidManifest.xml","name":"AndroidManifest.xml","size":15812,"crc":1418594232},{"key":"res/anim/abc_fade_in.xml","name":"res/anim/abc_fade_in.xml","size":388,"crc":1651564388},{"key":"res/anim/abc_fade_out.xml","name":"res/anim/abc_fade_out.xml","size":388,"crc":1955312412},{"key":"res/anim/abc_grow_fade_in_from_bottom.xml","name":"res/anim/abc_grow_fade_in_from_bottom.xml","size":852,"crc":751294131},{"key":"res/anim/abc_popup_enter.xml","name":"res/anim/abc_popup_enter.xml","size":508,"crc":989243998},{"key":"res/anim/abc_popup_exit.xml","name":"res/anim/abc_popup_exit.xml","size":508,"crc":-780583697},{"key":"res/anim/abc_shrink_fade_out_from_bottom.xml","name":"res/anim/abc_shrink_fade_out_from_bottom.xml","size":852,"crc":-1061117395},{"key":"res/anim/abc_slide_in_bottom.xml","name":"res/anim/abc_slide_in_bottom.xml","size":396,"crc":-865076513},{"key":"res/anim/abc_slide_in_top.xml","name":"res/anim/abc_slide_in_top.xml","size":396,"crc":-17746226},{"key":"res/anim/abc_slide_out_bottom.xml","name":"res/anim/abc_slide_out_bottom.xml","size":396,"crc":-290455445},{"key":"res/anim/abc_slide_out_top.xml","name":"res/anim/abc_slide_out_top.xml","size":396,"crc":-261556731},{"key":"res/anim/abc_tooltip_enter.xml","name":"res/anim/abc_tooltip_enter.xml","size":388,"crc":-920421464},{"key":"res/anim/abc_tooltip_exit.xml","name":"res/anim/abc_tooltip_exit.xml","size":388,"crc":-299882513},{"key":"res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml","name":"res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml","size":2124,"crc":-146988082},{"key":"res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml","name":"res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml","size":2780,"crc":-1860489622},{"key":"res/anim/btn_checkbox_to_checked_icon_null_animation.xml","name":"res/anim/btn_checkbox_to_checked_icon_null_animation.xml","size":1196,"crc":-1157435201},{"key":"res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml","name":"res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml","size":2360,"crc":1236845091},{"key":"res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml","name":"res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml","size":2520,"crc":955955241},{"key":"res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml","name":"res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml","size":1196,"crc":-255880154},{"key":"res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml","name":"res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml","size":1656,"crc":706015047},{"key":"res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml","name":"res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml","size":1656,"crc":1241258576},{"key":"res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml","name":"res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml","size":1028,"crc":-1575563134},{"key":"res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml","name":"res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml","size":1656,"crc":-1602916095},{"key":"res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml","name":"res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml","size":1656,"crc":-901976488},{"key":"res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml","name":"res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml","size":1028,"crc":1253987782},{"key":"res/anim-v21/design_bottom_sheet_slide_in.xml","name":"res/anim-v21/design_bottom_sheet_slide_in.xml","size":616,"crc":1414274429},{"key":"res/anim-v21/design_bottom_sheet_slide_out.xml","name":"res/anim-v21/design_bottom_sheet_slide_out.xml","size":616,"crc":-407051051},{"key":"res/anim/design_snackbar_in.xml","name":"res/anim/design_snackbar_in.xml","size":312,"crc":-674904986},{"key":"res/anim/design_snackbar_out.xml","name":"res/anim/design_snackbar_out.xml","size":312,"crc":244987842},{"key":"res/anim-v21/fragment_fast_out_extra_slow_in.xml","name":"res/anim-v21/fragment_fast_out_extra_slow_in.xml","size":364,"crc":1981137860},{"key":"res/anim/linear_indeterminate_line1_head_interpolator.xml","name":"res/anim/linear_indeterminate_line1_head_interpolator.xml","size":400,"crc":-1214901605},{"key":"res/anim/linear_indeterminate_line1_tail_interpolator.xml","name":"res/anim/linear_indeterminate_line1_tail_interpolator.xml","size":400,"crc":935504197},{"key":"res/anim/linear_indeterminate_line2_head_interpolator.xml","name":"res/anim/linear_indeterminate_line2_head_interpolator.xml","size":400,"crc":1664007024},{"key":"res/anim/linear_indeterminate_line2_tail_interpolator.xml","name":"res/anim/linear_indeterminate_line2_tail_interpolator.xml","size":400,"crc":-1107678304},{"key":"res/anim-v21/m3_bottom_sheet_slide_in.xml","name":"res/anim-v21/m3_bottom_sheet_slide_in.xml","size":616,"crc":876594425},{"key":"res/anim-v21/m3_bottom_sheet_slide_out.xml","name":"res/anim-v21/m3_bottom_sheet_slide_out.xml","size":656,"crc":-954726497},{"key":"res/anim/m3_motion_fade_enter.xml","name":"res/anim/m3_motion_fade_enter.xml","size":812,"crc":929845990},{"key":"res/anim/m3_motion_fade_exit.xml","name":"res/anim/m3_motion_fade_exit.xml","size":508,"crc":-70942987},{"key":"res/anim-v21/m3_side_sheet_enter_from_left.xml","name":"res/anim-v21/m3_side_sheet_enter_from_left.xml","size":464,"crc":-1269635202},{"key":"res/anim-v21/m3_side_sheet_enter_from_right.xml","name":"res/anim-v21/m3_side_sheet_enter_from_right.xml","size":464,"crc":-1636519},{"key":"res/anim-v21/m3_side_sheet_exit_to_left.xml","name":"res/anim-v21/m3_side_sheet_exit_to_left.xml","size":464,"crc":462256293},{"key":"res/anim-v21/m3_side_sheet_exit_to_right.xml","name":"res/anim-v21/m3_side_sheet_exit_to_right.xml","size":464,"crc":-702598337},{"key":"res/anim-v21/mtrl_bottom_sheet_slide_in.xml","name":"res/anim-v21/mtrl_bottom_sheet_slide_in.xml","size":616,"crc":612089289},{"key":"res/anim-v21/mtrl_bottom_sheet_slide_out.xml","name":"res/anim-v21/mtrl_bottom_sheet_slide_out.xml","size":616,"crc":-495779574},{"key":"res/anim/mtrl_card_lowers_interpolator.xml","name":"res/anim/mtrl_card_lowers_interpolator.xml","size":400,"crc":1050886711},{"key":"res/anim/nav_default_enter_anim.xml","name":"res/anim/nav_default_enter_anim.xml","size":388,"crc":1469024980},{"key":"res/anim/nav_default_exit_anim.xml","name":"res/anim/nav_default_exit_anim.xml","size":388,"crc":1098180268},{"key":"res/anim/nav_default_pop_enter_anim.xml","name":"res/anim/nav_default_pop_enter_anim.xml","size":388,"crc":1469024980},{"key":"res/anim/nav_default_pop_exit_anim.xml","name":"res/anim/nav_default_pop_exit_anim.xml","size":388,"crc":1098180268},{"key":"res/animator-v21/design_appbar_state_list_animator.xml","name":"res/animator-v21/design_appbar_state_list_animator.xml","size":1216,"crc":1979477452},{"key":"res/animator/design_fab_hide_motion_spec.xml","name":"res/animator/design_fab_hide_motion_spec.xml","size":796,"crc":1576327407},{"key":"res/animator/design_fab_show_motion_spec.xml","name":"res/animator/design_fab_show_motion_spec.xml","size":796,"crc":-1793940175},{"key":"res/animator/fragment_close_enter.xml","name":"res/animator/fragment_close_enter.xml","size":1128,"crc":-454391277},{"key":"res/animator/fragment_close_exit.xml","name":"res/animator/fragment_close_exit.xml","size":1128,"crc":89389386},{"key":"res/animator/fragment_fade_enter.xml","name":"res/animator/fragment_fade_enter.xml","size":452,"crc":607080404},{"key":"res/animator/fragment_fade_exit.xml","name":"res/animator/fragment_fade_exit.xml","size":452,"crc":-675125289},{"key":"res/animator/fragment_open_enter.xml","name":"res/animator/fragment_open_enter.xml","size":1128,"crc":-153086936},{"key":"res/animator/fragment_open_exit.xml","name":"res/animator/fragment_open_exit.xml","size":1128,"crc":926252761},{"key":"res/animator-v21/m3_appbar_state_list_animator.xml","name":"res/animator-v21/m3_appbar_state_list_animator.xml","size":1216,"crc":670802316},{"key":"res/animator/m3_btn_elevated_btn_state_list_anim.xml","name":"res/animator/m3_btn_elevated_btn_state_list_anim.xml","size":1796,"crc":-1572711601},{"key":"res/animator/m3_btn_state_list_anim.xml","name":"res/animator/m3_btn_state_list_anim.xml","size":1796,"crc":-197382423},{"key":"res/animator/m3_card_elevated_state_list_anim.xml","name":"res/animator/m3_card_elevated_state_list_anim.xml","size":1632,"crc":1432393022},{"key":"res/animator/m3_card_state_list_anim.xml","name":"res/animator/m3_card_state_list_anim.xml","size":1584,"crc":475377931},{"key":"res/animator/m3_chip_state_list_anim.xml","name":"res/animator/m3_chip_state_list_anim.xml","size":1180,"crc":1452770895},{"key":"res/animator/m3_elevated_chip_state_list_anim.xml","name":"res/animator/m3_elevated_chip_state_list_anim.xml","size":1072,"crc":638605030},{"key":"res/animator/m3_extended_fab_change_size_collapse_motion_spec.xml","name":"res/animator/m3_extended_fab_change_size_collapse_motion_spec.xml","size":1116,"crc":1442143121},{"key":"res/animator/m3_extended_fab_change_size_expand_motion_spec.xml","name":"res/animator/m3_extended_fab_change_size_expand_motion_spec.xml","size":1116,"crc":-806175005},{"key":"res/animator/m3_extended_fab_hide_motion_spec.xml","name":"res/animator/m3_extended_fab_hide_motion_spec.xml","size":820,"crc":-657483639},{"key":"res/animator/m3_extended_fab_show_motion_spec.xml","name":"res/animator/m3_extended_fab_show_motion_spec.xml","size":820,"crc":43178608},{"key":"res/animator/m3_extended_fab_state_list_animator.xml","name":"res/animator/m3_extended_fab_state_list_animator.xml","size":2724,"crc":109525731},{"key":"res/animator/mtrl_btn_state_list_anim.xml","name":"res/animator/mtrl_btn_state_list_anim.xml","size":2664,"crc":300493100},{"key":"res/animator/mtrl_btn_unelevated_state_list_anim.xml","name":"res/animator/mtrl_btn_unelevated_state_list_anim.xml","size":120,"crc":1914039208},{"key":"res/animator/mtrl_card_state_list_anim.xml","name":"res/animator/mtrl_card_state_list_anim.xml","size":1208,"crc":1096367424},{"key":"res/animator/mtrl_chip_state_list_anim.xml","name":"res/animator/mtrl_chip_state_list_anim.xml","size":1072,"crc":-1561216507},{"key":"res/animator/mtrl_extended_fab_change_size_collapse_motion_spec.xml","name":"res/animator/mtrl_extended_fab_change_size_collapse_motion_spec.xml","size":1116,"crc":-1615681408},{"key":"res/animator/mtrl_extended_fab_change_size_expand_motion_spec.xml","name":"res/animator/mtrl_extended_fab_change_size_expand_motion_spec.xml","size":1116,"crc":1023646182},{"key":"res/animator/mtrl_extended_fab_hide_motion_spec.xml","name":"res/animator/mtrl_extended_fab_hide_motion_spec.xml","size":608,"crc":1271512629},{"key":"res/animator/mtrl_extended_fab_show_motion_spec.xml","name":"res/animator/mtrl_extended_fab_show_motion_spec.xml","size":820,"crc":1065923901},{"key":"res/animator/mtrl_extended_fab_state_list_animator.xml","name":"res/animator/mtrl_extended_fab_state_list_animator.xml","size":2724,"crc":-2118674184},{"key":"res/animator/mtrl_fab_hide_motion_spec.xml","name":"res/animator/mtrl_fab_hide_motion_spec.xml","size":796,"crc":882377992},{"key":"res/animator/mtrl_fab_show_motion_spec.xml","name":"res/animator/mtrl_fab_show_motion_spec.xml","size":796,"crc":-959797063},{"key":"res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml","name":"res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml","size":1888,"crc":1255551011},{"key":"res/animator/mtrl_fab_transformation_sheet_expand_spec.xml","name":"res/animator/mtrl_fab_transformation_sheet_expand_spec.xml","size":1888,"crc":-435920809},{"key":"res/animator/nav_default_enter_anim.xml","name":"res/animator/nav_default_enter_anim.xml","size":452,"crc":1047083570},{"key":"res/animator/nav_default_exit_anim.xml","name":"res/animator/nav_default_exit_anim.xml","size":452,"crc":-846982607},{"key":"res/animator/nav_default_pop_enter_anim.xml","name":"res/animator/nav_default_pop_enter_anim.xml","size":452,"crc":1047083570},{"key":"res/animator/nav_default_pop_exit_anim.xml","name":"res/animator/nav_default_pop_exit_anim.xml","size":452,"crc":-846982607},{"key":"res/color/abc_background_cache_hint_selector_material_dark.xml","name":"res/color/abc_background_cache_hint_selector_material_dark.xml","size":468,"crc":-214821868},{"key":"res/color/abc_background_cache_hint_selector_material_light.xml","name":"res/color/abc_background_cache_hint_selector_material_light.xml","size":468,"crc":-1456888759},{"key":"res/color-v23/abc_btn_colored_borderless_text_material.xml","name":"res/color-v23/abc_btn_colored_borderless_text_material.xml","size":500,"crc":-660497310},{"key":"res/color-v23/abc_btn_colored_text_material.xml","name":"res/color-v23/abc_btn_colored_text_material.xml","size":500,"crc":2018759506},{"key":"res/color-v23/abc_color_highlight_material.xml","name":"res/color-v23/abc_color_highlight_material.xml","size":544,"crc":805578306},{"key":"res/color/abc_hint_foreground_material_dark.xml","name":"res/color/abc_hint_foreground_material_dark.xml","size":564,"crc":-1861753172},{"key":"res/color/abc_hint_foreground_material_light.xml","name":"res/color/abc_hint_foreground_material_light.xml","size":564,"crc":1030962633},{"key":"res/color/abc_primary_text_disable_only_material_dark.xml","name":"res/color/abc_primary_text_disable_only_material_dark.xml","size":464,"crc":-20224979},{"key":"res/color/abc_primary_text_disable_only_material_light.xml","name":"res/color/abc_primary_text_disable_only_material_light.xml","size":464,"crc":1842617175},{"key":"res/color/abc_primary_text_material_dark.xml","name":"res/color/abc_primary_text_material_dark.xml","size":464,"crc":-1265922333},{"key":"res/color/abc_primary_text_material_light.xml","name":"res/color/abc_primary_text_material_light.xml","size":464,"crc":664072601},{"key":"res/color/abc_search_url_text.xml","name":"res/color/abc_search_url_text.xml","size":588,"crc":-373879818},{"key":"res/color/abc_secondary_text_material_dark.xml","name":"res/color/abc_secondary_text_material_dark.xml","size":464,"crc":-485004901},{"key":"res/color/abc_secondary_text_material_light.xml","name":"res/color/abc_secondary_text_material_light.xml","size":464,"crc":-131016892},{"key":"res/color-v23/abc_tint_btn_checkable.xml","name":"res/color-v23/abc_tint_btn_checkable.xml","size":624,"crc":-1039798998},{"key":"res/color-v23/abc_tint_default.xml","name":"res/color-v23/abc_tint_default.xml","size":1120,"crc":1933301183},{"key":"res/color-v23/abc_tint_edittext.xml","name":"res/color-v23/abc_tint_edittext.xml","size":668,"crc":994010686},{"key":"res/color-v23/abc_tint_seek_thumb.xml","name":"res/color-v23/abc_tint_seek_thumb.xml","size":500,"crc":1198778772},{"key":"res/color-v23/abc_tint_spinner.xml","name":"res/color-v23/abc_tint_spinner.xml","size":668,"crc":994010686},{"key":"res/color-v23/abc_tint_switch_track.xml","name":"res/color-v23/abc_tint_switch_track.xml","size":664,"crc":394862852},{"key":"res/color/common_google_signin_btn_text_dark.xml","name":"res/color/common_google_signin_btn_text_dark.xml","size":712,"crc":-222425542},{"key":"res/color/common_google_signin_btn_text_light.xml","name":"res/color/common_google_signin_btn_text_light.xml","size":712,"crc":1157419525},{"key":"res/color/common_google_signin_btn_tint.xml","name":"res/color/common_google_signin_btn_tint.xml","size":464,"crc":1144351805},{"key":"res/color/design_box_stroke_color.xml","name":"res/color/design_box_stroke_color.xml","size":712,"crc":-1445228332},{"key":"res/color/design_error.xml","name":"res/color/design_error.xml","size":464,"crc":1839983861},{"key":"res/color/design_icon_tint.xml","name":"res/color/design_icon_tint.xml","size":376,"crc":-776008690},{"key":"res/color/m3_appbar_overlay_color.xml","name":"res/color/m3_appbar_overlay_color.xml","size":376,"crc":940783738},{"key":"res/color/m3_assist_chip_icon_tint_color.xml","name":"res/color/m3_assist_chip_icon_tint_color.xml","size":500,"crc":-322082820},{"key":"res/color/m3_assist_chip_stroke_color.xml","name":"res/color/m3_assist_chip_stroke_color.xml","size":872,"crc":-765319089},{"key":"res/color/m3_bottom_sheet_drag_handle_color.xml","name":"res/color/m3_bottom_sheet_drag_handle_color.xml","size":340,"crc":706461905},{"key":"res/color/m3_button_background_color_selector.xml","name":"res/color/m3_button_background_color_selector.xml","size":500,"crc":1431054},{"key":"res/color/m3_button_foreground_color_selector.xml","name":"res/color/m3_button_foreground_color_selector.xml","size":500,"crc":520860826},{"key":"res/color/m3_button_outline_color_selector.xml","name":"res/color/m3_button_outline_color_selector.xml","size":500,"crc":1836165633},{"key":"res/color/m3_button_ripple_color.xml","name":"res/color/m3_button_ripple_color.xml","size":808,"crc":1817261047},{"key":"res/color/m3_button_ripple_color_selector.xml","name":"res/color/m3_button_ripple_color_selector.xml","size":808,"crc":-1160989734},{"key":"res/color/m3_calendar_item_disabled_text.xml","name":"res/color/m3_calendar_item_disabled_text.xml","size":376,"crc":-2051511173},{"key":"res/color/m3_calendar_item_stroke_color.xml","name":"res/color/m3_calendar_item_stroke_color.xml","size":712,"crc":-100095401},{"key":"res/color/m3_card_foreground_color.xml","name":"res/color/m3_card_foreground_color.xml","size":768,"crc":-68932420},{"key":"res/color/m3_card_ripple_color.xml","name":"res/color/m3_card_ripple_color.xml","size":1556,"crc":-1844804471},{"key":"res/color/m3_card_stroke_color.xml","name":"res/color/m3_card_stroke_color.xml","size":1224,"crc":1725230945},{"key":"res/color/m3_checkbox_button_icon_tint.xml","name":"res/color/m3_checkbox_button_icon_tint.xml","size":964,"crc":-824090955},{"key":"res/color/m3_checkbox_button_tint.xml","name":"res/color/m3_checkbox_button_tint.xml","size":1000,"crc":-2067241791},{"key":"res/color/m3_chip_assist_text_color.xml","name":"res/color/m3_chip_assist_text_color.xml","size":500,"crc":431160280},{"key":"res/color/m3_chip_background_color.xml","name":"res/color/m3_chip_background_color.xml","size":712,"crc":-820740743},{"key":"res/color/m3_chip_ripple_color.xml","name":"res/color/m3_chip_ripple_color.xml","size":1556,"crc":-2108843416},{"key":"res/color/m3_chip_stroke_color.xml","name":"res/color/m3_chip_stroke_color.xml","size":872,"crc":-1649504809},{"key":"res/color/m3_chip_text_color.xml","name":"res/color/m3_chip_text_color.xml","size":624,"crc":1441075769},{"key":"res/color/m3_dark_default_color_primary_text.xml","name":"res/color/m3_dark_default_color_primary_text.xml","size":500,"crc":-1927912647},{"key":"res/color/m3_dark_default_color_secondary_text.xml","name":"res/color/m3_dark_default_color_secondary_text.xml","size":500,"crc":55890439},{"key":"res/color/m3_dark_highlighted_text.xml","name":"res/color/m3_dark_highlighted_text.xml","size":376,"crc":1581937693},{"key":"res/color/m3_dark_hint_foreground.xml","name":"res/color/m3_dark_hint_foreground.xml","size":564,"crc":821014056},{"key":"res/color/m3_dark_primary_text_disable_only.xml","name":"res/color/m3_dark_primary_text_disable_only.xml","size":500,"crc":-1403569227},{"key":"res/color/m3_default_color_primary_text.xml","name":"res/color/m3_default_color_primary_text.xml","size":500,"crc":-1183575610},{"key":"res/color/m3_default_color_secondary_text.xml","name":"res/color/m3_default_color_secondary_text.xml","size":500,"crc":926327032},{"key":"res/color/m3_efab_ripple_color_selector.xml","name":"res/color/m3_efab_ripple_color_selector.xml","size":808,"crc":1747868661},{"key":"res/color/m3_elevated_chip_background_color.xml","name":"res/color/m3_elevated_chip_background_color.xml","size":748,"crc":-2057648631},{"key":"res/color/m3_fab_efab_background_color_selector.xml","name":"res/color/m3_fab_efab_background_color_selector.xml","size":500,"crc":1431054},{"key":"res/color/m3_fab_efab_foreground_color_selector.xml","name":"res/color/m3_fab_efab_foreground_color_selector.xml","size":500,"crc":520860826},{"key":"res/color/m3_fab_ripple_color_selector.xml","name":"res/color/m3_fab_ripple_color_selector.xml","size":808,"crc":1666521098},{"key":"res/color/m3_filled_icon_button_container_color_selector.xml","name":"res/color/m3_filled_icon_button_container_color_selector.xml","size":668,"crc":1325414287},{"key":"res/color/m3_highlighted_text.xml","name":"res/color/m3_highlighted_text.xml","size":376,"crc":-1794798684},{"key":"res/color/m3_hint_foreground.xml","name":"res/color/m3_hint_foreground.xml","size":564,"crc":197104272},{"key":"res/color/m3_icon_button_icon_color_selector.xml","name":"res/color/m3_icon_button_icon_color_selector.xml","size":668,"crc":-448447158},{"key":"res/color/m3_navigation_bar_item_with_indicator_icon_tint.xml","name":"res/color/m3_navigation_bar_item_with_indicator_icon_tint.xml","size":1196,"crc":-787967621},{"key":"res/color/m3_navigation_bar_item_with_indicator_label_tint.xml","name":"res/color/m3_navigation_bar_item_with_indicator_label_tint.xml","size":1196,"crc":1628892984},{"key":"res/color/m3_navigation_bar_ripple_color_selector.xml","name":"res/color/m3_navigation_bar_ripple_color_selector.xml","size":1232,"crc":-1398412064},{"key":"res/color/m3_navigation_item_background_color.xml","name":"res/color/m3_navigation_item_background_color.xml","size":588,"crc":-348595502},{"key":"res/color/m3_navigation_item_icon_tint.xml","name":"res/color/m3_navigation_item_icon_tint.xml","size":1356,"crc":-207826482},{"key":"res/color/m3_navigation_item_ripple_color.xml","name":"res/color/m3_navigation_item_ripple_color.xml","size":1372,"crc":317881936},{"key":"res/color/m3_navigation_item_text_color.xml","name":"res/color/m3_navigation_item_text_color.xml","size":1356,"crc":1494472847},{"key":"res/color/m3_navigation_rail_item_with_indicator_icon_tint.xml","name":"res/color/m3_navigation_rail_item_with_indicator_icon_tint.xml","size":464,"crc":-755596530},{"key":"res/color/m3_navigation_rail_item_with_indicator_label_tint.xml","name":"res/color/m3_navigation_rail_item_with_indicator_label_tint.xml","size":464,"crc":1587537019},{"key":"res/color/m3_navigation_rail_ripple_color_selector.xml","name":"res/color/m3_navigation_rail_ripple_color_selector.xml","size":1232,"crc":-905635925},{"key":"res/color/m3_popupmenu_overlay_color.xml","name":"res/color/m3_popupmenu_overlay_color.xml","size":376,"crc":468632849},{"key":"res/color/m3_primary_text_disable_only.xml","name":"res/color/m3_primary_text_disable_only.xml","size":500,"crc":-1328586256},{"key":"res/color/m3_radiobutton_button_tint.xml","name":"res/color/m3_radiobutton_button_tint.xml","size":1576,"crc":-1885189644},{"key":"res/color/m3_radiobutton_ripple_tint.xml","name":"res/color/m3_radiobutton_ripple_tint.xml","size":1372,"crc":-2096081237},{"key":"res/color/m3_selection_control_ripple_color_selector.xml","name":"res/color/m3_selection_control_ripple_color_selector.xml","size":1372,"crc":-1943086396},{"key":"res/color/m3_simple_item_ripple_color.xml","name":"res/color/m3_simple_item_ripple_color.xml","size":748,"crc":1906860746},{"key":"res/color/m3_slider_active_track_color.xml","name":"res/color/m3_slider_active_track_color.xml","size":500,"crc":-818216278},{"key":"res/color/m3_slider_halo_color.xml","name":"res/color/m3_slider_halo_color.xml","size":500,"crc":-1105181421},{"key":"res/color/m3_slider_inactive_track_color.xml","name":"res/color/m3_slider_inactive_track_color.xml","size":500,"crc":1648046939},{"key":"res/color/m3_slider_thumb_color.xml","name":"res/color/m3_slider_thumb_color.xml","size":500,"crc":2032162726},{"key":"res/color/m3_switch_thumb_tint.xml","name":"res/color/m3_switch_thumb_tint.xml","size":588,"crc":-151121742},{"key":"res/color/m3_switch_track_tint.xml","name":"res/color/m3_switch_track_tint.xml","size":624,"crc":1277880160},{"key":"res/color/m3_tabs_icon_color.xml","name":"res/color/m3_tabs_icon_color.xml","size":624,"crc":-1924398551},{"key":"res/color/m3_tabs_icon_color_secondary.xml","name":"res/color/m3_tabs_icon_color_secondary.xml","size":624,"crc":2063580749},{"key":"res/color/m3_tabs_ripple_color.xml","name":"res/color/m3_tabs_ripple_color.xml","size":1372,"crc":-481980335},{"key":"res/color/m3_tabs_ripple_color_secondary.xml","name":"res/color/m3_tabs_ripple_color_secondary.xml","size":1372,"crc":1106885231},{"key":"res/color/m3_tabs_text_color.xml","name":"res/color/m3_tabs_text_color.xml","size":624,"crc":-1924398551},{"key":"res/color/m3_tabs_text_color_secondary.xml","name":"res/color/m3_tabs_text_color_secondary.xml","size":624,"crc":2063580749},{"key":"res/color/m3_text_button_background_color_selector.xml","name":"res/color/m3_text_button_background_color_selector.xml","size":508,"crc":1488336652},{"key":"res/color/m3_text_button_foreground_color_selector.xml","name":"res/color/m3_text_button_foreground_color_selector.xml","size":748,"crc":1603618837},{"key":"res/color/m3_text_button_ripple_color_selector.xml","name":"res/color/m3_text_button_ripple_color_selector.xml","size":1936,"crc":-2064238425},{"key":"res/color/m3_textfield_filled_background_color.xml","name":"res/color/m3_textfield_filled_background_color.xml","size":500,"crc":1990304049},{"key":"res/color/m3_textfield_indicator_text_color.xml","name":"res/color/m3_textfield_indicator_text_color.xml","size":872,"crc":1340612816},{"key":"res/color/m3_textfield_input_text_color.xml","name":"res/color/m3_textfield_input_text_color.xml","size":748,"crc":-168518029},{"key":"res/color/m3_textfield_label_color.xml","name":"res/color/m3_textfield_label_color.xml","size":624,"crc":1015400073},{"key":"res/color/m3_textfield_stroke_color.xml","name":"res/color/m3_textfield_stroke_color.xml","size":748,"crc":805492503},{"key":"res/color/m3_timepicker_button_background_color.xml","name":"res/color/m3_timepicker_button_background_color.xml","size":528,"crc":-2045213224},{"key":"res/color/m3_timepicker_button_ripple_color.xml","name":"res/color/m3_timepicker_button_ripple_color.xml","size":1536,"crc":1556797642},{"key":"res/color/m3_timepicker_button_text_color.xml","name":"res/color/m3_timepicker_button_text_color.xml","size":768,"crc":-1861026794},{"key":"res/color/m3_timepicker_clock_text_color.xml","name":"res/color/m3_timepicker_clock_text_color.xml","size":464,"crc":-1051823032},{"key":"res/color/m3_timepicker_display_background_color.xml","name":"res/color/m3_timepicker_display_background_color.xml","size":464,"crc":-1025021997},{"key":"res/color/m3_timepicker_display_ripple_color.xml","name":"res/color/m3_timepicker_display_ripple_color.xml","size":1372,"crc":201648889},{"key":"res/color/m3_timepicker_display_text_color.xml","name":"res/color/m3_timepicker_display_text_color.xml","size":624,"crc":-251212826},{"key":"res/color/m3_timepicker_secondary_text_button_ripple_color.xml","name":"res/color/m3_timepicker_secondary_text_button_ripple_color.xml","size":808,"crc":234042726},{"key":"res/color/m3_timepicker_secondary_text_button_text_color.xml","name":"res/color/m3_timepicker_secondary_text_button_text_color.xml","size":500,"crc":2143865884},{"key":"res/color/m3_timepicker_time_input_stroke_color.xml","name":"res/color/m3_timepicker_time_input_stroke_color.xml","size":464,"crc":142631324},{"key":"res/color/m3_tonal_button_ripple_color_selector.xml","name":"res/color/m3_tonal_button_ripple_color_selector.xml","size":808,"crc":-1160989734},{"key":"res/color/material_cursor_color.xml","name":"res/color/material_cursor_color.xml","size":340,"crc":1536521346},{"key":"res/color/material_divider_color.xml","name":"res/color/material_divider_color.xml","size":376,"crc":-1279336076},{"key":"res/color/material_on_background_disabled.xml","name":"res/color/material_on_background_disabled.xml","size":376,"crc":555949054},{"key":"res/color/material_on_background_emphasis_high_type.xml","name":"res/color/material_on_background_emphasis_high_type.xml","size":376,"crc":-422084669},{"key":"res/color/material_on_background_emphasis_medium.xml","name":"res/color/material_on_background_emphasis_medium.xml","size":376,"crc":1754648317},{"key":"res/color/material_on_primary_disabled.xml","name":"res/color/material_on_primary_disabled.xml","size":376,"crc":2052906211},{"key":"res/color/material_on_primary_emphasis_high_type.xml","name":"res/color/material_on_primary_emphasis_high_type.xml","size":376,"crc":-1113016098},{"key":"res/color/material_on_primary_emphasis_medium.xml","name":"res/color/material_on_primary_emphasis_medium.xml","size":376,"crc":870975968},{"key":"res/color/material_on_surface_disabled.xml","name":"res/color/material_on_surface_disabled.xml","size":376,"crc":329637659},{"key":"res/color/material_on_surface_emphasis_high_type.xml","name":"res/color/material_on_surface_emphasis_high_type.xml","size":376,"crc":-732841178},{"key":"res/color/material_on_surface_emphasis_medium.xml","name":"res/color/material_on_surface_emphasis_medium.xml","size":376,"crc":1511197208},{"key":"res/color/material_on_surface_stroke.xml","name":"res/color/material_on_surface_stroke.xml","size":376,"crc":-123426414},{"key":"res/color/material_personalized__highlighted_text.xml","name":"res/color/material_personalized__highlighted_text.xml","size":376,"crc":-533219197},{"key":"res/color/material_personalized__highlighted_text_inverse.xml","name":"res/color/material_personalized__highlighted_text_inverse.xml","size":376,"crc":-2058640058},{"key":"res/color/material_personalized_color_primary_text.xml","name":"res/color/material_personalized_color_primary_text.xml","size":500,"crc":512317136},{"key":"res/color/material_personalized_color_primary_text_inverse.xml","name":"res/color/material_personalized_color_primary_text_inverse.xml","size":500,"crc":2090995657},{"key":"res/color/material_personalized_color_secondary_text.xml","name":"res/color/material_personalized_color_secondary_text.xml","size":500,"crc":618094752},{"key":"res/color/material_personalized_color_secondary_text_inverse.xml","name":"res/color/material_personalized_color_secondary_text_inverse.xml","size":500,"crc":114021031},{"key":"res/color/material_personalized_hint_foreground.xml","name":"res/color/material_personalized_hint_foreground.xml","size":564,"crc":481772023},{"key":"res/color/material_personalized_hint_foreground_inverse.xml","name":"res/color/material_personalized_hint_foreground_inverse.xml","size":564,"crc":278734246},{"key":"res/color/material_personalized_primary_inverse_text_disable_only.xml","name":"res/color/material_personalized_primary_inverse_text_disable_only.xml","size":500,"crc":-182360533},{"key":"res/color/material_personalized_primary_text_disable_only.xml","name":"res/color/material_personalized_primary_text_disable_only.xml","size":500,"crc":1070075484},{"key":"res/color/material_slider_active_tick_marks_color.xml","name":"res/color/material_slider_active_tick_marks_color.xml","size":520,"crc":-1848312163},{"key":"res/color/material_slider_active_track_color.xml","name":"res/color/material_slider_active_track_color.xml","size":500,"crc":1960931503},{"key":"res/color/material_slider_halo_color.xml","name":"res/color/material_slider_halo_color.xml","size":500,"crc":2139057503},{"key":"res/color/material_slider_inactive_tick_marks_color.xml","name":"res/color/material_slider_inactive_tick_marks_color.xml","size":520,"crc":-32600660},{"key":"res/color/material_slider_inactive_track_color.xml","name":"res/color/material_slider_inactive_track_color.xml","size":520,"crc":866365684},{"key":"res/color/material_slider_thumb_color.xml","name":"res/color/material_slider_thumb_color.xml","size":500,"crc":2102950569},{"key":"res/color/material_timepicker_button_background.xml","name":"res/color/material_timepicker_button_background.xml","size":500,"crc":-1569347398},{"key":"res/color/material_timepicker_button_stroke.xml","name":"res/color/material_timepicker_button_stroke.xml","size":376,"crc":1739697651},{"key":"res/color/material_timepicker_clock_text_color.xml","name":"res/color/material_timepicker_clock_text_color.xml","size":464,"crc":-965860127},{"key":"res/color/material_timepicker_clockface.xml","name":"res/color/material_timepicker_clockface.xml","size":376,"crc":1291409233},{"key":"res/color/material_timepicker_modebutton_tint.xml","name":"res/color/material_timepicker_modebutton_tint.xml","size":376,"crc":-86760651},{"key":"res/color/mtrl_btn_bg_color_selector.xml","name":"res/color/mtrl_btn_bg_color_selector.xml","size":500,"crc":-1051432089},{"key":"res/color/mtrl_btn_ripple_color.xml","name":"res/color/mtrl_btn_ripple_color.xml","size":948,"crc":-1364937085},{"key":"res/color/mtrl_btn_stroke_color_selector.xml","name":"res/color/mtrl_btn_stroke_color_selector.xml","size":520,"crc":1891771984},{"key":"res/color/mtrl_btn_text_btn_bg_color_selector.xml","name":"res/color/mtrl_btn_text_btn_bg_color_selector.xml","size":520,"crc":-66415344},{"key":"res/color/mtrl_btn_text_btn_ripple_color.xml","name":"res/color/mtrl_btn_text_btn_ripple_color.xml","size":948,"crc":860694578},{"key":"res/color/mtrl_btn_text_color_selector.xml","name":"res/color/mtrl_btn_text_color_selector.xml","size":500,"crc":1753418756},{"key":"res/color/mtrl_calendar_item_stroke_color.xml","name":"res/color/mtrl_calendar_item_stroke_color.xml","size":808,"crc":-1897765442},{"key":"res/color/mtrl_calendar_selected_range.xml","name":"res/color/mtrl_calendar_selected_range.xml","size":376,"crc":574168547},{"key":"res/color/mtrl_card_view_foreground.xml","name":"res/color/mtrl_card_view_foreground.xml","size":788,"crc":-89568530},{"key":"res/color/mtrl_card_view_ripple.xml","name":"res/color/mtrl_card_view_ripple.xml","size":768,"crc":965878192},{"key":"res/color/mtrl_chip_background_color.xml","name":"res/color/mtrl_chip_background_color.xml","size":848,"crc":1130345132},{"key":"res/color/mtrl_chip_close_icon_tint.xml","name":"res/color/mtrl_chip_close_icon_tint.xml","size":1092,"crc":163081984},{"key":"res/color/mtrl_chip_surface_color.xml","name":"res/color/mtrl_chip_surface_color.xml","size":340,"crc":1125854904},{"key":"res/color/mtrl_chip_text_color.xml","name":"res/color/mtrl_chip_text_color.xml","size":520,"crc":1100666539},{"key":"res/color/mtrl_choice_chip_background_color.xml","name":"res/color/mtrl_choice_chip_background_color.xml","size":848,"crc":-948289294},{"key":"res/color/mtrl_choice_chip_ripple_color.xml","name":"res/color/mtrl_choice_chip_ripple_color.xml","size":948,"crc":665806037},{"key":"res/color/mtrl_choice_chip_text_color.xml","name":"res/color/mtrl_choice_chip_text_color.xml","size":808,"crc":-508732010},{"key":"res/color/mtrl_error.xml","name":"res/color/mtrl_error.xml","size":464,"crc":2113506919},{"key":"res/color/mtrl_fab_bg_color_selector.xml","name":"res/color/mtrl_fab_bg_color_selector.xml","size":500,"crc":409782502},{"key":"res/color/mtrl_fab_icon_text_color_selector.xml","name":"res/color/mtrl_fab_icon_text_color_selector.xml","size":500,"crc":900733910},{"key":"res/color/mtrl_fab_ripple_color.xml","name":"res/color/mtrl_fab_ripple_color.xml","size":948,"crc":-1554783790},{"key":"res/color/mtrl_filled_background_color.xml","name":"res/color/mtrl_filled_background_color.xml","size":808,"crc":-339486878},{"key":"res/color/mtrl_filled_icon_tint.xml","name":"res/color/mtrl_filled_icon_tint.xml","size":644,"crc":-350017018},{"key":"res/color/mtrl_filled_stroke_color.xml","name":"res/color/mtrl_filled_stroke_color.xml","size":788,"crc":-2138293321},{"key":"res/color/mtrl_indicator_text_color.xml","name":"res/color/mtrl_indicator_text_color.xml","size":520,"crc":-1272518866},{"key":"res/color/mtrl_navigation_bar_colored_item_tint.xml","name":"res/color/mtrl_navigation_bar_colored_item_tint.xml","size":520,"crc":586014296},{"key":"res/color/mtrl_navigation_bar_colored_ripple_color.xml","name":"res/color/mtrl_navigation_bar_colored_ripple_color.xml","size":948,"crc":51010866},{"key":"res/color/mtrl_navigation_bar_item_tint.xml","name":"res/color/mtrl_navigation_bar_item_tint.xml","size":520,"crc":1295494505},{"key":"res/color/mtrl_navigation_bar_ripple_color.xml","name":"res/color/mtrl_navigation_bar_ripple_color.xml","size":1672,"crc":-2104800327},{"key":"res/color/mtrl_navigation_item_background_color.xml","name":"res/color/mtrl_navigation_item_background_color.xml","size":644,"crc":-1640328340},{"key":"res/color/mtrl_navigation_item_icon_tint.xml","name":"res/color/mtrl_navigation_item_icon_tint.xml","size":624,"crc":176928592},{"key":"res/color/mtrl_navigation_item_text_color.xml","name":"res/color/mtrl_navigation_item_text_color.xml","size":624,"crc":176928592},{"key":"res/color/mtrl_on_primary_text_btn_text_color_selector.xml","name":"res/color/mtrl_on_primary_text_btn_text_color_selector.xml","size":500,"crc":769057228},{"key":"res/color/mtrl_on_surface_ripple_color.xml","name":"res/color/mtrl_on_surface_ripple_color.xml","size":808,"crc":-1382685745},{"key":"res/color/mtrl_outlined_icon_tint.xml","name":"res/color/mtrl_outlined_icon_tint.xml","size":644,"crc":-844237075},{"key":"res/color/mtrl_outlined_stroke_color.xml","name":"res/color/mtrl_outlined_stroke_color.xml","size":788,"crc":748122300},{"key":"res/color/mtrl_popupmenu_overlay_color.xml","name":"res/color/mtrl_popupmenu_overlay_color.xml","size":376,"crc":-1073170695},{"key":"res/color/mtrl_switch_thumb_icon_tint.xml","name":"res/color/mtrl_switch_thumb_icon_tint.xml","size":1236,"crc":-463757771},{"key":"res/color/mtrl_switch_thumb_tint.xml","name":"res/color/mtrl_switch_thumb_tint.xml","size":1028,"crc":-67378190},{"key":"res/color/mtrl_switch_track_decoration_tint.xml","name":"res/color/mtrl_switch_track_decoration_tint.xml","size":624,"crc":294261686},{"key":"res/color/mtrl_switch_track_tint.xml","name":"res/color/mtrl_switch_track_tint.xml","size":1236,"crc":-243543750},{"key":"res/color/mtrl_tabs_colored_ripple_color.xml","name":"res/color/mtrl_tabs_colored_ripple_color.xml","size":948,"crc":51010866},{"key":"res/color/mtrl_tabs_icon_color_selector.xml","name":"res/color/mtrl_tabs_icon_color_selector.xml","size":500,"crc":-1604277735},{"key":"res/color/mtrl_tabs_icon_color_selector_colored.xml","name":"res/color/mtrl_tabs_icon_color_selector_colored.xml","size":500,"crc":-599597236},{"key":"res/color/mtrl_tabs_legacy_text_color_selector.xml","name":"res/color/mtrl_tabs_legacy_text_color_selector.xml","size":464,"crc":301181175},{"key":"res/color/mtrl_tabs_ripple_color.xml","name":"res/color/mtrl_tabs_ripple_color.xml","size":1672,"crc":-2104800327},{"key":"res/color/mtrl_text_btn_text_color_selector.xml","name":"res/color/mtrl_text_btn_text_color_selector.xml","size":888,"crc":-1696089436},{"key":"res/color/switch_thumb_material_dark.xml","name":"res/color/switch_thumb_material_dark.xml","size":464,"crc":1807275962},{"key":"res/color/switch_thumb_material_light.xml","name":"res/color/switch_thumb_material_light.xml","size":464,"crc":-123230016},{"key":"res/color-night-v8/material_timepicker_button_stroke.xml","name":"res/color-night-v8/material_timepicker_button_stroke.xml","size":376,"crc":1151907932},{"key":"res/color-night-v8/material_timepicker_clockface.xml","name":"res/color-night-v8/material_timepicker_clockface.xml","size":376,"crc":-1279336076},{"key":"res/color-night-v8/material_timepicker_modebutton_tint.xml","name":"res/color-night-v8/material_timepicker_modebutton_tint.xml","size":340,"crc":-1183421737},{"key":"res/color-v26/biometric_error_color.xml","name":"res/color-v26/biometric_error_color.xml","size":464,"crc":-1363387313},{"key":"res/color-v31/m3_dynamic_dark_default_color_primary_text.xml","name":"res/color-v31/m3_dynamic_dark_default_color_primary_text.xml","size":500,"crc":1670564576},{"key":"res/color-v31/m3_dynamic_dark_default_color_secondary_text.xml","name":"res/color-v31/m3_dynamic_dark_default_color_secondary_text.xml","size":500,"crc":-305103906},{"key":"res/color-v31/m3_dynamic_dark_highlighted_text.xml","name":"res/color-v31/m3_dynamic_dark_highlighted_text.xml","size":376,"crc":-253023632},{"key":"res/color-v31/m3_dynamic_dark_hint_foreground.xml","name":"res/color-v31/m3_dynamic_dark_hint_foreground.xml","size":564,"crc":1829426210},{"key":"res/color-v31/m3_dynamic_dark_primary_text_disable_only.xml","name":"res/color-v31/m3_dynamic_dark_primary_text_disable_only.xml","size":500,"crc":1781119702},{"key":"res/color-v31/m3_dynamic_default_color_primary_text.xml","name":"res/color-v31/m3_dynamic_default_color_primary_text.xml","size":500,"crc":1101373203},{"key":"res/color-v31/m3_dynamic_default_color_secondary_text.xml","name":"res/color-v31/m3_dynamic_default_color_secondary_text.xml","size":500,"crc":-806932947},{"key":"res/color-v31/m3_dynamic_highlighted_text.xml","name":"res/color-v31/m3_dynamic_highlighted_text.xml","size":376,"crc":-1787551829},{"key":"res/color-v31/m3_dynamic_hint_foreground.xml","name":"res/color-v31/m3_dynamic_hint_foreground.xml","size":564,"crc":2108289355},{"key":"res/color-v31/m3_dynamic_primary_text_disable_only.xml","name":"res/color-v31/m3_dynamic_primary_text_disable_only.xml","size":500,"crc":1209986853},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral12.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral12.xml","size":376,"crc":-263691429},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral17.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral17.xml","size":376,"crc":207538851},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral22.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral22.xml","size":376,"crc":1896790006},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral24.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral24.xml","size":376,"crc":-1951511204},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral4.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral4.xml","size":376,"crc":-1406565007},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral6.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral6.xml","size":376,"crc":2086801746},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral87.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral87.xml","size":376,"crc":1960127704},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral92.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral92.xml","size":376,"crc":-443529607},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral94.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral94.xml","size":376,"crc":-833761385},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral96.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral96.xml","size":376,"crc":1217113871},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral98.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral98.xml","size":376,"crc":1666590433},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant12.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant12.xml","size":376,"crc":-38774044},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant17.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant17.xml","size":376,"crc":27718428},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant22.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant22.xml","size":376,"crc":2096533065},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant24.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant24.xml","size":376,"crc":-2041154333},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant4.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant4.xml","size":376,"crc":-1580090162},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant6.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant6.xml","size":376,"crc":1905928429},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant87.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant87.xml","size":376,"crc":2032997735},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant92.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant92.xml","size":376,"crc":-395804730},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant94.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant94.xml","size":376,"crc":-1011485144},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant96.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant96.xml","size":376,"crc":1165203120},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant98.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant98.xml","size":376,"crc":1856905054},{"key":"res/drawable/$avd_hide_password__0.xml","name":"res/drawable/$avd_hide_password__0.xml","size":1176,"crc":937731799},{"key":"res/drawable/$avd_hide_password__1.xml","name":"res/drawable/$avd_hide_password__1.xml","size":592,"crc":1822471667},{"key":"res/drawable/$avd_hide_password__2.xml","name":"res/drawable/$avd_hide_password__2.xml","size":556,"crc":324904570},{"key":"res/drawable/$avd_show_password__0.xml","name":"res/drawable/$avd_show_password__0.xml","size":1136,"crc":-716479731},{"key":"res/drawable/$avd_show_password__1.xml","name":"res/drawable/$avd_show_password__1.xml","size":592,"crc":550813524},{"key":"res/drawable/$avd_show_password__2.xml","name":"res/drawable/$avd_show_password__2.xml","size":556,"crc":-1951102379},{"key":"res/drawable/$m3_avd_hide_password__0.xml","name":"res/drawable/$m3_avd_hide_password__0.xml","size":1176,"crc":937731799},{"key":"res/drawable/$m3_avd_hide_password__1.xml","name":"res/drawable/$m3_avd_hide_password__1.xml","size":592,"crc":-50974824},{"key":"res/drawable/$m3_avd_hide_password__2.xml","name":"res/drawable/$m3_avd_hide_password__2.xml","size":556,"crc":1236622639},{"key":"res/drawable/$m3_avd_show_password__0.xml","name":"res/drawable/$m3_avd_show_password__0.xml","size":1136,"crc":-716479731},{"key":"res/drawable/$m3_avd_show_password__1.xml","name":"res/drawable/$m3_avd_show_password__1.xml","size":592,"crc":1647598230},{"key":"res/drawable/$m3_avd_show_password__2.xml","name":"res/drawable/$m3_avd_show_password__2.xml","size":556,"crc":-772615930},{"key":"res/drawable/$mtrl_checkbox_button_checked_unchecked__0.xml","name":"res/drawable/$mtrl_checkbox_button_checked_unchecked__0.xml","size":592,"crc":-346686892},{"key":"res/drawable/$mtrl_checkbox_button_checked_unchecked__1.xml","name":"res/drawable/$mtrl_checkbox_button_checked_unchecked__1.xml","size":592,"crc":1451570791},{"key":"res/drawable/$mtrl_checkbox_button_checked_unchecked__2.xml","name":"res/drawable/$mtrl_checkbox_button_checked_unchecked__2.xml","size":592,"crc":-569341694},{"key":"res/drawable/$mtrl_checkbox_button_icon_checked_indeterminate__0.xml","name":"res/drawable/$mtrl_checkbox_button_icon_checked_indeterminate__0.xml","size":592,"crc":-1574722300},{"key":"res/drawable/$mtrl_checkbox_button_icon_checked_unchecked__0.xml","name":"res/drawable/$mtrl_checkbox_button_icon_checked_unchecked__0.xml","size":592,"crc":-346686892},{"key":"res/drawable/$mtrl_checkbox_button_icon_checked_unchecked__1.xml","name":"res/drawable/$mtrl_checkbox_button_icon_checked_unchecked__1.xml","size":592,"crc":1451570791},{"key":"res/drawable/$mtrl_checkbox_button_icon_checked_unchecked__2.xml","name":"res/drawable/$mtrl_checkbox_button_icon_checked_unchecked__2.xml","size":592,"crc":-569341694},{"key":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_checked__0.xml","name":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_checked__0.xml","size":592,"crc":1379505435},{"key":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__0.xml","name":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__0.xml","size":592,"crc":-346686892},{"key":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__1.xml","name":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__1.xml","size":592,"crc":1451570791},{"key":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__2.xml","name":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__2.xml","size":592,"crc":-569341694},{"key":"res/drawable/$mtrl_checkbox_button_icon_unchecked_checked__0.xml","name":"res/drawable/$mtrl_checkbox_button_icon_unchecked_checked__0.xml","size":592,"crc":-1036261069},{"key":"res/drawable/$mtrl_checkbox_button_icon_unchecked_checked__1.xml","name":"res/drawable/$mtrl_checkbox_button_icon_unchecked_checked__1.xml","size":592,"crc":2146116864},{"key":"res/drawable/$mtrl_checkbox_button_icon_unchecked_checked__2.xml","name":"res/drawable/$mtrl_checkbox_button_icon_unchecked_checked__2.xml","size":596,"crc":-2035886171},{"key":"res/drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__0.xml","name":"res/drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__0.xml","size":592,"crc":-1036261069},{"key":"res/drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__1.xml","name":"res/drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__1.xml","size":592,"crc":2146116864},{"key":"res/drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__2.xml","name":"res/drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__2.xml","size":592,"crc":-838612980},{"key":"res/drawable/$mtrl_checkbox_button_unchecked_checked__0.xml","name":"res/drawable/$mtrl_checkbox_button_unchecked_checked__0.xml","size":592,"crc":-1036261069},{"key":"res/drawable/$mtrl_checkbox_button_unchecked_checked__1.xml","name":"res/drawable/$mtrl_checkbox_button_unchecked_checked__1.xml","size":592,"crc":2146116864},{"key":"res/drawable/$mtrl_checkbox_button_unchecked_checked__2.xml","name":"res/drawable/$mtrl_checkbox_button_unchecked_checked__2.xml","size":592,"crc":-838612980},{"key":"res/drawable/$mtrl_switch_thumb_checked_pressed__0.xml","name":"res/drawable/$mtrl_switch_thumb_checked_pressed__0.xml","size":592,"crc":-812494894},{"key":"res/drawable/$mtrl_switch_thumb_checked_unchecked__0.xml","name":"res/drawable/$mtrl_switch_thumb_checked_unchecked__0.xml","size":548,"crc":415087773},{"key":"res/drawable/$mtrl_switch_thumb_checked_unchecked__1.xml","name":"res/drawable/$mtrl_switch_thumb_checked_unchecked__1.xml","size":592,"crc":228451254},{"key":"res/drawable/$mtrl_switch_thumb_pressed_checked__0.xml","name":"res/drawable/$mtrl_switch_thumb_pressed_checked__0.xml","size":592,"crc":2006754860},{"key":"res/drawable/$mtrl_switch_thumb_pressed_unchecked__0.xml","name":"res/drawable/$mtrl_switch_thumb_pressed_unchecked__0.xml","size":592,"crc":2142007954},{"key":"res/drawable/$mtrl_switch_thumb_unchecked_checked__0.xml","name":"res/drawable/$mtrl_switch_thumb_unchecked_checked__0.xml","size":548,"crc":-1033941063},{"key":"res/drawable/$mtrl_switch_thumb_unchecked_checked__1.xml","name":"res/drawable/$mtrl_switch_thumb_unchecked_checked__1.xml","size":592,"crc":-1036584387},{"key":"res/drawable/$mtrl_switch_thumb_unchecked_pressed__0.xml","name":"res/drawable/$mtrl_switch_thumb_unchecked_pressed__0.xml","size":592,"crc":848752186},{"key":"res/drawable-v21/abc_action_bar_item_background_material.xml","name":"res/drawable-v21/abc_action_bar_item_background_material.xml","size":264,"crc":893712625},{"key":"res/drawable/abc_btn_borderless_material.xml","name":"res/drawable/abc_btn_borderless_material.xml","size":588,"crc":352031250},{"key":"res/drawable/abc_btn_check_material.xml","name":"res/drawable/abc_btn_check_material.xml","size":464,"crc":-815546010},{"key":"res/drawable/abc_btn_check_material_anim.xml","name":"res/drawable/abc_btn_check_material_anim.xml","size":816,"crc":-1476881551},{"key":"res/drawable-v21/abc_btn_colored_material.xml","name":"res/drawable-v21/abc_btn_colored_material.xml","size":1716,"crc":-989192254},{"key":"res/drawable/abc_btn_default_mtrl_shape.xml","name":"res/drawable/abc_btn_default_mtrl_shape.xml","size":932,"crc":-1471577726},{"key":"res/drawable/abc_btn_radio_material.xml","name":"res/drawable/abc_btn_radio_material.xml","size":464,"crc":-1563179758},{"key":"res/drawable/abc_btn_radio_material_anim.xml","name":"res/drawable/abc_btn_radio_material_anim.xml","size":816,"crc":-1439152154},{"key":"res/drawable/abc_cab_background_internal_bg.xml","name":"res/drawable/abc_cab_background_internal_bg.xml","size":372,"crc":-693425677},{"key":"res/drawable/abc_cab_background_top_material.xml","name":"res/drawable/abc_cab_background_top_material.xml","size":336,"crc":-1512034296},{"key":"res/drawable-v23/abc_control_background_material.xml","name":"res/drawable-v23/abc_control_background_material.xml","size":304,"crc":447853151},{"key":"res/drawable-v21/abc_dialog_material_background.xml","name":"res/drawable-v21/abc_dialog_material_background.xml","size":716,"crc":369435469},{"key":"res/drawable-v21/abc_edit_text_material.xml","name":"res/drawable-v21/abc_edit_text_material.xml","size":1172,"crc":-1754535450},{"key":"res/drawable/abc_ic_ab_back_material.xml","name":"res/drawable/abc_ic_ab_back_material.xml","size":692,"crc":-238478857},{"key":"res/drawable/abc_ic_arrow_drop_right_black_24dp.xml","name":"res/drawable/abc_ic_arrow_drop_right_black_24dp.xml","size":1000,"crc":-766638774},{"key":"res/drawable/abc_ic_clear_material.xml","name":"res/drawable/abc_ic_clear_material.xml","size":684,"crc":2134066410},{"key":"res/drawable/abc_ic_go_search_api_material.xml","name":"res/drawable/abc_ic_go_search_api_material.xml","size":640,"crc":445212600},{"key":"res/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml","name":"res/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml","size":756,"crc":141324321},{"key":"res/drawable/abc_ic_menu_cut_mtrl_alpha.xml","name":"res/drawable/abc_ic_menu_cut_mtrl_alpha.xml","size":1096,"crc":459529817},{"key":"res/drawable/abc_ic_menu_overflow_material.xml","name":"res/drawable/abc_ic_menu_overflow_material.xml","size":792,"crc":670428759},{"key":"res/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml","name":"res/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml","size":796,"crc":1534258133},{"key":"res/drawable/abc_ic_menu_selectall_mtrl_alpha.xml","name":"res/drawable/abc_ic_menu_selectall_mtrl_alpha.xml","size":920,"crc":1929046294},{"key":"res/drawable/abc_ic_menu_share_mtrl_alpha.xml","name":"res/drawable/abc_ic_menu_share_mtrl_alpha.xml","size":980,"crc":547834227},{"key":"res/drawable/abc_ic_search_api_material.xml","name":"res/drawable/abc_ic_search_api_material.xml","size":812,"crc":1282784005},{"key":"res/drawable/abc_ic_voice_search_api_material.xml","name":"res/drawable/abc_ic_voice_search_api_material.xml","size":828,"crc":-114005597},{"key":"res/drawable/abc_item_background_holo_dark.xml","name":"res/drawable/abc_item_background_holo_dark.xml","size":1012,"crc":-1100220083},{"key":"res/drawable/abc_item_background_holo_light.xml","name":"res/drawable/abc_item_background_holo_light.xml","size":1012,"crc":121753374},{"key":"res/drawable-v21/abc_list_divider_material.xml","name":"res/drawable-v21/abc_list_divider_material.xml","size":516,"crc":-2096256569},{"key":"res/drawable/abc_list_selector_background_transition_holo_dark.xml","name":"res/drawable/abc_list_selector_background_transition_holo_dark.xml","size":424,"crc":886525859},{"key":"res/drawable/abc_list_selector_background_transition_holo_light.xml","name":"res/drawable/abc_list_selector_background_transition_holo_light.xml","size":424,"crc":696943079},{"key":"res/drawable/abc_list_selector_holo_dark.xml","name":"res/drawable/abc_list_selector_holo_dark.xml","size":1064,"crc":-1514718402},{"key":"res/drawable/abc_list_selector_holo_light.xml","name":"res/drawable/abc_list_selector_holo_light.xml","size":1064,"crc":-1869964317},{"key":"res/drawable/abc_ratingbar_indicator_material.xml","name":"res/drawable/abc_ratingbar_indicator_material.xml","size":124,"crc":1548506544},{"key":"res/drawable/abc_ratingbar_material.xml","name":"res/drawable/abc_ratingbar_material.xml","size":124,"crc":1548506544},{"key":"res/drawable/abc_ratingbar_small_material.xml","name":"res/drawable/abc_ratingbar_small_material.xml","size":124,"crc":1548506544},{"key":"res/drawable/abc_seekbar_thumb_material.xml","name":"res/drawable/abc_seekbar_thumb_material.xml","size":1100,"crc":910207004},{"key":"res/drawable/abc_seekbar_tick_mark_material.xml","name":"res/drawable/abc_seekbar_tick_mark_material.xml","size":516,"crc":268187399},{"key":"res/drawable/abc_seekbar_track_material.xml","name":"res/drawable/abc_seekbar_track_material.xml","size":1408,"crc":-1074493088},{"key":"res/drawable/abc_spinner_textfield_background_material.xml","name":"res/drawable/abc_spinner_textfield_background_material.xml","size":1160,"crc":2001648743},{"key":"res/drawable/abc_star_black_48dp.xml","name":"res/drawable/abc_star_black_48dp.xml","size":640,"crc":1103021236},{"key":"res/drawable/abc_star_half_black_48dp.xml","name":"res/drawable/abc_star_half_black_48dp.xml","size":600,"crc":-1411498920},{"key":"res/drawable/abc_switch_thumb_material.xml","name":"res/drawable/abc_switch_thumb_material.xml","size":464,"crc":184939420},{"key":"res/drawable/abc_tab_indicator_material.xml","name":"res/drawable/abc_tab_indicator_material.xml","size":468,"crc":-1462818277},{"key":"res/drawable/abc_text_cursor_material.xml","name":"res/drawable/abc_text_cursor_material.xml","size":516,"crc":46912569},{"key":"res/drawable/abc_textfield_search_material.xml","name":"res/drawable/abc_textfield_search_material.xml","size":756,"crc":-446896712},{"key":"res/drawable/abc_vector_test.xml","name":"res/drawable/abc_vector_test.xml","size":612,"crc":-1414823522},{"key":"res/drawable/avd_hide_password.xml","name":"res/drawable/avd_hide_password.xml","size":660,"crc":123778880},{"key":"res/drawable/avd_show_password.xml","name":"res/drawable/avd_show_password.xml","size":660,"crc":-1257998099},{"key":"res/drawable/btn_checkbox_checked_mtrl.xml","name":"res/drawable/btn_checkbox_checked_mtrl.xml","size":2688,"crc":-929037891},{"key":"res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml","name":"res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml","size":688,"crc":-1156971707},{"key":"res/drawable/btn_checkbox_unchecked_mtrl.xml","name":"res/drawable/btn_checkbox_unchecked_mtrl.xml","size":2660,"crc":1605872269},{"key":"res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml","name":"res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml","size":688,"crc":528370447},{"key":"res/drawable/btn_radio_off_mtrl.xml","name":"res/drawable/btn_radio_off_mtrl.xml","size":1728,"crc":1230695815},{"key":"res/drawable/btn_radio_off_to_on_mtrl_animation.xml","name":"res/drawable/btn_radio_off_to_on_mtrl_animation.xml","size":680,"crc":38695409},{"key":"res/drawable/btn_radio_on_mtrl.xml","name":"res/drawable/btn_radio_on_mtrl.xml","size":1656,"crc":-1785735633},{"key":"res/drawable/btn_radio_on_to_off_mtrl_animation.xml","name":"res/drawable/btn_radio_on_to_off_mtrl_animation.xml","size":680,"crc":425424247},{"key":"res/drawable/common_google_signin_btn_icon_dark.xml","name":"res/drawable/common_google_signin_btn_icon_dark.xml","size":588,"crc":-1502341640},{"key":"res/drawable/common_google_signin_btn_icon_dark_focused.xml","name":"res/drawable/common_google_signin_btn_icon_dark_focused.xml","size":892,"crc":-1532326539},{"key":"res/drawable/common_google_signin_btn_icon_dark_normal.xml","name":"res/drawable/common_google_signin_btn_icon_dark_normal.xml","size":548,"crc":320270798},{"key":"res/drawable/common_google_signin_btn_icon_disabled.xml","name":"res/drawable/common_google_signin_btn_icon_disabled.xml","size":1132,"crc":-1610292261},{"key":"res/drawable/common_google_signin_btn_icon_light.xml","name":"res/drawable/common_google_signin_btn_icon_light.xml","size":588,"crc":412407399},{"key":"res/drawable/common_google_signin_btn_icon_light_focused.xml","name":"res/drawable/common_google_signin_btn_icon_light_focused.xml","size":892,"crc":-458929862},{"key":"res/drawable/common_google_signin_btn_icon_light_normal.xml","name":"res/drawable/common_google_signin_btn_icon_light_normal.xml","size":548,"crc":-1329868497},{"key":"res/drawable/common_google_signin_btn_text_dark.xml","name":"res/drawable/common_google_signin_btn_text_dark.xml","size":588,"crc":-598653816},{"key":"res/drawable/common_google_signin_btn_text_dark_focused.xml","name":"res/drawable/common_google_signin_btn_text_dark_focused.xml","size":892,"crc":-2082758595},{"key":"res/drawable/common_google_signin_btn_text_dark_normal.xml","name":"res/drawable/common_google_signin_btn_text_dark_normal.xml","size":584,"crc":-1033435461},{"key":"res/drawable/common_google_signin_btn_text_disabled.xml","name":"res/drawable/common_google_signin_btn_text_disabled.xml","size":1152,"crc":537616031},{"key":"res/drawable/common_google_signin_btn_text_light.xml","name":"res/drawable/common_google_signin_btn_text_light.xml","size":588,"crc":-2130436340},{"key":"res/drawable/common_google_signin_btn_text_light_focused.xml","name":"res/drawable/common_google_signin_btn_text_light_focused.xml","size":892,"crc":-1925824798},{"key":"res/drawable/common_google_signin_btn_text_light_normal.xml","name":"res/drawable/common_google_signin_btn_text_light_normal.xml","size":584,"crc":276367800},{"key":"res/drawable/design_fab_background.xml","name":"res/drawable/design_fab_background.xml","size":372,"crc":522588254},{"key":"res/drawable/design_ic_visibility.xml","name":"res/drawable/design_ic_visibility.xml","size":540,"crc":-2055787406},{"key":"res/drawable/design_ic_visibility_off.xml","name":"res/drawable/design_ic_visibility_off.xml","size":1144,"crc":-1859213009},{"key":"res/drawable/design_password_eye.xml","name":"res/drawable/design_password_eye.xml","size":816,"crc":1603095489},{"key":"res/drawable/design_snackbar_background.xml","name":"res/drawable/design_snackbar_background.xml","size":484,"crc":458340000},{"key":"res/drawable/ic_arrow_back_black_24.xml","name":"res/drawable/ic_arrow_back_black_24.xml","size":612,"crc":1298099340},{"key":"res/drawable/ic_call_answer.xml","name":"res/drawable/ic_call_answer.xml","size":1356,"crc":-417851860},{"key":"res/drawable/ic_call_answer_low.xml","name":"res/drawable/ic_call_answer_low.xml","size":1320,"crc":-2078588160},{"key":"res/drawable/ic_call_answer_video.xml","name":"res/drawable/ic_call_answer_video.xml","size":772,"crc":1837259622},{"key":"res/drawable/ic_call_answer_video_low.xml","name":"res/drawable/ic_call_answer_video_low.xml","size":736,"crc":1149510206},{"key":"res/drawable/ic_call_decline.xml","name":"res/drawable/ic_call_decline.xml","size":1528,"crc":-1902206380},{"key":"res/drawable/ic_call_decline_low.xml","name":"res/drawable/ic_call_decline_low.xml","size":1492,"crc":-593934670},{"key":"res/drawable/ic_clear_black_24.xml","name":"res/drawable/ic_clear_black_24.xml","size":684,"crc":-1106505277},{"key":"res/drawable/ic_clock_black_24dp.xml","name":"res/drawable/ic_clock_black_24dp.xml","size":752,"crc":-1073021850},{"key":"res/drawable/ic_keyboard_black_24dp.xml","name":"res/drawable/ic_keyboard_black_24dp.xml","size":852,"crc":173715929},{"key":"res/drawable/ic_launcher.xml","name":"res/drawable/ic_launcher.xml","size":720,"crc":-1176689471},{"key":"res/drawable/ic_launcher_final.xml","name":"res/drawable/ic_launcher_final.xml","size":344,"crc":1360559811},{"key":"res/drawable/ic_launcher_round.xml","name":"res/drawable/ic_launcher_round.xml","size":748,"crc":-1674671304},{"key":"res/drawable/ic_logo.png","name":"res/drawable/ic_logo.png","size":83841,"crc":1923104465},{"key":"res/drawable/ic_logo_scaled.xml","name":"res/drawable/ic_logo_scaled.xml","size":592,"crc":-1840253526},{"key":"res/drawable/ic_m3_chip_check.xml","name":"res/drawable/ic_m3_chip_check.xml","size":704,"crc":1455308475},{"key":"res/drawable/ic_m3_chip_checked_circle.xml","name":"res/drawable/ic_m3_chip_checked_circle.xml","size":900,"crc":888185085},{"key":"res/drawable/ic_m3_chip_close.xml","name":"res/drawable/ic_m3_chip_close.xml","size":648,"crc":1348968016},{"key":"res/drawable/ic_mtrl_checked_circle.xml","name":"res/drawable/ic_mtrl_checked_circle.xml","size":672,"crc":-943865253},{"key":"res/drawable/ic_mtrl_chip_checked_black.xml","name":"res/drawable/ic_mtrl_chip_checked_black.xml","size":600,"crc":1633852816},{"key":"res/drawable/ic_mtrl_chip_checked_circle.xml","name":"res/drawable/ic_mtrl_chip_checked_circle.xml","size":940,"crc":1250486260},{"key":"res/drawable/ic_mtrl_chip_close_circle.xml","name":"res/drawable/ic_mtrl_chip_close_circle.xml","size":808,"crc":-160089038},{"key":"res/drawable/ic_other_sign_in.xml","name":"res/drawable/ic_other_sign_in.xml","size":1228,"crc":376371943},{"key":"res/drawable/ic_passkey.xml","name":"res/drawable/ic_passkey.xml","size":1200,"crc":821501914},{"key":"res/drawable/ic_password.xml","name":"res/drawable/ic_password.xml","size":2092,"crc":1109675091},{"key":"res/drawable/ic_placeholder.xml","name":"res/drawable/ic_placeholder.xml","size":708,"crc":-990390380},{"key":"res/drawable/ic_search_black_24.xml","name":"res/drawable/ic_search_black_24.xml","size":800,"crc":-1571083540},{"key":"res/drawable/m3_avd_hide_password.xml","name":"res/drawable/m3_avd_hide_password.xml","size":660,"crc":408149717},{"key":"res/drawable/m3_avd_show_password.xml","name":"res/drawable/m3_avd_show_password.xml","size":660,"crc":1375469874},{"key":"res/drawable/m3_bottom_sheet_drag_handle.xml","name":"res/drawable/m3_bottom_sheet_drag_handle.xml","size":628,"crc":-76628415},{"key":"res/drawable/m3_password_eye.xml","name":"res/drawable/m3_password_eye.xml","size":816,"crc":-1150754310},{"key":"res/drawable/m3_popupmenu_background_overlay.xml","name":"res/drawable/m3_popupmenu_background_overlay.xml","size":740,"crc":-1501976386},{"key":"res/drawable-v23/m3_radiobutton_ripple.xml","name":"res/drawable-v23/m3_radiobutton_ripple.xml","size":304,"crc":1123314444},{"key":"res/drawable-v23/m3_selection_control_ripple.xml","name":"res/drawable-v23/m3_selection_control_ripple.xml","size":304,"crc":1333793827},{"key":"res/drawable-v23/m3_tabs_background.xml","name":"res/drawable-v23/m3_tabs_background.xml","size":868,"crc":814971799},{"key":"res/drawable/m3_tabs_line_indicator.xml","name":"res/drawable/m3_tabs_line_indicator.xml","size":480,"crc":1189781760},{"key":"res/drawable/m3_tabs_rounded_line_indicator.xml","name":"res/drawable/m3_tabs_rounded_line_indicator.xml","size":956,"crc":175350675},{"key":"res/drawable-v23/m3_tabs_transparent_background.xml","name":"res/drawable-v23/m3_tabs_transparent_background.xml","size":632,"crc":-168091800},{"key":"res/drawable-v21/material_cursor_drawable.xml","name":"res/drawable-v21/material_cursor_drawable.xml","size":588,"crc":-1982380937},{"key":"res/drawable/material_ic_calendar_black_24dp.xml","name":"res/drawable/material_ic_calendar_black_24dp.xml","size":696,"crc":1880928615},{"key":"res/drawable/material_ic_clear_black_24dp.xml","name":"res/drawable/material_ic_clear_black_24dp.xml","size":752,"crc":2137394315},{"key":"res/drawable/material_ic_edit_black_24dp.xml","name":"res/drawable/material_ic_edit_black_24dp.xml","size":716,"crc":604732683},{"key":"res/drawable/material_ic_keyboard_arrow_left_black_24dp.xml","name":"res/drawable/material_ic_keyboard_arrow_left_black_24dp.xml","size":712,"crc":-484329892},{"key":"res/drawable/material_ic_keyboard_arrow_right_black_24dp.xml","name":"res/drawable/material_ic_keyboard_arrow_right_black_24dp.xml","size":700,"crc":-1345623571},{"key":"res/drawable/material_ic_menu_arrow_down_black_24dp.xml","name":"res/drawable/material_ic_menu_arrow_down_black_24dp.xml","size":648,"crc":1326784656},{"key":"res/drawable/material_ic_menu_arrow_up_black_24dp.xml","name":"res/drawable/material_ic_menu_arrow_up_black_24dp.xml","size":648,"crc":-796709783},{"key":"res/drawable/mtrl_bottomsheet_drag_handle.xml","name":"res/drawable/mtrl_bottomsheet_drag_handle.xml","size":628,"crc":-1199591059},{"key":"res/drawable/mtrl_checkbox_button.xml","name":"res/drawable/mtrl_checkbox_button.xml","size":1332,"crc":1825472232},{"key":"res/drawable/mtrl_checkbox_button_checked_unchecked.xml","name":"res/drawable/mtrl_checkbox_button_checked_unchecked.xml","size":724,"crc":1032451361},{"key":"res/drawable/mtrl_checkbox_button_icon.xml","name":"res/drawable/mtrl_checkbox_button_icon.xml","size":1572,"crc":1134936393},{"key":"res/drawable/mtrl_checkbox_button_icon_checked_indeterminate.xml","name":"res/drawable/mtrl_checkbox_button_icon_checked_indeterminate.xml","size":524,"crc":934065818},{"key":"res/drawable/mtrl_checkbox_button_icon_checked_unchecked.xml","name":"res/drawable/mtrl_checkbox_button_icon_checked_unchecked.xml","size":724,"crc":-989604441},{"key":"res/drawable/mtrl_checkbox_button_icon_indeterminate_checked.xml","name":"res/drawable/mtrl_checkbox_button_icon_indeterminate_checked.xml","size":524,"crc":596808055},{"key":"res/drawable/mtrl_checkbox_button_icon_indeterminate_unchecked.xml","name":"res/drawable/mtrl_checkbox_button_icon_indeterminate_unchecked.xml","size":724,"crc":-1993308237},{"key":"res/drawable/mtrl_checkbox_button_icon_unchecked_checked.xml","name":"res/drawable/mtrl_checkbox_button_icon_unchecked_checked.xml","size":724,"crc":-1524787803},{"key":"res/drawable/mtrl_checkbox_button_icon_unchecked_indeterminate.xml","name":"res/drawable/mtrl_checkbox_button_icon_unchecked_indeterminate.xml","size":724,"crc":-748862477},{"key":"res/drawable/mtrl_checkbox_button_unchecked_checked.xml","name":"res/drawable/mtrl_checkbox_button_unchecked_checked.xml","size":724,"crc":113211947},{"key":"res/drawable/mtrl_dialog_background.xml","name":"res/drawable/mtrl_dialog_background.xml","size":716,"crc":-641696484},{"key":"res/drawable/mtrl_dropdown_arrow.xml","name":"res/drawable/mtrl_dropdown_arrow.xml","size":464,"crc":-586255807},{"key":"res/drawable/mtrl_ic_arrow_drop_down.xml","name":"res/drawable/mtrl_ic_arrow_drop_down.xml","size":564,"crc":1573648397},{"key":"res/drawable/mtrl_ic_arrow_drop_up.xml","name":"res/drawable/mtrl_ic_arrow_drop_up.xml","size":564,"crc":-1957332043},{"key":"res/drawable/mtrl_ic_cancel.xml","name":"res/drawable/mtrl_ic_cancel.xml","size":724,"crc":-1697437044},{"key":"res/drawable/mtrl_ic_check_mark.xml","name":"res/drawable/mtrl_ic_check_mark.xml","size":744,"crc":-100961907},{"key":"res/drawable/mtrl_ic_checkbox_checked.xml","name":"res/drawable/mtrl_ic_checkbox_checked.xml","size":904,"crc":712994732},{"key":"res/drawable/mtrl_ic_checkbox_unchecked.xml","name":"res/drawable/mtrl_ic_checkbox_unchecked.xml","size":612,"crc":1837738795},{"key":"res/drawable/mtrl_ic_error.xml","name":"res/drawable/mtrl_ic_error.xml","size":644,"crc":1937222060},{"key":"res/drawable/mtrl_ic_indeterminate.xml","name":"res/drawable/mtrl_ic_indeterminate.xml","size":744,"crc":837724220},{"key":"res/drawable-v21/mtrl_navigation_bar_item_background.xml","name":"res/drawable-v21/mtrl_navigation_bar_item_background.xml","size":264,"crc":649188693},{"key":"res/drawable/mtrl_popupmenu_background.xml","name":"res/drawable/mtrl_popupmenu_background.xml","size":740,"crc":-1934821685},{"key":"res/drawable-v23/mtrl_popupmenu_background_overlay.xml","name":"res/drawable-v23/mtrl_popupmenu_background_overlay.xml","size":1228,"crc":1876393037},{"key":"res/drawable/mtrl_switch_thumb.xml","name":"res/drawable/mtrl_switch_thumb.xml","size":2004,"crc":-1608889246},{"key":"res/drawable/mtrl_switch_thumb_checked.xml","name":"res/drawable/mtrl_switch_thumb_checked.xml","size":744,"crc":-655214909},{"key":"res/drawable/mtrl_switch_thumb_checked_pressed.xml","name":"res/drawable/mtrl_switch_thumb_checked_pressed.xml","size":524,"crc":453376533},{"key":"res/drawable/mtrl_switch_thumb_checked_unchecked.xml","name":"res/drawable/mtrl_switch_thumb_checked_unchecked.xml","size":784,"crc":311070846},{"key":"res/drawable/mtrl_switch_thumb_pressed.xml","name":"res/drawable/mtrl_switch_thumb_pressed.xml","size":744,"crc":1264345425},{"key":"res/drawable/mtrl_switch_thumb_pressed_checked.xml","name":"res/drawable/mtrl_switch_thumb_pressed_checked.xml","size":524,"crc":1708666443},{"key":"res/drawable/mtrl_switch_thumb_pressed_unchecked.xml","name":"res/drawable/mtrl_switch_thumb_pressed_unchecked.xml","size":524,"crc":-160007719},{"key":"res/drawable/mtrl_switch_thumb_unchecked.xml","name":"res/drawable/mtrl_switch_thumb_unchecked.xml","size":744,"crc":-704894218},{"key":"res/drawable/mtrl_switch_thumb_unchecked_checked.xml","name":"res/drawable/mtrl_switch_thumb_unchecked_checked.xml","size":784,"crc":-1186263386},{"key":"res/drawable/mtrl_switch_thumb_unchecked_pressed.xml","name":"res/drawable/mtrl_switch_thumb_unchecked_pressed.xml","size":524,"crc":-2116926186},{"key":"res/drawable/mtrl_switch_track.xml","name":"res/drawable/mtrl_switch_track.xml","size":588,"crc":73183823},{"key":"res/drawable/mtrl_switch_track_decoration.xml","name":"res/drawable/mtrl_switch_track_decoration.xml","size":636,"crc":-1670108286},{"key":"res/drawable/mtrl_tabs_default_indicator.xml","name":"res/drawable/mtrl_tabs_default_indicator.xml","size":628,"crc":-1187923997},{"key":"res/drawable/navigation_empty_icon.xml","name":"res/drawable/navigation_empty_icon.xml","size":516,"crc":-1097598381},{"key":"res/drawable-v21/notification_action_background.xml","name":"res/drawable-v21/notification_action_background.xml","size":1180,"crc":597293643},{"key":"res/drawable/notification_bg.xml","name":"res/drawable/notification_bg.xml","size":532,"crc":-460454573},{"key":"res/drawable/notification_bg_low.xml","name":"res/drawable/notification_bg_low.xml","size":532,"crc":-1401125711},{"key":"res/drawable/notification_icon_background.xml","name":"res/drawable/notification_icon_background.xml","size":372,"crc":1128694486},{"key":"res/drawable/notification_tile_bg.xml","name":"res/drawable/notification_tile_bg.xml","size":304,"crc":-350245511},{"key":"res/drawable/test_level_drawable.xml","name":"res/drawable/test_level_drawable.xml","size":448,"crc":-1173986526},{"key":"res/drawable/tooltip_frame_dark.xml","name":"res/drawable/tooltip_frame_dark.xml","size":484,"crc":-999993203},{"key":"res/drawable/tooltip_frame_light.xml","name":"res/drawable/tooltip_frame_light.xml","size":484,"crc":-650600759},{"key":"res/drawable-watch-v20/abc_dialog_material_background.xml","name":"res/drawable-watch-v20/abc_dialog_material_background.xml","size":372,"crc":-394371206},{"key":"res/drawable-watch-v20/common_google_signin_btn_text_dark_normal.xml","name":"res/drawable-watch-v20/common_google_signin_btn_text_dark_normal.xml","size":908,"crc":335342824},{"key":"res/drawable-watch-v20/common_google_signin_btn_text_disabled.xml","name":"res/drawable-watch-v20/common_google_signin_btn_text_disabled.xml","size":1040,"crc":-676834778},{"key":"res/drawable-watch-v20/common_google_signin_btn_text_light_normal.xml","name":"res/drawable-watch-v20/common_google_signin_btn_text_light_normal.xml","size":872,"crc":510322460},{"key":"res/drawable-v26/ic_launcher_final.xml","name":"res/drawable-v26/ic_launcher_final.xml","size":448,"crc":1399415293},{"key":"res/drawable-ldpi-v23/fingerprint_dialog_error.png","name":"res/drawable-ldpi-v23/fingerprint_dialog_error.png","size":431,"crc":-1899797091},{"key":"res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","size":267,"crc":-1782854401},{"key":"res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png","name":"res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png","size":214,"crc":1784469944},{"key":"res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png","name":"res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png","size":321,"crc":417858442},{"key":"res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png","name":"res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png","size":324,"crc":-25912589},{"key":"res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png","name":"res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png","size":356,"crc":483927252},{"key":"res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","name":"res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","size":754,"crc":-2043172043},{"key":"res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","name":"res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","size":825,"crc":746268540},{"key":"res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","size":216,"crc":1331007226},{"key":"res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","name":"res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","size":173,"crc":188325625},{"key":"res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png","size":167,"crc":895755044},{"key":"res/drawable-mdpi-v4/abc_list_focused_holo.9.png","name":"res/drawable-mdpi-v4/abc_list_focused_holo.9.png","size":222,"crc":-1314153213},{"key":"res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png","name":"res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png","size":211,"crc":2026076309},{"key":"res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png","name":"res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png","size":207,"crc":247870200},{"key":"res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png","name":"res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png","size":207,"crc":1914292392},{"key":"res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png","name":"res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png","size":217,"crc":-1161232362},{"key":"res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png","name":"res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png","size":217,"crc":-321357989},{"key":"res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","name":"res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","size":541,"crc":-973152337},{"key":"res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png","name":"res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png","size":776,"crc":-794041096},{"key":"res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","name":"res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","size":159,"crc":1388505315},{"key":"res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","name":"res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","size":145,"crc":771315572},{"key":"res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","name":"res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","size":197,"crc":-1487297953},{"key":"res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","size":203,"crc":-655213014},{"key":"res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","size":194,"crc":-2110916847},{"key":"res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png","size":327,"crc":-1603084466},{"key":"res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png","size":395,"crc":-1758576653},{"key":"res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","size":186,"crc":-1468200696},{"key":"res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png","name":"res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png","size":203,"crc":558759102},{"key":"res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png","name":"res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png","size":310,"crc":1086079552},{"key":"res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png","name":"res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png","size":186,"crc":1494279640},{"key":"res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","size":181,"crc":2009755725},{"key":"res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png","size":178,"crc":-982571302},{"key":"res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","size":178,"crc":1754865820},{"key":"res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","size":178,"crc":-1349392436},{"key":"res/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","name":"res/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","size":610,"crc":-2006350336},{"key":"res/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","name":"res/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","size":500,"crc":-956992980},{"key":"res/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","name":"res/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","size":615,"crc":1100604633},{"key":"res/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","name":"res/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","size":465,"crc":-581075857},{"key":"res/drawable-mdpi-v23/fingerprint_dialog_error.png","name":"res/drawable-mdpi-v23/fingerprint_dialog_error.png","size":565,"crc":-755315411},{"key":"res/drawable-mdpi-v4/googleg_disabled_color_18.png","name":"res/drawable-mdpi-v4/googleg_disabled_color_18.png","size":281,"crc":-94345570},{"key":"res/drawable-mdpi-v4/googleg_standard_color_18.png","name":"res/drawable-mdpi-v4/googleg_standard_color_18.png","size":562,"crc":1980127520},{"key":"res/drawable-mdpi-v4/notification_bg_low_normal.9.png","name":"res/drawable-mdpi-v4/notification_bg_low_normal.9.png","size":215,"crc":-637905481},{"key":"res/drawable-mdpi-v4/notification_bg_low_pressed.9.png","name":"res/drawable-mdpi-v4/notification_bg_low_pressed.9.png","size":223,"crc":-1206985160},{"key":"res/drawable-mdpi-v4/notification_bg_normal.9.png","name":"res/drawable-mdpi-v4/notification_bg_normal.9.png","size":215,"crc":-1053437548},{"key":"res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png","name":"res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png","size":223,"crc":-316674454},{"key":"res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png","name":"res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png","size":98,"crc":782467851},{"key":"res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png","size":318,"crc":248812699},{"key":"res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","size":272,"crc":-522187894},{"key":"res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png","name":"res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png","size":227,"crc":1441099833},{"key":"res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png","name":"res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png","size":404,"crc":321481106},{"key":"res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png","name":"res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png","size":464,"crc":-765083169},{"key":"res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png","name":"res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png","size":563,"crc":-1693177409},{"key":"res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","name":"res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","size":1096,"crc":1160393035},{"key":"res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","name":"res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","size":1243,"crc":-296122373},{"key":"res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","size":226,"crc":-1994891200},{"key":"res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","name":"res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","size":171,"crc":-834791833},{"key":"res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png","size":167,"crc":895755044},{"key":"res/drawable-hdpi-v4/abc_list_focused_holo.9.png","name":"res/drawable-hdpi-v4/abc_list_focused_holo.9.png","size":244,"crc":-1907514871},{"key":"res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png","name":"res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png","size":212,"crc":-2119094306},{"key":"res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png","name":"res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png","size":208,"crc":-1848424351},{"key":"res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png","name":"res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png","size":208,"crc":-534797190},{"key":"res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png","name":"res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png","size":228,"crc":-494134952},{"key":"res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png","name":"res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png","size":229,"crc":-779417061},{"key":"res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","name":"res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","size":738,"crc":844900423},{"key":"res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png","name":"res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png","size":1098,"crc":1031932723},{"key":"res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","name":"res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","size":201,"crc":-2033297991},{"key":"res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","name":"res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","size":196,"crc":555162946},{"key":"res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","name":"res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","size":272,"crc":1476959993},{"key":"res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","size":205,"crc":-1404642591},{"key":"res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","size":196,"crc":59030235},{"key":"res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png","size":345,"crc":-1913854658},{"key":"res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png","size":484,"crc":-190177617},{"key":"res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","size":190,"crc":1541371996},{"key":"res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png","name":"res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png","size":278,"crc":-1596734141},{"key":"res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png","name":"res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png","size":396,"crc":-1105084233},{"key":"res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png","name":"res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png","size":262,"crc":-551175061},{"key":"res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","size":186,"crc":1954287679},{"key":"res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png","size":192,"crc":695154500},{"key":"res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","size":178,"crc":-1157342510},{"key":"res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","size":178,"crc":-1428961699},{"key":"res/drawable-hdpi-v4/common_full_open_on_phone.png","name":"res/drawable-hdpi-v4/common_full_open_on_phone.png","size":681,"crc":988198958},{"key":"res/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","name":"res/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","size":897,"crc":-2056690568},{"key":"res/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","name":"res/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","size":683,"crc":1492856915},{"key":"res/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","name":"res/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","size":960,"crc":-650514931},{"key":"res/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","name":"res/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","size":694,"crc":-1705655752},{"key":"res/drawable-hdpi-v23/fingerprint_dialog_error.png","name":"res/drawable-hdpi-v23/fingerprint_dialog_error.png","size":900,"crc":2079447285},{"key":"res/drawable-hdpi-v4/googleg_disabled_color_18.png","name":"res/drawable-hdpi-v4/googleg_disabled_color_18.png","size":410,"crc":213222193},{"key":"res/drawable-hdpi-v4/googleg_standard_color_18.png","name":"res/drawable-hdpi-v4/googleg_standard_color_18.png","size":808,"crc":2103637412},{"key":"res/drawable-hdpi-v4/notification_bg_low_normal.9.png","name":"res/drawable-hdpi-v4/notification_bg_low_normal.9.png","size":212,"crc":931926398},{"key":"res/drawable-hdpi-v4/notification_bg_low_pressed.9.png","name":"res/drawable-hdpi-v4/notification_bg_low_pressed.9.png","size":225,"crc":1348069157},{"key":"res/drawable-hdpi-v4/notification_bg_normal.9.png","name":"res/drawable-hdpi-v4/notification_bg_normal.9.png","size":212,"crc":-1037255009},{"key":"res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png","name":"res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png","size":225,"crc":-1579774768},{"key":"res/drawable-hdpi-v4/notification_oversize_large_icon_bg.png","name":"res/drawable-hdpi-v4/notification_oversize_large_icon_bg.png","size":909,"crc":-883619049},{"key":"res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png","name":"res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png","size":107,"crc":1859699185},{"key":"res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png","size":345,"crc":-1121400728},{"key":"res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","size":280,"crc":-1494763048},{"key":"res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png","name":"res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png","size":281,"crc":-355242921},{"key":"res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png","name":"res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png","size":432,"crc":208515363},{"key":"res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png","name":"res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png","size":651,"crc":586767697},{"key":"res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png","name":"res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png","size":785,"crc":-1305019038},{"key":"res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","name":"res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","size":1526,"crc":-483809291},{"key":"res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","name":"res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","size":1731,"crc":813343295},{"key":"res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","size":229,"crc":1667644415},{"key":"res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","name":"res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","size":228,"crc":-1596992556},{"key":"res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png","size":167,"crc":895755044},{"key":"res/drawable-xhdpi-v4/abc_list_focused_holo.9.png","name":"res/drawable-xhdpi-v4/abc_list_focused_holo.9.png","size":244,"crc":-1109247658},{"key":"res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png","name":"res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png","size":214,"crc":-2069395290},{"key":"res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png","name":"res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png","size":209,"crc":1422722026},{"key":"res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png","name":"res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png","size":209,"crc":1178912481},{"key":"res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png","name":"res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png","size":236,"crc":1482420428},{"key":"res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png","name":"res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png","size":235,"crc":809869208},{"key":"res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","name":"res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","size":966,"crc":-1645055853},{"key":"res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png","name":"res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png","size":1544,"crc":1027634507},{"key":"res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","name":"res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","size":267,"crc":-235495373},{"key":"res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","name":"res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","size":267,"crc":1780540927},{"key":"res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","name":"res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","size":391,"crc":1338981723},{"key":"res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","size":208,"crc":-1523469685},{"key":"res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","size":198,"crc":417197097},{"key":"res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png","size":448,"crc":-636645826},{"key":"res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png","size":618,"crc":-315835857},{"key":"res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","size":194,"crc":-1805702768},{"key":"res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png","name":"res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png","size":335,"crc":1833493827},{"key":"res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png","name":"res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png","size":585,"crc":325182543},{"key":"res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png","name":"res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png","size":318,"crc":1402001197},{"key":"res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","size":189,"crc":872981899},{"key":"res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png","size":187,"crc":1388684995},{"key":"res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","size":184,"crc":-735893576},{"key":"res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","size":182,"crc":755703140},{"key":"res/drawable-xhdpi-v4/common_full_open_on_phone.png","name":"res/drawable-xhdpi-v4/common_full_open_on_phone.png","size":489,"crc":-864113687},{"key":"res/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","name":"res/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","size":1032,"crc":-185544991},{"key":"res/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","name":"res/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","size":776,"crc":-1044827319},{"key":"res/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","name":"res/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","size":1086,"crc":-20176476},{"key":"res/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","name":"res/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","size":808,"crc":-618992248},{"key":"res/drawable-xhdpi-v23/fingerprint_dialog_error.png","name":"res/drawable-xhdpi-v23/fingerprint_dialog_error.png","size":1172,"crc":744312287},{"key":"res/drawable-xhdpi-v4/googleg_disabled_color_18.png","name":"res/drawable-xhdpi-v4/googleg_disabled_color_18.png","size":516,"crc":-302930309},{"key":"res/drawable-xhdpi-v4/googleg_standard_color_18.png","name":"res/drawable-xhdpi-v4/googleg_standard_color_18.png","size":982,"crc":-1140172710},{"key":"res/drawable-xhdpi-v4/notification_bg_low_normal.9.png","name":"res/drawable-xhdpi-v4/notification_bg_low_normal.9.png","size":221,"crc":986722933},{"key":"res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png","name":"res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png","size":252,"crc":-930084210},{"key":"res/drawable-xhdpi-v4/notification_bg_normal.9.png","name":"res/drawable-xhdpi-v4/notification_bg_normal.9.png","size":221,"crc":-1723534566},{"key":"res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png","name":"res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png","size":247,"crc":-1030044328},{"key":"res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png","name":"res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png","size":138,"crc":72836353},{"key":"res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png","size":417,"crc":1015364852},{"key":"res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","size":286,"crc":576729413},{"key":"res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png","name":"res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png","size":307,"crc":869620432},{"key":"res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png","name":"res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png","size":593,"crc":-1070792479},{"key":"res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png","name":"res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png","size":984,"crc":-148612735},{"key":"res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png","name":"res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png","size":1208,"crc":-1287566072},{"key":"res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","name":"res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","size":2463,"crc":-1414729006},{"key":"res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","name":"res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","size":2834,"crc":-629032592},{"key":"res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","size":237,"crc":-2126552655},{"key":"res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","name":"res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","size":224,"crc":1570594586},{"key":"res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png","size":171,"crc":431487046},{"key":"res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png","name":"res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png","size":245,"crc":432053287},{"key":"res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png","name":"res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png","size":221,"crc":594243224},{"key":"res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png","name":"res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png","size":212,"crc":1908284469},{"key":"res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png","name":"res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png","size":212,"crc":1004408383},{"key":"res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png","name":"res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png","size":260,"crc":453810333},{"key":"res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png","name":"res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png","size":258,"crc":-806067726},{"key":"res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","name":"res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","size":1779,"crc":-378460718},{"key":"res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png","name":"res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png","size":2305,"crc":52525934},{"key":"res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","name":"res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","size":322,"crc":1734458370},{"key":"res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","name":"res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","size":403,"crc":-258375909},{"key":"res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","name":"res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","size":595,"crc":25460445},{"key":"res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","size":210,"crc":1410922532},{"key":"res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","size":207,"crc":979167309},{"key":"res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png","size":524,"crc":-1263352686},{"key":"res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png","size":851,"crc":-1547140427},{"key":"res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","size":204,"crc":-471176010},{"key":"res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png","name":"res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png","size":420,"crc":-1423304621},{"key":"res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png","name":"res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png","size":753,"crc":-1827412542},{"key":"res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png","name":"res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png","size":422,"crc":961476924},{"key":"res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","size":199,"crc":814610337},{"key":"res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png","size":200,"crc":807658458},{"key":"res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","size":187,"crc":1097119443},{"key":"res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","size":186,"crc":-181494251},{"key":"res/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","name":"res/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","size":1510,"crc":817334723},{"key":"res/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","name":"res/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","size":1138,"crc":-1359168935},{"key":"res/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","name":"res/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","size":1638,"crc":-1981570183},{"key":"res/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","name":"res/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","size":1255,"crc":1034823145},{"key":"res/drawable-xxhdpi-v23/fingerprint_dialog_error.png","name":"res/drawable-xxhdpi-v23/fingerprint_dialog_error.png","size":1484,"crc":967466656},{"key":"res/drawable-xxhdpi-v4/googleg_disabled_color_18.png","name":"res/drawable-xxhdpi-v4/googleg_disabled_color_18.png","size":727,"crc":745918827},{"key":"res/drawable-xxhdpi-v4/googleg_standard_color_18.png","name":"res/drawable-xxhdpi-v4/googleg_standard_color_18.png","size":1441,"crc":-508386821},{"key":"res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png","size":525,"crc":-924835231},{"key":"res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png","name":"res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png","size":275,"crc":-1764675204},{"key":"res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png","name":"res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png","size":476,"crc":-992054213},{"key":"res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png","name":"res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png","size":785,"crc":485101068},{"key":"res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png","name":"res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png","size":946,"crc":1611553141},{"key":"res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","name":"res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","size":2505,"crc":2088096877},{"key":"res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","name":"res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","size":2816,"crc":25828836},{"key":"res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","name":"res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","size":415,"crc":-335179877},{"key":"res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","name":"res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","size":631,"crc":-2086075208},{"key":"res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png","size":430,"crc":-943303786},{"key":"res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png","name":"res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png","size":813,"crc":-551543263},{"key":"res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","name":"res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","size":202,"crc":-1543227074},{"key":"res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png","name":"res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png","size":513,"crc":-990765681},{"key":"res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png","name":"res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png","size":513,"crc":1860041182},{"key":"res/drawable-xxxhdpi-v23/fingerprint_dialog_error.png","name":"res/drawable-xxxhdpi-v23/fingerprint_dialog_error.png","size":1924,"crc":-7698745},{"key":"res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png","size":437,"crc":997246448},{"key":"res/drawable-anydpi-v24/fingerprint_dialog_error.xml","name":"res/drawable-anydpi-v24/fingerprint_dialog_error.xml","size":2656,"crc":1424990298},{"key":"res/drawable-anydpi-v23/fingerprint_dialog_fp_icon.xml","name":"res/drawable-anydpi-v23/fingerprint_dialog_fp_icon.xml","size":3612,"crc":-153556254},{"key":"res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml","name":"res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml","size":316,"crc":1170948913},{"key":"res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml","name":"res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml","size":328,"crc":-324218066},{"key":"res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml","name":"res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml","size":316,"crc":1170948913},{"key":"res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml","name":"res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml","size":328,"crc":-324218066},{"key":"res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml","name":"res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml","size":320,"crc":-1334210794},{"key":"res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml","name":"res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml","size":320,"crc":-1334210794},{"key":"res/interpolator/fast_out_slow_in.xml","name":"res/interpolator/fast_out_slow_in.xml","size":400,"crc":2971224},{"key":"res/interpolator-v21/m3_sys_motion_easing_emphasized.xml","name":"res/interpolator-v21/m3_sys_motion_easing_emphasized.xml","size":280,"crc":1658253168},{"key":"res/interpolator-v21/m3_sys_motion_easing_emphasized_accelerate.xml","name":"res/interpolator-v21/m3_sys_motion_easing_emphasized_accelerate.xml","size":400,"crc":-691141408},{"key":"res/interpolator-v21/m3_sys_motion_easing_emphasized_decelerate.xml","name":"res/interpolator-v21/m3_sys_motion_easing_emphasized_decelerate.xml","size":400,"crc":-253525957},{"key":"res/interpolator-v21/m3_sys_motion_easing_linear.xml","name":"res/interpolator-v21/m3_sys_motion_easing_linear.xml","size":400,"crc":1859329543},{"key":"res/interpolator-v21/m3_sys_motion_easing_standard.xml","name":"res/interpolator-v21/m3_sys_motion_easing_standard.xml","size":400,"crc":579344305},{"key":"res/interpolator-v21/m3_sys_motion_easing_standard_accelerate.xml","name":"res/interpolator-v21/m3_sys_motion_easing_standard_accelerate.xml","size":400,"crc":337078112},{"key":"res/interpolator-v21/m3_sys_motion_easing_standard_decelerate.xml","name":"res/interpolator-v21/m3_sys_motion_easing_standard_decelerate.xml","size":400,"crc":-248684124},{"key":"res/interpolator-v21/mtrl_fast_out_linear_in.xml","name":"res/interpolator-v21/mtrl_fast_out_linear_in.xml","size":400,"crc":-184402232},{"key":"res/interpolator-v21/mtrl_fast_out_slow_in.xml","name":"res/interpolator-v21/mtrl_fast_out_slow_in.xml","size":400,"crc":-1024605739},{"key":"res/interpolator/mtrl_linear.xml","name":"res/interpolator/mtrl_linear.xml","size":132,"crc":558115064},{"key":"res/interpolator-v21/mtrl_linear_out_slow_in.xml","name":"res/interpolator-v21/mtrl_linear_out_slow_in.xml","size":400,"crc":34232731},{"key":"res/layout/abc_action_bar_title_item.xml","name":"res/layout/abc_action_bar_title_item.xml","size":872,"crc":-937257567},{"key":"res/layout/abc_action_bar_up_container.xml","name":"res/layout/abc_action_bar_up_container.xml","size":440,"crc":-379931951},{"key":"res/layout/abc_action_menu_item_layout.xml","name":"res/layout/abc_action_menu_item_layout.xml","size":768,"crc":211934990},{"key":"res/layout/abc_action_menu_layout.xml","name":"res/layout/abc_action_menu_layout.xml","size":576,"crc":2146034318},{"key":"res/layout/abc_action_mode_bar.xml","name":"res/layout/abc_action_mode_bar.xml","size":464,"crc":-1571946790},{"key":"res/layout/abc_action_mode_close_item_material.xml","name":"res/layout/abc_action_mode_close_item_material.xml","size":840,"crc":-518862467},{"key":"res/layout/abc_activity_chooser_view.xml","name":"res/layout/abc_activity_chooser_view.xml","size":1684,"crc":2139670331},{"key":"res/layout/abc_activity_chooser_view_list_item.xml","name":"res/layout/abc_activity_chooser_view_list_item.xml","size":1304,"crc":-134879538},{"key":"res/layout/abc_alert_dialog_button_bar_material.xml","name":"res/layout/abc_alert_dialog_button_bar_material.xml","size":1584,"crc":552492316},{"key":"res/layout/abc_alert_dialog_material.xml","name":"res/layout/abc_alert_dialog_material.xml","size":2648,"crc":1570557375},{"key":"res/layout/abc_alert_dialog_title_material.xml","name":"res/layout/abc_alert_dialog_title_material.xml","size":1560,"crc":-1404666181},{"key":"res/layout/abc_cascading_menu_item_layout.xml","name":"res/layout/abc_cascading_menu_item_layout.xml","size":1868,"crc":79544630},{"key":"res/layout/abc_dialog_title_material.xml","name":"res/layout/abc_dialog_title_material.xml","size":1116,"crc":1357495519},{"key":"res/layout/abc_expanded_menu_layout.xml","name":"res/layout/abc_expanded_menu_layout.xml","size":388,"crc":-1060247157},{"key":"res/layout/abc_list_menu_item_checkbox.xml","name":"res/layout/abc_list_menu_item_checkbox.xml","size":528,"crc":1250080036},{"key":"res/layout/abc_list_menu_item_icon.xml","name":"res/layout/abc_list_menu_item_icon.xml","size":780,"crc":847912374},{"key":"res/layout/abc_list_menu_item_layout.xml","name":"res/layout/abc_list_menu_item_layout.xml","size":1396,"crc":-309024762},{"key":"res/layout/abc_list_menu_item_radio.xml","name":"res/layout/abc_list_menu_item_radio.xml","size":532,"crc":-658568496},{"key":"res/layout/abc_popup_menu_header_item_layout.xml","name":"res/layout/abc_popup_menu_header_item_layout.xml","size":848,"crc":-394963428},{"key":"res/layout/abc_popup_menu_item_layout.xml","name":"res/layout/abc_popup_menu_item_layout.xml","size":2072,"crc":-1124892388},{"key":"res/layout/abc_screen_content_include.xml","name":"res/layout/abc_screen_content_include.xml","size":548,"crc":1485576479},{"key":"res/layout/abc_screen_simple.xml","name":"res/layout/abc_screen_simple.xml","size":832,"crc":-1679597929},{"key":"res/layout/abc_screen_simple_overlay_action_mode.xml","name":"res/layout/abc_screen_simple_overlay_action_mode.xml","size":792,"crc":-272914928},{"key":"res/layout/abc_screen_toolbar.xml","name":"res/layout/abc_screen_toolbar.xml","size":1504,"crc":2034592211},{"key":"res/layout/abc_search_dropdown_item_icons_2line.xml","name":"res/layout/abc_search_dropdown_item_icons_2line.xml","size":1916,"crc":952380128},{"key":"res/layout/abc_search_view.xml","name":"res/layout/abc_search_view.xml","size":3472,"crc":-1184744128},{"key":"res/layout/abc_select_dialog_material.xml","name":"res/layout/abc_select_dialog_material.xml","size":1020,"crc":638420625},{"key":"res/layout/abc_tooltip.xml","name":"res/layout/abc_tooltip.xml","size":1056,"crc":1290192771},{"key":"res/layout/activity_forgot_password.xml","name":"res/layout/activity_forgot_password.xml","size":2164,"crc":-994834094},{"key":"res/layout/activity_login.xml","name":"res/layout/activity_login.xml","size":3800,"crc":541970222},{"key":"res/layout/activity_main.xml","name":"res/layout/activity_main.xml","size":1496,"crc":871322346},{"key":"res/layout/activity_register.xml","name":"res/layout/activity_register.xml","size":4484,"crc":-272663106},{"key":"res/layout/browser_actions_context_menu_page.xml","name":"res/layout/browser_actions_context_menu_page.xml","size":1660,"crc":-1086936959},{"key":"res/layout/browser_actions_context_menu_row.xml","name":"res/layout/browser_actions_context_menu_row.xml","size":1212,"crc":-1787321375},{"key":"res/layout/custom_dialog.xml","name":"res/layout/custom_dialog.xml","size":612,"crc":43376341},{"key":"res/layout/design_bottom_navigation_item.xml","name":"res/layout/design_bottom_navigation_item.xml","size":1860,"crc":-1055736753},{"key":"res/layout/design_bottom_sheet_dialog.xml","name":"res/layout/design_bottom_sheet_dialog.xml","size":1224,"crc":-791385109},{"key":"res/layout/design_layout_snackbar.xml","name":"res/layout/design_layout_snackbar.xml","size":528,"crc":-1583546014},{"key":"res/layout/design_layout_snackbar_include.xml","name":"res/layout/design_layout_snackbar_include.xml","size":1444,"crc":876493830},{"key":"res/layout/design_layout_tab_icon.xml","name":"res/layout/design_layout_tab_icon.xml","size":408,"crc":-234554716},{"key":"res/layout/design_layout_tab_text.xml","name":"res/layout/design_layout_tab_text.xml","size":436,"crc":-1677728391},{"key":"res/layout/design_menu_item_action_area.xml","name":"res/layout/design_menu_item_action_area.xml","size":320,"crc":308712715},{"key":"res/layout/design_navigation_item.xml","name":"res/layout/design_navigation_item.xml","size":636,"crc":-1516450756},{"key":"res/layout/design_navigation_item_header.xml","name":"res/layout/design_navigation_item_header.xml","size":440,"crc":-2114127784},{"key":"res/layout/design_navigation_item_separator.xml","name":"res/layout/design_navigation_item_separator.xml","size":472,"crc":411075014},{"key":"res/layout/design_navigation_item_subheader.xml","name":"res/layout/design_navigation_item_subheader.xml","size":564,"crc":-1875472898},{"key":"res/layout/design_navigation_menu.xml","name":"res/layout/design_navigation_menu.xml","size":528,"crc":58677688},{"key":"res/layout/design_navigation_menu_item.xml","name":"res/layout/design_navigation_menu_item.xml","size":856,"crc":1464726787},{"key":"res/layout/design_text_input_end_icon.xml","name":"res/layout/design_text_input_end_icon.xml","size":656,"crc":541648584},{"key":"res/layout/design_text_input_start_icon.xml","name":"res/layout/design_text_input_start_icon.xml","size":652,"crc":1916534468},{"key":"res/layout/dialog_change_password.xml","name":"res/layout/dialog_change_password.xml","size":1832,"crc":-14329510},{"key":"res/layout/dialog_edit_profile.xml","name":"res/layout/dialog_edit_profile.xml","size":3324,"crc":1572207800},{"key":"res/layout/fingerprint_dialog_layout.xml","name":"res/layout/fingerprint_dialog_layout.xml","size":1912,"crc":206928160},{"key":"res/layout/fragment_appointments.xml","name":"res/layout/fragment_appointments.xml","size":1508,"crc":-720684423},{"key":"res/layout/fragment_home.xml","name":"res/layout/fragment_home.xml","size":2400,"crc":832984011},{"key":"res/layout/fragment_medication.xml","name":"res/layout/fragment_medication.xml","size":904,"crc":542938356},{"key":"res/layout/fragment_profile.xml","name":"res/layout/fragment_profile.xml","size":3556,"crc":-1774963311},{"key":"res/layout/fragment_schedule_appointment.xml","name":"res/layout/fragment_schedule_appointment.xml","size":2444,"crc":1353521450},{"key":"res/layout/fragment_sns24.xml","name":"res/layout/fragment_sns24.xml","size":2740,"crc":-1369524800},{"key":"res/layout/ime_base_split_test_activity.xml","name":"res/layout/ime_base_split_test_activity.xml","size":364,"crc":1066515116},{"key":"res/layout/ime_secondary_split_test_activity.xml","name":"res/layout/ime_secondary_split_test_activity.xml","size":876,"crc":1900090499},{"key":"res/layout/item_appointment.xml","name":"res/layout/item_appointment.xml","size":1884,"crc":-1084824088},{"key":"res/layout/item_medication.xml","name":"res/layout/item_medication.xml","size":2384,"crc":1588264908},{"key":"res/layout/item_time_slot.xml","name":"res/layout/item_time_slot.xml","size":556,"crc":752545428},{"key":"res/layout/m3_alert_dialog.xml","name":"res/layout/m3_alert_dialog.xml","size":2720,"crc":1890981251},{"key":"res/layout/m3_alert_dialog_actions.xml","name":"res/layout/m3_alert_dialog_actions.xml","size":1584,"crc":-767868632},{"key":"res/layout/m3_alert_dialog_title.xml","name":"res/layout/m3_alert_dialog_title.xml","size":956,"crc":-379765299},{"key":"res/layout/m3_auto_complete_simple_item.xml","name":"res/layout/m3_auto_complete_simple_item.xml","size":612,"crc":179339084},{"key":"res/layout/m3_side_sheet_dialog.xml","name":"res/layout/m3_side_sheet_dialog.xml","size":1180,"crc":-312441205},{"key":"res/layout/material_chip_input_combo.xml","name":"res/layout/material_chip_input_combo.xml","size":372,"crc":-1047030969},{"key":"res/layout/material_clock_display.xml","name":"res/layout/material_clock_display.xml","size":796,"crc":721089167},{"key":"res/layout/material_clock_display_divider.xml","name":"res/layout/material_clock_display_divider.xml","size":444,"crc":328472644},{"key":"res/layout/material_clock_period_toggle.xml","name":"res/layout/material_clock_period_toggle.xml","size":1220,"crc":500639206},{"key":"res/layout/material_clockface_textview.xml","name":"res/layout/material_clockface_textview.xml","size":476,"crc":-914941644},{"key":"res/layout/material_clockface_view.xml","name":"res/layout/material_clockface_view.xml","size":1012,"crc":2089794628},{"key":"res/layout/material_radial_view_group.xml","name":"res/layout/material_radial_view_group.xml","size":768,"crc":1141694477},{"key":"res/layout/material_textinput_timepicker.xml","name":"res/layout/material_textinput_timepicker.xml","size":720,"crc":-1878747861},{"key":"res/layout/material_time_chip.xml","name":"res/layout/material_time_chip.xml","size":380,"crc":1186992861},{"key":"res/layout/material_time_input.xml","name":"res/layout/material_time_input.xml","size":956,"crc":896146065},{"key":"res/layout/material_timepicker.xml","name":"res/layout/material_timepicker.xml","size":1608,"crc":-1561991090},{"key":"res/layout/material_timepicker_dialog.xml","name":"res/layout/material_timepicker_dialog.xml","size":2892,"crc":-929729433},{"key":"res/layout/material_timepicker_textinput_display.xml","name":"res/layout/material_timepicker_textinput_display.xml","size":728,"crc":1130543605},{"key":"res/layout/mtrl_alert_dialog.xml","name":"res/layout/mtrl_alert_dialog.xml","size":2476,"crc":-159415790},{"key":"res/layout/mtrl_alert_dialog_actions.xml","name":"res/layout/mtrl_alert_dialog_actions.xml","size":1764,"crc":-512023219},{"key":"res/layout/mtrl_alert_dialog_title.xml","name":"res/layout/mtrl_alert_dialog_title.xml","size":956,"crc":2060115235},{"key":"res/layout/mtrl_alert_select_dialog_item.xml","name":"res/layout/mtrl_alert_select_dialog_item.xml","size":588,"crc":-1836513740},{"key":"res/layout/mtrl_alert_select_dialog_multichoice.xml","name":"res/layout/mtrl_alert_select_dialog_multichoice.xml","size":940,"crc":1279169010},{"key":"res/layout/mtrl_alert_select_dialog_singlechoice.xml","name":"res/layout/mtrl_alert_select_dialog_singlechoice.xml","size":940,"crc":-1074604810},{"key":"res/layout/mtrl_auto_complete_simple_item.xml","name":"res/layout/mtrl_auto_complete_simple_item.xml","size":612,"crc":1747700357},{"key":"res/layout/mtrl_calendar_day.xml","name":"res/layout/mtrl_calendar_day.xml","size":352,"crc":931986266},{"key":"res/layout/mtrl_calendar_day_of_week.xml","name":"res/layout/mtrl_calendar_day_of_week.xml","size":352,"crc":-2000580741},{"key":"res/layout/mtrl_calendar_days_of_week.xml","name":"res/layout/mtrl_calendar_days_of_week.xml","size":436,"crc":-437392128},{"key":"res/layout/mtrl_calendar_horizontal.xml","name":"res/layout/mtrl_calendar_horizontal.xml","size":1176,"crc":2070401683},{"key":"res/layout/mtrl_calendar_month.xml","name":"res/layout/mtrl_calendar_month.xml","size":688,"crc":-1462108401},{"key":"res/layout/mtrl_calendar_month_labeled.xml","name":"res/layout/mtrl_calendar_month_labeled.xml","size":728,"crc":1609912803},{"key":"res/layout/mtrl_calendar_month_navigation.xml","name":"res/layout/mtrl_calendar_month_navigation.xml","size":1748,"crc":765552894},{"key":"res/layout/mtrl_calendar_months.xml","name":"res/layout/mtrl_calendar_months.xml","size":428,"crc":-195938499},{"key":"res/layout/mtrl_calendar_vertical.xml","name":"res/layout/mtrl_calendar_vertical.xml","size":740,"crc":1413203383},{"key":"res/layout/mtrl_calendar_year.xml","name":"res/layout/mtrl_calendar_year.xml","size":352,"crc":1419487422},{"key":"res/layout/mtrl_layout_snackbar.xml","name":"res/layout/mtrl_layout_snackbar.xml","size":492,"crc":-1773197127},{"key":"res/layout/mtrl_layout_snackbar_include.xml","name":"res/layout/mtrl_layout_snackbar_include.xml","size":952,"crc":-1427362568},{"key":"res/layout/mtrl_navigation_rail_item.xml","name":"res/layout/mtrl_navigation_rail_item.xml","size":1860,"crc":1248826645},{"key":"res/layout/mtrl_picker_actions.xml","name":"res/layout/mtrl_picker_actions.xml","size":984,"crc":1967840347},{"key":"res/layout/mtrl_picker_dialog.xml","name":"res/layout/mtrl_picker_dialog.xml","size":1172,"crc":899739061},{"key":"res/layout/mtrl_picker_fullscreen.xml","name":"res/layout/mtrl_picker_fullscreen.xml","size":880,"crc":2118098970},{"key":"res/layout/mtrl_picker_header_dialog.xml","name":"res/layout/mtrl_picker_header_dialog.xml","size":1492,"crc":513576630},{"key":"res/layout/mtrl_picker_header_fullscreen.xml","name":"res/layout/mtrl_picker_header_fullscreen.xml","size":2800,"crc":8339888},{"key":"res/layout/mtrl_picker_header_selection_text.xml","name":"res/layout/mtrl_picker_header_selection_text.xml","size":712,"crc":2030557264},{"key":"res/layout/mtrl_picker_header_title_text.xml","name":"res/layout/mtrl_picker_header_title_text.xml","size":624,"crc":1744728245},{"key":"res/layout/mtrl_picker_header_toggle.xml","name":"res/layout/mtrl_picker_header_toggle.xml","size":528,"crc":198359191},{"key":"res/layout/mtrl_picker_text_input_date.xml","name":"res/layout/mtrl_picker_text_input_date.xml","size":984,"crc":2033423957},{"key":"res/layout/mtrl_picker_text_input_date_range.xml","name":"res/layout/mtrl_picker_text_input_date_range.xml","size":1580,"crc":982405702},{"key":"res/layout/mtrl_search_bar.xml","name":"res/layout/mtrl_search_bar.xml","size":488,"crc":-870788704},{"key":"res/layout/mtrl_search_view.xml","name":"res/layout/mtrl_search_view.xml","size":3424,"crc":-1891158061},{"key":"res/layout-v21/notification_action.xml","name":"res/layout-v21/notification_action.xml","size":1052,"crc":537670980},{"key":"res/layout-v21/notification_action_tombstone.xml","name":"res/layout-v21/notification_action_tombstone.xml","size":1228,"crc":1735674066},{"key":"res/layout-v21/notification_template_custom_big.xml","name":"res/layout-v21/notification_template_custom_big.xml","size":2456,"crc":1579564982},{"key":"res/layout-v21/notification_template_icon_group.xml","name":"res/layout-v21/notification_template_icon_group.xml","size":988,"crc":-1692196185},{"key":"res/layout/notification_template_part_chronometer.xml","name":"res/layout/notification_template_part_chronometer.xml","size":440,"crc":-1474973762},{"key":"res/layout/notification_template_part_time.xml","name":"res/layout/notification_template_part_time.xml","size":440,"crc":-752752859},{"key":"res/layout/select_dialog_item_material.xml","name":"res/layout/select_dialog_item_material.xml","size":640,"crc":1761548252},{"key":"res/layout/select_dialog_multichoice_material.xml","name":"res/layout/select_dialog_multichoice_material.xml","size":864,"crc":-296407927},{"key":"res/layout/select_dialog_singlechoice_material.xml","name":"res/layout/select_dialog_singlechoice_material.xml","size":864,"crc":1507117034},{"key":"res/layout/support_simple_spinner_dropdown_item.xml","name":"res/layout/support_simple_spinner_dropdown_item.xml","size":464,"crc":-1505441965},{"key":"res/layout-sw600dp-v13/design_layout_snackbar.xml","name":"res/layout-sw600dp-v13/design_layout_snackbar.xml","size":528,"crc":-318747827},{"key":"res/layout-sw600dp-v13/mtrl_layout_snackbar.xml","name":"res/layout-sw600dp-v13/mtrl_layout_snackbar.xml","size":492,"crc":-623746410},{"key":"res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml","name":"res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml","size":1208,"crc":-1099783431},{"key":"res/layout-watch-v20/abc_alert_dialog_title_material.xml","name":"res/layout-watch-v20/abc_alert_dialog_title_material.xml","size":1352,"crc":1389912061},{"key":"res/layout-v26/abc_screen_toolbar.xml","name":"res/layout-v26/abc_screen_toolbar.xml","size":1560,"crc":996788493},{"key":"res/layout-v26/mtrl_calendar_month.xml","name":"res/layout-v26/mtrl_calendar_month.xml","size":744,"crc":670338650},{"key":"res/layout-land/material_clock_period_toggle_land.xml","name":"res/layout-land/material_clock_period_toggle_land.xml","size":1232,"crc":-1769097947},{"key":"res/layout-land/material_timepicker.xml","name":"res/layout-land/material_timepicker.xml","size":1676,"crc":196340105},{"key":"res/layout-land/mtrl_picker_header_dialog.xml","name":"res/layout-land/mtrl_picker_header_dialog.xml","size":1532,"crc":-1864621929},{"key":"res/menu/bottom_nav_menu.xml","name":"res/menu/bottom_nav_menu.xml","size":884,"crc":-933487030},{"key":"res/navigation/mobile_navigation.xml","name":"res/navigation/mobile_navigation.xml","size":1768,"crc":2007763576},{"key":"res/raw/firebase_common_keep.xml","name":"res/raw/firebase_common_keep.xml","size":290,"crc":1372539573},{"key":"res/xml/backup_rules.xml","name":"res/xml/backup_rules.xml","size":408,"crc":-151447439},{"key":"res/xml/data_extraction_rules.xml","name":"res/xml/data_extraction_rules.xml","size":772,"crc":1963637641},{"key":"res/xml/image_share_filepaths.xml","name":"res/xml/image_share_filepaths.xml","size":308,"crc":283987299},{"key":"resources.arsc","name":"resources.arsc","size":1308340,"crc":1910058457}]
\ No newline at end of file
+[{"key":"AndroidManifest.xml","name":"AndroidManifest.xml","size":15812,"crc":1418594232},{"key":"res/anim/abc_fade_in.xml","name":"res/anim/abc_fade_in.xml","size":388,"crc":1651564388},{"key":"res/anim/abc_fade_out.xml","name":"res/anim/abc_fade_out.xml","size":388,"crc":1955312412},{"key":"res/anim/abc_grow_fade_in_from_bottom.xml","name":"res/anim/abc_grow_fade_in_from_bottom.xml","size":852,"crc":751294131},{"key":"res/anim/abc_popup_enter.xml","name":"res/anim/abc_popup_enter.xml","size":508,"crc":989243998},{"key":"res/anim/abc_popup_exit.xml","name":"res/anim/abc_popup_exit.xml","size":508,"crc":-780583697},{"key":"res/anim/abc_shrink_fade_out_from_bottom.xml","name":"res/anim/abc_shrink_fade_out_from_bottom.xml","size":852,"crc":-1061117395},{"key":"res/anim/abc_slide_in_bottom.xml","name":"res/anim/abc_slide_in_bottom.xml","size":396,"crc":-865076513},{"key":"res/anim/abc_slide_in_top.xml","name":"res/anim/abc_slide_in_top.xml","size":396,"crc":-17746226},{"key":"res/anim/abc_slide_out_bottom.xml","name":"res/anim/abc_slide_out_bottom.xml","size":396,"crc":-290455445},{"key":"res/anim/abc_slide_out_top.xml","name":"res/anim/abc_slide_out_top.xml","size":396,"crc":-261556731},{"key":"res/anim/abc_tooltip_enter.xml","name":"res/anim/abc_tooltip_enter.xml","size":388,"crc":-920421464},{"key":"res/anim/abc_tooltip_exit.xml","name":"res/anim/abc_tooltip_exit.xml","size":388,"crc":-299882513},{"key":"res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml","name":"res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml","size":2124,"crc":-146988082},{"key":"res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml","name":"res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml","size":2780,"crc":-1860489622},{"key":"res/anim/btn_checkbox_to_checked_icon_null_animation.xml","name":"res/anim/btn_checkbox_to_checked_icon_null_animation.xml","size":1196,"crc":-1157435201},{"key":"res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml","name":"res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml","size":2360,"crc":1236845091},{"key":"res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml","name":"res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml","size":2520,"crc":955955241},{"key":"res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml","name":"res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml","size":1196,"crc":-255880154},{"key":"res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml","name":"res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml","size":1656,"crc":706015047},{"key":"res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml","name":"res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml","size":1656,"crc":1241258576},{"key":"res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml","name":"res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml","size":1028,"crc":-1575563134},{"key":"res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml","name":"res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml","size":1656,"crc":-1602916095},{"key":"res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml","name":"res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml","size":1656,"crc":-901976488},{"key":"res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml","name":"res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml","size":1028,"crc":1253987782},{"key":"res/anim-v21/design_bottom_sheet_slide_in.xml","name":"res/anim-v21/design_bottom_sheet_slide_in.xml","size":616,"crc":1414274429},{"key":"res/anim-v21/design_bottom_sheet_slide_out.xml","name":"res/anim-v21/design_bottom_sheet_slide_out.xml","size":616,"crc":-407051051},{"key":"res/anim/design_snackbar_in.xml","name":"res/anim/design_snackbar_in.xml","size":312,"crc":-674904986},{"key":"res/anim/design_snackbar_out.xml","name":"res/anim/design_snackbar_out.xml","size":312,"crc":244987842},{"key":"res/anim-v21/fragment_fast_out_extra_slow_in.xml","name":"res/anim-v21/fragment_fast_out_extra_slow_in.xml","size":364,"crc":1981137860},{"key":"res/anim/linear_indeterminate_line1_head_interpolator.xml","name":"res/anim/linear_indeterminate_line1_head_interpolator.xml","size":400,"crc":-1214901605},{"key":"res/anim/linear_indeterminate_line1_tail_interpolator.xml","name":"res/anim/linear_indeterminate_line1_tail_interpolator.xml","size":400,"crc":935504197},{"key":"res/anim/linear_indeterminate_line2_head_interpolator.xml","name":"res/anim/linear_indeterminate_line2_head_interpolator.xml","size":400,"crc":1664007024},{"key":"res/anim/linear_indeterminate_line2_tail_interpolator.xml","name":"res/anim/linear_indeterminate_line2_tail_interpolator.xml","size":400,"crc":-1107678304},{"key":"res/anim-v21/m3_bottom_sheet_slide_in.xml","name":"res/anim-v21/m3_bottom_sheet_slide_in.xml","size":616,"crc":876594425},{"key":"res/anim-v21/m3_bottom_sheet_slide_out.xml","name":"res/anim-v21/m3_bottom_sheet_slide_out.xml","size":656,"crc":-954726497},{"key":"res/anim/m3_motion_fade_enter.xml","name":"res/anim/m3_motion_fade_enter.xml","size":812,"crc":929845990},{"key":"res/anim/m3_motion_fade_exit.xml","name":"res/anim/m3_motion_fade_exit.xml","size":508,"crc":-70942987},{"key":"res/anim-v21/m3_side_sheet_enter_from_left.xml","name":"res/anim-v21/m3_side_sheet_enter_from_left.xml","size":464,"crc":-1269635202},{"key":"res/anim-v21/m3_side_sheet_enter_from_right.xml","name":"res/anim-v21/m3_side_sheet_enter_from_right.xml","size":464,"crc":-1636519},{"key":"res/anim-v21/m3_side_sheet_exit_to_left.xml","name":"res/anim-v21/m3_side_sheet_exit_to_left.xml","size":464,"crc":462256293},{"key":"res/anim-v21/m3_side_sheet_exit_to_right.xml","name":"res/anim-v21/m3_side_sheet_exit_to_right.xml","size":464,"crc":-702598337},{"key":"res/anim-v21/mtrl_bottom_sheet_slide_in.xml","name":"res/anim-v21/mtrl_bottom_sheet_slide_in.xml","size":616,"crc":612089289},{"key":"res/anim-v21/mtrl_bottom_sheet_slide_out.xml","name":"res/anim-v21/mtrl_bottom_sheet_slide_out.xml","size":616,"crc":-495779574},{"key":"res/anim/mtrl_card_lowers_interpolator.xml","name":"res/anim/mtrl_card_lowers_interpolator.xml","size":400,"crc":1050886711},{"key":"res/anim/nav_default_enter_anim.xml","name":"res/anim/nav_default_enter_anim.xml","size":388,"crc":1469024980},{"key":"res/anim/nav_default_exit_anim.xml","name":"res/anim/nav_default_exit_anim.xml","size":388,"crc":1098180268},{"key":"res/anim/nav_default_pop_enter_anim.xml","name":"res/anim/nav_default_pop_enter_anim.xml","size":388,"crc":1469024980},{"key":"res/anim/nav_default_pop_exit_anim.xml","name":"res/anim/nav_default_pop_exit_anim.xml","size":388,"crc":1098180268},{"key":"res/animator-v21/design_appbar_state_list_animator.xml","name":"res/animator-v21/design_appbar_state_list_animator.xml","size":1216,"crc":1979477452},{"key":"res/animator/design_fab_hide_motion_spec.xml","name":"res/animator/design_fab_hide_motion_spec.xml","size":796,"crc":1576327407},{"key":"res/animator/design_fab_show_motion_spec.xml","name":"res/animator/design_fab_show_motion_spec.xml","size":796,"crc":-1793940175},{"key":"res/animator/fragment_close_enter.xml","name":"res/animator/fragment_close_enter.xml","size":1128,"crc":-454391277},{"key":"res/animator/fragment_close_exit.xml","name":"res/animator/fragment_close_exit.xml","size":1128,"crc":89389386},{"key":"res/animator/fragment_fade_enter.xml","name":"res/animator/fragment_fade_enter.xml","size":452,"crc":607080404},{"key":"res/animator/fragment_fade_exit.xml","name":"res/animator/fragment_fade_exit.xml","size":452,"crc":-675125289},{"key":"res/animator/fragment_open_enter.xml","name":"res/animator/fragment_open_enter.xml","size":1128,"crc":-153086936},{"key":"res/animator/fragment_open_exit.xml","name":"res/animator/fragment_open_exit.xml","size":1128,"crc":926252761},{"key":"res/animator-v21/m3_appbar_state_list_animator.xml","name":"res/animator-v21/m3_appbar_state_list_animator.xml","size":1216,"crc":670802316},{"key":"res/animator/m3_btn_elevated_btn_state_list_anim.xml","name":"res/animator/m3_btn_elevated_btn_state_list_anim.xml","size":1796,"crc":-1572711601},{"key":"res/animator/m3_btn_state_list_anim.xml","name":"res/animator/m3_btn_state_list_anim.xml","size":1796,"crc":-197382423},{"key":"res/animator/m3_card_elevated_state_list_anim.xml","name":"res/animator/m3_card_elevated_state_list_anim.xml","size":1632,"crc":1432393022},{"key":"res/animator/m3_card_state_list_anim.xml","name":"res/animator/m3_card_state_list_anim.xml","size":1584,"crc":475377931},{"key":"res/animator/m3_chip_state_list_anim.xml","name":"res/animator/m3_chip_state_list_anim.xml","size":1180,"crc":1452770895},{"key":"res/animator/m3_elevated_chip_state_list_anim.xml","name":"res/animator/m3_elevated_chip_state_list_anim.xml","size":1072,"crc":638605030},{"key":"res/animator/m3_extended_fab_change_size_collapse_motion_spec.xml","name":"res/animator/m3_extended_fab_change_size_collapse_motion_spec.xml","size":1116,"crc":1442143121},{"key":"res/animator/m3_extended_fab_change_size_expand_motion_spec.xml","name":"res/animator/m3_extended_fab_change_size_expand_motion_spec.xml","size":1116,"crc":-806175005},{"key":"res/animator/m3_extended_fab_hide_motion_spec.xml","name":"res/animator/m3_extended_fab_hide_motion_spec.xml","size":820,"crc":-657483639},{"key":"res/animator/m3_extended_fab_show_motion_spec.xml","name":"res/animator/m3_extended_fab_show_motion_spec.xml","size":820,"crc":43178608},{"key":"res/animator/m3_extended_fab_state_list_animator.xml","name":"res/animator/m3_extended_fab_state_list_animator.xml","size":2724,"crc":109525731},{"key":"res/animator/mtrl_btn_state_list_anim.xml","name":"res/animator/mtrl_btn_state_list_anim.xml","size":2664,"crc":300493100},{"key":"res/animator/mtrl_btn_unelevated_state_list_anim.xml","name":"res/animator/mtrl_btn_unelevated_state_list_anim.xml","size":120,"crc":1914039208},{"key":"res/animator/mtrl_card_state_list_anim.xml","name":"res/animator/mtrl_card_state_list_anim.xml","size":1208,"crc":1096367424},{"key":"res/animator/mtrl_chip_state_list_anim.xml","name":"res/animator/mtrl_chip_state_list_anim.xml","size":1072,"crc":-1561216507},{"key":"res/animator/mtrl_extended_fab_change_size_collapse_motion_spec.xml","name":"res/animator/mtrl_extended_fab_change_size_collapse_motion_spec.xml","size":1116,"crc":-1615681408},{"key":"res/animator/mtrl_extended_fab_change_size_expand_motion_spec.xml","name":"res/animator/mtrl_extended_fab_change_size_expand_motion_spec.xml","size":1116,"crc":1023646182},{"key":"res/animator/mtrl_extended_fab_hide_motion_spec.xml","name":"res/animator/mtrl_extended_fab_hide_motion_spec.xml","size":608,"crc":1271512629},{"key":"res/animator/mtrl_extended_fab_show_motion_spec.xml","name":"res/animator/mtrl_extended_fab_show_motion_spec.xml","size":820,"crc":1065923901},{"key":"res/animator/mtrl_extended_fab_state_list_animator.xml","name":"res/animator/mtrl_extended_fab_state_list_animator.xml","size":2724,"crc":-2118674184},{"key":"res/animator/mtrl_fab_hide_motion_spec.xml","name":"res/animator/mtrl_fab_hide_motion_spec.xml","size":796,"crc":882377992},{"key":"res/animator/mtrl_fab_show_motion_spec.xml","name":"res/animator/mtrl_fab_show_motion_spec.xml","size":796,"crc":-959797063},{"key":"res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml","name":"res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml","size":1888,"crc":1255551011},{"key":"res/animator/mtrl_fab_transformation_sheet_expand_spec.xml","name":"res/animator/mtrl_fab_transformation_sheet_expand_spec.xml","size":1888,"crc":-435920809},{"key":"res/animator/nav_default_enter_anim.xml","name":"res/animator/nav_default_enter_anim.xml","size":452,"crc":1047083570},{"key":"res/animator/nav_default_exit_anim.xml","name":"res/animator/nav_default_exit_anim.xml","size":452,"crc":-846982607},{"key":"res/animator/nav_default_pop_enter_anim.xml","name":"res/animator/nav_default_pop_enter_anim.xml","size":452,"crc":1047083570},{"key":"res/animator/nav_default_pop_exit_anim.xml","name":"res/animator/nav_default_pop_exit_anim.xml","size":452,"crc":-846982607},{"key":"res/color/abc_background_cache_hint_selector_material_dark.xml","name":"res/color/abc_background_cache_hint_selector_material_dark.xml","size":468,"crc":-214821868},{"key":"res/color/abc_background_cache_hint_selector_material_light.xml","name":"res/color/abc_background_cache_hint_selector_material_light.xml","size":468,"crc":-1456888759},{"key":"res/color-v23/abc_btn_colored_borderless_text_material.xml","name":"res/color-v23/abc_btn_colored_borderless_text_material.xml","size":500,"crc":-660497310},{"key":"res/color-v23/abc_btn_colored_text_material.xml","name":"res/color-v23/abc_btn_colored_text_material.xml","size":500,"crc":2018759506},{"key":"res/color-v23/abc_color_highlight_material.xml","name":"res/color-v23/abc_color_highlight_material.xml","size":544,"crc":805578306},{"key":"res/color/abc_hint_foreground_material_dark.xml","name":"res/color/abc_hint_foreground_material_dark.xml","size":564,"crc":-1861753172},{"key":"res/color/abc_hint_foreground_material_light.xml","name":"res/color/abc_hint_foreground_material_light.xml","size":564,"crc":1030962633},{"key":"res/color/abc_primary_text_disable_only_material_dark.xml","name":"res/color/abc_primary_text_disable_only_material_dark.xml","size":464,"crc":-20224979},{"key":"res/color/abc_primary_text_disable_only_material_light.xml","name":"res/color/abc_primary_text_disable_only_material_light.xml","size":464,"crc":1842617175},{"key":"res/color/abc_primary_text_material_dark.xml","name":"res/color/abc_primary_text_material_dark.xml","size":464,"crc":-1265922333},{"key":"res/color/abc_primary_text_material_light.xml","name":"res/color/abc_primary_text_material_light.xml","size":464,"crc":664072601},{"key":"res/color/abc_search_url_text.xml","name":"res/color/abc_search_url_text.xml","size":588,"crc":-373879818},{"key":"res/color/abc_secondary_text_material_dark.xml","name":"res/color/abc_secondary_text_material_dark.xml","size":464,"crc":-485004901},{"key":"res/color/abc_secondary_text_material_light.xml","name":"res/color/abc_secondary_text_material_light.xml","size":464,"crc":-131016892},{"key":"res/color-v23/abc_tint_btn_checkable.xml","name":"res/color-v23/abc_tint_btn_checkable.xml","size":624,"crc":-1039798998},{"key":"res/color-v23/abc_tint_default.xml","name":"res/color-v23/abc_tint_default.xml","size":1120,"crc":1933301183},{"key":"res/color-v23/abc_tint_edittext.xml","name":"res/color-v23/abc_tint_edittext.xml","size":668,"crc":994010686},{"key":"res/color-v23/abc_tint_seek_thumb.xml","name":"res/color-v23/abc_tint_seek_thumb.xml","size":500,"crc":1198778772},{"key":"res/color-v23/abc_tint_spinner.xml","name":"res/color-v23/abc_tint_spinner.xml","size":668,"crc":994010686},{"key":"res/color-v23/abc_tint_switch_track.xml","name":"res/color-v23/abc_tint_switch_track.xml","size":664,"crc":394862852},{"key":"res/color/common_google_signin_btn_text_dark.xml","name":"res/color/common_google_signin_btn_text_dark.xml","size":712,"crc":-222425542},{"key":"res/color/common_google_signin_btn_text_light.xml","name":"res/color/common_google_signin_btn_text_light.xml","size":712,"crc":1157419525},{"key":"res/color/common_google_signin_btn_tint.xml","name":"res/color/common_google_signin_btn_tint.xml","size":464,"crc":1144351805},{"key":"res/color/design_box_stroke_color.xml","name":"res/color/design_box_stroke_color.xml","size":712,"crc":-1445228332},{"key":"res/color/design_error.xml","name":"res/color/design_error.xml","size":464,"crc":1839983861},{"key":"res/color/design_icon_tint.xml","name":"res/color/design_icon_tint.xml","size":376,"crc":-776008690},{"key":"res/color/m3_appbar_overlay_color.xml","name":"res/color/m3_appbar_overlay_color.xml","size":376,"crc":940783738},{"key":"res/color/m3_assist_chip_icon_tint_color.xml","name":"res/color/m3_assist_chip_icon_tint_color.xml","size":500,"crc":-322082820},{"key":"res/color/m3_assist_chip_stroke_color.xml","name":"res/color/m3_assist_chip_stroke_color.xml","size":872,"crc":-765319089},{"key":"res/color/m3_bottom_sheet_drag_handle_color.xml","name":"res/color/m3_bottom_sheet_drag_handle_color.xml","size":340,"crc":706461905},{"key":"res/color/m3_button_background_color_selector.xml","name":"res/color/m3_button_background_color_selector.xml","size":500,"crc":1431054},{"key":"res/color/m3_button_foreground_color_selector.xml","name":"res/color/m3_button_foreground_color_selector.xml","size":500,"crc":520860826},{"key":"res/color/m3_button_outline_color_selector.xml","name":"res/color/m3_button_outline_color_selector.xml","size":500,"crc":1836165633},{"key":"res/color/m3_button_ripple_color.xml","name":"res/color/m3_button_ripple_color.xml","size":808,"crc":1817261047},{"key":"res/color/m3_button_ripple_color_selector.xml","name":"res/color/m3_button_ripple_color_selector.xml","size":808,"crc":-1160989734},{"key":"res/color/m3_calendar_item_disabled_text.xml","name":"res/color/m3_calendar_item_disabled_text.xml","size":376,"crc":-2051511173},{"key":"res/color/m3_calendar_item_stroke_color.xml","name":"res/color/m3_calendar_item_stroke_color.xml","size":712,"crc":-100095401},{"key":"res/color/m3_card_foreground_color.xml","name":"res/color/m3_card_foreground_color.xml","size":768,"crc":-68932420},{"key":"res/color/m3_card_ripple_color.xml","name":"res/color/m3_card_ripple_color.xml","size":1556,"crc":-1844804471},{"key":"res/color/m3_card_stroke_color.xml","name":"res/color/m3_card_stroke_color.xml","size":1224,"crc":1725230945},{"key":"res/color/m3_checkbox_button_icon_tint.xml","name":"res/color/m3_checkbox_button_icon_tint.xml","size":964,"crc":-824090955},{"key":"res/color/m3_checkbox_button_tint.xml","name":"res/color/m3_checkbox_button_tint.xml","size":1000,"crc":-2067241791},{"key":"res/color/m3_chip_assist_text_color.xml","name":"res/color/m3_chip_assist_text_color.xml","size":500,"crc":431160280},{"key":"res/color/m3_chip_background_color.xml","name":"res/color/m3_chip_background_color.xml","size":712,"crc":-820740743},{"key":"res/color/m3_chip_ripple_color.xml","name":"res/color/m3_chip_ripple_color.xml","size":1556,"crc":-2108843416},{"key":"res/color/m3_chip_stroke_color.xml","name":"res/color/m3_chip_stroke_color.xml","size":872,"crc":-1649504809},{"key":"res/color/m3_chip_text_color.xml","name":"res/color/m3_chip_text_color.xml","size":624,"crc":1441075769},{"key":"res/color/m3_dark_default_color_primary_text.xml","name":"res/color/m3_dark_default_color_primary_text.xml","size":500,"crc":-1927912647},{"key":"res/color/m3_dark_default_color_secondary_text.xml","name":"res/color/m3_dark_default_color_secondary_text.xml","size":500,"crc":55890439},{"key":"res/color/m3_dark_highlighted_text.xml","name":"res/color/m3_dark_highlighted_text.xml","size":376,"crc":1581937693},{"key":"res/color/m3_dark_hint_foreground.xml","name":"res/color/m3_dark_hint_foreground.xml","size":564,"crc":821014056},{"key":"res/color/m3_dark_primary_text_disable_only.xml","name":"res/color/m3_dark_primary_text_disable_only.xml","size":500,"crc":-1403569227},{"key":"res/color/m3_default_color_primary_text.xml","name":"res/color/m3_default_color_primary_text.xml","size":500,"crc":-1183575610},{"key":"res/color/m3_default_color_secondary_text.xml","name":"res/color/m3_default_color_secondary_text.xml","size":500,"crc":926327032},{"key":"res/color/m3_efab_ripple_color_selector.xml","name":"res/color/m3_efab_ripple_color_selector.xml","size":808,"crc":1747868661},{"key":"res/color/m3_elevated_chip_background_color.xml","name":"res/color/m3_elevated_chip_background_color.xml","size":748,"crc":-2057648631},{"key":"res/color/m3_fab_efab_background_color_selector.xml","name":"res/color/m3_fab_efab_background_color_selector.xml","size":500,"crc":1431054},{"key":"res/color/m3_fab_efab_foreground_color_selector.xml","name":"res/color/m3_fab_efab_foreground_color_selector.xml","size":500,"crc":520860826},{"key":"res/color/m3_fab_ripple_color_selector.xml","name":"res/color/m3_fab_ripple_color_selector.xml","size":808,"crc":1666521098},{"key":"res/color/m3_filled_icon_button_container_color_selector.xml","name":"res/color/m3_filled_icon_button_container_color_selector.xml","size":668,"crc":1325414287},{"key":"res/color/m3_highlighted_text.xml","name":"res/color/m3_highlighted_text.xml","size":376,"crc":-1794798684},{"key":"res/color/m3_hint_foreground.xml","name":"res/color/m3_hint_foreground.xml","size":564,"crc":197104272},{"key":"res/color/m3_icon_button_icon_color_selector.xml","name":"res/color/m3_icon_button_icon_color_selector.xml","size":668,"crc":-448447158},{"key":"res/color/m3_navigation_bar_item_with_indicator_icon_tint.xml","name":"res/color/m3_navigation_bar_item_with_indicator_icon_tint.xml","size":1196,"crc":-787967621},{"key":"res/color/m3_navigation_bar_item_with_indicator_label_tint.xml","name":"res/color/m3_navigation_bar_item_with_indicator_label_tint.xml","size":1196,"crc":1628892984},{"key":"res/color/m3_navigation_bar_ripple_color_selector.xml","name":"res/color/m3_navigation_bar_ripple_color_selector.xml","size":1232,"crc":-1398412064},{"key":"res/color/m3_navigation_item_background_color.xml","name":"res/color/m3_navigation_item_background_color.xml","size":588,"crc":-348595502},{"key":"res/color/m3_navigation_item_icon_tint.xml","name":"res/color/m3_navigation_item_icon_tint.xml","size":1356,"crc":-207826482},{"key":"res/color/m3_navigation_item_ripple_color.xml","name":"res/color/m3_navigation_item_ripple_color.xml","size":1372,"crc":317881936},{"key":"res/color/m3_navigation_item_text_color.xml","name":"res/color/m3_navigation_item_text_color.xml","size":1356,"crc":1494472847},{"key":"res/color/m3_navigation_rail_item_with_indicator_icon_tint.xml","name":"res/color/m3_navigation_rail_item_with_indicator_icon_tint.xml","size":464,"crc":-755596530},{"key":"res/color/m3_navigation_rail_item_with_indicator_label_tint.xml","name":"res/color/m3_navigation_rail_item_with_indicator_label_tint.xml","size":464,"crc":1587537019},{"key":"res/color/m3_navigation_rail_ripple_color_selector.xml","name":"res/color/m3_navigation_rail_ripple_color_selector.xml","size":1232,"crc":-905635925},{"key":"res/color/m3_popupmenu_overlay_color.xml","name":"res/color/m3_popupmenu_overlay_color.xml","size":376,"crc":468632849},{"key":"res/color/m3_primary_text_disable_only.xml","name":"res/color/m3_primary_text_disable_only.xml","size":500,"crc":-1328586256},{"key":"res/color/m3_radiobutton_button_tint.xml","name":"res/color/m3_radiobutton_button_tint.xml","size":1576,"crc":-1885189644},{"key":"res/color/m3_radiobutton_ripple_tint.xml","name":"res/color/m3_radiobutton_ripple_tint.xml","size":1372,"crc":-2096081237},{"key":"res/color/m3_selection_control_ripple_color_selector.xml","name":"res/color/m3_selection_control_ripple_color_selector.xml","size":1372,"crc":-1943086396},{"key":"res/color/m3_simple_item_ripple_color.xml","name":"res/color/m3_simple_item_ripple_color.xml","size":748,"crc":1906860746},{"key":"res/color/m3_slider_active_track_color.xml","name":"res/color/m3_slider_active_track_color.xml","size":500,"crc":-818216278},{"key":"res/color/m3_slider_halo_color.xml","name":"res/color/m3_slider_halo_color.xml","size":500,"crc":-1105181421},{"key":"res/color/m3_slider_inactive_track_color.xml","name":"res/color/m3_slider_inactive_track_color.xml","size":500,"crc":1648046939},{"key":"res/color/m3_slider_thumb_color.xml","name":"res/color/m3_slider_thumb_color.xml","size":500,"crc":2032162726},{"key":"res/color/m3_switch_thumb_tint.xml","name":"res/color/m3_switch_thumb_tint.xml","size":588,"crc":-151121742},{"key":"res/color/m3_switch_track_tint.xml","name":"res/color/m3_switch_track_tint.xml","size":624,"crc":1277880160},{"key":"res/color/m3_tabs_icon_color.xml","name":"res/color/m3_tabs_icon_color.xml","size":624,"crc":-1924398551},{"key":"res/color/m3_tabs_icon_color_secondary.xml","name":"res/color/m3_tabs_icon_color_secondary.xml","size":624,"crc":2063580749},{"key":"res/color/m3_tabs_ripple_color.xml","name":"res/color/m3_tabs_ripple_color.xml","size":1372,"crc":-481980335},{"key":"res/color/m3_tabs_ripple_color_secondary.xml","name":"res/color/m3_tabs_ripple_color_secondary.xml","size":1372,"crc":1106885231},{"key":"res/color/m3_tabs_text_color.xml","name":"res/color/m3_tabs_text_color.xml","size":624,"crc":-1924398551},{"key":"res/color/m3_tabs_text_color_secondary.xml","name":"res/color/m3_tabs_text_color_secondary.xml","size":624,"crc":2063580749},{"key":"res/color/m3_text_button_background_color_selector.xml","name":"res/color/m3_text_button_background_color_selector.xml","size":508,"crc":1488336652},{"key":"res/color/m3_text_button_foreground_color_selector.xml","name":"res/color/m3_text_button_foreground_color_selector.xml","size":748,"crc":1603618837},{"key":"res/color/m3_text_button_ripple_color_selector.xml","name":"res/color/m3_text_button_ripple_color_selector.xml","size":1936,"crc":-2064238425},{"key":"res/color/m3_textfield_filled_background_color.xml","name":"res/color/m3_textfield_filled_background_color.xml","size":500,"crc":1990304049},{"key":"res/color/m3_textfield_indicator_text_color.xml","name":"res/color/m3_textfield_indicator_text_color.xml","size":872,"crc":1340612816},{"key":"res/color/m3_textfield_input_text_color.xml","name":"res/color/m3_textfield_input_text_color.xml","size":748,"crc":-168518029},{"key":"res/color/m3_textfield_label_color.xml","name":"res/color/m3_textfield_label_color.xml","size":624,"crc":1015400073},{"key":"res/color/m3_textfield_stroke_color.xml","name":"res/color/m3_textfield_stroke_color.xml","size":748,"crc":805492503},{"key":"res/color/m3_timepicker_button_background_color.xml","name":"res/color/m3_timepicker_button_background_color.xml","size":528,"crc":-2045213224},{"key":"res/color/m3_timepicker_button_ripple_color.xml","name":"res/color/m3_timepicker_button_ripple_color.xml","size":1536,"crc":1556797642},{"key":"res/color/m3_timepicker_button_text_color.xml","name":"res/color/m3_timepicker_button_text_color.xml","size":768,"crc":-1861026794},{"key":"res/color/m3_timepicker_clock_text_color.xml","name":"res/color/m3_timepicker_clock_text_color.xml","size":464,"crc":-1051823032},{"key":"res/color/m3_timepicker_display_background_color.xml","name":"res/color/m3_timepicker_display_background_color.xml","size":464,"crc":-1025021997},{"key":"res/color/m3_timepicker_display_ripple_color.xml","name":"res/color/m3_timepicker_display_ripple_color.xml","size":1372,"crc":201648889},{"key":"res/color/m3_timepicker_display_text_color.xml","name":"res/color/m3_timepicker_display_text_color.xml","size":624,"crc":-251212826},{"key":"res/color/m3_timepicker_secondary_text_button_ripple_color.xml","name":"res/color/m3_timepicker_secondary_text_button_ripple_color.xml","size":808,"crc":234042726},{"key":"res/color/m3_timepicker_secondary_text_button_text_color.xml","name":"res/color/m3_timepicker_secondary_text_button_text_color.xml","size":500,"crc":2143865884},{"key":"res/color/m3_timepicker_time_input_stroke_color.xml","name":"res/color/m3_timepicker_time_input_stroke_color.xml","size":464,"crc":142631324},{"key":"res/color/m3_tonal_button_ripple_color_selector.xml","name":"res/color/m3_tonal_button_ripple_color_selector.xml","size":808,"crc":-1160989734},{"key":"res/color/material_cursor_color.xml","name":"res/color/material_cursor_color.xml","size":340,"crc":1536521346},{"key":"res/color/material_divider_color.xml","name":"res/color/material_divider_color.xml","size":376,"crc":-1279336076},{"key":"res/color/material_on_background_disabled.xml","name":"res/color/material_on_background_disabled.xml","size":376,"crc":555949054},{"key":"res/color/material_on_background_emphasis_high_type.xml","name":"res/color/material_on_background_emphasis_high_type.xml","size":376,"crc":-422084669},{"key":"res/color/material_on_background_emphasis_medium.xml","name":"res/color/material_on_background_emphasis_medium.xml","size":376,"crc":1754648317},{"key":"res/color/material_on_primary_disabled.xml","name":"res/color/material_on_primary_disabled.xml","size":376,"crc":2052906211},{"key":"res/color/material_on_primary_emphasis_high_type.xml","name":"res/color/material_on_primary_emphasis_high_type.xml","size":376,"crc":-1113016098},{"key":"res/color/material_on_primary_emphasis_medium.xml","name":"res/color/material_on_primary_emphasis_medium.xml","size":376,"crc":870975968},{"key":"res/color/material_on_surface_disabled.xml","name":"res/color/material_on_surface_disabled.xml","size":376,"crc":329637659},{"key":"res/color/material_on_surface_emphasis_high_type.xml","name":"res/color/material_on_surface_emphasis_high_type.xml","size":376,"crc":-732841178},{"key":"res/color/material_on_surface_emphasis_medium.xml","name":"res/color/material_on_surface_emphasis_medium.xml","size":376,"crc":1511197208},{"key":"res/color/material_on_surface_stroke.xml","name":"res/color/material_on_surface_stroke.xml","size":376,"crc":-123426414},{"key":"res/color/material_personalized__highlighted_text.xml","name":"res/color/material_personalized__highlighted_text.xml","size":376,"crc":-533219197},{"key":"res/color/material_personalized__highlighted_text_inverse.xml","name":"res/color/material_personalized__highlighted_text_inverse.xml","size":376,"crc":-2058640058},{"key":"res/color/material_personalized_color_primary_text.xml","name":"res/color/material_personalized_color_primary_text.xml","size":500,"crc":512317136},{"key":"res/color/material_personalized_color_primary_text_inverse.xml","name":"res/color/material_personalized_color_primary_text_inverse.xml","size":500,"crc":2090995657},{"key":"res/color/material_personalized_color_secondary_text.xml","name":"res/color/material_personalized_color_secondary_text.xml","size":500,"crc":618094752},{"key":"res/color/material_personalized_color_secondary_text_inverse.xml","name":"res/color/material_personalized_color_secondary_text_inverse.xml","size":500,"crc":114021031},{"key":"res/color/material_personalized_hint_foreground.xml","name":"res/color/material_personalized_hint_foreground.xml","size":564,"crc":481772023},{"key":"res/color/material_personalized_hint_foreground_inverse.xml","name":"res/color/material_personalized_hint_foreground_inverse.xml","size":564,"crc":278734246},{"key":"res/color/material_personalized_primary_inverse_text_disable_only.xml","name":"res/color/material_personalized_primary_inverse_text_disable_only.xml","size":500,"crc":-182360533},{"key":"res/color/material_personalized_primary_text_disable_only.xml","name":"res/color/material_personalized_primary_text_disable_only.xml","size":500,"crc":1070075484},{"key":"res/color/material_slider_active_tick_marks_color.xml","name":"res/color/material_slider_active_tick_marks_color.xml","size":520,"crc":-1848312163},{"key":"res/color/material_slider_active_track_color.xml","name":"res/color/material_slider_active_track_color.xml","size":500,"crc":1960931503},{"key":"res/color/material_slider_halo_color.xml","name":"res/color/material_slider_halo_color.xml","size":500,"crc":2139057503},{"key":"res/color/material_slider_inactive_tick_marks_color.xml","name":"res/color/material_slider_inactive_tick_marks_color.xml","size":520,"crc":-32600660},{"key":"res/color/material_slider_inactive_track_color.xml","name":"res/color/material_slider_inactive_track_color.xml","size":520,"crc":866365684},{"key":"res/color/material_slider_thumb_color.xml","name":"res/color/material_slider_thumb_color.xml","size":500,"crc":2102950569},{"key":"res/color/material_timepicker_button_background.xml","name":"res/color/material_timepicker_button_background.xml","size":500,"crc":-1569347398},{"key":"res/color/material_timepicker_button_stroke.xml","name":"res/color/material_timepicker_button_stroke.xml","size":376,"crc":1739697651},{"key":"res/color/material_timepicker_clock_text_color.xml","name":"res/color/material_timepicker_clock_text_color.xml","size":464,"crc":-965860127},{"key":"res/color/material_timepicker_clockface.xml","name":"res/color/material_timepicker_clockface.xml","size":376,"crc":1291409233},{"key":"res/color/material_timepicker_modebutton_tint.xml","name":"res/color/material_timepicker_modebutton_tint.xml","size":376,"crc":-86760651},{"key":"res/color/mtrl_btn_bg_color_selector.xml","name":"res/color/mtrl_btn_bg_color_selector.xml","size":500,"crc":-1051432089},{"key":"res/color/mtrl_btn_ripple_color.xml","name":"res/color/mtrl_btn_ripple_color.xml","size":948,"crc":-1364937085},{"key":"res/color/mtrl_btn_stroke_color_selector.xml","name":"res/color/mtrl_btn_stroke_color_selector.xml","size":520,"crc":1891771984},{"key":"res/color/mtrl_btn_text_btn_bg_color_selector.xml","name":"res/color/mtrl_btn_text_btn_bg_color_selector.xml","size":520,"crc":-66415344},{"key":"res/color/mtrl_btn_text_btn_ripple_color.xml","name":"res/color/mtrl_btn_text_btn_ripple_color.xml","size":948,"crc":860694578},{"key":"res/color/mtrl_btn_text_color_selector.xml","name":"res/color/mtrl_btn_text_color_selector.xml","size":500,"crc":1753418756},{"key":"res/color/mtrl_calendar_item_stroke_color.xml","name":"res/color/mtrl_calendar_item_stroke_color.xml","size":808,"crc":-1897765442},{"key":"res/color/mtrl_calendar_selected_range.xml","name":"res/color/mtrl_calendar_selected_range.xml","size":376,"crc":574168547},{"key":"res/color/mtrl_card_view_foreground.xml","name":"res/color/mtrl_card_view_foreground.xml","size":788,"crc":-89568530},{"key":"res/color/mtrl_card_view_ripple.xml","name":"res/color/mtrl_card_view_ripple.xml","size":768,"crc":965878192},{"key":"res/color/mtrl_chip_background_color.xml","name":"res/color/mtrl_chip_background_color.xml","size":848,"crc":1130345132},{"key":"res/color/mtrl_chip_close_icon_tint.xml","name":"res/color/mtrl_chip_close_icon_tint.xml","size":1092,"crc":163081984},{"key":"res/color/mtrl_chip_surface_color.xml","name":"res/color/mtrl_chip_surface_color.xml","size":340,"crc":1125854904},{"key":"res/color/mtrl_chip_text_color.xml","name":"res/color/mtrl_chip_text_color.xml","size":520,"crc":1100666539},{"key":"res/color/mtrl_choice_chip_background_color.xml","name":"res/color/mtrl_choice_chip_background_color.xml","size":848,"crc":-948289294},{"key":"res/color/mtrl_choice_chip_ripple_color.xml","name":"res/color/mtrl_choice_chip_ripple_color.xml","size":948,"crc":665806037},{"key":"res/color/mtrl_choice_chip_text_color.xml","name":"res/color/mtrl_choice_chip_text_color.xml","size":808,"crc":-508732010},{"key":"res/color/mtrl_error.xml","name":"res/color/mtrl_error.xml","size":464,"crc":2113506919},{"key":"res/color/mtrl_fab_bg_color_selector.xml","name":"res/color/mtrl_fab_bg_color_selector.xml","size":500,"crc":409782502},{"key":"res/color/mtrl_fab_icon_text_color_selector.xml","name":"res/color/mtrl_fab_icon_text_color_selector.xml","size":500,"crc":900733910},{"key":"res/color/mtrl_fab_ripple_color.xml","name":"res/color/mtrl_fab_ripple_color.xml","size":948,"crc":-1554783790},{"key":"res/color/mtrl_filled_background_color.xml","name":"res/color/mtrl_filled_background_color.xml","size":808,"crc":-339486878},{"key":"res/color/mtrl_filled_icon_tint.xml","name":"res/color/mtrl_filled_icon_tint.xml","size":644,"crc":-350017018},{"key":"res/color/mtrl_filled_stroke_color.xml","name":"res/color/mtrl_filled_stroke_color.xml","size":788,"crc":-2138293321},{"key":"res/color/mtrl_indicator_text_color.xml","name":"res/color/mtrl_indicator_text_color.xml","size":520,"crc":-1272518866},{"key":"res/color/mtrl_navigation_bar_colored_item_tint.xml","name":"res/color/mtrl_navigation_bar_colored_item_tint.xml","size":520,"crc":586014296},{"key":"res/color/mtrl_navigation_bar_colored_ripple_color.xml","name":"res/color/mtrl_navigation_bar_colored_ripple_color.xml","size":948,"crc":51010866},{"key":"res/color/mtrl_navigation_bar_item_tint.xml","name":"res/color/mtrl_navigation_bar_item_tint.xml","size":520,"crc":1295494505},{"key":"res/color/mtrl_navigation_bar_ripple_color.xml","name":"res/color/mtrl_navigation_bar_ripple_color.xml","size":1672,"crc":-2104800327},{"key":"res/color/mtrl_navigation_item_background_color.xml","name":"res/color/mtrl_navigation_item_background_color.xml","size":644,"crc":-1640328340},{"key":"res/color/mtrl_navigation_item_icon_tint.xml","name":"res/color/mtrl_navigation_item_icon_tint.xml","size":624,"crc":176928592},{"key":"res/color/mtrl_navigation_item_text_color.xml","name":"res/color/mtrl_navigation_item_text_color.xml","size":624,"crc":176928592},{"key":"res/color/mtrl_on_primary_text_btn_text_color_selector.xml","name":"res/color/mtrl_on_primary_text_btn_text_color_selector.xml","size":500,"crc":769057228},{"key":"res/color/mtrl_on_surface_ripple_color.xml","name":"res/color/mtrl_on_surface_ripple_color.xml","size":808,"crc":-1382685745},{"key":"res/color/mtrl_outlined_icon_tint.xml","name":"res/color/mtrl_outlined_icon_tint.xml","size":644,"crc":-844237075},{"key":"res/color/mtrl_outlined_stroke_color.xml","name":"res/color/mtrl_outlined_stroke_color.xml","size":788,"crc":748122300},{"key":"res/color/mtrl_popupmenu_overlay_color.xml","name":"res/color/mtrl_popupmenu_overlay_color.xml","size":376,"crc":-1073170695},{"key":"res/color/mtrl_switch_thumb_icon_tint.xml","name":"res/color/mtrl_switch_thumb_icon_tint.xml","size":1236,"crc":-463757771},{"key":"res/color/mtrl_switch_thumb_tint.xml","name":"res/color/mtrl_switch_thumb_tint.xml","size":1028,"crc":-67378190},{"key":"res/color/mtrl_switch_track_decoration_tint.xml","name":"res/color/mtrl_switch_track_decoration_tint.xml","size":624,"crc":294261686},{"key":"res/color/mtrl_switch_track_tint.xml","name":"res/color/mtrl_switch_track_tint.xml","size":1236,"crc":-243543750},{"key":"res/color/mtrl_tabs_colored_ripple_color.xml","name":"res/color/mtrl_tabs_colored_ripple_color.xml","size":948,"crc":51010866},{"key":"res/color/mtrl_tabs_icon_color_selector.xml","name":"res/color/mtrl_tabs_icon_color_selector.xml","size":500,"crc":-1604277735},{"key":"res/color/mtrl_tabs_icon_color_selector_colored.xml","name":"res/color/mtrl_tabs_icon_color_selector_colored.xml","size":500,"crc":-599597236},{"key":"res/color/mtrl_tabs_legacy_text_color_selector.xml","name":"res/color/mtrl_tabs_legacy_text_color_selector.xml","size":464,"crc":301181175},{"key":"res/color/mtrl_tabs_ripple_color.xml","name":"res/color/mtrl_tabs_ripple_color.xml","size":1672,"crc":-2104800327},{"key":"res/color/mtrl_text_btn_text_color_selector.xml","name":"res/color/mtrl_text_btn_text_color_selector.xml","size":888,"crc":-1696089436},{"key":"res/color/switch_thumb_material_dark.xml","name":"res/color/switch_thumb_material_dark.xml","size":464,"crc":1807275962},{"key":"res/color/switch_thumb_material_light.xml","name":"res/color/switch_thumb_material_light.xml","size":464,"crc":-123230016},{"key":"res/color-night-v8/material_timepicker_button_stroke.xml","name":"res/color-night-v8/material_timepicker_button_stroke.xml","size":376,"crc":1151907932},{"key":"res/color-night-v8/material_timepicker_clockface.xml","name":"res/color-night-v8/material_timepicker_clockface.xml","size":376,"crc":-1279336076},{"key":"res/color-night-v8/material_timepicker_modebutton_tint.xml","name":"res/color-night-v8/material_timepicker_modebutton_tint.xml","size":340,"crc":-1183421737},{"key":"res/color-v26/biometric_error_color.xml","name":"res/color-v26/biometric_error_color.xml","size":464,"crc":-1363387313},{"key":"res/color-v31/m3_dynamic_dark_default_color_primary_text.xml","name":"res/color-v31/m3_dynamic_dark_default_color_primary_text.xml","size":500,"crc":1670564576},{"key":"res/color-v31/m3_dynamic_dark_default_color_secondary_text.xml","name":"res/color-v31/m3_dynamic_dark_default_color_secondary_text.xml","size":500,"crc":-305103906},{"key":"res/color-v31/m3_dynamic_dark_highlighted_text.xml","name":"res/color-v31/m3_dynamic_dark_highlighted_text.xml","size":376,"crc":-253023632},{"key":"res/color-v31/m3_dynamic_dark_hint_foreground.xml","name":"res/color-v31/m3_dynamic_dark_hint_foreground.xml","size":564,"crc":1829426210},{"key":"res/color-v31/m3_dynamic_dark_primary_text_disable_only.xml","name":"res/color-v31/m3_dynamic_dark_primary_text_disable_only.xml","size":500,"crc":1781119702},{"key":"res/color-v31/m3_dynamic_default_color_primary_text.xml","name":"res/color-v31/m3_dynamic_default_color_primary_text.xml","size":500,"crc":1101373203},{"key":"res/color-v31/m3_dynamic_default_color_secondary_text.xml","name":"res/color-v31/m3_dynamic_default_color_secondary_text.xml","size":500,"crc":-806932947},{"key":"res/color-v31/m3_dynamic_highlighted_text.xml","name":"res/color-v31/m3_dynamic_highlighted_text.xml","size":376,"crc":-1787551829},{"key":"res/color-v31/m3_dynamic_hint_foreground.xml","name":"res/color-v31/m3_dynamic_hint_foreground.xml","size":564,"crc":2108289355},{"key":"res/color-v31/m3_dynamic_primary_text_disable_only.xml","name":"res/color-v31/m3_dynamic_primary_text_disable_only.xml","size":500,"crc":1209986853},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral12.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral12.xml","size":376,"crc":-263691429},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral17.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral17.xml","size":376,"crc":207538851},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral22.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral22.xml","size":376,"crc":1896790006},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral24.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral24.xml","size":376,"crc":-1951511204},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral4.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral4.xml","size":376,"crc":-1406565007},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral6.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral6.xml","size":376,"crc":2086801746},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral87.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral87.xml","size":376,"crc":1960127704},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral92.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral92.xml","size":376,"crc":-443529607},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral94.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral94.xml","size":376,"crc":-833761385},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral96.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral96.xml","size":376,"crc":1217113871},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral98.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral98.xml","size":376,"crc":1666590433},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant12.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant12.xml","size":376,"crc":-38774044},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant17.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant17.xml","size":376,"crc":27718428},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant22.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant22.xml","size":376,"crc":2096533065},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant24.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant24.xml","size":376,"crc":-2041154333},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant4.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant4.xml","size":376,"crc":-1580090162},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant6.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant6.xml","size":376,"crc":1905928429},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant87.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant87.xml","size":376,"crc":2032997735},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant92.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant92.xml","size":376,"crc":-395804730},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant94.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant94.xml","size":376,"crc":-1011485144},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant96.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant96.xml","size":376,"crc":1165203120},{"key":"res/color-v31/m3_ref_palette_dynamic_neutral_variant98.xml","name":"res/color-v31/m3_ref_palette_dynamic_neutral_variant98.xml","size":376,"crc":1856905054},{"key":"res/drawable/$avd_hide_password__0.xml","name":"res/drawable/$avd_hide_password__0.xml","size":1176,"crc":937731799},{"key":"res/drawable/$avd_hide_password__1.xml","name":"res/drawable/$avd_hide_password__1.xml","size":592,"crc":1822471667},{"key":"res/drawable/$avd_hide_password__2.xml","name":"res/drawable/$avd_hide_password__2.xml","size":556,"crc":324904570},{"key":"res/drawable/$avd_show_password__0.xml","name":"res/drawable/$avd_show_password__0.xml","size":1136,"crc":-716479731},{"key":"res/drawable/$avd_show_password__1.xml","name":"res/drawable/$avd_show_password__1.xml","size":592,"crc":550813524},{"key":"res/drawable/$avd_show_password__2.xml","name":"res/drawable/$avd_show_password__2.xml","size":556,"crc":-1951102379},{"key":"res/drawable/$m3_avd_hide_password__0.xml","name":"res/drawable/$m3_avd_hide_password__0.xml","size":1176,"crc":937731799},{"key":"res/drawable/$m3_avd_hide_password__1.xml","name":"res/drawable/$m3_avd_hide_password__1.xml","size":592,"crc":-50974824},{"key":"res/drawable/$m3_avd_hide_password__2.xml","name":"res/drawable/$m3_avd_hide_password__2.xml","size":556,"crc":1236622639},{"key":"res/drawable/$m3_avd_show_password__0.xml","name":"res/drawable/$m3_avd_show_password__0.xml","size":1136,"crc":-716479731},{"key":"res/drawable/$m3_avd_show_password__1.xml","name":"res/drawable/$m3_avd_show_password__1.xml","size":592,"crc":1647598230},{"key":"res/drawable/$m3_avd_show_password__2.xml","name":"res/drawable/$m3_avd_show_password__2.xml","size":556,"crc":-772615930},{"key":"res/drawable/$mtrl_checkbox_button_checked_unchecked__0.xml","name":"res/drawable/$mtrl_checkbox_button_checked_unchecked__0.xml","size":592,"crc":-346686892},{"key":"res/drawable/$mtrl_checkbox_button_checked_unchecked__1.xml","name":"res/drawable/$mtrl_checkbox_button_checked_unchecked__1.xml","size":592,"crc":1451570791},{"key":"res/drawable/$mtrl_checkbox_button_checked_unchecked__2.xml","name":"res/drawable/$mtrl_checkbox_button_checked_unchecked__2.xml","size":592,"crc":-569341694},{"key":"res/drawable/$mtrl_checkbox_button_icon_checked_indeterminate__0.xml","name":"res/drawable/$mtrl_checkbox_button_icon_checked_indeterminate__0.xml","size":592,"crc":-1574722300},{"key":"res/drawable/$mtrl_checkbox_button_icon_checked_unchecked__0.xml","name":"res/drawable/$mtrl_checkbox_button_icon_checked_unchecked__0.xml","size":592,"crc":-346686892},{"key":"res/drawable/$mtrl_checkbox_button_icon_checked_unchecked__1.xml","name":"res/drawable/$mtrl_checkbox_button_icon_checked_unchecked__1.xml","size":592,"crc":1451570791},{"key":"res/drawable/$mtrl_checkbox_button_icon_checked_unchecked__2.xml","name":"res/drawable/$mtrl_checkbox_button_icon_checked_unchecked__2.xml","size":592,"crc":-569341694},{"key":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_checked__0.xml","name":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_checked__0.xml","size":592,"crc":1379505435},{"key":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__0.xml","name":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__0.xml","size":592,"crc":-346686892},{"key":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__1.xml","name":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__1.xml","size":592,"crc":1451570791},{"key":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__2.xml","name":"res/drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__2.xml","size":592,"crc":-569341694},{"key":"res/drawable/$mtrl_checkbox_button_icon_unchecked_checked__0.xml","name":"res/drawable/$mtrl_checkbox_button_icon_unchecked_checked__0.xml","size":592,"crc":-1036261069},{"key":"res/drawable/$mtrl_checkbox_button_icon_unchecked_checked__1.xml","name":"res/drawable/$mtrl_checkbox_button_icon_unchecked_checked__1.xml","size":592,"crc":2146116864},{"key":"res/drawable/$mtrl_checkbox_button_icon_unchecked_checked__2.xml","name":"res/drawable/$mtrl_checkbox_button_icon_unchecked_checked__2.xml","size":596,"crc":-2035886171},{"key":"res/drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__0.xml","name":"res/drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__0.xml","size":592,"crc":-1036261069},{"key":"res/drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__1.xml","name":"res/drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__1.xml","size":592,"crc":2146116864},{"key":"res/drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__2.xml","name":"res/drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__2.xml","size":592,"crc":-838612980},{"key":"res/drawable/$mtrl_checkbox_button_unchecked_checked__0.xml","name":"res/drawable/$mtrl_checkbox_button_unchecked_checked__0.xml","size":592,"crc":-1036261069},{"key":"res/drawable/$mtrl_checkbox_button_unchecked_checked__1.xml","name":"res/drawable/$mtrl_checkbox_button_unchecked_checked__1.xml","size":592,"crc":2146116864},{"key":"res/drawable/$mtrl_checkbox_button_unchecked_checked__2.xml","name":"res/drawable/$mtrl_checkbox_button_unchecked_checked__2.xml","size":592,"crc":-838612980},{"key":"res/drawable/$mtrl_switch_thumb_checked_pressed__0.xml","name":"res/drawable/$mtrl_switch_thumb_checked_pressed__0.xml","size":592,"crc":-812494894},{"key":"res/drawable/$mtrl_switch_thumb_checked_unchecked__0.xml","name":"res/drawable/$mtrl_switch_thumb_checked_unchecked__0.xml","size":548,"crc":415087773},{"key":"res/drawable/$mtrl_switch_thumb_checked_unchecked__1.xml","name":"res/drawable/$mtrl_switch_thumb_checked_unchecked__1.xml","size":592,"crc":228451254},{"key":"res/drawable/$mtrl_switch_thumb_pressed_checked__0.xml","name":"res/drawable/$mtrl_switch_thumb_pressed_checked__0.xml","size":592,"crc":2006754860},{"key":"res/drawable/$mtrl_switch_thumb_pressed_unchecked__0.xml","name":"res/drawable/$mtrl_switch_thumb_pressed_unchecked__0.xml","size":592,"crc":2142007954},{"key":"res/drawable/$mtrl_switch_thumb_unchecked_checked__0.xml","name":"res/drawable/$mtrl_switch_thumb_unchecked_checked__0.xml","size":548,"crc":-1033941063},{"key":"res/drawable/$mtrl_switch_thumb_unchecked_checked__1.xml","name":"res/drawable/$mtrl_switch_thumb_unchecked_checked__1.xml","size":592,"crc":-1036584387},{"key":"res/drawable/$mtrl_switch_thumb_unchecked_pressed__0.xml","name":"res/drawable/$mtrl_switch_thumb_unchecked_pressed__0.xml","size":592,"crc":848752186},{"key":"res/drawable-v21/abc_action_bar_item_background_material.xml","name":"res/drawable-v21/abc_action_bar_item_background_material.xml","size":264,"crc":893712625},{"key":"res/drawable/abc_btn_borderless_material.xml","name":"res/drawable/abc_btn_borderless_material.xml","size":588,"crc":352031250},{"key":"res/drawable/abc_btn_check_material.xml","name":"res/drawable/abc_btn_check_material.xml","size":464,"crc":-815546010},{"key":"res/drawable/abc_btn_check_material_anim.xml","name":"res/drawable/abc_btn_check_material_anim.xml","size":816,"crc":-511657233},{"key":"res/drawable-v21/abc_btn_colored_material.xml","name":"res/drawable-v21/abc_btn_colored_material.xml","size":1716,"crc":-989192254},{"key":"res/drawable/abc_btn_default_mtrl_shape.xml","name":"res/drawable/abc_btn_default_mtrl_shape.xml","size":932,"crc":-1471577726},{"key":"res/drawable/abc_btn_radio_material.xml","name":"res/drawable/abc_btn_radio_material.xml","size":464,"crc":-1563179758},{"key":"res/drawable/abc_btn_radio_material_anim.xml","name":"res/drawable/abc_btn_radio_material_anim.xml","size":816,"crc":1359524632},{"key":"res/drawable/abc_cab_background_internal_bg.xml","name":"res/drawable/abc_cab_background_internal_bg.xml","size":372,"crc":-693425677},{"key":"res/drawable/abc_cab_background_top_material.xml","name":"res/drawable/abc_cab_background_top_material.xml","size":336,"crc":-1512034296},{"key":"res/drawable-v23/abc_control_background_material.xml","name":"res/drawable-v23/abc_control_background_material.xml","size":304,"crc":447853151},{"key":"res/drawable-v21/abc_dialog_material_background.xml","name":"res/drawable-v21/abc_dialog_material_background.xml","size":716,"crc":369435469},{"key":"res/drawable-v21/abc_edit_text_material.xml","name":"res/drawable-v21/abc_edit_text_material.xml","size":1172,"crc":-1754535450},{"key":"res/drawable/abc_ic_ab_back_material.xml","name":"res/drawable/abc_ic_ab_back_material.xml","size":692,"crc":-238478857},{"key":"res/drawable/abc_ic_arrow_drop_right_black_24dp.xml","name":"res/drawable/abc_ic_arrow_drop_right_black_24dp.xml","size":1000,"crc":-766638774},{"key":"res/drawable/abc_ic_clear_material.xml","name":"res/drawable/abc_ic_clear_material.xml","size":684,"crc":2134066410},{"key":"res/drawable/abc_ic_go_search_api_material.xml","name":"res/drawable/abc_ic_go_search_api_material.xml","size":640,"crc":445212600},{"key":"res/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml","name":"res/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml","size":756,"crc":141324321},{"key":"res/drawable/abc_ic_menu_cut_mtrl_alpha.xml","name":"res/drawable/abc_ic_menu_cut_mtrl_alpha.xml","size":1096,"crc":459529817},{"key":"res/drawable/abc_ic_menu_overflow_material.xml","name":"res/drawable/abc_ic_menu_overflow_material.xml","size":792,"crc":670428759},{"key":"res/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml","name":"res/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml","size":796,"crc":1534258133},{"key":"res/drawable/abc_ic_menu_selectall_mtrl_alpha.xml","name":"res/drawable/abc_ic_menu_selectall_mtrl_alpha.xml","size":920,"crc":1929046294},{"key":"res/drawable/abc_ic_menu_share_mtrl_alpha.xml","name":"res/drawable/abc_ic_menu_share_mtrl_alpha.xml","size":980,"crc":547834227},{"key":"res/drawable/abc_ic_search_api_material.xml","name":"res/drawable/abc_ic_search_api_material.xml","size":812,"crc":1282784005},{"key":"res/drawable/abc_ic_voice_search_api_material.xml","name":"res/drawable/abc_ic_voice_search_api_material.xml","size":828,"crc":-114005597},{"key":"res/drawable/abc_item_background_holo_dark.xml","name":"res/drawable/abc_item_background_holo_dark.xml","size":1012,"crc":-1100220083},{"key":"res/drawable/abc_item_background_holo_light.xml","name":"res/drawable/abc_item_background_holo_light.xml","size":1012,"crc":121753374},{"key":"res/drawable-v21/abc_list_divider_material.xml","name":"res/drawable-v21/abc_list_divider_material.xml","size":516,"crc":-2096256569},{"key":"res/drawable/abc_list_selector_background_transition_holo_dark.xml","name":"res/drawable/abc_list_selector_background_transition_holo_dark.xml","size":424,"crc":886525859},{"key":"res/drawable/abc_list_selector_background_transition_holo_light.xml","name":"res/drawable/abc_list_selector_background_transition_holo_light.xml","size":424,"crc":696943079},{"key":"res/drawable/abc_list_selector_holo_dark.xml","name":"res/drawable/abc_list_selector_holo_dark.xml","size":1064,"crc":-1514718402},{"key":"res/drawable/abc_list_selector_holo_light.xml","name":"res/drawable/abc_list_selector_holo_light.xml","size":1064,"crc":-1869964317},{"key":"res/drawable/abc_ratingbar_indicator_material.xml","name":"res/drawable/abc_ratingbar_indicator_material.xml","size":124,"crc":1548506544},{"key":"res/drawable/abc_ratingbar_material.xml","name":"res/drawable/abc_ratingbar_material.xml","size":124,"crc":1548506544},{"key":"res/drawable/abc_ratingbar_small_material.xml","name":"res/drawable/abc_ratingbar_small_material.xml","size":124,"crc":1548506544},{"key":"res/drawable/abc_seekbar_thumb_material.xml","name":"res/drawable/abc_seekbar_thumb_material.xml","size":1100,"crc":910207004},{"key":"res/drawable/abc_seekbar_tick_mark_material.xml","name":"res/drawable/abc_seekbar_tick_mark_material.xml","size":516,"crc":268187399},{"key":"res/drawable/abc_seekbar_track_material.xml","name":"res/drawable/abc_seekbar_track_material.xml","size":1408,"crc":-1074493088},{"key":"res/drawable/abc_spinner_textfield_background_material.xml","name":"res/drawable/abc_spinner_textfield_background_material.xml","size":1160,"crc":2001648743},{"key":"res/drawable/abc_star_black_48dp.xml","name":"res/drawable/abc_star_black_48dp.xml","size":640,"crc":1103021236},{"key":"res/drawable/abc_star_half_black_48dp.xml","name":"res/drawable/abc_star_half_black_48dp.xml","size":600,"crc":-1411498920},{"key":"res/drawable/abc_switch_thumb_material.xml","name":"res/drawable/abc_switch_thumb_material.xml","size":464,"crc":184939420},{"key":"res/drawable/abc_tab_indicator_material.xml","name":"res/drawable/abc_tab_indicator_material.xml","size":468,"crc":-1462818277},{"key":"res/drawable/abc_text_cursor_material.xml","name":"res/drawable/abc_text_cursor_material.xml","size":516,"crc":46912569},{"key":"res/drawable/abc_textfield_search_material.xml","name":"res/drawable/abc_textfield_search_material.xml","size":756,"crc":-446896712},{"key":"res/drawable/abc_vector_test.xml","name":"res/drawable/abc_vector_test.xml","size":612,"crc":-1414823522},{"key":"res/drawable/avd_hide_password.xml","name":"res/drawable/avd_hide_password.xml","size":660,"crc":123778880},{"key":"res/drawable/avd_show_password.xml","name":"res/drawable/avd_show_password.xml","size":660,"crc":-1257998099},{"key":"res/drawable/btn_checkbox_checked_mtrl.xml","name":"res/drawable/btn_checkbox_checked_mtrl.xml","size":2688,"crc":-929037891},{"key":"res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml","name":"res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml","size":688,"crc":-1156971707},{"key":"res/drawable/btn_checkbox_unchecked_mtrl.xml","name":"res/drawable/btn_checkbox_unchecked_mtrl.xml","size":2660,"crc":1605872269},{"key":"res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml","name":"res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml","size":688,"crc":528370447},{"key":"res/drawable/btn_radio_off_mtrl.xml","name":"res/drawable/btn_radio_off_mtrl.xml","size":1728,"crc":1230695815},{"key":"res/drawable/btn_radio_off_to_on_mtrl_animation.xml","name":"res/drawable/btn_radio_off_to_on_mtrl_animation.xml","size":680,"crc":38695409},{"key":"res/drawable/btn_radio_on_mtrl.xml","name":"res/drawable/btn_radio_on_mtrl.xml","size":1656,"crc":-1785735633},{"key":"res/drawable/btn_radio_on_to_off_mtrl_animation.xml","name":"res/drawable/btn_radio_on_to_off_mtrl_animation.xml","size":680,"crc":425424247},{"key":"res/drawable/common_google_signin_btn_icon_dark.xml","name":"res/drawable/common_google_signin_btn_icon_dark.xml","size":588,"crc":-1502341640},{"key":"res/drawable/common_google_signin_btn_icon_dark_focused.xml","name":"res/drawable/common_google_signin_btn_icon_dark_focused.xml","size":892,"crc":-1532326539},{"key":"res/drawable/common_google_signin_btn_icon_dark_normal.xml","name":"res/drawable/common_google_signin_btn_icon_dark_normal.xml","size":548,"crc":320270798},{"key":"res/drawable/common_google_signin_btn_icon_disabled.xml","name":"res/drawable/common_google_signin_btn_icon_disabled.xml","size":1132,"crc":-1610292261},{"key":"res/drawable/common_google_signin_btn_icon_light.xml","name":"res/drawable/common_google_signin_btn_icon_light.xml","size":588,"crc":412407399},{"key":"res/drawable/common_google_signin_btn_icon_light_focused.xml","name":"res/drawable/common_google_signin_btn_icon_light_focused.xml","size":892,"crc":-458929862},{"key":"res/drawable/common_google_signin_btn_icon_light_normal.xml","name":"res/drawable/common_google_signin_btn_icon_light_normal.xml","size":548,"crc":-1329868497},{"key":"res/drawable/common_google_signin_btn_text_dark.xml","name":"res/drawable/common_google_signin_btn_text_dark.xml","size":588,"crc":-598653816},{"key":"res/drawable/common_google_signin_btn_text_dark_focused.xml","name":"res/drawable/common_google_signin_btn_text_dark_focused.xml","size":892,"crc":-2082758595},{"key":"res/drawable/common_google_signin_btn_text_dark_normal.xml","name":"res/drawable/common_google_signin_btn_text_dark_normal.xml","size":584,"crc":-1033435461},{"key":"res/drawable/common_google_signin_btn_text_disabled.xml","name":"res/drawable/common_google_signin_btn_text_disabled.xml","size":1152,"crc":537616031},{"key":"res/drawable/common_google_signin_btn_text_light.xml","name":"res/drawable/common_google_signin_btn_text_light.xml","size":588,"crc":-2130436340},{"key":"res/drawable/common_google_signin_btn_text_light_focused.xml","name":"res/drawable/common_google_signin_btn_text_light_focused.xml","size":892,"crc":-1925824798},{"key":"res/drawable/common_google_signin_btn_text_light_normal.xml","name":"res/drawable/common_google_signin_btn_text_light_normal.xml","size":584,"crc":276367800},{"key":"res/drawable/design_fab_background.xml","name":"res/drawable/design_fab_background.xml","size":372,"crc":522588254},{"key":"res/drawable/design_ic_visibility.xml","name":"res/drawable/design_ic_visibility.xml","size":540,"crc":-2055787406},{"key":"res/drawable/design_ic_visibility_off.xml","name":"res/drawable/design_ic_visibility_off.xml","size":1144,"crc":-1859213009},{"key":"res/drawable/design_password_eye.xml","name":"res/drawable/design_password_eye.xml","size":816,"crc":-104256669},{"key":"res/drawable/design_snackbar_background.xml","name":"res/drawable/design_snackbar_background.xml","size":484,"crc":458340000},{"key":"res/drawable/ic_arrow_back_black_24.xml","name":"res/drawable/ic_arrow_back_black_24.xml","size":612,"crc":1298099340},{"key":"res/drawable/ic_call_answer.xml","name":"res/drawable/ic_call_answer.xml","size":1356,"crc":-417851860},{"key":"res/drawable/ic_call_answer_low.xml","name":"res/drawable/ic_call_answer_low.xml","size":1320,"crc":-2078588160},{"key":"res/drawable/ic_call_answer_video.xml","name":"res/drawable/ic_call_answer_video.xml","size":772,"crc":1837259622},{"key":"res/drawable/ic_call_answer_video_low.xml","name":"res/drawable/ic_call_answer_video_low.xml","size":736,"crc":1149510206},{"key":"res/drawable/ic_call_decline.xml","name":"res/drawable/ic_call_decline.xml","size":1528,"crc":-1902206380},{"key":"res/drawable/ic_call_decline_low.xml","name":"res/drawable/ic_call_decline_low.xml","size":1492,"crc":-593934670},{"key":"res/drawable/ic_clear_black_24.xml","name":"res/drawable/ic_clear_black_24.xml","size":684,"crc":-1106505277},{"key":"res/drawable/ic_clock_black_24dp.xml","name":"res/drawable/ic_clock_black_24dp.xml","size":752,"crc":-1073021850},{"key":"res/drawable/ic_keyboard_black_24dp.xml","name":"res/drawable/ic_keyboard_black_24dp.xml","size":852,"crc":173715929},{"key":"res/drawable/ic_launcher.xml","name":"res/drawable/ic_launcher.xml","size":720,"crc":-1176689471},{"key":"res/drawable/ic_launcher_final.xml","name":"res/drawable/ic_launcher_final.xml","size":344,"crc":1360559811},{"key":"res/drawable/ic_launcher_round.xml","name":"res/drawable/ic_launcher_round.xml","size":748,"crc":-1674671304},{"key":"res/drawable/ic_logo.png","name":"res/drawable/ic_logo.png","size":83841,"crc":1923104465},{"key":"res/drawable/ic_logo_scaled.xml","name":"res/drawable/ic_logo_scaled.xml","size":592,"crc":-1840253526},{"key":"res/drawable/ic_m3_chip_check.xml","name":"res/drawable/ic_m3_chip_check.xml","size":704,"crc":1455308475},{"key":"res/drawable/ic_m3_chip_checked_circle.xml","name":"res/drawable/ic_m3_chip_checked_circle.xml","size":900,"crc":888185085},{"key":"res/drawable/ic_m3_chip_close.xml","name":"res/drawable/ic_m3_chip_close.xml","size":648,"crc":1348968016},{"key":"res/drawable/ic_mtrl_checked_circle.xml","name":"res/drawable/ic_mtrl_checked_circle.xml","size":672,"crc":-943865253},{"key":"res/drawable/ic_mtrl_chip_checked_black.xml","name":"res/drawable/ic_mtrl_chip_checked_black.xml","size":600,"crc":1633852816},{"key":"res/drawable/ic_mtrl_chip_checked_circle.xml","name":"res/drawable/ic_mtrl_chip_checked_circle.xml","size":940,"crc":1250486260},{"key":"res/drawable/ic_mtrl_chip_close_circle.xml","name":"res/drawable/ic_mtrl_chip_close_circle.xml","size":808,"crc":-160089038},{"key":"res/drawable/ic_other_sign_in.xml","name":"res/drawable/ic_other_sign_in.xml","size":1228,"crc":376371943},{"key":"res/drawable/ic_passkey.xml","name":"res/drawable/ic_passkey.xml","size":1200,"crc":821501914},{"key":"res/drawable/ic_password.xml","name":"res/drawable/ic_password.xml","size":2092,"crc":1109675091},{"key":"res/drawable/ic_placeholder.xml","name":"res/drawable/ic_placeholder.xml","size":708,"crc":-990390380},{"key":"res/drawable/ic_search_black_24.xml","name":"res/drawable/ic_search_black_24.xml","size":800,"crc":-1571083540},{"key":"res/drawable/m3_avd_hide_password.xml","name":"res/drawable/m3_avd_hide_password.xml","size":660,"crc":408149717},{"key":"res/drawable/m3_avd_show_password.xml","name":"res/drawable/m3_avd_show_password.xml","size":660,"crc":1375469874},{"key":"res/drawable/m3_bottom_sheet_drag_handle.xml","name":"res/drawable/m3_bottom_sheet_drag_handle.xml","size":628,"crc":-76628415},{"key":"res/drawable/m3_password_eye.xml","name":"res/drawable/m3_password_eye.xml","size":816,"crc":489455960},{"key":"res/drawable/m3_popupmenu_background_overlay.xml","name":"res/drawable/m3_popupmenu_background_overlay.xml","size":740,"crc":-1501976386},{"key":"res/drawable-v23/m3_radiobutton_ripple.xml","name":"res/drawable-v23/m3_radiobutton_ripple.xml","size":304,"crc":1123314444},{"key":"res/drawable-v23/m3_selection_control_ripple.xml","name":"res/drawable-v23/m3_selection_control_ripple.xml","size":304,"crc":1333793827},{"key":"res/drawable-v23/m3_tabs_background.xml","name":"res/drawable-v23/m3_tabs_background.xml","size":868,"crc":814971799},{"key":"res/drawable/m3_tabs_line_indicator.xml","name":"res/drawable/m3_tabs_line_indicator.xml","size":480,"crc":1189781760},{"key":"res/drawable/m3_tabs_rounded_line_indicator.xml","name":"res/drawable/m3_tabs_rounded_line_indicator.xml","size":956,"crc":175350675},{"key":"res/drawable-v23/m3_tabs_transparent_background.xml","name":"res/drawable-v23/m3_tabs_transparent_background.xml","size":632,"crc":-168091800},{"key":"res/drawable-v21/material_cursor_drawable.xml","name":"res/drawable-v21/material_cursor_drawable.xml","size":588,"crc":-1982380937},{"key":"res/drawable/material_ic_calendar_black_24dp.xml","name":"res/drawable/material_ic_calendar_black_24dp.xml","size":696,"crc":1880928615},{"key":"res/drawable/material_ic_clear_black_24dp.xml","name":"res/drawable/material_ic_clear_black_24dp.xml","size":752,"crc":2137394315},{"key":"res/drawable/material_ic_edit_black_24dp.xml","name":"res/drawable/material_ic_edit_black_24dp.xml","size":716,"crc":604732683},{"key":"res/drawable/material_ic_keyboard_arrow_left_black_24dp.xml","name":"res/drawable/material_ic_keyboard_arrow_left_black_24dp.xml","size":712,"crc":-484329892},{"key":"res/drawable/material_ic_keyboard_arrow_right_black_24dp.xml","name":"res/drawable/material_ic_keyboard_arrow_right_black_24dp.xml","size":700,"crc":-1345623571},{"key":"res/drawable/material_ic_menu_arrow_down_black_24dp.xml","name":"res/drawable/material_ic_menu_arrow_down_black_24dp.xml","size":648,"crc":1326784656},{"key":"res/drawable/material_ic_menu_arrow_up_black_24dp.xml","name":"res/drawable/material_ic_menu_arrow_up_black_24dp.xml","size":648,"crc":-796709783},{"key":"res/drawable/mtrl_bottomsheet_drag_handle.xml","name":"res/drawable/mtrl_bottomsheet_drag_handle.xml","size":628,"crc":-1199591059},{"key":"res/drawable/mtrl_checkbox_button.xml","name":"res/drawable/mtrl_checkbox_button.xml","size":1332,"crc":1848697919},{"key":"res/drawable/mtrl_checkbox_button_checked_unchecked.xml","name":"res/drawable/mtrl_checkbox_button_checked_unchecked.xml","size":724,"crc":1032451361},{"key":"res/drawable/mtrl_checkbox_button_icon.xml","name":"res/drawable/mtrl_checkbox_button_icon.xml","size":1572,"crc":-483681955},{"key":"res/drawable/mtrl_checkbox_button_icon_checked_indeterminate.xml","name":"res/drawable/mtrl_checkbox_button_icon_checked_indeterminate.xml","size":524,"crc":934065818},{"key":"res/drawable/mtrl_checkbox_button_icon_checked_unchecked.xml","name":"res/drawable/mtrl_checkbox_button_icon_checked_unchecked.xml","size":724,"crc":-989604441},{"key":"res/drawable/mtrl_checkbox_button_icon_indeterminate_checked.xml","name":"res/drawable/mtrl_checkbox_button_icon_indeterminate_checked.xml","size":524,"crc":596808055},{"key":"res/drawable/mtrl_checkbox_button_icon_indeterminate_unchecked.xml","name":"res/drawable/mtrl_checkbox_button_icon_indeterminate_unchecked.xml","size":724,"crc":-1993308237},{"key":"res/drawable/mtrl_checkbox_button_icon_unchecked_checked.xml","name":"res/drawable/mtrl_checkbox_button_icon_unchecked_checked.xml","size":724,"crc":-1524787803},{"key":"res/drawable/mtrl_checkbox_button_icon_unchecked_indeterminate.xml","name":"res/drawable/mtrl_checkbox_button_icon_unchecked_indeterminate.xml","size":724,"crc":-748862477},{"key":"res/drawable/mtrl_checkbox_button_unchecked_checked.xml","name":"res/drawable/mtrl_checkbox_button_unchecked_checked.xml","size":724,"crc":113211947},{"key":"res/drawable/mtrl_dialog_background.xml","name":"res/drawable/mtrl_dialog_background.xml","size":716,"crc":-641696484},{"key":"res/drawable/mtrl_dropdown_arrow.xml","name":"res/drawable/mtrl_dropdown_arrow.xml","size":464,"crc":-586255807},{"key":"res/drawable/mtrl_ic_arrow_drop_down.xml","name":"res/drawable/mtrl_ic_arrow_drop_down.xml","size":564,"crc":1573648397},{"key":"res/drawable/mtrl_ic_arrow_drop_up.xml","name":"res/drawable/mtrl_ic_arrow_drop_up.xml","size":564,"crc":-1957332043},{"key":"res/drawable/mtrl_ic_cancel.xml","name":"res/drawable/mtrl_ic_cancel.xml","size":724,"crc":-1697437044},{"key":"res/drawable/mtrl_ic_check_mark.xml","name":"res/drawable/mtrl_ic_check_mark.xml","size":744,"crc":-100961907},{"key":"res/drawable/mtrl_ic_checkbox_checked.xml","name":"res/drawable/mtrl_ic_checkbox_checked.xml","size":904,"crc":712994732},{"key":"res/drawable/mtrl_ic_checkbox_unchecked.xml","name":"res/drawable/mtrl_ic_checkbox_unchecked.xml","size":612,"crc":1837738795},{"key":"res/drawable/mtrl_ic_error.xml","name":"res/drawable/mtrl_ic_error.xml","size":644,"crc":1937222060},{"key":"res/drawable/mtrl_ic_indeterminate.xml","name":"res/drawable/mtrl_ic_indeterminate.xml","size":744,"crc":837724220},{"key":"res/drawable-v21/mtrl_navigation_bar_item_background.xml","name":"res/drawable-v21/mtrl_navigation_bar_item_background.xml","size":264,"crc":649188693},{"key":"res/drawable/mtrl_popupmenu_background.xml","name":"res/drawable/mtrl_popupmenu_background.xml","size":740,"crc":-1934821685},{"key":"res/drawable-v23/mtrl_popupmenu_background_overlay.xml","name":"res/drawable-v23/mtrl_popupmenu_background_overlay.xml","size":1228,"crc":1876393037},{"key":"res/drawable/mtrl_switch_thumb.xml","name":"res/drawable/mtrl_switch_thumb.xml","size":2004,"crc":-1961375810},{"key":"res/drawable/mtrl_switch_thumb_checked.xml","name":"res/drawable/mtrl_switch_thumb_checked.xml","size":744,"crc":-655214909},{"key":"res/drawable/mtrl_switch_thumb_checked_pressed.xml","name":"res/drawable/mtrl_switch_thumb_checked_pressed.xml","size":524,"crc":453376533},{"key":"res/drawable/mtrl_switch_thumb_checked_unchecked.xml","name":"res/drawable/mtrl_switch_thumb_checked_unchecked.xml","size":784,"crc":311070846},{"key":"res/drawable/mtrl_switch_thumb_pressed.xml","name":"res/drawable/mtrl_switch_thumb_pressed.xml","size":744,"crc":1264345425},{"key":"res/drawable/mtrl_switch_thumb_pressed_checked.xml","name":"res/drawable/mtrl_switch_thumb_pressed_checked.xml","size":524,"crc":1708666443},{"key":"res/drawable/mtrl_switch_thumb_pressed_unchecked.xml","name":"res/drawable/mtrl_switch_thumb_pressed_unchecked.xml","size":524,"crc":-160007719},{"key":"res/drawable/mtrl_switch_thumb_unchecked.xml","name":"res/drawable/mtrl_switch_thumb_unchecked.xml","size":744,"crc":-704894218},{"key":"res/drawable/mtrl_switch_thumb_unchecked_checked.xml","name":"res/drawable/mtrl_switch_thumb_unchecked_checked.xml","size":784,"crc":-1186263386},{"key":"res/drawable/mtrl_switch_thumb_unchecked_pressed.xml","name":"res/drawable/mtrl_switch_thumb_unchecked_pressed.xml","size":524,"crc":-2116926186},{"key":"res/drawable/mtrl_switch_track.xml","name":"res/drawable/mtrl_switch_track.xml","size":588,"crc":73183823},{"key":"res/drawable/mtrl_switch_track_decoration.xml","name":"res/drawable/mtrl_switch_track_decoration.xml","size":636,"crc":-1670108286},{"key":"res/drawable/mtrl_tabs_default_indicator.xml","name":"res/drawable/mtrl_tabs_default_indicator.xml","size":628,"crc":-1187923997},{"key":"res/drawable/navigation_empty_icon.xml","name":"res/drawable/navigation_empty_icon.xml","size":516,"crc":-1097598381},{"key":"res/drawable-v21/notification_action_background.xml","name":"res/drawable-v21/notification_action_background.xml","size":1180,"crc":597293643},{"key":"res/drawable/notification_bg.xml","name":"res/drawable/notification_bg.xml","size":532,"crc":-460454573},{"key":"res/drawable/notification_bg_low.xml","name":"res/drawable/notification_bg_low.xml","size":532,"crc":-1401125711},{"key":"res/drawable/notification_icon_background.xml","name":"res/drawable/notification_icon_background.xml","size":372,"crc":1128694486},{"key":"res/drawable/notification_tile_bg.xml","name":"res/drawable/notification_tile_bg.xml","size":304,"crc":-350245511},{"key":"res/drawable/test_level_drawable.xml","name":"res/drawable/test_level_drawable.xml","size":448,"crc":-1173986526},{"key":"res/drawable/tooltip_frame_dark.xml","name":"res/drawable/tooltip_frame_dark.xml","size":484,"crc":-999993203},{"key":"res/drawable/tooltip_frame_light.xml","name":"res/drawable/tooltip_frame_light.xml","size":484,"crc":-650600759},{"key":"res/drawable-watch-v20/abc_dialog_material_background.xml","name":"res/drawable-watch-v20/abc_dialog_material_background.xml","size":372,"crc":-394371206},{"key":"res/drawable-watch-v20/common_google_signin_btn_text_dark_normal.xml","name":"res/drawable-watch-v20/common_google_signin_btn_text_dark_normal.xml","size":908,"crc":335342824},{"key":"res/drawable-watch-v20/common_google_signin_btn_text_disabled.xml","name":"res/drawable-watch-v20/common_google_signin_btn_text_disabled.xml","size":1040,"crc":-676834778},{"key":"res/drawable-watch-v20/common_google_signin_btn_text_light_normal.xml","name":"res/drawable-watch-v20/common_google_signin_btn_text_light_normal.xml","size":872,"crc":510322460},{"key":"res/drawable-v26/ic_launcher_final.xml","name":"res/drawable-v26/ic_launcher_final.xml","size":448,"crc":1399415293},{"key":"res/drawable-ldpi-v23/fingerprint_dialog_error.png","name":"res/drawable-ldpi-v23/fingerprint_dialog_error.png","size":431,"crc":-1899797091},{"key":"res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","size":267,"crc":-1782854401},{"key":"res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png","name":"res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png","size":214,"crc":1784469944},{"key":"res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png","name":"res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png","size":321,"crc":417858442},{"key":"res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png","name":"res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png","size":324,"crc":-25912589},{"key":"res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png","name":"res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png","size":356,"crc":483927252},{"key":"res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","name":"res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","size":754,"crc":-2043172043},{"key":"res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","name":"res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","size":825,"crc":746268540},{"key":"res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","size":216,"crc":1331007226},{"key":"res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","name":"res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","size":173,"crc":188325625},{"key":"res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png","size":167,"crc":895755044},{"key":"res/drawable-mdpi-v4/abc_list_focused_holo.9.png","name":"res/drawable-mdpi-v4/abc_list_focused_holo.9.png","size":222,"crc":-1314153213},{"key":"res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png","name":"res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png","size":211,"crc":2026076309},{"key":"res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png","name":"res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png","size":207,"crc":247870200},{"key":"res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png","name":"res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png","size":207,"crc":1914292392},{"key":"res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png","name":"res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png","size":217,"crc":-1161232362},{"key":"res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png","name":"res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png","size":217,"crc":-321357989},{"key":"res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","name":"res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","size":541,"crc":-973152337},{"key":"res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png","name":"res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png","size":776,"crc":-794041096},{"key":"res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","name":"res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","size":159,"crc":1388505315},{"key":"res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","name":"res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","size":145,"crc":771315572},{"key":"res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","name":"res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","size":197,"crc":-1487297953},{"key":"res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","size":203,"crc":-655213014},{"key":"res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","size":194,"crc":-2110916847},{"key":"res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png","size":327,"crc":-1603084466},{"key":"res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png","size":395,"crc":-1758576653},{"key":"res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","size":186,"crc":-1468200696},{"key":"res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png","name":"res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png","size":203,"crc":558759102},{"key":"res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png","name":"res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png","size":310,"crc":1086079552},{"key":"res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png","name":"res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png","size":186,"crc":1494279640},{"key":"res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","size":181,"crc":2009755725},{"key":"res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png","size":178,"crc":-982571302},{"key":"res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","size":178,"crc":1754865820},{"key":"res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","name":"res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","size":178,"crc":-1349392436},{"key":"res/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","name":"res/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","size":610,"crc":-2006350336},{"key":"res/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","name":"res/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","size":500,"crc":-956992980},{"key":"res/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","name":"res/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","size":615,"crc":1100604633},{"key":"res/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","name":"res/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","size":465,"crc":-581075857},{"key":"res/drawable-mdpi-v23/fingerprint_dialog_error.png","name":"res/drawable-mdpi-v23/fingerprint_dialog_error.png","size":565,"crc":-755315411},{"key":"res/drawable-mdpi-v4/googleg_disabled_color_18.png","name":"res/drawable-mdpi-v4/googleg_disabled_color_18.png","size":281,"crc":-94345570},{"key":"res/drawable-mdpi-v4/googleg_standard_color_18.png","name":"res/drawable-mdpi-v4/googleg_standard_color_18.png","size":562,"crc":1980127520},{"key":"res/drawable-mdpi-v4/notification_bg_low_normal.9.png","name":"res/drawable-mdpi-v4/notification_bg_low_normal.9.png","size":215,"crc":-637905481},{"key":"res/drawable-mdpi-v4/notification_bg_low_pressed.9.png","name":"res/drawable-mdpi-v4/notification_bg_low_pressed.9.png","size":223,"crc":-1206985160},{"key":"res/drawable-mdpi-v4/notification_bg_normal.9.png","name":"res/drawable-mdpi-v4/notification_bg_normal.9.png","size":215,"crc":-1053437548},{"key":"res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png","name":"res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png","size":223,"crc":-316674454},{"key":"res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png","name":"res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png","size":98,"crc":782467851},{"key":"res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png","size":318,"crc":248812699},{"key":"res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","size":272,"crc":-522187894},{"key":"res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png","name":"res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png","size":227,"crc":1441099833},{"key":"res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png","name":"res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png","size":404,"crc":321481106},{"key":"res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png","name":"res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png","size":464,"crc":-765083169},{"key":"res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png","name":"res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png","size":563,"crc":-1693177409},{"key":"res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","name":"res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","size":1096,"crc":1160393035},{"key":"res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","name":"res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","size":1243,"crc":-296122373},{"key":"res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","size":226,"crc":-1994891200},{"key":"res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","name":"res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","size":171,"crc":-834791833},{"key":"res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png","size":167,"crc":895755044},{"key":"res/drawable-hdpi-v4/abc_list_focused_holo.9.png","name":"res/drawable-hdpi-v4/abc_list_focused_holo.9.png","size":244,"crc":-1907514871},{"key":"res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png","name":"res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png","size":212,"crc":-2119094306},{"key":"res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png","name":"res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png","size":208,"crc":-1848424351},{"key":"res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png","name":"res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png","size":208,"crc":-534797190},{"key":"res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png","name":"res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png","size":228,"crc":-494134952},{"key":"res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png","name":"res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png","size":229,"crc":-779417061},{"key":"res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","name":"res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","size":738,"crc":844900423},{"key":"res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png","name":"res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png","size":1098,"crc":1031932723},{"key":"res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","name":"res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","size":201,"crc":-2033297991},{"key":"res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","name":"res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","size":196,"crc":555162946},{"key":"res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","name":"res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","size":272,"crc":1476959993},{"key":"res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","size":205,"crc":-1404642591},{"key":"res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","size":196,"crc":59030235},{"key":"res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png","size":345,"crc":-1913854658},{"key":"res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png","size":484,"crc":-190177617},{"key":"res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","size":190,"crc":1541371996},{"key":"res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png","name":"res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png","size":278,"crc":-1596734141},{"key":"res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png","name":"res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png","size":396,"crc":-1105084233},{"key":"res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png","name":"res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png","size":262,"crc":-551175061},{"key":"res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","size":186,"crc":1954287679},{"key":"res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png","size":192,"crc":695154500},{"key":"res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","size":178,"crc":-1157342510},{"key":"res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","name":"res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","size":178,"crc":-1428961699},{"key":"res/drawable-hdpi-v4/common_full_open_on_phone.png","name":"res/drawable-hdpi-v4/common_full_open_on_phone.png","size":681,"crc":988198958},{"key":"res/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","name":"res/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","size":897,"crc":-2056690568},{"key":"res/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","name":"res/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","size":683,"crc":1492856915},{"key":"res/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","name":"res/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","size":960,"crc":-650514931},{"key":"res/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","name":"res/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","size":694,"crc":-1705655752},{"key":"res/drawable-hdpi-v23/fingerprint_dialog_error.png","name":"res/drawable-hdpi-v23/fingerprint_dialog_error.png","size":900,"crc":2079447285},{"key":"res/drawable-hdpi-v4/googleg_disabled_color_18.png","name":"res/drawable-hdpi-v4/googleg_disabled_color_18.png","size":410,"crc":213222193},{"key":"res/drawable-hdpi-v4/googleg_standard_color_18.png","name":"res/drawable-hdpi-v4/googleg_standard_color_18.png","size":808,"crc":2103637412},{"key":"res/drawable-hdpi-v4/notification_bg_low_normal.9.png","name":"res/drawable-hdpi-v4/notification_bg_low_normal.9.png","size":212,"crc":931926398},{"key":"res/drawable-hdpi-v4/notification_bg_low_pressed.9.png","name":"res/drawable-hdpi-v4/notification_bg_low_pressed.9.png","size":225,"crc":1348069157},{"key":"res/drawable-hdpi-v4/notification_bg_normal.9.png","name":"res/drawable-hdpi-v4/notification_bg_normal.9.png","size":212,"crc":-1037255009},{"key":"res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png","name":"res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png","size":225,"crc":-1579774768},{"key":"res/drawable-hdpi-v4/notification_oversize_large_icon_bg.png","name":"res/drawable-hdpi-v4/notification_oversize_large_icon_bg.png","size":909,"crc":-883619049},{"key":"res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png","name":"res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png","size":107,"crc":1859699185},{"key":"res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png","size":345,"crc":-1121400728},{"key":"res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","size":280,"crc":-1494763048},{"key":"res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png","name":"res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png","size":281,"crc":-355242921},{"key":"res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png","name":"res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png","size":432,"crc":208515363},{"key":"res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png","name":"res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png","size":651,"crc":586767697},{"key":"res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png","name":"res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png","size":785,"crc":-1305019038},{"key":"res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","name":"res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","size":1526,"crc":-483809291},{"key":"res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","name":"res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","size":1731,"crc":813343295},{"key":"res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","size":229,"crc":1667644415},{"key":"res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","name":"res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","size":228,"crc":-1596992556},{"key":"res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png","size":167,"crc":895755044},{"key":"res/drawable-xhdpi-v4/abc_list_focused_holo.9.png","name":"res/drawable-xhdpi-v4/abc_list_focused_holo.9.png","size":244,"crc":-1109247658},{"key":"res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png","name":"res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png","size":214,"crc":-2069395290},{"key":"res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png","name":"res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png","size":209,"crc":1422722026},{"key":"res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png","name":"res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png","size":209,"crc":1178912481},{"key":"res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png","name":"res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png","size":236,"crc":1482420428},{"key":"res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png","name":"res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png","size":235,"crc":809869208},{"key":"res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","name":"res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","size":966,"crc":-1645055853},{"key":"res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png","name":"res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png","size":1544,"crc":1027634507},{"key":"res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","name":"res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","size":267,"crc":-235495373},{"key":"res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","name":"res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","size":267,"crc":1780540927},{"key":"res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","name":"res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","size":391,"crc":1338981723},{"key":"res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","size":208,"crc":-1523469685},{"key":"res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","size":198,"crc":417197097},{"key":"res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png","size":448,"crc":-636645826},{"key":"res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png","size":618,"crc":-315835857},{"key":"res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","size":194,"crc":-1805702768},{"key":"res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png","name":"res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png","size":335,"crc":1833493827},{"key":"res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png","name":"res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png","size":585,"crc":325182543},{"key":"res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png","name":"res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png","size":318,"crc":1402001197},{"key":"res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","size":189,"crc":872981899},{"key":"res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png","size":187,"crc":1388684995},{"key":"res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","size":184,"crc":-735893576},{"key":"res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","name":"res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","size":182,"crc":755703140},{"key":"res/drawable-xhdpi-v4/common_full_open_on_phone.png","name":"res/drawable-xhdpi-v4/common_full_open_on_phone.png","size":489,"crc":-864113687},{"key":"res/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","name":"res/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","size":1032,"crc":-185544991},{"key":"res/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","name":"res/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","size":776,"crc":-1044827319},{"key":"res/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","name":"res/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","size":1086,"crc":-20176476},{"key":"res/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","name":"res/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","size":808,"crc":-618992248},{"key":"res/drawable-xhdpi-v23/fingerprint_dialog_error.png","name":"res/drawable-xhdpi-v23/fingerprint_dialog_error.png","size":1172,"crc":744312287},{"key":"res/drawable-xhdpi-v4/googleg_disabled_color_18.png","name":"res/drawable-xhdpi-v4/googleg_disabled_color_18.png","size":516,"crc":-302930309},{"key":"res/drawable-xhdpi-v4/googleg_standard_color_18.png","name":"res/drawable-xhdpi-v4/googleg_standard_color_18.png","size":982,"crc":-1140172710},{"key":"res/drawable-xhdpi-v4/notification_bg_low_normal.9.png","name":"res/drawable-xhdpi-v4/notification_bg_low_normal.9.png","size":221,"crc":986722933},{"key":"res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png","name":"res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png","size":252,"crc":-930084210},{"key":"res/drawable-xhdpi-v4/notification_bg_normal.9.png","name":"res/drawable-xhdpi-v4/notification_bg_normal.9.png","size":221,"crc":-1723534566},{"key":"res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png","name":"res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png","size":247,"crc":-1030044328},{"key":"res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png","name":"res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png","size":138,"crc":72836353},{"key":"res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png","size":417,"crc":1015364852},{"key":"res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png","size":286,"crc":576729413},{"key":"res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png","name":"res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png","size":307,"crc":869620432},{"key":"res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png","name":"res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png","size":593,"crc":-1070792479},{"key":"res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png","name":"res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png","size":984,"crc":-148612735},{"key":"res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png","name":"res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png","size":1208,"crc":-1287566072},{"key":"res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","name":"res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","size":2463,"crc":-1414729006},{"key":"res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","name":"res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","size":2834,"crc":-629032592},{"key":"res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png","size":237,"crc":-2126552655},{"key":"res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","name":"res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png","size":224,"crc":1570594586},{"key":"res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png","size":171,"crc":431487046},{"key":"res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png","name":"res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png","size":245,"crc":432053287},{"key":"res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png","name":"res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png","size":221,"crc":594243224},{"key":"res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png","name":"res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png","size":212,"crc":1908284469},{"key":"res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png","name":"res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png","size":212,"crc":1004408383},{"key":"res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png","name":"res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png","size":260,"crc":453810333},{"key":"res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png","name":"res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png","size":258,"crc":-806067726},{"key":"res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","name":"res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png","size":1779,"crc":-378460718},{"key":"res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png","name":"res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png","size":2305,"crc":52525934},{"key":"res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","name":"res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png","size":322,"crc":1734458370},{"key":"res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","name":"res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","size":403,"crc":-258375909},{"key":"res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","name":"res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","size":595,"crc":25460445},{"key":"res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png","size":210,"crc":1410922532},{"key":"res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png","size":207,"crc":979167309},{"key":"res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png","size":524,"crc":-1263352686},{"key":"res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png","size":851,"crc":-1547140427},{"key":"res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","size":204,"crc":-471176010},{"key":"res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png","name":"res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png","size":420,"crc":-1423304621},{"key":"res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png","name":"res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png","size":753,"crc":-1827412542},{"key":"res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png","name":"res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png","size":422,"crc":961476924},{"key":"res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png","size":199,"crc":814610337},{"key":"res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png","size":200,"crc":807658458},{"key":"res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png","size":187,"crc":1097119443},{"key":"res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","name":"res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png","size":186,"crc":-181494251},{"key":"res/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","name":"res/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png","size":1510,"crc":817334723},{"key":"res/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","name":"res/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png","size":1138,"crc":-1359168935},{"key":"res/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","name":"res/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png","size":1638,"crc":-1981570183},{"key":"res/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","name":"res/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png","size":1255,"crc":1034823145},{"key":"res/drawable-xxhdpi-v23/fingerprint_dialog_error.png","name":"res/drawable-xxhdpi-v23/fingerprint_dialog_error.png","size":1484,"crc":967466656},{"key":"res/drawable-xxhdpi-v4/googleg_disabled_color_18.png","name":"res/drawable-xxhdpi-v4/googleg_disabled_color_18.png","size":727,"crc":745918827},{"key":"res/drawable-xxhdpi-v4/googleg_standard_color_18.png","name":"res/drawable-xxhdpi-v4/googleg_standard_color_18.png","size":1441,"crc":-508386821},{"key":"res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png","size":525,"crc":-924835231},{"key":"res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png","name":"res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png","size":275,"crc":-1764675204},{"key":"res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png","name":"res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png","size":476,"crc":-992054213},{"key":"res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png","name":"res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png","size":785,"crc":485101068},{"key":"res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png","name":"res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png","size":946,"crc":1611553141},{"key":"res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","name":"res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png","size":2505,"crc":2088096877},{"key":"res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","name":"res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png","size":2816,"crc":25828836},{"key":"res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","name":"res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png","size":415,"crc":-335179877},{"key":"res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","name":"res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png","size":631,"crc":-2086075208},{"key":"res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png","size":430,"crc":-943303786},{"key":"res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png","name":"res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png","size":813,"crc":-551543263},{"key":"res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","name":"res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png","size":202,"crc":-1543227074},{"key":"res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png","name":"res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png","size":513,"crc":-990765681},{"key":"res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png","name":"res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png","size":513,"crc":1860041182},{"key":"res/drawable-xxxhdpi-v23/fingerprint_dialog_error.png","name":"res/drawable-xxxhdpi-v23/fingerprint_dialog_error.png","size":1924,"crc":-7698745},{"key":"res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png","name":"res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png","size":437,"crc":997246448},{"key":"res/drawable-anydpi-v24/fingerprint_dialog_error.xml","name":"res/drawable-anydpi-v24/fingerprint_dialog_error.xml","size":2656,"crc":1424990298},{"key":"res/drawable-anydpi-v23/fingerprint_dialog_fp_icon.xml","name":"res/drawable-anydpi-v23/fingerprint_dialog_fp_icon.xml","size":3612,"crc":-153556254},{"key":"res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml","name":"res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml","size":316,"crc":1170948913},{"key":"res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml","name":"res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml","size":328,"crc":-324218066},{"key":"res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml","name":"res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml","size":316,"crc":1170948913},{"key":"res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml","name":"res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml","size":328,"crc":-324218066},{"key":"res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml","name":"res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml","size":320,"crc":-1334210794},{"key":"res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml","name":"res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml","size":320,"crc":-1334210794},{"key":"res/interpolator/fast_out_slow_in.xml","name":"res/interpolator/fast_out_slow_in.xml","size":400,"crc":2971224},{"key":"res/interpolator-v21/m3_sys_motion_easing_emphasized.xml","name":"res/interpolator-v21/m3_sys_motion_easing_emphasized.xml","size":280,"crc":1658253168},{"key":"res/interpolator-v21/m3_sys_motion_easing_emphasized_accelerate.xml","name":"res/interpolator-v21/m3_sys_motion_easing_emphasized_accelerate.xml","size":400,"crc":-691141408},{"key":"res/interpolator-v21/m3_sys_motion_easing_emphasized_decelerate.xml","name":"res/interpolator-v21/m3_sys_motion_easing_emphasized_decelerate.xml","size":400,"crc":-253525957},{"key":"res/interpolator-v21/m3_sys_motion_easing_linear.xml","name":"res/interpolator-v21/m3_sys_motion_easing_linear.xml","size":400,"crc":1859329543},{"key":"res/interpolator-v21/m3_sys_motion_easing_standard.xml","name":"res/interpolator-v21/m3_sys_motion_easing_standard.xml","size":400,"crc":579344305},{"key":"res/interpolator-v21/m3_sys_motion_easing_standard_accelerate.xml","name":"res/interpolator-v21/m3_sys_motion_easing_standard_accelerate.xml","size":400,"crc":337078112},{"key":"res/interpolator-v21/m3_sys_motion_easing_standard_decelerate.xml","name":"res/interpolator-v21/m3_sys_motion_easing_standard_decelerate.xml","size":400,"crc":-248684124},{"key":"res/interpolator-v21/mtrl_fast_out_linear_in.xml","name":"res/interpolator-v21/mtrl_fast_out_linear_in.xml","size":400,"crc":-184402232},{"key":"res/interpolator-v21/mtrl_fast_out_slow_in.xml","name":"res/interpolator-v21/mtrl_fast_out_slow_in.xml","size":400,"crc":-1024605739},{"key":"res/interpolator/mtrl_linear.xml","name":"res/interpolator/mtrl_linear.xml","size":132,"crc":558115064},{"key":"res/interpolator-v21/mtrl_linear_out_slow_in.xml","name":"res/interpolator-v21/mtrl_linear_out_slow_in.xml","size":400,"crc":34232731},{"key":"res/layout/abc_action_bar_title_item.xml","name":"res/layout/abc_action_bar_title_item.xml","size":872,"crc":-937257567},{"key":"res/layout/abc_action_bar_up_container.xml","name":"res/layout/abc_action_bar_up_container.xml","size":440,"crc":-379931951},{"key":"res/layout/abc_action_menu_item_layout.xml","name":"res/layout/abc_action_menu_item_layout.xml","size":768,"crc":211934990},{"key":"res/layout/abc_action_menu_layout.xml","name":"res/layout/abc_action_menu_layout.xml","size":576,"crc":2146034318},{"key":"res/layout/abc_action_mode_bar.xml","name":"res/layout/abc_action_mode_bar.xml","size":464,"crc":-1571946790},{"key":"res/layout/abc_action_mode_close_item_material.xml","name":"res/layout/abc_action_mode_close_item_material.xml","size":840,"crc":-518862467},{"key":"res/layout/abc_activity_chooser_view.xml","name":"res/layout/abc_activity_chooser_view.xml","size":1684,"crc":1685428465},{"key":"res/layout/abc_activity_chooser_view_list_item.xml","name":"res/layout/abc_activity_chooser_view_list_item.xml","size":1304,"crc":-866000501},{"key":"res/layout/abc_alert_dialog_button_bar_material.xml","name":"res/layout/abc_alert_dialog_button_bar_material.xml","size":1584,"crc":1675225004},{"key":"res/layout/abc_alert_dialog_material.xml","name":"res/layout/abc_alert_dialog_material.xml","size":2648,"crc":-1090762703},{"key":"res/layout/abc_alert_dialog_title_material.xml","name":"res/layout/abc_alert_dialog_title_material.xml","size":1560,"crc":-984776360},{"key":"res/layout/abc_cascading_menu_item_layout.xml","name":"res/layout/abc_cascading_menu_item_layout.xml","size":1868,"crc":-1285583938},{"key":"res/layout/abc_dialog_title_material.xml","name":"res/layout/abc_dialog_title_material.xml","size":1116,"crc":-113361291},{"key":"res/layout/abc_expanded_menu_layout.xml","name":"res/layout/abc_expanded_menu_layout.xml","size":388,"crc":-2136644273},{"key":"res/layout/abc_list_menu_item_checkbox.xml","name":"res/layout/abc_list_menu_item_checkbox.xml","size":528,"crc":563662262},{"key":"res/layout/abc_list_menu_item_icon.xml","name":"res/layout/abc_list_menu_item_icon.xml","size":780,"crc":1049887833},{"key":"res/layout/abc_list_menu_item_layout.xml","name":"res/layout/abc_list_menu_item_layout.xml","size":1396,"crc":-644645220},{"key":"res/layout/abc_list_menu_item_radio.xml","name":"res/layout/abc_list_menu_item_radio.xml","size":532,"crc":-1632817595},{"key":"res/layout/abc_popup_menu_header_item_layout.xml","name":"res/layout/abc_popup_menu_header_item_layout.xml","size":848,"crc":-394963428},{"key":"res/layout/abc_popup_menu_item_layout.xml","name":"res/layout/abc_popup_menu_item_layout.xml","size":2072,"crc":-836769808},{"key":"res/layout/abc_screen_content_include.xml","name":"res/layout/abc_screen_content_include.xml","size":548,"crc":1485576479},{"key":"res/layout/abc_screen_simple.xml","name":"res/layout/abc_screen_simple.xml","size":832,"crc":-1679597929},{"key":"res/layout/abc_screen_simple_overlay_action_mode.xml","name":"res/layout/abc_screen_simple_overlay_action_mode.xml","size":792,"crc":-272914928},{"key":"res/layout/abc_screen_toolbar.xml","name":"res/layout/abc_screen_toolbar.xml","size":1504,"crc":927188465},{"key":"res/layout/abc_search_dropdown_item_icons_2line.xml","name":"res/layout/abc_search_dropdown_item_icons_2line.xml","size":1916,"crc":-1478671456},{"key":"res/layout/abc_search_view.xml","name":"res/layout/abc_search_view.xml","size":3472,"crc":1796694484},{"key":"res/layout/abc_select_dialog_material.xml","name":"res/layout/abc_select_dialog_material.xml","size":1020,"crc":1405427355},{"key":"res/layout/abc_tooltip.xml","name":"res/layout/abc_tooltip.xml","size":1056,"crc":575998245},{"key":"res/layout/activity_forgot_password.xml","name":"res/layout/activity_forgot_password.xml","size":2164,"crc":655210134},{"key":"res/layout/activity_login.xml","name":"res/layout/activity_login.xml","size":3800,"crc":410454290},{"key":"res/layout/activity_main.xml","name":"res/layout/activity_main.xml","size":1496,"crc":1304069075},{"key":"res/layout/activity_register.xml","name":"res/layout/activity_register.xml","size":4484,"crc":486777070},{"key":"res/layout/browser_actions_context_menu_page.xml","name":"res/layout/browser_actions_context_menu_page.xml","size":1660,"crc":-1086936959},{"key":"res/layout/browser_actions_context_menu_row.xml","name":"res/layout/browser_actions_context_menu_row.xml","size":1212,"crc":-1787321375},{"key":"res/layout/custom_dialog.xml","name":"res/layout/custom_dialog.xml","size":612,"crc":1604765959},{"key":"res/layout/design_bottom_navigation_item.xml","name":"res/layout/design_bottom_navigation_item.xml","size":1860,"crc":-696486010},{"key":"res/layout/design_bottom_sheet_dialog.xml","name":"res/layout/design_bottom_sheet_dialog.xml","size":1224,"crc":187826561},{"key":"res/layout/design_layout_snackbar.xml","name":"res/layout/design_layout_snackbar.xml","size":528,"crc":-1583546014},{"key":"res/layout/design_layout_snackbar_include.xml","name":"res/layout/design_layout_snackbar_include.xml","size":1444,"crc":1458431572},{"key":"res/layout/design_layout_tab_icon.xml","name":"res/layout/design_layout_tab_icon.xml","size":408,"crc":-234554716},{"key":"res/layout/design_layout_tab_text.xml","name":"res/layout/design_layout_tab_text.xml","size":436,"crc":-1677728391},{"key":"res/layout/design_menu_item_action_area.xml","name":"res/layout/design_menu_item_action_area.xml","size":320,"crc":308712715},{"key":"res/layout/design_navigation_item.xml","name":"res/layout/design_navigation_item.xml","size":636,"crc":-1516450756},{"key":"res/layout/design_navigation_item_header.xml","name":"res/layout/design_navigation_item_header.xml","size":440,"crc":2011433115},{"key":"res/layout/design_navigation_item_separator.xml","name":"res/layout/design_navigation_item_separator.xml","size":472,"crc":411075014},{"key":"res/layout/design_navigation_item_subheader.xml","name":"res/layout/design_navigation_item_subheader.xml","size":564,"crc":-1875472898},{"key":"res/layout/design_navigation_menu.xml","name":"res/layout/design_navigation_menu.xml","size":528,"crc":-1822847991},{"key":"res/layout/design_navigation_menu_item.xml","name":"res/layout/design_navigation_menu_item.xml","size":856,"crc":-1040918490},{"key":"res/layout/design_text_input_end_icon.xml","name":"res/layout/design_text_input_end_icon.xml","size":656,"crc":1829377664},{"key":"res/layout/design_text_input_start_icon.xml","name":"res/layout/design_text_input_start_icon.xml","size":652,"crc":-2118500663},{"key":"res/layout/dialog_add_medication.xml","name":"res/layout/dialog_add_medication.xml","size":2504,"crc":-2021196650},{"key":"res/layout/dialog_change_password.xml","name":"res/layout/dialog_change_password.xml","size":1832,"crc":1587781346},{"key":"res/layout/dialog_edit_profile.xml","name":"res/layout/dialog_edit_profile.xml","size":3324,"crc":-724875220},{"key":"res/layout/fingerprint_dialog_layout.xml","name":"res/layout/fingerprint_dialog_layout.xml","size":1912,"crc":505950250},{"key":"res/layout/fragment_appointments.xml","name":"res/layout/fragment_appointments.xml","size":1508,"crc":1334375652},{"key":"res/layout/fragment_home.xml","name":"res/layout/fragment_home.xml","size":2400,"crc":-55136739},{"key":"res/layout/fragment_medication.xml","name":"res/layout/fragment_medication.xml","size":1788,"crc":-1777319510},{"key":"res/layout/fragment_profile.xml","name":"res/layout/fragment_profile.xml","size":3556,"crc":1102876346},{"key":"res/layout/fragment_schedule_appointment.xml","name":"res/layout/fragment_schedule_appointment.xml","size":2444,"crc":-239971805},{"key":"res/layout/fragment_sns24.xml","name":"res/layout/fragment_sns24.xml","size":3032,"crc":1633290420},{"key":"res/layout/ime_base_split_test_activity.xml","name":"res/layout/ime_base_split_test_activity.xml","size":364,"crc":1066515116},{"key":"res/layout/ime_secondary_split_test_activity.xml","name":"res/layout/ime_secondary_split_test_activity.xml","size":876,"crc":317110660},{"key":"res/layout/item_appointment.xml","name":"res/layout/item_appointment.xml","size":1884,"crc":-1237455405},{"key":"res/layout/item_medication.xml","name":"res/layout/item_medication.xml","size":2384,"crc":-120978179},{"key":"res/layout/item_time_slot.xml","name":"res/layout/item_time_slot.xml","size":556,"crc":752545428},{"key":"res/layout/m3_alert_dialog.xml","name":"res/layout/m3_alert_dialog.xml","size":2720,"crc":578416511},{"key":"res/layout/m3_alert_dialog_actions.xml","name":"res/layout/m3_alert_dialog_actions.xml","size":1584,"crc":-1861420136},{"key":"res/layout/m3_alert_dialog_title.xml","name":"res/layout/m3_alert_dialog_title.xml","size":956,"crc":-567863402},{"key":"res/layout/m3_auto_complete_simple_item.xml","name":"res/layout/m3_auto_complete_simple_item.xml","size":612,"crc":179339084},{"key":"res/layout/m3_side_sheet_dialog.xml","name":"res/layout/m3_side_sheet_dialog.xml","size":1180,"crc":-1483531541},{"key":"res/layout/material_chip_input_combo.xml","name":"res/layout/material_chip_input_combo.xml","size":372,"crc":-1047030969},{"key":"res/layout/material_clock_display.xml","name":"res/layout/material_clock_display.xml","size":796,"crc":-979027185},{"key":"res/layout/material_clock_display_divider.xml","name":"res/layout/material_clock_display_divider.xml","size":444,"crc":328472644},{"key":"res/layout/material_clock_period_toggle.xml","name":"res/layout/material_clock_period_toggle.xml","size":1220,"crc":-879420433},{"key":"res/layout/material_clockface_textview.xml","name":"res/layout/material_clockface_textview.xml","size":476,"crc":-914941644},{"key":"res/layout/material_clockface_view.xml","name":"res/layout/material_clockface_view.xml","size":1012,"crc":-1781638333},{"key":"res/layout/material_radial_view_group.xml","name":"res/layout/material_radial_view_group.xml","size":768,"crc":-1841908053},{"key":"res/layout/material_textinput_timepicker.xml","name":"res/layout/material_textinput_timepicker.xml","size":720,"crc":1816150993},{"key":"res/layout/material_time_chip.xml","name":"res/layout/material_time_chip.xml","size":380,"crc":1186992861},{"key":"res/layout/material_time_input.xml","name":"res/layout/material_time_input.xml","size":956,"crc":-309542285},{"key":"res/layout/material_timepicker.xml","name":"res/layout/material_timepicker.xml","size":1608,"crc":-1506253801},{"key":"res/layout/material_timepicker_dialog.xml","name":"res/layout/material_timepicker_dialog.xml","size":2892,"crc":-1719722776},{"key":"res/layout/material_timepicker_textinput_display.xml","name":"res/layout/material_timepicker_textinput_display.xml","size":728,"crc":-334430547},{"key":"res/layout/mtrl_alert_dialog.xml","name":"res/layout/mtrl_alert_dialog.xml","size":2476,"crc":110441590},{"key":"res/layout/mtrl_alert_dialog_actions.xml","name":"res/layout/mtrl_alert_dialog_actions.xml","size":1764,"crc":-1572036611},{"key":"res/layout/mtrl_alert_dialog_title.xml","name":"res/layout/mtrl_alert_dialog_title.xml","size":956,"crc":1303443320},{"key":"res/layout/mtrl_alert_select_dialog_item.xml","name":"res/layout/mtrl_alert_select_dialog_item.xml","size":588,"crc":-1836513740},{"key":"res/layout/mtrl_alert_select_dialog_multichoice.xml","name":"res/layout/mtrl_alert_select_dialog_multichoice.xml","size":940,"crc":1279169010},{"key":"res/layout/mtrl_alert_select_dialog_singlechoice.xml","name":"res/layout/mtrl_alert_select_dialog_singlechoice.xml","size":940,"crc":-1074604810},{"key":"res/layout/mtrl_auto_complete_simple_item.xml","name":"res/layout/mtrl_auto_complete_simple_item.xml","size":612,"crc":1747700357},{"key":"res/layout/mtrl_calendar_day.xml","name":"res/layout/mtrl_calendar_day.xml","size":352,"crc":931986266},{"key":"res/layout/mtrl_calendar_day_of_week.xml","name":"res/layout/mtrl_calendar_day_of_week.xml","size":352,"crc":-2000580741},{"key":"res/layout/mtrl_calendar_days_of_week.xml","name":"res/layout/mtrl_calendar_days_of_week.xml","size":436,"crc":334831043},{"key":"res/layout/mtrl_calendar_horizontal.xml","name":"res/layout/mtrl_calendar_horizontal.xml","size":1176,"crc":-1778026731},{"key":"res/layout/mtrl_calendar_month.xml","name":"res/layout/mtrl_calendar_month.xml","size":688,"crc":-1297714976},{"key":"res/layout/mtrl_calendar_month_labeled.xml","name":"res/layout/mtrl_calendar_month_labeled.xml","size":728,"crc":549649935},{"key":"res/layout/mtrl_calendar_month_navigation.xml","name":"res/layout/mtrl_calendar_month_navigation.xml","size":1748,"crc":1929236174},{"key":"res/layout/mtrl_calendar_months.xml","name":"res/layout/mtrl_calendar_months.xml","size":428,"crc":1535897527},{"key":"res/layout/mtrl_calendar_vertical.xml","name":"res/layout/mtrl_calendar_vertical.xml","size":740,"crc":-514382504},{"key":"res/layout/mtrl_calendar_year.xml","name":"res/layout/mtrl_calendar_year.xml","size":352,"crc":1419487422},{"key":"res/layout/mtrl_layout_snackbar.xml","name":"res/layout/mtrl_layout_snackbar.xml","size":492,"crc":-1773197127},{"key":"res/layout/mtrl_layout_snackbar_include.xml","name":"res/layout/mtrl_layout_snackbar_include.xml","size":952,"crc":-2071917377},{"key":"res/layout/mtrl_navigation_rail_item.xml","name":"res/layout/mtrl_navigation_rail_item.xml","size":1860,"crc":1560370908},{"key":"res/layout/mtrl_picker_actions.xml","name":"res/layout/mtrl_picker_actions.xml","size":984,"crc":-1539530428},{"key":"res/layout/mtrl_picker_dialog.xml","name":"res/layout/mtrl_picker_dialog.xml","size":1172,"crc":-149257380},{"key":"res/layout/mtrl_picker_fullscreen.xml","name":"res/layout/mtrl_picker_fullscreen.xml","size":880,"crc":8943900},{"key":"res/layout/mtrl_picker_header_dialog.xml","name":"res/layout/mtrl_picker_header_dialog.xml","size":1492,"crc":-749536004},{"key":"res/layout/mtrl_picker_header_fullscreen.xml","name":"res/layout/mtrl_picker_header_fullscreen.xml","size":2800,"crc":-324847073},{"key":"res/layout/mtrl_picker_header_selection_text.xml","name":"res/layout/mtrl_picker_header_selection_text.xml","size":712,"crc":1959949388},{"key":"res/layout/mtrl_picker_header_title_text.xml","name":"res/layout/mtrl_picker_header_title_text.xml","size":624,"crc":-1191152038},{"key":"res/layout/mtrl_picker_header_toggle.xml","name":"res/layout/mtrl_picker_header_toggle.xml","size":528,"crc":987265035},{"key":"res/layout/mtrl_picker_text_input_date.xml","name":"res/layout/mtrl_picker_text_input_date.xml","size":984,"crc":-582848389},{"key":"res/layout/mtrl_picker_text_input_date_range.xml","name":"res/layout/mtrl_picker_text_input_date_range.xml","size":1580,"crc":-1533310473},{"key":"res/layout/mtrl_search_bar.xml","name":"res/layout/mtrl_search_bar.xml","size":488,"crc":1699983761},{"key":"res/layout/mtrl_search_view.xml","name":"res/layout/mtrl_search_view.xml","size":3424,"crc":1230430902},{"key":"res/layout-v21/notification_action.xml","name":"res/layout-v21/notification_action.xml","size":1052,"crc":537670980},{"key":"res/layout-v21/notification_action_tombstone.xml","name":"res/layout-v21/notification_action_tombstone.xml","size":1228,"crc":1735674066},{"key":"res/layout-v21/notification_template_custom_big.xml","name":"res/layout-v21/notification_template_custom_big.xml","size":2456,"crc":443315656},{"key":"res/layout-v21/notification_template_icon_group.xml","name":"res/layout-v21/notification_template_icon_group.xml","size":988,"crc":960409376},{"key":"res/layout/notification_template_part_chronometer.xml","name":"res/layout/notification_template_part_chronometer.xml","size":440,"crc":-98697217},{"key":"res/layout/notification_template_part_time.xml","name":"res/layout/notification_template_part_time.xml","size":440,"crc":-463404830},{"key":"res/layout/select_dialog_item_material.xml","name":"res/layout/select_dialog_item_material.xml","size":640,"crc":1761548252},{"key":"res/layout/select_dialog_multichoice_material.xml","name":"res/layout/select_dialog_multichoice_material.xml","size":864,"crc":-296407927},{"key":"res/layout/select_dialog_singlechoice_material.xml","name":"res/layout/select_dialog_singlechoice_material.xml","size":864,"crc":1507117034},{"key":"res/layout/support_simple_spinner_dropdown_item.xml","name":"res/layout/support_simple_spinner_dropdown_item.xml","size":464,"crc":-1505441965},{"key":"res/layout-sw600dp-v13/design_layout_snackbar.xml","name":"res/layout-sw600dp-v13/design_layout_snackbar.xml","size":528,"crc":-318747827},{"key":"res/layout-sw600dp-v13/mtrl_layout_snackbar.xml","name":"res/layout-sw600dp-v13/mtrl_layout_snackbar.xml","size":492,"crc":-623746410},{"key":"res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml","name":"res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml","size":1208,"crc":-1099783431},{"key":"res/layout-watch-v20/abc_alert_dialog_title_material.xml","name":"res/layout-watch-v20/abc_alert_dialog_title_material.xml","size":1352,"crc":136456467},{"key":"res/layout-v26/abc_screen_toolbar.xml","name":"res/layout-v26/abc_screen_toolbar.xml","size":1560,"crc":-1525059506},{"key":"res/layout-v26/mtrl_calendar_month.xml","name":"res/layout-v26/mtrl_calendar_month.xml","size":744,"crc":-595953968},{"key":"res/layout-land/material_clock_period_toggle_land.xml","name":"res/layout-land/material_clock_period_toggle_land.xml","size":1232,"crc":-1736834583},{"key":"res/layout-land/material_timepicker.xml","name":"res/layout-land/material_timepicker.xml","size":1676,"crc":1255673857},{"key":"res/layout-land/mtrl_picker_header_dialog.xml","name":"res/layout-land/mtrl_picker_header_dialog.xml","size":1532,"crc":943742797},{"key":"res/menu/bottom_nav_menu.xml","name":"res/menu/bottom_nav_menu.xml","size":884,"crc":-753445162},{"key":"res/navigation/mobile_navigation.xml","name":"res/navigation/mobile_navigation.xml","size":1768,"crc":1994631452},{"key":"res/raw/firebase_common_keep.xml","name":"res/raw/firebase_common_keep.xml","size":290,"crc":1372539573},{"key":"res/xml/backup_rules.xml","name":"res/xml/backup_rules.xml","size":408,"crc":-151447439},{"key":"res/xml/data_extraction_rules.xml","name":"res/xml/data_extraction_rules.xml","size":772,"crc":1963637641},{"key":"res/xml/image_share_filepaths.xml","name":"res/xml/image_share_filepaths.xml","size":308,"crc":283987299},{"key":"resources.arsc","name":"resources.arsc","size":1308832,"crc":330081011}]
\ No newline at end of file
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/databinding/DialogAddMedicationBinding.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/databinding/DialogAddMedicationBinding.class
new file mode 100644
index 0000000..354a5ec
Binary files /dev/null and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/databinding/DialogAddMedicationBinding.class differ
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/databinding/FragmentMedicationBinding.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/databinding/FragmentMedicationBinding.class
index 7bb105f..1462cda 100644
Binary files a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/databinding/FragmentMedicationBinding.class and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/databinding/FragmentMedicationBinding.class differ
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/databinding/FragmentSns24Binding.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/databinding/FragmentSns24Binding.class
index 7659486..85f960a 100644
Binary files a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/databinding/FragmentSns24Binding.class and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/databinding/FragmentSns24Binding.class differ
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/services/Gemini.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/services/Gemini.class
index 6691d9d..47d3d1a 100644
Binary files a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/services/Gemini.class and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/services/Gemini.class differ
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationAdapter$MedicationViewHolder.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationAdapter$MedicationViewHolder.class
index 680eebb..99ea637 100644
Binary files a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationAdapter$MedicationViewHolder.class and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationAdapter$MedicationViewHolder.class differ
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationAdapter$OnItemClickListener.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationAdapter$OnItemClickListener.class
index 8e37bb5..c043af6 100644
Binary files a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationAdapter$OnItemClickListener.class and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationAdapter$OnItemClickListener.class differ
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationAdapter.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationAdapter.class
index 235797b..c6ddac8 100644
Binary files a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationAdapter.class and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationAdapter.class differ
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationDialog$OnMedicationSaveListener.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationDialog$OnMedicationSaveListener.class
new file mode 100644
index 0000000..c59f3a3
Binary files /dev/null and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationDialog$OnMedicationSaveListener.class differ
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationDialog.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationDialog.class
new file mode 100644
index 0000000..ed7f78c
Binary files /dev/null and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationDialog.class differ
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationFragment$1.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationFragment$1.class
new file mode 100644
index 0000000..0224828
Binary files /dev/null and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationFragment$1.class differ
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationFragment.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationFragment.class
index 09c3231..f4f60d9 100644
Binary files a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationFragment.class and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationFragment.class differ
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationViewModel.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationViewModel.class
index fe61dae..02e1492 100644
Binary files a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationViewModel.class and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/medication/MedicationViewModel.class differ
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/sns24/Sns24Fragment$1.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/sns24/Sns24Fragment$1.class
index bef7575..9838bc3 100644
Binary files a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/sns24/Sns24Fragment$1.class and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/sns24/Sns24Fragment$1.class differ
diff --git a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/sns24/Sns24Fragment.class b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/sns24/Sns24Fragment.class
index 719bd91..bfa20b7 100644
Binary files a/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/sns24/Sns24Fragment.class and b/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cuida/ui/sns24/Sns24Fragment.class differ
diff --git a/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/linked-resources-binary-format-debug.ap_ b/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/linked-resources-binary-format-debug.ap_
index 7539f0f..662a7f4 100644
Binary files a/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/linked-resources-binary-format-debug.ap_ and b/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/linked-resources-binary-format-debug.ap_ differ
diff --git a/app/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/app/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt
index f9cd8ac..10cb221 100644
--- a/app/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt
+++ b/app/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt
@@ -36,20 +36,27 @@ id button_cancel
id button_cancel_password
id button_change_password
id button_edit_profile
+id button_find_hospital
id button_logout
id button_save
id button_save_password
id card_next_medication
+id checkbox_inhalatory
+id checkbox_oral
id checkbox_remember_me
id checkbox_taken
+id checkbox_topical
id datePicker
id edit_age
id edit_email
+id edit_med_name
+id edit_med_notes
id edit_name
id edit_profile_image
id edit_reason
id edit_utente
id email_edit_text
+id fab_add_medication
id forgot_password_link
id input_symptoms
id login_button
@@ -89,12 +96,14 @@ id text_med_notes
id text_med_time
id text_reason
id text_time
+id text_title
id text_type
id utente_edit_text
layout activity_forgot_password
layout activity_login
layout activity_main
layout activity_register
+layout dialog_add_medication
layout dialog_change_password
layout dialog_edit_profile
layout fragment_appointments
diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_dialog_add_medication.xml.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_dialog_add_medication.xml.flat
new file mode 100644
index 0000000..3ef7a61
Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_dialog_add_medication.xml.flat differ
diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_fragment_medication.xml.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_fragment_medication.xml.flat
index abffda3..7cfccdb 100644
Binary files a/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_fragment_medication.xml.flat and b/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_fragment_medication.xml.flat differ
diff --git a/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_fragment_sns24.xml.flat b/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_fragment_sns24.xml.flat
index 7c628e7..738fded 100644
Binary files a/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_fragment_sns24.xml.flat and b/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_fragment_sns24.xml.flat differ
diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/layout.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/layout.json
index b8a61d3..735e6f4 100644
--- a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/layout.json
+++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/layout.json
@@ -24,25 +24,29 @@
"source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/fragment_schedule_appointment.xml"
},
{
- "merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-mergeDebugResources-61:/layout/fragment_appointments.xml",
- "source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/fragment_appointments.xml"
+ "merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-mergeDebugResources-61:/layout/dialog_add_medication.xml",
+ "source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/dialog_add_medication.xml"
},
{
- "merged": "com.example.cuida.app-mergeDebugResources-61:/layout/fragment_schedule_appointment.xml",
- "source": "com.example.cuida.app-main-64:/layout/fragment_schedule_appointment.xml"
+ "merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-mergeDebugResources-61:/layout/fragment_appointments.xml",
+ "source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/fragment_appointments.xml"
},
{
"merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-mergeDebugResources-61:/layout/item_appointment.xml",
"source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/item_appointment.xml"
},
{
- "merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-mergeDebugResources-61:/layout/item_time_slot.xml",
- "source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/item_time_slot.xml"
+ "merged": "com.example.cuida.app-mergeDebugResources-61:/layout/dialog_add_medication.xml",
+ "source": "com.example.cuida.app-main-64:/layout/dialog_add_medication.xml"
},
{
"merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-mergeDebugResources-61:/layout/fragment_sns24.xml",
"source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/fragment_sns24.xml"
},
+ {
+ "merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-mergeDebugResources-61:/layout/item_time_slot.xml",
+ "source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/item_time_slot.xml"
+ },
{
"merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-mergeDebugResources-61:/layout/activity_forgot_password.xml",
"source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/activity_forgot_password.xml"
@@ -51,10 +55,6 @@
"merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-mergeDebugResources-61:/layout/item_medication.xml",
"source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/item_medication.xml"
},
- {
- "merged": "com.example.cuida.app-mergeDebugResources-61:/layout/item_appointment.xml",
- "source": "com.example.cuida.app-main-64:/layout/item_appointment.xml"
- },
{
"merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-mergeDebugResources-61:/layout/dialog_edit_profile.xml",
"source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/dialog_edit_profile.xml"
diff --git a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/mergeDebugResources.json b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/mergeDebugResources.json
index c80e9cf..a7d8059 100644
--- a/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/mergeDebugResources.json
+++ b/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/mergeDebugResources.json
@@ -63,14 +63,14 @@
"merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-debug-62:/layout_dialog_change_password.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/dialog_change_password.xml"
},
- {
- "merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-debug-62:/drawable-v26_ic_launcher_final.xml.flat",
- "source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/drawable-v26/ic_launcher_final.xml"
- },
{
"merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-debug-62:/layout_fragment_sns24.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/fragment_sns24.xml"
},
+ {
+ "merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-debug-62:/drawable-v26_ic_launcher_final.xml.flat",
+ "source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/drawable-v26/ic_launcher_final.xml"
+ },
{
"merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-debug-62:/xml_data_extraction_rules.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/xml/data_extraction_rules.xml"
@@ -88,17 +88,17 @@
"source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/drawable/ic_launcher.xml"
},
{
- "merged": "com.example.cuida.app-debug-62:/layout_fragment_schedule_appointment.xml.flat",
- "source": "com.example.cuida.app-main-64:/layout/fragment_schedule_appointment.xml"
+ "merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-debug-62:/layout_dialog_add_medication.xml.flat",
+ "source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/dialog_add_medication.xml"
+ },
+ {
+ "merged": "com.example.cuida.app-debug-62:/layout_dialog_add_medication.xml.flat",
+ "source": "com.example.cuida.app-main-64:/layout/dialog_add_medication.xml"
},
{
"merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-debug-62:/layout_fragment_appointments.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/fragment_appointments.xml"
},
- {
- "merged": "com.example.cuida.app-debug-62:/layout_item_appointment.xml.flat",
- "source": "com.example.cuida.app-main-64:/layout/item_appointment.xml"
- },
{
"merged": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-debug-62:/layout_fragment_profile.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.1.0/com.example.cuida.app-main-64:/layout/fragment_profile.xml"
diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/dialog_add_medication.xml b/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/dialog_add_medication.xml
new file mode 100644
index 0000000..44160ec
--- /dev/null
+++ b/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/dialog_add_medication.xml
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/fragment_medication.xml b/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/fragment_medication.xml
index 85aa53a..4b794bf 100644
--- a/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/fragment_medication.xml
+++ b/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/fragment_medication.xml
@@ -1,22 +1,40 @@
-
+ android:layout_width="0dp"
+ android:layout_height="0dp"
+ android:layout_marginTop="16dp"
+ app:layout_constraintTop_toBottomOf="@id/text_title"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"/>
-
+
+
+
diff --git a/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/fragment_sns24.xml b/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/fragment_sns24.xml
index 4dd3a39..7a6ce83 100644
--- a/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/fragment_sns24.xml
+++ b/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/fragment_sns24.xml
@@ -75,6 +75,18 @@
android:textColor="@android:color/black"
android:padding="16dp"
android:background="#F5F5F5"
+ android:visibility="gone"
+ android:layout_marginBottom="16dp"/>
+
+
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_0.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_0.jar
new file mode 100644
index 0000000..5f19e62
Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_0.jar differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_1.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_1.jar
new file mode 100644
index 0000000..3d079b0
Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_1.jar differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_2.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_2.jar
new file mode 100644
index 0000000..33e0b91
Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_2.jar differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_3.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_3.jar
new file mode 100644
index 0000000..4e6b7ee
Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_3.jar differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_4.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_4.jar
new file mode 100644
index 0000000..46cb72e
Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_4.jar differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_5.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_5.jar
new file mode 100644
index 0000000..3d2773f
Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_5.jar differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_6.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_6.jar
new file mode 100644
index 0000000..4532b11
Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_6.jar differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_7.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_7.jar
new file mode 100644
index 0000000..c3aab1b
Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/93c464099b7ff9e0195c7892ce8b3318e2c3d502d92563680b202d6d773de28b_7.jar differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_0.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_0.jar
deleted file mode 100644
index acf613c..0000000
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_0.jar and /dev/null differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_1.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_1.jar
deleted file mode 100644
index 7dd3c1f..0000000
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_1.jar and /dev/null differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_2.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_2.jar
deleted file mode 100644
index 3d236d1..0000000
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_2.jar and /dev/null differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_3.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_3.jar
deleted file mode 100644
index 3768d8b..0000000
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_3.jar and /dev/null differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_4.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_4.jar
deleted file mode 100644
index 22036ef..0000000
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_4.jar and /dev/null differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_5.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_5.jar
deleted file mode 100644
index ece5116..0000000
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_5.jar and /dev/null differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_6.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_6.jar
deleted file mode 100644
index 9500c16..0000000
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_6.jar and /dev/null differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_7.jar b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_7.jar
deleted file mode 100644
index 2c46a7f..0000000
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/b207ff1615c87047b7ed415228b7b19725aa5a495f9b0b8ecb8f8de12854c617_7.jar and /dev/null differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/databinding/DialogAddMedicationBinding.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/databinding/DialogAddMedicationBinding.dex
new file mode 100644
index 0000000..2612ee2
Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/databinding/DialogAddMedicationBinding.dex differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/databinding/FragmentMedicationBinding.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/databinding/FragmentMedicationBinding.dex
index 6c35d6f..875ddb5 100644
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/databinding/FragmentMedicationBinding.dex and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/databinding/FragmentMedicationBinding.dex differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/databinding/FragmentSns24Binding.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/databinding/FragmentSns24Binding.dex
index 1d058b6..457d57d 100644
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/databinding/FragmentSns24Binding.dex and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/databinding/FragmentSns24Binding.dex differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/services/Gemini.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/services/Gemini.dex
index ddbfb95..2fa8ad9 100644
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/services/Gemini.dex and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/services/Gemini.dex differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationAdapter$MedicationViewHolder.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationAdapter$MedicationViewHolder.dex
index 0ac6f4a..253fcc0 100644
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationAdapter$MedicationViewHolder.dex and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationAdapter$MedicationViewHolder.dex differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationAdapter$OnItemClickListener.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationAdapter$OnItemClickListener.dex
index beaea7d..da8848d 100644
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationAdapter$OnItemClickListener.dex and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationAdapter$OnItemClickListener.dex differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationAdapter.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationAdapter.dex
index 55fc7b2..30c88aa 100644
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationAdapter.dex and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationAdapter.dex differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationDialog$OnMedicationSaveListener.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationDialog$OnMedicationSaveListener.dex
new file mode 100644
index 0000000..3d9e6c6
Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationDialog$OnMedicationSaveListener.dex differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationDialog.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationDialog.dex
new file mode 100644
index 0000000..75550c2
Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationDialog.dex differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationFragment$1.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationFragment$1.dex
new file mode 100644
index 0000000..3286dc9
Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationFragment$1.dex differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationFragment.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationFragment.dex
index 4499907..ca0f298 100644
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationFragment.dex and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationFragment.dex differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationViewModel.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationViewModel.dex
index 7e0cc5d..814797d 100644
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationViewModel.dex and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/medication/MedicationViewModel.dex differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/sns24/Sns24Fragment$1.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/sns24/Sns24Fragment$1.dex
index ce2167a..9ba9d01 100644
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/sns24/Sns24Fragment$1.dex and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/sns24/Sns24Fragment$1.dex differ
diff --git a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/sns24/Sns24Fragment.dex b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/sns24/Sns24Fragment.dex
index 7bcefc5..2121f23 100644
Binary files a/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/sns24/Sns24Fragment.dex and b/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/cuida/ui/sns24/Sns24Fragment.dex differ
diff --git a/app/build/intermediates/runtime_symbol_list/debug/processDebugResources/R.txt b/app/build/intermediates/runtime_symbol_list/debug/processDebugResources/R.txt
index a925787..9c99f0c 100644
--- a/app/build/intermediates/runtime_symbol_list/debug/processDebugResources/R.txt
+++ b/app/build/intermediates/runtime_symbol_list/debug/processDebugResources/R.txt
@@ -3320,473 +3320,481 @@ int id button_cancel 0x7f090075
int id button_cancel_password 0x7f090076
int id button_change_password 0x7f090077
int id button_edit_profile 0x7f090078
-int id button_logout 0x7f090079
-int id button_save 0x7f09007a
-int id button_save_password 0x7f09007b
-int id cache_measures 0x7f09007c
-int id callMeasure 0x7f09007d
-int id cancel_button 0x7f09007e
-int id card_next_medication 0x7f09007f
-int id carryVelocity 0x7f090080
-int id center 0x7f090081
-int id centerCrop 0x7f090082
-int id centerInside 0x7f090083
-int id center_horizontal 0x7f090084
-int id center_vertical 0x7f090085
-int id chain 0x7f090086
-int id chain2 0x7f090087
-int id chains 0x7f090088
-int id checkbox 0x7f090089
-int id checkbox_remember_me 0x7f09008a
-int id checkbox_taken 0x7f09008b
-int id checked 0x7f09008c
-int id chronometer 0x7f09008d
-int id circle_center 0x7f09008e
-int id clear_text 0x7f09008f
-int id clip_horizontal 0x7f090090
-int id clip_vertical 0x7f090091
-int id clockwise 0x7f090092
-int id closest 0x7f090093
-int id collapseActionView 0x7f090094
-int id compress 0x7f090095
-int id confirm_button 0x7f090096
-int id constraint 0x7f090097
-int id container 0x7f090098
-int id content 0x7f090099
-int id contentPanel 0x7f09009a
-int id contiguous 0x7f09009b
-int id continuousVelocity 0x7f09009c
-int id coordinator 0x7f09009d
-int id cos 0x7f09009e
-int id counterclockwise 0x7f09009f
-int id cradle 0x7f0900a0
-int id currentState 0x7f0900a1
-int id custom 0x7f0900a2
-int id customPanel 0x7f0900a3
-int id cut 0x7f0900a4
-int id dark 0x7f0900a5
-int id datePicker 0x7f0900a6
-int id date_picker_actions 0x7f0900a7
-int id decelerate 0x7f0900a8
-int id decelerateAndComplete 0x7f0900a9
-int id decor_content_parent 0x7f0900aa
-int id default_activity_button 0x7f0900ab
-int id deltaRelative 0x7f0900ac
-int id dependency_ordering 0x7f0900ad
-int id design_bottom_sheet 0x7f0900ae
-int id design_menu_item_action_area 0x7f0900af
-int id design_menu_item_action_area_stub 0x7f0900b0
-int id design_menu_item_text 0x7f0900b1
-int id design_navigation_view 0x7f0900b2
-int id dialog_button 0x7f0900b3
-int id dimensions 0x7f0900b4
-int id direct 0x7f0900b5
-int id disableHome 0x7f0900b6
-int id disableIntraAutoTransition 0x7f0900b7
-int id disablePostScroll 0x7f0900b8
-int id disableScroll 0x7f0900b9
-int id disjoint 0x7f0900ba
-int id dragAnticlockwise 0x7f0900bb
-int id dragClockwise 0x7f0900bc
-int id dragDown 0x7f0900bd
-int id dragEnd 0x7f0900be
-int id dragLeft 0x7f0900bf
-int id dragRight 0x7f0900c0
-int id dragStart 0x7f0900c1
-int id dragUp 0x7f0900c2
-int id dropdown_menu 0x7f0900c3
-int id easeIn 0x7f0900c4
-int id easeInOut 0x7f0900c5
-int id easeOut 0x7f0900c6
-int id east 0x7f0900c7
-int id edge 0x7f0900c8
-int id edit_age 0x7f0900c9
-int id edit_email 0x7f0900ca
-int id edit_name 0x7f0900cb
-int id edit_profile_image 0x7f0900cc
-int id edit_query 0x7f0900cd
-int id edit_reason 0x7f0900ce
-int id edit_text_id 0x7f0900cf
-int id edit_utente 0x7f0900d0
-int id elastic 0x7f0900d1
-int id email_edit_text 0x7f0900d2
-int id embed 0x7f0900d3
-int id end 0x7f0900d4
-int id endToStart 0x7f0900d5
-int id enterAlways 0x7f0900d6
-int id enterAlwaysCollapsed 0x7f0900d7
-int id exitUntilCollapsed 0x7f0900d8
-int id expand_activities_button 0x7f0900d9
-int id expanded_menu 0x7f0900da
-int id fade 0x7f0900db
-int id fill 0x7f0900dc
-int id fill_horizontal 0x7f0900dd
-int id fill_vertical 0x7f0900de
-int id filled 0x7f0900df
-int id fingerprint_description 0x7f0900e0
-int id fingerprint_error 0x7f0900e1
-int id fingerprint_icon 0x7f0900e2
-int id fingerprint_subtitle 0x7f0900e3
-int id fitCenter 0x7f0900e4
-int id fitEnd 0x7f0900e5
-int id fitStart 0x7f0900e6
-int id fitToContents 0x7f0900e7
-int id fitXY 0x7f0900e8
-int id fixed 0x7f0900e9
-int id flip 0x7f0900ea
-int id floating 0x7f0900eb
-int id forever 0x7f0900ec
-int id forgot_password_link 0x7f0900ed
-int id fragment_container_view_tag 0x7f0900ee
-int id frost 0x7f0900ef
-int id fullscreen_header 0x7f0900f0
-int id ghost_view 0x7f0900f1
-int id ghost_view_holder 0x7f0900f2
-int id gone 0x7f0900f3
-int id graph 0x7f0900f4
-int id graph_wrap 0x7f0900f5
-int id group_divider 0x7f0900f6
-int id grouping 0x7f0900f7
-int id groups 0x7f0900f8
-int id header_title 0x7f0900f9
-int id hide_ime_id 0x7f0900fa
-int id hideable 0x7f0900fb
-int id home 0x7f0900fc
-int id homeAsUp 0x7f0900fd
-int id honorRequest 0x7f0900fe
-int id horizontal_only 0x7f0900ff
-int id icon 0x7f090100
-int id icon_group 0x7f090101
-int id icon_only 0x7f090102
-int id ifRoom 0x7f090103
-int id ignore 0x7f090104
-int id ignoreRequest 0x7f090105
-int id image 0x7f090106
-int id immediateStop 0x7f090107
-int id included 0x7f090108
-int id indeterminate 0x7f090109
-int id info 0x7f09010a
-int id input_symptoms 0x7f09010b
-int id invisible 0x7f09010c
-int id inward 0x7f09010d
-int id italic 0x7f09010e
-int id item_touch_helper_previous_elevation 0x7f09010f
-int id jumpToEnd 0x7f090110
-int id jumpToStart 0x7f090111
-int id labeled 0x7f090112
-int id layout 0x7f090113
-int id left 0x7f090114
-int id leftToRight 0x7f090115
-int id legacy 0x7f090116
-int id light 0x7f090117
-int id line1 0x7f090118
-int id line3 0x7f090119
-int id linear 0x7f09011a
-int id listMode 0x7f09011b
-int id list_item 0x7f09011c
-int id locale 0x7f09011d
-int id login_button 0x7f09011e
-int id login_link 0x7f09011f
-int id ltr 0x7f090120
-int id m3_side_sheet 0x7f090121
-int id marquee 0x7f090122
-int id masked 0x7f090123
-int id match_constraint 0x7f090124
-int id match_parent 0x7f090125
-int id material_clock_display 0x7f090126
-int id material_clock_display_and_toggle 0x7f090127
-int id material_clock_face 0x7f090128
-int id material_clock_hand 0x7f090129
-int id material_clock_level 0x7f09012a
-int id material_clock_period_am_button 0x7f09012b
-int id material_clock_period_pm_button 0x7f09012c
-int id material_clock_period_toggle 0x7f09012d
-int id material_hour_text_input 0x7f09012e
-int id material_hour_tv 0x7f09012f
-int id material_label 0x7f090130
-int id material_minute_text_input 0x7f090131
-int id material_minute_tv 0x7f090132
-int id material_textinput_timepicker 0x7f090133
-int id material_timepicker_cancel_button 0x7f090134
-int id material_timepicker_container 0x7f090135
-int id material_timepicker_mode_button 0x7f090136
-int id material_timepicker_ok_button 0x7f090137
-int id material_timepicker_view 0x7f090138
-int id material_value_index 0x7f090139
-int id matrix 0x7f09013a
-int id message 0x7f09013b
-int id middle 0x7f09013c
-int id mini 0x7f09013d
-int id mobile_navigation 0x7f09013e
-int id month_grid 0x7f09013f
-int id month_navigation_bar 0x7f090140
-int id month_navigation_fragment_toggle 0x7f090141
-int id month_navigation_next 0x7f090142
-int id month_navigation_previous 0x7f090143
-int id month_title 0x7f090144
-int id motion_base 0x7f090145
-int id mtrl_anchor_parent 0x7f090146
-int id mtrl_calendar_day_selector_frame 0x7f090147
-int id mtrl_calendar_days_of_week 0x7f090148
-int id mtrl_calendar_frame 0x7f090149
-int id mtrl_calendar_main_pane 0x7f09014a
-int id mtrl_calendar_months 0x7f09014b
-int id mtrl_calendar_selection_frame 0x7f09014c
-int id mtrl_calendar_text_input_frame 0x7f09014d
-int id mtrl_calendar_year_selector_frame 0x7f09014e
-int id mtrl_card_checked_layer_id 0x7f09014f
-int id mtrl_child_content_container 0x7f090150
-int id mtrl_internal_children_alpha_tag 0x7f090151
-int id mtrl_motion_snapshot_view 0x7f090152
-int id mtrl_picker_fullscreen 0x7f090153
-int id mtrl_picker_header 0x7f090154
-int id mtrl_picker_header_selection_text 0x7f090155
-int id mtrl_picker_header_title_and_selection 0x7f090156
-int id mtrl_picker_header_toggle 0x7f090157
-int id mtrl_picker_text_input_date 0x7f090158
-int id mtrl_picker_text_input_range_end 0x7f090159
-int id mtrl_picker_text_input_range_start 0x7f09015a
-int id mtrl_picker_title_text 0x7f09015b
-int id mtrl_view_tag_bottom_padding 0x7f09015c
-int id multiply 0x7f09015d
-int id name_edit_text 0x7f09015e
-int id nav_controller_view_tag 0x7f09015f
-int id nav_host_fragment 0x7f090160
-int id nav_host_fragment_container 0x7f090161
-int id nav_view 0x7f090162
-int id navigation_appointments 0x7f090163
-int id navigation_bar_item_active_indicator_view 0x7f090164
-int id navigation_bar_item_icon_container 0x7f090165
-int id navigation_bar_item_icon_view 0x7f090166
-int id navigation_bar_item_labels_group 0x7f090167
-int id navigation_bar_item_large_label_view 0x7f090168
-int id navigation_bar_item_small_label_view 0x7f090169
-int id navigation_header_container 0x7f09016a
-int id navigation_home 0x7f09016b
-int id navigation_medication 0x7f09016c
-int id navigation_profile 0x7f09016d
-int id navigation_schedule_appointment 0x7f09016e
-int id navigation_sns24 0x7f09016f
-int id never 0x7f090170
-int id neverCompleteToEnd 0x7f090171
-int id neverCompleteToStart 0x7f090172
-int id new_password 0x7f090173
-int id next_med_name 0x7f090174
-int id next_med_time 0x7f090175
-int id noScroll 0x7f090176
-int id noState 0x7f090177
-int id none 0x7f090178
-int id normal 0x7f090179
-int id north 0x7f09017a
-int id notification_background 0x7f09017b
-int id notification_main_column 0x7f09017c
-int id notification_main_column_container 0x7f09017d
-int id off 0x7f09017e
-int id on 0x7f09017f
-int id onInterceptTouchReturnSwipe 0x7f090180
-int id open_search_bar_text_view 0x7f090181
-int id open_search_view_background 0x7f090182
-int id open_search_view_clear_button 0x7f090183
-int id open_search_view_content_container 0x7f090184
-int id open_search_view_divider 0x7f090185
-int id open_search_view_dummy_toolbar 0x7f090186
-int id open_search_view_edit_text 0x7f090187
-int id open_search_view_header_container 0x7f090188
-int id open_search_view_root 0x7f090189
-int id open_search_view_scrim 0x7f09018a
-int id open_search_view_search_prefix 0x7f09018b
-int id open_search_view_status_bar_spacer 0x7f09018c
-int id open_search_view_toolbar 0x7f09018d
-int id open_search_view_toolbar_container 0x7f09018e
-int id outline 0x7f09018f
-int id outward 0x7f090190
-int id overshoot 0x7f090191
-int id packed 0x7f090192
-int id parallax 0x7f090193
-int id parent 0x7f090194
-int id parentPanel 0x7f090195
-int id parentRelative 0x7f090196
-int id parent_matrix 0x7f090197
-int id password_edit_text 0x7f090198
-int id password_toggle 0x7f090199
-int id path 0x7f09019a
-int id pathRelative 0x7f09019b
-int id peekHeight 0x7f09019c
-int id percent 0x7f09019d
-int id pin 0x7f09019e
-int id position 0x7f09019f
-int id postLayout 0x7f0901a0
-int id pressed 0x7f0901a1
-int id profile_age 0x7f0901a2
-int id profile_email 0x7f0901a3
-int id profile_image 0x7f0901a4
-int id profile_name 0x7f0901a5
-int id profile_utente 0x7f0901a6
-int id progress_circular 0x7f0901a7
-int id progress_horizontal 0x7f0901a8
-int id radio 0x7f0901a9
-int id ratio 0x7f0901aa
-int id rectangles 0x7f0901ab
-int id recycler_appointments_future 0x7f0901ac
-int id recycler_appointments_past 0x7f0901ad
-int id recycler_medication 0x7f0901ae
-int id recycler_time_slots 0x7f0901af
-int id register_button 0x7f0901b0
-int id register_link 0x7f0901b1
-int id report_drawn 0x7f0901b2
-int id reset_button 0x7f0901b3
-int id reverseSawtooth 0x7f0901b4
-int id right 0x7f0901b5
-int id rightToLeft 0x7f0901b6
-int id right_icon 0x7f0901b7
-int id right_side 0x7f0901b8
-int id rounded 0x7f0901b9
-int id row_index_key 0x7f0901ba
-int id rtl 0x7f0901bb
-int id save_non_transition_alpha 0x7f0901bc
-int id save_overlay_view 0x7f0901bd
-int id sawtooth 0x7f0901be
-int id scale 0x7f0901bf
-int id screen 0x7f0901c0
-int id scroll 0x7f0901c1
-int id scrollIndicatorDown 0x7f0901c2
-int id scrollIndicatorUp 0x7f0901c3
-int id scrollView 0x7f0901c4
-int id scrollable 0x7f0901c5
-int id search_badge 0x7f0901c6
-int id search_bar 0x7f0901c7
-int id search_button 0x7f0901c8
-int id search_close_btn 0x7f0901c9
-int id search_edit_frame 0x7f0901ca
-int id search_go_btn 0x7f0901cb
-int id search_mag_icon 0x7f0901cc
-int id search_plate 0x7f0901cd
-int id search_src_text 0x7f0901ce
-int id search_voice_btn 0x7f0901cf
-int id select_dialog_listview 0x7f0901d0
-int id selected 0x7f0901d1
-int id selection_type 0x7f0901d2
-int id sharedValueSet 0x7f0901d3
-int id sharedValueUnset 0x7f0901d4
-int id shortcut 0x7f0901d5
-int id showCustom 0x7f0901d6
-int id showHome 0x7f0901d7
-int id showTitle 0x7f0901d8
-int id sin 0x7f0901d9
-int id skipCollapsed 0x7f0901da
-int id skipped 0x7f0901db
-int id slide 0x7f0901dc
-int id sliding_pane_detail_container 0x7f0901dd
-int id sliding_pane_layout 0x7f0901de
-int id snackbar_action 0x7f0901df
-int id snackbar_text 0x7f0901e0
-int id snap 0x7f0901e1
-int id snapMargins 0x7f0901e2
-int id south 0x7f0901e3
-int id spacer 0x7f0901e4
-int id special_effects_controller_view_tag 0x7f0901e5
-int id spline 0x7f0901e6
-int id split_action_bar 0x7f0901e7
-int id spread 0x7f0901e8
-int id spread_inside 0x7f0901e9
-int id spring 0x7f0901ea
-int id square 0x7f0901eb
-int id src_atop 0x7f0901ec
-int id src_in 0x7f0901ed
-int id src_over 0x7f0901ee
-int id standard 0x7f0901ef
-int id start 0x7f0901f0
-int id startHorizontal 0x7f0901f1
-int id startToEnd 0x7f0901f2
-int id startVertical 0x7f0901f3
-int id staticLayout 0x7f0901f4
-int id staticPostLayout 0x7f0901f5
-int id stop 0x7f0901f6
-int id stretch 0x7f0901f7
-int id submenuarrow 0x7f0901f8
-int id submit_area 0x7f0901f9
-int id supportScrollUp 0x7f0901fa
-int id tabMode 0x7f0901fb
-int id tag_accessibility_actions 0x7f0901fc
-int id tag_accessibility_clickable_spans 0x7f0901fd
-int id tag_accessibility_heading 0x7f0901fe
-int id tag_accessibility_pane_title 0x7f0901ff
-int id tag_on_apply_window_listener 0x7f090200
-int id tag_on_receive_content_listener 0x7f090201
-int id tag_on_receive_content_mime_types 0x7f090202
-int id tag_screen_reader_focusable 0x7f090203
-int id tag_state_description 0x7f090204
-int id tag_transition_group 0x7f090205
-int id tag_unhandled_key_event_manager 0x7f090206
-int id tag_unhandled_key_listeners 0x7f090207
-int id tag_window_insets_animation_callback 0x7f090208
-int id text 0x7f090209
-int id text2 0x7f09020a
-int id textEnd 0x7f09020b
-int id textSpacerNoButtons 0x7f09020c
-int id textSpacerNoTitle 0x7f09020d
-int id textStart 0x7f09020e
-int id textTop 0x7f09020f
-int id text_ai_result 0x7f090210
-int id text_date 0x7f090211
-int id text_greeting 0x7f090212
-int id text_input_end_icon 0x7f090213
-int id text_input_error_icon 0x7f090214
-int id text_input_start_icon 0x7f090215
-int id text_med_dosage 0x7f090216
-int id text_med_name 0x7f090217
-int id text_med_notes 0x7f090218
-int id text_med_time 0x7f090219
-int id text_reason 0x7f09021a
-int id text_time 0x7f09021b
-int id text_type 0x7f09021c
-int id textinput_counter 0x7f09021d
-int id textinput_error 0x7f09021e
-int id textinput_helper_text 0x7f09021f
-int id textinput_placeholder 0x7f090220
-int id textinput_prefix_text 0x7f090221
-int id textinput_suffix_text 0x7f090222
-int id time 0x7f090223
-int id title 0x7f090224
-int id titleDividerNoCustom 0x7f090225
-int id title_template 0x7f090226
-int id toggle 0x7f090227
-int id top 0x7f090228
-int id topPanel 0x7f090229
-int id touch_outside 0x7f09022a
-int id transitionToEnd 0x7f09022b
-int id transitionToStart 0x7f09022c
-int id transition_current_scene 0x7f09022d
-int id transition_layout_save 0x7f09022e
-int id transition_position 0x7f09022f
-int id transition_scene_layoutid_cache 0x7f090230
-int id transition_transform 0x7f090231
-int id triangle 0x7f090232
-int id unchecked 0x7f090233
-int id uniform 0x7f090234
-int id unlabeled 0x7f090235
-int id up 0x7f090236
-int id useLogo 0x7f090237
-int id utente_edit_text 0x7f090238
-int id vertical_only 0x7f090239
-int id view_offset_helper 0x7f09023a
-int id view_transition 0x7f09023b
-int id view_tree_lifecycle_owner 0x7f09023c
-int id view_tree_on_back_pressed_dispatcher_owner 0x7f09023d
-int id view_tree_saved_state_registry_owner 0x7f09023e
-int id view_tree_view_model_store_owner 0x7f09023f
-int id visible 0x7f090240
-int id visible_removing_fragment_view_tag 0x7f090241
-int id west 0x7f090242
-int id wide 0x7f090243
-int id withText 0x7f090244
-int id with_icon 0x7f090245
-int id withinBounds 0x7f090246
-int id wrap 0x7f090247
-int id wrap_content 0x7f090248
-int id wrap_content_constrained 0x7f090249
-int id x_left 0x7f09024a
-int id x_right 0x7f09024b
+int id button_find_hospital 0x7f090079
+int id button_logout 0x7f09007a
+int id button_save 0x7f09007b
+int id button_save_password 0x7f09007c
+int id cache_measures 0x7f09007d
+int id callMeasure 0x7f09007e
+int id cancel_button 0x7f09007f
+int id card_next_medication 0x7f090080
+int id carryVelocity 0x7f090081
+int id center 0x7f090082
+int id centerCrop 0x7f090083
+int id centerInside 0x7f090084
+int id center_horizontal 0x7f090085
+int id center_vertical 0x7f090086
+int id chain 0x7f090087
+int id chain2 0x7f090088
+int id chains 0x7f090089
+int id checkbox 0x7f09008a
+int id checkbox_inhalatory 0x7f090252
+int id checkbox_oral 0x7f090253
+int id checkbox_remember_me 0x7f09008b
+int id checkbox_taken 0x7f09008c
+int id checkbox_topical 0x7f090254
+int id checked 0x7f09008d
+int id chronometer 0x7f09008e
+int id circle_center 0x7f09008f
+int id clear_text 0x7f090090
+int id clip_horizontal 0x7f090091
+int id clip_vertical 0x7f090092
+int id clockwise 0x7f090093
+int id closest 0x7f090094
+int id collapseActionView 0x7f090095
+int id compress 0x7f090096
+int id confirm_button 0x7f090097
+int id constraint 0x7f090098
+int id container 0x7f090099
+int id content 0x7f09009a
+int id contentPanel 0x7f09009b
+int id contiguous 0x7f09009c
+int id continuousVelocity 0x7f09009d
+int id coordinator 0x7f09009e
+int id cos 0x7f09009f
+int id counterclockwise 0x7f0900a0
+int id cradle 0x7f0900a1
+int id currentState 0x7f0900a2
+int id custom 0x7f0900a3
+int id customPanel 0x7f0900a4
+int id cut 0x7f0900a5
+int id dark 0x7f0900a6
+int id datePicker 0x7f0900a7
+int id date_picker_actions 0x7f0900a8
+int id decelerate 0x7f0900a9
+int id decelerateAndComplete 0x7f0900aa
+int id decor_content_parent 0x7f0900ab
+int id default_activity_button 0x7f0900ac
+int id deltaRelative 0x7f0900ad
+int id dependency_ordering 0x7f0900ae
+int id design_bottom_sheet 0x7f0900af
+int id design_menu_item_action_area 0x7f0900b0
+int id design_menu_item_action_area_stub 0x7f0900b1
+int id design_menu_item_text 0x7f0900b2
+int id design_navigation_view 0x7f0900b3
+int id dialog_button 0x7f0900b4
+int id dimensions 0x7f0900b5
+int id direct 0x7f0900b6
+int id disableHome 0x7f0900b7
+int id disableIntraAutoTransition 0x7f0900b8
+int id disablePostScroll 0x7f0900b9
+int id disableScroll 0x7f0900ba
+int id disjoint 0x7f0900bb
+int id dragAnticlockwise 0x7f0900bc
+int id dragClockwise 0x7f0900bd
+int id dragDown 0x7f0900be
+int id dragEnd 0x7f0900bf
+int id dragLeft 0x7f0900c0
+int id dragRight 0x7f0900c1
+int id dragStart 0x7f0900c2
+int id dragUp 0x7f0900c3
+int id dropdown_menu 0x7f0900c4
+int id easeIn 0x7f0900c5
+int id easeInOut 0x7f0900c6
+int id easeOut 0x7f0900c7
+int id east 0x7f0900c8
+int id edge 0x7f0900c9
+int id edit_age 0x7f0900ca
+int id edit_email 0x7f0900cb
+int id edit_med_name 0x7f0900cd
+int id edit_med_notes 0x7f0900ce
+int id edit_name 0x7f0900cf
+int id edit_profile_image 0x7f0900d0
+int id edit_query 0x7f0900d1
+int id edit_reason 0x7f0900d2
+int id edit_text_id 0x7f0900d3
+int id edit_utente 0x7f0900d4
+int id elastic 0x7f0900d5
+int id email_edit_text 0x7f0900d6
+int id embed 0x7f0900d7
+int id end 0x7f0900d8
+int id endToStart 0x7f0900d9
+int id enterAlways 0x7f0900da
+int id enterAlwaysCollapsed 0x7f0900db
+int id exitUntilCollapsed 0x7f0900dc
+int id expand_activities_button 0x7f0900dd
+int id expanded_menu 0x7f0900de
+int id fab_add_medication 0x7f0900df
+int id fade 0x7f0900e0
+int id fill 0x7f0900e1
+int id fill_horizontal 0x7f0900e2
+int id fill_vertical 0x7f0900e3
+int id filled 0x7f0900e4
+int id fingerprint_description 0x7f0900e5
+int id fingerprint_error 0x7f0900e6
+int id fingerprint_icon 0x7f0900e7
+int id fingerprint_subtitle 0x7f0900e8
+int id fitCenter 0x7f0900e9
+int id fitEnd 0x7f0900ea
+int id fitStart 0x7f0900eb
+int id fitToContents 0x7f0900ec
+int id fitXY 0x7f0900ed
+int id fixed 0x7f0900ee
+int id flip 0x7f0900ef
+int id floating 0x7f0900f0
+int id forever 0x7f0900f1
+int id forgot_password_link 0x7f0900f2
+int id fragment_container_view_tag 0x7f0900f3
+int id frost 0x7f0900f4
+int id fullscreen_header 0x7f0900f5
+int id ghost_view 0x7f0900f6
+int id ghost_view_holder 0x7f0900f7
+int id gone 0x7f0900f8
+int id graph 0x7f0900f9
+int id graph_wrap 0x7f0900fa
+int id group_divider 0x7f0900fb
+int id grouping 0x7f0900fc
+int id groups 0x7f0900fd
+int id header_title 0x7f0900fe
+int id hide_ime_id 0x7f0900ff
+int id hideable 0x7f090100
+int id home 0x7f090101
+int id homeAsUp 0x7f090102
+int id honorRequest 0x7f090103
+int id horizontal_only 0x7f090104
+int id icon 0x7f090105
+int id icon_group 0x7f090106
+int id icon_only 0x7f090107
+int id ifRoom 0x7f090108
+int id ignore 0x7f090109
+int id ignoreRequest 0x7f09010a
+int id image 0x7f09010b
+int id immediateStop 0x7f09010c
+int id included 0x7f09010d
+int id indeterminate 0x7f09010e
+int id info 0x7f09010f
+int id input_symptoms 0x7f090110
+int id invisible 0x7f090111
+int id inward 0x7f090112
+int id italic 0x7f090113
+int id item_touch_helper_previous_elevation 0x7f090114
+int id jumpToEnd 0x7f090115
+int id jumpToStart 0x7f090116
+int id labeled 0x7f090117
+int id layout 0x7f090118
+int id left 0x7f090119
+int id leftToRight 0x7f09011a
+int id legacy 0x7f09011b
+int id light 0x7f09011c
+int id line1 0x7f09011d
+int id line3 0x7f09011e
+int id linear 0x7f09011f
+int id listMode 0x7f090120
+int id list_item 0x7f090121
+int id locale 0x7f090122
+int id login_button 0x7f090123
+int id login_link 0x7f090124
+int id ltr 0x7f090125
+int id m3_side_sheet 0x7f090126
+int id marquee 0x7f090127
+int id masked 0x7f090128
+int id match_constraint 0x7f090129
+int id match_parent 0x7f09012a
+int id material_clock_display 0x7f09012b
+int id material_clock_display_and_toggle 0x7f09012c
+int id material_clock_face 0x7f09012d
+int id material_clock_hand 0x7f09012e
+int id material_clock_level 0x7f09012f
+int id material_clock_period_am_button 0x7f090130
+int id material_clock_period_pm_button 0x7f090131
+int id material_clock_period_toggle 0x7f090132
+int id material_hour_text_input 0x7f090133
+int id material_hour_tv 0x7f090134
+int id material_label 0x7f090135
+int id material_minute_text_input 0x7f090136
+int id material_minute_tv 0x7f090137
+int id material_textinput_timepicker 0x7f090138
+int id material_timepicker_cancel_button 0x7f090139
+int id material_timepicker_container 0x7f09013a
+int id material_timepicker_mode_button 0x7f09013b
+int id material_timepicker_ok_button 0x7f09013c
+int id material_timepicker_view 0x7f09013d
+int id material_value_index 0x7f09013e
+int id matrix 0x7f09013f
+int id message 0x7f090140
+int id middle 0x7f090141
+int id mini 0x7f090142
+int id mobile_navigation 0x7f090143
+int id month_grid 0x7f090144
+int id month_navigation_bar 0x7f090145
+int id month_navigation_fragment_toggle 0x7f090146
+int id month_navigation_next 0x7f090147
+int id month_navigation_previous 0x7f090148
+int id month_title 0x7f090149
+int id motion_base 0x7f09014a
+int id mtrl_anchor_parent 0x7f09014b
+int id mtrl_calendar_day_selector_frame 0x7f09014c
+int id mtrl_calendar_days_of_week 0x7f09014d
+int id mtrl_calendar_frame 0x7f09014e
+int id mtrl_calendar_main_pane 0x7f09014f
+int id mtrl_calendar_months 0x7f090150
+int id mtrl_calendar_selection_frame 0x7f090151
+int id mtrl_calendar_text_input_frame 0x7f090152
+int id mtrl_calendar_year_selector_frame 0x7f090153
+int id mtrl_card_checked_layer_id 0x7f090154
+int id mtrl_child_content_container 0x7f090155
+int id mtrl_internal_children_alpha_tag 0x7f090156
+int id mtrl_motion_snapshot_view 0x7f090157
+int id mtrl_picker_fullscreen 0x7f090158
+int id mtrl_picker_header 0x7f090159
+int id mtrl_picker_header_selection_text 0x7f09015a
+int id mtrl_picker_header_title_and_selection 0x7f09015b
+int id mtrl_picker_header_toggle 0x7f09015c
+int id mtrl_picker_text_input_date 0x7f09015d
+int id mtrl_picker_text_input_range_end 0x7f09015e
+int id mtrl_picker_text_input_range_start 0x7f09015f
+int id mtrl_picker_title_text 0x7f090160
+int id mtrl_view_tag_bottom_padding 0x7f090161
+int id multiply 0x7f090162
+int id name_edit_text 0x7f090163
+int id nav_controller_view_tag 0x7f090164
+int id nav_host_fragment 0x7f090165
+int id nav_host_fragment_container 0x7f090166
+int id nav_view 0x7f090167
+int id navigation_appointments 0x7f090168
+int id navigation_bar_item_active_indicator_view 0x7f090169
+int id navigation_bar_item_icon_container 0x7f09016a
+int id navigation_bar_item_icon_view 0x7f09016b
+int id navigation_bar_item_labels_group 0x7f09016c
+int id navigation_bar_item_large_label_view 0x7f09016d
+int id navigation_bar_item_small_label_view 0x7f09016e
+int id navigation_header_container 0x7f09016f
+int id navigation_home 0x7f090170
+int id navigation_medication 0x7f090171
+int id navigation_profile 0x7f090172
+int id navigation_schedule_appointment 0x7f090173
+int id navigation_sns24 0x7f090174
+int id never 0x7f090175
+int id neverCompleteToEnd 0x7f090176
+int id neverCompleteToStart 0x7f090177
+int id new_password 0x7f090178
+int id next_med_name 0x7f090179
+int id next_med_time 0x7f09017a
+int id noScroll 0x7f09017b
+int id noState 0x7f09017c
+int id none 0x7f09017d
+int id normal 0x7f09017e
+int id north 0x7f09017f
+int id notification_background 0x7f090180
+int id notification_main_column 0x7f090181
+int id notification_main_column_container 0x7f090182
+int id off 0x7f090183
+int id on 0x7f090184
+int id onInterceptTouchReturnSwipe 0x7f090185
+int id open_search_bar_text_view 0x7f090186
+int id open_search_view_background 0x7f090187
+int id open_search_view_clear_button 0x7f090188
+int id open_search_view_content_container 0x7f090189
+int id open_search_view_divider 0x7f09018a
+int id open_search_view_dummy_toolbar 0x7f09018b
+int id open_search_view_edit_text 0x7f09018c
+int id open_search_view_header_container 0x7f09018d
+int id open_search_view_root 0x7f09018e
+int id open_search_view_scrim 0x7f09018f
+int id open_search_view_search_prefix 0x7f090190
+int id open_search_view_status_bar_spacer 0x7f090191
+int id open_search_view_toolbar 0x7f090192
+int id open_search_view_toolbar_container 0x7f090193
+int id outline 0x7f090194
+int id outward 0x7f090195
+int id overshoot 0x7f090196
+int id packed 0x7f090197
+int id parallax 0x7f090198
+int id parent 0x7f090199
+int id parentPanel 0x7f09019a
+int id parentRelative 0x7f09019b
+int id parent_matrix 0x7f09019c
+int id password_edit_text 0x7f09019d
+int id password_toggle 0x7f09019e
+int id path 0x7f09019f
+int id pathRelative 0x7f0901a0
+int id peekHeight 0x7f0901a1
+int id percent 0x7f0901a2
+int id pin 0x7f0901a3
+int id position 0x7f0901a4
+int id postLayout 0x7f0901a5
+int id pressed 0x7f0901a6
+int id profile_age 0x7f0901a7
+int id profile_email 0x7f0901a8
+int id profile_image 0x7f0901a9
+int id profile_name 0x7f0901aa
+int id profile_utente 0x7f0901ab
+int id progress_circular 0x7f0901ac
+int id progress_horizontal 0x7f0901ad
+int id radio 0x7f0901ae
+int id ratio 0x7f0901af
+int id rectangles 0x7f0901b0
+int id recycler_appointments_future 0x7f0901b1
+int id recycler_appointments_past 0x7f0901b2
+int id recycler_medication 0x7f0901b3
+int id recycler_time_slots 0x7f0901b4
+int id register_button 0x7f0901b5
+int id register_link 0x7f0901b6
+int id report_drawn 0x7f0901b7
+int id reset_button 0x7f0901b8
+int id reverseSawtooth 0x7f0901b9
+int id right 0x7f0901ba
+int id rightToLeft 0x7f0901bb
+int id right_icon 0x7f0901bc
+int id right_side 0x7f0901bd
+int id rounded 0x7f0901be
+int id row_index_key 0x7f0901bf
+int id rtl 0x7f0901c0
+int id save_non_transition_alpha 0x7f0901c1
+int id save_overlay_view 0x7f0901c2
+int id sawtooth 0x7f0901c3
+int id scale 0x7f0901c4
+int id screen 0x7f0901c5
+int id scroll 0x7f0901c6
+int id scrollIndicatorDown 0x7f0901c7
+int id scrollIndicatorUp 0x7f0901c8
+int id scrollView 0x7f0901c9
+int id scrollable 0x7f0901ca
+int id search_badge 0x7f0901cb
+int id search_bar 0x7f0901cc
+int id search_button 0x7f0901cd
+int id search_close_btn 0x7f0901ce
+int id search_edit_frame 0x7f0901cf
+int id search_go_btn 0x7f0901d0
+int id search_mag_icon 0x7f0901d1
+int id search_plate 0x7f0901d2
+int id search_src_text 0x7f0901d3
+int id search_voice_btn 0x7f0901d4
+int id select_dialog_listview 0x7f0901d5
+int id selected 0x7f0901d6
+int id selection_type 0x7f0901d7
+int id sharedValueSet 0x7f0901d8
+int id sharedValueUnset 0x7f0901d9
+int id shortcut 0x7f0901da
+int id showCustom 0x7f0901db
+int id showHome 0x7f0901dc
+int id showTitle 0x7f0901dd
+int id sin 0x7f0901de
+int id skipCollapsed 0x7f0901df
+int id skipped 0x7f0901e0
+int id slide 0x7f0901e1
+int id sliding_pane_detail_container 0x7f0901e2
+int id sliding_pane_layout 0x7f0901e3
+int id snackbar_action 0x7f0901e4
+int id snackbar_text 0x7f0901e5
+int id snap 0x7f0901e6
+int id snapMargins 0x7f0901e7
+int id south 0x7f0901e8
+int id spacer 0x7f0901e9
+int id special_effects_controller_view_tag 0x7f0901ea
+int id spline 0x7f0901eb
+int id split_action_bar 0x7f0901ec
+int id spread 0x7f0901ed
+int id spread_inside 0x7f0901ee
+int id spring 0x7f0901ef
+int id square 0x7f0901f0
+int id src_atop 0x7f0901f1
+int id src_in 0x7f0901f2
+int id src_over 0x7f0901f3
+int id standard 0x7f0901f4
+int id start 0x7f0901f5
+int id startHorizontal 0x7f0901f6
+int id startToEnd 0x7f0901f7
+int id startVertical 0x7f0901f8
+int id staticLayout 0x7f0901f9
+int id staticPostLayout 0x7f0901fa
+int id stop 0x7f0901fb
+int id stretch 0x7f0901fc
+int id submenuarrow 0x7f0901fd
+int id submit_area 0x7f0901fe
+int id supportScrollUp 0x7f0901ff
+int id tabMode 0x7f090200
+int id tag_accessibility_actions 0x7f090201
+int id tag_accessibility_clickable_spans 0x7f090202
+int id tag_accessibility_heading 0x7f090203
+int id tag_accessibility_pane_title 0x7f090204
+int id tag_on_apply_window_listener 0x7f090205
+int id tag_on_receive_content_listener 0x7f090206
+int id tag_on_receive_content_mime_types 0x7f090207
+int id tag_screen_reader_focusable 0x7f090208
+int id tag_state_description 0x7f090209
+int id tag_transition_group 0x7f09020a
+int id tag_unhandled_key_event_manager 0x7f09020b
+int id tag_unhandled_key_listeners 0x7f09020c
+int id tag_window_insets_animation_callback 0x7f09020d
+int id text 0x7f09020e
+int id text2 0x7f09020f
+int id textEnd 0x7f090210
+int id textSpacerNoButtons 0x7f090211
+int id textSpacerNoTitle 0x7f090212
+int id textStart 0x7f090213
+int id textTop 0x7f090214
+int id text_ai_result 0x7f090215
+int id text_date 0x7f090216
+int id text_greeting 0x7f090217
+int id text_input_end_icon 0x7f090218
+int id text_input_error_icon 0x7f090219
+int id text_input_start_icon 0x7f09021a
+int id text_med_dosage 0x7f09021b
+int id text_med_name 0x7f09021c
+int id text_med_notes 0x7f09021d
+int id text_med_time 0x7f09021e
+int id text_reason 0x7f09021f
+int id text_time 0x7f090220
+int id text_title 0x7f090221
+int id text_type 0x7f090222
+int id textinput_counter 0x7f090223
+int id textinput_error 0x7f090224
+int id textinput_helper_text 0x7f090225
+int id textinput_placeholder 0x7f090226
+int id textinput_prefix_text 0x7f090227
+int id textinput_suffix_text 0x7f090228
+int id time 0x7f090229
+int id title 0x7f09022a
+int id titleDividerNoCustom 0x7f09022b
+int id title_template 0x7f09022c
+int id toggle 0x7f09022d
+int id top 0x7f09022e
+int id topPanel 0x7f09022f
+int id touch_outside 0x7f090230
+int id transitionToEnd 0x7f090231
+int id transitionToStart 0x7f090232
+int id transition_current_scene 0x7f090233
+int id transition_layout_save 0x7f090234
+int id transition_position 0x7f090235
+int id transition_scene_layoutid_cache 0x7f090236
+int id transition_transform 0x7f090237
+int id triangle 0x7f090238
+int id unchecked 0x7f090239
+int id uniform 0x7f09023a
+int id unlabeled 0x7f09023b
+int id up 0x7f09023c
+int id useLogo 0x7f09023d
+int id utente_edit_text 0x7f09023e
+int id vertical_only 0x7f09023f
+int id view_offset_helper 0x7f090240
+int id view_transition 0x7f090241
+int id view_tree_lifecycle_owner 0x7f090242
+int id view_tree_on_back_pressed_dispatcher_owner 0x7f090243
+int id view_tree_saved_state_registry_owner 0x7f090244
+int id view_tree_view_model_store_owner 0x7f090245
+int id visible 0x7f090246
+int id visible_removing_fragment_view_tag 0x7f090247
+int id west 0x7f090248
+int id wide 0x7f090249
+int id withText 0x7f09024a
+int id with_icon 0x7f09024b
+int id withinBounds 0x7f09024c
+int id wrap 0x7f09024d
+int id wrap_content 0x7f09024e
+int id wrap_content_constrained 0x7f09024f
+int id x_left 0x7f090250
+int id x_right 0x7f090251
int integer abc_config_activityDefaultDur 0x7f0a0000
int integer abc_config_activityShortDur 0x7f0a0001
int integer app_bar_elevation_anim_duration 0x7f0a0002
@@ -3925,81 +3933,82 @@ int layout design_navigation_menu 0x7f0c002e
int layout design_navigation_menu_item 0x7f0c002f
int layout design_text_input_end_icon 0x7f0c0030
int layout design_text_input_start_icon 0x7f0c0031
-int layout dialog_change_password 0x7f0c0032
-int layout dialog_edit_profile 0x7f0c0033
-int layout fingerprint_dialog_layout 0x7f0c0034
-int layout fragment_appointments 0x7f0c0035
-int layout fragment_home 0x7f0c0036
-int layout fragment_medication 0x7f0c0037
-int layout fragment_profile 0x7f0c0038
-int layout fragment_schedule_appointment 0x7f0c0039
-int layout fragment_sns24 0x7f0c003a
-int layout ime_base_split_test_activity 0x7f0c003b
-int layout ime_secondary_split_test_activity 0x7f0c003c
-int layout item_appointment 0x7f0c003d
-int layout item_medication 0x7f0c003e
-int layout item_time_slot 0x7f0c003f
-int layout m3_alert_dialog 0x7f0c0040
-int layout m3_alert_dialog_actions 0x7f0c0041
-int layout m3_alert_dialog_title 0x7f0c0042
-int layout m3_auto_complete_simple_item 0x7f0c0043
-int layout m3_side_sheet_dialog 0x7f0c0044
-int layout material_chip_input_combo 0x7f0c0045
-int layout material_clock_display 0x7f0c0046
-int layout material_clock_display_divider 0x7f0c0047
-int layout material_clock_period_toggle 0x7f0c0048
-int layout material_clock_period_toggle_land 0x7f0c0049
-int layout material_clockface_textview 0x7f0c004a
-int layout material_clockface_view 0x7f0c004b
-int layout material_radial_view_group 0x7f0c004c
-int layout material_textinput_timepicker 0x7f0c004d
-int layout material_time_chip 0x7f0c004e
-int layout material_time_input 0x7f0c004f
-int layout material_timepicker 0x7f0c0050
-int layout material_timepicker_dialog 0x7f0c0051
-int layout material_timepicker_textinput_display 0x7f0c0052
-int layout mtrl_alert_dialog 0x7f0c0053
-int layout mtrl_alert_dialog_actions 0x7f0c0054
-int layout mtrl_alert_dialog_title 0x7f0c0055
-int layout mtrl_alert_select_dialog_item 0x7f0c0056
-int layout mtrl_alert_select_dialog_multichoice 0x7f0c0057
-int layout mtrl_alert_select_dialog_singlechoice 0x7f0c0058
-int layout mtrl_auto_complete_simple_item 0x7f0c0059
-int layout mtrl_calendar_day 0x7f0c005a
-int layout mtrl_calendar_day_of_week 0x7f0c005b
-int layout mtrl_calendar_days_of_week 0x7f0c005c
-int layout mtrl_calendar_horizontal 0x7f0c005d
-int layout mtrl_calendar_month 0x7f0c005e
-int layout mtrl_calendar_month_labeled 0x7f0c005f
-int layout mtrl_calendar_month_navigation 0x7f0c0060
-int layout mtrl_calendar_months 0x7f0c0061
-int layout mtrl_calendar_vertical 0x7f0c0062
-int layout mtrl_calendar_year 0x7f0c0063
-int layout mtrl_layout_snackbar 0x7f0c0064
-int layout mtrl_layout_snackbar_include 0x7f0c0065
-int layout mtrl_navigation_rail_item 0x7f0c0066
-int layout mtrl_picker_actions 0x7f0c0067
-int layout mtrl_picker_dialog 0x7f0c0068
-int layout mtrl_picker_fullscreen 0x7f0c0069
-int layout mtrl_picker_header_dialog 0x7f0c006a
-int layout mtrl_picker_header_fullscreen 0x7f0c006b
-int layout mtrl_picker_header_selection_text 0x7f0c006c
-int layout mtrl_picker_header_title_text 0x7f0c006d
-int layout mtrl_picker_header_toggle 0x7f0c006e
-int layout mtrl_picker_text_input_date 0x7f0c006f
-int layout mtrl_picker_text_input_date_range 0x7f0c0070
-int layout mtrl_search_bar 0x7f0c0071
-int layout mtrl_search_view 0x7f0c0072
-int layout notification_action 0x7f0c0073
-int layout notification_action_tombstone 0x7f0c0074
-int layout notification_template_custom_big 0x7f0c0075
-int layout notification_template_icon_group 0x7f0c0076
-int layout notification_template_part_chronometer 0x7f0c0077
-int layout notification_template_part_time 0x7f0c0078
-int layout select_dialog_item_material 0x7f0c0079
-int layout select_dialog_multichoice_material 0x7f0c007a
-int layout select_dialog_singlechoice_material 0x7f0c007b
-int layout support_simple_spinner_dropdown_item 0x7f0c007c
+int layout dialog_add_medication 0x7f0c0032
+int layout dialog_change_password 0x7f0c0033
+int layout dialog_edit_profile 0x7f0c0034
+int layout fingerprint_dialog_layout 0x7f0c0035
+int layout fragment_appointments 0x7f0c0036
+int layout fragment_home 0x7f0c0037
+int layout fragment_medication 0x7f0c0038
+int layout fragment_profile 0x7f0c0039
+int layout fragment_schedule_appointment 0x7f0c003a
+int layout fragment_sns24 0x7f0c003b
+int layout ime_base_split_test_activity 0x7f0c003c
+int layout ime_secondary_split_test_activity 0x7f0c003d
+int layout item_appointment 0x7f0c003e
+int layout item_medication 0x7f0c003f
+int layout item_time_slot 0x7f0c0040
+int layout m3_alert_dialog 0x7f0c0041
+int layout m3_alert_dialog_actions 0x7f0c0042
+int layout m3_alert_dialog_title 0x7f0c0043
+int layout m3_auto_complete_simple_item 0x7f0c0044
+int layout m3_side_sheet_dialog 0x7f0c0045
+int layout material_chip_input_combo 0x7f0c0046
+int layout material_clock_display 0x7f0c0047
+int layout material_clock_display_divider 0x7f0c0048
+int layout material_clock_period_toggle 0x7f0c0049
+int layout material_clock_period_toggle_land 0x7f0c004a
+int layout material_clockface_textview 0x7f0c004b
+int layout material_clockface_view 0x7f0c004c
+int layout material_radial_view_group 0x7f0c004d
+int layout material_textinput_timepicker 0x7f0c004e
+int layout material_time_chip 0x7f0c004f
+int layout material_time_input 0x7f0c0050
+int layout material_timepicker 0x7f0c0051
+int layout material_timepicker_dialog 0x7f0c0052
+int layout material_timepicker_textinput_display 0x7f0c0053
+int layout mtrl_alert_dialog 0x7f0c0054
+int layout mtrl_alert_dialog_actions 0x7f0c0055
+int layout mtrl_alert_dialog_title 0x7f0c0056
+int layout mtrl_alert_select_dialog_item 0x7f0c0057
+int layout mtrl_alert_select_dialog_multichoice 0x7f0c0058
+int layout mtrl_alert_select_dialog_singlechoice 0x7f0c0059
+int layout mtrl_auto_complete_simple_item 0x7f0c005a
+int layout mtrl_calendar_day 0x7f0c005b
+int layout mtrl_calendar_day_of_week 0x7f0c005c
+int layout mtrl_calendar_days_of_week 0x7f0c005d
+int layout mtrl_calendar_horizontal 0x7f0c005e
+int layout mtrl_calendar_month 0x7f0c005f
+int layout mtrl_calendar_month_labeled 0x7f0c0060
+int layout mtrl_calendar_month_navigation 0x7f0c0061
+int layout mtrl_calendar_months 0x7f0c0062
+int layout mtrl_calendar_vertical 0x7f0c0063
+int layout mtrl_calendar_year 0x7f0c0064
+int layout mtrl_layout_snackbar 0x7f0c0065
+int layout mtrl_layout_snackbar_include 0x7f0c0066
+int layout mtrl_navigation_rail_item 0x7f0c0067
+int layout mtrl_picker_actions 0x7f0c0068
+int layout mtrl_picker_dialog 0x7f0c0069
+int layout mtrl_picker_fullscreen 0x7f0c006a
+int layout mtrl_picker_header_dialog 0x7f0c006b
+int layout mtrl_picker_header_fullscreen 0x7f0c006c
+int layout mtrl_picker_header_selection_text 0x7f0c006d
+int layout mtrl_picker_header_title_text 0x7f0c006e
+int layout mtrl_picker_header_toggle 0x7f0c006f
+int layout mtrl_picker_text_input_date 0x7f0c0070
+int layout mtrl_picker_text_input_date_range 0x7f0c0071
+int layout mtrl_search_bar 0x7f0c0072
+int layout mtrl_search_view 0x7f0c0073
+int layout notification_action 0x7f0c0074
+int layout notification_action_tombstone 0x7f0c0075
+int layout notification_template_custom_big 0x7f0c0076
+int layout notification_template_icon_group 0x7f0c0077
+int layout notification_template_part_chronometer 0x7f0c0078
+int layout notification_template_part_time 0x7f0c0079
+int layout select_dialog_item_material 0x7f0c007a
+int layout select_dialog_multichoice_material 0x7f0c007b
+int layout select_dialog_singlechoice_material 0x7f0c007c
+int layout support_simple_spinner_dropdown_item 0x7f0c007d
int menu bottom_nav_menu 0x7f0e0000
int navigation mobile_navigation 0x7f0f0000
int plurals mtrl_badge_content_description 0x7f100000
diff --git a/app/build/intermediates/stable_resource_ids_file/debug/processDebugResources/stableIds.txt b/app/build/intermediates/stable_resource_ids_file/debug/processDebugResources/stableIds.txt
index fd3ad72..545edee 100644
--- a/app/build/intermediates/stable_resource_ids_file/debug/processDebugResources/stableIds.txt
+++ b/app/build/intermediates/stable_resource_ids_file/debug/processDebugResources/stableIds.txt
@@ -1,1926 +1,2194 @@
-com.example.cuida:styleable/ViewStubCompat = 0x7f1400a8
-com.example.cuida:styleable/ViewPager2 = 0x7f1400a7
-com.example.cuida:styleable/View = 0x7f1400a5
-com.example.cuida:styleable/Variant = 0x7f1400a4
-com.example.cuida:styleable/Tooltip = 0x7f1400a1
-com.example.cuida:styleable/ThemeEnforcement = 0x7f14009f
-com.example.cuida:styleable/TextInputLayout = 0x7f14009e
-com.example.cuida:styleable/TextEffects = 0x7f14009c
-com.example.cuida:styleable/TabItem = 0x7f140099
-com.example.cuida:styleable/State = 0x7f140093
-com.example.cuida:styleable/SplitPairFilter = 0x7f140090
-com.example.cuida:styleable/Snackbar = 0x7f14008d
-com.example.cuida:styleable/SignInButton = 0x7f14008b
-com.example.cuida:styleable/ShapeAppearance = 0x7f140088
-com.example.cuida:styleable/SearchView = 0x7f140087
-com.example.cuida:styleable/ScrimInsetsFrameLayout = 0x7f140084
-com.example.cuida:styleable/Navigator = 0x7f14007a
-com.example.cuida:styleable/NavInclude = 0x7f140075
-com.example.cuida:styleable/NavHostFragment = 0x7f140074
-com.example.cuida:styleable/MotionTelltales = 0x7f14006e
-com.example.cuida:styleable/MotionScene = 0x7f14006d
-com.example.cuida:styleable/MotionLayout = 0x7f14006c
-com.example.cuida:styleable/MotionLabel = 0x7f14006b
-com.example.cuida:styleable/MenuItem = 0x7f140065
-com.example.cuida:styleable/MenuGroup = 0x7f140064
-com.example.cuida:styleable/MaterialToolbar = 0x7f140063
-com.example.cuida:styleable/MaterialShape = 0x7f14005e
-com.example.cuida:styleable/MaterialCalendar = 0x7f140057
-com.example.cuida:styleable/MaterialButton = 0x7f140055
-com.example.cuida:styleable/MaterialAutoCompleteTextView = 0x7f140054
-com.example.cuida:styleable/LinearLayoutCompat = 0x7f14004d
-com.example.cuida:styleable/KeyPosition = 0x7f140049
-com.example.cuida:styleable/KeyFrame = 0x7f140046
-com.example.cuida:styleable/GradientColor = 0x7f140040
-com.example.cuida:styleable/ForegroundLinearLayout = 0x7f14003c
-com.example.cuida:styleable/FontFamilyFont = 0x7f14003b
-com.example.cuida:styleable/FontFamily = 0x7f14003a
-com.example.cuida:styleable/FlowLayout = 0x7f140039
-com.example.cuida:styleable/FloatingActionButton_Behavior_Layout = 0x7f140038
-com.example.cuida:styleable/ExtendedFloatingActionButton = 0x7f140035
-com.example.cuida:styleable/CoordinatorLayout_Layout = 0x7f140030
-com.example.cuida:styleable/CoordinatorLayout = 0x7f14002f
-com.example.cuida:styleable/ConstraintSet = 0x7f14002e
-com.example.cuida:styleable/ConstraintLayout_ReactiveGuide = 0x7f14002b
-com.example.cuida:styleable/Constraint = 0x7f140029
-com.example.cuida:styleable/ColorStateListItem = 0x7f140027
-com.example.cuida:styleable/CollapsingToolbarLayout_Layout = 0x7f140026
-com.example.cuida:styleable/CollapsingToolbarLayout = 0x7f140025
-com.example.cuida:styleable/Carousel = 0x7f14001e
-com.example.cuida:styleable/Capability = 0x7f14001c
-com.example.cuida:styleable/BottomSheetBehavior_Layout = 0x7f14001a
-com.example.cuida:styleable/AppCompatImageView = 0x7f140011
-com.example.cuida:styleable/AppBarLayout_Layout = 0x7f14000f
-com.example.cuida:styleable/ClockHandView = 0x7f140024
-com.example.cuida:styleable/AppBarLayoutStates = 0x7f14000e
-com.example.cuida:styleable/AnimatedStateListDrawableTransition = 0x7f14000c
-com.example.cuida:styleable/AnimatedStateListDrawableItem = 0x7f14000b
-com.example.cuida:styleable/ActivityRule = 0x7f140008
-com.example.cuida:styleable/ActivityFilter = 0x7f140006
-com.example.cuida:styleable/ActivityChooserView = 0x7f140005
-com.example.cuida:styleable/ActionMode = 0x7f140004
-com.example.cuida:styleable/ActionMenuView = 0x7f140003
-com.example.cuida:styleable/ActionMenuItemView = 0x7f140002
-com.example.cuida:styleable/ActionBarLayout = 0x7f140001
+com.example.cuida:id/checkbox_oral = 0x7f090253
+com.example.cuida:id/icon = 0x7f090105
+com.example.cuida:style/Widget.Material3.MaterialTimePicker.Display.TextInputEditText = 0x7f1303b4
com.example.cuida:style/Widget.MaterialComponents.Toolbar = 0x7f13045b
-com.example.cuida:style/Widget.MaterialComponents.TimePicker.ImageButton.ShapeAppearance = 0x7f13045a
-com.example.cuida:style/Widget.MaterialComponents.TimePicker.ImageButton = 0x7f130459
-com.example.cuida:style/Widget.MaterialComponents.TimePicker.Display = 0x7f130454
-com.example.cuida:style/Widget.MaterialComponents.TimePicker.Button = 0x7f130452
+com.example.cuida:color/material_harmonized_color_on_error_container = 0x7f06027c
+com.example.cuida:id/search_voice_btn = 0x7f0901d4
+com.example.cuida:style/ThemeOverlay.Material3.Dialog.Alert = 0x7f130298
+com.example.cuida:styleable/ActionMenuView = 0x7f140003
+com.example.cuida:id/startVertical = 0x7f0901f8
+com.example.cuida:style/ThemeOverlay.Material3.DayNight.SideSheetDialog = 0x7f130296
+com.example.cuida:id/expand_activities_button = 0x7f0900dd
+com.example.cuida:id/design_menu_item_action_area_stub = 0x7f0900b1
+com.example.cuida:macro/m3_comp_search_view_header_supporting_text_type = 0x7f0d00f9
+com.example.cuida:dimen/m3_comp_switch_selected_hover_state_layer_opacity = 0x7f070192
+com.example.cuida:style/Widget.MaterialComponents.BottomSheet = 0x7f1303f5
+com.example.cuida:dimen/m3_comp_secondary_navigation_tab_focus_state_layer_opacity = 0x7f070178
+com.example.cuida:style/Theme.Design.Light.NoActionBar = 0x7f130226
+com.example.cuida:macro/m3_comp_suggestion_chip_label_text_type = 0x7f0d0119
+com.example.cuida:styleable/TextInputLayout = 0x7f14009e
+com.example.cuida:string/error_icon_content_description = 0x7f12004b
+com.example.cuida:style/Theme.MaterialComponents.Light = 0x7f130261
com.example.cuida:style/Widget.MaterialComponents.TimePicker = 0x7f130451
-com.example.cuida:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox = 0x7f13044c
-com.example.cuida:style/Widget.MaterialComponents.TextInputLayout.FilledBox = 0x7f130448
-com.example.cuida:style/Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense = 0x7f130447
-com.example.cuida:style/Widget.MaterialComponents.TextInputEditText.OutlinedBox = 0x7f130446
+com.example.cuida:styleable/Constraint = 0x7f140029
+com.example.cuida:style/Base.V7.Widget.AppCompat.AutoCompleteTextView = 0x7f1300bf
+com.example.cuida:macro/m3_comp_top_app_bar_small_container_color = 0x7f0d0170
+com.example.cuida:style/Widget.AppCompat.Light.ActivityChooserView = 0x7f13030d
+com.example.cuida:macro/m3_comp_filter_chip_label_text_type = 0x7f0d0059
+com.example.cuida:style/Base.V22.Theme.AppCompat = 0x7f1300ad
+com.example.cuida:dimen/highlight_alpha_material_colored = 0x7f070096
+com.example.cuida:string/bottomsheet_drag_handle_clicked = 0x7f120026
+com.example.cuida:style/TextAppearance.AppCompat.Medium = 0x7f1301a4
+com.example.cuida:style/Widget.Material3.ExtendedFloatingActionButton.Tertiary = 0x7f130385
+com.example.cuida:styleable/FloatingActionButton_Behavior_Layout = 0x7f140038
+com.example.cuida:styleable/CollapsingToolbarLayout_Layout = 0x7f140026
+com.example.cuida:style/Widget.MaterialComponents.Button.UnelevatedButton.Icon = 0x7f130402
+com.example.cuida:style/Base.V26.Widget.AppCompat.Toolbar = 0x7f1300b7
+com.example.cuida:style/AlertDialog.AppCompat = 0x7f130000
+com.example.cuida:style/Base.Widget.AppCompat.RatingBar.Small = 0x7f1300f1
+com.example.cuida:macro/m3_comp_sheet_side_docked_standard_container_color = 0x7f0d010b
+com.example.cuida:styleable/MotionTelltales = 0x7f14006e
+com.example.cuida:style/ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f1302c9
+com.example.cuida:id/button_cancel = 0x7f090075
+com.example.cuida:styleable/Navigator = 0x7f14007a
+com.example.cuida:styleable/MenuGroup = 0x7f140064
+com.example.cuida:dimen/m3_btn_elevation = 0x7f0700d3
+com.example.cuida:style/ThemeOverlay.AppCompat.DayNight = 0x7f130278
+com.example.cuida:string/mtrl_checkbox_button_icon_path_group_name = 0x7f12008f
+com.example.cuida:macro/m3_comp_badge_large_label_text_color = 0x7f0d0003
+com.example.cuida:style/Widget.Material3.Badge = 0x7f130345
+com.example.cuida:string/material_timepicker_minute = 0x7f120089
+com.example.cuida:styleable/AppCompatImageView = 0x7f140011
+com.example.cuida:style/MaterialAlertDialog.Material3.Body.Text.CenterStacked = 0x7f130125
+com.example.cuida:macro/m3_comp_navigation_drawer_active_hover_icon_color = 0x7f0d007e
+com.example.cuida:id/text_input_error_icon = 0x7f090219
+com.example.cuida:style/Base.V24.Theme.Material3.Dark = 0x7f1300b1
+com.example.cuida:styleable/MaterialToolbar = 0x7f140063
+com.example.cuida:drawable/abc_scrubber_control_to_pressed_mtrl_005 = 0x7f08005f
+com.example.cuida:id/text2 = 0x7f09020f
+com.example.cuida:dimen/mtrl_slider_label_radius = 0x7f0702e4
+com.example.cuida:color/m3_sys_color_dark_tertiary_container = 0x7f06018a
+com.example.cuida:style/Base.Widget.AppCompat.AutoCompleteTextView = 0x7f1300cc
+com.example.cuida:macro/m3_comp_dialog_supporting_text_color = 0x7f0d0027
+com.example.cuida:styleable/ActivityFilter = 0x7f140006
+com.example.cuida:style/Base.Theme.MaterialComponents.Dialog.MinWidth = 0x7f13006c
+com.example.cuida:styleable/ConstraintSet = 0x7f14002e
+com.example.cuida:style/Widget.Material3.CompoundButton.MaterialSwitch = 0x7f13037a
+com.example.cuida:id/visible_removing_fragment_view_tag = 0x7f090247
+com.example.cuida:style/Widget.MaterialComponents.NavigationRailView = 0x7f130431
+com.example.cuida:macro/m3_comp_dialog_supporting_text_type = 0x7f0d0028
+com.example.cuida:style/Base.V21.Theme.MaterialComponents = 0x7f1300a5
+com.example.cuida:id/auto = 0x7f09005a
+com.example.cuida:styleable/KeyPosition = 0x7f140049
+com.example.cuida:string/google_app_id = 0x7f12005f
+com.example.cuida:style/ShapeAppearance.M3.Comp.Badge.Large.Shape = 0x7f130155
+com.example.cuida:style/ThemeOverlay.Material3.Chip.Assist = 0x7f130292
+com.example.cuida:id/radio = 0x7f0901ae
+com.example.cuida:id/material_value_index = 0x7f09013e
+com.example.cuida:string/mtrl_picker_range_header_only_start_selected = 0x7f1200b0
+com.example.cuida:drawable/common_google_signin_btn_text_disabled = 0x7f08008f
+com.example.cuida:drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__2 = 0x7f08001c
+com.example.cuida:macro/m3_comp_time_picker_time_selector_separator_color = 0x7f0d0166
+com.example.cuida:styleable/MaterialShape = 0x7f14005e
+com.example.cuida:dimen/mtrl_calendar_dialog_background_inset = 0x7f07027a
+com.example.cuida:string/searchview_clear_text_content_description = 0x7f1200da
+com.example.cuida:color/material_dynamic_neutral_variant90 = 0x7f060248
+com.example.cuida:integer/mtrl_tab_indicator_anim_duration_ms = 0x7f0a0040
com.example.cuida:style/Widget.MaterialComponents.Slider = 0x7f13043d
com.example.cuida:style/Widget.MaterialComponents.PopupMenu = 0x7f130437
-com.example.cuida:style/Widget.MaterialComponents.NavigationRailView = 0x7f130431
-com.example.cuida:styleable/BottomAppBar = 0x7f140018
-com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.Year.Today = 0x7f13042e
+com.example.cuida:styleable/ForegroundLinearLayout = 0x7f14003c
+com.example.cuida:drawable/abc_control_background_material = 0x7f08003a
+com.example.cuida:drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__1 = 0x7f08001b
com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.Year.Selected = 0x7f13042d
-com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderTitle = 0x7f130427
-com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderLayout = 0x7f130423
-com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderDivider = 0x7f130422
-com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderConfirmButton = 0x7f130421
-com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderCancelButton = 0x7f130420
-com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.Day.Selected = 0x7f13041b
-com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.Day.Invalid = 0x7f13041a
-com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar = 0x7f130418
-com.example.cuida:style/Widget.MaterialComponents.FloatingActionButton = 0x7f130414
-com.example.cuida:style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon = 0x7f130413
-com.example.cuida:style/Widget.MaterialComponents.CompoundButton.Switch = 0x7f130411
-com.example.cuida:style/Widget.MaterialComponents.CompoundButton.RadioButton = 0x7f130410
-com.example.cuida:style/Widget.MaterialComponents.CompoundButton.CheckBox = 0x7f13040f
-com.example.cuida:style/Widget.MaterialComponents.CircularProgressIndicator.ExtraSmall = 0x7f13040b
-com.example.cuida:style/Widget.MaterialComponents.CircularProgressIndicator = 0x7f13040a
-com.example.cuida:style/Widget.MaterialComponents.Chip.Action = 0x7f130405
-com.example.cuida:style/Widget.MaterialComponents.CardView = 0x7f130403
-com.example.cuida:style/Widget.MaterialComponents.Button.UnelevatedButton.Icon = 0x7f130402
-com.example.cuida:style/Widget.MaterialComponents.Button.UnelevatedButton = 0x7f130401
-com.example.cuida:style/Widget.MaterialComponents.Button.TextButton.Dialog.Icon = 0x7f1303fe
-com.example.cuida:style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush = 0x7f1303fd
-com.example.cuida:style/Widget.MaterialComponents.Button.TextButton.Dialog = 0x7f1303fc
-com.example.cuida:style/Widget.MaterialComponents.Button = 0x7f1303f7
-com.example.cuida:style/Widget.MaterialComponents.BottomSheet = 0x7f1303f5
com.example.cuida:style/Widget.MaterialComponents.BottomNavigationView = 0x7f1303f2
-com.example.cuida:style/Widget.MaterialComponents.BottomAppBar.PrimarySurface = 0x7f1303f1
-com.example.cuida:style/Widget.MaterialComponents.Badge = 0x7f1303ee
-com.example.cuida:style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox = 0x7f1303ea
-com.example.cuida:style/Widget.MaterialComponents.ActionBar.Solid = 0x7f1303e4
-com.example.cuida:style/Widget.Material3.Toolbar.OnSurface = 0x7f1303df
-com.example.cuida:style/Widget.Material3.Toolbar = 0x7f1303de
-com.example.cuida:style/Widget.Material3.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu = 0x7f1303d8
-com.example.cuida:style/Widget.Material3.TextInputLayout.FilledBox.Dense = 0x7f1303d7
-com.example.cuida:style/Widget.Material3.TextInputEditText.OutlinedBox = 0x7f1303d4
-com.example.cuida:style/Widget.Material3.TextInputEditText.FilledBox.Dense = 0x7f1303d3
-com.example.cuida:style/Widget.Material3.TabLayout.Secondary = 0x7f1303d1
-com.example.cuida:style/Widget.Material3.TabLayout.OnSurface = 0x7f1303d0
-com.example.cuida:style/Widget.Material3.Snackbar.TextView = 0x7f1303ce
-com.example.cuida:style/Widget.Material3.Snackbar.FullWidth = 0x7f1303cd
-com.example.cuida:style/Widget.Material3.Slider.Label = 0x7f1303cb
-com.example.cuida:style/Widget.Material3.Slider = 0x7f1303ca
-com.example.cuida:style/Widget.Material3.SideSheet.Modal = 0x7f1303c8
-com.example.cuida:style/Widget.Material3.SearchView.Toolbar = 0x7f1303c5
-com.example.cuida:style/Widget.Material3.SearchView.Prefix = 0x7f1303c4
-com.example.cuida:style/Widget.Material3.Search.Toolbar.Button.Navigation = 0x7f1303c0
-com.example.cuida:style/Widget.Material3.NavigationRailView = 0x7f1303b7
-com.example.cuida:style/Widget.Material3.MaterialTimePicker.ImageButton = 0x7f1303b6
-com.example.cuida:style/Widget.Material3.MaterialTimePicker.Display.TextInputLayout = 0x7f1303b5
-com.example.cuida:style/Widget.Material3.MaterialTimePicker.Display.TextInputEditText = 0x7f1303b4
-com.example.cuida:style/Widget.Material3.MaterialTimePicker.Display.HelperText = 0x7f1303b3
-com.example.cuida:style/Widget.Material3.MaterialTimePicker.Display.Divider = 0x7f1303b2
-com.example.cuida:style/Widget.Material3.MaterialTimePicker.Display = 0x7f1303b1
-com.example.cuida:style/Widget.Material3.MaterialTimePicker.Clock = 0x7f1303b0
-com.example.cuida:style/Widget.Material3.MaterialTimePicker.Button = 0x7f1303af
-com.example.cuida:style/Widget.Material3.MaterialDivider = 0x7f1303ac
-com.example.cuida:style/Widget.Material3.MaterialCalendar.Year = 0x7f1303a8
-com.example.cuida:style/Widget.Material3.MaterialCalendar.MonthTextView = 0x7f1303a7
-com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderToggleButton = 0x7f1303a4
-com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderTitle = 0x7f1303a3
-com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderLayout = 0x7f13039f
-com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderDivider = 0x7f13039e
-com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderCancelButton = 0x7f13039d
-com.example.cuida:style/Widget.Material3.MaterialCalendar.Day.Today = 0x7f130399
-com.example.cuida:style/Widget.Material3.MaterialCalendar.Day.Selected = 0x7f130398
-com.example.cuida:style/Widget.Material3.MaterialCalendar.Day.Invalid = 0x7f130397
-com.example.cuida:style/Widget.Material3.FloatingActionButton.Surface = 0x7f130390
-com.example.cuida:style/Widget.Material3.FloatingActionButton.Small.Primary = 0x7f13038c
-com.example.cuida:style/Widget.Material3.FloatingActionButton.Secondary = 0x7f13038b
-com.example.cuida:style/Widget.Material3.FloatingActionButton.Primary = 0x7f13038a
-com.example.cuida:style/Widget.Material3.FloatingActionButton.Large.Tertiary = 0x7f130389
-com.example.cuida:style/Widget.Material3.FloatingActionButton.Large.Surface = 0x7f130388
-com.example.cuida:style/Widget.Material3.MaterialCalendar.Year.Today = 0x7f1303aa
-com.example.cuida:style/Widget.Material3.FloatingActionButton.Large.Primary = 0x7f130386
-com.example.cuida:style/Widget.Material3.ExtendedFloatingActionButton.Tertiary = 0x7f130385
-com.example.cuida:style/Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary = 0x7f13037f
-com.example.cuida:style/Widget.Material3.CompoundButton.RadioButton = 0x7f13037b
-com.example.cuida:style/Widget.Material3.CompoundButton.MaterialSwitch = 0x7f13037a
-com.example.cuida:style/Widget.Material3.CompoundButton.CheckBox = 0x7f130379
-com.example.cuida:style/Widget.Material3.CircularProgressIndicator.Medium = 0x7f130374
-com.example.cuida:style/Widget.Material3.CircularProgressIndicator.ExtraSmall = 0x7f130373
-com.example.cuida:style/Widget.Material3.CircularProgressIndicator = 0x7f130372
-com.example.cuida:style/Widget.Material3.ChipGroup = 0x7f130371
-com.example.cuida:style/Widget.Material3.Chip.Suggestion.Elevated = 0x7f130370
-com.example.cuida:style/Widget.Material3.Chip.Suggestion = 0x7f13036f
-com.example.cuida:style/Widget.Material3.Chip.Input.Icon = 0x7f13036d
-com.example.cuida:style/Widget.Material3.Chip.Input = 0x7f13036b
-com.example.cuida:style/Widget.Material3.Chip.Assist = 0x7f130367
-com.example.cuida:style/Widget.Material3.CardView.Outlined = 0x7f130365
-com.example.cuida:style/Widget.Material3.Button.TonalButton = 0x7f130360
-com.example.cuida:style/Widget.Material3.Button.TextButton.Icon = 0x7f13035e
-com.example.cuida:style/Widget.Material3.Button.TextButton.Dialog.Flush = 0x7f13035c
-com.example.cuida:style/Widget.Material3.Button.IconButton.Filled = 0x7f130355
-com.example.cuida:style/Widget.Material3.Button.IconButton = 0x7f130354
-com.example.cuida:style/Widget.Material3.Button.Icon = 0x7f130353
-com.example.cuida:style/Widget.Material3.Button.ElevatedButton.Icon = 0x7f130352
-com.example.cuida:style/Widget.Material3.Button.ElevatedButton = 0x7f130351
-com.example.cuida:style/Widget.Material3.Button = 0x7f130350
-com.example.cuida:style/Widget.Material3.BottomSheet.Modal = 0x7f13034f
-com.example.cuida:style/Widget.Material3.BottomNavigation.Badge = 0x7f13034a
-com.example.cuida:style/Widget.Material3.BottomAppBar.Legacy = 0x7f130349
-com.example.cuida:style/Widget.Material3.BottomAppBar.Button.Navigation = 0x7f130348
-com.example.cuida:style/Widget.Material3.BottomAppBar = 0x7f130347
-com.example.cuida:style/Widget.Material3.Badge = 0x7f130345
-com.example.cuida:style/Widget.Material3.AutoCompleteTextView.FilledBox.Dense = 0x7f130342
-com.example.cuida:style/Widget.Material3.AutoCompleteTextView.FilledBox = 0x7f130341
-com.example.cuida:style/Widget.Material3.AppBarLayout = 0x7f130340
-com.example.cuida:style/Widget.Design.NavigationView = 0x7f130338
-com.example.cuida:style/Widget.Design.FloatingActionButton = 0x7f130337
-com.example.cuida:style/Widget.Design.BottomSheet.Modal = 0x7f130335
-com.example.cuida:styleable/MaterialTimePicker = 0x7f140062
-com.example.cuida:style/Widget.Cuida.CardView = 0x7f130332
-com.example.cuida:style/Widget.AppCompat.Toolbar = 0x7f13032d
+com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderDivider = 0x7f130422
+com.example.cuida:style/RtlUnderlay.Widget.AppCompat.ActionButton = 0x7f130153
+com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderConfirmButton = 0x7f130421
+com.example.cuida:style/Theme.AppCompat.Empty = 0x7f130218
com.example.cuida:style/Widget.AppCompat.Spinner.Underlined = 0x7f13032a
-com.example.cuida:style/Widget.AppCompat.SearchView.ActionBar = 0x7f130324
-com.example.cuida:style/Widget.AppCompat.SearchView = 0x7f130323
-com.example.cuida:style/Widget.AppCompat.ListPopupWindow = 0x7f130317
-com.example.cuida:style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar = 0x7f130315
-com.example.cuida:style/Widget.AppCompat.Light.SearchView = 0x7f130314
-com.example.cuida:style/Widget.AppCompat.Light.PopupMenu = 0x7f130312
-com.example.cuida:style/Widget.AppCompat.Light.ListView.DropDown = 0x7f130311
-com.example.cuida:style/Widget.AppCompat.Light.ListPopupWindow = 0x7f130310
-com.example.cuida:style/Widget.AppCompat.Light.AutoCompleteTextView = 0x7f13030e
-com.example.cuida:style/Widget.AppCompat.Light.ActivityChooserView = 0x7f13030d
-com.example.cuida:style/Widget.AppCompat.Light.ActionMode.Inverse = 0x7f13030c
-com.example.cuida:style/Widget.AppCompat.Light.ActionBar.TabView.Inverse = 0x7f130308
-com.example.cuida:style/Widget.AppCompat.Light.ActionBar.TabView = 0x7f130307
-com.example.cuida:style/Widget.AppCompat.Light.ActionBar.TabBar = 0x7f130303
-com.example.cuida:style/Widget.AppCompat.Light.ActionBar = 0x7f130300
-com.example.cuida:style/Widget.AppCompat.DrawerArrowToggle = 0x7f1302fc
-com.example.cuida:style/Widget.AppCompat.ButtonBar = 0x7f1302f7
-com.example.cuida:style/Widget.AppCompat.Button.Borderless = 0x7f1302f2
-com.example.cuida:style/Widget.AppCompat.Button = 0x7f1302f1
+com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderCancelButton = 0x7f130420
+com.example.cuida:style/Widget.Material3.Snackbar.FullWidth = 0x7f1303cd
+com.example.cuida:style/Widget.MaterialComponents.TextInputLayout.FilledBox = 0x7f130448
+com.example.cuida:style/MaterialAlertDialog.Material3.Title.Icon = 0x7f130126
+com.example.cuida:macro/m3_comp_radio_button_unselected_focus_icon_color = 0x7f0d00e0
+com.example.cuida:styleable/ThemeEnforcement = 0x7f14009f
+com.example.cuida:dimen/mtrl_slider_label_square_side = 0x7f0702e5
com.example.cuida:style/Widget.AppCompat.AutoCompleteTextView = 0x7f1302f0
+com.example.cuida:styleable/KeyFrame = 0x7f140046
+com.example.cuida:styleable/FlowLayout = 0x7f140039
+com.example.cuida:style/Widget.MaterialComponents.CircularProgressIndicator.ExtraSmall = 0x7f13040b
+com.example.cuida:styleable/NavHostFragment = 0x7f140074
+com.example.cuida:drawable/notification_oversize_large_icon_bg = 0x7f0800fb
+com.example.cuida:style/Widget.Material3.MaterialTimePicker.Button = 0x7f1303af
+com.example.cuida:color/m3_sys_color_dynamic_light_secondary_container = 0x7f0601c3
+com.example.cuida:id/profile_image = 0x7f0901a9
+com.example.cuida:id/design_bottom_sheet = 0x7f0900af
+com.example.cuida:style/TextAppearance.AppCompat.Large.Inverse = 0x7f13019f
+com.example.cuida:style/Theme.AppCompat.Light.Dialog.Alert = 0x7f13021c
+com.example.cuida:string/path_password_eye_mask_visible = 0x7f1200d3
+com.example.cuida:style/Base.Widget.Material3.CompoundButton.Switch = 0x7f130105
+com.example.cuida:style/Widget.MaterialComponents.AppBarLayout.Surface = 0x7f1303e9
+com.example.cuida:style/Widget.MaterialComponents.Button.TextButton.Dialog.Icon = 0x7f1303fe
+com.example.cuida:style/Widget.Material3.TabLayout.Secondary = 0x7f1303d1
+com.example.cuida:style/TextAppearance.Design.CollapsingToolbar.Expanded = 0x7f1301c8
+com.example.cuida:style/ThemeOverlay.Material3.BottomNavigationView = 0x7f130287
+com.example.cuida:id/hideable = 0x7f090100
+com.example.cuida:string/generic_error_no_device_credential = 0x7f12005b
+com.example.cuida:style/Widget.Material3.MaterialCalendar.MonthTextView = 0x7f1303a7
+com.example.cuida:styleable/Carousel = 0x7f14001e
+com.example.cuida:string/androidx.credentials.TYPE_PUBLIC_KEY_CREDENTIAL = 0x7f12001e
+com.example.cuida:style/Widget.Material3.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu = 0x7f1303d8
+com.example.cuida:string/common_google_play_services_notification_channel_name = 0x7f120039
+com.example.cuida:macro/m3_comp_navigation_drawer_headline_color = 0x7f0d0087
+com.example.cuida:style/Widget.Material3.TextInputEditText.OutlinedBox = 0x7f1303d4
+com.example.cuida:string/mtrl_picker_invalid_format_use = 0x7f1200aa
+com.example.cuida:style/Widget.Material3.Chip.Suggestion.Elevated = 0x7f130370
+com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.Day.Selected = 0x7f13041b
+com.example.cuida:string/mtrl_picker_today_description = 0x7f1200bc
+com.example.cuida:string/abc_menu_sym_shortcut_label = 0x7f120010
+com.example.cuida:style/Widget.AppCompat.ListPopupWindow = 0x7f130317
+com.example.cuida:style/Widget.Material3.FloatingActionButton.Large.Tertiary = 0x7f130389
+com.example.cuida:style/Widget.Material3.MaterialDivider = 0x7f1303ac
+com.example.cuida:style/Widget.MaterialComponents.TimePicker.ImageButton = 0x7f130459
+com.example.cuida:style/ThemeOverlay.Material3.NavigationView = 0x7f1302b1
+com.example.cuida:style/CardView.Light = 0x7f130121
+com.example.cuida:style/Widget.MaterialComponents.CircularProgressIndicator = 0x7f13040a
+com.example.cuida:style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Surface = 0x7f13029f
+com.example.cuida:styleable/FontFamilyFont = 0x7f14003b
+com.example.cuida:style/Base.Theme.Material3.Light.BottomSheetDialog = 0x7f130060
+com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderDivider = 0x7f13039e
+com.example.cuida:style/Base.Widget.AppCompat.PopupMenu = 0x7f1300ea
+com.example.cuida:style/Widget.Material3.CircularProgressIndicator = 0x7f130372
+com.example.cuida:style/Widget.Material3.FloatingActionButton.Small.Primary = 0x7f13038c
+com.example.cuida:style/Base.TextAppearance.MaterialComponents.Button = 0x7f130045
+com.example.cuida:attr/labelVisibilityMode = 0x7f04027b
+com.example.cuida:color/m3_ref_palette_neutral92 = 0x7f060126
+com.example.cuida:style/Base.V14.Theme.MaterialComponents.Light.Bridge = 0x7f130096
+com.example.cuida:style/Base.Widget.Material3.ExtendedFloatingActionButton.Icon = 0x7f130107
+com.example.cuida:style/Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary = 0x7f13037f
+com.example.cuida:dimen/m3_comp_sheet_bottom_docked_standard_container_elevation = 0x7f07017e
+com.example.cuida:styleable/Capability = 0x7f14001c
+com.example.cuida:style/Widget.Material3.CompoundButton.RadioButton = 0x7f13037b
+com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.Day.Invalid = 0x7f13041a
+com.example.cuida:style/Widget.Material3.FloatingActionButton.Surface = 0x7f130390
+com.example.cuida:macro/m3_comp_navigation_bar_inactive_focus_state_layer_color = 0x7f0d0071
+com.example.cuida:styleable/ActivityRule = 0x7f140008
+com.example.cuida:drawable/abc_btn_switch_to_on_mtrl_00001 = 0x7f080035
+com.example.cuida:style/Widget.MaterialComponents.TimePicker.ImageButton.ShapeAppearance = 0x7f13045a
+com.example.cuida:macro/m3_comp_secondary_navigation_tab_with_icon_inactive_icon_color = 0x7f0d0104
+com.example.cuida:style/Widget.Material3.Toolbar = 0x7f1303de
+com.example.cuida:style/Widget.Material3.BottomAppBar = 0x7f130347
+com.example.cuida:string/default_error_msg = 0x7f120047
+com.example.cuida:dimen/cardview_compat_inset_shadow = 0x7f070054
+com.example.cuida:style/Widget.Material3.MaterialCalendar.Day.Invalid = 0x7f130397
+com.example.cuida:style/Widget.Material3.CardView.Outlined = 0x7f130365
+com.example.cuida:style/Widget.Material3.MaterialTimePicker.Display.TextInputLayout = 0x7f1303b5
+com.example.cuida:drawable/abc_ic_clear_material = 0x7f08003f
+com.example.cuida:style/Widget.Material3.Button.TextButton.Dialog.Flush = 0x7f13035c
+com.example.cuida:layout/mtrl_picker_header_fullscreen = 0x7f0c006c
+com.example.cuida:color/m3_tabs_ripple_color_secondary = 0x7f06020c
+com.example.cuida:style/ShapeAppearance.M3.Comp.BottomAppBar.Container.Shape = 0x7f130157
+com.example.cuida:macro/m3_comp_circular_progress_indicator_active_indicator_color = 0x7f0d000d
+com.example.cuida:style/TextAppearance.Material3.BodyMedium = 0x7f1301e5
+com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderToggleButton = 0x7f1303a4
+com.example.cuida:style/Widget.Material3.Button.Icon = 0x7f130353
+com.example.cuida:macro/m3_comp_time_picker_clock_dial_color = 0x7f0d014d
+com.example.cuida:style/Widget.Material3.Button.ElevatedButton.Icon = 0x7f130352
+com.example.cuida:dimen/m3_chip_icon_size = 0x7f0700fc
+com.example.cuida:style/Widget.Material3.FloatingActionButton.Primary = 0x7f13038a
+com.example.cuida:macro/m3_comp_radio_button_unselected_focus_state_layer_color = 0x7f0d00e1
+com.example.cuida:style/Base.Widget.AppCompat.DrawerArrowToggle = 0x7f1300d8
+com.example.cuida:styleable/SignInButton = 0x7f14008b
+com.example.cuida:styleable/NavInclude = 0x7f140075
+com.example.cuida:styleable/MotionLayout = 0x7f14006c
+com.example.cuida:style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar = 0x7f130315
+com.example.cuida:style/Widget.AppCompat.Button.Borderless.Colored = 0x7f1302f3
+com.example.cuida:id/text_ai_result = 0x7f090215
+com.example.cuida:style/Widget.Material3.BottomNavigation.Badge = 0x7f13034a
+com.example.cuida:style/Widget.Material3.Button.ElevatedButton = 0x7f130351
+com.example.cuida:style/Theme.Hidden = 0x7f130228
+com.example.cuida:integer/m3_sys_motion_duration_long3 = 0x7f0a0017
+com.example.cuida:string/mtrl_checkbox_button_path_unchecked = 0x7f120095
+com.example.cuida:color/m3_sys_color_dynamic_dark_background = 0x7f06018b
+com.example.cuida:style/Widget.Material3.BottomSheet.Modal = 0x7f13034f
+com.example.cuida:style/Widget.AppCompat.SearchView = 0x7f130323
+com.example.cuida:drawable/ic_mtrl_chip_close_circle = 0x7f0800b2
+com.example.cuida:style/Base.V21.Theme.MaterialComponents.Light.Dialog = 0x7f1300a8
+com.example.cuida:style/Base.TextAppearance.AppCompat.Inverse = 0x7f130020
+com.example.cuida:style/Theme.Material3.Dark.NoActionBar = 0x7f13022f
+com.example.cuida:style/Widget.AppCompat.SearchView.ActionBar = 0x7f130324
+com.example.cuida:styleable/SplitPairFilter = 0x7f140090
+com.example.cuida:style/Widget.Material3.NavigationRailView = 0x7f1303b7
+com.example.cuida:string/common_google_play_services_install_button = 0x7f120036
+com.example.cuida:style/Widget.MaterialComponents.Button.UnelevatedButton = 0x7f130401
+com.example.cuida:styleable/ColorStateListItem = 0x7f140027
+com.example.cuida:string/login_title = 0x7f120066
+com.example.cuida:style/Platform.V25.AppCompat = 0x7f130141
+com.example.cuida:style/Widget.AppCompat.Light.SearchView = 0x7f130314
+com.example.cuida:style/Base.Widget.MaterialComponents.TextInputEditText = 0x7f13011c
+com.example.cuida:style/Theme.MaterialComponents.NoActionBar.Bridge = 0x7f130272
+com.example.cuida:style/Theme.Cuida = 0x7f130221
+com.example.cuida:style/ThemeOverlay.Material3.Button.IconButton.Filled = 0x7f13028c
+com.example.cuida:style/ShapeAppearance.M3.Comp.SearchBar.Container.Shape = 0x7f130160
+com.example.cuida:macro/m3_comp_fab_primary_large_container_shape = 0x7f0d003a
+com.example.cuida:string/abc_shareactionprovider_share_with_application = 0x7f120019
com.example.cuida:style/Widget.AppCompat.ActivityChooserView = 0x7f1302ef
-com.example.cuida:style/Widget.AppCompat.ActionButton = 0x7f1302eb
-com.example.cuida:style/Widget.AppCompat.ActionBar.TabView = 0x7f1302ea
+com.example.cuida:color/m3_sys_color_dynamic_dark_on_surface_variant = 0x7f060199
com.example.cuida:style/Widget.AppCompat.ActionBar.TabText = 0x7f1302e9
-com.example.cuida:style/Widget.AppCompat.ActionBar.Solid = 0x7f1302e7
-com.example.cuida:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu = 0x7f13044e
+com.example.cuida:style/Theme.AppCompat.CompactMenu = 0x7f13020c
+com.example.cuida:id/navigation_home = 0x7f090170
+com.example.cuida:style/Widget.Material3.MaterialTimePicker.Display = 0x7f1303b1
+com.example.cuida:drawable/mtrl_ic_indeterminate = 0x7f0800e1
+com.example.cuida:string/material_clock_display_divider = 0x7f120077
+com.example.cuida:styleable/CollapsingToolbarLayout = 0x7f140025
+com.example.cuida:style/ShapeAppearance.M3.Sys.Shape.Corner.ExtraSmall = 0x7f130168
+com.example.cuida:style/Base.ThemeOverlay.Material3.Dialog = 0x7f130081
+com.example.cuida:style/Widget.MaterialComponents.ActionBar.Solid = 0x7f1303e4
+com.example.cuida:id/input_symptoms = 0x7f090110
+com.example.cuida:string/mtrl_picker_start_date_description = 0x7f1200b5
com.example.cuida:style/Widget.AppCompat.ActionBar = 0x7f1302e6
-com.example.cuida:style/ThemeOverlay.MaterialComponents.Toolbar.Surface = 0x7f1302e5
-com.example.cuida:style/ThemeOverlay.MaterialComponents.Toolbar.Popup.Primary = 0x7f1302e3
+com.example.cuida:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu = 0x7f13044e
+com.example.cuida:string/m3_sys_motion_easing_standard_decelerate = 0x7f120076
+com.example.cuida:style/Theme.MaterialComponents.DayNight.Dialog.Bridge = 0x7f130250
+com.example.cuida:style/Widget.AppCompat.Button = 0x7f1302f1
+com.example.cuida:dimen/tooltip_vertical_padding = 0x7f07031d
+com.example.cuida:style/Base.MaterialAlertDialog.MaterialComponents.Title.Icon = 0x7f130013
+com.example.cuida:id/chains = 0x7f090089
+com.example.cuida:dimen/m3_comp_fab_primary_hover_state_layer_opacity = 0x7f07011d
+com.example.cuida:id/card_next_medication = 0x7f090080
+com.example.cuida:style/Widget.Material3.FloatingActionButton.Secondary = 0x7f13038b
+com.example.cuida:style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu = 0x7f1303dd
+com.example.cuida:id/accessibility_custom_action_6 = 0x7f09002c
+com.example.cuida:style/Widget.Material3.AppBarLayout = 0x7f130340
com.example.cuida:style/ThemeOverlay.MaterialComponents.TimePicker.Display.TextInputEditText = 0x7f1302e2
-com.example.cuida:style/ThemeOverlay.MaterialComponents.TimePicker = 0x7f1302e0
-com.example.cuida:style/Widget.Material3.AutoCompleteTextView.OutlinedBox = 0x7f130343
-com.example.cuida:style/ThemeOverlay.MaterialComponents.TextInputEditText = 0x7f1302db
-com.example.cuida:style/ThemeOverlay.MaterialComponents.MaterialCalendar = 0x7f1302d9
-com.example.cuida:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text = 0x7f1302d6
-com.example.cuida:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f1302d2
-com.example.cuida:style/ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f1302c9
-com.example.cuida:style/ThemeOverlay.MaterialComponents.BottomAppBar.Surface = 0x7f1302c8
-com.example.cuida:style/ThemeOverlay.MaterialComponents.BottomAppBar.Primary = 0x7f1302c7
+com.example.cuida:style/Base.Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton = 0x7f130114
+com.example.cuida:styleable/FontFamily = 0x7f14003a
com.example.cuida:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense = 0x7f1302c6
-com.example.cuida:style/Widget.MaterialComponents.MaterialButtonToggleGroup = 0x7f130417
-com.example.cuida:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox = 0x7f1302c3
-com.example.cuida:style/ThemeOverlay.MaterialComponents.ActionBar.Surface = 0x7f1302c1
-com.example.cuida:style/ThemeOverlay.MaterialComponents.ActionBar.Primary = 0x7f1302c0
+com.example.cuida:style/ThemeOverlay.Material3.TabLayout = 0x7f1302b6
+com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f13003c
+com.example.cuida:style/ThemeOverlay.MaterialComponents.BottomAppBar.Surface = 0x7f1302c8
+com.example.cuida:styleable/ClockHandView = 0x7f140024
+com.example.cuida:styleable/AppBarLayoutStates = 0x7f14000e
+com.example.cuida:macro/m3_comp_primary_navigation_tab_with_label_text_active_label_text_color = 0x7f0d00d4
+com.example.cuida:style/Theme.Material3.Light.Dialog = 0x7f13023e
+com.example.cuida:dimen/mtrl_shape_corner_size_medium_component = 0x7f0702e0
+com.example.cuida:attr/extendMotionSpec = 0x7f0401d1
+com.example.cuida:style/TextAppearance.AppCompat.Widget.Button = 0x7f1301b9
+com.example.cuida:style/Widget.AppCompat.Button.Borderless = 0x7f1302f2
+com.example.cuida:string/mtrl_picker_text_input_date_hint = 0x7f1200b6
+com.example.cuida:style/Widget.MaterialComponents.BottomAppBar.PrimarySurface = 0x7f1303f1
+com.example.cuida:id/tag_transition_group = 0x7f09020a
com.example.cuida:style/ThemeOverlay.MaterialComponents.ActionBar = 0x7f1302bf
-com.example.cuida:style/ThemeOverlay.MaterialComponents = 0x7f1302be
-com.example.cuida:style/ThemeOverlay.Material3.Toolbar.Surface = 0x7f1302bc
-com.example.cuida:style/Widget.MaterialComponents.CollapsingToolbar = 0x7f13040e
-com.example.cuida:style/ThemeOverlay.Material3.TextInputEditText.OutlinedBox.Dense = 0x7f1302bb
+com.example.cuida:integer/material_motion_duration_medium_2 = 0x7f0a002b
+com.example.cuida:string/mtrl_exceed_max_badge_number_suffix = 0x7f12009b
+com.example.cuida:id/action_bar_activity_content = 0x7f090035
com.example.cuida:style/ThemeOverlay.Material3.TextInputEditText.OutlinedBox = 0x7f1302ba
com.example.cuida:style/ThemeOverlay.Material3.TextInputEditText.FilledBox = 0x7f1302b8
-com.example.cuida:style/ThemeOverlay.Material3.TextInputEditText = 0x7f1302b7
-com.example.cuida:style/ThemeOverlay.Material3.TabLayout = 0x7f1302b6
-com.example.cuida:style/ThemeOverlay.Material3.PersonalizedColors = 0x7f1302b2
-com.example.cuida:style/ThemeOverlay.Material3.NavigationView = 0x7f1302b1
-com.example.cuida:style/ThemeOverlay.Material3.NavigationRailView = 0x7f1302b0
-com.example.cuida:style/ThemeOverlay.Material3.MaterialCalendar = 0x7f1302ab
-com.example.cuida:style/ThemeOverlay.Material3.MaterialAlertDialog = 0x7f1302a9
+com.example.cuida:style/TextAppearance.Material3.TitleMedium = 0x7f1301f5
+com.example.cuida:macro/m3_comp_sheet_side_docked_modal_container_shape = 0x7f0d010a
+com.example.cuida:style/Widget.AppCompat.Light.ListPopupWindow = 0x7f130310
+com.example.cuida:style/Base.Widget.Design.TabLayout = 0x7f1300fc
+com.example.cuida:id/beginOnFirstDraw = 0x7f090061
com.example.cuida:style/ThemeOverlay.Material3.Light.Dialog.Alert.Framework = 0x7f1302a8
-com.example.cuida:style/ThemeOverlay.Material3.Light = 0x7f1302a7
-com.example.cuida:style/ThemeOverlay.Material3.HarmonizedColors.Empty = 0x7f1302a6
-com.example.cuida:style/ThemeOverlay.Material3.FloatingActionButton.Secondary = 0x7f1302a2
+com.example.cuida:style/ThemeOverlay.Material3.NavigationRailView = 0x7f1302b0
+com.example.cuida:styleable/AppCompatTextView = 0x7f140014
+com.example.cuida:macro/m3_comp_time_picker_period_selector_selected_container_color = 0x7f0d0156
+com.example.cuida:style/TextAppearance.MaterialComponents.Caption = 0x7f1301fb
+com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.FloatingActionButton = 0x7f13018e
+com.example.cuida:style/ThemeOverlay.MaterialComponents = 0x7f1302be
+com.example.cuida:style/Theme.MaterialComponents.Light.Dialog.MinWidth = 0x7f13026c
+com.example.cuida:macro/m3_comp_search_view_header_input_text_color = 0x7f0d00f5
+com.example.cuida:integer/mtrl_calendar_header_orientation = 0x7f0a0032
+com.example.cuida:style/ThemeOverlay.Material3.MaterialAlertDialog = 0x7f1302a9
+com.example.cuida:styleable/MotionScene = 0x7f14006d
+com.example.cuida:style/Widget.AppCompat.Light.ActionBar.TabView = 0x7f130307
+com.example.cuida:style/TextAppearance.Material3.LabelMedium = 0x7f1301ee
+com.example.cuida:styleable/GradientColor = 0x7f140040
+com.example.cuida:id/scale = 0x7f0901c4
+com.example.cuida:style/ThemeOverlay.MaterialComponents.ActionBar.Surface = 0x7f1302c1
+com.example.cuida:macro/m3_comp_outlined_text_field_hover_outline_color = 0x7f0d00c1
+com.example.cuida:color/mtrl_fab_bg_color_selector = 0x7f0602da
com.example.cuida:style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Tertiary = 0x7f1302a0
-com.example.cuida:style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Surface = 0x7f13029f
com.example.cuida:style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Primary = 0x7f13029d
+com.example.cuida:id/ignore = 0x7f090109
+com.example.cuida:style/Widget.MaterialComponents.MaterialButtonToggleGroup = 0x7f130417
+com.example.cuida:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox = 0x7f1302c3
com.example.cuida:style/ThemeOverlay.Material3.DynamicColors.Dark = 0x7f13029a
-com.example.cuida:style/ThemeOverlay.Material3.Dialog.Alert = 0x7f130298
-com.example.cuida:style/ThemeOverlay.Material3.DayNight.SideSheetDialog = 0x7f130296
+com.example.cuida:dimen/abc_star_big = 0x7f07003b
+com.example.cuida:id/search_bar = 0x7f0901cc
+com.example.cuida:styleable/TabItem = 0x7f140099
com.example.cuida:style/ThemeOverlay.Material3.Dark.ActionBar = 0x7f130294
-com.example.cuida:style/ThemeOverlay.Material3.Chip.Assist = 0x7f130292
-com.example.cuida:style/ThemeOverlay.Material3.Chip = 0x7f130291
+com.example.cuida:id/enterAlwaysCollapsed = 0x7f0900db
+com.example.cuida:dimen/m3_sys_motion_easing_legacy_decelerate_control_y1 = 0x7f070205
+com.example.cuida:style/Widget.MaterialComponents.AppBarLayout.PrimarySurface = 0x7f1303e8
+com.example.cuida:styleable/ConstraintLayout_ReactiveGuide = 0x7f14002b
+com.example.cuida:style/Widget.MaterialComponents.TimePicker.Button = 0x7f130452
+com.example.cuida:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox = 0x7f13044c
com.example.cuida:style/ThemeOverlay.Material3.Button.TonalButton = 0x7f130290
com.example.cuida:style/Widget.MaterialComponents.ActionMode = 0x7f1303e6
com.example.cuida:style/ThemeOverlay.Material3.Button.TextButton.Snackbar = 0x7f13028f
+com.example.cuida:styleable/MotionLabel = 0x7f14006b
+com.example.cuida:macro/m3_comp_badge_color = 0x7f0d0002
+com.example.cuida:style/Widget.AppCompat.ActionBar.TabView = 0x7f1302ea
+com.example.cuida:macro/m3_comp_extended_fab_tertiary_icon_color = 0x7f0d0036
com.example.cuida:style/ThemeOverlay.Material3.Button.IconButton.Filled.Tonal = 0x7f13028d
-com.example.cuida:style/ThemeOverlay.Material3.Button.IconButton.Filled = 0x7f13028c
com.example.cuida:style/ThemeOverlay.Material3.Button.IconButton = 0x7f13028b
-com.example.cuida:style/ThemeOverlay.Material3.BottomSheetDialog = 0x7f130288
-com.example.cuida:style/ThemeOverlay.Material3.BottomNavigationView = 0x7f130287
-com.example.cuida:style/ThemeOverlay.Material3.BottomAppBar.Legacy = 0x7f130286
-com.example.cuida:style/ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox.Dense = 0x7f130284
-com.example.cuida:style/ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox = 0x7f130283
-com.example.cuida:style/ThemeOverlay.Material3.AutoCompleteTextView.FilledBox.Dense = 0x7f130282
-com.example.cuida:style/ThemeOverlay.Material3.AutoCompleteTextView.FilledBox = 0x7f130281
-com.example.cuida:style/ThemeOverlay.Material3 = 0x7f13027e
-com.example.cuida:style/ThemeOverlay.Design.TextInputEditText = 0x7f13027d
-com.example.cuida:style/ThemeOverlay.AppCompat.Light = 0x7f13027c
-com.example.cuida:style/ThemeOverlay.AppCompat.Dialog.Alert = 0x7f13027b
com.example.cuida:style/ThemeOverlay.AppCompat.Dialog = 0x7f13027a
-com.example.cuida:style/ThemeOverlay.AppCompat.DayNight = 0x7f130278
-com.example.cuida:style/ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f130277
-com.example.cuida:style/ThemeOverlay.AppCompat.Dark = 0x7f130276
-com.example.cuida:style/ThemeOverlay.AppCompat.ActionBar = 0x7f130275
-com.example.cuida:style/ThemeOverlay.AppCompat = 0x7f130274
-com.example.cuida:style/Theme.PlayCore.Transparent = 0x7f130273
-com.example.cuida:style/Theme.MaterialComponents.NoActionBar.Bridge = 0x7f130272
-com.example.cuida:style/Theme.MaterialComponents.NoActionBar = 0x7f130271
-com.example.cuida:style/Theme.MaterialComponents.Light.NoActionBar.Bridge = 0x7f130270
-com.example.cuida:style/Theme.MaterialComponents.Light.DialogWhenLarge = 0x7f13026e
-com.example.cuida:style/Theme.MaterialComponents.Light.Dialog.MinWidth.Bridge = 0x7f13026d
-com.example.cuida:style/Theme.MaterialComponents.Light.Dialog.MinWidth = 0x7f13026c
-com.example.cuida:style/Theme.MaterialComponents.Light.Dialog.Alert.Bridge = 0x7f130268
-com.example.cuida:style/Theme.MaterialComponents.Light.Dialog = 0x7f130266
-com.example.cuida:style/Theme.MaterialComponents.Light.BottomSheetDialog = 0x7f130262
-com.example.cuida:style/Theme.MaterialComponents.Light = 0x7f130261
-com.example.cuida:style/Theme.MaterialComponents.Dialog.MinWidth.Bridge = 0x7f13025f
-com.example.cuida:style/Theme.MaterialComponents.Dialog = 0x7f130258
-com.example.cuida:style/Theme.MaterialComponents.DayNight.NoActionBar.Bridge = 0x7f130257
-com.example.cuida:styleable/TextInputEditText = 0x7f14009d
-com.example.cuida:style/Widget.AppCompat.Light.ActionButton.Overflow = 0x7f13030b
-com.example.cuida:style/Theme.MaterialComponents.DayNight.Dialog.MinWidth = 0x7f130253
-com.example.cuida:style/Theme.MaterialComponents.DayNight.Dialog.FixedSize = 0x7f130251
-com.example.cuida:style/Theme.MaterialComponents.DayNight.Dialog.Bridge = 0x7f130250
-com.example.cuida:style/Theme.MaterialComponents.DayNight.Dialog.Alert = 0x7f13024e
-com.example.cuida:style/Theme.MaterialComponents.DayNight.DarkActionBar.Bridge = 0x7f13024c
-com.example.cuida:style/Theme.MaterialComponents.DayNight.Bridge = 0x7f13024a
-com.example.cuida:style/Theme.MaterialComponents.CompactMenu = 0x7f130247
-com.example.cuida:style/Theme.MaterialComponents.BottomSheetDialog = 0x7f130245
-com.example.cuida:style/Theme.MaterialComponents = 0x7f130244
-com.example.cuida:style/Theme.Material3.Light.SideSheetDialog = 0x7f130243
-com.example.cuida:style/Theme.Material3.Light.NoActionBar = 0x7f130242
-com.example.cuida:style/Theme.Material3.Light.Dialog = 0x7f13023e
-com.example.cuida:style/Theme.Material3.Light.BottomSheetDialog = 0x7f13023d
-com.example.cuida:style/Theme.Material3.DayNight.NoActionBar = 0x7f130237
-com.example.cuida:style/Theme.Material3.DayNight.Dialog.Alert = 0x7f130234
-com.example.cuida:style/Theme.Material3.DayNight = 0x7f130231
-com.example.cuida:style/Theme.Material3.Dark.SideSheetDialog = 0x7f130230
-com.example.cuida:style/Theme.Material3.Dark.NoActionBar = 0x7f13022f
-com.example.cuida:style/Theme.Material3.Dark.Dialog = 0x7f13022b
-com.example.cuida:style/Theme.Material3.Dark = 0x7f130229
-com.example.cuida:style/Theme.Hidden = 0x7f130228
-com.example.cuida:style/Theme.Design.NoActionBar = 0x7f130227
-com.example.cuida:style/Theme.Design.Light.NoActionBar = 0x7f130226
-com.example.cuida:style/Theme.Design.Light.BottomSheetDialog = 0x7f130225
-com.example.cuida:style/Theme.Cuida = 0x7f130221
-com.example.cuida:style/Theme.AppCompat.Light.DialogWhenLarge = 0x7f13021e
-com.example.cuida:style/Theme.AppCompat.Light.Dialog.Alert = 0x7f13021c
-com.example.cuida:style/Theme.AppCompat.Light.Dialog = 0x7f13021b
-com.example.cuida:style/Theme.AppCompat.Light.DarkActionBar = 0x7f13021a
-com.example.cuida:style/Theme.AppCompat.Light = 0x7f130219
-com.example.cuida:style/Theme.AppCompat.Empty = 0x7f130218
-com.example.cuida:style/Theme.AppCompat.DayNight.Dialog.Alert = 0x7f130210
-com.example.cuida:style/Theme.AppCompat.DayNight.Dialog = 0x7f13020f
-com.example.cuida:style/Theme.AppCompat.CompactMenu = 0x7f13020c
-com.example.cuida:style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f130208
-com.example.cuida:style/TextAppearance.MaterialComponents.Subtitle1 = 0x7f130204
-com.example.cuida:style/ThemeOverlay.Material3.DynamicColors.Light = 0x7f13029c
-com.example.cuida:style/TextAppearance.MaterialComponents.Headline5 = 0x7f130201
-com.example.cuida:style/TextAppearance.MaterialComponents.Headline3 = 0x7f1301ff
-com.example.cuida:style/TextAppearance.MaterialComponents.Chip = 0x7f1301fc
-com.example.cuida:style/TextAppearance.MaterialComponents.Caption = 0x7f1301fb
-com.example.cuida:style/TextAppearance.MaterialComponents.Button = 0x7f1301fa
+com.example.cuida:style/Base.Theme.AppCompat.Light.Dialog.FixedSize = 0x7f130056
com.example.cuida:style/TextAppearance.Material3.TitleSmall = 0x7f1301f6
-com.example.cuida:style/TextAppearance.Material3.TitleMedium = 0x7f1301f5
-com.example.cuida:style/TextAppearance.Material3.SearchView.Prefix = 0x7f1301f3
-com.example.cuida:style/TextAppearance.Material3.SearchView = 0x7f1301f2
-com.example.cuida:style/TextAppearance.Material3.SearchBar = 0x7f1301f1
-com.example.cuida:style/TextAppearance.Material3.MaterialTimePicker.Title = 0x7f1301f0
-com.example.cuida:style/TextAppearance.Material3.LabelSmall = 0x7f1301ef
-com.example.cuida:style/TextAppearance.Material3.LabelMedium = 0x7f1301ee
-com.example.cuida:style/TextAppearance.Material3.LabelLarge = 0x7f1301ed
-com.example.cuida:style/TextAppearance.Material3.HeadlineLarge = 0x7f1301ea
-com.example.cuida:style/TextAppearance.Material3.DisplaySmall = 0x7f1301e9
-com.example.cuida:style/TextAppearance.Material3.BodySmall = 0x7f1301e6
-com.example.cuida:style/TextAppearance.Material3.BodyMedium = 0x7f1301e5
-com.example.cuida:style/TextAppearance.M3.Sys.Typescale.TitleMedium = 0x7f1301e0
-com.example.cuida:style/TextAppearance.M3.Sys.Typescale.HeadlineMedium = 0x7f1301da
-com.example.cuida:style/TextAppearance.M3.Sys.Typescale.TitleLarge = 0x7f1301df
-com.example.cuida:style/TextAppearance.M3.Sys.Typescale.DisplaySmall = 0x7f1301d8
-com.example.cuida:style/TextAppearance.M3.Sys.Typescale.DisplayLarge = 0x7f1301d6
+com.example.cuida:style/Theme.MaterialComponents.NoActionBar = 0x7f130271
+com.example.cuida:id/androidx_window_activity_scope = 0x7f090052
+com.example.cuida:color/m3_ref_palette_neutral96 = 0x7f060129
+com.example.cuida:macro/m3_comp_radio_button_disabled_selected_icon_color = 0x7f0d00d7
+com.example.cuida:style/Theme.MaterialComponents.BottomSheetDialog = 0x7f130245
+com.example.cuida:color/m3_sys_color_dark_secondary = 0x7f06017e
+com.example.cuida:attr/actionModeCutDrawable = 0x7f040018
+com.example.cuida:style/Widget.Cuida.CardView = 0x7f130332
+com.example.cuida:styleable/MaterialTimePicker = 0x7f140062
+com.example.cuida:style/ThemeOverlay.Design.TextInputEditText = 0x7f13027d
+com.example.cuida:id/search_mag_icon = 0x7f0901d1
+com.example.cuida:style/ThemeOverlay.AppCompat.Light = 0x7f13027c
+com.example.cuida:style/ShapeAppearance.M3.Comp.TextButton.Container.Shape = 0x7f130166
+com.example.cuida:style/ThemeOverlay.AppCompat.Dialog.Alert = 0x7f13027b
+com.example.cuida:style/Widget.Material3.Button.IconButton.Filled = 0x7f130355
+com.example.cuida:style/TextAppearance.Design.Counter = 0x7f1301c9
+com.example.cuida:style/Theme.MaterialComponents.Light.Dialog.MinWidth.Bridge = 0x7f13026d
+com.example.cuida:style/Base.TextAppearance.AppCompat.Display1 = 0x7f13001b
+com.example.cuida:styleable/CoordinatorLayout_Layout = 0x7f140030
+com.example.cuida:id/italic = 0x7f090113
+com.example.cuida:style/ThemeOverlay.AppCompat = 0x7f130274
+com.example.cuida:string/password_toggle_content_description = 0x7f1200d0
+com.example.cuida:style/Widget.Material3.SearchView.Prefix = 0x7f1303c4
+com.example.cuida:style/Theme.MaterialComponents.Light.NoActionBar.Bridge = 0x7f130270
+com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderLayout = 0x7f13039f
+com.example.cuida:id/checkbox_inhalatory = 0x7f090252
+com.example.cuida:style/Theme.MaterialComponents.Light.Dialog.Alert.Bridge = 0x7f130268
+com.example.cuida:style/Animation.Material3.SideSheetDialog.Left = 0x7f130008
+com.example.cuida:style/Theme.AppCompat.Light.DialogWhenLarge = 0x7f13021e
+com.example.cuida:dimen/m3_navigation_drawer_layout_corner_size = 0x7f0701bb
+com.example.cuida:style/TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f1301be
+com.example.cuida:string/abc_activity_chooser_view_see_all = 0x7f120004
+com.example.cuida:style/Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow = 0x7f130118
+com.example.cuida:style/Theme.MaterialComponents.Dialog = 0x7f130258
+com.example.cuida:string/material_slider_range_start = 0x7f120084
+com.example.cuida:style/Widget.Material3.Button.IconButton.Outlined = 0x7f130357
+com.example.cuida:integer/m3_sys_shape_corner_medium_corner_family = 0x7f0a0026
+com.example.cuida:color/secondary_dark_color = 0x7f060310
+com.example.cuida:style/Theme.MaterialComponents.DayNight.NoActionBar.Bridge = 0x7f130257
+com.example.cuida:style/Widget.Design.BottomSheet.Modal = 0x7f130335
+com.example.cuida:drawable/abc_ic_menu_selectall_mtrl_alpha = 0x7f080046
+com.example.cuida:dimen/m3_sys_motion_easing_emphasized_decelerate_control_y1 = 0x7f0701f9
+com.example.cuida:color/m3_sys_color_dynamic_dark_secondary = 0x7f0601a0
+com.example.cuida:style/Base.TextAppearance.AppCompat.Display2 = 0x7f13001c
+com.example.cuida:style/Widget.AppCompat.Light.ActionBar.TabBar = 0x7f130303
+com.example.cuida:style/TextAppearance.AppCompat.Small.Inverse = 0x7f1301aa
+com.example.cuida:drawable/abc_tab_indicator_mtrl_alpha = 0x7f08006c
+com.example.cuida:style/Theme.MaterialComponents.DayNight.Dialog.Alert = 0x7f13024e
+com.example.cuida:color/tooltip_background_light = 0x7f060321
+com.example.cuida:style/Widget.Material3.Button = 0x7f130350
+com.example.cuida:style/Theme.MaterialComponents.DayNight.DarkActionBar.Bridge = 0x7f13024c
+com.example.cuida:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text = 0x7f1302d6
+com.example.cuida:style/Base.Widget.AppCompat.Button.Borderless.Colored = 0x7f1300cf
+com.example.cuida:style/Theme.MaterialComponents = 0x7f130244
+com.example.cuida:string/mtrl_picker_save = 0x7f1200b4
+com.example.cuida:style/Theme.Material3.Light.SideSheetDialog = 0x7f130243
+com.example.cuida:style/ThemeOverlay.Material3.FloatingActionButton.Secondary = 0x7f1302a2
+com.example.cuida:macro/m3_comp_search_view_header_trailing_icon_color = 0x7f0d00fa
+com.example.cuida:style/Base.TextAppearance.AppCompat.Body1 = 0x7f130017
+com.example.cuida:string/abc_prepend_shortcut_label = 0x7f120011
+com.example.cuida:color/m3_ref_palette_secondary99 = 0x7f060152
+com.example.cuida:color/m3_ref_palette_dynamic_secondary99 = 0x7f0600f9
+com.example.cuida:attr/textInputFilledStyle = 0x7f040486
+com.example.cuida:style/ThemeOverlay.Material3.Chip = 0x7f130291
+com.example.cuida:style/Widget.MaterialComponents.Badge = 0x7f1303ee
+com.example.cuida:macro/m3_comp_filled_tonal_button_container_color = 0x7f0d0053
+com.example.cuida:style/Theme.Material3.Dark = 0x7f130229
+com.example.cuida:dimen/design_navigation_padding_bottom = 0x7f07007e
+com.example.cuida:styleable/MenuItem = 0x7f140065
+com.example.cuida:style/Theme.Design.Light.BottomSheetDialog = 0x7f130225
+com.example.cuida:dimen/mtrl_btn_text_size = 0x7f07026c
+com.example.cuida:style/Widget.Material3.Slider.Label = 0x7f1303cb
+com.example.cuida:styleable/SearchView = 0x7f140087
+com.example.cuida:style/TextAppearance.Design.Tab = 0x7f1301d2
com.example.cuida:style/Widget.MaterialComponents.TabLayout.PrimarySurface = 0x7f130443
com.example.cuida:style/Widget.Material3.SideSheet.Detached = 0x7f1303c7
-com.example.cuida:style/TextAppearance.Design.Tab = 0x7f1301d2
-com.example.cuida:style/TextAppearance.Design.Suffix = 0x7f1301d1
+com.example.cuida:style/Theme.AppCompat.Light.Dialog = 0x7f13021b
+com.example.cuida:style/Theme.MaterialComponents.Light.DialogWhenLarge = 0x7f13026e
+com.example.cuida:macro/m3_comp_navigation_bar_inactive_focus_icon_color = 0x7f0d006f
+com.example.cuida:style/Theme.AppCompat.Light.DarkActionBar = 0x7f13021a
+com.example.cuida:dimen/abc_text_size_menu_material = 0x7f07004b
+com.example.cuida:style/Theme.AppCompat.DayNight.Dialog.Alert = 0x7f130210
+com.example.cuida:style/Base.V14.Theme.MaterialComponents.Dialog.Bridge = 0x7f130094
+com.example.cuida:style/Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f130071
+com.example.cuida:dimen/m3_comp_time_picker_period_selector_focus_state_layer_opacity = 0x7f07019e
+com.example.cuida:macro/m3_comp_time_picker_time_selector_separator_type = 0x7f0d0167
+com.example.cuida:style/TextAppearance.Material3.MaterialTimePicker.Title = 0x7f1301f0
+com.example.cuida:string/material_timepicker_hour = 0x7f120088
+com.example.cuida:macro/m3_sys_color_dark_surface_tint = 0x7f0d0176
+com.example.cuida:style/Widget.Material3.MaterialTimePicker.Clock = 0x7f1303b0
+com.example.cuida:style/Theme.MaterialComponents.DayNight.Dialog.FixedSize = 0x7f130251
+com.example.cuida:style/TextAppearance.MaterialComponents.Headline3 = 0x7f1301ff
+com.example.cuida:style/Theme.PlayCore.Transparent = 0x7f130273
com.example.cuida:style/TextAppearance.Design.Prefix = 0x7f1301cf
-com.example.cuida:style/TextAppearance.Design.Hint = 0x7f1301cd
+com.example.cuida:style/ThemeOverlay.MaterialComponents.Toolbar.Popup.Primary = 0x7f1302e3
+com.example.cuida:style/Widget.Material3.Chip.Suggestion = 0x7f13036f
+com.example.cuida:style/Base.Theme.AppCompat.Dialog.MinWidth = 0x7f130050
+com.example.cuida:dimen/mtrl_extended_fab_translation_z_hovered_focused = 0x7f0702b1
+com.example.cuida:style/MaterialAlertDialog.MaterialComponents = 0x7f13012c
+com.example.cuida:layout/abc_list_menu_item_layout = 0x7f0c0010
+com.example.cuida:color/switch_thumb_disabled_material_light = 0x7f060317
+com.example.cuida:style/TextAppearance.MaterialComponents.Button = 0x7f1301fa
+com.example.cuida:style/TextAppearance.Material3.SearchView = 0x7f1301f2
+com.example.cuida:styleable/BottomSheetBehavior_Layout = 0x7f14001a
+com.example.cuida:style/TextAppearance.Material3.LabelSmall = 0x7f1301ef
+com.example.cuida:style/ThemeOverlay.Material3.HarmonizedColors.Empty = 0x7f1302a6
+com.example.cuida:color/m3_sys_color_light_on_surface_variant = 0x7f0601e9
+com.example.cuida:style/Widget.AppCompat.Light.ActionButton.Overflow = 0x7f13030b
+com.example.cuida:style/Theme.MaterialComponents.DayNight.Dialog.MinWidth = 0x7f130253
+com.example.cuida:styleable/TextInputEditText = 0x7f14009d
+com.example.cuida:style/TextAppearance.Material3.BodySmall = 0x7f1301e6
+com.example.cuida:style/Widget.Material3.Snackbar.TextView = 0x7f1303ce
+com.example.cuida:styleable/ActionMode = 0x7f140004
+com.example.cuida:style/TextAppearance.M3.Sys.Typescale.TitleMedium = 0x7f1301e0
+com.example.cuida:styleable/ViewStubCompat = 0x7f1400a8
+com.example.cuida:style/TextAppearance.M3.Sys.Typescale.HeadlineMedium = 0x7f1301da
+com.example.cuida:style/Widget.MaterialComponents.FloatingActionButton = 0x7f130414
+com.example.cuida:style/TextAppearance.M3.Sys.Typescale.DisplaySmall = 0x7f1301d8
+com.example.cuida:style/TextAppearance.M3.Sys.Typescale.TitleLarge = 0x7f1301df
+com.example.cuida:macro/m3_comp_date_picker_modal_weekdays_label_text_type = 0x7f0d001f
+com.example.cuida:style/ThemeOverlay.Material3.BottomSheetDialog = 0x7f130288
+com.example.cuida:style/TextAppearance.Design.Snackbar.Message = 0x7f1301d0
+com.example.cuida:id/accessibility_custom_action_9 = 0x7f09002f
+com.example.cuida:style/ThemeOverlay.MaterialComponents.BottomAppBar.Primary = 0x7f1302c7
com.example.cuida:style/TextAppearance.Design.Counter.Overflow = 0x7f1301ca
-com.example.cuida:style/TextAppearance.Design.Counter = 0x7f1301c9
-com.example.cuida:style/TextAppearance.Design.CollapsingToolbar.Expanded = 0x7f1301c8
-com.example.cuida:style/TextAppearance.Compat.Notification.Title = 0x7f1301c7
+com.example.cuida:string/mtrl_checkbox_button_icon_path_name = 0x7f120091
+com.example.cuida:style/Widget.Material3.MaterialCalendar.Day.Today = 0x7f130399
com.example.cuida:style/TextAppearance.Compat.Notification.Time = 0x7f1301c6
-com.example.cuida:style/TextAppearance.Compat.Notification = 0x7f1301c3
-com.example.cuida:style/TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f1301be
-com.example.cuida:style/TextAppearance.AppCompat.Widget.DropDownItem = 0x7f1301bd
-com.example.cuida:style/TextAppearance.AppCompat.Widget.Button = 0x7f1301b9
+com.example.cuida:style/ShapeAppearance.Material3.MediumComponent = 0x7f130176
+com.example.cuida:macro/m3_comp_plain_tooltip_supporting_text_type = 0x7f0d00c9
+com.example.cuida:style/Widget.AppCompat.Light.ActionMode.Inverse = 0x7f13030c
com.example.cuida:style/TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f1301b7
-com.example.cuida:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse = 0x7f1301b6
-com.example.cuida:styleable/MaterialCardView = 0x7f140059
-com.example.cuida:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f1301b5
-com.example.cuida:style/TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f1301b3
com.example.cuida:style/Widget.Design.AppBarLayout = 0x7f130333
com.example.cuida:style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f1301b2
com.example.cuida:styleable/ConstraintOverride = 0x7f14002d
com.example.cuida:style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense = 0x7f1303eb
com.example.cuida:style/TextAppearance.AppCompat.Title.Inverse = 0x7f1301ae
+com.example.cuida:string/mtrl_picker_day_of_week_column_header = 0x7f1200a6
com.example.cuida:style/TextAppearance.AppCompat.Title = 0x7f1301ad
-com.example.cuida:style/TextAppearance.AppCompat.Small.Inverse = 0x7f1301aa
-com.example.cuida:style/TextAppearance.AppCompat.Medium = 0x7f1301a4
-com.example.cuida:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f1301a3
-com.example.cuida:style/TextAppearance.AppCompat.Light.SearchResult.Title = 0x7f1301a1
-com.example.cuida:style/TextAppearance.AppCompat.Light.SearchResult.Subtitle = 0x7f1301a0
-com.example.cuida:style/TextAppearance.AppCompat.Large.Inverse = 0x7f13019f
-com.example.cuida:style/TextAppearance.AppCompat.Inverse = 0x7f13019d
-com.example.cuida:style/TextAppearance.AppCompat.Display3 = 0x7f13019a
-com.example.cuida:style/TextAppearance.AppCompat.Body2 = 0x7f130195
-com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.TextInputLayout.FilledBox = 0x7f130192
-com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year = 0x7f130191
-com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.FloatingActionButton = 0x7f13018e
+com.example.cuida:style/Widget.Material3.ChipGroup = 0x7f130371
+com.example.cuida:id/jumpToStart = 0x7f090116
+com.example.cuida:style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush = 0x7f1303fd
+com.example.cuida:style/Base.Widget.Material3.ActionBar.Solid = 0x7f1300fd
com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.BottomSheet = 0x7f13018b
-com.example.cuida:style/ShapeAppearanceOverlay.MaterialAlertDialog.Material3 = 0x7f13018a
+com.example.cuida:style/Widget.AppCompat.DrawerArrowToggle = 0x7f1302fc
com.example.cuida:style/ShapeAppearanceOverlay.Material3.FloatingActionButton = 0x7f130186
+com.example.cuida:string/mtrl_picker_toggle_to_day_selection = 0x7f1200be
+com.example.cuida:dimen/m3_sys_elevation_level3 = 0x7f0701f0
+com.example.cuida:style/Widget.AppCompat.Light.ActionBar = 0x7f130300
+com.example.cuida:styleable/MaterialCalendar = 0x7f140057
com.example.cuida:style/ShapeAppearanceOverlay.Material3.Corner.Left = 0x7f130183
-com.example.cuida:style/ShapeAppearance.MaterialComponents.MediumComponent = 0x7f13017d
-com.example.cuida:style/ShapeAppearance.MaterialComponents.LargeComponent = 0x7f13017c
-com.example.cuida:style/ShapeAppearance.MaterialComponents = 0x7f13017a
+com.example.cuida:styleable/ActionMenuItemView = 0x7f140002
+com.example.cuida:style/Widget.Material3.MaterialCalendar.Year = 0x7f1303a8
+com.example.cuida:dimen/mtrl_extended_fab_elevation = 0x7f0702a6
com.example.cuida:style/ShapeAppearance.Material3.NavigationBarView.ActiveIndicator = 0x7f130177
-com.example.cuida:style/ShapeAppearance.Material3.MediumComponent = 0x7f130176
-com.example.cuida:style/ShapeAppearance.Material3.LargeComponent = 0x7f130175
-com.example.cuida:style/ShapeAppearance.Material3.Corner.Small = 0x7f130174
+com.example.cuida:style/Platform.ThemeOverlay.AppCompat.Light = 0x7f13013e
com.example.cuida:style/ShapeAppearance.Material3.Corner.None = 0x7f130173
+com.example.cuida:integer/mtrl_badge_max_character_count = 0x7f0a002f
+com.example.cuida:macro/m3_comp_switch_selected_focus_track_color = 0x7f0d0124
+com.example.cuida:dimen/mtrl_badge_text_horizontal_edge_offset = 0x7f07024b
com.example.cuida:style/ShapeAppearance.Material3.Corner.Medium = 0x7f130172
com.example.cuida:style/ShapeAppearance.Material3.Corner.Full = 0x7f130170
com.example.cuida:style/ShapeAppearance.M3.Sys.Shape.Corner.None = 0x7f13016c
-com.example.cuida:style/ShapeAppearanceOverlay.Material3.SearchView = 0x7f130189
-com.example.cuida:style/ShapeAppearance.M3.Sys.Shape.Corner.Large = 0x7f13016a
+com.example.cuida:style/ShapeAppearance.Material3.Corner.Small = 0x7f130174
+com.example.cuida:style/MaterialAlertDialog.Material3.Body.Text = 0x7f130124
+com.example.cuida:layout/material_clockface_view = 0x7f0c004c
+com.example.cuida:id/material_clock_hand = 0x7f09012e
com.example.cuida:style/ShapeAppearance.M3.Sys.Shape.Corner.Full = 0x7f130169
-com.example.cuida:style/ShapeAppearance.M3.Sys.Shape.Corner.ExtraSmall = 0x7f130168
-com.example.cuida:style/ShapeAppearance.M3.Sys.Shape.Corner.ExtraLarge = 0x7f130167
-com.example.cuida:style/ShapeAppearance.M3.Comp.TextButton.Container.Shape = 0x7f130166
+com.example.cuida:style/Base.V7.Theme.AppCompat = 0x7f1300ba
com.example.cuida:style/ShapeAppearance.M3.Comp.Switch.StateLayer.Shape = 0x7f130164
+com.example.cuida:id/legacy = 0x7f09011b
com.example.cuida:styleable/KeyTimeCycle = 0x7f14004a
com.example.cuida:style/ShapeAppearance.M3.Comp.SearchView.FullScreen.Container.Shape = 0x7f130161
-com.example.cuida:style/ShapeAppearance.M3.Comp.SearchBar.Container.Shape = 0x7f130160
-com.example.cuida:style/ShapeAppearance.M3.Comp.SearchBar.Avatar.Shape = 0x7f13015f
com.example.cuida:style/ShapeAppearance.M3.Comp.NavigationRail.ActiveIndicator.Shape = 0x7f13015d
com.example.cuida:style/ShapeAppearance.M3.Comp.NavigationBar.Container.Shape = 0x7f13015b
com.example.cuida:style/ShapeAppearance.M3.Comp.NavigationBar.ActiveIndicator.Shape = 0x7f13015a
com.example.cuida:style/ShapeAppearance.M3.Comp.DatePicker.Modal.Date.Container.Shape = 0x7f130158
-com.example.cuida:style/ShapeAppearance.M3.Comp.BottomAppBar.Container.Shape = 0x7f130157
-com.example.cuida:style/ShapeAppearance.M3.Comp.Badge.Shape = 0x7f130156
-com.example.cuida:style/ShapeAppearance.M3.Comp.Badge.Large.Shape = 0x7f130155
-com.example.cuida:style/RtlUnderlay.Widget.AppCompat.ActionButton = 0x7f130153
+com.example.cuida:style/Widget.Design.NavigationView = 0x7f130338
com.example.cuida:style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon = 0x7f130152
-com.example.cuida:style/RtlOverlay.Widget.AppCompat.Search.DropDown = 0x7f13014d
+com.example.cuida:style/Theme.Material3.Light.NoActionBar = 0x7f130242
+com.example.cuida:id/navigation_sns24 = 0x7f090174
+com.example.cuida:style/Widget.Material3.TextInputEditText.FilledBox.Dense = 0x7f1303d3
+com.example.cuida:dimen/m3_datepicker_elevation = 0x7f0701aa
+com.example.cuida:style/Base.Widget.AppCompat.DrawerArrowToggle.Common = 0x7f1300d9
+com.example.cuida:drawable/ic_call_answer_video = 0x7f0800a0
+com.example.cuida:color/material_slider_thumb_color = 0x7f0602c0
com.example.cuida:style/RtlOverlay.Widget.AppCompat.DialogTitle.Icon = 0x7f130146
-com.example.cuida:style/Platform.Widget.AppCompat.Spinner = 0x7f130143
-com.example.cuida:style/Platform.V25.AppCompat = 0x7f130141
-com.example.cuida:style/Platform.V21.AppCompat.Light = 0x7f130140
-com.example.cuida:style/Widget.Material3.DrawerLayout = 0x7f13037d
-com.example.cuida:style/Platform.V21.AppCompat = 0x7f13013f
-com.example.cuida:style/Platform.ThemeOverlay.AppCompat.Light = 0x7f13013e
-com.example.cuida:style/Platform.ThemeOverlay.AppCompat.Dark = 0x7f13013d
+com.example.cuida:macro/m3_comp_navigation_drawer_active_focus_label_text_color = 0x7f0d007c
com.example.cuida:style/Platform.MaterialComponents.Dialog = 0x7f130139
-com.example.cuida:style/Widget.Material3.Tooltip = 0x7f1303e1
-com.example.cuida:style/Platform.MaterialComponents = 0x7f130138
-com.example.cuida:style/Platform.AppCompat.Light = 0x7f130137
-com.example.cuida:style/Theme.MaterialComponents.Light.Dialog.FixedSize = 0x7f13026a
-com.example.cuida:style/Platform.AppCompat = 0x7f130136
+com.example.cuida:style/Platform.Widget.AppCompat.Spinner = 0x7f130143
+com.example.cuida:style/Theme.MaterialComponents.DayNight.Dialog.Alert.Bridge = 0x7f13024f
+com.example.cuida:style/Base.ThemeOverlay.MaterialComponents.Dialog.Alert.Framework = 0x7f130086
+com.example.cuida:dimen/material_cursor_width = 0x7f07022e
+com.example.cuida:style/Platform.V21.AppCompat.Light = 0x7f130140
+com.example.cuida:macro/m3_comp_slider_disabled_handle_color = 0x7f0d010e
+com.example.cuida:style/Theme.MaterialComponents.Light.Dialog = 0x7f130266
+com.example.cuida:style/Theme.MaterialComponents.Dialog.MinWidth.Bridge = 0x7f13025f
+com.example.cuida:macro/m3_comp_sheet_side_detached_container_shape = 0x7f0d0108
+com.example.cuida:drawable/mtrl_ic_checkbox_checked = 0x7f0800de
+com.example.cuida:style/Widget.AppCompat.ButtonBar = 0x7f1302f7
+com.example.cuida:style/Base.V14.Theme.MaterialComponents.Bridge = 0x7f130092
+com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.Fullscreen = 0x7f13041f
+com.example.cuida:style/Base.Theme.AppCompat.Dialog.Alert = 0x7f13004e
+com.example.cuida:style/TextAppearance.Material3.LabelLarge = 0x7f1301ed
+com.example.cuida:style/ThemeOverlay.Material3.TextInputEditText = 0x7f1302b7
+com.example.cuida:id/spread = 0x7f0901ed
com.example.cuida:style/MaterialAlertDialog.MaterialComponents.Title.Text = 0x7f130134
-com.example.cuida:style/MaterialAlertDialog.MaterialComponents = 0x7f13012c
-com.example.cuida:style/MaterialAlertDialog.Material3.Title.Text.CenterStacked = 0x7f13012b
+com.example.cuida:style/Widget.Material3.Toolbar.OnSurface = 0x7f1303df
+com.example.cuida:color/material_grey_850 = 0x7f060277
+com.example.cuida:layout/abc_popup_menu_item_layout = 0x7f0c0013
+com.example.cuida:id/forgot_password_link = 0x7f0900f2
com.example.cuida:style/MaterialAlertDialog.Material3.Title.Panel.CenterStacked = 0x7f130129
-com.example.cuida:style/MaterialAlertDialog.Material3.Title.Icon = 0x7f130126
-com.example.cuida:style/MaterialAlertDialog.Material3.Body.Text.CenterStacked = 0x7f130125
-com.example.cuida:style/MaterialAlertDialog.Material3.Body.Text = 0x7f130124
-com.example.cuida:style/CardView.Light = 0x7f130121
-com.example.cuida:style/CardView = 0x7f13011f
+com.example.cuida:macro/m3_comp_switch_selected_pressed_icon_color = 0x7f0d012c
+com.example.cuida:id/name_edit_text = 0x7f090163
+com.example.cuida:style/Base.Widget.AppCompat.ListPopupWindow = 0x7f1300e6
com.example.cuida:style/Base.Widget.MaterialComponents.TextView = 0x7f13011e
com.example.cuida:style/Base.Widget.MaterialComponents.TextInputLayout = 0x7f13011d
-com.example.cuida:style/Base.Widget.MaterialComponents.TextInputEditText = 0x7f13011c
-com.example.cuida:style/Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton = 0x7f130115
-com.example.cuida:style/Base.Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton = 0x7f130114
-com.example.cuida:style/Widget.Material3.ActionMode = 0x7f13033f
+com.example.cuida:string/abc_action_bar_home_description = 0x7f120000
+com.example.cuida:style/Base.AlertDialog.AppCompat.Light = 0x7f13000c
+com.example.cuida:color/material_personalized__highlighted_text_inverse = 0x7f060288
+com.example.cuida:color/material_slider_active_track_color = 0x7f0602bc
+com.example.cuida:string/project_id = 0x7f1200d5
com.example.cuida:style/Base.Widget.MaterialComponents.Chip = 0x7f130113
+com.example.cuida:style/Widget.Material3.ActionMode = 0x7f13033f
+com.example.cuida:macro/m3_comp_radio_button_selected_pressed_state_layer_color = 0x7f0d00df
com.example.cuida:style/Base.Widget.Material3.TabLayout.OnSurface = 0x7f13010f
-com.example.cuida:style/Theme.MaterialComponents.Dialog.Alert = 0x7f130259
-com.example.cuida:style/Base.Widget.Material3.TabLayout = 0x7f13010e
+com.example.cuida:styleable/AnimatedStateListDrawableTransition = 0x7f14000c
com.example.cuida:style/Base.Widget.Material3.Light.ActionBar.Solid = 0x7f13010b
-com.example.cuida:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense = 0x7f13044d
-com.example.cuida:style/Base.Widget.Material3.FloatingActionButton.Large = 0x7f130109
-com.example.cuida:style/Base.Widget.Material3.ExtendedFloatingActionButton.Icon = 0x7f130107
com.example.cuida:style/Base.Widget.Material3.ExtendedFloatingActionButton = 0x7f130106
-com.example.cuida:style/Widget.MaterialComponents.AppBarLayout.Surface = 0x7f1303e9
-com.example.cuida:style/Base.Widget.Material3.CompoundButton.Switch = 0x7f130105
+com.example.cuida:string/mtrl_picker_cancel = 0x7f1200a1
+com.example.cuida:style/Theme.Material3.Dark.SideSheetDialog = 0x7f130230
com.example.cuida:style/Base.Widget.Material3.Chip = 0x7f130101
-com.example.cuida:style/Theme.MaterialComponents.DayNight.NoActionBar = 0x7f130256
-com.example.cuida:style/Base.Widget.Material3.CardView = 0x7f130100
-com.example.cuida:style/Base.Widget.Material3.ActionBar.Solid = 0x7f1300fd
-com.example.cuida:style/Base.Widget.Design.TabLayout = 0x7f1300fc
+com.example.cuida:id/text_time = 0x7f090220
+com.example.cuida:dimen/m3_comp_search_view_docked_header_container_height = 0x7f070175
com.example.cuida:style/Base.Widget.AppCompat.Toolbar.Button.Navigation = 0x7f1300fb
+com.example.cuida:style/TextAppearance.AppCompat.Body2 = 0x7f130195
+com.example.cuida:style/Widget.Design.FloatingActionButton = 0x7f130337
com.example.cuida:style/Base.Widget.AppCompat.Toolbar = 0x7f1300fa
com.example.cuida:style/Base.Widget.AppCompat.Spinner.Underlined = 0x7f1300f7
-com.example.cuida:style/Base.Widget.AppCompat.RatingBar.Small = 0x7f1300f1
+com.example.cuida:style/ThemeOverlay.Material3.Toolbar.Surface = 0x7f1302bc
com.example.cuida:style/Base.Widget.AppCompat.RatingBar = 0x7f1300ef
-com.example.cuida:style/Base.Widget.AppCompat.PopupMenu = 0x7f1300ea
-com.example.cuida:style/Base.Widget.AppCompat.ListPopupWindow = 0x7f1300e6
+com.example.cuida:style/Base.V26.Theme.AppCompat.Light = 0x7f1300b6
com.example.cuida:style/Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f1300e1
-com.example.cuida:xml/backup_rules = 0x7f150000
-com.example.cuida:style/Widget.AppCompat.ActionButton.Overflow = 0x7f1302ed
-com.example.cuida:style/Base.Widget.AppCompat.Light.ActionBar.TabText = 0x7f1300e0
-com.example.cuida:style/Base.Widget.AppCompat.Light.ActionBar.TabBar = 0x7f1300df
-com.example.cuida:style/Widget.AppCompat.ImageButton = 0x7f1302ff
+com.example.cuida:drawable/mtrl_switch_thumb_pressed_unchecked = 0x7f0800eb
+com.example.cuida:style/TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f1301b3
+com.example.cuida:styleable/CoordinatorLayout = 0x7f14002f
+com.example.cuida:macro/m3_comp_search_bar_hover_supporting_text_color = 0x7f0d00e9
+com.example.cuida:macro/m3_comp_icon_button_selected_icon_color = 0x7f0d005a
+com.example.cuida:style/Widget.Material3.BottomAppBar.Legacy = 0x7f130349
+com.example.cuida:layout/abc_search_dropdown_item_icons_2line = 0x7f0c0018
com.example.cuida:style/Base.Widget.AppCompat.Light.ActionBar = 0x7f1300dd
+com.example.cuida:style/Widget.AppCompat.ImageButton = 0x7f1302ff
com.example.cuida:style/Base.Widget.AppCompat.EditText = 0x7f1300db
-com.example.cuida:style/Base.Widget.AppCompat.DropDownItem.Spinner = 0x7f1300da
-com.example.cuida:style/Base.Widget.AppCompat.DrawerArrowToggle.Common = 0x7f1300d9
-com.example.cuida:style/Base.Widget.AppCompat.DrawerArrowToggle = 0x7f1300d8
com.example.cuida:style/Base.Widget.AppCompat.CompoundButton.Switch = 0x7f1300d7
-com.example.cuida:style/Base.Widget.AppCompat.Light.PopupMenu = 0x7f1300e3
-com.example.cuida:style/Base.Widget.AppCompat.CompoundButton.RadioButton = 0x7f1300d6
-com.example.cuida:style/Widget.Material3.TextInputEditText.FilledBox = 0x7f1303d2
-com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.ExtendedFloatingActionButton = 0x7f13018d
-com.example.cuida:style/Base.Widget.AppCompat.CompoundButton.CheckBox = 0x7f1300d5
+com.example.cuida:id/design_menu_item_action_area = 0x7f0900b0
+com.example.cuida:style/Widget.MaterialComponents.Button = 0x7f1303f7
+com.example.cuida:style/Base.TextAppearance.AppCompat.Subhead = 0x7f13002d
com.example.cuida:style/Base.Widget.AppCompat.Button.Small = 0x7f1300d2
-com.example.cuida:style/Base.Widget.AppCompat.Button.Colored = 0x7f1300d1
+com.example.cuida:string/abc_capital_on = 0x7f120007
com.example.cuida:style/Base.Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f1300d0
-com.example.cuida:style/Base.Widget.AppCompat.Button.Borderless.Colored = 0x7f1300cf
-com.example.cuida:style/Base.Widget.AppCompat.AutoCompleteTextView = 0x7f1300cc
+com.example.cuida:id/nav_view = 0x7f090167
com.example.cuida:style/Base.Widget.AppCompat.ActivityChooserView = 0x7f1300cb
+com.example.cuida:style/Widget.Material3.CompoundButton.CheckBox = 0x7f130379
+com.example.cuida:style/TextAppearance.Compat.Notification.Title = 0x7f1301c7
com.example.cuida:styleable/MaterialTextView = 0x7f140061
com.example.cuida:style/Base.Widget.AppCompat.ActionMode = 0x7f1300ca
-com.example.cuida:style/MaterialAlertDialog.Material3.Title.Panel = 0x7f130128
+com.example.cuida:macro/m3_comp_navigation_drawer_inactive_focus_icon_color = 0x7f0d0089
+com.example.cuida:style/TextAppearance.AppCompat.Light.SearchResult.Subtitle = 0x7f1301a0
+com.example.cuida:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse = 0x7f1301b6
com.example.cuida:style/Base.Widget.AppCompat.ActionButton = 0x7f1300c7
+com.example.cuida:style/MaterialAlertDialog.Material3.Title.Panel = 0x7f130128
com.example.cuida:style/Base.Widget.AppCompat.ActionBar.TabBar = 0x7f1300c4
+com.example.cuida:layout/mtrl_calendar_month_labeled = 0x7f0c0060
+com.example.cuida:style/CardView = 0x7f13011f
com.example.cuida:style/Base.Widget.AppCompat.ActionBar.Solid = 0x7f1300c3
com.example.cuida:style/Base.Widget.AppCompat.ActionBar = 0x7f1300c2
-com.example.cuida:style/Base.V7.Widget.AppCompat.Toolbar = 0x7f1300c1
-com.example.cuida:style/Base.V7.Widget.AppCompat.AutoCompleteTextView = 0x7f1300bf
+com.example.cuida:styleable/ActivityChooserView = 0x7f140005
+com.example.cuida:style/MaterialAlertDialog.MaterialComponents.Title.Panel.CenterStacked = 0x7f130133
+com.example.cuida:style/Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f13009c
+com.example.cuida:style/Base.Widget.Material3.TabLayout = 0x7f13010e
+com.example.cuida:style/Theme.MaterialComponents.Dialog.Alert = 0x7f130259
+com.example.cuida:color/m3_ref_palette_primary50 = 0x7f06013f
+com.example.cuida:style/Widget.MaterialComponents.Button.TextButton.Dialog = 0x7f1303fc
com.example.cuida:style/Base.V7.Theme.AppCompat.Light = 0x7f1300bc
+com.example.cuida:macro/m3_comp_radio_button_unselected_hover_icon_color = 0x7f0d00e2
+com.example.cuida:style/Widget.Material3.MaterialCalendar.Day.Selected = 0x7f130398
com.example.cuida:style/Base.V7.Theme.AppCompat.Dialog = 0x7f1300bb
-com.example.cuida:style/Base.V7.Theme.AppCompat = 0x7f1300ba
-com.example.cuida:style/Base.V28.Theme.AppCompat.Light = 0x7f1300b9
-com.example.cuida:style/Base.V26.Widget.AppCompat.Toolbar = 0x7f1300b7
-com.example.cuida:style/Base.V26.Theme.AppCompat.Light = 0x7f1300b6
+com.example.cuida:style/Widget.MaterialComponents.CompoundButton.Switch = 0x7f130411
com.example.cuida:style/Base.V26.Theme.AppCompat = 0x7f1300b5
-com.example.cuida:style/Base.V24.Theme.Material3.Dark = 0x7f1300b1
-com.example.cuida:style/Base.V22.Theme.AppCompat = 0x7f1300ad
+com.example.cuida:styleable/MaterialAutoCompleteTextView = 0x7f140054
com.example.cuida:style/Base.V21.ThemeOverlay.Material3.BottomSheetDialog = 0x7f1300aa
-com.example.cuida:style/Base.V21.Theme.MaterialComponents.Light.Dialog = 0x7f1300a8
com.example.cuida:style/Base.V21.Theme.MaterialComponents.Light = 0x7f1300a7
com.example.cuida:style/ShapeAppearance.Material3.Corner.Large = 0x7f130171
com.example.cuida:style/Base.V21.Theme.MaterialComponents.Dialog = 0x7f1300a6
-com.example.cuida:style/Base.V21.Theme.MaterialComponents = 0x7f1300a5
com.example.cuida:style/Widget.Material3.Button.OutlinedButton.Icon = 0x7f130359
com.example.cuida:style/Base.V21.Theme.AppCompat.Light.Dialog = 0x7f1300a4
+com.example.cuida:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f1302d2
+com.example.cuida:styleable/BottomAppBar = 0x7f140018
+com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.Year.Today = 0x7f13042e
com.example.cuida:style/Base.V21.Theme.AppCompat.Dialog = 0x7f1300a2
com.example.cuida:style/Base.V21.Theme.AppCompat = 0x7f1300a1
-com.example.cuida:style/Base.V14.Widget.MaterialComponents.AutoCompleteTextView = 0x7f1300a0
+com.example.cuida:style/Base.V28.Theme.AppCompat.Light = 0x7f1300b9
+com.example.cuida:color/common_google_signin_btn_tint = 0x7f060040
+com.example.cuida:style/Theme.Material3.DayNight.Dialog = 0x7f130233
+com.example.cuida:style/TextAppearance.Material3.TitleLarge = 0x7f1301f4
+com.example.cuida:attr/submitBackground = 0x7f040425
+com.example.cuida:dimen/abc_text_size_body_1_material = 0x7f07003f
com.example.cuida:style/Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f13009e
-com.example.cuida:style/MaterialAlertDialog.MaterialComponents.Title.Panel.CenterStacked = 0x7f130133
-com.example.cuida:style/Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f13009c
-com.example.cuida:style/Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f130099
-com.example.cuida:style/Base.V14.Theme.MaterialComponents.Light.Bridge = 0x7f130096
-com.example.cuida:style/Base.V14.Theme.MaterialComponents.Dialog.Bridge = 0x7f130094
-com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.Fullscreen = 0x7f13041f
-com.example.cuida:style/Base.V14.Theme.MaterialComponents.Bridge = 0x7f130092
-com.example.cuida:style/TextAppearance.M3.Sys.Typescale.TitleSmall = 0x7f1301e1
-com.example.cuida:style/Base.V14.Theme.Material3.Light.Dialog = 0x7f13008f
-com.example.cuida:style/Widget.Material3.Button.OutlinedButton = 0x7f130358
-com.example.cuida:style/Base.V14.Theme.Material3.Dark.SideSheetDialog = 0x7f13008c
+com.example.cuida:style/ThemeOverlay.Material3 = 0x7f13027e
+com.example.cuida:macro/m3_comp_time_picker_container_shape = 0x7f0d0150
+com.example.cuida:style/Widget.AppCompat.Light.DropDownItem.Spinner = 0x7f13030f
+com.example.cuida:string/mtrl_timepicker_cancel = 0x7f1200c9
com.example.cuida:style/Base.V14.Theme.Material3.Dark.Dialog = 0x7f13008b
+com.example.cuida:style/Base.ThemeOverlay.Material3.BottomSheetDialog = 0x7f130080
+com.example.cuida:style/ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f130277
com.example.cuida:style/Base.V14.Theme.Material3.Dark = 0x7f130089
+com.example.cuida:style/Widget.MaterialComponents.TimePicker.Display = 0x7f130454
com.example.cuida:style/Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f130088
com.example.cuida:style/Base.ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework = 0x7f130087
-com.example.cuida:style/Theme.MaterialComponents.DayNight.Dialog.Alert.Bridge = 0x7f13024f
-com.example.cuida:style/Base.ThemeOverlay.MaterialComponents.Dialog.Alert.Framework = 0x7f130086
-com.example.cuida:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1 = 0x7f13014e
-com.example.cuida:style/Base.ThemeOverlay.Material3.SideSheetDialog = 0x7f130082
-com.example.cuida:style/Base.ThemeOverlay.Material3.Dialog = 0x7f130081
-com.example.cuida:style/Base.ThemeOverlay.Material3.BottomSheetDialog = 0x7f130080
+com.example.cuida:style/ThemeOverlay.Material3.MaterialCalendar = 0x7f1302ab
com.example.cuida:style/Base.ThemeOverlay.AppCompat.Dialog = 0x7f13007c
-com.example.cuida:style/TextAppearance.AppCompat.Body1 = 0x7f130194
-com.example.cuida:style/Base.ThemeOverlay.AppCompat = 0x7f130078
-com.example.cuida:style/Base.Theme.MaterialComponents.Light.DialogWhenLarge = 0x7f130077
-com.example.cuida:style/Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f130071
-com.example.cuida:style/ShapeAppearance.M3.Sys.Shape.Corner.Medium = 0x7f13016b
+com.example.cuida:dimen/mtrl_tooltip_minHeight = 0x7f070304
com.example.cuida:style/Base.Theme.MaterialComponents.Light.Bridge = 0x7f13006f
-com.example.cuida:style/Base.Theme.MaterialComponents.DialogWhenLarge = 0x7f13006d
-com.example.cuida:style/Base.Theme.MaterialComponents.Dialog.MinWidth = 0x7f13006c
+com.example.cuida:style/ShapeAppearance.M3.Sys.Shape.Corner.Medium = 0x7f13016b
com.example.cuida:style/Theme.Material3.Light.Dialog.Alert = 0x7f13023f
com.example.cuida:style/Base.Theme.MaterialComponents.CompactMenu = 0x7f130067
+com.example.cuida:interpolator/m3_sys_motion_easing_linear = 0x7f0b000a
+com.example.cuida:style/Base.Theme.MaterialComponents.Bridge = 0x7f130066
com.example.cuida:style/TextAppearance.MaterialComponents.Badge = 0x7f1301f7
com.example.cuida:style/Base.Widget.AppCompat.ProgressBar.Horizontal = 0x7f1300ee
-com.example.cuida:style/Base.Theme.MaterialComponents.Bridge = 0x7f130066
-com.example.cuida:style/TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f1301c0
-com.example.cuida:style/Base.Theme.Material3.Light.SideSheetDialog = 0x7f130064
-com.example.cuida:style/Base.Theme.Material3.Light.Dialog.FixedSize = 0x7f130062
-com.example.cuida:style/Base.Theme.Material3.Light.Dialog = 0x7f130061
-com.example.cuida:style/Base.Theme.Material3.Light.BottomSheetDialog = 0x7f130060
+com.example.cuida:style/Widget.Material3.Chip.Input.Icon = 0x7f13036d
+com.example.cuida:dimen/mtrl_extended_fab_translation_z_pressed = 0x7f0702b2
+com.example.cuida:id/selected = 0x7f0901d6
+com.example.cuida:id/fab_add_medication = 0x7f0900df
+com.example.cuida:style/Widget.MaterialComponents.CompoundButton.CheckBox = 0x7f13040f
+com.example.cuida:style/Theme.AppCompat.Light = 0x7f130219
+com.example.cuida:id/bottom = 0x7f090065
com.example.cuida:style/Base.Theme.Material3.Light = 0x7f13005f
+com.example.cuida:style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon = 0x7f130413
com.example.cuida:style/Base.Theme.MaterialComponents.Light.Dialog.FixedSize = 0x7f130075
com.example.cuida:style/Base.Theme.Material3.Dark.Dialog.FixedSize = 0x7f13005c
-com.example.cuida:style/Theme.MaterialComponents.DialogWhenLarge = 0x7f130260
-com.example.cuida:style/Base.Theme.AppCompat.Light.Dialog.MinWidth = 0x7f130057
-com.example.cuida:style/Base.Theme.AppCompat.Light.Dialog.FixedSize = 0x7f130056
-com.example.cuida:style/Widget.MaterialComponents.Chip.Choice = 0x7f130406
+com.example.cuida:dimen/m3_comp_filled_card_icon_size = 0x7f07012c
+com.example.cuida:macro/m3_comp_time_input_time_input_field_supporting_text_color = 0x7f0d014b
+com.example.cuida:id/immediateStop = 0x7f09010c
+com.example.cuida:style/Base.TextAppearance.AppCompat.Medium = 0x7f130025
+com.example.cuida:style/TextAppearance.MaterialComponents.Headline2 = 0x7f1301fe
+com.example.cuida:string/title_profile = 0x7f1200e2
+com.example.cuida:id/tabMode = 0x7f090200
+com.example.cuida:id/textinput_counter = 0x7f090223
+com.example.cuida:dimen/mtrl_high_ripple_pressed_alpha = 0x7f0702ba
com.example.cuida:style/Base.Theme.AppCompat.Light.Dialog = 0x7f130054
-com.example.cuida:style/Base.Theme.AppCompat.Dialog.MinWidth = 0x7f130050
-com.example.cuida:style/Base.Theme.AppCompat.Dialog.Alert = 0x7f13004e
-com.example.cuida:style/Base.Theme.AppCompat.CompactMenu = 0x7f13004c
-com.example.cuida:styleable/LinearProgressIndicator = 0x7f14004f
+com.example.cuida:style/Widget.MaterialComponents.Chip.Choice = 0x7f130406
+com.example.cuida:string/mtrl_chip_close_icon_content_description = 0x7f120099
+com.example.cuida:style/RtlOverlay.Widget.AppCompat.Search.DropDown = 0x7f13014d
com.example.cuida:style/Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f130049
-com.example.cuida:style/Base.TextAppearance.MaterialComponents.Button = 0x7f130045
+com.example.cuida:styleable/LinearProgressIndicator = 0x7f14004f
+com.example.cuida:style/Theme.MaterialComponents.DayNight.NoActionBar = 0x7f130256
+com.example.cuida:style/Base.Widget.Material3.CardView = 0x7f130100
com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Large = 0x7f13003f
-com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f13003e
-com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f13003c
-com.example.cuida:style/Widget.AppCompat.ListView.Menu = 0x7f13031a
-com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.Button = 0x7f130039
+com.example.cuida:string/m3_sys_motion_easing_legacy_accelerate = 0x7f120071
+com.example.cuida:style/Widget.Material3.MaterialTimePicker.ImageButton = 0x7f1303b6
+com.example.cuida:layout/material_time_input = 0x7f0c0050
+com.example.cuida:macro/m3_comp_time_picker_time_selector_label_text_type = 0x7f0d0160
+com.example.cuida:styleable/LinearLayoutCompat = 0x7f14004d
+com.example.cuida:id/search_button = 0x7f0901cd
+com.example.cuida:style/Widget.AppCompat.Light.ActionBar.TabView.Inverse = 0x7f130308
+com.example.cuida:layout/abc_popup_menu_header_item_layout = 0x7f0c0012
com.example.cuida:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Query = 0x7f130150
com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f130037
-com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f130035
-com.example.cuida:style/ShapeAppearance.Material3.SmallComponent = 0x7f130178
-com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f130034
-com.example.cuida:style/Platform.MaterialComponents.Light.Dialog = 0x7f13013b
-com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f130033
-com.example.cuida:style/Base.TextAppearance.AppCompat.Title.Inverse = 0x7f130030
-com.example.cuida:style/Base.TextAppearance.AppCompat.Title = 0x7f13002f
-com.example.cuida:style/Base.TextAppearance.AppCompat.Subhead = 0x7f13002d
-com.example.cuida:style/Base.TextAppearance.AppCompat.SearchResult = 0x7f130028
-com.example.cuida:style/Base.TextAppearance.AppCompat.Menu = 0x7f130027
-com.example.cuida:style/Base.TextAppearance.AppCompat.Medium.Inverse = 0x7f130026
-com.example.cuida:style/TextAppearance.MaterialComponents.Headline2 = 0x7f1301fe
-com.example.cuida:style/Base.TextAppearance.AppCompat.Medium = 0x7f130025
-com.example.cuida:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f130024
-com.example.cuida:style/Base.TextAppearance.AppCompat.Large = 0x7f130021
-com.example.cuida:style/Base.TextAppearance.AppCompat.Inverse = 0x7f130020
-com.example.cuida:style/Base.TextAppearance.AppCompat.Display2 = 0x7f13001c
-com.example.cuida:style/Base.TextAppearance.AppCompat.Display1 = 0x7f13001b
-com.example.cuida:style/Base.TextAppearance.AppCompat.Body1 = 0x7f130017
-com.example.cuida:style/Base.TextAppearance.AppCompat = 0x7f130016
-com.example.cuida:style/Base.MaterialAlertDialog.MaterialComponents.Title.Icon = 0x7f130013
-com.example.cuida:style/ThemeOverlay.Material3.MaterialAlertDialog.Centered = 0x7f1302aa
+com.example.cuida:style/Base.Widget.AppCompat.Light.ActionBar.TabText = 0x7f1300e0
+com.example.cuida:style/Widget.AppCompat.ActionButton.Overflow = 0x7f1302ed
+com.example.cuida:xml/backup_rules = 0x7f150000
com.example.cuida:style/Base.DialogWindowTitleBackground.AppCompat = 0x7f130012
+com.example.cuida:style/ThemeOverlay.Material3.MaterialAlertDialog.Centered = 0x7f1302aa
+com.example.cuida:id/action_divider = 0x7f09003d
+com.example.cuida:color/m3_sys_color_light_surface_variant = 0x7f0601fa
+com.example.cuida:macro/m3_comp_time_picker_period_selector_unselected_focus_state_layer_color = 0x7f0d015b
+com.example.cuida:style/Base.Theme.Material3.Light.Dialog = 0x7f130061
+com.example.cuida:string/m3_ref_typeface_brand_regular = 0x7f120069
+com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderLayout = 0x7f130423
+com.example.cuida:style/Platform.AppCompat.Light = 0x7f130137
+com.example.cuida:style/Base.TextAppearance.AppCompat.Title.Inverse = 0x7f130030
+com.example.cuida:style/Base.TextAppearance.AppCompat.SearchResult = 0x7f130028
+com.example.cuida:style/ThemeOverlay.Material3.Light = 0x7f1302a7
+com.example.cuida:style/Base.TextAppearance.AppCompat.Menu = 0x7f130027
+com.example.cuida:style/ShapeAppearance.M3.Comp.SearchBar.Avatar.Shape = 0x7f13015f
+com.example.cuida:style/TextAppearance.AppCompat.Body1 = 0x7f130194
+com.example.cuida:style/Base.ThemeOverlay.AppCompat = 0x7f130078
+com.example.cuida:style/Base.TextAppearance.AppCompat.Medium.Inverse = 0x7f130026
+com.example.cuida:style/ThemeOverlay.Material3.TextInputEditText.OutlinedBox.Dense = 0x7f1302bb
+com.example.cuida:style/Widget.MaterialComponents.CollapsingToolbar = 0x7f13040e
+com.example.cuida:dimen/material_clock_display_padding = 0x7f070220
+com.example.cuida:layout/mtrl_picker_header_title_text = 0x7f0c006e
+com.example.cuida:style/Base.TextAppearance.AppCompat.Large = 0x7f130021
+com.example.cuida:color/m3_textfield_indicator_text_color = 0x7f060213
+com.example.cuida:style/ThemeOverlay.MaterialComponents.TimePicker = 0x7f1302e0
+com.example.cuida:id/notification_main_column_container = 0x7f090182
+com.example.cuida:macro/m3_comp_top_app_bar_medium_headline_color = 0x7f0d016e
+com.example.cuida:style/Base.TextAppearance.AppCompat = 0x7f130016
com.example.cuida:style/Base.DialogWindowTitle.AppCompat = 0x7f130011
-com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f130040
+com.example.cuida:string/confirm_device_credential_password = 0x7f120045
com.example.cuida:style/Base.Animation.AppCompat.Tooltip = 0x7f13000f
+com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f130040
+com.example.cuida:style/Widget.AppCompat.Light.ListView.DropDown = 0x7f130311
com.example.cuida:style/Base.Animation.AppCompat.DropDownUp = 0x7f13000e
-com.example.cuida:style/Base.Animation.AppCompat.Dialog = 0x7f13000d
-com.example.cuida:style/Base.AlertDialog.AppCompat.Light = 0x7f13000c
-com.example.cuida:style/Base.AlertDialog.AppCompat = 0x7f13000b
+com.example.cuida:string/m3_sys_motion_easing_emphasized_accelerate = 0x7f12006d
com.example.cuida:style/Animation.MaterialComponents.BottomSheetDialog = 0x7f13000a
-com.example.cuida:style/Animation.Material3.SideSheetDialog.Left = 0x7f130008
-com.example.cuida:style/Animation.Material3.SideSheetDialog = 0x7f130007
+com.example.cuida:id/bounce = 0x7f090066
com.example.cuida:style/Animation.Design.BottomSheetDialog = 0x7f130005
-com.example.cuida:style/AlertDialog.AppCompat = 0x7f130000
-com.example.cuida:string/title_profile = 0x7f1200e2
-com.example.cuida:string/title_medication = 0x7f1200e1
+com.example.cuida:style/Base.Widget.AppCompat.Button.Colored = 0x7f1300d1
com.example.cuida:string/status_bar_notification_info_overflow = 0x7f1200de
com.example.cuida:string/side_sheet_behavior = 0x7f1200dd
com.example.cuida:string/side_sheet_accessibility_pane_title = 0x7f1200dc
-com.example.cuida:string/searchview_clear_text_content_description = 0x7f1200da
-com.example.cuida:string/project_id = 0x7f1200d5
+com.example.cuida:style/Widget.Material3.Chip.Input = 0x7f13036b
+com.example.cuida:id/accessibility_custom_action_20 = 0x7f09001d
+com.example.cuida:macro/m3_comp_text_button_focus_state_layer_color = 0x7f0d0143
+com.example.cuida:style/Widget.Material3.SearchView.Toolbar = 0x7f1303c5
+com.example.cuida:color/material_personalized_color_outline_variant = 0x7f06029c
+com.example.cuida:id/cache_measures = 0x7f09007d
+com.example.cuida:id/open_search_view_toolbar_container = 0x7f090193
+com.example.cuida:string/path_password_strike_through = 0x7f1200d4
com.example.cuida:styleable/AppBarLayout = 0x7f14000d
com.example.cuida:style/Widget.AppCompat.RatingBar.Indicator = 0x7f130321
-com.example.cuida:string/path_password_strike_through = 0x7f1200d4
-com.example.cuida:string/path_password_eye_mask_visible = 0x7f1200d3
-com.example.cuida:string/path_password_eye = 0x7f1200d1
-com.example.cuida:string/password_toggle_content_description = 0x7f1200d0
-com.example.cuida:string/password_hint = 0x7f1200cf
-com.example.cuida:style/Base.Widget.Material3.FloatingActionButton = 0x7f130108
-com.example.cuida:string/nav_app_bar_navigate_up_description = 0x7f1200cc
-com.example.cuida:string/mtrl_timepicker_cancel = 0x7f1200c9
-com.example.cuida:style/TextAppearance.AppCompat.Medium.Inverse = 0x7f1301a5
-com.example.cuida:string/mtrl_switch_track_path = 0x7f1200c8
+com.example.cuida:style/Widget.AppCompat.ActionBar.Solid = 0x7f1302e7
+com.example.cuida:style/Theme.Material3.Light.BottomSheetDialog = 0x7f13023d
+com.example.cuida:style/Theme.Material3.DayNight.Dialog.Alert = 0x7f130234
+com.example.cuida:integer/bottom_sheet_slide_duration = 0x7f0a0003
+com.example.cuida:style/Widget.Material3.CircularProgressIndicator.Medium = 0x7f130374
+com.example.cuida:style/ThemeOverlay.AppCompat.ActionBar = 0x7f130275
+com.example.cuida:style/ThemeOverlay.MaterialComponents.Toolbar.Surface = 0x7f1302e5
+com.example.cuida:style/TextAppearance.AppCompat.Display3 = 0x7f13019a
+com.example.cuida:macro/m3_comp_navigation_bar_active_icon_color = 0x7f0d0068
com.example.cuida:styleable/CheckedTextView = 0x7f14001f
com.example.cuida:string/mtrl_switch_thumb_path_pressed = 0x7f1200c5
+com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderTitle = 0x7f130427
+com.example.cuida:macro/m3_comp_switch_selected_track_color = 0x7f0d012f
com.example.cuida:string/mtrl_switch_thumb_path_name = 0x7f1200c4
+com.example.cuida:drawable/common_google_signin_btn_text_dark = 0x7f08008b
com.example.cuida:string/mtrl_switch_thumb_path_checked = 0x7f1200c2
+com.example.cuida:color/teal_200 = 0x7f06031c
+com.example.cuida:color/m3_ref_palette_error99 = 0x7f060113
com.example.cuida:string/mtrl_picker_toggle_to_text_input_mode = 0x7f1200bf
-com.example.cuida:string/mtrl_picker_toggle_to_day_selection = 0x7f1200be
-com.example.cuida:string/mtrl_picker_today_description = 0x7f1200bc
-com.example.cuida:style/ThemeOverlay.MaterialComponents.DayNight.BottomSheetDialog = 0x7f1302cc
-com.example.cuida:style/Theme.Material3.Dark.Dialog.Alert = 0x7f13022c
-com.example.cuida:string/mtrl_picker_text_input_year_abbr = 0x7f1200bb
+com.example.cuida:style/Widget.Material3.MaterialTimePicker.Display.HelperText = 0x7f1303b3
+com.example.cuida:dimen/cardview_default_radius = 0x7f070056
+com.example.cuida:drawable/abc_cab_background_internal_bg = 0x7f080037
+com.example.cuida:dimen/m3_searchbar_margin_horizontal = 0x7f0701d8
+com.example.cuida:string/abc_menu_function_shortcut_label = 0x7f12000c
+com.example.cuida:style/Base.Widget.AppCompat.Light.ActionBar.TabBar = 0x7f1300df
com.example.cuida:string/mtrl_picker_text_input_month_abbr = 0x7f1200ba
+com.example.cuida:style/TextAppearance.MaterialComponents.Chip = 0x7f1301fc
com.example.cuida:styleable/TabLayout = 0x7f14009a
com.example.cuida:string/mtrl_picker_text_input_date_range_end_hint = 0x7f1200b7
-com.example.cuida:string/mtrl_picker_text_input_date_hint = 0x7f1200b6
-com.example.cuida:string/mtrl_picker_start_date_description = 0x7f1200b5
-com.example.cuida:string/mtrl_picker_save = 0x7f1200b4
-com.example.cuida:string/mtrl_picker_range_header_only_start_selected = 0x7f1200b0
+com.example.cuida:macro/m3_comp_switch_unselected_hover_state_layer_color = 0x7f0d0138
com.example.cuida:string/mtrl_picker_out_of_range = 0x7f1200ae
-com.example.cuida:style/Widget.Material3.FloatingActionButton.Small.Surface = 0x7f13038e
+com.example.cuida:styleable/TextEffects = 0x7f14009c
+com.example.cuida:layout/mtrl_calendar_day = 0x7f0c005b
+com.example.cuida:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f1301a3
com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.Button.Colored = 0x7f13003b
com.example.cuida:string/mtrl_picker_navigate_to_year_description = 0x7f1200ad
+com.example.cuida:style/Widget.Material3.FloatingActionButton.Small.Surface = 0x7f13038e
+com.example.cuida:style/ThemeOverlay.Material3.AutoCompleteTextView.FilledBox.Dense = 0x7f130282
+com.example.cuida:styleable/Snackbar = 0x7f14008d
+com.example.cuida:integer/mtrl_switch_thumb_pressed_duration = 0x7f0a003b
+com.example.cuida:style/ThemeOverlay.MaterialComponents.TimePicker.Display = 0x7f1302e1
+com.example.cuida:dimen/m3_navigation_rail_elevation = 0x7f0701c7
+com.example.cuida:string/call_notification_decline_action = 0x7f12002a
com.example.cuida:string/mtrl_picker_navigate_to_current_year_description = 0x7f1200ac
com.example.cuida:string/mtrl_picker_invalid_range = 0x7f1200ab
-com.example.cuida:string/mtrl_picker_invalid_format_use = 0x7f1200aa
+com.example.cuida:id/button_book_appointment = 0x7f090073
+com.example.cuida:style/Widget.AppCompat.Light.ActionButton = 0x7f130309
com.example.cuida:string/mtrl_picker_invalid_format_example = 0x7f1200a9
-com.example.cuida:string/mtrl_picker_day_of_week_column_header = 0x7f1200a6
-com.example.cuida:string/mtrl_picker_date_header_unselected = 0x7f1200a5
+com.example.cuida:style/Base.TextAppearance.AppCompat.Display4 = 0x7f13001e
+com.example.cuida:integer/material_motion_duration_short_2 = 0x7f0a002d
com.example.cuida:string/mtrl_picker_date_header_selected = 0x7f1200a3
-com.example.cuida:string/mtrl_picker_cancel = 0x7f1200a1
+com.example.cuida:style/Widget.MaterialComponents.Chip.Action = 0x7f130405
+com.example.cuida:style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox = 0x7f1303ec
+com.example.cuida:macro/m3_comp_dialog_headline_type = 0x7f0d0026
+com.example.cuida:style/TextAppearance.Compat.Notification = 0x7f1301c3
+com.example.cuida:color/m3_sys_color_dynamic_light_error = 0x7f0601ae
com.example.cuida:string/mtrl_picker_announce_current_selection = 0x7f12009f
-com.example.cuida:string/mtrl_chip_close_icon_content_description = 0x7f120099
-com.example.cuida:string/mtrl_checkbox_button_path_unchecked = 0x7f120095
+com.example.cuida:id/snackbar_text = 0x7f0901e5
+com.example.cuida:string/abc_action_bar_up_description = 0x7f120001
+com.example.cuida:layout/ime_secondary_split_test_activity = 0x7f0c003d
+com.example.cuida:color/m3_sys_color_dynamic_light_on_tertiary = 0x7f0601bc
com.example.cuida:string/mtrl_checkbox_button_path_checked = 0x7f120092
-com.example.cuida:string/mtrl_checkbox_button_icon_path_name = 0x7f120091
-com.example.cuida:string/mtrl_checkbox_button_icon_path_group_name = 0x7f12008f
+com.example.cuida:color/m3_sys_color_dynamic_light_surface_container_high = 0x7f0601c7
+com.example.cuida:style/Base.Theme.MaterialComponents.Light.Dialog = 0x7f130072
+com.example.cuida:style/Widget.MaterialComponents.TabLayout = 0x7f130441
+com.example.cuida:id/search_go_btn = 0x7f0901d0
com.example.cuida:string/mtrl_badge_numberless_content_description = 0x7f12008d
-com.example.cuida:string/material_timepicker_text_input_mode_description = 0x7f12008c
-com.example.cuida:string/material_timepicker_pm = 0x7f12008a
-com.example.cuida:string/material_timepicker_minute = 0x7f120089
-com.example.cuida:string/material_timepicker_hour = 0x7f120088
+com.example.cuida:macro/m3_comp_navigation_drawer_inactive_pressed_state_layer_color = 0x7f0d0093
+com.example.cuida:style/Base.Theme.MaterialComponents.Light.DialogWhenLarge = 0x7f130077
com.example.cuida:string/material_timepicker_am = 0x7f120086
-com.example.cuida:style/Widget.Material3.Button.IconButton.Outlined = 0x7f130357
-com.example.cuida:string/material_slider_range_start = 0x7f120084
+com.example.cuida:macro/m3_comp_outlined_autocomplete_menu_container_color = 0x7f0d00a3
+com.example.cuida:style/ShapeAppearance.MaterialComponents.LargeComponent = 0x7f13017c
com.example.cuida:string/material_slider_range_end = 0x7f120083
com.example.cuida:string/material_motion_easing_standard = 0x7f120082
-com.example.cuida:string/material_clock_display_divider = 0x7f120077
-com.example.cuida:string/m3_sys_motion_easing_standard_decelerate = 0x7f120076
-com.example.cuida:string/m3_sys_motion_easing_linear = 0x7f120073
-com.example.cuida:string/m3_sys_motion_easing_legacy_accelerate = 0x7f120071
-com.example.cuida:string/m3_sys_motion_easing_emphasized_accelerate = 0x7f12006d
-com.example.cuida:style/Theme.AppCompat.NoActionBar = 0x7f130220
-com.example.cuida:string/m3_ref_typeface_plain_regular = 0x7f12006b
-com.example.cuida:string/m3_ref_typeface_plain_medium = 0x7f12006a
-com.example.cuida:string/m3_ref_typeface_brand_regular = 0x7f120069
-com.example.cuida:string/login_title = 0x7f120066
+com.example.cuida:string/androidx_startup = 0x7f12001f
+com.example.cuida:style/Widget.Material3.AutoCompleteTextView.FilledBox.Dense = 0x7f130342
+com.example.cuida:style/ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox.Dense = 0x7f130284
com.example.cuida:string/google_crash_reporting_api_key = 0x7f120060
-com.example.cuida:string/google_app_id = 0x7f12005f
-com.example.cuida:string/generic_error_no_device_credential = 0x7f12005b
com.example.cuida:string/gcm_defaultSenderId = 0x7f12005a
com.example.cuida:string/fingerprint_error_hw_not_available = 0x7f120053
com.example.cuida:string/fallback_menu_item_share_link = 0x7f120051
-com.example.cuida:string/fab_transformation_scrim_behavior = 0x7f12004d
-com.example.cuida:string/error_icon_content_description = 0x7f12004b
-com.example.cuida:style/TextAppearance.AppCompat.Display2 = 0x7f130199
-com.example.cuida:string/dest_title = 0x7f120048
-com.example.cuida:string/default_error_msg = 0x7f120047
-com.example.cuida:string/confirm_device_credential_password = 0x7f120045
-com.example.cuida:string/common_signin_button_text_long = 0x7f120044
-com.example.cuida:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Centered = 0x7f1302d3
-com.example.cuida:string/common_signin_button_text = 0x7f120043
-com.example.cuida:string/common_google_play_services_update_title = 0x7f12003f
-com.example.cuida:string/common_google_play_services_update_text = 0x7f12003e
-com.example.cuida:string/common_google_play_services_update_button = 0x7f12003d
-com.example.cuida:string/common_google_play_services_notification_channel_name = 0x7f120039
-com.example.cuida:string/common_google_play_services_install_text = 0x7f120037
-com.example.cuida:string/common_google_play_services_install_button = 0x7f120036
-com.example.cuida:string/mtrl_picker_range_header_unselected = 0x7f1200b3
-com.example.cuida:string/common_google_play_services_enable_text = 0x7f120034
-com.example.cuida:string/clear_text_end_icon_content_description = 0x7f120032
-com.example.cuida:style/TextAppearance.AppCompat.Widget.Button.Colored = 0x7f1301bb
-com.example.cuida:string/character_counter_content_description = 0x7f12002f
-com.example.cuida:string/call_notification_decline_action = 0x7f12002a
-com.example.cuida:style/ThemeOverlay.Material3.FloatingActionButton.Primary = 0x7f1302a1
-com.example.cuida:string/call_notification_answer_action = 0x7f120028
-com.example.cuida:string/bottomsheet_drag_handle_clicked = 0x7f120026
-com.example.cuida:string/bottomsheet_action_expand_halfway = 0x7f120025
-com.example.cuida:string/bottomsheet_action_expand = 0x7f120024
-com.example.cuida:style/Base.Widget.Material3.Snackbar = 0x7f13010d
-com.example.cuida:string/bottomsheet_action_collapse = 0x7f120023
-com.example.cuida:string/androidx_startup = 0x7f12001f
-com.example.cuida:string/androidx.credentials.TYPE_PUBLIC_KEY_CREDENTIAL = 0x7f12001e
-com.example.cuida:string/android.credentials.TYPE_PASSWORD_CREDENTIAL = 0x7f12001d
+com.example.cuida:macro/m3_comp_outlined_text_field_hover_input_text_color = 0x7f0d00c0
+com.example.cuida:id/withText = 0x7f09024a
+com.example.cuida:id/fill = 0x7f0900e1
com.example.cuida:string/age_hint = 0x7f12001b
-com.example.cuida:string/abc_shareactionprovider_share_with_application = 0x7f120019
-com.example.cuida:string/abc_prepend_shortcut_label = 0x7f120011
-com.example.cuida:string/abc_menu_sym_shortcut_label = 0x7f120010
-com.example.cuida:string/abc_menu_function_shortcut_label = 0x7f12000c
-com.example.cuida:string/abc_menu_enter_shortcut_label = 0x7f12000b
-com.example.cuida:string/abc_capital_on = 0x7f120007
-com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen = 0x7f130190
-com.example.cuida:string/abc_activitychooserview_choose_application = 0x7f120005
-com.example.cuida:style/Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow = 0x7f130118
-com.example.cuida:string/abc_activity_chooser_view_see_all = 0x7f120004
-com.example.cuida:style/Base.Widget.AppCompat.Button.Borderless = 0x7f1300ce
-com.example.cuida:string/abc_action_mode_done = 0x7f120003
-com.example.cuida:string/abc_action_menu_overflow_description = 0x7f120002
-com.example.cuida:string/abc_action_bar_up_description = 0x7f120001
-com.example.cuida:string/abc_action_bar_home_description = 0x7f120000
-com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f130038
-com.example.cuida:plurals/mtrl_badge_content_description = 0x7f100000
-com.example.cuida:macro/m3_sys_color_dark_surface_tint = 0x7f0d0176
-com.example.cuida:macro/m3_comp_top_app_bar_small_headline_color = 0x7f0d0171
-com.example.cuida:macro/m3_comp_top_app_bar_small_container_color = 0x7f0d0170
-com.example.cuida:macro/m3_comp_top_app_bar_medium_headline_color = 0x7f0d016e
-com.example.cuida:macro/m3_comp_time_picker_time_selector_separator_type = 0x7f0d0167
-com.example.cuida:macro/m3_comp_time_picker_time_selector_separator_color = 0x7f0d0166
-com.example.cuida:style/Widget.Compat.NotificationActionContainer = 0x7f13032f
-com.example.cuida:macro/m3_comp_time_picker_time_selector_selected_label_text_color = 0x7f0d0164
-com.example.cuida:macro/m3_comp_time_picker_time_selector_selected_hover_state_layer_color = 0x7f0d0163
-com.example.cuida:macro/m3_comp_time_picker_time_selector_selected_container_color = 0x7f0d0161
-com.example.cuida:macro/m3_comp_time_picker_time_selector_container_shape = 0x7f0d015f
-com.example.cuida:macro/m3_comp_time_picker_period_selector_unselected_pressed_state_layer_color = 0x7f0d015e
-com.example.cuida:macro/m3_comp_time_picker_period_selector_unselected_focus_state_layer_color = 0x7f0d015b
-com.example.cuida:macro/m3_comp_time_picker_period_selector_selected_hover_state_layer_color = 0x7f0d0158
-com.example.cuida:styleable/AppCompatTextView = 0x7f140014
-com.example.cuida:macro/m3_comp_time_picker_period_selector_selected_container_color = 0x7f0d0156
-com.example.cuida:style/Base.ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f130085
-com.example.cuida:macro/m3_comp_time_picker_period_selector_container_shape = 0x7f0d0153
-com.example.cuida:style/Widget.AppCompat.Light.DropDownItem.Spinner = 0x7f13030f
-com.example.cuida:macro/m3_comp_time_picker_container_shape = 0x7f0d0150
-com.example.cuida:style/Widget.Material3.CollapsingToolbar.Medium = 0x7f130378
-com.example.cuida:macro/m3_comp_time_picker_container_color = 0x7f0d014f
-com.example.cuida:macro/m3_comp_time_picker_clock_dial_selector_handle_container_color = 0x7f0d014e
-com.example.cuida:macro/m3_comp_time_picker_clock_dial_color = 0x7f0d014d
-com.example.cuida:macro/m3_comp_time_input_time_input_field_supporting_text_color = 0x7f0d014b
-com.example.cuida:macro/m3_comp_time_input_time_input_field_container_shape = 0x7f0d0148
-com.example.cuida:style/TextAppearance.Material3.DisplayLarge = 0x7f1301e7
-com.example.cuida:macro/m3_comp_text_button_label_text_type = 0x7f0d0146
+com.example.cuida:dimen/m3_comp_slider_inactive_track_height = 0x7f070185
+com.example.cuida:style/ThemeOverlay.Material3.AutoCompleteTextView.FilledBox = 0x7f130281
+com.example.cuida:macro/m3_comp_filled_button_label_text_type = 0x7f0d0046
+com.example.cuida:string/bottomsheet_action_collapse = 0x7f120023
+com.example.cuida:style/Base.Widget.Material3.Snackbar = 0x7f13010d
+com.example.cuida:id/homeAsUp = 0x7f090102
+com.example.cuida:string/common_google_play_services_update_title = 0x7f12003f
+com.example.cuida:style/Base.Theme.MaterialComponents.DialogWhenLarge = 0x7f13006d
+com.example.cuida:style/TextAppearance.Material3.DisplaySmall = 0x7f1301e9
+com.example.cuida:string/common_google_play_services_update_text = 0x7f12003e
+com.example.cuida:string/common_google_play_services_install_text = 0x7f120037
+com.example.cuida:color/material_timepicker_button_stroke = 0x7f0602c2
com.example.cuida:styleable/FloatingActionButton = 0x7f140037
com.example.cuida:macro/m3_comp_text_button_label_text_color = 0x7f0d0145
-com.example.cuida:macro/m3_comp_text_button_hover_state_layer_color = 0x7f0d0144
-com.example.cuida:macro/m3_comp_text_button_focus_state_layer_color = 0x7f0d0143
-com.example.cuida:macro/m3_comp_switch_unselected_track_outline_color = 0x7f0d0142
-com.example.cuida:macro/m3_comp_switch_unselected_track_color = 0x7f0d0141
-com.example.cuida:style/Base.Theme.AppCompat.Light = 0x7f130052
-com.example.cuida:macro/m3_comp_switch_unselected_pressed_track_color = 0x7f0d013f
-com.example.cuida:macro/m3_comp_switch_unselected_pressed_handle_color = 0x7f0d013c
-com.example.cuida:macro/m3_comp_switch_unselected_icon_color = 0x7f0d013b
-com.example.cuida:style/Base.Theme.MaterialComponents.Dialog.Bridge = 0x7f13006a
-com.example.cuida:macro/m3_comp_switch_unselected_hover_track_outline_color = 0x7f0d013a
-com.example.cuida:macro/m3_comp_switch_unselected_hover_state_layer_color = 0x7f0d0138
-com.example.cuida:style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense = 0x7f1303ed
-com.example.cuida:macro/m3_comp_switch_unselected_hover_icon_color = 0x7f0d0137
-com.example.cuida:macro/m3_comp_switch_unselected_hover_handle_color = 0x7f0d0136
-com.example.cuida:macro/m3_comp_switch_unselected_focus_state_layer_color = 0x7f0d0132
-com.example.cuida:macro/m3_comp_switch_selected_track_color = 0x7f0d012f
-com.example.cuida:style/Widget.AppCompat.ActionButton.CloseMode = 0x7f1302ec
-com.example.cuida:macro/m3_comp_switch_selected_pressed_track_color = 0x7f0d012e
-com.example.cuida:macro/m3_comp_switch_selected_pressed_icon_color = 0x7f0d012c
-com.example.cuida:macro/m3_comp_switch_selected_pressed_handle_color = 0x7f0d012b
-com.example.cuida:macro/m3_comp_switch_selected_hover_icon_color = 0x7f0d0127
-com.example.cuida:macro/m3_comp_switch_selected_hover_handle_color = 0x7f0d0126
-com.example.cuida:macro/m3_comp_switch_selected_focus_track_color = 0x7f0d0124
-com.example.cuida:macro/m3_comp_switch_selected_focus_icon_color = 0x7f0d0122
-com.example.cuida:macro/m3_comp_switch_selected_focus_handle_color = 0x7f0d0121
-com.example.cuida:macro/m3_comp_switch_disabled_unselected_track_outline_color = 0x7f0d0120
-com.example.cuida:macro/m3_comp_switch_disabled_unselected_icon_color = 0x7f0d011e
-com.example.cuida:macro/m3_comp_switch_disabled_selected_icon_color = 0x7f0d011b
-com.example.cuida:macro/m3_comp_suggestion_chip_label_text_type = 0x7f0d0119
-com.example.cuida:style/Widget.MaterialComponents.BottomNavigationView.Colored = 0x7f1303f3
-com.example.cuida:macro/m3_comp_snackbar_supporting_text_type = 0x7f0d0117
-com.example.cuida:style/Base.Widget.AppCompat.TextView = 0x7f1300f8
+com.example.cuida:dimen/abc_disabled_alpha_material_light = 0x7f070028
+com.example.cuida:id/navigation_schedule_appointment = 0x7f090173
+com.example.cuida:macro/m3_comp_navigation_bar_inactive_hover_icon_color = 0x7f0d0072
+com.example.cuida:layout/fragment_medication = 0x7f0c0038
+com.example.cuida:style/Platform.MaterialComponents.Light = 0x7f13013a
+com.example.cuida:string/common_google_play_services_enable_text = 0x7f120034
+com.example.cuida:string/mtrl_picker_range_header_unselected = 0x7f1200b3
+com.example.cuida:style/Widget.Material3.DrawerLayout = 0x7f13037d
+com.example.cuida:style/Platform.V21.AppCompat = 0x7f13013f
+com.example.cuida:integer/mtrl_btn_anim_duration_ms = 0x7f0a0031
+com.example.cuida:string/common_signin_button_text_long = 0x7f120044
+com.example.cuida:id/with_icon = 0x7f09024b
+com.example.cuida:string/clear_text_end_icon_content_description = 0x7f120032
+com.example.cuida:id/clear_text = 0x7f090090
+com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year = 0x7f130191
+com.example.cuida:style/Widget.AppCompat.ActionButton = 0x7f1302eb
+com.example.cuida:dimen/abc_control_corner_material = 0x7f070018
+com.example.cuida:string/character_counter_content_description = 0x7f12002f
+com.example.cuida:style/TextAppearance.AppCompat.Widget.Button.Colored = 0x7f1301bb
+com.example.cuida:string/call_notification_answer_action = 0x7f120028
+com.example.cuida:style/ThemeOverlay.Material3.FloatingActionButton.Primary = 0x7f1302a1
+com.example.cuida:style/TextAppearance.Material3.HeadlineLarge = 0x7f1301ea
+com.example.cuida:style/Base.V7.Widget.AppCompat.Toolbar = 0x7f1300c1
com.example.cuida:string/material_minute_suffix = 0x7f12007d
com.example.cuida:macro/m3_comp_snackbar_supporting_text_color = 0x7f0d0116
+com.example.cuida:style/Base.Widget.AppCompat.TextView = 0x7f1300f8
+com.example.cuida:dimen/abc_progress_bar_height_material = 0x7f070035
+com.example.cuida:id/edit_reason = 0x7f0900d2
+com.example.cuida:id/neverCompleteToStart = 0x7f090177
+com.example.cuida:string/bottomsheet_action_expand_halfway = 0x7f120025
+com.example.cuida:string/mtrl_picker_text_input_date_range_start_hint = 0x7f1200b8
+com.example.cuida:macro/m3_comp_navigation_bar_active_focus_label_text_color = 0x7f0d0063
+com.example.cuida:dimen/mtrl_navigation_elevation = 0x7f0702c2
+com.example.cuida:dimen/abc_button_inset_vertical_material = 0x7f070013
+com.example.cuida:color/m3_sys_color_dynamic_light_background = 0x7f0601ad
+com.example.cuida:string/android.credentials.TYPE_PASSWORD_CREDENTIAL = 0x7f12001d
+com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f130035
+com.example.cuida:string/abc_menu_enter_shortcut_label = 0x7f12000b
+com.example.cuida:macro/m3_comp_navigation_bar_label_text_type = 0x7f0d007a
+com.example.cuida:style/Widget.Material3.Button.OutlinedButton = 0x7f130358
+com.example.cuida:style/Base.V14.Theme.Material3.Dark.SideSheetDialog = 0x7f13008c
+com.example.cuida:style/Theme.Material3.Dark.Dialog = 0x7f13022b
+com.example.cuida:string/abc_action_menu_overflow_description = 0x7f120002
+com.example.cuida:style/Theme.AppCompat.DayNight.Dialog = 0x7f13020f
+com.example.cuida:string/password_hint = 0x7f1200cf
+com.example.cuida:style/Base.Widget.AppCompat.DropDownItem.Spinner = 0x7f1300da
+com.example.cuida:string/fingerprint_dialog_touch_sensor = 0x7f120052
+com.example.cuida:id/center = 0x7f090082
+com.example.cuida:style/Theme.MaterialComponents.DayNight.Bridge = 0x7f13024a
+com.example.cuida:layout/design_navigation_menu = 0x7f0c002e
+com.example.cuida:id/material_clock_period_am_button = 0x7f090130
+com.example.cuida:style/Widget.MaterialComponents.TimePicker.Display.TextInputLayout = 0x7f130458
+com.example.cuida:id/edit_profile_image = 0x7f0900d0
+com.example.cuida:macro/m3_comp_time_picker_time_selector_selected_hover_state_layer_color = 0x7f0d0163
+com.example.cuida:id/mtrl_calendar_months = 0x7f090150
+com.example.cuida:dimen/m3_small_fab_size = 0x7f0701ea
+com.example.cuida:macro/m3_comp_time_picker_time_selector_selected_container_color = 0x7f0d0161
+com.example.cuida:id/month_navigation_previous = 0x7f090148
+com.example.cuida:macro/m3_comp_time_picker_period_selector_unselected_pressed_state_layer_color = 0x7f0d015e
+com.example.cuida:style/Base.Theme.MaterialComponents.Dialog.FixedSize = 0x7f13006b
+com.example.cuida:dimen/mtrl_btn_dialog_btn_min_width = 0x7f070257
+com.example.cuida:style/Theme.MaterialComponents.Light.Dialog.FixedSize = 0x7f13026a
+com.example.cuida:style/Platform.AppCompat = 0x7f130136
+com.example.cuida:macro/m3_comp_time_picker_period_selector_selected_hover_state_layer_color = 0x7f0d0158
+com.example.cuida:style/Base.ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f130085
+com.example.cuida:macro/m3_comp_time_picker_period_selector_container_shape = 0x7f0d0153
+com.example.cuida:dimen/m3_comp_navigation_drawer_standard_container_elevation = 0x7f070149
+com.example.cuida:color/m3_ref_palette_tertiary95 = 0x7f06015e
+com.example.cuida:style/Widget.Material3.CollapsingToolbar.Medium = 0x7f130378
+com.example.cuida:macro/m3_comp_time_picker_container_color = 0x7f0d014f
+com.example.cuida:style/Widget.MaterialComponents.TextInputEditText.OutlinedBox = 0x7f130446
+com.example.cuida:macro/m3_comp_time_input_time_input_field_container_shape = 0x7f0d0148
+com.example.cuida:string/material_timepicker_pm = 0x7f12008a
+com.example.cuida:style/Widget.Material3.TextInputEditText.FilledBox = 0x7f1303d2
+com.example.cuida:style/Base.Widget.AppCompat.CompoundButton.CheckBox = 0x7f1300d5
+com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.ExtendedFloatingActionButton = 0x7f13018d
+com.example.cuida:color/material_personalized_primary_text_disable_only = 0x7f0602ba
+com.example.cuida:style/Base.Widget.AppCompat.Button.Borderless = 0x7f1300ce
+com.example.cuida:string/abc_action_mode_done = 0x7f120003
+com.example.cuida:style/TextAppearance.Material3.DisplayLarge = 0x7f1301e7
+com.example.cuida:macro/m3_comp_text_button_label_text_type = 0x7f0d0146
+com.example.cuida:style/Base.AlertDialog.AppCompat = 0x7f13000b
+com.example.cuida:style/ThemeOverlay.Material3.BottomAppBar.Legacy = 0x7f130286
+com.example.cuida:integer/abc_config_activityShortDur = 0x7f0a0001
+com.example.cuida:macro/m3_comp_text_button_hover_state_layer_color = 0x7f0d0144
+com.example.cuida:macro/m3_comp_switch_unselected_track_outline_color = 0x7f0d0142
+com.example.cuida:style/Theme.MaterialComponents.Light.BottomSheetDialog = 0x7f130262
+com.example.cuida:macro/m3_comp_switch_unselected_track_color = 0x7f0d0141
+com.example.cuida:styleable/RadialViewGroup = 0x7f140080
+com.example.cuida:color/material_personalized_color_on_error_container = 0x7f060291
+com.example.cuida:color/m3_ref_palette_secondary50 = 0x7f06014c
+com.example.cuida:layout/mtrl_alert_dialog_title = 0x7f0c0056
+com.example.cuida:style/Base.Theme.AppCompat.Light = 0x7f130052
+com.example.cuida:macro/m3_comp_switch_unselected_pressed_track_color = 0x7f0d013f
+com.example.cuida:string/dest_title = 0x7f120048
+com.example.cuida:style/TextAppearance.AppCompat.Display2 = 0x7f130199
+com.example.cuida:id/fitCenter = 0x7f0900e9
+com.example.cuida:macro/m3_comp_switch_unselected_pressed_handle_color = 0x7f0d013c
+com.example.cuida:macro/m3_comp_switch_unselected_icon_color = 0x7f0d013b
+com.example.cuida:style/Widget.Material3.SideSheet.Modal = 0x7f1303c8
+com.example.cuida:style/Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense = 0x7f130447
+com.example.cuida:macro/m3_comp_switch_unselected_hover_icon_color = 0x7f0d0137
+com.example.cuida:style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense = 0x7f1303ed
+com.example.cuida:id/accessibility_custom_action_19 = 0x7f09001b
+com.example.cuida:layout/mtrl_calendar_month_navigation = 0x7f0c0061
+com.example.cuida:style/Widget.MaterialComponents.Snackbar.TextView = 0x7f130440
+com.example.cuida:id/right_side = 0x7f0901bd
+com.example.cuida:style/ShapeAppearance.M3.Sys.Shape.Corner.ExtraLarge = 0x7f130167
+com.example.cuida:attr/errorIconTintMode = 0x7f0401c1
+com.example.cuida:dimen/abc_text_size_headline_material = 0x7f070047
+com.example.cuida:macro/m3_comp_switch_unselected_hover_handle_color = 0x7f0d0136
+com.example.cuida:id/staticLayout = 0x7f0901f9
+com.example.cuida:macro/m3_comp_switch_selected_pressed_handle_color = 0x7f0d012b
+com.example.cuida:macro/m3_comp_outlined_button_disabled_outline_color = 0x7f0d00a6
+com.example.cuida:macro/m3_comp_switch_selected_hover_icon_color = 0x7f0d0127
+com.example.cuida:style/TextAppearance.Design.Suffix = 0x7f1301d1
+com.example.cuida:macro/m3_comp_switch_selected_hover_handle_color = 0x7f0d0126
+com.example.cuida:macro/m3_comp_switch_selected_focus_icon_color = 0x7f0d0122
+com.example.cuida:macro/m3_comp_date_picker_modal_date_today_label_text_color = 0x7f0d0014
+com.example.cuida:style/Widget.Compat.NotificationActionContainer = 0x7f13032f
+com.example.cuida:macro/m3_comp_time_picker_time_selector_selected_label_text_color = 0x7f0d0164
+com.example.cuida:macro/m3_comp_switch_disabled_unselected_track_outline_color = 0x7f0d0120
+com.example.cuida:styleable/Variant = 0x7f1400a4
+com.example.cuida:layout/mtrl_alert_select_dialog_multichoice = 0x7f0c0058
+com.example.cuida:macro/m3_comp_radio_button_unselected_pressed_icon_color = 0x7f0d00e5
+com.example.cuida:macro/m3_comp_switch_disabled_unselected_icon_color = 0x7f0d011e
+com.example.cuida:macro/m3_comp_switch_disabled_selected_icon_color = 0x7f0d011b
+com.example.cuida:style/Widget.MaterialComponents.CompoundButton.RadioButton = 0x7f130410
com.example.cuida:style/Theme.MaterialComponents.DayNight.BottomSheetDialog = 0x7f130249
com.example.cuida:macro/m3_comp_slider_label_container_color = 0x7f0d0112
+com.example.cuida:style/TextAppearance.AppCompat.Inverse = 0x7f13019d
com.example.cuida:style/Base.V14.Theme.Material3.Light.SideSheetDialog = 0x7f130090
com.example.cuida:macro/m3_comp_slider_handle_color = 0x7f0d0110
-com.example.cuida:macro/m3_comp_slider_disabled_handle_color = 0x7f0d010e
com.example.cuida:macro/m3_comp_slider_disabled_active_track_color = 0x7f0d010d
-com.example.cuida:macro/m3_comp_sheet_side_docked_standard_container_color = 0x7f0d010b
-com.example.cuida:macro/m3_comp_sheet_side_docked_modal_container_shape = 0x7f0d010a
-com.example.cuida:macro/m3_comp_sheet_side_detached_container_shape = 0x7f0d0108
+com.example.cuida:styleable/ShapeAppearance = 0x7f140088
com.example.cuida:style/Base.V14.ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f13009f
com.example.cuida:macro/m3_comp_sheet_bottom_docked_drag_handle_color = 0x7f0d0107
com.example.cuida:macro/m3_comp_sheet_bottom_docked_container_color = 0x7f0d0105
-com.example.cuida:macro/m3_comp_secondary_navigation_tab_with_icon_inactive_icon_color = 0x7f0d0104
+com.example.cuida:macro/m3_comp_date_picker_modal_year_selection_year_unselected_label_text_color = 0x7f0d0022
com.example.cuida:macro/m3_comp_secondary_navigation_tab_inactive_label_text_color = 0x7f0d0100
-com.example.cuida:style/Theme.AppCompat.Dialog.Alert = 0x7f130215
-com.example.cuida:style/TextAppearance.AppCompat.Menu = 0x7f1301a6
-com.example.cuida:string/email_hint = 0x7f120049
+com.example.cuida:id/center_vertical = 0x7f090086
+com.example.cuida:style/Widget.Material3.Chip.Filter.Elevated = 0x7f13036a
+com.example.cuida:layout/mtrl_picker_actions = 0x7f0c0068
com.example.cuida:macro/m3_comp_secondary_navigation_tab_active_indicator_color = 0x7f0d00fb
-com.example.cuida:macro/m3_comp_search_view_header_trailing_icon_color = 0x7f0d00fa
-com.example.cuida:macro/m3_comp_search_view_header_supporting_text_type = 0x7f0d00f9
+com.example.cuida:string/email_hint = 0x7f120049
+com.example.cuida:style/TextAppearance.AppCompat.Menu = 0x7f1301a6
+com.example.cuida:style/Theme.AppCompat.Dialog.Alert = 0x7f130215
+com.example.cuida:macro/m3_comp_fab_tertiary_icon_color = 0x7f0d0041
+com.example.cuida:macro/m3_comp_outlined_text_field_label_text_color = 0x7f0d00c5
+com.example.cuida:drawable/mtrl_popupmenu_background_overlay = 0x7f0800e4
+com.example.cuida:style/Base.TextAppearance.AppCompat.Button = 0x7f130019
+com.example.cuida:layout/material_clock_display = 0x7f0c0047
com.example.cuida:macro/m3_comp_search_view_header_supporting_text_color = 0x7f0d00f8
-com.example.cuida:macro/m3_comp_search_view_header_input_text_color = 0x7f0d00f5
+com.example.cuida:attr/materialTimePickerTitleStyle = 0x7f040315
+com.example.cuida:dimen/notification_right_side_padding_top = 0x7f070311
com.example.cuida:macro/m3_comp_search_view_docked_container_shape = 0x7f0d00f4
com.example.cuida:macro/m3_comp_search_bar_trailing_icon_color = 0x7f0d00f1
com.example.cuida:macro/m3_comp_search_bar_supporting_text_color = 0x7f0d00ef
-com.example.cuida:styleable/ActivityNavigator = 0x7f140007
+com.example.cuida:style/TextAppearance.Material3.SearchBar = 0x7f1301f1
+com.example.cuida:macro/m3_comp_radio_button_unselected_hover_state_layer_color = 0x7f0d00e3
+com.example.cuida:integer/status_bar_notification_info_maxnum = 0x7f0a0045
com.example.cuida:macro/m3_comp_search_bar_pressed_supporting_text_color = 0x7f0d00ee
+com.example.cuida:styleable/ActivityNavigator = 0x7f140007
com.example.cuida:macro/m3_comp_search_bar_pressed_state_layer_color = 0x7f0d00ed
+com.example.cuida:style/Widget.Material3.FloatingActionButton.Large.Surface = 0x7f130388
+com.example.cuida:macro/m3_comp_switch_disabled_selected_handle_color = 0x7f0d011a
+com.example.cuida:color/material_dynamic_primary90 = 0x7f060255
+com.example.cuida:macro/m3_comp_filled_autocomplete_menu_container_color = 0x7f0d0042
+com.example.cuida:dimen/design_snackbar_min_width = 0x7f070086
+com.example.cuida:id/stretch = 0x7f0901fc
com.example.cuida:styleable/MaterialRadioButton = 0x7f14005d
com.example.cuida:macro/m3_comp_search_bar_input_text_color = 0x7f0d00ea
-com.example.cuida:macro/m3_comp_search_bar_hover_supporting_text_color = 0x7f0d00e9
com.example.cuida:style/Theme.MaterialComponents.Light.Dialog.Alert = 0x7f130267
com.example.cuida:macro/m3_comp_search_bar_hover_state_layer_color = 0x7f0d00e8
-com.example.cuida:macro/m3_comp_radio_button_unselected_pressed_icon_color = 0x7f0d00e5
-com.example.cuida:macro/m3_comp_radio_button_unselected_hover_icon_color = 0x7f0d00e2
-com.example.cuida:macro/m3_comp_radio_button_unselected_focus_state_layer_color = 0x7f0d00e1
-com.example.cuida:macro/m3_comp_radio_button_unselected_focus_icon_color = 0x7f0d00e0
-com.example.cuida:macro/m3_comp_radio_button_selected_pressed_state_layer_color = 0x7f0d00df
+com.example.cuida:layout/mtrl_picker_dialog = 0x7f0c0069
+com.example.cuida:id/material_timepicker_mode_button = 0x7f09013b
com.example.cuida:macro/m3_comp_radio_button_selected_icon_color = 0x7f0d00dd
-com.example.cuida:style/ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f1302ce
-com.example.cuida:macro/m3_comp_radio_button_selected_focus_state_layer_color = 0x7f0d00da
-com.example.cuida:macro/m3_comp_radio_button_disabled_selected_icon_color = 0x7f0d00d7
-com.example.cuida:style/Widget.Material3.CheckedTextView = 0x7f130366
+com.example.cuida:dimen/m3_comp_secondary_navigation_tab_hover_state_layer_opacity = 0x7f070179
+com.example.cuida:integer/m3_sys_motion_duration_short4 = 0x7f0a0020
+com.example.cuida:id/title = 0x7f09022a
+com.example.cuida:style/Widget.AppCompat.Toolbar = 0x7f13032d
+com.example.cuida:drawable/ic_launcher_round = 0x7f0800a9
com.example.cuida:macro/m3_comp_primary_navigation_tab_with_label_text_label_text_type = 0x7f0d00d6
-com.example.cuida:macro/m3_comp_primary_navigation_tab_with_label_text_active_label_text_color = 0x7f0d00d4
+com.example.cuida:style/Widget.Material3.CheckedTextView = 0x7f130366
com.example.cuida:macro/m3_comp_primary_navigation_tab_inactive_hover_state_layer_color = 0x7f0d00d0
+com.example.cuida:style/ThemeOverlay.MaterialComponents.TextInputEditText = 0x7f1302db
+com.example.cuida:style/Widget.Material3.AutoCompleteTextView.OutlinedBox = 0x7f130343
+com.example.cuida:id/nav_host_fragment = 0x7f090165
com.example.cuida:style/Base.Widget.AppCompat.ButtonBar.AlertDialog = 0x7f1300d4
com.example.cuida:macro/m3_comp_primary_navigation_tab_inactive_focus_state_layer_color = 0x7f0d00cf
com.example.cuida:macro/m3_comp_primary_navigation_tab_active_indicator_color = 0x7f0d00cc
-com.example.cuida:macro/m3_comp_primary_navigation_tab_active_hover_state_layer_color = 0x7f0d00cb
com.example.cuida:macro/m3_comp_primary_navigation_tab_active_focus_state_layer_color = 0x7f0d00ca
-com.example.cuida:macro/m3_comp_plain_tooltip_supporting_text_type = 0x7f0d00c9
+com.example.cuida:style/Widget.AppCompat.Light.PopupMenu = 0x7f130312
+com.example.cuida:id/BOTTOM_START = 0x7f090002
com.example.cuida:macro/m3_comp_outlined_text_field_supporting_text_type = 0x7f0d00c8
-com.example.cuida:styleable/AppCompatSeekBar = 0x7f140012
+com.example.cuida:style/Base.Widget.AppCompat.ListMenuView = 0x7f1300e5
+com.example.cuida:id/material_timepicker_cancel_button = 0x7f090139
+com.example.cuida:id/BOTTOM_END = 0x7f090001
+com.example.cuida:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1 = 0x7f13014e
+com.example.cuida:style/Base.ThemeOverlay.Material3.SideSheetDialog = 0x7f130082
+com.example.cuida:style/Base.Widget.AppCompat.PopupWindow = 0x7f1300ec
+com.example.cuida:dimen/m3_sys_elevation_level4 = 0x7f0701f1
com.example.cuida:macro/m3_comp_outlined_text_field_supporting_text_color = 0x7f0d00c7
-com.example.cuida:macro/m3_comp_outlined_text_field_label_text_color = 0x7f0d00c5
-com.example.cuida:style/Widget.Material3.Light.ActionBar.Solid = 0x7f130392
-com.example.cuida:style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse = 0x7f130304
-com.example.cuida:string/abc_menu_alt_shortcut_label = 0x7f120008
-com.example.cuida:macro/m3_comp_outlined_text_field_hover_supporting_text_color = 0x7f0d00c2
-com.example.cuida:macro/m3_comp_outlined_text_field_hover_outline_color = 0x7f0d00c1
-com.example.cuida:macro/m3_comp_outlined_text_field_hover_input_text_color = 0x7f0d00c0
+com.example.cuida:styleable/AppCompatSeekBar = 0x7f140012
com.example.cuida:macro/m3_comp_outlined_text_field_focus_input_text_color = 0x7f0d00bc
-com.example.cuida:style/Base.ThemeOverlay.AppCompat.ActionBar = 0x7f130079
com.example.cuida:macro/m3_comp_outlined_text_field_error_trailing_icon_color = 0x7f0d00bb
+com.example.cuida:style/Base.ThemeOverlay.AppCompat.ActionBar = 0x7f130079
com.example.cuida:macro/m3_comp_outlined_text_field_error_supporting_text_color = 0x7f0d00ba
com.example.cuida:macro/m3_comp_outlined_text_field_error_outline_color = 0x7f0d00b9
+com.example.cuida:id/matrix = 0x7f09013f
+com.example.cuida:macro/m3_comp_navigation_bar_inactive_hover_state_layer_color = 0x7f0d0074
+com.example.cuida:styleable/MaterialCalendarItem = 0x7f140058
+com.example.cuida:color/primary_color = 0x7f0602ff
com.example.cuida:macro/m3_comp_switch_unselected_pressed_icon_color = 0x7f0d013d
com.example.cuida:macro/m3_comp_outlined_text_field_disabled_supporting_text_color = 0x7f0d00b8
+com.example.cuida:styleable/ActionBarLayout = 0x7f140001
com.example.cuida:macro/m3_comp_outlined_text_field_disabled_label_text_color = 0x7f0d00b6
-com.example.cuida:macro/m3_comp_outlined_text_field_focus_supporting_text_color = 0x7f0d00bf
+com.example.cuida:interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 0x7f0b0002
+com.example.cuida:style/Widget.Material3.MaterialCalendar.Year.Today = 0x7f1303aa
+com.example.cuida:style/Widget.Material3.FloatingActionButton.Large.Primary = 0x7f130386
+com.example.cuida:color/material_personalized_color_on_surface = 0x7f060296
+com.example.cuida:dimen/m3_comp_switch_selected_pressed_state_layer_opacity = 0x7f070193
com.example.cuida:macro/m3_comp_outlined_text_field_disabled_input_text_color = 0x7f0d00b5
+com.example.cuida:macro/m3_comp_outlined_text_field_focus_supporting_text_color = 0x7f0d00bf
+com.example.cuida:attr/colorOnTertiaryContainer = 0x7f040116
+com.example.cuida:color/m3_sys_color_dynamic_dark_tertiary_container = 0x7f0601ac
com.example.cuida:style/ThemeOverlay.Material3.Button = 0x7f130289
com.example.cuida:macro/m3_comp_outlined_card_outline_color = 0x7f0d00b1
com.example.cuida:macro/m3_comp_outlined_card_focus_outline_color = 0x7f0d00af
com.example.cuida:style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense = 0x7f1302df
com.example.cuida:macro/m3_comp_outlined_card_disabled_outline_color = 0x7f0d00ad
-com.example.cuida:macro/m3_comp_outlined_button_pressed_outline_color = 0x7f0d00aa
-com.example.cuida:style/TextAppearance.M3.Sys.Typescale.LabelSmall = 0x7f1301de
-com.example.cuida:macro/m3_comp_outlined_button_outline_color = 0x7f0d00a9
+com.example.cuida:style/Widget.Material3.CircularProgressIndicator.ExtraSmall = 0x7f130373
com.example.cuida:macro/m3_comp_outlined_button_hover_outline_color = 0x7f0d00a8
-com.example.cuida:macro/m3_comp_outlined_button_disabled_outline_color = 0x7f0d00a6
+com.example.cuida:string/common_signin_button_text = 0x7f120043
+com.example.cuida:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Centered = 0x7f1302d3
com.example.cuida:macro/m3_comp_outlined_autocomplete_text_field_input_text_type = 0x7f0d00a5
-com.example.cuida:macro/m3_comp_outlined_autocomplete_menu_container_color = 0x7f0d00a3
com.example.cuida:macro/m3_comp_navigation_rail_inactive_pressed_state_layer_color = 0x7f0d00a1
com.example.cuida:macro/m3_comp_navigation_rail_inactive_label_text_color = 0x7f0d00a0
com.example.cuida:macro/m3_comp_navigation_rail_inactive_focus_state_layer_color = 0x7f0d009d
+com.example.cuida:dimen/material_clock_period_toggle_vertical_gap = 0x7f07022a
com.example.cuida:macro/m3_comp_navigation_rail_active_indicator_color = 0x7f0d0099
-com.example.cuida:macro/m3_comp_navigation_drawer_inactive_pressed_state_layer_color = 0x7f0d0093
-com.example.cuida:style/Base.TextAppearance.AppCompat.Caption = 0x7f13001a
-com.example.cuida:macro/m3_comp_navigation_drawer_inactive_pressed_label_text_color = 0x7f0d0092
com.example.cuida:macro/m3_comp_navigation_drawer_inactive_icon_color = 0x7f0d008f
+com.example.cuida:layout/abc_cascading_menu_item_layout = 0x7f0c000b
+com.example.cuida:style/TextAppearance.AppCompat.Widget.DropDownItem = 0x7f1301bd
+com.example.cuida:id/none = 0x7f09017d
com.example.cuida:macro/m3_comp_navigation_drawer_inactive_focus_state_layer_color = 0x7f0d008b
-com.example.cuida:macro/m3_comp_navigation_drawer_inactive_focus_icon_color = 0x7f0d0089
-com.example.cuida:macro/m3_comp_navigation_drawer_headline_color = 0x7f0d0087
-com.example.cuida:style/Widget.AppCompat.DropDownItem.Spinner = 0x7f1302fd
+com.example.cuida:color/material_dynamic_primary10 = 0x7f06024c
+com.example.cuida:id/scroll = 0x7f0901c6
+com.example.cuida:style/Widget.AppCompat.ListMenuView = 0x7f130316
+com.example.cuida:id/mini = 0x7f090142
+com.example.cuida:dimen/m3_navigation_menu_headline_horizontal_padding = 0x7f0701c5
com.example.cuida:macro/m3_comp_navigation_drawer_active_label_text_color = 0x7f0d0083
-com.example.cuida:macro/m3_comp_navigation_drawer_active_indicator_color = 0x7f0d0082
+com.example.cuida:style/Widget.AppCompat.DropDownItem.Spinner = 0x7f1302fd
+com.example.cuida:color/m3_ref_palette_neutral20 = 0x7f060119
com.example.cuida:style/Base.V7.Widget.AppCompat.EditText = 0x7f1300c0
com.example.cuida:macro/m3_comp_navigation_drawer_active_icon_color = 0x7f0d0081
-com.example.cuida:macro/m3_comp_navigation_drawer_active_hover_icon_color = 0x7f0d007e
-com.example.cuida:macro/m3_comp_navigation_drawer_active_focus_label_text_color = 0x7f0d007c
-com.example.cuida:macro/m3_comp_navigation_bar_label_text_type = 0x7f0d007a
-com.example.cuida:style/Widget.AppCompat.EditText = 0x7f1302fe
-com.example.cuida:macro/m3_comp_navigation_bar_inactive_pressed_label_text_color = 0x7f0d0078
com.example.cuida:macro/m3_comp_navigation_bar_inactive_pressed_icon_color = 0x7f0d0077
-com.example.cuida:style/ShapeAppearance.M3.Comp.Switch.Track.Shape = 0x7f130165
com.example.cuida:macro/m3_comp_navigation_bar_inactive_label_text_color = 0x7f0d0076
+com.example.cuida:style/ShapeAppearance.M3.Comp.Switch.Track.Shape = 0x7f130165
com.example.cuida:macro/m3_comp_navigation_bar_inactive_icon_color = 0x7f0d0075
-com.example.cuida:style/Theme.MaterialComponents.DayNight.DarkActionBar = 0x7f13024b
com.example.cuida:macro/m3_comp_navigation_bar_inactive_hover_label_text_color = 0x7f0d0073
-com.example.cuida:macro/m3_comp_navigation_bar_inactive_hover_icon_color = 0x7f0d0072
-com.example.cuida:macro/m3_comp_navigation_bar_inactive_focus_state_layer_color = 0x7f0d0071
-com.example.cuida:macro/m3_comp_navigation_bar_inactive_focus_icon_color = 0x7f0d006f
-com.example.cuida:styleable/SwitchCompat = 0x7f140097
-com.example.cuida:macro/m3_comp_navigation_bar_active_pressed_label_text_color = 0x7f0d006c
-com.example.cuida:string/common_google_play_services_notification_ticker = 0x7f12003a
-com.example.cuida:macro/m3_comp_navigation_bar_active_pressed_icon_color = 0x7f0d006b
-com.example.cuida:macro/m3_comp_navigation_bar_active_icon_color = 0x7f0d0068
+com.example.cuida:style/Theme.MaterialComponents.DayNight.DarkActionBar = 0x7f13024b
+com.example.cuida:id/tag_screen_reader_focusable = 0x7f090208
+com.example.cuida:id/fingerprint_description = 0x7f0900e5
+com.example.cuida:id/action_mode_bar_stub = 0x7f090043
+com.example.cuida:dimen/mtrl_extended_fab_start_padding_icon = 0x7f0702ae
+com.example.cuida:color/m3_sys_color_light_background = 0x7f0601db
+com.example.cuida:dimen/m3_menu_elevation = 0x7f0701b9
com.example.cuida:macro/m3_comp_navigation_bar_active_hover_label_text_color = 0x7f0d0066
+com.example.cuida:string/path_password_eye = 0x7f1200d1
+com.example.cuida:id/action_bar_root = 0x7f090037
+com.example.cuida:style/Widget.MaterialComponents.ShapeableImageView = 0x7f13043c
+com.example.cuida:string/common_google_play_services_unknown_issue = 0x7f12003b
+com.example.cuida:dimen/mtrl_navigation_rail_icon_size = 0x7f0702cd
com.example.cuida:macro/m3_comp_navigation_bar_active_hover_icon_color = 0x7f0d0065
-com.example.cuida:string/mtrl_picker_text_input_date_range_start_hint = 0x7f1200b8
-com.example.cuida:macro/m3_comp_navigation_bar_active_focus_label_text_color = 0x7f0d0063
com.example.cuida:macro/m3_comp_menu_container_color = 0x7f0d0060
com.example.cuida:style/Base.Widget.AppCompat.Spinner = 0x7f1300f6
com.example.cuida:macro/m3_comp_linear_progress_indicator_track_color = 0x7f0d005f
+com.example.cuida:string/m3_sys_motion_easing_emphasized = 0x7f12006c
+com.example.cuida:layout/notification_template_part_time = 0x7f0c0079
com.example.cuida:macro/m3_comp_linear_progress_indicator_active_indicator_color = 0x7f0d005e
-com.example.cuida:styleable/AnimatedStateListDrawableCompat = 0x7f14000a
-com.example.cuida:macro/m3_comp_input_chip_label_text_type = 0x7f0d005d
com.example.cuida:macro/m3_comp_input_chip_container_shape = 0x7f0d005c
-com.example.cuida:style/TextAppearance.Design.Placeholder = 0x7f1301ce
-com.example.cuida:macro/m3_comp_icon_button_unselected_icon_color = 0x7f0d005b
-com.example.cuida:macro/m3_comp_icon_button_selected_icon_color = 0x7f0d005a
-com.example.cuida:macro/m3_comp_filter_chip_label_text_type = 0x7f0d0059
+com.example.cuida:style/Theme.MaterialComponents.DialogWhenLarge = 0x7f130260
+com.example.cuida:style/Base.Theme.AppCompat.Light.Dialog.MinWidth = 0x7f130057
+com.example.cuida:drawable/abc_ic_menu_overflow_material = 0x7f080044
+com.example.cuida:id/inward = 0x7f090112
+com.example.cuida:style/Widget.Material3.Toolbar.Surface = 0x7f1303e0
+com.example.cuida:string/m3_sys_motion_easing_linear = 0x7f120073
+com.example.cuida:style/Widget.AppCompat.EditText = 0x7f1302fe
+com.example.cuida:macro/m3_comp_navigation_bar_inactive_pressed_label_text_color = 0x7f0d0078
+com.example.cuida:dimen/material_clock_period_toggle_height = 0x7f070228
com.example.cuida:macro/m3_comp_filter_chip_container_shape = 0x7f0d0058
-com.example.cuida:macro/m3_comp_filled_tonal_button_container_color = 0x7f0d0053
+com.example.cuida:id/textSpacerNoTitle = 0x7f090212
com.example.cuida:macro/m3_comp_filled_text_field_supporting_text_type = 0x7f0d0052
+com.example.cuida:id/email_edit_text = 0x7f0900d6
com.example.cuida:macro/m3_comp_outlined_button_focus_outline_color = 0x7f0d00a7
com.example.cuida:macro/m3_comp_filled_text_field_error_trailing_icon_color = 0x7f0d0050
+com.example.cuida:macro/m3_comp_outlined_button_pressed_outline_color = 0x7f0d00aa
com.example.cuida:macro/m3_comp_filled_text_field_error_active_indicator_color = 0x7f0d004e
+com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f130033
+com.example.cuida:style/Platform.MaterialComponents.Light.Dialog = 0x7f13013b
com.example.cuida:macro/m3_comp_filled_text_field_container_color = 0x7f0d004c
com.example.cuida:macro/m3_comp_filled_icon_button_toggle_unselected_icon_color = 0x7f0d004b
com.example.cuida:macro/m3_comp_filled_icon_button_toggle_selected_icon_color = 0x7f0d004a
com.example.cuida:macro/m3_comp_filled_icon_button_container_color = 0x7f0d0049
-com.example.cuida:macro/m3_comp_filled_button_label_text_type = 0x7f0d0046
com.example.cuida:styleable/NavigationBarActiveIndicator = 0x7f140076
com.example.cuida:macro/m3_comp_filled_button_label_text_color = 0x7f0d0045
-com.example.cuida:macro/m3_comp_filled_autocomplete_menu_container_color = 0x7f0d0042
-com.example.cuida:macro/m3_comp_fab_tertiary_icon_color = 0x7f0d0041
+com.example.cuida:dimen/abc_dialog_corner_radius_material = 0x7f07001b
+com.example.cuida:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2 = 0x7f13014f
+com.example.cuida:style/Base.Widget.MaterialComponents.PopupMenu = 0x7f130116
+com.example.cuida:layout/activity_forgot_password = 0x7f0c001c
+com.example.cuida:styleable/AppBarLayout_Layout = 0x7f14000f
+com.example.cuida:id/edit_med_name = 0x7f0900cd
+com.example.cuida:string/common_google_play_services_update_button = 0x7f12003d
+com.example.cuida:attr/layout_anchorGravity = 0x7f040285
+com.example.cuida:color/m3_ref_palette_secondary40 = 0x7f06014b
com.example.cuida:macro/m3_comp_fab_secondary_container_color = 0x7f0d003c
-com.example.cuida:macro/m3_comp_fab_primary_small_container_shape = 0x7f0d003b
-com.example.cuida:macro/m3_comp_fab_primary_large_container_shape = 0x7f0d003a
+com.example.cuida:color/material_personalized_color_error = 0x7f06028d
com.example.cuida:macro/m3_comp_fab_primary_icon_color = 0x7f0d0039
+com.example.cuida:id/progress_circular = 0x7f0901ac
+com.example.cuida:color/m3_sys_color_dark_secondary_container = 0x7f06017f
+com.example.cuida:style/Widget.AppCompat.TextView.SpinnerItem = 0x7f13032c
com.example.cuida:macro/m3_comp_fab_primary_container_color = 0x7f0d0037
-com.example.cuida:macro/m3_comp_extended_fab_tertiary_icon_color = 0x7f0d0036
-com.example.cuida:string/common_open_on_phone = 0x7f120042
-com.example.cuida:macro/m3_comp_extended_fab_surface_icon_color = 0x7f0d0034
-com.example.cuida:string/mtrl_checkbox_state_description_unchecked = 0x7f120098
-com.example.cuida:macro/m3_comp_extended_fab_surface_container_color = 0x7f0d0033
+com.example.cuida:layout/material_time_chip = 0x7f0c004f
+com.example.cuida:style/TextAppearance.M3.Sys.Typescale.LabelSmall = 0x7f1301de
+com.example.cuida:macro/m3_comp_outlined_button_outline_color = 0x7f0d00a9
+com.example.cuida:id/view_transition = 0x7f090241
+com.example.cuida:style/ShapeAppearanceOverlay.MaterialAlertDialog.Material3 = 0x7f13018a
+com.example.cuida:styleable/AnimatedStateListDrawableItem = 0x7f14000b
+com.example.cuida:id/touch_outside = 0x7f090230
+com.example.cuida:dimen/mtrl_navigation_item_shape_horizontal_margin = 0x7f0702c6
com.example.cuida:macro/m3_comp_extended_fab_secondary_icon_color = 0x7f0d0032
+com.example.cuida:layout/design_navigation_item_header = 0x7f0c002b
com.example.cuida:macro/m3_comp_extended_fab_primary_icon_color = 0x7f0d002f
+com.example.cuida:style/Widget.AppCompat.Light.AutoCompleteTextView = 0x7f13030e
+com.example.cuida:style/Base.Theme.MaterialComponents.Dialog.Bridge = 0x7f13006a
+com.example.cuida:macro/m3_comp_switch_unselected_hover_track_outline_color = 0x7f0d013a
+com.example.cuida:id/x_right = 0x7f090251
com.example.cuida:macro/m3_comp_extended_fab_primary_container_color = 0x7f0d002d
+com.example.cuida:string/common_google_play_services_enable_button = 0x7f120033
+com.example.cuida:layout/abc_screen_simple = 0x7f0c0015
+com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar = 0x7f130418
com.example.cuida:style/Theme.Material3.DayNight.Dialog.MinWidth = 0x7f130235
com.example.cuida:macro/m3_comp_elevated_card_container_shape = 0x7f0d002c
com.example.cuida:macro/m3_comp_outlined_text_field_focus_outline_color = 0x7f0d00be
com.example.cuida:macro/m3_comp_elevated_card_container_color = 0x7f0d002b
-com.example.cuida:macro/m3_comp_dialog_supporting_text_type = 0x7f0d0028
-com.example.cuida:macro/m3_comp_dialog_supporting_text_color = 0x7f0d0027
-com.example.cuida:style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox = 0x7f1303ec
-com.example.cuida:macro/m3_comp_dialog_headline_type = 0x7f0d0026
+com.example.cuida:style/TextAppearance.Design.Placeholder = 0x7f1301ce
+com.example.cuida:macro/m3_comp_icon_button_unselected_icon_color = 0x7f0d005b
+com.example.cuida:style/Theme.Material3.DayNight.NoActionBar = 0x7f130237
com.example.cuida:macro/m3_comp_dialog_container_shape = 0x7f0d0024
-com.example.cuida:macro/m3_comp_date_picker_modal_year_selection_year_unselected_label_text_color = 0x7f0d0022
-com.example.cuida:style/Base.Widget.Material3.ActionMode = 0x7f1300fe
-com.example.cuida:macro/m3_comp_slider_label_label_text_color = 0x7f0d0113
+com.example.cuida:macro/m3_comp_navigation_bar_active_pressed_icon_color = 0x7f0d006b
+com.example.cuida:string/common_google_play_services_notification_ticker = 0x7f12003a
+com.example.cuida:dimen/mtrl_progress_circular_track_thickness_small = 0x7f0702dc
+com.example.cuida:drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__0 = 0x7f08001a
+com.example.cuida:id/notification_main_column = 0x7f090181
+com.example.cuida:macro/m3_comp_fab_primary_small_container_shape = 0x7f0d003b
com.example.cuida:macro/m3_comp_date_picker_modal_year_selection_year_selected_container_color = 0x7f0d0020
-com.example.cuida:macro/m3_comp_date_picker_modal_weekdays_label_text_type = 0x7f0d001f
+com.example.cuida:macro/m3_comp_slider_label_label_text_color = 0x7f0d0113
+com.example.cuida:style/Base.Widget.Material3.ActionMode = 0x7f1300fe
+com.example.cuida:macro/m3_comp_checkbox_selected_error_container_color = 0x7f0d0009
+com.example.cuida:layout/dialog_change_password = 0x7f0c0033
+com.example.cuida:style/Base.Theme.Material3.Light.Dialog.FixedSize = 0x7f130062
+com.example.cuida:style/TextAppearance.Material3.SearchView.Prefix = 0x7f1301f3
+com.example.cuida:id/topPanel = 0x7f09022f
+com.example.cuida:macro/m3_comp_switch_selected_pressed_track_color = 0x7f0d012e
+com.example.cuida:style/Widget.AppCompat.ActionButton.CloseMode = 0x7f1302ec
+com.example.cuida:string/fab_transformation_scrim_behavior = 0x7f12004d
com.example.cuida:macro/m3_comp_time_picker_time_selector_unselected_hover_state_layer_color = 0x7f0d016a
com.example.cuida:macro/m3_comp_date_picker_modal_weekdays_label_text_color = 0x7f0d001e
+com.example.cuida:id/textTop = 0x7f090214
+com.example.cuida:style/Widget.Material3.Search.ActionButton.Overflow = 0x7f1303bf
+com.example.cuida:id/animateToEnd = 0x7f090053
+com.example.cuida:string/m3_ref_typeface_plain_medium = 0x7f12006a
com.example.cuida:macro/m3_comp_date_picker_modal_range_selection_month_subhead_type = 0x7f0d001d
+com.example.cuida:id/disableIntraAutoTransition = 0x7f0900b8
+com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f130034
+com.example.cuida:style/ShapeAppearance.Material3.SmallComponent = 0x7f130178
+com.example.cuida:style/ShapeAppearance.MaterialComponents = 0x7f13017a
com.example.cuida:macro/m3_comp_date_picker_modal_range_selection_header_headline_type = 0x7f0d001b
+com.example.cuida:dimen/abc_dropdownitem_text_padding_left = 0x7f07002a
com.example.cuida:macro/m3_comp_date_picker_modal_date_unselected_label_text_color = 0x7f0d0015
-com.example.cuida:macro/m3_comp_date_picker_modal_date_today_label_text_color = 0x7f0d0014
+com.example.cuida:style/Base.Widget.AppCompat.Light.PopupMenu = 0x7f1300e3
+com.example.cuida:style/Base.Widget.AppCompat.CompoundButton.RadioButton = 0x7f1300d6
+com.example.cuida:id/search_close_btn = 0x7f0901ce
+com.example.cuida:style/ShapeAppearanceOverlay.Material3.SearchView = 0x7f130189
+com.example.cuida:style/ShapeAppearance.M3.Sys.Shape.Corner.Large = 0x7f13016a
com.example.cuida:macro/m3_comp_date_picker_modal_date_selected_label_text_color = 0x7f0d0012
-com.example.cuida:style/ThemeOverlay.Material3.Search = 0x7f1302b3
-com.example.cuida:macro/m3_comp_date_picker_modal_container_color = 0x7f0d000e
-com.example.cuida:macro/m3_comp_circular_progress_indicator_active_indicator_color = 0x7f0d000d
com.example.cuida:macro/m3_comp_checkbox_selected_icon_color = 0x7f0d000b
+com.example.cuida:color/m3_ref_palette_secondary70 = 0x7f06014e
com.example.cuida:macro/m3_comp_checkbox_selected_disabled_container_color = 0x7f0d0007
com.example.cuida:macro/m3_comp_bottom_app_bar_container_color = 0x7f0d0005
+com.example.cuida:style/ShapeAppearance.M3.Comp.Badge.Shape = 0x7f130156
com.example.cuida:macro/m3_comp_badge_large_label_text_type = 0x7f0d0004
-com.example.cuida:macro/m3_comp_badge_large_label_text_color = 0x7f0d0003
-com.example.cuida:macro/m3_comp_badge_color = 0x7f0d0002
+com.example.cuida:style/Theme.Design.NoActionBar = 0x7f130227
+com.example.cuida:layout/support_simple_spinner_dropdown_item = 0x7f0c007d
com.example.cuida:style/Base.V21.ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f1300ac
-com.example.cuida:layout/support_simple_spinner_dropdown_item = 0x7f0c007c
+com.example.cuida:style/Widget.Material3.TabLayout.OnSurface = 0x7f1303d0
+com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f130038
+com.example.cuida:plurals/mtrl_badge_content_description = 0x7f100000
+com.example.cuida:color/material_divider_color = 0x7f060228
+com.example.cuida:id/search_badge = 0x7f0901cb
+com.example.cuida:layout/select_dialog_singlechoice_material = 0x7f0c007c
com.example.cuida:style/Animation.AppCompat.DropDownUp = 0x7f130003
-com.example.cuida:layout/select_dialog_singlechoice_material = 0x7f0c007b
+com.example.cuida:style/Widget.MaterialComponents.TextView = 0x7f130450
+com.example.cuida:id/accessibility_custom_action_3 = 0x7f090027
+com.example.cuida:layout/select_dialog_multichoice_material = 0x7f0c007b
com.example.cuida:macro/m3_comp_navigation_bar_active_focus_state_layer_color = 0x7f0d0064
-com.example.cuida:layout/select_dialog_multichoice_material = 0x7f0c007a
-com.example.cuida:layout/select_dialog_item_material = 0x7f0c0079
-com.example.cuida:string/m3_sys_motion_easing_emphasized = 0x7f12006c
-com.example.cuida:layout/notification_template_part_time = 0x7f0c0078
-com.example.cuida:layout/notification_template_icon_group = 0x7f0c0076
-com.example.cuida:style/TextAppearance.AppCompat = 0x7f130193
-com.example.cuida:layout/notification_template_custom_big = 0x7f0c0075
-com.example.cuida:layout/notification_action_tombstone = 0x7f0c0074
-com.example.cuida:layout/mtrl_picker_header_title_text = 0x7f0c006d
-com.example.cuida:layout/mtrl_picker_header_fullscreen = 0x7f0c006b
-com.example.cuida:layout/mtrl_picker_dialog = 0x7f0c0068
-com.example.cuida:style/Widget.Material3.Chip.Filter.Elevated = 0x7f13036a
-com.example.cuida:layout/mtrl_picker_actions = 0x7f0c0067
-com.example.cuida:layout/mtrl_layout_snackbar = 0x7f0c0064
+com.example.cuida:string/mtrl_checkbox_state_description_unchecked = 0x7f120098
+com.example.cuida:macro/m3_comp_extended_fab_surface_container_color = 0x7f0d0033
+com.example.cuida:layout/select_dialog_item_material = 0x7f0c007a
+com.example.cuida:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense = 0x7f13044d
+com.example.cuida:style/Base.Widget.Material3.FloatingActionButton.Large = 0x7f130109
+com.example.cuida:layout/abc_activity_chooser_view_list_item = 0x7f0c0007
+com.example.cuida:layout/notification_template_icon_group = 0x7f0c0077
+com.example.cuida:id/gone = 0x7f0900f8
+com.example.cuida:drawable/googleg_standard_color_18 = 0x7f08009c
+com.example.cuida:layout/notification_action_tombstone = 0x7f0c0075
+com.example.cuida:layout/mtrl_layout_snackbar = 0x7f0c0065
+com.example.cuida:id/browser_actions_menu_view = 0x7f09006e
+com.example.cuida:string/title_medication = 0x7f1200e1
+com.example.cuida:layout/mtrl_calendar_months = 0x7f0c0062
com.example.cuida:string/mtrl_picker_end_date_description = 0x7f1200a7
-com.example.cuida:layout/mtrl_calendar_months = 0x7f0c0061
-com.example.cuida:layout/mtrl_calendar_month_navigation = 0x7f0c0060
-com.example.cuida:layout/mtrl_calendar_month_labeled = 0x7f0c005f
-com.example.cuida:layout/mtrl_calendar_month = 0x7f0c005e
+com.example.cuida:style/TextAppearance.AppCompat.Light.SearchResult.Title = 0x7f1301a1
+com.example.cuida:integer/m3_sys_motion_path = 0x7f0a0021
+com.example.cuida:layout/mtrl_calendar_month = 0x7f0c005f
+com.example.cuida:color/material_personalized_color_surface = 0x7f0602a6
+com.example.cuida:id/add = 0x7f090048
+com.example.cuida:layout/mtrl_calendar_horizontal = 0x7f0c005e
com.example.cuida:string/mtrl_checkbox_button_path_name = 0x7f120094
-com.example.cuida:layout/mtrl_calendar_horizontal = 0x7f0c005d
-com.example.cuida:layout/mtrl_calendar_day = 0x7f0c005a
-com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day = 0x7f13018f
-com.example.cuida:layout/mtrl_auto_complete_simple_item = 0x7f0c0059
-com.example.cuida:layout/mtrl_alert_select_dialog_multichoice = 0x7f0c0057
-com.example.cuida:layout/mtrl_alert_dialog_actions = 0x7f0c0054
+com.example.cuida:layout/mtrl_alert_dialog_actions = 0x7f0c0055
com.example.cuida:style/Theme.AppCompat.Dialog.MinWidth = 0x7f130216
-com.example.cuida:layout/mtrl_alert_dialog = 0x7f0c0053
-com.example.cuida:macro/m3_comp_time_picker_time_selector_label_text_type = 0x7f0d0160
-com.example.cuida:layout/material_time_input = 0x7f0c004f
-com.example.cuida:layout/material_time_chip = 0x7f0c004e
-com.example.cuida:layout/material_textinput_timepicker = 0x7f0c004d
-com.example.cuida:layout/material_clockface_view = 0x7f0c004b
-com.example.cuida:layout/material_clock_display = 0x7f0c0046
-com.example.cuida:layout/material_chip_input_combo = 0x7f0c0045
+com.example.cuida:layout/mtrl_alert_dialog = 0x7f0c0054
+com.example.cuida:color/call_notification_decline_color = 0x7f060031
+com.example.cuida:drawable/$mtrl_checkbox_button_checked_unchecked__0 = 0x7f08000c
+com.example.cuida:attr/checkMarkCompat = 0x7f0400b5
+com.example.cuida:string/fingerprint_error_lockout = 0x7f120055
+com.example.cuida:id/confirm_button = 0x7f090097
+com.example.cuida:dimen/mtrl_tooltip_cornerSize = 0x7f070303
+com.example.cuida:color/m3_sys_color_light_primary = 0x7f0601ee
+com.example.cuida:layout/material_textinput_timepicker = 0x7f0c004e
+com.example.cuida:style/ShapeAppearance.Material3.LargeComponent = 0x7f130175
+com.example.cuida:layout/material_chip_input_combo = 0x7f0c0046
+com.example.cuida:style/Theme.MaterialComponents.CompactMenu = 0x7f130247
+com.example.cuida:id/rightToLeft = 0x7f0901bb
+com.example.cuida:style/TextAppearance.M3.Sys.Typescale.BodyLarge = 0x7f1301d3
+com.example.cuida:id/split_action_bar = 0x7f0901ec
+com.example.cuida:layout/m3_side_sheet_dialog = 0x7f0c0045
com.example.cuida:macro/m3_comp_radio_button_disabled_unselected_icon_color = 0x7f0d00d8
-com.example.cuida:layout/m3_side_sheet_dialog = 0x7f0c0044
-com.example.cuida:layout/m3_alert_dialog_title = 0x7f0c0042
-com.example.cuida:layout/m3_alert_dialog_actions = 0x7f0c0041
-com.example.cuida:layout/m3_alert_dialog = 0x7f0c0040
-com.example.cuida:layout/item_time_slot = 0x7f0c003f
-com.example.cuida:layout/item_medication = 0x7f0c003e
-com.example.cuida:layout/ime_secondary_split_test_activity = 0x7f0c003c
-com.example.cuida:style/Platform.MaterialComponents.Light = 0x7f13013a
-com.example.cuida:layout/fragment_medication = 0x7f0c0037
+com.example.cuida:layout/m3_alert_dialog_title = 0x7f0c0043
+com.example.cuida:style/MaterialAlertDialog.Material3.Title.Text.CenterStacked = 0x7f13012b
+com.example.cuida:layout/m3_alert_dialog_actions = 0x7f0c0042
+com.example.cuida:layout/m3_alert_dialog = 0x7f0c0041
+com.example.cuida:layout/item_time_slot = 0x7f0c0040
+com.example.cuida:color/primary_text_default_material_light = 0x7f060307
+com.example.cuida:id/transitionToStart = 0x7f090232
+com.example.cuida:style/Base.Theme.AppCompat.Dialog.FixedSize = 0x7f13004f
+com.example.cuida:layout/item_medication = 0x7f0c003f
com.example.cuida:style/Base.V14.Theme.MaterialComponents.Dialog = 0x7f130093
-com.example.cuida:layout/fragment_home = 0x7f0c0036
-com.example.cuida:layout/fragment_appointments = 0x7f0c0035
-com.example.cuida:layout/dialog_edit_profile = 0x7f0c0033
-com.example.cuida:macro/m3_comp_checkbox_selected_error_container_color = 0x7f0d0009
-com.example.cuida:layout/dialog_change_password = 0x7f0c0032
-com.example.cuida:layout/design_navigation_menu_item = 0x7f0c002f
-com.example.cuida:layout/design_navigation_menu = 0x7f0c002e
-com.example.cuida:layout/design_navigation_item_header = 0x7f0c002b
+com.example.cuida:layout/fragment_home = 0x7f0c0037
+com.example.cuida:style/ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox = 0x7f130283
+com.example.cuida:style/Widget.AppCompat.Light.ActionBar.TabText = 0x7f130305
+com.example.cuida:color/mtrl_chip_close_icon_tint = 0x7f0602d3
+com.example.cuida:color/m3_ref_palette_neutral_variant70 = 0x7f060134
+com.example.cuida:interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1 = 0x7f0b0001
+com.example.cuida:layout/fragment_appointments = 0x7f0c0036
+com.example.cuida:id/triangle = 0x7f090238
+com.example.cuida:id/tag_window_insets_animation_callback = 0x7f09020d
+com.example.cuida:layout/dialog_add_medication = 0x7f0c0032
+com.example.cuida:color/m3_ref_palette_primary90 = 0x7f060143
com.example.cuida:layout/design_bottom_sheet_dialog = 0x7f0c0024
com.example.cuida:layout/design_bottom_navigation_item = 0x7f0c0023
com.example.cuida:layout/browser_actions_context_menu_row = 0x7f0c0021
com.example.cuida:layout/activity_main = 0x7f0c001e
com.example.cuida:layout/activity_login = 0x7f0c001d
-com.example.cuida:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2 = 0x7f13014f
-com.example.cuida:style/Base.Widget.MaterialComponents.PopupMenu = 0x7f130116
-com.example.cuida:layout/activity_forgot_password = 0x7f0c001c
com.example.cuida:layout/abc_tooltip = 0x7f0c001b
-com.example.cuida:layout/abc_search_view = 0x7f0c0019
-com.example.cuida:layout/abc_search_dropdown_item_icons_2line = 0x7f0c0018
-com.example.cuida:string/common_google_play_services_enable_button = 0x7f120033
-com.example.cuida:layout/abc_screen_simple = 0x7f0c0015
-com.example.cuida:layout/abc_popup_menu_item_layout = 0x7f0c0013
-com.example.cuida:layout/abc_popup_menu_header_item_layout = 0x7f0c0012
-com.example.cuida:layout/abc_list_menu_item_layout = 0x7f0c0010
com.example.cuida:style/Widget.Material3.CircularProgressIndicator.Small = 0x7f130375
com.example.cuida:layout/abc_list_menu_item_checkbox = 0x7f0c000e
com.example.cuida:layout/abc_dialog_title_material = 0x7f0c000c
-com.example.cuida:layout/abc_cascading_menu_item_layout = 0x7f0c000b
+com.example.cuida:string/m3_ref_typeface_plain_regular = 0x7f12006b
+com.example.cuida:style/Theme.AppCompat.NoActionBar = 0x7f130220
+com.example.cuida:macro/m3_comp_top_app_bar_small_headline_color = 0x7f0d0171
com.example.cuida:layout/abc_alert_dialog_title_material = 0x7f0c000a
+com.example.cuida:attr/navigationIconTint = 0x7f040363
+com.example.cuida:color/m3_ref_palette_dynamic_primary80 = 0x7f0600e9
+com.example.cuida:color/material_on_surface_emphasis_medium = 0x7f060285
com.example.cuida:layout/abc_alert_dialog_material = 0x7f0c0009
-com.example.cuida:layout/abc_activity_chooser_view_list_item = 0x7f0c0007
-com.example.cuida:style/ShapeAppearance.Material3.Corner.ExtraLarge = 0x7f13016e
+com.example.cuida:color/m3_ref_palette_neutral98 = 0x7f06012a
+com.example.cuida:id/wrap_content = 0x7f09024e
com.example.cuida:layout/abc_activity_chooser_view = 0x7f0c0006
-com.example.cuida:style/Theme.Design.Light = 0x7f130224
+com.example.cuida:style/ShapeAppearance.Material3.Corner.ExtraLarge = 0x7f13016e
com.example.cuida:layout/abc_action_mode_close_item_material = 0x7f0c0005
-com.example.cuida:style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f130209
+com.example.cuida:style/Theme.Design.Light = 0x7f130224
+com.example.cuida:style/TextAppearance.Design.Hint = 0x7f1301cd
com.example.cuida:layout/abc_action_mode_bar = 0x7f0c0004
-com.example.cuida:style/Theme.AppCompat.DayNight.NoActionBar = 0x7f130213
-com.example.cuida:layout/abc_action_bar_up_container = 0x7f0c0001
+com.example.cuida:style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f130209
com.example.cuida:layout/abc_action_bar_title_item = 0x7f0c0000
+com.example.cuida:styleable/State = 0x7f140093
com.example.cuida:interpolator/mtrl_linear = 0x7f0b0010
-com.example.cuida:string/mtrl_picker_range_header_selected = 0x7f1200b1
com.example.cuida:interpolator/m3_sys_motion_easing_standard = 0x7f0b000b
-com.example.cuida:interpolator/m3_sys_motion_easing_linear = 0x7f0b000a
+com.example.cuida:string/mtrl_picker_range_header_selected = 0x7f1200b1
+com.example.cuida:id/custom = 0x7f0900a3
com.example.cuida:interpolator/m3_sys_motion_easing_emphasized = 0x7f0b0007
-com.example.cuida:styleable/BottomNavigationView = 0x7f140019
-com.example.cuida:string/fab_transformation_sheet_behavior = 0x7f12004e
-com.example.cuida:interpolator/fast_out_slow_in = 0x7f0b0006
com.example.cuida:interpolator/btn_radio_to_off_mtrl_animation_interpolator_0 = 0x7f0b0004
com.example.cuida:interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 0x7f0b0003
-com.example.cuida:interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 0x7f0b0002
-com.example.cuida:interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1 = 0x7f0b0001
-com.example.cuida:macro/m3_comp_radio_button_unselected_hover_state_layer_color = 0x7f0d00e3
-com.example.cuida:integer/status_bar_notification_info_maxnum = 0x7f0a0045
-com.example.cuida:style/TextAppearance.AppCompat.Subhead.Inverse = 0x7f1301ac
+com.example.cuida:style/ThemeOverlay.Material3.PersonalizedColors = 0x7f1302b2
com.example.cuida:integer/mtrl_view_visible = 0x7f0a0043
+com.example.cuida:style/TextAppearance.AppCompat.Subhead.Inverse = 0x7f1301ac
com.example.cuida:integer/mtrl_switch_thumb_viewport_size = 0x7f0a003d
-com.example.cuida:integer/mtrl_switch_thumb_pressed_duration = 0x7f0a003b
com.example.cuida:integer/mtrl_switch_thumb_post_morphing_duration = 0x7f0a0039
-com.example.cuida:integer/mtrl_card_anim_duration_ms = 0x7f0a0036
+com.example.cuida:style/Base.V14.Theme.Material3.Light.Dialog = 0x7f13008f
+com.example.cuida:style/TextAppearance.M3.Sys.Typescale.TitleSmall = 0x7f1301e1
com.example.cuida:integer/mtrl_card_anim_delay_ms = 0x7f0a0035
+com.example.cuida:id/notification_background = 0x7f090180
+com.example.cuida:id/action_mode_bar = 0x7f090042
com.example.cuida:integer/mtrl_calendar_year_selector_span = 0x7f0a0034
-com.example.cuida:integer/mtrl_calendar_header_orientation = 0x7f0a0032
-com.example.cuida:integer/mtrl_btn_anim_duration_ms = 0x7f0a0031
-com.example.cuida:integer/mtrl_badge_max_character_count = 0x7f0a002f
+com.example.cuida:id/scrollable = 0x7f0901ca
com.example.cuida:integer/material_motion_path = 0x7f0a002e
-com.example.cuida:style/Base.TextAppearance.AppCompat.Display4 = 0x7f13001e
-com.example.cuida:integer/material_motion_duration_short_2 = 0x7f0a002d
+com.example.cuida:id/browser_actions_menu_items = 0x7f09006d
+com.example.cuida:style/Base.TextAppearance.AppCompat.Title = 0x7f13002f
com.example.cuida:string/exposed_dropdown_menu_content_description = 0x7f12004c
com.example.cuida:integer/material_motion_duration_short_1 = 0x7f0a002c
-com.example.cuida:integer/material_motion_duration_medium_2 = 0x7f0a002b
-com.example.cuida:integer/material_motion_duration_medium_1 = 0x7f0a002a
+com.example.cuida:dimen/m3_comp_navigation_drawer_icon_size = 0x7f070146
com.example.cuida:integer/material_motion_duration_long_2 = 0x7f0a0029
com.example.cuida:integer/material_motion_duration_long_1 = 0x7f0a0028
+com.example.cuida:style/Widget.MaterialComponents.CardView = 0x7f130403
com.example.cuida:integer/m3_sys_shape_corner_small_corner_family = 0x7f0a0027
-com.example.cuida:integer/m3_sys_shape_corner_medium_corner_family = 0x7f0a0026
+com.example.cuida:string/mtrl_picker_date_header_unselected = 0x7f1200a5
com.example.cuida:integer/m3_sys_shape_corner_large_corner_family = 0x7f0a0025
-com.example.cuida:integer/m3_sys_motion_path = 0x7f0a0021
-com.example.cuida:integer/m3_sys_motion_duration_short4 = 0x7f0a0020
com.example.cuida:integer/m3_sys_motion_duration_short3 = 0x7f0a001f
-com.example.cuida:integer/m3_sys_motion_duration_short2 = 0x7f0a001e
-com.example.cuida:integer/m3_sys_motion_duration_long3 = 0x7f0a0017
com.example.cuida:integer/m3_sys_motion_duration_extra_long2 = 0x7f0a0012
-com.example.cuida:integer/m3_chip_anim_duration = 0x7f0a0010
-com.example.cuida:integer/m3_card_anim_delay_ms = 0x7f0a000e
-com.example.cuida:macro/m3_comp_navigation_drawer_active_focus_state_layer_color = 0x7f0d007d
+com.example.cuida:integer/m3_sys_motion_duration_short2 = 0x7f0a001e
com.example.cuida:integer/m3_btn_anim_duration_ms = 0x7f0a000d
+com.example.cuida:macro/m3_comp_navigation_drawer_active_focus_state_layer_color = 0x7f0d007d
com.example.cuida:integer/m3_badge_max_number = 0x7f0a000b
+com.example.cuida:style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f130208
com.example.cuida:integer/hide_password_duration = 0x7f0a000a
com.example.cuida:integer/cancel_button_image_alpha = 0x7f0a0004
-com.example.cuida:integer/bottom_sheet_slide_duration = 0x7f0a0003
-com.example.cuida:integer/abc_config_activityShortDur = 0x7f0a0001
+com.example.cuida:style/ThemeOverlay.MaterialComponents.ActionBar.Primary = 0x7f1302c0
com.example.cuida:integer/abc_config_activityDefaultDur = 0x7f0a0000
-com.example.cuida:id/x_right = 0x7f09024b
+com.example.cuida:id/x_left = 0x7f090250
com.example.cuida:macro/m3_comp_navigation_drawer_active_hover_label_text_color = 0x7f0d007f
-com.example.cuida:id/x_left = 0x7f09024a
-com.example.cuida:id/wrap_content = 0x7f090248
-com.example.cuida:id/wrap = 0x7f090247
-com.example.cuida:id/with_icon = 0x7f090245
-com.example.cuida:id/withText = 0x7f090244
-com.example.cuida:id/visible_removing_fragment_view_tag = 0x7f090241
+com.example.cuida:styleable/SwitchCompat = 0x7f140097
+com.example.cuida:macro/m3_comp_navigation_bar_active_pressed_label_text_color = 0x7f0d006c
+com.example.cuida:id/wrap = 0x7f09024d
+com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderCancelButton = 0x7f13039d
com.example.cuida:style/Base.Theme.Material3.Dark.SideSheetDialog = 0x7f13005e
-com.example.cuida:id/view_tree_on_back_pressed_dispatcher_owner = 0x7f09023d
-com.example.cuida:id/view_transition = 0x7f09023b
+com.example.cuida:id/view_tree_on_back_pressed_dispatcher_owner = 0x7f090243
com.example.cuida:macro/m3_comp_navigation_drawer_active_hover_state_layer_color = 0x7f0d0080
-com.example.cuida:id/view_offset_helper = 0x7f09023a
-com.example.cuida:id/vertical_only = 0x7f090239
+com.example.cuida:id/view_offset_helper = 0x7f090240
+com.example.cuida:id/vertical_only = 0x7f09023f
+com.example.cuida:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f130024
+com.example.cuida:dimen/m3_searchview_height = 0x7f0701e0
+com.example.cuida:dimen/m3_comp_top_app_bar_small_container_height = 0x7f0701a8
+com.example.cuida:style/TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f1301bc
+com.example.cuida:style/Widget.Material3.Button.TextButton.Icon = 0x7f13035e
+com.example.cuida:id/useLogo = 0x7f09023d
com.example.cuida:style/Widget.Material3.BottomNavigationView = 0x7f13034b
-com.example.cuida:id/useLogo = 0x7f090237
-com.example.cuida:id/up = 0x7f090236
-com.example.cuida:id/triangle = 0x7f090232
+com.example.cuida:id/up = 0x7f09023c
com.example.cuida:styleable/CompoundButton = 0x7f140028
-com.example.cuida:id/transition_current_scene = 0x7f09022d
-com.example.cuida:style/ShapeAppearance.M3.Comp.NavigationDrawer.ActiveIndicator.Shape = 0x7f13015c
-com.example.cuida:id/transitionToEnd = 0x7f09022b
-com.example.cuida:id/touch_outside = 0x7f09022a
-com.example.cuida:id/topPanel = 0x7f090229
-com.example.cuida:id/titleDividerNoCustom = 0x7f090225
-com.example.cuida:id/title = 0x7f090224
-com.example.cuida:id/textinput_error = 0x7f09021e
+com.example.cuida:id/transition_current_scene = 0x7f090233
+com.example.cuida:layout/notification_template_custom_big = 0x7f0c0076
+com.example.cuida:style/TextAppearance.AppCompat = 0x7f130193
+com.example.cuida:id/currentState = 0x7f0900a2
+com.example.cuida:integer/m3_card_anim_duration_ms = 0x7f0a000f
+com.example.cuida:id/titleDividerNoCustom = 0x7f09022b
+com.example.cuida:string/abc_menu_alt_shortcut_label = 0x7f120008
+com.example.cuida:style/Widget.Material3.Light.ActionBar.Solid = 0x7f130392
+com.example.cuida:style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse = 0x7f130304
+com.example.cuida:macro/m3_comp_outlined_text_field_hover_supporting_text_color = 0x7f0d00c2
+com.example.cuida:id/textinput_error = 0x7f090224
+com.example.cuida:integer/m3_chip_anim_duration = 0x7f0a0010
+com.example.cuida:drawable/mtrl_checkbox_button_icon_checked_indeterminate = 0x7f0800d1
+com.example.cuida:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox.Dense = 0x7f1302c4
+com.example.cuida:id/normal = 0x7f09017e
+com.example.cuida:id/text_type = 0x7f090222
com.example.cuida:style/ThemeOverlay.Material3.MaterialTimePicker = 0x7f1302ae
com.example.cuida:style/Base.Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f1300e4
-com.example.cuida:id/text_type = 0x7f09021c
-com.example.cuida:id/text_time = 0x7f09021b
-com.example.cuida:id/text_med_notes = 0x7f090218
+com.example.cuida:id/text_med_notes = 0x7f09021d
+com.example.cuida:string/fab_transformation_sheet_behavior = 0x7f12004e
+com.example.cuida:interpolator/fast_out_slow_in = 0x7f0b0006
+com.example.cuida:styleable/BottomNavigationView = 0x7f140019
+com.example.cuida:id/browser_actions_menu_item_icon = 0x7f09006b
com.example.cuida:style/Widget.Material3.ExtendedFloatingActionButton.Secondary = 0x7f130383
-com.example.cuida:id/text_input_start_icon = 0x7f090215
-com.example.cuida:id/text_input_error_icon = 0x7f090214
+com.example.cuida:id/text_input_start_icon = 0x7f09021a
+com.example.cuida:id/text_greeting = 0x7f090217
com.example.cuida:macro/m3_comp_assist_chip_label_text_type = 0x7f0d0001
-com.example.cuida:id/text_greeting = 0x7f090212
-com.example.cuida:style/Widget.AppCompat.Button.Borderless.Colored = 0x7f1302f3
-com.example.cuida:id/text_ai_result = 0x7f090210
-com.example.cuida:style/Widget.Material3.Search.ActionButton.Overflow = 0x7f1303bf
-com.example.cuida:id/textTop = 0x7f09020f
-com.example.cuida:id/textSpacerNoTitle = 0x7f09020d
-com.example.cuida:style/ThemeOverlay.MaterialComponents.Dialog = 0x7f1302cd
-com.example.cuida:id/textEnd = 0x7f09020b
-com.example.cuida:id/text2 = 0x7f09020a
-com.example.cuida:id/text = 0x7f090209
-com.example.cuida:id/tag_window_insets_animation_callback = 0x7f090208
-com.example.cuida:string/fingerprint_error_no_fingerprints = 0x7f120056
-com.example.cuida:layout/design_navigation_item_subheader = 0x7f0c002d
-com.example.cuida:id/tag_unhandled_key_listeners = 0x7f090207
-com.example.cuida:id/tag_transition_group = 0x7f090205
-com.example.cuida:id/tag_state_description = 0x7f090204
-com.example.cuida:id/tag_screen_reader_focusable = 0x7f090203
+com.example.cuida:id/edit_name = 0x7f0900cf
+com.example.cuida:id/text = 0x7f09020e
+com.example.cuida:layout/mtrl_auto_complete_simple_item = 0x7f0c005a
+com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day = 0x7f13018f
+com.example.cuida:id/tag_state_description = 0x7f090209
+com.example.cuida:id/mtrl_calendar_day_selector_frame = 0x7f09014c
+com.example.cuida:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f1301b5
+com.example.cuida:styleable/MaterialCardView = 0x7f140059
com.example.cuida:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Spinner = 0x7f1302d8
-com.example.cuida:id/tag_on_receive_content_mime_types = 0x7f090202
-com.example.cuida:id/tag_accessibility_pane_title = 0x7f0901ff
-com.example.cuida:id/textinput_counter = 0x7f09021d
-com.example.cuida:id/tabMode = 0x7f0901fb
-com.example.cuida:id/supportScrollUp = 0x7f0901fa
-com.example.cuida:id/stretch = 0x7f0901f7
+com.example.cuida:id/tag_on_receive_content_mime_types = 0x7f090207
+com.example.cuida:id/supportScrollUp = 0x7f0901ff
+com.example.cuida:dimen/mtrl_chip_pressed_translation_z = 0x7f07029e
+com.example.cuida:id/dragClockwise = 0x7f0900bd
+com.example.cuida:id/parent = 0x7f090199
+com.example.cuida:dimen/design_textinput_caption_translate_y = 0x7f07008f
+com.example.cuida:dimen/mtrl_extended_fab_disabled_elevation = 0x7f0702a4
+com.example.cuida:layout/mtrl_calendar_year = 0x7f0c0064
com.example.cuida:style/Widget.Material3.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu = 0x7f1303dc
-com.example.cuida:layout/mtrl_calendar_year = 0x7f0c0063
-com.example.cuida:id/stop = 0x7f0901f6
-com.example.cuida:id/staticPostLayout = 0x7f0901f5
-com.example.cuida:id/staticLayout = 0x7f0901f4
-com.example.cuida:id/startVertical = 0x7f0901f3
-com.example.cuida:id/startHorizontal = 0x7f0901f1
-com.example.cuida:id/start = 0x7f0901f0
-com.example.cuida:id/spread = 0x7f0901e8
-com.example.cuida:id/split_action_bar = 0x7f0901e7
-com.example.cuida:id/spline = 0x7f0901e6
-com.example.cuida:id/spacer = 0x7f0901e4
-com.example.cuida:id/south = 0x7f0901e3
-com.example.cuida:id/snapMargins = 0x7f0901e2
-com.example.cuida:id/snackbar_text = 0x7f0901e0
-com.example.cuida:id/slide = 0x7f0901dc
-com.example.cuida:id/skipped = 0x7f0901db
-com.example.cuida:id/showTitle = 0x7f0901d8
-com.example.cuida:id/shortcut = 0x7f0901d5
-com.example.cuida:style/TextAppearance.M3.Sys.Typescale.BodySmall = 0x7f1301d5
-com.example.cuida:id/sharedValueSet = 0x7f0901d3
-com.example.cuida:id/selected = 0x7f0901d1
-com.example.cuida:id/search_voice_btn = 0x7f0901cf
-com.example.cuida:id/search_mag_icon = 0x7f0901cc
-com.example.cuida:id/search_go_btn = 0x7f0901cb
-com.example.cuida:id/search_close_btn = 0x7f0901c9
-com.example.cuida:id/search_button = 0x7f0901c8
-com.example.cuida:id/search_bar = 0x7f0901c7
-com.example.cuida:id/scrollable = 0x7f0901c5
-com.example.cuida:id/scroll = 0x7f0901c1
-com.example.cuida:id/scale = 0x7f0901bf
-com.example.cuida:id/row_index_key = 0x7f0901ba
-com.example.cuida:style/Widget.MaterialComponents.Snackbar.TextView = 0x7f130440
-com.example.cuida:id/right_side = 0x7f0901b8
-com.example.cuida:style/TextAppearance.M3.Sys.Typescale.BodyLarge = 0x7f1301d3
-com.example.cuida:id/rightToLeft = 0x7f0901b6
+com.example.cuida:id/stop = 0x7f0901fb
+com.example.cuida:bool/abc_config_actionMenuItemAllCaps = 0x7f050001
+com.example.cuida:color/m3_sys_color_light_inverse_surface = 0x7f0601e0
+com.example.cuida:anim/mtrl_bottom_sheet_slide_out = 0x7f01002a
+com.example.cuida:id/start = 0x7f0901f5
+com.example.cuida:id/checked = 0x7f09008d
+com.example.cuida:layout/mtrl_picker_header_dialog = 0x7f0c006b
+com.example.cuida:string/common_open_on_phone = 0x7f120042
+com.example.cuida:macro/m3_comp_extended_fab_surface_icon_color = 0x7f0d0034
+com.example.cuida:id/spline = 0x7f0901eb
+com.example.cuida:dimen/m3_comp_outlined_card_icon_size = 0x7f070157
+com.example.cuida:id/north = 0x7f09017f
+com.example.cuida:id/spacer = 0x7f0901e9
+com.example.cuida:id/south = 0x7f0901e8
+com.example.cuida:dimen/mtrl_textinput_end_icon_margin_start = 0x7f0702fe
+com.example.cuida:attr/passwordToggleTint = 0x7f040386
+com.example.cuida:color/material_dynamic_secondary80 = 0x7f060261
+com.example.cuida:id/line3 = 0x7f09011e
+com.example.cuida:macro/m3_comp_switch_unselected_focus_state_layer_color = 0x7f0d0132
+com.example.cuida:id/snapMargins = 0x7f0901e7
+com.example.cuida:id/slide = 0x7f0901e1
+com.example.cuida:id/skipped = 0x7f0901e0
+com.example.cuida:id/showTitle = 0x7f0901dd
+com.example.cuida:id/staticPostLayout = 0x7f0901fa
+com.example.cuida:id/image = 0x7f09010b
+com.example.cuida:id/shortcut = 0x7f0901da
+com.example.cuida:style/TextAppearance.MaterialComponents.Headline5 = 0x7f130201
+com.example.cuida:style/ThemeOverlay.Material3.DynamicColors.Light = 0x7f13029c
+com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderTitle = 0x7f1303a3
+com.example.cuida:dimen/m3_btn_text_btn_padding_left = 0x7f0700e3
+com.example.cuida:id/row_index_key = 0x7f0901bf
+com.example.cuida:dimen/mtrl_textinput_outline_box_expanded_padding = 0x7f0702ff
+com.example.cuida:id/reverseSawtooth = 0x7f0901b9
com.example.cuida:macro/m3_comp_navigation_drawer_modal_container_color = 0x7f0d0095
-com.example.cuida:id/reverseSawtooth = 0x7f0901b4
+com.example.cuida:id/reset_button = 0x7f0901b8
com.example.cuida:macro/m3_comp_date_picker_modal_year_selection_year_selected_label_text_color = 0x7f0d0021
-com.example.cuida:id/reset_button = 0x7f0901b3
+com.example.cuida:id/horizontal_only = 0x7f090104
com.example.cuida:style/TextAppearance.AppCompat.SearchResult.Subtitle = 0x7f1301a7
-com.example.cuida:id/register_link = 0x7f0901b1
-com.example.cuida:id/register_button = 0x7f0901b0
-com.example.cuida:styleable/Fragment = 0x7f14003d
-com.example.cuida:id/recycler_time_slots = 0x7f0901af
-com.example.cuida:id/recycler_medication = 0x7f0901ae
-com.example.cuida:id/rectangles = 0x7f0901ab
+com.example.cuida:id/register_link = 0x7f0901b6
+com.example.cuida:style/ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f1302ce
+com.example.cuida:macro/m3_comp_radio_button_selected_focus_state_layer_color = 0x7f0d00da
+com.example.cuida:id/register_button = 0x7f0901b5
+com.example.cuida:style/ThemeOverlay.AppCompat.Dark = 0x7f130276
+com.example.cuida:dimen/mtrl_alert_dialog_background_inset_bottom = 0x7f070243
+com.example.cuida:id/recycler_medication = 0x7f0901b3
+com.example.cuida:id/rectangles = 0x7f0901b0
+com.example.cuida:id/ratio = 0x7f0901af
com.example.cuida:style/Widget.Material3.FloatingActionButton.Tertiary = 0x7f130391
-com.example.cuida:id/ratio = 0x7f0901aa
-com.example.cuida:id/radio = 0x7f0901a9
-com.example.cuida:id/progress_circular = 0x7f0901a7
-com.example.cuida:id/profile_name = 0x7f0901a5
-com.example.cuida:id/profile_image = 0x7f0901a4
-com.example.cuida:id/profile_age = 0x7f0901a2
+com.example.cuida:dimen/mtrl_navigation_item_shape_vertical_margin = 0x7f0702c7
+com.example.cuida:id/baseline = 0x7f090060
+com.example.cuida:style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox = 0x7f1303ea
+com.example.cuida:id/profile_name = 0x7f0901aa
+com.example.cuida:id/profile_age = 0x7f0901a7
+com.example.cuida:layout/abc_action_bar_up_container = 0x7f0c0001
+com.example.cuida:style/Theme.AppCompat.DayNight.NoActionBar = 0x7f130213
+com.example.cuida:style/Widget.Material3.Button.TonalButton = 0x7f130360
com.example.cuida:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Calendar = 0x7f1302d5
-com.example.cuida:id/postLayout = 0x7f0901a0
-com.example.cuida:id/pin = 0x7f09019e
-com.example.cuida:id/path = 0x7f09019a
-com.example.cuida:id/parentRelative = 0x7f090196
+com.example.cuida:id/postLayout = 0x7f0901a5
+com.example.cuida:attr/sizePercent = 0x7f0403f4
+com.example.cuida:dimen/m3_sys_motion_easing_standard_accelerate_control_y1 = 0x7f07020d
+com.example.cuida:id/pin = 0x7f0901a3
+com.example.cuida:dimen/design_bottom_navigation_margin = 0x7f07006a
+com.example.cuida:color/m3_sys_color_on_primary_fixed_variant = 0x7f0601fe
+com.example.cuida:id/path = 0x7f09019f
+com.example.cuida:macro/m3_comp_switch_selected_focus_handle_color = 0x7f0d0121
+com.example.cuida:id/parentRelative = 0x7f09019b
+com.example.cuida:styleable/SideSheetBehavior_Layout = 0x7f14008a
+com.example.cuida:id/list_item = 0x7f090121
+com.example.cuida:id/packed = 0x7f090197
com.example.cuida:style/ThemeOverlay.Material3.Dark = 0x7f130293
-com.example.cuida:id/packed = 0x7f090192
-com.example.cuida:id/open_search_view_toolbar_container = 0x7f09018e
+com.example.cuida:macro/m3_comp_input_chip_label_text_type = 0x7f0d005d
+com.example.cuida:styleable/AnimatedStateListDrawableCompat = 0x7f14000a
com.example.cuida:macro/m3_comp_time_picker_period_selector_unselected_hover_state_layer_color = 0x7f0d015c
-com.example.cuida:id/open_search_view_toolbar = 0x7f09018d
-com.example.cuida:id/open_search_view_status_bar_spacer = 0x7f09018c
-com.example.cuida:id/open_search_view_header_container = 0x7f090188
+com.example.cuida:id/open_search_view_toolbar = 0x7f090192
+com.example.cuida:id/open_search_view_status_bar_spacer = 0x7f090191
+com.example.cuida:id/open_search_view_header_container = 0x7f09018d
+com.example.cuida:id/open_search_view_edit_text = 0x7f09018c
com.example.cuida:macro/m3_comp_secondary_navigation_tab_pressed_state_layer_color = 0x7f0d0102
-com.example.cuida:id/open_search_view_edit_text = 0x7f090187
-com.example.cuida:id/open_search_view_dummy_toolbar = 0x7f090186
-com.example.cuida:id/open_search_view_clear_button = 0x7f090183
+com.example.cuida:id/open_search_view_dummy_toolbar = 0x7f09018b
+com.example.cuida:style/Theme.Material3.DayNight = 0x7f130231
+com.example.cuida:id/open_search_view_clear_button = 0x7f090188
+com.example.cuida:macro/m3_comp_navigation_drawer_active_indicator_color = 0x7f0d0082
+com.example.cuida:id/open_search_view_background = 0x7f090187
com.example.cuida:macro/m3_comp_outlined_text_field_input_text_color = 0x7f0d00c3
-com.example.cuida:id/open_search_view_background = 0x7f090182
+com.example.cuida:id/leftToRight = 0x7f09011a
+com.example.cuida:drawable/avd_show_password = 0x7f080078
com.example.cuida:style/Base.Theme.AppCompat.Light.DialogWhenLarge = 0x7f130058
-com.example.cuida:id/open_search_bar_text_view = 0x7f090181
-com.example.cuida:id/onInterceptTouchReturnSwipe = 0x7f090180
-com.example.cuida:id/notification_main_column_container = 0x7f09017d
-com.example.cuida:id/notification_main_column = 0x7f09017c
-com.example.cuida:id/notification_background = 0x7f09017b
-com.example.cuida:id/north = 0x7f09017a
-com.example.cuida:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox.Dense = 0x7f1302c4
-com.example.cuida:id/normal = 0x7f090179
-com.example.cuida:id/none = 0x7f090178
+com.example.cuida:id/open_search_bar_text_view = 0x7f090186
+com.example.cuida:id/onInterceptTouchReturnSwipe = 0x7f090185
+com.example.cuida:id/next_med_time = 0x7f09017a
com.example.cuida:styleable/ClockFaceView = 0x7f140023
-com.example.cuida:id/next_med_time = 0x7f090175
-com.example.cuida:id/new_password = 0x7f090173
-com.example.cuida:id/neverCompleteToStart = 0x7f090172
+com.example.cuida:style/Base.Animation.AppCompat.Dialog = 0x7f13000d
+com.example.cuida:id/new_password = 0x7f090178
+com.example.cuida:layout/abc_search_view = 0x7f0c0019
+com.example.cuida:macro/m3_comp_time_picker_clock_dial_selector_handle_container_color = 0x7f0d014e
+com.example.cuida:id/neverCompleteToEnd = 0x7f090176
com.example.cuida:styleable/RecycleListView = 0x7f140082
-com.example.cuida:id/neverCompleteToEnd = 0x7f090171
-com.example.cuida:id/navigation_sns24 = 0x7f09016f
-com.example.cuida:id/navigation_medication = 0x7f09016c
-com.example.cuida:id/navigation_home = 0x7f09016b
+com.example.cuida:color/m3_ref_palette_neutral_variant30 = 0x7f060130
+com.example.cuida:dimen/material_textinput_default_width = 0x7f07023e
+com.example.cuida:id/navigation_medication = 0x7f090171
+com.example.cuida:dimen/m3_comp_slider_disabled_handle_opacity = 0x7f070183
+com.example.cuida:style/Base.V14.ThemeOverlay.Material3.BottomSheetDialog = 0x7f13009a
+com.example.cuida:style/TextAppearance.Compat.Notification.Info = 0x7f1301c4
+com.example.cuida:id/ltr = 0x7f090125
+com.example.cuida:macro/m3_comp_snackbar_container_color = 0x7f0d0114
+com.example.cuida:style/Widget.Material3.BottomAppBar.Button.Navigation = 0x7f130348
+com.example.cuida:dimen/compat_button_padding_horizontal_material = 0x7f07005a
+com.example.cuida:color/material_dynamic_secondary70 = 0x7f060260
com.example.cuida:macro/m3_comp_fab_primary_container_shape = 0x7f0d0038
-com.example.cuida:id/navigation_header_container = 0x7f09016a
-com.example.cuida:id/search_plate = 0x7f0901cd
-com.example.cuida:id/navigation_bar_item_labels_group = 0x7f090167
+com.example.cuida:id/navigation_header_container = 0x7f09016f
+com.example.cuida:style/Base.V14.Widget.MaterialComponents.AutoCompleteTextView = 0x7f1300a0
+com.example.cuida:styleable/MaterialButton = 0x7f140055
+com.example.cuida:id/navigation_bar_item_labels_group = 0x7f09016c
+com.example.cuida:id/search_plate = 0x7f0901d2
+com.example.cuida:layout/dialog_edit_profile = 0x7f0c0034
+com.example.cuida:id/navigation_bar_item_active_indicator_view = 0x7f090169
com.example.cuida:macro/m3_comp_navigation_drawer_active_pressed_state_layer_color = 0x7f0d0086
-com.example.cuida:id/navigation_bar_item_active_indicator_view = 0x7f090164
-com.example.cuida:id/navigation_appointments = 0x7f090163
-com.example.cuida:id/nav_view = 0x7f090162
-com.example.cuida:id/nav_host_fragment = 0x7f090160
-com.example.cuida:id/name_edit_text = 0x7f09015e
-com.example.cuida:id/multiply = 0x7f09015d
-com.example.cuida:id/mtrl_view_tag_bottom_padding = 0x7f09015c
-com.example.cuida:id/mtrl_picker_title_text = 0x7f09015b
+com.example.cuida:style/Widget.Material3.TextInputLayout.FilledBox.Dense = 0x7f1303d7
+com.example.cuida:id/navigation_appointments = 0x7f090168
+com.example.cuida:id/multiply = 0x7f090162
+com.example.cuida:layout/design_navigation_menu_item = 0x7f0c002f
+com.example.cuida:id/mtrl_view_tag_bottom_padding = 0x7f090161
+com.example.cuida:id/mtrl_picker_title_text = 0x7f090160
+com.example.cuida:id/NO_DEBUG = 0x7f090006
+com.example.cuida:id/mtrl_picker_text_input_range_start = 0x7f09015f
com.example.cuida:style/ThemeOverlay.Material3.TextInputEditText.FilledBox.Dense = 0x7f1302b9
-com.example.cuida:id/mtrl_picker_text_input_range_start = 0x7f09015a
-com.example.cuida:id/mtrl_picker_text_input_range_end = 0x7f090159
-com.example.cuida:id/never = 0x7f090170
-com.example.cuida:id/mtrl_picker_text_input_date = 0x7f090158
+com.example.cuida:attr/reverseLayout = 0x7f0403bd
+com.example.cuida:dimen/m3_comp_text_button_pressed_state_layer_opacity = 0x7f07019b
+com.example.cuida:id/line1 = 0x7f09011d
+com.example.cuida:string/name_hint = 0x7f1200cb
+com.example.cuida:style/Widget.Material3.AutoCompleteTextView.FilledBox = 0x7f130341
com.example.cuida:style/Theme.MaterialComponents.Dialog.FixedSize.Bridge = 0x7f13025d
-com.example.cuida:id/mtrl_picker_header_toggle = 0x7f090157
-com.example.cuida:id/mtrl_card_checked_layer_id = 0x7f09014f
-com.example.cuida:layout/ime_base_split_test_activity = 0x7f0c003b
-com.example.cuida:id/mtrl_calendar_text_input_frame = 0x7f09014d
-com.example.cuida:id/wide = 0x7f090243
-com.example.cuida:id/mtrl_calendar_selection_frame = 0x7f09014c
-com.example.cuida:id/mtrl_calendar_months = 0x7f09014b
-com.example.cuida:id/mtrl_calendar_day_selector_frame = 0x7f090147
-com.example.cuida:id/motion_base = 0x7f090145
-com.example.cuida:id/month_navigation_previous = 0x7f090143
-com.example.cuida:id/month_navigation_fragment_toggle = 0x7f090141
-com.example.cuida:style/Widget.AppCompat.ListMenuView = 0x7f130316
-com.example.cuida:id/mini = 0x7f09013d
-com.example.cuida:macro/m3_comp_navigation_bar_inactive_hover_state_layer_color = 0x7f0d0074
-com.example.cuida:id/matrix = 0x7f09013a
-com.example.cuida:id/material_value_index = 0x7f090139
+com.example.cuida:id/mtrl_picker_header_toggle = 0x7f09015c
+com.example.cuida:id/startHorizontal = 0x7f0901f6
+com.example.cuida:integer/material_motion_duration_medium_1 = 0x7f0a002a
+com.example.cuida:id/accessibility_custom_action_10 = 0x7f090012
+com.example.cuida:drawable/mtrl_navigation_bar_item_background = 0x7f0800e2
+com.example.cuida:style/ShapeAppearance.M3.Comp.Switch.Handle.Shape = 0x7f130163
+com.example.cuida:id/antiClockwise = 0x7f090055
+com.example.cuida:style/Widget.Material3.Snackbar = 0x7f1303cc
+com.example.cuida:id/group_divider = 0x7f0900fb
+com.example.cuida:drawable/mtrl_switch_thumb_unchecked_pressed = 0x7f0800ee
+com.example.cuida:id/mtrl_card_checked_layer_id = 0x7f090154
+com.example.cuida:style/TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f1301c0
+com.example.cuida:style/Base.Theme.Material3.Light.SideSheetDialog = 0x7f130064
+com.example.cuida:layout/ime_base_split_test_activity = 0x7f0c003c
+com.example.cuida:id/mtrl_calendar_text_input_frame = 0x7f090152
+com.example.cuida:dimen/m3_comp_linear_progress_indicator_active_indicator_height = 0x7f070139
+com.example.cuida:style/MaterialAlertDialog.MaterialComponents.Title.Panel = 0x7f130132
+com.example.cuida:dimen/mtrl_badge_size = 0x7f07024a
+com.example.cuida:id/motion_base = 0x7f09014a
+com.example.cuida:drawable/$mtrl_checkbox_button_icon_checked_indeterminate__0 = 0x7f08000f
+com.example.cuida:id/month_navigation_fragment_toggle = 0x7f090146
+com.example.cuida:macro/m3_comp_primary_navigation_tab_active_hover_state_layer_color = 0x7f0d00cb
com.example.cuida:style/Widget.Design.TextInputEditText = 0x7f13033c
com.example.cuida:macro/m3_comp_filled_card_container_color = 0x7f0d0047
-com.example.cuida:id/material_timepicker_view = 0x7f090138
-com.example.cuida:id/material_timepicker_mode_button = 0x7f090136
-com.example.cuida:style/Base.Widget.AppCompat.ListMenuView = 0x7f1300e5
-com.example.cuida:id/material_timepicker_cancel_button = 0x7f090134
-com.example.cuida:id/profile_email = 0x7f0901a3
-com.example.cuida:id/material_minute_tv = 0x7f090132
-com.example.cuida:id/material_hour_text_input = 0x7f09012e
+com.example.cuida:id/material_timepicker_view = 0x7f09013d
+com.example.cuida:id/profile_email = 0x7f0901a8
+com.example.cuida:id/material_minute_tv = 0x7f090137
+com.example.cuida:style/Platform.ThemeOverlay.AppCompat.Dark = 0x7f13013d
+com.example.cuida:macro/m3_comp_snackbar_supporting_text_type = 0x7f0d0117
+com.example.cuida:style/Widget.MaterialComponents.BottomNavigationView.Colored = 0x7f1303f3
+com.example.cuida:id/autoCompleteToStart = 0x7f09005d
+com.example.cuida:id/material_hour_text_input = 0x7f090133
com.example.cuida:string/no_account = 0x7f1200ce
-com.example.cuida:id/material_clock_period_toggle = 0x7f09012d
-com.example.cuida:style/Widget.MaterialComponents.TimePicker.Display.TextInputLayout = 0x7f130458
-com.example.cuida:id/material_clock_period_am_button = 0x7f09012b
-com.example.cuida:style/Widget.MaterialComponents.Snackbar.FullWidth = 0x7f13043f
-com.example.cuida:macro/m3_comp_outlined_text_field_input_text_type = 0x7f0d00c4
-com.example.cuida:id/material_clock_level = 0x7f09012a
-com.example.cuida:id/material_clock_hand = 0x7f090129
-com.example.cuida:id/material_clock_face = 0x7f090128
-com.example.cuida:id/material_clock_display = 0x7f090126
+com.example.cuida:id/material_clock_period_toggle = 0x7f090132
+com.example.cuida:style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Secondary = 0x7f13029e
+com.example.cuida:dimen/abc_edit_text_inset_bottom_material = 0x7f07002c
+com.example.cuida:styleable/Tooltip = 0x7f1400a1
+com.example.cuida:id/material_clock_face = 0x7f09012d
+com.example.cuida:id/material_clock_display = 0x7f09012b
+com.example.cuida:style/ShapeAppearance.MaterialComponents.MediumComponent = 0x7f13017d
+com.example.cuida:id/match_constraint = 0x7f090129
com.example.cuida:styleable/MaterialCheckBox = 0x7f14005a
-com.example.cuida:id/match_constraint = 0x7f090124
+com.example.cuida:style/Theme.Material3.Dark.Dialog.Alert = 0x7f13022c
+com.example.cuida:string/mtrl_picker_text_input_year_abbr = 0x7f1200bb
+com.example.cuida:style/ThemeOverlay.MaterialComponents.DayNight.BottomSheetDialog = 0x7f1302cc
+com.example.cuida:id/dragUp = 0x7f0900c3
+com.example.cuida:style/Base.Theme.AppCompat.CompactMenu = 0x7f13004c
+com.example.cuida:id/masked = 0x7f090128
com.example.cuida:styleable/Slider = 0x7f14008c
-com.example.cuida:id/masked = 0x7f090123
+com.example.cuida:dimen/abc_action_button_min_height_material = 0x7f07000d
+com.example.cuida:style/Theme.AppCompat.DayNight = 0x7f13020d
+com.example.cuida:color/m3_sys_color_dark_primary = 0x7f06017c
+com.example.cuida:id/CTRL = 0x7f090003
+com.example.cuida:string/material_timepicker_text_input_mode_description = 0x7f12008c
+com.example.cuida:id/m3_side_sheet = 0x7f090126
com.example.cuida:styleable/CustomAttribute = 0x7f140031
-com.example.cuida:id/m3_side_sheet = 0x7f090121
-com.example.cuida:style/TextAppearance.Compat.Notification.Info = 0x7f1301c4
-com.example.cuida:macro/m3_comp_snackbar_container_color = 0x7f0d0114
-com.example.cuida:id/ltr = 0x7f090120
-com.example.cuida:styleable/SideSheetBehavior_Layout = 0x7f14008a
-com.example.cuida:id/list_item = 0x7f09011c
-com.example.cuida:id/linear = 0x7f09011a
-com.example.cuida:id/line3 = 0x7f090119
-com.example.cuida:string/name_hint = 0x7f1200cb
-com.example.cuida:id/line1 = 0x7f090118
-com.example.cuida:id/legacy = 0x7f090116
-com.example.cuida:id/left = 0x7f090114
+com.example.cuida:id/linear = 0x7f09011f
+com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f13003e
+com.example.cuida:color/m3_textfield_filled_background_color = 0x7f060212
+com.example.cuida:attr/layout_constraintLeft_toRightOf = 0x7f0402a5
+com.example.cuida:id/left = 0x7f090119
+com.example.cuida:dimen/compat_notification_large_icon_max_height = 0x7f07005d
+com.example.cuida:id/layout = 0x7f090118
com.example.cuida:integer/m3_sys_motion_duration_extra_long4 = 0x7f0a0014
-com.example.cuida:id/layout = 0x7f090113
+com.example.cuida:id/labeled = 0x7f090117
com.example.cuida:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f1301a2
com.example.cuida:string/bottomsheet_drag_handle_content_description = 0x7f120027
-com.example.cuida:id/labeled = 0x7f090112
-com.example.cuida:id/jumpToStart = 0x7f090111
+com.example.cuida:integer/m3_card_anim_delay_ms = 0x7f0a000e
+com.example.cuida:style/Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton = 0x7f130115
+com.example.cuida:dimen/m3_comp_fab_primary_large_icon_size = 0x7f070120
+com.example.cuida:id/jumpToEnd = 0x7f090115
com.example.cuida:xml/data_extraction_rules = 0x7f150001
-com.example.cuida:id/jumpToEnd = 0x7f090110
-com.example.cuida:id/italic = 0x7f09010e
-com.example.cuida:style/Widget.Material3.Toolbar.Surface = 0x7f1303e0
-com.example.cuida:id/inward = 0x7f09010d
-com.example.cuida:id/input_symptoms = 0x7f09010b
-com.example.cuida:id/immediateStop = 0x7f090107
-com.example.cuida:id/image = 0x7f090106
+com.example.cuida:style/TextAppearance.AppCompat.SearchResult.Title = 0x7f1301a8
+com.example.cuida:drawable/m3_avd_show_password = 0x7f0800b9
+com.example.cuida:attr/alertDialogTheme = 0x7f04002f
+com.example.cuida:id/ignoreRequest = 0x7f09010a
com.example.cuida:integer/mtrl_calendar_selection_text_lines = 0x7f0a0033
-com.example.cuida:id/ignoreRequest = 0x7f090105
-com.example.cuida:id/ignore = 0x7f090104
-com.example.cuida:id/icon_group = 0x7f090101
-com.example.cuida:id/icon = 0x7f090100
-com.example.cuida:id/horizontal_only = 0x7f0900ff
-com.example.cuida:id/homeAsUp = 0x7f0900fd
-com.example.cuida:id/home = 0x7f0900fc
-com.example.cuida:id/hideable = 0x7f0900fb
-com.example.cuida:id/groups = 0x7f0900f8
-com.example.cuida:style/Widget.Material3.Snackbar = 0x7f1303cc
-com.example.cuida:id/group_divider = 0x7f0900f6
-com.example.cuida:id/gone = 0x7f0900f3
-com.example.cuida:id/fullscreen_header = 0x7f0900f0
-com.example.cuida:id/frost = 0x7f0900ef
-com.example.cuida:id/forgot_password_link = 0x7f0900ed
+com.example.cuida:color/material_dynamic_color_light_on_error = 0x7f06022f
+com.example.cuida:id/icon_group = 0x7f090106
+com.example.cuida:id/home = 0x7f090101
+com.example.cuida:id/circle_center = 0x7f09008f
+com.example.cuida:id/groups = 0x7f0900fd
+com.example.cuida:styleable/View = 0x7f1400a5
+com.example.cuida:id/fullscreen_header = 0x7f0900f5
+com.example.cuida:styleable/ViewPager2 = 0x7f1400a7
+com.example.cuida:styleable/ExtendedFloatingActionButton = 0x7f140035
+com.example.cuida:id/recycler_time_slots = 0x7f0901b4
+com.example.cuida:styleable/Fragment = 0x7f14003d
+com.example.cuida:id/frost = 0x7f0900f4
com.example.cuida:style/Widget.Material3.FloatingActionButton.Small.Secondary = 0x7f13038d
-com.example.cuida:id/forever = 0x7f0900ec
-com.example.cuida:id/overshoot = 0x7f090191
-com.example.cuida:id/floating = 0x7f0900eb
-com.example.cuida:id/fixed = 0x7f0900e9
-com.example.cuida:id/right = 0x7f0901b5
-com.example.cuida:id/fitEnd = 0x7f0900e5
-com.example.cuida:id/fitCenter = 0x7f0900e4
-com.example.cuida:id/fingerprint_subtitle = 0x7f0900e3
-com.example.cuida:id/fingerprint_icon = 0x7f0900e2
-com.example.cuida:id/fingerprint_description = 0x7f0900e0
-com.example.cuida:id/filled = 0x7f0900df
-com.example.cuida:id/fill_vertical = 0x7f0900de
-com.example.cuida:id/fill = 0x7f0900dc
+com.example.cuida:id/forever = 0x7f0900f1
+com.example.cuida:id/floating = 0x7f0900f0
+com.example.cuida:id/overshoot = 0x7f090196
+com.example.cuida:dimen/notification_small_icon_background_padding = 0x7f070312
+com.example.cuida:id/cut = 0x7f0900a5
+com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen = 0x7f130190
+com.example.cuida:string/abc_activitychooserview_choose_application = 0x7f120005
+com.example.cuida:id/fixed = 0x7f0900ee
+com.example.cuida:id/action_bar_container = 0x7f090036
+com.example.cuida:style/Base.TextAppearance.AppCompat.Caption = 0x7f13001a
+com.example.cuida:macro/m3_comp_navigation_drawer_inactive_pressed_label_text_color = 0x7f0d0092
+com.example.cuida:dimen/m3_bottomappbar_fab_cradle_vertical_offset = 0x7f0700ca
+com.example.cuida:dimen/mtrl_progress_circular_inset = 0x7f0702d1
+com.example.cuida:id/fitEnd = 0x7f0900ea
+com.example.cuida:id/right = 0x7f0901ba
+com.example.cuida:dimen/m3_bottom_sheet_elevation = 0x7f0700c6
+com.example.cuida:color/m3_ref_palette_neutral22 = 0x7f06011a
+com.example.cuida:color/m3_ref_palette_tertiary10 = 0x7f060154
+com.example.cuida:id/fingerprint_subtitle = 0x7f0900e8
+com.example.cuida:style/Widget.MaterialComponents.Snackbar.FullWidth = 0x7f13043f
+com.example.cuida:id/material_clock_level = 0x7f09012f
+com.example.cuida:macro/m3_comp_outlined_text_field_input_text_type = 0x7f0d00c4
+com.example.cuida:id/fingerprint_icon = 0x7f0900e7
+com.example.cuida:style/ThemeOverlay.MaterialComponents.MaterialCalendar = 0x7f1302d9
+com.example.cuida:id/mtrl_picker_text_input_range_end = 0x7f09015e
+com.example.cuida:id/filled = 0x7f0900e4
+com.example.cuida:id/fill_vertical = 0x7f0900e3
com.example.cuida:macro/m3_comp_date_picker_modal_date_label_text_type = 0x7f0d0010
-com.example.cuida:id/fade = 0x7f0900db
-com.example.cuida:id/expanded_menu = 0x7f0900da
-com.example.cuida:id/expand_activities_button = 0x7f0900d9
-com.example.cuida:id/enterAlwaysCollapsed = 0x7f0900d7
-com.example.cuida:id/embed = 0x7f0900d3
-com.example.cuida:id/email_edit_text = 0x7f0900d2
+com.example.cuida:id/fade = 0x7f0900e0
+com.example.cuida:style/Widget.Material3.Search.Toolbar.Button.Navigation = 0x7f1303c0
+com.example.cuida:id/expanded_menu = 0x7f0900de
+com.example.cuida:id/embed = 0x7f0900d7
+com.example.cuida:style/Platform.MaterialComponents = 0x7f130138
+com.example.cuida:style/Widget.Material3.Tooltip = 0x7f1303e1
+com.example.cuida:dimen/m3_side_sheet_margin_detached = 0x7f0701e1
+com.example.cuida:styleable/NavGraphNavigator = 0x7f140072
+com.example.cuida:id/edit_utente = 0x7f0900d4
com.example.cuida:style/ShapeAppearance.Material3.Corner.ExtraSmall = 0x7f13016f
-com.example.cuida:id/edit_utente = 0x7f0900d0
-com.example.cuida:id/edit_text_id = 0x7f0900cf
-com.example.cuida:id/edit_query = 0x7f0900cd
-com.example.cuida:id/edit_profile_image = 0x7f0900cc
-com.example.cuida:id/edit_name = 0x7f0900cb
-com.example.cuida:styleable/CardView = 0x7f14001d
+com.example.cuida:id/transitionToEnd = 0x7f090231
+com.example.cuida:style/ShapeAppearance.M3.Comp.NavigationDrawer.ActiveIndicator.Shape = 0x7f13015c
+com.example.cuida:id/edit_text_id = 0x7f0900d3
+com.example.cuida:style/Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f130099
+com.example.cuida:style/ThemeOverlay.MaterialComponents.Dialog = 0x7f1302cd
+com.example.cuida:id/textEnd = 0x7f090210
+com.example.cuida:color/m3_sys_color_dynamic_dark_on_error = 0x7f060192
+com.example.cuida:style/Theme.AppCompat.Light.NoActionBar = 0x7f13021f
+com.example.cuida:string/mtrl_picker_a11y_prev_month = 0x7f12009d
+com.example.cuida:id/customPanel = 0x7f0900a4
+com.example.cuida:style/Widget.Material3.Chip.Input.Elevated = 0x7f13036c
+com.example.cuida:id/edit_query = 0x7f0900d1
com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.Year = 0x7f13042c
-com.example.cuida:id/edit_age = 0x7f0900c9
+com.example.cuida:id/edit_age = 0x7f0900ca
+com.example.cuida:styleable/CardView = 0x7f14001d
com.example.cuida:style/Widget.MaterialComponents.TextInputEditText.FilledBox.Dense = 0x7f130445
com.example.cuida:style/Theme.MaterialComponents.DayNight.Dialog.MinWidth.Bridge = 0x7f130254
-com.example.cuida:id/edge = 0x7f0900c8
-com.example.cuida:id/easeOut = 0x7f0900c6
+com.example.cuida:id/edge = 0x7f0900c9
+com.example.cuida:style/TextAppearance.M3.Sys.Typescale.BodySmall = 0x7f1301d5
+com.example.cuida:id/sharedValueSet = 0x7f0901d8
+com.example.cuida:id/easeOut = 0x7f0900c7
+com.example.cuida:id/easeInOut = 0x7f0900c6
com.example.cuida:macro/m3_comp_extended_fab_primary_label_text_type = 0x7f0d0030
-com.example.cuida:id/easeInOut = 0x7f0900c5
-com.example.cuida:id/dragUp = 0x7f0900c2
+com.example.cuida:id/dragLeft = 0x7f0900c0
com.example.cuida:macro/m3_comp_time_input_time_input_field_label_text_color = 0x7f0d014a
-com.example.cuida:id/dragLeft = 0x7f0900bf
+com.example.cuida:id/dragEnd = 0x7f0900bf
com.example.cuida:integer/show_password_duration = 0x7f0a0044
-com.example.cuida:id/dragEnd = 0x7f0900be
+com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.TextInputLayout.FilledBox = 0x7f130192
+com.example.cuida:id/disjoint = 0x7f0900bb
com.example.cuida:macro/m3_comp_primary_navigation_tab_with_icon_inactive_icon_color = 0x7f0d00d3
-com.example.cuida:id/disjoint = 0x7f0900ba
-com.example.cuida:id/disablePostScroll = 0x7f0900b8
-com.example.cuida:id/disableIntraAutoTransition = 0x7f0900b7
+com.example.cuida:dimen/m3_carousel_small_item_size_max = 0x7f0700f4
com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.DayOfWeekLabel = 0x7f13041d
+com.example.cuida:id/disableHome = 0x7f0900b7
com.example.cuida:macro/m3_comp_search_view_divider_color = 0x7f0d00f3
-com.example.cuida:id/disableHome = 0x7f0900b6
-com.example.cuida:id/direct = 0x7f0900b5
+com.example.cuida:dimen/design_navigation_icon_size = 0x7f070079
+com.example.cuida:id/direct = 0x7f0900b6
+com.example.cuida:id/accessibility_custom_action_28 = 0x7f090025
+com.example.cuida:id/dialog_button = 0x7f0900b4
com.example.cuida:styleable/Layout = 0x7f14004c
com.example.cuida:style/Widget.AppCompat.RatingBar.Small = 0x7f130322
com.example.cuida:macro/m3_comp_divider_color = 0x7f0d0029
-com.example.cuida:id/dialog_button = 0x7f0900b3
+com.example.cuida:id/design_navigation_view = 0x7f0900b3
com.example.cuida:string/fingerprint_error_user_canceled = 0x7f120057
-com.example.cuida:id/design_navigation_view = 0x7f0900b2
+com.example.cuida:id/design_menu_item_text = 0x7f0900b2
com.example.cuida:styleable/OnSwipe = 0x7f14007c
-com.example.cuida:id/design_menu_item_text = 0x7f0900b1
-com.example.cuida:id/design_menu_item_action_area_stub = 0x7f0900b0
-com.example.cuida:id/design_menu_item_action_area = 0x7f0900af
-com.example.cuida:id/design_bottom_sheet = 0x7f0900ae
-com.example.cuida:id/deltaRelative = 0x7f0900ac
-com.example.cuida:id/default_activity_button = 0x7f0900ab
-com.example.cuida:id/decelerateAndComplete = 0x7f0900a9
-com.example.cuida:id/decelerate = 0x7f0900a8
-com.example.cuida:id/datePicker = 0x7f0900a6
-com.example.cuida:id/dark = 0x7f0900a5
-com.example.cuida:id/cut = 0x7f0900a4
-com.example.cuida:style/Widget.Material3.Chip.Input.Elevated = 0x7f13036c
-com.example.cuida:string/mtrl_picker_a11y_prev_month = 0x7f12009d
-com.example.cuida:id/customPanel = 0x7f0900a3
-com.example.cuida:id/custom = 0x7f0900a2
-com.example.cuida:integer/m3_card_anim_duration_ms = 0x7f0a000f
-com.example.cuida:id/currentState = 0x7f0900a1
-com.example.cuida:id/counterclockwise = 0x7f09009f
+com.example.cuida:id/deltaRelative = 0x7f0900ad
+com.example.cuida:style/Widget.Material3.Chip.Assist = 0x7f130367
+com.example.cuida:id/default_activity_button = 0x7f0900ac
+com.example.cuida:id/decelerateAndComplete = 0x7f0900aa
+com.example.cuida:style/Widget.Material3.Button.IconButton = 0x7f130354
+com.example.cuida:id/decelerate = 0x7f0900a9
+com.example.cuida:id/dark = 0x7f0900a6
+com.example.cuida:style/Animation.Material3.SideSheetDialog = 0x7f130007
+com.example.cuida:id/counterclockwise = 0x7f0900a0
+com.example.cuida:string/bottomsheet_action_expand = 0x7f120024
+com.example.cuida:id/rounded = 0x7f0901be
+com.example.cuida:id/coordinator = 0x7f09009e
com.example.cuida:string/common_google_play_services_wear_update_text = 0x7f120041
-com.example.cuida:id/rounded = 0x7f0901b9
-com.example.cuida:id/coordinator = 0x7f09009d
-com.example.cuida:id/contentPanel = 0x7f09009a
+com.example.cuida:string/nav_app_bar_navigate_up_description = 0x7f1200cc
+com.example.cuida:style/Base.Widget.Material3.FloatingActionButton = 0x7f130108
+com.example.cuida:style/TextAppearance.MaterialComponents.Subtitle1 = 0x7f130204
+com.example.cuida:dimen/m3_extended_fab_start_padding = 0x7f0701b0
+com.example.cuida:id/top = 0x7f09022e
+com.example.cuida:id/contentPanel = 0x7f09009b
+com.example.cuida:id/disablePostScroll = 0x7f0900b9
+com.example.cuida:id/constraint = 0x7f090098
com.example.cuida:styleable/MotionHelper = 0x7f14006a
-com.example.cuida:id/constraint = 0x7f090097
-com.example.cuida:string/fingerprint_error_lockout = 0x7f120055
-com.example.cuida:id/confirm_button = 0x7f090096
-com.example.cuida:id/compress = 0x7f090095
-com.example.cuida:layout/material_timepicker_dialog = 0x7f0c0051
-com.example.cuida:id/collapseActionView = 0x7f090094
-com.example.cuida:id/closest = 0x7f090093
-com.example.cuida:id/clockwise = 0x7f090092
-com.example.cuida:id/clear_text = 0x7f09008f
-com.example.cuida:id/circle_center = 0x7f09008e
-com.example.cuida:style/ThemeOverlay.Material3.Button.TextButton = 0x7f13028e
+com.example.cuida:macro/m3_comp_date_picker_modal_container_color = 0x7f0d000e
+com.example.cuida:style/ThemeOverlay.Material3.Search = 0x7f1302b3
+com.example.cuida:id/compress = 0x7f090096
+com.example.cuida:layout/material_timepicker_dialog = 0x7f0c0052
+com.example.cuida:id/collapseActionView = 0x7f090095
+com.example.cuida:id/closest = 0x7f090094
+com.example.cuida:id/clockwise = 0x7f090093
+com.example.cuida:string/fingerprint_error_no_fingerprints = 0x7f120056
+com.example.cuida:layout/design_navigation_item_subheader = 0x7f0c002d
+com.example.cuida:id/tag_unhandled_key_listeners = 0x7f09020c
com.example.cuida:style/MaterialAlertDialog.MaterialComponents.Body.Text = 0x7f13012d
-com.example.cuida:id/chronometer = 0x7f09008d
-com.example.cuida:layout/mtrl_picker_header_dialog = 0x7f0c006a
-com.example.cuida:id/checked = 0x7f09008c
-com.example.cuida:id/chains = 0x7f090088
-com.example.cuida:id/center_vertical = 0x7f090085
+com.example.cuida:id/chronometer = 0x7f09008e
+com.example.cuida:style/ThemeOverlay.Material3.Button.TextButton = 0x7f13028e
+com.example.cuida:id/tag_accessibility_pane_title = 0x7f090204
+com.example.cuida:id/centerInside = 0x7f090084
+com.example.cuida:id/mtrl_child_content_container = 0x7f090155
com.example.cuida:style/Widget.Material3.MaterialCalendar.DayOfWeekLabel = 0x7f13039a
-com.example.cuida:id/mtrl_child_content_container = 0x7f090150
-com.example.cuida:id/centerInside = 0x7f090083
+com.example.cuida:id/mtrl_picker_text_input_date = 0x7f09015d
+com.example.cuida:id/never = 0x7f090175
+com.example.cuida:style/Widget.Material3.Slider = 0x7f1303ca
+com.example.cuida:id/accessibility_custom_action_27 = 0x7f090024
+com.example.cuida:id/datePicker = 0x7f0900a7
+com.example.cuida:color/m3_selection_control_ripple_color_selector = 0x7f060161
+com.example.cuida:id/position = 0x7f0901a4
+com.example.cuida:color/m3_sys_color_dark_on_background = 0x7f06016f
+com.example.cuida:color/material_personalized_color_surface_container = 0x7f0602a8
+com.example.cuida:attr/textureEffect = 0x7f040493
+com.example.cuida:color/material_blue_grey_800 = 0x7f060222
+com.example.cuida:color/m3_ref_palette_dynamic_neutral70 = 0x7f0600be
+com.example.cuida:id/centerCrop = 0x7f090083
com.example.cuida:style/Base.Theme.Material3.Light.DialogWhenLarge = 0x7f130063
-com.example.cuida:id/centerCrop = 0x7f090082
-com.example.cuida:string/fingerprint_dialog_touch_sensor = 0x7f120052
-com.example.cuida:id/center = 0x7f090081
-com.example.cuida:id/card_next_medication = 0x7f09007f
-com.example.cuida:id/button_save_password = 0x7f09007b
-com.example.cuida:style/Theme.Material3.Light = 0x7f13023c
+com.example.cuida:id/button_save_password = 0x7f09007c
+com.example.cuida:integer/mtrl_card_anim_duration_ms = 0x7f0a0036
com.example.cuida:style/Base.TextAppearance.AppCompat.Display3 = 0x7f13001d
-com.example.cuida:id/button_logout = 0x7f090079
+com.example.cuida:id/button_logout = 0x7f09007a
+com.example.cuida:style/Theme.Material3.Light = 0x7f13023c
+com.example.cuida:id/button_find_hospital = 0x7f090079
com.example.cuida:macro/m3_comp_secondary_navigation_tab_focus_state_layer_color = 0x7f0d00fe
com.example.cuida:id/button_edit_profile = 0x7f090078
+com.example.cuida:dimen/m3_comp_search_bar_hover_state_layer_opacity = 0x7f070172
+com.example.cuida:macro/m3_comp_text_button_pressed_state_layer_color = 0x7f0d0147
+com.example.cuida:string/m3_ref_typeface_brand_medium = 0x7f120068
+com.example.cuida:dimen/m3_btn_disabled_elevation = 0x7f0700d0
com.example.cuida:id/button_change_password = 0x7f090077
-com.example.cuida:id/button_cancel = 0x7f090075
com.example.cuida:id/button_call_sns = 0x7f090074
-com.example.cuida:style/Widget.AppCompat.Light.ActionButton = 0x7f130309
-com.example.cuida:id/button_book_appointment = 0x7f090073
com.example.cuida:id/button_ai_triage = 0x7f090072
com.example.cuida:id/buttonPanel = 0x7f090071
-com.example.cuida:style/Widget.AppCompat.PopupMenu.Overflow = 0x7f13031c
com.example.cuida:id/btn_time_slot = 0x7f090070
-com.example.cuida:id/browser_actions_menu_view = 0x7f09006e
-com.example.cuida:id/browser_actions_menu_items = 0x7f09006d
-com.example.cuida:id/browser_actions_menu_item_icon = 0x7f09006b
+com.example.cuida:style/Widget.AppCompat.PopupMenu.Overflow = 0x7f13031c
+com.example.cuida:color/m3_sys_color_dynamic_light_outline_variant = 0x7f0601bf
+com.example.cuida:style/ShapeAppearanceOverlay.Material3.NavigationView.Item = 0x7f130187
com.example.cuida:id/bounceBoth = 0x7f090067
-com.example.cuida:id/bounce = 0x7f090066
-com.example.cuida:id/bottom = 0x7f090065
+com.example.cuida:style/TextAppearance.AppCompat.Medium.Inverse = 0x7f1301a5
+com.example.cuida:string/mtrl_switch_track_path = 0x7f1200c8
com.example.cuida:id/beginning = 0x7f090062
-com.example.cuida:id/beginOnFirstDraw = 0x7f090061
-com.example.cuida:id/baseline = 0x7f090060
-com.example.cuida:id/autoCompleteToStart = 0x7f09005d
+com.example.cuida:macro/m3_comp_time_picker_time_selector_container_shape = 0x7f0d015f
+com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.Button = 0x7f130039
+com.example.cuida:style/Widget.AppCompat.ListView.Menu = 0x7f13031a
com.example.cuida:id/autoCompleteToEnd = 0x7f09005c
-com.example.cuida:id/auto = 0x7f09005a
+com.example.cuida:style/TextAppearance.M3.Sys.Typescale.DisplayLarge = 0x7f1301d6
+com.example.cuida:attr/tabIndicatorFullWidth = 0x7f04043c
+com.example.cuida:drawable/mtrl_switch_thumb = 0x7f0800e5
+com.example.cuida:dimen/m3_comp_date_picker_modal_date_today_container_outline_width = 0x7f070108
com.example.cuida:id/asConfigured = 0x7f090058
+com.example.cuida:id/anticipate = 0x7f090056
com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderSelection.Fullscreen = 0x7f1303a2
com.example.cuida:style/ThemeOverlay.Material3.FloatingActionButton.Tertiary = 0x7f1302a4
-com.example.cuida:id/anticipate = 0x7f090056
-com.example.cuida:id/antiClockwise = 0x7f090055
-com.example.cuida:id/animateToStart = 0x7f090054
-com.example.cuida:id/animateToEnd = 0x7f090053
-com.example.cuida:id/androidx_window_activity_scope = 0x7f090052
-com.example.cuida:id/androidx_credential_pendingCredentialRequest = 0x7f090051
com.example.cuida:id/aligned = 0x7f09004d
+com.example.cuida:id/animateToStart = 0x7f090054
+com.example.cuida:styleable/ScrimInsetsFrameLayout = 0x7f140084
+com.example.cuida:dimen/m3_comp_assist_chip_elevated_container_elevation = 0x7f0700fe
+com.example.cuida:id/dropdown_menu = 0x7f0900c4
+com.example.cuida:color/primary_dark_color = 0x7f060300
+com.example.cuida:anim/abc_slide_in_top = 0x7f010007
+com.example.cuida:id/androidx_credential_pendingCredentialRequest = 0x7f090051
+com.example.cuida:dimen/abc_dialog_min_width_major = 0x7f070022
com.example.cuida:id/adjust_height = 0x7f090049
-com.example.cuida:id/add = 0x7f090048
+com.example.cuida:color/m3_sys_color_dynamic_on_secondary_fixed = 0x7f0601d1
+com.example.cuida:attr/tabIndicatorColor = 0x7f04043b
com.example.cuida:id/activity_chooser_view_content = 0x7f090047
-com.example.cuida:id/action_mode_bar_stub = 0x7f090043
-com.example.cuida:id/action_mode_bar = 0x7f090042
-com.example.cuida:id/view_tree_lifecycle_owner = 0x7f09023c
+com.example.cuida:id/view_tree_lifecycle_owner = 0x7f090242
com.example.cuida:id/action_image = 0x7f09003f
+com.example.cuida:dimen/m3_card_elevation = 0x7f0700ed
com.example.cuida:id/action_home_to_schedule_appointment = 0x7f09003e
-com.example.cuida:id/action_divider = 0x7f09003d
com.example.cuida:id/action_context_bar = 0x7f09003c
-com.example.cuida:id/noState = 0x7f090177
com.example.cuida:id/action_bar_spinner = 0x7f090038
-com.example.cuida:id/action_bar_root = 0x7f090037
-com.example.cuida:id/action_bar_container = 0x7f090036
-com.example.cuida:string/mtrl_exceed_max_badge_number_suffix = 0x7f12009b
-com.example.cuida:id/action_bar_activity_content = 0x7f090035
-com.example.cuida:id/nav_host_fragment_container = 0x7f090161
+com.example.cuida:id/noState = 0x7f09017c
com.example.cuida:id/action_appointments_to_schedule = 0x7f090033
-com.example.cuida:style/Base.V14.Theme.MaterialComponents.Light.Dialog = 0x7f130098
+com.example.cuida:id/nav_host_fragment_container = 0x7f090166
com.example.cuida:id/actionDown = 0x7f090030
-com.example.cuida:style/TextAppearance.Design.Snackbar.Message = 0x7f1301d0
-com.example.cuida:id/accessibility_custom_action_9 = 0x7f09002f
+com.example.cuida:style/Base.V14.Theme.MaterialComponents.Light.Dialog = 0x7f130098
+com.example.cuida:color/m3_sys_color_dark_on_secondary = 0x7f060174
com.example.cuida:id/accessibility_custom_action_8 = 0x7f09002e
com.example.cuida:id/btn_confirm_appointment = 0x7f09006f
com.example.cuida:id/accessibility_custom_action_7 = 0x7f09002d
-com.example.cuida:style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu = 0x7f1303dd
-com.example.cuida:id/accessibility_custom_action_6 = 0x7f09002c
+com.example.cuida:id/mtrl_calendar_selection_frame = 0x7f090151
+com.example.cuida:id/wide = 0x7f090249
com.example.cuida:id/accessibility_custom_action_31 = 0x7f090029
com.example.cuida:id/accessibility_custom_action_30 = 0x7f090028
-com.example.cuida:style/Widget.MaterialComponents.TextView = 0x7f130450
-com.example.cuida:id/accessibility_custom_action_3 = 0x7f090027
-com.example.cuida:id/accessibility_custom_action_28 = 0x7f090025
-com.example.cuida:id/accessibility_custom_action_27 = 0x7f090024
+com.example.cuida:style/Widget.Material3.MaterialTimePicker.Display.Divider = 0x7f1303b2
com.example.cuida:id/accessibility_custom_action_26 = 0x7f090023
com.example.cuida:id/accessibility_custom_action_22 = 0x7f09001f
-com.example.cuida:id/accessibility_custom_action_20 = 0x7f09001d
-com.example.cuida:id/accessibility_custom_action_19 = 0x7f09001b
com.example.cuida:id/accessibility_custom_action_18 = 0x7f09001a
-com.example.cuida:id/parallax = 0x7f090193
-com.example.cuida:id/outward = 0x7f090190
+com.example.cuida:style/Widget.Material3.TextInputEditText.OutlinedBox.Dense = 0x7f1303d5
+com.example.cuida:color/secondary_text_disabled_material_dark = 0x7f060313
+com.example.cuida:id/outward = 0x7f090195
com.example.cuida:id/accessibility_custom_action_16 = 0x7f090018
+com.example.cuida:id/parallax = 0x7f090198
+com.example.cuida:animator/fragment_open_enter = 0x7f020007
+com.example.cuida:dimen/mtrl_fab_translation_z_pressed = 0x7f0702b6
com.example.cuida:id/accessibility_custom_action_14 = 0x7f090016
com.example.cuida:id/accessibility_custom_action_12 = 0x7f090014
com.example.cuida:id/accessibility_custom_action_11 = 0x7f090013
-com.example.cuida:id/accessibility_custom_action_10 = 0x7f090012
com.example.cuida:macro/m3_comp_switch_selected_hover_track_color = 0x7f0d0129
com.example.cuida:id/TOP_END = 0x7f09000c
+com.example.cuida:attr/snackbarStyle = 0x7f0403f7
+com.example.cuida:dimen/material_textinput_min_width = 0x7f070240
com.example.cuida:id/SHOW_PATH = 0x7f090009
com.example.cuida:id/SHOW_ALL = 0x7f090008
com.example.cuida:style/Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu = 0x7f1303d9
com.example.cuida:id/SHIFT = 0x7f090007
-com.example.cuida:id/NO_DEBUG = 0x7f090006
com.example.cuida:id/META = 0x7f090005
-com.example.cuida:id/BOTTOM_START = 0x7f090002
-com.example.cuida:id/BOTTOM_END = 0x7f090001
com.example.cuida:style/Widget.Material3.ExtendedFloatingActionButton.Icon.Primary = 0x7f13037e
com.example.cuida:drawable/tooltip_frame_light = 0x7f080102
-com.example.cuida:id/dependency_ordering = 0x7f0900ad
+com.example.cuida:style/Theme.Material3.Light.Dialog.MinWidth = 0x7f130240
+com.example.cuida:color/m3_sys_color_dark_error = 0x7f06016a
com.example.cuida:drawable/tooltip_frame_dark = 0x7f080101
+com.example.cuida:id/dependency_ordering = 0x7f0900ae
com.example.cuida:drawable/test_level_drawable = 0x7f080100
com.example.cuida:drawable/notify_panel_notification_icon_bg = 0x7f0800ff
com.example.cuida:drawable/notification_tile_bg = 0x7f0800fe
-com.example.cuida:drawable/notification_oversize_large_icon_bg = 0x7f0800fb
com.example.cuida:drawable/notification_bg_normal = 0x7f0800f8
-com.example.cuida:style/Widget.Material3.ExtendedFloatingActionButton.Surface = 0x7f130384
com.example.cuida:drawable/notification_action_background = 0x7f0800f3
+com.example.cuida:style/Widget.Material3.ExtendedFloatingActionButton.Surface = 0x7f130384
com.example.cuida:drawable/navigation_empty_icon = 0x7f0800f2
+com.example.cuida:dimen/notification_large_icon_width = 0x7f07030d
com.example.cuida:drawable/mtrl_tabs_default_indicator = 0x7f0800f1
-com.example.cuida:style/Widget.Material3.MaterialCalendar.Item = 0x7f1303a5
com.example.cuida:drawable/mtrl_switch_track = 0x7f0800ef
-com.example.cuida:drawable/mtrl_switch_thumb_unchecked_pressed = 0x7f0800ee
+com.example.cuida:style/Widget.Material3.MaterialCalendar.Item = 0x7f1303a5
com.example.cuida:drawable/mtrl_switch_thumb_unchecked = 0x7f0800ec
-com.example.cuida:drawable/mtrl_switch_thumb_pressed_unchecked = 0x7f0800eb
+com.example.cuida:dimen/m3_comp_navigation_rail_active_indicator_height = 0x7f07014a
+com.example.cuida:style/Theme.MaterialComponents.DayNight.Dialog.FixedSize.Bridge = 0x7f130252
com.example.cuida:drawable/mtrl_switch_thumb_checked_unchecked = 0x7f0800e8
com.example.cuida:drawable/mtrl_switch_thumb_unchecked_checked = 0x7f0800ed
com.example.cuida:drawable/mtrl_switch_thumb_checked_pressed = 0x7f0800e7
com.example.cuida:drawable/mtrl_switch_thumb_checked = 0x7f0800e6
-com.example.cuida:style/Base.TextAppearance.AppCompat.Button = 0x7f130019
-com.example.cuida:drawable/mtrl_popupmenu_background_overlay = 0x7f0800e4
-com.example.cuida:id/percent = 0x7f09019d
com.example.cuida:drawable/mtrl_popupmenu_background = 0x7f0800e3
-com.example.cuida:style/ShapeAppearance.M3.Comp.Switch.Handle.Shape = 0x7f130163
-com.example.cuida:drawable/mtrl_navigation_bar_item_background = 0x7f0800e2
-com.example.cuida:drawable/mtrl_ic_indeterminate = 0x7f0800e1
-com.example.cuida:drawable/mtrl_ic_checkbox_checked = 0x7f0800de
+com.example.cuida:id/percent = 0x7f0901a2
com.example.cuida:string/mtrl_picker_toggle_to_year_selection = 0x7f1200c0
com.example.cuida:attr/tabMaxWidth = 0x7f040440
com.example.cuida:attr/motionEffect_alpha = 0x7f04034e
com.example.cuida:drawable/mtrl_dialog_background = 0x7f0800d8
-com.example.cuida:style/Theme.AppCompat.DayNight.DialogWhenLarge = 0x7f130212
com.example.cuida:drawable/mtrl_checkbox_button_icon_indeterminate_checked = 0x7f0800d3
+com.example.cuida:style/Theme.AppCompat.DayNight.DialogWhenLarge = 0x7f130212
com.example.cuida:color/switch_thumb_material_light = 0x7f060319
com.example.cuida:drawable/mtrl_checkbox_button_checked_unchecked = 0x7f0800cf
com.example.cuida:drawable/mtrl_checkbox_button = 0x7f0800ce
com.example.cuida:style/ThemeOverlay.Material3.FloatingActionButton.Surface = 0x7f1302a3
com.example.cuida:drawable/mtrl_bottomsheet_drag_handle = 0x7f0800cd
-com.example.cuida:string/abc_shareactionprovider_share_with = 0x7f120018
-com.example.cuida:string/abc_menu_space_shortcut_label = 0x7f12000f
-com.example.cuida:integer/m3_sys_shape_corner_extra_small_corner_family = 0x7f0a0023
+com.example.cuida:dimen/mtrl_textinput_box_corner_radius_small = 0x7f0702f9
com.example.cuida:drawable/material_ic_menu_arrow_up_black_24dp = 0x7f0800cc
+com.example.cuida:integer/m3_sys_shape_corner_extra_small_corner_family = 0x7f0a0023
+com.example.cuida:string/abc_menu_space_shortcut_label = 0x7f12000f
+com.example.cuida:string/abc_shareactionprovider_share_with = 0x7f120018
com.example.cuida:dimen/m3_comp_text_button_hover_state_layer_opacity = 0x7f07019a
com.example.cuida:drawable/material_ic_menu_arrow_down_black_24dp = 0x7f0800cb
com.example.cuida:drawable/material_ic_edit_black_24dp = 0x7f0800c6
-com.example.cuida:dimen/m3_comp_suggestion_chip_flat_outline_width = 0x7f07018a
com.example.cuida:dimen/mtrl_high_ripple_default_alpha = 0x7f0702b7
com.example.cuida:drawable/m3_tabs_transparent_background = 0x7f0800c2
+com.example.cuida:dimen/m3_comp_suggestion_chip_flat_outline_width = 0x7f07018a
com.example.cuida:drawable/m3_tabs_rounded_line_indicator = 0x7f0800c1
-com.example.cuida:drawable/$avd_hide_password__0 = 0x7f080000
com.example.cuida:attr/maxVelocity = 0x7f04031e
com.example.cuida:dimen/design_bottom_sheet_elevation = 0x7f07006d
com.example.cuida:drawable/m3_radiobutton_ripple = 0x7f0800bd
-com.example.cuida:dimen/design_bottom_sheet_peek_height_min = 0x7f07006f
+com.example.cuida:drawable/$avd_hide_password__0 = 0x7f080000
+com.example.cuida:color/material_dynamic_tertiary100 = 0x7f060267
+com.example.cuida:attr/minTouchTargetSize = 0x7f040329
com.example.cuida:drawable/m3_bottom_sheet_drag_handle = 0x7f0800ba
-com.example.cuida:style/TextAppearance.AppCompat.SearchResult.Title = 0x7f1301a8
-com.example.cuida:attr/alertDialogTheme = 0x7f04002f
-com.example.cuida:drawable/m3_avd_show_password = 0x7f0800b9
-com.example.cuida:style/Widget.Material3.Chip.Assist.Elevated = 0x7f130368
+com.example.cuida:dimen/design_bottom_sheet_peek_height_min = 0x7f07006f
com.example.cuida:style/Widget.Material3.Button.IconButton.Filled.Tonal = 0x7f130356
+com.example.cuida:style/Widget.Material3.Chip.Assist.Elevated = 0x7f130368
com.example.cuida:drawable/ic_password = 0x7f0800b5
-com.example.cuida:id/dragRight = 0x7f0900c0
+com.example.cuida:dimen/m3_sys_motion_easing_standard_accelerate_control_y2 = 0x7f07020e
+com.example.cuida:attr/closeItemLayout = 0x7f0400ee
com.example.cuida:drawable/ic_other_sign_in = 0x7f0800b3
-com.example.cuida:style/TextAppearance.M3.Sys.Typescale.BodyMedium = 0x7f1301d4
+com.example.cuida:id/dragRight = 0x7f0900c1
+com.example.cuida:color/material_dynamic_secondary0 = 0x7f060258
com.example.cuida:drawable/ic_mtrl_checked_circle = 0x7f0800af
+com.example.cuida:style/TextAppearance.M3.Sys.Typescale.BodyMedium = 0x7f1301d4
com.example.cuida:drawable/ic_m3_chip_checked_circle = 0x7f0800ad
com.example.cuida:drawable/ic_m3_chip_check = 0x7f0800ac
com.example.cuida:drawable/ic_logo_scaled = 0x7f0800ab
-com.example.cuida:drawable/ic_launcher_round = 0x7f0800a9
com.example.cuida:style/Widget.AppCompat.Button.Colored = 0x7f1302f5
com.example.cuida:drawable/ic_launcher_final = 0x7f0800a8
-com.example.cuida:drawable/googleg_standard_color_18 = 0x7f08009c
com.example.cuida:attr/endIconCheckable = 0x7f0401af
-com.example.cuida:color/m3_sys_color_dynamic_light_surface_dim = 0x7f0601cb
com.example.cuida:drawable/googleg_disabled_color_18 = 0x7f08009b
-com.example.cuida:animator/m3_elevated_chip_state_list_anim = 0x7f02000f
+com.example.cuida:color/m3_sys_color_dynamic_light_surface_dim = 0x7f0601cb
com.example.cuida:drawable/design_ic_visibility_off = 0x7f080096
-com.example.cuida:style/Base.ThemeOverlay.AppCompat.Dialog.Alert = 0x7f13007d
+com.example.cuida:animator/m3_elevated_chip_state_list_anim = 0x7f02000f
com.example.cuida:macro/m3_comp_navigation_bar_active_label_text_color = 0x7f0d006a
com.example.cuida:drawable/design_ic_visibility = 0x7f080095
-com.example.cuida:attr/materialCalendarHeaderLayout = 0x7f0402f6
-com.example.cuida:color/notification_icon_bg_color = 0x7f0602fe
+com.example.cuida:style/Base.ThemeOverlay.AppCompat.Dialog.Alert = 0x7f13007d
+com.example.cuida:drawable/mtrl_ic_checkbox_unchecked = 0x7f0800df
+com.example.cuida:attr/layout_constraintHorizontal_bias = 0x7f0402a0
+com.example.cuida:dimen/mtrl_calendar_content_padding = 0x7f070272
+com.example.cuida:color/material_dynamic_neutral_variant50 = 0x7f060244
com.example.cuida:drawable/design_fab_background = 0x7f080094
-com.example.cuida:color/material_personalized_color_error_container = 0x7f06028e
-com.example.cuida:drawable/mtrl_ic_arrow_drop_up = 0x7f0800db
+com.example.cuida:color/notification_icon_bg_color = 0x7f0602fe
+com.example.cuida:attr/materialCalendarHeaderLayout = 0x7f0402f6
+com.example.cuida:attr/drawableStartCompat = 0x7f04019a
+com.example.cuida:dimen/mtrl_calendar_year_height = 0x7f070294
com.example.cuida:drawable/common_google_signin_btn_text_light_normal_background = 0x7f080093
-com.example.cuida:macro/m3_comp_time_input_time_input_field_focus_outline_color = 0x7f0d0149
+com.example.cuida:drawable/mtrl_ic_arrow_drop_up = 0x7f0800db
+com.example.cuida:color/material_personalized_color_error_container = 0x7f06028e
com.example.cuida:drawable/common_google_signin_btn_text_light_focused = 0x7f080091
+com.example.cuida:macro/m3_comp_time_input_time_input_field_focus_outline_color = 0x7f0d0149
com.example.cuida:attr/borderlessButtonStyle = 0x7f04007c
com.example.cuida:drawable/common_google_signin_btn_text_dark_normal = 0x7f08008d
-com.example.cuida:styleable/include = 0x7f1400aa
com.example.cuida:attr/minHideDelay = 0x7f040327
com.example.cuida:drawable/common_google_signin_btn_text_dark_focused = 0x7f08008c
-com.example.cuida:drawable/common_google_signin_btn_text_dark = 0x7f08008b
-com.example.cuida:attr/layout_goneMarginBottom = 0x7f0402bb
+com.example.cuida:styleable/include = 0x7f1400aa
com.example.cuida:drawable/common_google_signin_btn_icon_light_normal = 0x7f080089
+com.example.cuida:attr/layout_goneMarginBottom = 0x7f0402bb
com.example.cuida:dimen/mtrl_fab_elevation = 0x7f0702b3
com.example.cuida:drawable/btn_radio_on_mtrl = 0x7f08007f
com.example.cuida:attr/statusBarBackground = 0x7f04041b
com.example.cuida:drawable/btn_radio_off_to_on_mtrl_animation = 0x7f08007e
-com.example.cuida:macro/m3_comp_time_picker_time_selector_unselected_container_color = 0x7f0d0168
-com.example.cuida:attr/state_with_icon = 0x7f04041a
+com.example.cuida:style/Widget.Material3.Button.TonalButton.Icon = 0x7f130361
+com.example.cuida:dimen/m3_comp_radio_button_selected_pressed_state_layer_opacity = 0x7f07016b
com.example.cuida:drawable/btn_checkbox_unchecked_mtrl = 0x7f08007b
-com.example.cuida:id/checkbox_remember_me = 0x7f09008a
-com.example.cuida:dimen/m3_alert_dialog_action_bottom_padding = 0x7f0700a0
+com.example.cuida:attr/state_with_icon = 0x7f04041a
+com.example.cuida:macro/m3_comp_time_picker_time_selector_unselected_container_color = 0x7f0d0168
+com.example.cuida:color/m3_ref_palette_neutral24 = 0x7f06011b
+com.example.cuida:style/Base.Theme.Material3.Dark.BottomSheetDialog = 0x7f13005a
com.example.cuida:drawable/btn_checkbox_checked_to_unchecked_mtrl_animation = 0x7f08007a
+com.example.cuida:dimen/m3_alert_dialog_action_bottom_padding = 0x7f0700a0
+com.example.cuida:id/checkbox_remember_me = 0x7f09008b
com.example.cuida:drawable/avd_hide_password = 0x7f080077
com.example.cuida:dimen/mtrl_calendar_title_baseline_to_top_fullscreen = 0x7f070292
com.example.cuida:drawable/abc_textfield_search_material = 0x7f080075
com.example.cuida:drawable/abc_textfield_search_activated_mtrl_alpha = 0x7f080073
-com.example.cuida:dimen/clock_face_margin_start = 0x7f070057
+com.example.cuida:dimen/mtrl_card_checked_icon_size = 0x7f070299
+com.example.cuida:color/mtrl_error = 0x7f0602d9
com.example.cuida:drawable/abc_textfield_default_mtrl_alpha = 0x7f080072
-com.example.cuida:color/m3_sys_color_dark_on_surface_variant = 0x7f060177
+com.example.cuida:dimen/clock_face_margin_start = 0x7f070057
+com.example.cuida:drawable/mtrl_switch_thumb_pressed = 0x7f0800e9
+com.example.cuida:color/mtrl_btn_stroke_color_selector = 0x7f0602c8
com.example.cuida:drawable/abc_textfield_activated_mtrl_alpha = 0x7f080071
+com.example.cuida:color/m3_sys_color_dark_on_surface_variant = 0x7f060177
com.example.cuida:drawable/abc_text_select_handle_left_mtrl = 0x7f08006e
-com.example.cuida:drawable/abc_tab_indicator_mtrl_alpha = 0x7f08006c
com.example.cuida:drawable/abc_switch_track_mtrl_alpha = 0x7f08006a
com.example.cuida:drawable/abc_switch_thumb_material = 0x7f080069
-com.example.cuida:style/Widget.MaterialComponents.NavigationRailView.PrimarySurface = 0x7f130435
com.example.cuida:drawable/abc_star_half_black_48dp = 0x7f080068
-com.example.cuida:id/open_search_view_scrim = 0x7f09018a
+com.example.cuida:style/Widget.MaterialComponents.NavigationRailView.PrimarySurface = 0x7f130435
+com.example.cuida:id/open_search_view_scrim = 0x7f09018f
com.example.cuida:drawable/abc_seekbar_track_material = 0x7f080064
com.example.cuida:drawable/abc_seekbar_tick_mark_material = 0x7f080063
com.example.cuida:color/material_dynamic_primary0 = 0x7f06024b
com.example.cuida:drawable/abc_scrubber_primary_mtrl_alpha = 0x7f080060
-com.example.cuida:id/leftToRight = 0x7f090115
-com.example.cuida:drawable/avd_show_password = 0x7f080078
-com.example.cuida:drawable/abc_scrubber_control_to_pressed_mtrl_005 = 0x7f08005f
-com.example.cuida:id/continuousVelocity = 0x7f09009c
+com.example.cuida:id/continuousVelocity = 0x7f09009d
com.example.cuida:drawable/abc_ratingbar_small_material = 0x7f08005c
com.example.cuida:attr/windowActionBar = 0x7f0404f8
com.example.cuida:drawable/abc_ratingbar_material = 0x7f08005b
+com.example.cuida:dimen/m3_comp_top_app_bar_small_on_scroll_container_elevation = 0x7f0701a9
+com.example.cuida:drawable/abc_list_selector_disabled_holo_dark = 0x7f080054
com.example.cuida:style/Widget.MaterialComponents.BottomNavigationView.PrimarySurface = 0x7f1303f4
com.example.cuida:attr/boxStrokeColor = 0x7f04008a
-com.example.cuida:drawable/abc_list_selector_disabled_holo_dark = 0x7f080054
com.example.cuida:drawable/abc_list_selector_background_transition_holo_dark = 0x7f080052
com.example.cuida:drawable/abc_list_pressed_holo_light = 0x7f080051
com.example.cuida:macro/m3_comp_search_bar_supporting_text_type = 0x7f0d00f0
com.example.cuida:drawable/abc_list_divider_mtrl_alpha = 0x7f08004d
com.example.cuida:attr/marginHorizontal = 0x7f0402e3
com.example.cuida:drawable/abc_ic_search_api_material = 0x7f080048
-com.example.cuida:drawable/abc_ic_menu_selectall_mtrl_alpha = 0x7f080046
com.example.cuida:drawable/abc_ic_menu_paste_mtrl_am_alpha = 0x7f080045
-com.example.cuida:drawable/abc_ic_menu_overflow_material = 0x7f080044
-com.example.cuida:attr/listPreferredItemPaddingRight = 0x7f0402dd
com.example.cuida:dimen/m3_comp_badge_large_size = 0x7f070102
+com.example.cuida:attr/listPreferredItemPaddingRight = 0x7f0402dd
com.example.cuida:drawable/abc_ic_menu_copy_mtrl_am_alpha = 0x7f080042
-com.example.cuida:drawable/abc_ic_clear_material = 0x7f08003f
-com.example.cuida:attr/clockIcon = 0x7f0400e5
com.example.cuida:color/m3_ref_palette_neutral60 = 0x7f060121
+com.example.cuida:attr/clockIcon = 0x7f0400e5
com.example.cuida:drawable/abc_ic_ab_back_material = 0x7f08003d
com.example.cuida:drawable/abc_cab_background_top_mtrl_alpha = 0x7f080039
-com.example.cuida:style/ThemeOverlay.Material3.Dialog.Alert.Framework = 0x7f130299
-com.example.cuida:attr/badgeWithTextRadius = 0x7f040064
com.example.cuida:drawable/abc_cab_background_top_material = 0x7f080038
+com.example.cuida:attr/badgeWithTextRadius = 0x7f040064
+com.example.cuida:style/ThemeOverlay.Material3.Dialog.Alert.Framework = 0x7f130299
com.example.cuida:drawable/abc_btn_switch_to_on_mtrl_00012 = 0x7f080036
-com.example.cuida:drawable/abc_btn_switch_to_on_mtrl_00001 = 0x7f080035
com.example.cuida:attr/fontProviderSystemFontFamily = 0x7f040215
com.example.cuida:drawable/abc_btn_radio_to_on_mtrl_015 = 0x7f080034
-com.example.cuida:drawable/$m3_avd_hide_password__0 = 0x7f080006
com.example.cuida:drawable/abc_btn_radio_material_anim = 0x7f080032
+com.example.cuida:drawable/$m3_avd_hide_password__0 = 0x7f080006
com.example.cuida:drawable/abc_btn_check_material = 0x7f08002b
-com.example.cuida:dimen/m3_snackbar_margin = 0x7f0701ec
com.example.cuida:drawable/$mtrl_switch_thumb_unchecked_pressed__0 = 0x7f080027
+com.example.cuida:dimen/m3_snackbar_margin = 0x7f0701ec
com.example.cuida:attr/materialThemeOverlay = 0x7f040312
com.example.cuida:drawable/$mtrl_switch_thumb_unchecked_checked__1 = 0x7f080026
-com.example.cuida:dimen/abc_action_bar_icon_vertical_padding_material = 0x7f070006
com.example.cuida:drawable/$mtrl_switch_thumb_pressed_checked__0 = 0x7f080023
-com.example.cuida:drawable/common_google_signin_btn_text_disabled = 0x7f08008f
-com.example.cuida:drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__2 = 0x7f08001c
-com.example.cuida:drawable/abc_control_background_material = 0x7f08003a
-com.example.cuida:drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__1 = 0x7f08001b
-com.example.cuida:dimen/mtrl_progress_circular_track_thickness_small = 0x7f0702dc
-com.example.cuida:drawable/$mtrl_checkbox_button_icon_unchecked_indeterminate__0 = 0x7f08001a
+com.example.cuida:dimen/abc_action_bar_icon_vertical_padding_material = 0x7f070006
com.example.cuida:drawable/$mtrl_checkbox_button_icon_unchecked_checked__0 = 0x7f080017
-com.example.cuida:drawable/$mtrl_checkbox_button_icon_checked_indeterminate__0 = 0x7f08000f
-com.example.cuida:attr/checkMarkCompat = 0x7f0400b5
-com.example.cuida:color/call_notification_decline_color = 0x7f060031
-com.example.cuida:drawable/$mtrl_checkbox_button_checked_unchecked__0 = 0x7f08000c
com.example.cuida:drawable/$m3_avd_hide_password__2 = 0x7f080008
-com.example.cuida:attr/colorSurfaceContainerHighest = 0x7f04012d
com.example.cuida:drawable/$avd_show_password__2 = 0x7f080005
+com.example.cuida:attr/colorSurfaceContainerHighest = 0x7f04012d
com.example.cuida:color/m3_text_button_background_color_selector = 0x7f06020f
com.example.cuida:drawable/$avd_show_password__1 = 0x7f080004
-com.example.cuida:macro/m3_comp_time_picker_time_selector_selected_pressed_state_layer_color = 0x7f0d0165
+com.example.cuida:style/Animation.Material3.BottomSheetDialog = 0x7f130006
+com.example.cuida:layout/fingerprint_dialog_layout = 0x7f0c0035
+com.example.cuida:dimen/m3_comp_fab_primary_pressed_state_layer_opacity = 0x7f070122
com.example.cuida:color/material_dynamic_primary99 = 0x7f060257
com.example.cuida:drawable/abc_ic_menu_cut_mtrl_alpha = 0x7f080043
+com.example.cuida:macro/m3_comp_time_picker_time_selector_selected_pressed_state_layer_color = 0x7f0d0165
com.example.cuida:drawable/$avd_hide_password__1 = 0x7f080001
com.example.cuida:dimen/m3_sys_motion_easing_standard_accelerate_control_x1 = 0x7f07020b
com.example.cuida:dimen/tooltip_precise_anchor_extra_offset = 0x7f07031b
com.example.cuida:dimen/tooltip_corner_radius = 0x7f070318
-com.example.cuida:attr/ttcIndex = 0x7f0404e1
com.example.cuida:dimen/notification_top_pad = 0x7f070315
+com.example.cuida:attr/ttcIndex = 0x7f0404e1
com.example.cuida:macro/m3_comp_secondary_navigation_tab_container_color = 0x7f0d00fd
-com.example.cuida:attr/expanded = 0x7f0401c7
com.example.cuida:dimen/notification_subtext_size = 0x7f070314
-com.example.cuida:dimen/notification_small_icon_background_padding = 0x7f070312
-com.example.cuida:attr/materialTimePickerTitleStyle = 0x7f040315
-com.example.cuida:dimen/notification_right_side_padding_top = 0x7f070311
-com.example.cuida:dimen/notification_large_icon_width = 0x7f07030d
+com.example.cuida:attr/expanded = 0x7f0401c7
+com.example.cuida:style/Theme.MaterialComponents.Dialog.MinWidth = 0x7f13025e
+com.example.cuida:color/mtrl_chip_surface_color = 0x7f0602d4
com.example.cuida:drawable/common_google_signin_btn_icon_disabled = 0x7f080086
com.example.cuida:dimen/notification_large_icon_height = 0x7f07030c
com.example.cuida:style/Widget.Material3.MaterialTimePicker = 0x7f1303ae
com.example.cuida:dimen/design_snackbar_action_inline_max_width = 0x7f070080
com.example.cuida:dimen/notification_action_icon_size = 0x7f070308
-com.example.cuida:dimen/mtrl_tooltip_minHeight = 0x7f070304
-com.example.cuida:id/marquee = 0x7f090122
com.example.cuida:dimen/mtrl_tooltip_arrowSize = 0x7f070302
-com.example.cuida:dimen/mtrl_textinput_outline_box_expanded_padding = 0x7f0702ff
+com.example.cuida:id/marquee = 0x7f090127
com.example.cuida:dimen/mtrl_textinput_box_label_cutout_padding = 0x7f0702fa
-com.example.cuida:dimen/mtrl_textinput_box_corner_radius_small = 0x7f0702f9
-com.example.cuida:style/Widget.MaterialComponents.CircularProgressIndicator.Medium = 0x7f13040c
+com.example.cuida:dimen/abc_dialog_fixed_height_major = 0x7f07001c
com.example.cuida:style/Widget.Material3.MaterialCalendar.MonthNavigationButton = 0x7f1303a6
+com.example.cuida:style/Widget.MaterialComponents.CircularProgressIndicator.Medium = 0x7f13040c
com.example.cuida:dimen/mtrl_switch_thumb_icon_size = 0x7f0702f4
+com.example.cuida:dimen/m3_comp_navigation_bar_hover_state_layer_opacity = 0x7f070140
com.example.cuida:dimen/mtrl_switch_thumb_elevation = 0x7f0702f3
com.example.cuida:dimen/mtrl_switch_text_padding = 0x7f0702f2
-com.example.cuida:id/month_title = 0x7f090144
com.example.cuida:color/material_dynamic_primary30 = 0x7f06024f
com.example.cuida:drawable/mtrl_checkbox_button_icon_unchecked_indeterminate = 0x7f0800d6
-com.example.cuida:id/endToStart = 0x7f0900d5
+com.example.cuida:id/month_title = 0x7f090149
+com.example.cuida:color/m3_sys_color_dark_primary_container = 0x7f06017d
+com.example.cuida:style/Widget.Material3.PopupMenu.ContextMenu = 0x7f1303bc
+com.example.cuida:attr/colorPrimary = 0x7f04011b
+com.example.cuida:id/endToStart = 0x7f0900d9
com.example.cuida:dimen/mtrl_snackbar_margin = 0x7f0702ef
-com.example.cuida:macro/m3_comp_radio_button_selected_hover_icon_color = 0x7f0d00db
com.example.cuida:dimen/mtrl_snackbar_background_corner_radius = 0x7f0702ed
+com.example.cuida:macro/m3_comp_radio_button_selected_hover_icon_color = 0x7f0d00db
com.example.cuida:dimen/mtrl_snackbar_action_text_color_alpha = 0x7f0702ec
com.example.cuida:string/material_motion_easing_accelerated = 0x7f12007e
com.example.cuida:dimen/mtrl_slider_widget_height = 0x7f0702eb
-com.example.cuida:id/tag_accessibility_actions = 0x7f0901fc
com.example.cuida:dimen/mtrl_slider_thumb_radius = 0x7f0702e7
-com.example.cuida:dimen/mtrl_slider_label_square_side = 0x7f0702e5
+com.example.cuida:id/tag_accessibility_actions = 0x7f090201
com.example.cuida:dimen/mtrl_slider_halo_radius = 0x7f0702e2
com.example.cuida:style/Widget.Material3.MaterialButtonToggleGroup = 0x7f130394
-com.example.cuida:dimen/mtrl_min_touch_target_size = 0x7f0702bf
com.example.cuida:dimen/mtrl_shape_corner_size_small_component = 0x7f0702e1
-com.example.cuida:attr/extendMotionSpec = 0x7f0401d1
-com.example.cuida:dimen/mtrl_shape_corner_size_medium_component = 0x7f0702e0
+com.example.cuida:dimen/mtrl_min_touch_target_size = 0x7f0702bf
com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.Day = 0x7f130419
-com.example.cuida:id/info = 0x7f09010a
com.example.cuida:attr/textAppearanceTitleMedium = 0x7f040479
+com.example.cuida:id/info = 0x7f09010f
com.example.cuida:dimen/mtrl_shape_corner_size_large_component = 0x7f0702df
-com.example.cuida:attr/labelStyle = 0x7f04027a
com.example.cuida:dimen/mtrl_progress_circular_track_thickness_extra_small = 0x7f0702da
+com.example.cuida:attr/labelStyle = 0x7f04027a
com.example.cuida:style/TextAppearance.M3.Sys.Typescale.HeadlineLarge = 0x7f1301d9
com.example.cuida:macro/m3_comp_top_app_bar_large_headline_color = 0x7f0d016c
com.example.cuida:dimen/mtrl_progress_circular_size_medium = 0x7f0702d8
-com.example.cuida:id/square = 0x7f0901eb
+com.example.cuida:id/square = 0x7f0901f0
com.example.cuida:dimen/mtrl_progress_circular_size_extra_small = 0x7f0702d7
+com.example.cuida:dimen/mtrl_progress_circular_inset_small = 0x7f0702d4
com.example.cuida:styleable/NavigationBarView = 0x7f140077
com.example.cuida:dimen/mtrl_calendar_header_height_fullscreen = 0x7f07027f
-com.example.cuida:dimen/mtrl_progress_circular_inset_small = 0x7f0702d4
com.example.cuida:dimen/m3_navigation_rail_icon_size = 0x7f0701c8
com.example.cuida:dimen/design_tab_text_size = 0x7f07008d
com.example.cuida:dimen/mtrl_navigation_rail_text_size = 0x7f0702d0
-com.example.cuida:style/Widget.MaterialComponents.ShapeableImageView = 0x7f13043c
-com.example.cuida:string/common_google_play_services_unknown_issue = 0x7f12003b
-com.example.cuida:dimen/mtrl_navigation_rail_icon_size = 0x7f0702cd
com.example.cuida:dimen/mtrl_navigation_rail_icon_margin = 0x7f0702cc
com.example.cuida:macro/m3_comp_switch_selected_pressed_state_layer_color = 0x7f0d012d
-com.example.cuida:macro/m3_comp_checkbox_selected_disabled_icon_color = 0x7f0d0008
com.example.cuida:dimen/m3_appbar_size_medium = 0x7f0700ae
com.example.cuida:dimen/mtrl_navigation_rail_active_text_size = 0x7f0702c8
-com.example.cuida:dimen/mtrl_navigation_item_shape_vertical_margin = 0x7f0702c7
-com.example.cuida:dimen/mtrl_navigation_item_shape_horizontal_margin = 0x7f0702c6
+com.example.cuida:macro/m3_comp_checkbox_selected_disabled_icon_color = 0x7f0d0008
com.example.cuida:dimen/design_snackbar_text_size = 0x7f07008a
com.example.cuida:dimen/mtrl_navigation_item_icon_size = 0x7f0702c5
-com.example.cuida:dimen/mtrl_navigation_elevation = 0x7f0702c2
-com.example.cuida:dimen/mtrl_high_ripple_pressed_alpha = 0x7f0702ba
com.example.cuida:dimen/mtrl_high_ripple_hovered_alpha = 0x7f0702b9
com.example.cuida:dimen/mtrl_high_ripple_focused_alpha = 0x7f0702b8
-com.example.cuida:animator/fragment_open_enter = 0x7f020007
-com.example.cuida:dimen/mtrl_fab_translation_z_pressed = 0x7f0702b6
com.example.cuida:string/mtrl_picker_text_input_day_abbr = 0x7f1200b9
com.example.cuida:dimen/mtrl_fab_min_touch_target = 0x7f0702b4
-com.example.cuida:dimen/mtrl_extended_fab_translation_z_pressed = 0x7f0702b2
com.example.cuida:color/m3_sys_color_dynamic_light_secondary = 0x7f0601c2
com.example.cuida:drawable/$mtrl_checkbox_button_icon_checked_unchecked__2 = 0x7f080012
com.example.cuida:dimen/mtrl_extended_fab_translation_z_base = 0x7f0702b0
-com.example.cuida:id/next_med_name = 0x7f090174
-com.example.cuida:id/accessibility_custom_action_21 = 0x7f09001e
+com.example.cuida:id/startToEnd = 0x7f0901f7
+com.example.cuida:color/m3_text_button_ripple_color_selector = 0x7f060211
com.example.cuida:color/m3_ref_palette_dynamic_neutral_variant17 = 0x7f0600cc
com.example.cuida:dimen/mtrl_extended_fab_top_padding = 0x7f0702af
-com.example.cuida:dimen/mtrl_extended_fab_start_padding_icon = 0x7f0702ae
+com.example.cuida:id/accessibility_custom_action_21 = 0x7f09001e
+com.example.cuida:id/next_med_name = 0x7f090179
com.example.cuida:style/Widget.MaterialComponents.TextInputEditText.FilledBox = 0x7f130444
com.example.cuida:dimen/mtrl_extended_fab_min_width = 0x7f0702ac
-com.example.cuida:dimen/m3_sys_state_hover_state_layer_opacity = 0x7f070219
com.example.cuida:drawable/ic_logo = 0x7f0800aa
-com.example.cuida:id/open_search_view_search_prefix = 0x7f09018b
-com.example.cuida:attr/colorOnTertiaryFixed = 0x7f040117
+com.example.cuida:dimen/m3_sys_state_hover_state_layer_opacity = 0x7f070219
com.example.cuida:dimen/mtrl_extended_fab_icon_text_spacing = 0x7f0702aa
+com.example.cuida:attr/colorOnTertiaryFixed = 0x7f040117
+com.example.cuida:id/open_search_view_search_prefix = 0x7f090190
com.example.cuida:attr/imageAspectRatioAdjust = 0x7f040244
com.example.cuida:dimen/mtrl_extended_fab_icon_size = 0x7f0702a9
-com.example.cuida:dimen/mtrl_extended_fab_elevation = 0x7f0702a6
-com.example.cuida:dimen/mtrl_extended_fab_disabled_elevation = 0x7f0702a4
com.example.cuida:style/Widget.Material3.SideSheet.Modal.Detached = 0x7f1303c9
-com.example.cuida:id/rtl = 0x7f0901bb
+com.example.cuida:id/rtl = 0x7f0901c0
com.example.cuida:dimen/mtrl_exposed_dropdown_menu_popup_vertical_padding = 0x7f0702a2
-com.example.cuida:id/dragClockwise = 0x7f0900bc
-com.example.cuida:dimen/mtrl_chip_pressed_translation_z = 0x7f07029e
com.example.cuida:attr/animateMenuItems = 0x7f040036
com.example.cuida:dimen/mtrl_card_elevation = 0x7f07029c
-com.example.cuida:drawable/notification_bg = 0x7f0800f4
com.example.cuida:dimen/mtrl_card_dragged_z = 0x7f07029b
-com.example.cuida:style/TextAppearance.AppCompat.Large = 0x7f13019e
+com.example.cuida:drawable/notification_bg = 0x7f0800f4
+com.example.cuida:color/mtrl_navigation_bar_item_tint = 0x7f0602e3
+com.example.cuida:string/m3_sys_motion_easing_standard = 0x7f120074
com.example.cuida:dimen/mtrl_calendar_year_horizontal_padding = 0x7f070295
-com.example.cuida:attr/drawableStartCompat = 0x7f04019a
-com.example.cuida:dimen/mtrl_calendar_year_height = 0x7f070294
+com.example.cuida:style/TextAppearance.AppCompat.Large = 0x7f13019e
com.example.cuida:macro/m3_comp_navigation_drawer_headline_type = 0x7f0d0088
com.example.cuida:attr/elevation = 0x7f0401a9
com.example.cuida:color/m3_ref_palette_error60 = 0x7f06010e
@@ -1930,129 +2198,112 @@ com.example.cuida:dimen/mtrl_calendar_title_baseline_to_top = 0x7f070291
com.example.cuida:interpolator/m3_sys_motion_easing_standard_decelerate = 0x7f0b000d
com.example.cuida:dimen/hint_pressed_alpha_material_light = 0x7f07009c
com.example.cuida:dimen/mtrl_calendar_navigation_height = 0x7f070289
-com.example.cuida:style/Base.V14.Theme.MaterialComponents = 0x7f130091
com.example.cuida:dimen/mtrl_calendar_navigation_bottom_padding = 0x7f070288
+com.example.cuida:style/Base.V14.Theme.MaterialComponents = 0x7f130091
com.example.cuida:dimen/def_drawer_elevation = 0x7f07005f
com.example.cuida:dimen/mtrl_calendar_month_vertical_padding = 0x7f070287
-com.example.cuida:attr/trackDecoration = 0x7f0404d1
com.example.cuida:dimen/mtrl_calendar_landscape_header_width = 0x7f070284
+com.example.cuida:attr/trackDecoration = 0x7f0404d1
com.example.cuida:dimen/mtrl_card_corner_radius = 0x7f07029a
com.example.cuida:dimen/mtrl_calendar_header_selection_line_height = 0x7f070280
com.example.cuida:macro/m3_comp_secondary_navigation_tab_hover_state_layer_color = 0x7f0d00ff
-com.example.cuida:attr/motionEffect_move = 0x7f040350
com.example.cuida:color/m3_ref_palette_error30 = 0x7f06010b
com.example.cuida:dimen/mtrl_calendar_header_height = 0x7f07027e
+com.example.cuida:attr/motionEffect_move = 0x7f040350
com.example.cuida:attr/clockNumberTextColor = 0x7f0400e6
com.example.cuida:dimen/mtrl_calendar_header_content_padding_fullscreen = 0x7f07027c
-com.example.cuida:dimen/mtrl_calendar_dialog_background_inset = 0x7f07027a
com.example.cuida:dimen/mtrl_calendar_days_of_week_height = 0x7f070279
com.example.cuida:macro/m3_comp_outlined_text_field_caret_color = 0x7f0d00b3
com.example.cuida:dimen/mtrl_calendar_day_today_stroke = 0x7f070276
com.example.cuida:style/Widget.AppCompat.ProgressBar = 0x7f13031e
com.example.cuida:dimen/mtrl_calendar_day_height = 0x7f070274
-com.example.cuida:drawable/mtrl_ic_checkbox_unchecked = 0x7f0800df
-com.example.cuida:attr/layout_constraintHorizontal_bias = 0x7f0402a0
-com.example.cuida:color/material_dynamic_neutral_variant50 = 0x7f060244
-com.example.cuida:dimen/mtrl_calendar_content_padding = 0x7f070272
com.example.cuida:dimen/mtrl_calendar_action_padding = 0x7f070270
-com.example.cuida:dimen/mtrl_btn_text_size = 0x7f07026c
com.example.cuida:dimen/mtrl_btn_text_btn_padding_left = 0x7f07026a
com.example.cuida:color/material_dynamic_tertiary60 = 0x7f06026c
com.example.cuida:drawable/material_ic_keyboard_arrow_previous_black_24dp = 0x7f0800c9
+com.example.cuida:dimen/mtrl_btn_text_btn_icon_padding = 0x7f070269
com.example.cuida:color/m3_ref_palette_neutral6 = 0x7f060120
com.example.cuida:color/m3_tabs_text_color_secondary = 0x7f06020e
-com.example.cuida:dimen/mtrl_btn_text_btn_icon_padding = 0x7f070269
com.example.cuida:style/Widget.Cuida.Button = 0x7f130331
-com.example.cuida:attr/textAppearancePopupMenuHeader = 0x7f040472
com.example.cuida:dimen/mtrl_btn_padding_top = 0x7f070265
-com.example.cuida:id/mtrl_calendar_main_pane = 0x7f09014a
-com.example.cuida:dimen/abc_text_size_subhead_material = 0x7f07004d
+com.example.cuida:attr/textAppearancePopupMenuHeader = 0x7f040472
+com.example.cuida:dimen/abc_list_item_padding_horizontal_material = 0x7f070033
+com.example.cuida:attr/carousel_infinite = 0x7f0400ad
com.example.cuida:dimen/mtrl_btn_padding_left = 0x7f070263
-com.example.cuida:id/select_dialog_listview = 0x7f0901d0
+com.example.cuida:id/mtrl_calendar_main_pane = 0x7f09014f
+com.example.cuida:dimen/abc_text_size_subhead_material = 0x7f07004d
+com.example.cuida:id/select_dialog_listview = 0x7f0901d5
com.example.cuida:dimen/mtrl_btn_hovered_z = 0x7f07025c
-com.example.cuida:color/m3_ref_palette_primary0 = 0x7f060139
com.example.cuida:dimen/mtrl_btn_disabled_z = 0x7f070259
-com.example.cuida:style/Base.Theme.MaterialComponents.Dialog.FixedSize = 0x7f13006b
-com.example.cuida:dimen/mtrl_btn_dialog_btn_min_width = 0x7f070257
+com.example.cuida:color/m3_ref_palette_primary0 = 0x7f060139
com.example.cuida:macro/m3_comp_fab_surface_icon_color = 0x7f0d003f
com.example.cuida:dimen/mtrl_bottomappbar_fab_cradle_margin = 0x7f070252
+com.example.cuida:dimen/mtrl_badge_with_text_size = 0x7f07024f
com.example.cuida:macro/m3_comp_top_app_bar_medium_headline_type = 0x7f0d016f
com.example.cuida:dimen/m3_timepicker_display_stroke_width = 0x7f07021b
-com.example.cuida:dimen/mtrl_badge_with_text_size = 0x7f07024f
com.example.cuida:dimen/design_bottom_navigation_shadow_height = 0x7f07006b
com.example.cuida:dimen/mtrl_badge_toolbar_action_menu_item_horizontal_offset = 0x7f07024d
-com.example.cuida:dimen/mtrl_badge_text_horizontal_edge_offset = 0x7f07024b
-com.example.cuida:style/MaterialAlertDialog.MaterialComponents.Title.Panel = 0x7f130132
-com.example.cuida:dimen/m3_comp_linear_progress_indicator_active_indicator_height = 0x7f070139
-com.example.cuida:dimen/mtrl_badge_size = 0x7f07024a
-com.example.cuida:dimen/mtrl_alert_dialog_background_inset_bottom = 0x7f070243
com.example.cuida:attr/statusBarScrim = 0x7f04041d
com.example.cuida:dimen/material_time_picker_minimum_screen_width = 0x7f070242
-com.example.cuida:attr/snackbarStyle = 0x7f0403f7
-com.example.cuida:dimen/material_textinput_min_width = 0x7f070240
com.example.cuida:attr/state_indeterminate = 0x7f040417
com.example.cuida:dimen/material_textinput_max_width = 0x7f07023f
-com.example.cuida:macro/m3_comp_date_picker_modal_container_shape = 0x7f0d000f
+com.example.cuida:dimen/sliding_pane_detail_pane_width = 0x7f070317
+com.example.cuida:dimen/mtrl_navigation_rail_text_bottom_margin = 0x7f0702cf
com.example.cuida:dimen/material_font_1_3_box_collapsed_padding_top = 0x7f070238
-com.example.cuida:id/textinput_suffix_text = 0x7f090222
+com.example.cuida:macro/m3_comp_date_picker_modal_container_shape = 0x7f0d000f
com.example.cuida:attr/layout_constraintEnd_toEndOf = 0x7f040296
com.example.cuida:drawable/abc_tab_indicator_material = 0x7f08006b
+com.example.cuida:id/textinput_suffix_text = 0x7f090228
com.example.cuida:anim/nav_default_pop_enter_anim = 0x7f01002e
com.example.cuida:attr/clearsTag = 0x7f0400e1
com.example.cuida:attr/textAppearanceButton = 0x7f04045b
com.example.cuida:color/material_personalized_color_control_activated = 0x7f06028a
com.example.cuida:dimen/material_emphasis_disabled = 0x7f070230
+com.example.cuida:dimen/material_cursor_inset = 0x7f07022d
com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f130042
com.example.cuida:attr/colorOnPrimarySurface = 0x7f04010d
-com.example.cuida:dimen/material_cursor_inset = 0x7f07022d
-com.example.cuida:style/Widget.MaterialComponents.CircularProgressIndicator.Small = 0x7f13040d
com.example.cuida:dimen/material_clock_period_toggle_width = 0x7f07022b
-com.example.cuida:dimen/material_clock_period_toggle_vertical_gap = 0x7f07022a
-com.example.cuida:id/bounceStart = 0x7f090069
+com.example.cuida:style/Widget.MaterialComponents.CircularProgressIndicator.Small = 0x7f13040d
com.example.cuida:dimen/material_clock_period_toggle_horizontal_gap = 0x7f070229
-com.example.cuida:dimen/material_clock_period_toggle_height = 0x7f070228
+com.example.cuida:id/bounceStart = 0x7f090069
com.example.cuida:dimen/material_clock_hand_padding = 0x7f070225
-com.example.cuida:drawable/abc_spinner_mtrl_am_alpha = 0x7f080065
com.example.cuida:dimen/material_clock_face_margin_top = 0x7f070223
-com.example.cuida:dimen/material_clock_display_padding = 0x7f070220
-com.example.cuida:macro/m3_comp_navigation_rail_active_icon_color = 0x7f0d0098
-com.example.cuida:id/mobile_navigation = 0x7f09013e
-com.example.cuida:attr/itemIconPadding = 0x7f04025c
-com.example.cuida:dimen/material_bottom_sheet_max_width = 0x7f07021e
+com.example.cuida:drawable/abc_spinner_mtrl_am_alpha = 0x7f080065
com.example.cuida:macro/m3_comp_outlined_autocomplete_text_field_caret_color = 0x7f0d00a4
com.example.cuida:drawable/material_ic_keyboard_arrow_left_black_24dp = 0x7f0800c7
-com.example.cuida:attr/singleChoiceItemLayout = 0x7f0403f1
-com.example.cuida:animator/mtrl_chip_state_list_anim = 0x7f020018
+com.example.cuida:dimen/material_bottom_sheet_max_width = 0x7f07021e
+com.example.cuida:attr/itemIconPadding = 0x7f04025c
+com.example.cuida:macro/m3_comp_navigation_rail_active_icon_color = 0x7f0d0098
+com.example.cuida:id/mobile_navigation = 0x7f090143
com.example.cuida:attr/expandActivityOverflowButtonDrawable = 0x7f0401c6
com.example.cuida:drawable/abc_text_select_handle_right_mtrl = 0x7f080070
-com.example.cuida:string/character_counter_overflowed_content_description = 0x7f120030
+com.example.cuida:animator/mtrl_chip_state_list_anim = 0x7f020018
+com.example.cuida:attr/singleChoiceItemLayout = 0x7f0403f1
com.example.cuida:dimen/m3_sys_state_focus_state_layer_opacity = 0x7f070218
+com.example.cuida:string/character_counter_overflowed_content_description = 0x7f120030
com.example.cuida:drawable/notification_bg_low = 0x7f0800f5
com.example.cuida:dimen/m3_sys_state_dragged_state_layer_opacity = 0x7f070217
-com.example.cuida:macro/m3_comp_navigation_bar_active_hover_state_layer_color = 0x7f0d0067
com.example.cuida:dimen/m3_sys_motion_easing_standard_decelerate_control_y2 = 0x7f070216
+com.example.cuida:macro/m3_comp_navigation_bar_active_hover_state_layer_color = 0x7f0d0067
com.example.cuida:dimen/mtrl_btn_corner_radius = 0x7f070256
+com.example.cuida:dimen/m3_sys_motion_easing_standard_decelerate_control_y1 = 0x7f070215
com.example.cuida:style/Theme.MaterialComponents.Dialog.Alert.Bridge = 0x7f13025a
com.example.cuida:style/Theme.Material3.Dark.DialogWhenLarge = 0x7f13022e
-com.example.cuida:dimen/m3_sys_motion_easing_standard_decelerate_control_y1 = 0x7f070215
+com.example.cuida:dimen/mtrl_badge_text_size = 0x7f07024c
com.example.cuida:dimen/m3_sys_motion_easing_standard_decelerate_control_x2 = 0x7f070214
-com.example.cuida:style/Animation.AppCompat.Tooltip = 0x7f130004
com.example.cuida:string/mtrl_checkbox_button_path_group_name = 0x7f120093
-com.example.cuida:attr/foregroundInsidePadding = 0x7f04021b
com.example.cuida:dimen/browser_actions_context_menu_max_width = 0x7f070052
com.example.cuida:dimen/m3_sys_motion_easing_standard_decelerate_control_x1 = 0x7f070213
+com.example.cuida:attr/foregroundInsidePadding = 0x7f04021b
+com.example.cuida:style/Animation.AppCompat.Tooltip = 0x7f130004
com.example.cuida:string/mtrl_exceed_max_badge_number_content_description = 0x7f12009a
com.example.cuida:dimen/mtrl_tooltip_minWidth = 0x7f070305
com.example.cuida:dimen/m3_sys_motion_easing_standard_control_y1 = 0x7f070211
-com.example.cuida:attr/closeItemLayout = 0x7f0400ee
-com.example.cuida:dimen/m3_sys_motion_easing_standard_accelerate_control_y2 = 0x7f07020e
com.example.cuida:dimen/m3_sys_motion_easing_linear_control_y2 = 0x7f07020a
com.example.cuida:dimen/m3_sys_motion_easing_linear_control_y1 = 0x7f070209
-com.example.cuida:string/call_notification_ongoing_text = 0x7f12002d
com.example.cuida:dimen/abc_dialog_list_padding_top_no_title = 0x7f070021
+com.example.cuida:string/call_notification_ongoing_text = 0x7f12002d
com.example.cuida:dimen/m3_sys_motion_easing_linear_control_x2 = 0x7f070208
-com.example.cuida:style/Widget.MaterialComponents.AppBarLayout.PrimarySurface = 0x7f1303e8
-com.example.cuida:dimen/m3_sys_motion_easing_legacy_decelerate_control_y1 = 0x7f070205
com.example.cuida:bool/mtrl_btn_textappearance_all_caps = 0x7f050002
com.example.cuida:drawable/$mtrl_checkbox_button_icon_checked_unchecked__0 = 0x7f080010
com.example.cuida:dimen/m3_sys_motion_easing_legacy_control_y2 = 0x7f070202
@@ -2066,149 +2317,122 @@ com.example.cuida:dimen/m3_sys_motion_easing_legacy_accelerate_control_y1 = 0x7f
com.example.cuida:dimen/m3_sys_motion_easing_emphasized_accelerate_control_x2 = 0x7f0701f4
com.example.cuida:attr/motionEasingEmphasizedDecelerateInterpolator = 0x7f040346
com.example.cuida:dimen/m3_sys_elevation_level5 = 0x7f0701f2
-com.example.cuida:style/Base.Widget.AppCompat.PopupWindow = 0x7f1300ec
-com.example.cuida:dimen/m3_sys_elevation_level4 = 0x7f0701f1
-com.example.cuida:dimen/m3_sys_elevation_level3 = 0x7f0701f0
com.example.cuida:color/m3_sys_color_light_on_tertiary_container = 0x7f0601eb
com.example.cuida:dimen/m3_sys_elevation_level2 = 0x7f0701ef
-com.example.cuida:style/TextAppearance.Material3.HeadlineSmall = 0x7f1301ec
com.example.cuida:dimen/m3_sys_elevation_level0 = 0x7f0701ed
-com.example.cuida:dimen/m3_small_fab_size = 0x7f0701ea
+com.example.cuida:style/TextAppearance.Material3.HeadlineSmall = 0x7f1301ec
com.example.cuida:dimen/m3_slider_thumb_elevation = 0x7f0701e8
com.example.cuida:macro/m3_comp_outlined_card_dragged_outline_color = 0x7f0d00ae
com.example.cuida:dimen/m3_simple_item_color_selected_alpha = 0x7f0701e6
com.example.cuida:layout/abc_alert_dialog_button_bar_material = 0x7f0c0008
-com.example.cuida:dimen/material_emphasis_disabled_background = 0x7f070231
com.example.cuida:dimen/m3_side_sheet_modal_elevation = 0x7f0701e2
-com.example.cuida:styleable/NavGraphNavigator = 0x7f140072
-com.example.cuida:dimen/m3_side_sheet_margin_detached = 0x7f0701e1
+com.example.cuida:dimen/material_emphasis_disabled_background = 0x7f070231
com.example.cuida:macro/m3_comp_switch_selected_hover_state_layer_color = 0x7f0d0128
com.example.cuida:dimen/m3_searchbar_margin_vertical = 0x7f0701d9
-com.example.cuida:drawable/abc_cab_background_internal_bg = 0x7f080037
-com.example.cuida:dimen/m3_searchbar_margin_horizontal = 0x7f0701d8
com.example.cuida:color/m3_sys_color_secondary_fixed = 0x7f060205
com.example.cuida:dimen/m3_searchbar_height = 0x7f0701d7
-com.example.cuida:attr/dayTodayStyle = 0x7f04017a
com.example.cuida:attr/colorPrimaryInverse = 0x7f040120
com.example.cuida:color/material_dynamic_neutral20 = 0x7f060234
-com.example.cuida:dimen/abc_star_medium = 0x7f07003c
com.example.cuida:dimen/m3_ripple_default_alpha = 0x7f0701d1
+com.example.cuida:attr/dayTodayStyle = 0x7f04017a
+com.example.cuida:dimen/abc_star_medium = 0x7f07003c
com.example.cuida:dimen/material_filled_edittext_font_1_3_padding_top = 0x7f070235
-com.example.cuida:style/Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f130048
-com.example.cuida:attr/contrast = 0x7f040151
com.example.cuida:dimen/m3_navigation_rail_item_padding_bottom = 0x7f0701cd
+com.example.cuida:attr/contrast = 0x7f040151
+com.example.cuida:style/Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f130048
com.example.cuida:style/Base.V14.Theme.MaterialComponents.Light = 0x7f130095
com.example.cuida:dimen/m3_navigation_rail_item_min_height = 0x7f0701cc
com.example.cuida:dimen/m3_comp_switch_disabled_unselected_handle_opacity = 0x7f07018f
com.example.cuida:dimen/m3_comp_extended_fab_primary_focus_state_layer_opacity = 0x7f070113
com.example.cuida:dimen/m3_navigation_rail_item_active_indicator_margin_horizontal = 0x7f0701ca
-com.example.cuida:style/ThemeOverlay.MaterialComponents.TimePicker.Display = 0x7f1302e1
-com.example.cuida:dimen/m3_navigation_rail_elevation = 0x7f0701c7
com.example.cuida:dimen/m3_navigation_rail_default_width = 0x7f0701c6
-com.example.cuida:dimen/m3_navigation_menu_headline_horizontal_padding = 0x7f0701c5
com.example.cuida:dimen/m3_navigation_item_shape_inset_start = 0x7f0701c1
com.example.cuida:dimen/m3_navigation_item_shape_inset_end = 0x7f0701c0
com.example.cuida:dimen/m3_navigation_item_icon_padding = 0x7f0701be
-com.example.cuida:dimen/m3_navigation_drawer_layout_corner_size = 0x7f0701bb
-com.example.cuida:color/m3_sys_color_light_background = 0x7f0601db
-com.example.cuida:dimen/m3_menu_elevation = 0x7f0701b9
com.example.cuida:id/accessibility_custom_action_13 = 0x7f090015
com.example.cuida:dimen/m3_fab_translation_z_pressed = 0x7f0701b5
com.example.cuida:dimen/m3_fab_translation_z_hovered_focused = 0x7f0701b4
com.example.cuida:dimen/m3_fab_corner_size = 0x7f0701b3
-com.example.cuida:id/top = 0x7f090228
-com.example.cuida:dimen/m3_extended_fab_start_padding = 0x7f0701b0
com.example.cuida:attr/layout_constraintRight_toRightOf = 0x7f0402a8
com.example.cuida:dimen/m3_extended_fab_end_padding = 0x7f0701ad
com.example.cuida:dimen/m3_divider_heavy_thickness = 0x7f0701ab
-com.example.cuida:dimen/m3_datepicker_elevation = 0x7f0701aa
-com.example.cuida:dimen/m3_searchview_height = 0x7f0701e0
-com.example.cuida:style/TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f1301bc
-com.example.cuida:dimen/m3_comp_top_app_bar_small_container_height = 0x7f0701a8
-com.example.cuida:id/material_timepicker_container = 0x7f090135
+com.example.cuida:color/ripple_material_light = 0x7f06030e
+com.example.cuida:color/m3_sys_color_on_secondary_fixed = 0x7f0601ff
com.example.cuida:attr/quantizeMotionPhase = 0x7f0403a8
-com.example.cuida:color/teal_700 = 0x7f06031d
+com.example.cuida:id/material_timepicker_container = 0x7f09013a
com.example.cuida:dimen/m3_comp_top_app_bar_small_container_elevation = 0x7f0701a7
+com.example.cuida:color/teal_700 = 0x7f06031d
com.example.cuida:drawable/abc_action_bar_item_background_material = 0x7f080029
com.example.cuida:dimen/m3_comp_time_picker_time_selector_pressed_state_layer_opacity = 0x7f0701a4
-com.example.cuida:attr/windowNoTitle = 0x7f040501
-com.example.cuida:dimen/abc_text_size_display_1_material = 0x7f070043
+com.example.cuida:color/m3_tonal_button_ripple_color_selector = 0x7f060221
+com.example.cuida:attr/buttonTintMode = 0x7f04009f
com.example.cuida:dimen/m3_comp_time_picker_period_selector_hover_state_layer_opacity = 0x7f07019f
-com.example.cuida:layout/mtrl_picker_text_input_date = 0x7f0c006f
+com.example.cuida:dimen/abc_text_size_display_1_material = 0x7f070043
+com.example.cuida:attr/windowNoTitle = 0x7f040501
+com.example.cuida:layout/mtrl_picker_text_input_date = 0x7f0c0070
com.example.cuida:dimen/tooltip_margin = 0x7f07031a
-com.example.cuida:dimen/m3_comp_time_picker_period_selector_focus_state_layer_opacity = 0x7f07019e
+com.example.cuida:dimen/m3_badge_with_text_offset = 0x7f0700bb
com.example.cuida:dimen/m3_comp_time_picker_container_elevation = 0x7f07019d
-com.example.cuida:attr/reverseLayout = 0x7f0403bd
-com.example.cuida:dimen/m3_comp_text_button_pressed_state_layer_opacity = 0x7f07019b
-com.example.cuida:integer/mtrl_view_gone = 0x7f0a0041
com.example.cuida:color/m3_sys_color_dynamic_tertiary_fixed = 0x7f0601d9
-com.example.cuida:dimen/m3_bottom_nav_item_active_indicator_width = 0x7f0700c1
com.example.cuida:dimen/m3_comp_switch_unselected_focus_state_layer_opacity = 0x7f070196
-com.example.cuida:attr/buttonIconDimen = 0x7f040097
-com.example.cuida:dimen/mtrl_slider_track_side_padding = 0x7f0702ea
+com.example.cuida:dimen/m3_bottom_nav_item_active_indicator_width = 0x7f0700c1
+com.example.cuida:integer/mtrl_view_gone = 0x7f0a0041
com.example.cuida:dimen/m3_comp_switch_track_height = 0x7f070194
-com.example.cuida:dimen/sliding_pane_detail_pane_width = 0x7f070317
-com.example.cuida:dimen/mtrl_navigation_rail_text_bottom_margin = 0x7f0702cf
-com.example.cuida:color/material_personalized_color_on_surface = 0x7f060296
-com.example.cuida:dimen/m3_comp_switch_selected_pressed_state_layer_opacity = 0x7f070193
-com.example.cuida:dimen/m3_comp_switch_selected_hover_state_layer_opacity = 0x7f070192
-com.example.cuida:id/elastic = 0x7f0900d1
-com.example.cuida:dimen/m3_carousel_debug_keyline_width = 0x7f0700f0
+com.example.cuida:dimen/mtrl_slider_track_side_padding = 0x7f0702ea
+com.example.cuida:attr/buttonIconDimen = 0x7f040097
+com.example.cuida:id/elastic = 0x7f0900d5
com.example.cuida:dimen/m3_comp_switch_selected_focus_state_layer_opacity = 0x7f070191
+com.example.cuida:dimen/m3_carousel_debug_keyline_width = 0x7f0700f0
com.example.cuida:dimen/mtrl_exposed_dropdown_menu_popup_vertical_offset = 0x7f0702a1
com.example.cuida:dimen/m3_comp_switch_disabled_selected_icon_opacity = 0x7f07018d
-com.example.cuida:dimen/mtrl_progress_track_thickness = 0x7f0702de
com.example.cuida:dimen/m3_comp_switch_disabled_selected_handle_opacity = 0x7f07018c
-com.example.cuida:style/Base.ThemeOverlay.AppCompat.Dark = 0x7f13007a
+com.example.cuida:dimen/mtrl_progress_track_thickness = 0x7f0702de
com.example.cuida:macro/m3_comp_navigation_bar_active_pressed_state_layer_color = 0x7f0d006d
-com.example.cuida:attr/customColorDrawableValue = 0x7f04016c
com.example.cuida:dimen/m3_comp_suggestion_chip_with_leading_icon_leading_icon_size = 0x7f07018b
+com.example.cuida:style/Base.ThemeOverlay.AppCompat.Dark = 0x7f13007a
+com.example.cuida:attr/customColorDrawableValue = 0x7f04016c
+com.example.cuida:dimen/mtrl_calendar_text_input_padding_top = 0x7f070290
+com.example.cuida:styleable/AppCompatTextHelper = 0x7f140013
+com.example.cuida:dimen/mtrl_calendar_pre_l_text_clip_padding = 0x7f07028b
+com.example.cuida:dimen/m3_badge_with_text_size = 0x7f0700bc
+com.example.cuida:attr/indicatorDirectionCircular = 0x7f04024d
com.example.cuida:style/Widget.AppCompat.Spinner = 0x7f130327
com.example.cuida:dimen/m3_comp_snackbar_container_elevation = 0x7f070186
-com.example.cuida:dimen/m3_comp_slider_inactive_track_height = 0x7f070185
-com.example.cuida:style/Base.V14.ThemeOverlay.Material3.BottomSheetDialog = 0x7f13009a
-com.example.cuida:dimen/m3_comp_slider_disabled_handle_opacity = 0x7f070183
-com.example.cuida:color/m3_sys_color_dark_on_error = 0x7f060170
+com.example.cuida:drawable/ic_arrow_back_black_24 = 0x7f08009d
+com.example.cuida:drawable/$m3_avd_hide_password__1 = 0x7f080007
com.example.cuida:dimen/m3_comp_slider_disabled_active_track_opacity = 0x7f070182
+com.example.cuida:color/m3_sys_color_dark_on_error = 0x7f060170
com.example.cuida:dimen/m3_comp_sheet_side_docked_modal_container_elevation = 0x7f070180
com.example.cuida:attr/curveFit = 0x7f04016a
com.example.cuida:attr/sideSheetModalStyle = 0x7f0403ec
-com.example.cuida:attr/itemTextAppearance = 0x7f04026f
com.example.cuida:dimen/m3_comp_sheet_side_docked_container_width = 0x7f07017f
+com.example.cuida:attr/itemTextAppearance = 0x7f04026f
com.example.cuida:style/Base.V7.ThemeOverlay.AppCompat.Dialog = 0x7f1300be
com.example.cuida:string/abc_searchview_description_submit = 0x7f120016
com.example.cuida:drawable/ic_keyboard_black_24dp = 0x7f0800a6
-com.example.cuida:dimen/m3_comp_sheet_bottom_docked_standard_container_elevation = 0x7f07017e
com.example.cuida:dimen/m3_comp_sheet_bottom_docked_modal_container_elevation = 0x7f07017d
com.example.cuida:macro/m3_comp_switch_disabled_selected_track_color = 0x7f0d011c
com.example.cuida:dimen/m3_comp_secondary_navigation_tab_pressed_state_layer_opacity = 0x7f07017a
-com.example.cuida:dimen/m3_comp_secondary_navigation_tab_hover_state_layer_opacity = 0x7f070179
com.example.cuida:attr/alertDialogButtonGroupStyle = 0x7f04002c
com.example.cuida:dimen/mtrl_extended_fab_bottom_padding = 0x7f0702a3
-com.example.cuida:dimen/m3_comp_secondary_navigation_tab_focus_state_layer_opacity = 0x7f070178
-com.example.cuida:dimen/m3_comp_search_view_docked_header_container_height = 0x7f070175
-com.example.cuida:color/m3_ref_palette_neutral87 = 0x7f060124
com.example.cuida:dimen/m3_comp_search_bar_pressed_state_layer_opacity = 0x7f070173
-com.example.cuida:dimen/m3_comp_search_bar_hover_state_layer_opacity = 0x7f070172
-com.example.cuida:styleable/FragmentContainerView = 0x7f14003e
+com.example.cuida:color/m3_ref_palette_neutral87 = 0x7f060124
com.example.cuida:attr/windowFixedWidthMajor = 0x7f0404fd
com.example.cuida:dimen/m3_comp_search_bar_container_height = 0x7f070171
+com.example.cuida:styleable/FragmentContainerView = 0x7f14003e
com.example.cuida:string/google_storage_bucket = 0x7f120061
com.example.cuida:dimen/m3_comp_radio_button_unselected_hover_state_layer_opacity = 0x7f07016d
com.example.cuida:dimen/mtrl_btn_z = 0x7f07026d
-com.example.cuida:style/ThemeOverlay.Material3.ActionBar = 0x7f13027f
com.example.cuida:dimen/m3_comp_radio_button_unselected_focus_state_layer_opacity = 0x7f07016c
-com.example.cuida:style/Widget.Material3.Button.TonalButton.Icon = 0x7f130361
-com.example.cuida:dimen/m3_comp_radio_button_selected_pressed_state_layer_opacity = 0x7f07016b
-com.example.cuida:attr/mock_diagonalsColor = 0x7f04032b
+com.example.cuida:style/ThemeOverlay.Material3.ActionBar = 0x7f13027f
com.example.cuida:dimen/m3_comp_radio_button_selected_hover_state_layer_opacity = 0x7f07016a
-com.example.cuida:dimen/m3_comp_top_app_bar_small_on_scroll_container_elevation = 0x7f0701a9
+com.example.cuida:attr/mock_diagonalsColor = 0x7f04032b
com.example.cuida:anim/btn_radio_to_on_mtrl_dot_group_animation = 0x7f010015
com.example.cuida:color/design_bottom_navigation_shadow_color = 0x7f060041
com.example.cuida:dimen/m3_comp_primary_navigation_tab_with_icon_icon_size = 0x7f070166
-com.example.cuida:macro/m3_comp_search_view_header_leading_icon_color = 0x7f0d00f7
com.example.cuida:attr/alertDialogStyle = 0x7f04002e
com.example.cuida:dimen/m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity = 0x7f070165
+com.example.cuida:macro/m3_comp_search_view_header_leading_icon_color = 0x7f0d00f7
com.example.cuida:dimen/mtrl_navigation_rail_elevation = 0x7f0702cb
com.example.cuida:dimen/m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity = 0x7f070164
com.example.cuida:dimen/m3_comp_outlined_text_field_outline_width = 0x7f07015e
@@ -2217,403 +2441,340 @@ com.example.cuida:dimen/m3_comp_outlined_text_field_disabled_supporting_text_opa
com.example.cuida:dimen/m3_slider_inactive_track_height = 0x7f0701e7
com.example.cuida:dimen/m3_comp_outlined_text_field_disabled_label_text_opacity = 0x7f07015b
com.example.cuida:dimen/m3_comp_outlined_text_field_disabled_input_text_opacity = 0x7f07015a
-com.example.cuida:dimen/m3_comp_outlined_card_icon_size = 0x7f070157
-com.example.cuida:style/ShapeAppearanceOverlay.Material3.Chip = 0x7f130181
com.example.cuida:macro/m3_comp_secondary_navigation_tab_label_text_type = 0x7f0d0101
com.example.cuida:dimen/m3_comp_outlined_autocomplete_menu_container_elevation = 0x7f070152
+com.example.cuida:style/ShapeAppearanceOverlay.Material3.Chip = 0x7f130181
+com.example.cuida:style/Widget.AppCompat.PopupWindow = 0x7f13031d
+com.example.cuida:color/mtrl_calendar_item_stroke_color = 0x7f0602ce
com.example.cuida:dimen/m3_comp_navigation_rail_hover_state_layer_opacity = 0x7f07014f
-com.example.cuida:color/mtrl_indicator_text_color = 0x7f0602e0
com.example.cuida:dimen/m3_comp_navigation_rail_focus_state_layer_opacity = 0x7f07014e
+com.example.cuida:color/mtrl_indicator_text_color = 0x7f0602e0
com.example.cuida:dimen/m3_comp_navigation_rail_active_indicator_width = 0x7f07014b
-com.example.cuida:style/Theme.MaterialComponents.DayNight.Dialog.FixedSize.Bridge = 0x7f130252
-com.example.cuida:dimen/m3_comp_navigation_rail_active_indicator_height = 0x7f07014a
-com.example.cuida:color/m3_ref_palette_tertiary95 = 0x7f06015e
-com.example.cuida:dimen/m3_comp_navigation_drawer_standard_container_elevation = 0x7f070149
-com.example.cuida:dimen/m3_comp_navigation_drawer_icon_size = 0x7f070146
-com.example.cuida:id/cancel_button = 0x7f09007e
com.example.cuida:dimen/m3_comp_navigation_drawer_container_width = 0x7f070143
+com.example.cuida:id/cancel_button = 0x7f09007f
com.example.cuida:attr/maxAcceleration = 0x7f040316
com.example.cuida:color/material_personalized_color_primary = 0x7f06029d
com.example.cuida:dimen/m3_large_text_vertical_offset_adjustment = 0x7f0701b8
com.example.cuida:dimen/m3_comp_navigation_bar_icon_size = 0x7f070141
-com.example.cuida:dimen/m3_comp_navigation_bar_hover_state_layer_opacity = 0x7f070140
com.example.cuida:style/ShapeAppearanceOverlay.Material3.SearchBar = 0x7f130188
com.example.cuida:dimen/m3_comp_navigation_bar_active_indicator_height = 0x7f07013b
-com.example.cuida:attr/subtitle = 0x7f040426
-com.example.cuida:dimen/m3_back_progress_bottom_container_max_scale_x_distance = 0x7f0700af
+com.example.cuida:color/m3_sys_color_dynamic_light_surface_container_low = 0x7f0601c9
com.example.cuida:dimen/m3_comp_input_chip_with_leading_icon_leading_icon_size = 0x7f070138
-com.example.cuida:style/Widget.AppCompat.ProgressBar.Horizontal = 0x7f13031f
-com.example.cuida:style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f1301b4
+com.example.cuida:dimen/m3_back_progress_bottom_container_max_scale_x_distance = 0x7f0700af
+com.example.cuida:attr/subtitle = 0x7f040426
+com.example.cuida:attr/counterEnabled = 0x7f040160
+com.example.cuida:color/material_personalized_color_on_primary = 0x7f060292
com.example.cuida:attr/toggleCheckedStateOnClick = 0x7f0404bf
com.example.cuida:dimen/m3_comp_input_chip_with_avatar_avatar_size = 0x7f070137
-com.example.cuida:attr/divider = 0x7f040189
+com.example.cuida:style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f1301b4
+com.example.cuida:style/Widget.AppCompat.ProgressBar.Horizontal = 0x7f13031f
com.example.cuida:drawable/common_google_signin_btn_text_dark_normal_background = 0x7f08008e
+com.example.cuida:attr/divider = 0x7f040189
+com.example.cuida:dimen/m3_comp_filter_chip_flat_unselected_outline_width = 0x7f070132
com.example.cuida:attr/rippleColor = 0x7f0403be
com.example.cuida:color/m3_tabs_text_color = 0x7f06020d
-com.example.cuida:dimen/m3_comp_filter_chip_flat_unselected_outline_width = 0x7f070132
com.example.cuida:dimen/m3_comp_filter_chip_flat_container_elevation = 0x7f070131
com.example.cuida:dimen/m3_side_sheet_width = 0x7f0701e4
com.example.cuida:dimen/m3_comp_filter_chip_elevated_container_elevation = 0x7f070130
com.example.cuida:dimen/m3_comp_filter_chip_container_height = 0x7f07012f
com.example.cuida:dimen/m3_comp_filled_card_pressed_state_layer_opacity = 0x7f07012d
-com.example.cuida:dimen/m3_comp_filled_card_icon_size = 0x7f07012c
com.example.cuida:dimen/m3_comp_filled_card_dragged_state_layer_opacity = 0x7f070129
-com.example.cuida:styleable/PopupWindowBackgroundState = 0x7f14007e
-com.example.cuida:id/open_search_view_content_container = 0x7f090184
+com.example.cuida:id/open_search_view_content_container = 0x7f090189
com.example.cuida:dimen/m3_comp_filled_card_container_elevation = 0x7f070128
-com.example.cuida:style/Base.Widget.Material3.BottomNavigationView = 0x7f1300ff
+com.example.cuida:styleable/PopupWindowBackgroundState = 0x7f14007e
com.example.cuida:attr/SharedValueId = 0x7f040001
com.example.cuida:dimen/m3_comp_filled_button_container_elevation = 0x7f070126
+com.example.cuida:style/Base.Widget.Material3.BottomNavigationView = 0x7f1300ff
com.example.cuida:style/Widget.Material3.TextInputLayout.OutlinedBox = 0x7f1303da
-com.example.cuida:id/material_textinput_timepicker = 0x7f090133
com.example.cuida:attr/colorSwitchThumbNormal = 0x7f040133
com.example.cuida:dimen/m3_comp_filled_autocomplete_menu_container_elevation = 0x7f070125
-com.example.cuida:style/Animation.Material3.BottomSheetDialog = 0x7f130006
-com.example.cuida:layout/fingerprint_dialog_layout = 0x7f0c0034
-com.example.cuida:dimen/m3_comp_fab_primary_pressed_state_layer_opacity = 0x7f070122
+com.example.cuida:id/material_textinput_timepicker = 0x7f090138
com.example.cuida:dimen/m3_comp_fab_primary_pressed_container_elevation = 0x7f070121
com.example.cuida:style/TextAppearance.Design.Error = 0x7f1301cb
-com.example.cuida:id/dimensions = 0x7f0900b4
com.example.cuida:drawable/common_google_signin_btn_icon_light = 0x7f080087
-com.example.cuida:dimen/m3_comp_fab_primary_large_icon_size = 0x7f070120
-com.example.cuida:dimen/m3_comp_fab_primary_hover_state_layer_opacity = 0x7f07011d
+com.example.cuida:id/dimensions = 0x7f0900b5
com.example.cuida:dimen/m3_comp_fab_primary_container_height = 0x7f07011a
com.example.cuida:macro/m3_comp_switch_selected_handle_color = 0x7f0d0125
com.example.cuida:dimen/abc_search_view_preferred_width = 0x7f070037
com.example.cuida:dimen/m3_fab_border_width = 0x7f0701b2
-com.example.cuida:id/sin = 0x7f0901d9
com.example.cuida:color/m3_sys_color_dynamic_dark_on_tertiary = 0x7f06019a
+com.example.cuida:id/sin = 0x7f0901de
com.example.cuida:dimen/m3_comp_fab_primary_container_elevation = 0x7f070119
-com.example.cuida:string/m3_sys_motion_easing_legacy_decelerate = 0x7f120072
com.example.cuida:macro/m3_comp_primary_navigation_tab_container_color = 0x7f0d00ce
com.example.cuida:dimen/m3_comp_extended_fab_primary_icon_size = 0x7f070116
+com.example.cuida:string/m3_sys_motion_easing_legacy_decelerate = 0x7f120072
com.example.cuida:style/Base.Theme.AppCompat.Dialog = 0x7f13004d
-com.example.cuida:macro/m3_comp_date_picker_modal_header_headline_color = 0x7f0d0016
com.example.cuida:dimen/m3_comp_extended_fab_primary_hover_state_layer_opacity = 0x7f070115
-com.example.cuida:style/Widget.Material3.ActionBar.Solid = 0x7f13033e
+com.example.cuida:macro/m3_comp_date_picker_modal_header_headline_color = 0x7f0d0016
+com.example.cuida:color/material_grey_100 = 0x7f060272
+com.example.cuida:id/end = 0x7f0900d8
+com.example.cuida:color/m3_sys_color_dynamic_light_surface_bright = 0x7f0601c5
+com.example.cuida:id/unchecked = 0x7f090239
com.example.cuida:style/MaterialAlertDialog.MaterialComponents.Title.Text.CenterStacked = 0x7f130135
-com.example.cuida:attr/reactiveGuide_applyToAllConstraintSets = 0x7f0403b3
com.example.cuida:dimen/m3_sys_state_pressed_state_layer_opacity = 0x7f07021a
-com.example.cuida:dimen/m3_ripple_pressed_alpha = 0x7f0701d4
+com.example.cuida:style/Widget.Material3.ActionBar.Solid = 0x7f13033e
+com.example.cuida:attr/reactiveGuide_applyToAllConstraintSets = 0x7f0403b3
com.example.cuida:dimen/m3_comp_extended_fab_primary_container_height = 0x7f070111
+com.example.cuida:dimen/m3_ripple_pressed_alpha = 0x7f0701d4
+com.example.cuida:attr/titleCentered = 0x7f0404b1
+com.example.cuida:color/m3_sys_color_dynamic_on_tertiary_fixed = 0x7f0601d3
com.example.cuida:styleable/AppCompatTheme = 0x7f140015
com.example.cuida:attr/bottomSheetDragHandleStyle = 0x7f040081
com.example.cuida:dimen/m3_comp_elevated_card_icon_size = 0x7f07010f
-com.example.cuida:styleable/KeyTrigger = 0x7f14004b
com.example.cuida:attr/wavePhase = 0x7f0404f5
com.example.cuida:dimen/m3_comp_elevated_card_container_elevation = 0x7f07010e
-com.example.cuida:style/Base.Theme.Material3.Dark = 0x7f130059
-com.example.cuida:id/graph = 0x7f0900f4
+com.example.cuida:styleable/KeyTrigger = 0x7f14004b
com.example.cuida:dimen/m3_navigation_menu_divider_horizontal_padding = 0x7f0701c4
+com.example.cuida:id/graph = 0x7f0900f9
+com.example.cuida:style/Base.Theme.Material3.Dark = 0x7f130059
com.example.cuida:dimen/m3_comp_elevated_button_disabled_container_elevation = 0x7f07010d
com.example.cuida:dimen/m3_comp_date_picker_modal_range_selection_header_container_height = 0x7f07010a
-com.example.cuida:drawable/mtrl_switch_thumb = 0x7f0800e5
-com.example.cuida:attr/tabIndicatorFullWidth = 0x7f04043c
-com.example.cuida:dimen/m3_comp_date_picker_modal_date_today_container_outline_width = 0x7f070108
-com.example.cuida:style/Widget.Material3.Button.TextButton = 0x7f13035a
com.example.cuida:interpolator/btn_radio_to_on_mtrl_animation_interpolator_0 = 0x7f0b0005
com.example.cuida:dimen/m3_comp_bottom_app_bar_container_height = 0x7f070105
+com.example.cuida:style/Widget.Material3.Button.TextButton = 0x7f13035a
com.example.cuida:dimen/m3_comp_bottom_app_bar_container_elevation = 0x7f070104
-com.example.cuida:id/mtrl_picker_fullscreen = 0x7f090153
+com.example.cuida:id/mtrl_picker_fullscreen = 0x7f090158
com.example.cuida:dimen/m3_comp_assist_chip_with_icon_icon_size = 0x7f070101
com.example.cuida:dimen/m3_comp_assist_chip_flat_outline_width = 0x7f070100
-com.example.cuida:style/Widget.AppCompat.Button.Small = 0x7f1302f6
-com.example.cuida:id/view_tree_saved_state_registry_owner = 0x7f09023e
-com.example.cuida:id/center_horizontal = 0x7f090084
+com.example.cuida:id/view_tree_saved_state_registry_owner = 0x7f090244
com.example.cuida:dimen/m3_comp_assist_chip_container_height = 0x7f0700fd
-com.example.cuida:dimen/m3_chip_icon_size = 0x7f0700fc
+com.example.cuida:style/Widget.AppCompat.Button.Small = 0x7f1302f6
+com.example.cuida:id/center_horizontal = 0x7f090085
com.example.cuida:dimen/notification_big_circle_margin = 0x7f07030a
-com.example.cuida:dimen/m3_bottomappbar_fab_cradle_rounded_corner_radius = 0x7f0700c9
com.example.cuida:dimen/m3_chip_hovered_translation_z = 0x7f0700fb
+com.example.cuida:dimen/m3_bottomappbar_fab_cradle_rounded_corner_radius = 0x7f0700c9
com.example.cuida:color/material_dynamic_tertiary30 = 0x7f060269
com.example.cuida:dimen/m3_chip_disabled_translation_z = 0x7f0700f8
-com.example.cuida:style/Widget.Design.ScrimInsetsFrameLayout = 0x7f130339
-com.example.cuida:style/Theme.Material3.DynamicColors.Light = 0x7f13023b
com.example.cuida:style/ShapeAppearance.M3.Comp.NavigationRail.Container.Shape = 0x7f13015e
+com.example.cuida:style/Widget.Design.ScrimInsetsFrameLayout = 0x7f130339
com.example.cuida:dimen/m3_carousel_small_item_size_min = 0x7f0700f5
-com.example.cuida:dimen/m3_carousel_small_item_size_max = 0x7f0700f4
+com.example.cuida:style/Theme.Material3.DynamicColors.Light = 0x7f13023b
com.example.cuida:dimen/m3_card_hovered_z = 0x7f0700ee
-com.example.cuida:dimen/m3_card_elevation = 0x7f0700ed
com.example.cuida:color/m3_sys_color_light_surface_container_lowest = 0x7f0601f8
com.example.cuida:dimen/m3_card_elevated_elevation = 0x7f0700eb
-com.example.cuida:layout/fragment_profile = 0x7f0c0038
+com.example.cuida:layout/fragment_profile = 0x7f0c0039
com.example.cuida:animator/m3_extended_fab_show_motion_spec = 0x7f020013
com.example.cuida:dimen/m3_comp_navigation_bar_pressed_state_layer_opacity = 0x7f070142
com.example.cuida:style/MaterialAlertDialog.MaterialComponents.Title.Icon = 0x7f130130
-com.example.cuida:attr/yearSelectedStyle = 0x7f040502
com.example.cuida:animator/fragment_open_exit = 0x7f020008
+com.example.cuida:attr/yearSelectedStyle = 0x7f040502
com.example.cuida:dimen/m3_card_elevated_dragged_z = 0x7f0700ea
com.example.cuida:dimen/m3_card_elevated_disabled_z = 0x7f0700e9
-com.example.cuida:interpolator/m3_sys_motion_easing_emphasized_accelerate = 0x7f0b0008
com.example.cuida:attr/materialTimePickerStyle = 0x7f040313
+com.example.cuida:interpolator/m3_sys_motion_easing_emphasized_accelerate = 0x7f0b0008
com.example.cuida:dimen/m3_card_dragged_z = 0x7f0700e8
-com.example.cuida:id/tag_on_receive_content_listener = 0x7f090201
com.example.cuida:dimen/m3_btn_translation_z_hovered = 0x7f0700e6
-com.example.cuida:color/m3_simple_item_ripple_color = 0x7f060162
+com.example.cuida:id/tag_on_receive_content_listener = 0x7f090206
+com.example.cuida:dimen/mtrl_calendar_navigation_top_padding = 0x7f07028a
com.example.cuida:dimen/m3_btn_translation_z_base = 0x7f0700e5
+com.example.cuida:color/m3_simple_item_ripple_color = 0x7f060162
com.example.cuida:style/Widget.MaterialComponents.LinearProgressIndicator = 0x7f130416
-com.example.cuida:id/save_non_transition_alpha = 0x7f0901bc
+com.example.cuida:id/save_non_transition_alpha = 0x7f0901c1
com.example.cuida:dimen/m3_btn_text_btn_icon_padding_right = 0x7f0700e2
com.example.cuida:dimen/m3_btn_stroke_size = 0x7f0700e0
-com.example.cuida:layout/abc_action_menu_layout = 0x7f0c0003
com.example.cuida:dimen/m3_btn_padding_right = 0x7f0700de
+com.example.cuida:layout/abc_action_menu_layout = 0x7f0c0003
com.example.cuida:dimen/m3_btn_padding_left = 0x7f0700dd
-com.example.cuida:style/Theme.Material3.Dark.Dialog.MinWidth = 0x7f13022d
com.example.cuida:dimen/m3_btn_padding_bottom = 0x7f0700dc
+com.example.cuida:style/Theme.Material3.Dark.Dialog.MinWidth = 0x7f13022d
com.example.cuida:attr/tabGravity = 0x7f040435
com.example.cuida:dimen/m3_btn_max_width = 0x7f0700db
com.example.cuida:drawable/abc_btn_borderless_material = 0x7f08002a
com.example.cuida:dimen/tooltip_horizontal_padding = 0x7f070319
com.example.cuida:dimen/m3_btn_icon_only_icon_padding = 0x7f0700d8
-com.example.cuida:layout/mtrl_picker_header_selection_text = 0x7f0c006c
-com.example.cuida:attr/checkedButton = 0x7f0400b9
com.example.cuida:dimen/m3_btn_icon_only_default_padding = 0x7f0700d6
+com.example.cuida:layout/mtrl_picker_header_selection_text = 0x7f0c006d
+com.example.cuida:attr/checkedButton = 0x7f0400b9
com.example.cuida:dimen/m3_btn_icon_btn_padding_right = 0x7f0700d5
-com.example.cuida:dimen/m3_btn_elevation = 0x7f0700d3
com.example.cuida:dimen/m3_btn_disabled_translation_z = 0x7f0700d1
-com.example.cuida:string/m3_ref_typeface_brand_medium = 0x7f120068
-com.example.cuida:macro/m3_comp_text_button_pressed_state_layer_color = 0x7f0d0147
-com.example.cuida:dimen/m3_btn_disabled_elevation = 0x7f0700d0
com.example.cuida:dimen/m3_bottomappbar_height = 0x7f0700cc
-com.example.cuida:id/actions = 0x7f090046
+com.example.cuida:color/mtrl_fab_icon_text_color_selector = 0x7f0602db
com.example.cuida:dimen/m3_bottomappbar_fab_end_margin = 0x7f0700cb
+com.example.cuida:id/actions = 0x7f090046
com.example.cuida:string/call_notification_hang_up_action = 0x7f12002b
-com.example.cuida:macro/m3_comp_time_picker_period_selector_unselected_label_text_color = 0x7f0d015d
com.example.cuida:dimen/m3_bottom_nav_min_height = 0x7f0700c4
-com.example.cuida:id/selection_type = 0x7f0901d2
-com.example.cuida:attr/textAppearanceHeadline6 = 0x7f040465
+com.example.cuida:macro/m3_comp_time_picker_period_selector_unselected_label_text_color = 0x7f0d015d
+com.example.cuida:dimen/m3_searchview_elevation = 0x7f0701df
+com.example.cuida:dimen/abc_action_bar_default_padding_end_material = 0x7f070003
com.example.cuida:dimen/m3_bottom_nav_item_active_indicator_margin_horizontal = 0x7f0700c0
-com.example.cuida:styleable/AppCompatTextHelper = 0x7f140013
-com.example.cuida:dimen/mtrl_calendar_text_input_padding_top = 0x7f070290
-com.example.cuida:dimen/mtrl_calendar_pre_l_text_clip_padding = 0x7f07028b
-com.example.cuida:attr/indicatorDirectionCircular = 0x7f04024d
-com.example.cuida:dimen/m3_badge_with_text_size = 0x7f0700bc
-com.example.cuida:dimen/m3_badge_with_text_offset = 0x7f0700bb
-com.example.cuida:color/highlighted_text_material_dark = 0x7f060070
+com.example.cuida:attr/textAppearanceHeadline6 = 0x7f040465
+com.example.cuida:id/selection_type = 0x7f0901d7
com.example.cuida:color/m3_sys_color_dynamic_dark_on_tertiary_container = 0x7f06019b
com.example.cuida:dimen/m3_badge_size = 0x7f0700b8
-com.example.cuida:style/ThemeOverlay.MaterialAlertDialog.Material3.Title.Icon = 0x7f1302bd
+com.example.cuida:color/highlighted_text_material_dark = 0x7f060070
com.example.cuida:dimen/mtrl_card_checked_icon_margin = 0x7f070298
com.example.cuida:dimen/m3_badge_offset = 0x7f0700b7
+com.example.cuida:style/ThemeOverlay.MaterialAlertDialog.Material3.Title.Icon = 0x7f1302bd
com.example.cuida:dimen/m3_back_progress_side_container_max_scale_y_distance = 0x7f0700b5
-com.example.cuida:macro/m3_comp_filled_tonal_button_label_text_color = 0x7f0d0054
-com.example.cuida:id/textinput_helper_text = 0x7f09021f
-com.example.cuida:id/src_in = 0x7f0901ed
com.example.cuida:dimen/m3_back_progress_side_container_max_scale_x_distance_shrink = 0x7f0700b4
+com.example.cuida:macro/m3_comp_filled_tonal_button_label_text_color = 0x7f0d0054
+com.example.cuida:id/src_in = 0x7f0901f2
+com.example.cuida:id/textinput_helper_text = 0x7f090225
com.example.cuida:dimen/m3_back_progress_main_container_min_edge_gap = 0x7f0700b2
com.example.cuida:dimen/m3_back_progress_main_container_max_translation_y = 0x7f0700b1
-com.example.cuida:dimen/abc_list_item_height_large_material = 0x7f070030
+com.example.cuida:drawable/m3_avd_hide_password = 0x7f0800b8
com.example.cuida:dimen/m3_back_progress_bottom_container_max_scale_y_distance = 0x7f0700b0
+com.example.cuida:dimen/abc_list_item_height_large_material = 0x7f070030
com.example.cuida:dimen/m3_appbar_size_compact = 0x7f0700ac
-com.example.cuida:style/Base.V24.Theme.Material3.Light = 0x7f1300b3
com.example.cuida:dimen/m3_appbar_scrim_height_trigger_medium = 0x7f0700ab
+com.example.cuida:style/Base.V24.Theme.Material3.Light = 0x7f1300b3
com.example.cuida:dimen/m3_appbar_scrim_height_trigger_large = 0x7f0700aa
+com.example.cuida:integer/m3_sys_motion_duration_medium3 = 0x7f0a001b
+com.example.cuida:color/material_dynamic_neutral10 = 0x7f060232
+com.example.cuida:style/Widget.MaterialComponents.Button.OutlinedButton = 0x7f1303f9
com.example.cuida:string/fingerprint_error_hw_not_present = 0x7f120054
-com.example.cuida:id/blocking = 0x7f090064
com.example.cuida:color/m3_sys_color_primary_fixed = 0x7f060203
com.example.cuida:drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__0 = 0x7f080014
+com.example.cuida:id/blocking = 0x7f090064
com.example.cuida:dimen/m3_alert_dialog_icon_size = 0x7f0700a5
com.example.cuida:dimen/m3_alert_dialog_elevation = 0x7f0700a3
com.example.cuida:integer/app_bar_elevation_anim_duration = 0x7f0a0002
-com.example.cuida:id/ifRoom = 0x7f090103
+com.example.cuida:id/ifRoom = 0x7f090108
com.example.cuida:drawable/common_google_signin_btn_icon_dark_focused = 0x7f080083
com.example.cuida:dimen/mtrl_bottomappbar_fabOffsetEndMode = 0x7f070250
com.example.cuida:dimen/item_touch_helper_max_drag_scroll_per_frame = 0x7f07009d
com.example.cuida:dimen/hint_pressed_alpha_material_dark = 0x7f07009b
+com.example.cuida:dimen/highlight_alpha_material_dark = 0x7f070097
com.example.cuida:color/abc_tint_default = 0x7f060014
com.example.cuida:color/m3_sys_color_secondary_fixed_dim = 0x7f060206
-com.example.cuida:dimen/highlight_alpha_material_dark = 0x7f070097
com.example.cuida:style/Base.ThemeOverlay.Material3.AutoCompleteTextView = 0x7f13007f
com.example.cuida:dimen/m3_alert_dialog_corner_size = 0x7f0700a2
-com.example.cuida:dimen/highlight_alpha_material_colored = 0x7f070096
com.example.cuida:dimen/m3_comp_time_picker_time_selector_focus_state_layer_opacity = 0x7f0701a2
-com.example.cuida:color/m3_ref_palette_dynamic_neutral12 = 0x7f0600b3
com.example.cuida:dimen/disabled_alpha_material_light = 0x7f070091
-com.example.cuida:id/parent = 0x7f090194
-com.example.cuida:dimen/design_textinput_caption_translate_y = 0x7f07008f
+com.example.cuida:color/m3_ref_palette_dynamic_neutral12 = 0x7f0600b3
com.example.cuida:dimen/design_tab_scrollable_min_width = 0x7f07008c
com.example.cuida:dimen/design_tab_max_width = 0x7f07008b
-com.example.cuida:style/Widget.AppCompat.CompoundButton.Switch = 0x7f1302fb
com.example.cuida:dimen/design_snackbar_padding_vertical_2lines = 0x7f070089
+com.example.cuida:style/Widget.AppCompat.CompoundButton.Switch = 0x7f1302fb
com.example.cuida:dimen/mtrl_slider_tick_radius = 0x7f0702e8
com.example.cuida:dimen/design_snackbar_padding_vertical = 0x7f070088
com.example.cuida:dimen/design_snackbar_padding_horizontal = 0x7f070087
-com.example.cuida:dimen/design_snackbar_min_width = 0x7f070086
com.example.cuida:id/browser_actions_header_text = 0x7f09006a
com.example.cuida:color/m3_sys_color_dynamic_dark_surface_dim = 0x7f0601a9
com.example.cuida:dimen/design_snackbar_max_width = 0x7f070085
com.example.cuida:dimen/design_snackbar_extra_spacing_horizontal = 0x7f070084
com.example.cuida:color/m3_sys_color_on_primary_fixed = 0x7f0601fd
com.example.cuida:dimen/design_snackbar_background_corner_radius = 0x7f070082
-com.example.cuida:dimen/design_navigation_padding_bottom = 0x7f07007e
-com.example.cuida:macro/m3_comp_filled_autocomplete_text_field_input_text_type = 0x7f0d0043
com.example.cuida:dimen/design_navigation_max_width = 0x7f07007d
+com.example.cuida:macro/m3_comp_filled_autocomplete_text_field_input_text_type = 0x7f0d0043
com.example.cuida:style/Widget.MaterialComponents.Chip.Entry = 0x7f130407
com.example.cuida:style/Base.ThemeOverlay.MaterialComponents.Dialog = 0x7f130084
com.example.cuida:dimen/design_navigation_item_vertical_padding = 0x7f07007c
-com.example.cuida:dimen/design_navigation_icon_size = 0x7f070079
com.example.cuida:anim/linear_indeterminate_line1_head_interpolator = 0x7f01001d
com.example.cuida:dimen/design_fab_size_mini = 0x7f070073
-com.example.cuida:style/Base.Widget.MaterialComponents.PopupMenu.Overflow = 0x7f130119
+com.example.cuida:attr/perpendicularPath_percent = 0x7f04038e
+com.example.cuida:dimen/abc_action_bar_elevation_material = 0x7f070005
com.example.cuida:integer/mtrl_switch_track_viewport_width = 0x7f0a003f
com.example.cuida:dimen/design_fab_image_size = 0x7f070072
-com.example.cuida:macro/m3_comp_date_picker_modal_date_today_container_outline_color = 0x7f0d0013
+com.example.cuida:style/Base.Widget.MaterialComponents.PopupMenu.Overflow = 0x7f130119
com.example.cuida:drawable/$mtrl_checkbox_button_icon_unchecked_checked__1 = 0x7f080018
com.example.cuida:dimen/design_bottom_sheet_modal_elevation = 0x7f07006e
+com.example.cuida:macro/m3_comp_date_picker_modal_date_today_container_outline_color = 0x7f0d0013
com.example.cuida:dimen/abc_floating_window_z = 0x7f07002f
com.example.cuida:dimen/m3_bottom_nav_item_padding_top = 0x7f0700c3
com.example.cuida:attr/springBoundary = 0x7f040402
com.example.cuida:dimen/design_bottom_navigation_elevation = 0x7f070064
+com.example.cuida:dimen/design_bottom_navigation_active_item_max_width = 0x7f070061
com.example.cuida:id/action_container = 0x7f09003b
com.example.cuida:attr/paddingEnd = 0x7f040379
-com.example.cuida:dimen/design_bottom_navigation_active_item_max_width = 0x7f070061
com.example.cuida:dimen/design_appbar_elevation = 0x7f070060
-com.example.cuida:dimen/compat_notification_large_icon_max_height = 0x7f07005d
com.example.cuida:dimen/mtrl_progress_circular_inset_extra_small = 0x7f0702d2
-com.example.cuida:id/parentPanel = 0x7f090195
-com.example.cuida:attr/homeLayout = 0x7f040234
com.example.cuida:dimen/compat_button_padding_vertical_material = 0x7f07005b
-com.example.cuida:dimen/cardview_default_radius = 0x7f070056
-com.example.cuida:dimen/cardview_compat_inset_shadow = 0x7f070054
-com.example.cuida:id/sawtooth = 0x7f0901be
+com.example.cuida:id/parentPanel = 0x7f09019a
+com.example.cuida:attr/homeLayout = 0x7f040234
+com.example.cuida:id/sawtooth = 0x7f0901c3
com.example.cuida:dimen/m3_sys_elevation_level1 = 0x7f0701ee
-com.example.cuida:dimen/abc_text_size_menu_material = 0x7f07004b
-com.example.cuida:dimen/material_cursor_width = 0x7f07022e
-com.example.cuida:attr/errorIconTintMode = 0x7f0401c1
-com.example.cuida:dimen/abc_text_size_headline_material = 0x7f070047
-com.example.cuida:layout/fragment_schedule_appointment = 0x7f0c0039
+com.example.cuida:layout/fragment_schedule_appointment = 0x7f0c003a
com.example.cuida:dimen/abc_text_size_display_4_material = 0x7f070046
com.example.cuida:attr/cardMaxElevation = 0x7f0400a4
com.example.cuida:dimen/abc_text_size_display_3_material = 0x7f070045
com.example.cuida:dimen/m3_sys_motion_easing_standard_accelerate_control_x2 = 0x7f07020c
-com.example.cuida:attr/primaryActivityName = 0x7f0403a4
com.example.cuida:dimen/abc_text_size_display_2_material = 0x7f070044
-com.example.cuida:color/m3_ref_palette_error80 = 0x7f060110
+com.example.cuida:attr/primaryActivityName = 0x7f0403a4
com.example.cuida:dimen/abc_text_size_caption_material = 0x7f070042
+com.example.cuida:color/m3_ref_palette_error80 = 0x7f060110
com.example.cuida:dimen/abc_text_size_button_material = 0x7f070041
-com.example.cuida:style/Theme.Material3.DayNight.Dialog = 0x7f130233
-com.example.cuida:style/TextAppearance.Material3.TitleLarge = 0x7f1301f4
-com.example.cuida:attr/submitBackground = 0x7f040425
-com.example.cuida:color/common_google_signin_btn_tint = 0x7f060040
-com.example.cuida:dimen/abc_text_size_body_1_material = 0x7f07003f
+com.example.cuida:color/m3_sys_color_dynamic_dark_outline_variant = 0x7f06019d
+com.example.cuida:id/showCustom = 0x7f0901db
com.example.cuida:style/TextAppearance.AppCompat.Widget.Switch = 0x7f1301c1
-com.example.cuida:id/showCustom = 0x7f0901d6
com.example.cuida:dimen/notification_small_icon_size_as_large = 0x7f070313
-com.example.cuida:dimen/abc_star_big = 0x7f07003b
com.example.cuida:attr/borderRound = 0x7f040079
com.example.cuida:dimen/abc_seekbar_track_progress_height_material = 0x7f070039
-com.example.cuida:attr/uri = 0x7f0404e3
com.example.cuida:dimen/mtrl_btn_text_btn_padding_right = 0x7f07026b
com.example.cuida:dimen/abc_seekbar_track_background_height_material = 0x7f070038
-com.example.cuida:dimen/mtrl_extended_fab_translation_z_hovered_focused = 0x7f0702b1
-com.example.cuida:id/edit_reason = 0x7f0900ce
-com.example.cuida:dimen/abc_progress_bar_height_material = 0x7f070035
-com.example.cuida:attr/carousel_infinite = 0x7f0400ad
-com.example.cuida:dimen/abc_list_item_padding_horizontal_material = 0x7f070033
-com.example.cuida:drawable/m3_avd_hide_password = 0x7f0800b8
+com.example.cuida:attr/uri = 0x7f0404e3
com.example.cuida:dimen/abc_edit_text_inset_top_material = 0x7f07002e
-com.example.cuida:dimen/abc_dropdownitem_text_padding_left = 0x7f07002a
-com.example.cuida:id/navigation_schedule_appointment = 0x7f09016e
-com.example.cuida:dimen/abc_disabled_alpha_material_light = 0x7f070028
-com.example.cuida:drawable/abc_list_selector_holo_light = 0x7f080057
com.example.cuida:color/m3_navigation_bar_item_with_indicator_label_tint = 0x7f0600a2
com.example.cuida:dimen/abc_dialog_min_width_minor = 0x7f070023
-com.example.cuida:dimen/abc_dialog_min_width_major = 0x7f070022
+com.example.cuida:drawable/abc_list_selector_holo_light = 0x7f080057
com.example.cuida:macro/m3_comp_search_view_container_color = 0x7f0d00f2
-com.example.cuida:id/material_hour_tv = 0x7f09012f
com.example.cuida:dimen/abc_dialog_fixed_width_minor = 0x7f07001f
+com.example.cuida:id/material_hour_tv = 0x7f090134
com.example.cuida:style/Widget.AppCompat.CompoundButton.RadioButton = 0x7f1302fa
com.example.cuida:dimen/abc_dialog_fixed_width_major = 0x7f07001e
-com.example.cuida:dimen/abc_dialog_fixed_height_major = 0x7f07001c
-com.example.cuida:dimen/abc_dialog_corner_radius_material = 0x7f07001b
-com.example.cuida:dimen/abc_control_corner_material = 0x7f070018
com.example.cuida:dimen/abc_cascading_menus_min_smallest_width = 0x7f070016
-com.example.cuida:color/m3_sys_color_dynamic_light_background = 0x7f0601ad
-com.example.cuida:dimen/abc_button_inset_vertical_material = 0x7f070013
com.example.cuida:dimen/abc_button_inset_horizontal_material = 0x7f070012
com.example.cuida:dimen/abc_action_bar_subtitle_bottom_margin_material = 0x7f07000b
com.example.cuida:id/actionUp = 0x7f090032
com.example.cuida:dimen/abc_action_bar_stacked_tab_max_width = 0x7f07000a
com.example.cuida:dimen/m3_comp_switch_unselected_hover_state_layer_opacity = 0x7f070197
com.example.cuida:dimen/abc_button_padding_horizontal_material = 0x7f070014
-com.example.cuida:macro/m3_comp_time_picker_period_selector_selected_pressed_state_layer_color = 0x7f0d015a
-com.example.cuida:dimen/m3_comp_navigation_rail_container_elevation = 0x7f07014c
com.example.cuida:dimen/abc_action_bar_overflow_padding_end_material = 0x7f070007
-com.example.cuida:attr/perpendicularPath_percent = 0x7f04038e
-com.example.cuida:dimen/abc_action_bar_elevation_material = 0x7f070005
+com.example.cuida:dimen/m3_comp_navigation_rail_container_elevation = 0x7f07014c
+com.example.cuida:macro/m3_comp_time_picker_period_selector_selected_pressed_state_layer_color = 0x7f0d015a
com.example.cuida:dimen/abc_action_bar_default_padding_start_material = 0x7f070004
-com.example.cuida:dimen/m3_searchview_elevation = 0x7f0701df
-com.example.cuida:dimen/abc_action_bar_default_padding_end_material = 0x7f070003
-com.example.cuida:color/tooltip_background_light = 0x7f060321
-com.example.cuida:style/TextAppearance.AppCompat.Display4 = 0x7f13019b
-com.example.cuida:macro/m3_comp_fab_surface_container_color = 0x7f0d003e
com.example.cuida:dimen/abc_control_inset_material = 0x7f070019
com.example.cuida:dimen/mtrl_switch_track_height = 0x7f0702f6
-com.example.cuida:dimen/m3_comp_outlined_button_disabled_outline_opacity = 0x7f070153
+com.example.cuida:macro/m3_comp_fab_surface_container_color = 0x7f0d003e
+com.example.cuida:style/TextAppearance.AppCompat.Display4 = 0x7f13019b
com.example.cuida:color/text_primary = 0x7f06031e
-com.example.cuida:color/m3_ref_palette_error99 = 0x7f060113
-com.example.cuida:color/teal_200 = 0x7f06031c
-com.example.cuida:color/material_dynamic_tertiary50 = 0x7f06026b
+com.example.cuida:dimen/m3_comp_outlined_button_disabled_outline_opacity = 0x7f070153
com.example.cuida:color/mtrl_textinput_hovered_box_stroke_color = 0x7f0602fc
com.example.cuida:color/switch_thumb_normal_material_dark = 0x7f06031a
-com.example.cuida:id/peekHeight = 0x7f09019c
+com.example.cuida:color/material_dynamic_tertiary50 = 0x7f06026b
com.example.cuida:dimen/m3_comp_checkbox_selected_disabled_container_opacity = 0x7f070106
+com.example.cuida:id/peekHeight = 0x7f0901a1
com.example.cuida:color/switch_thumb_material_dark = 0x7f060318
-com.example.cuida:color/m3_ref_palette_neutral_variant30 = 0x7f060130
-com.example.cuida:dimen/material_textinput_default_width = 0x7f07023e
-com.example.cuida:color/switch_thumb_disabled_material_light = 0x7f060317
com.example.cuida:attr/circularflow_defaultAngle = 0x7f0400dc
com.example.cuida:color/switch_thumb_disabled_material_dark = 0x7f060316
com.example.cuida:dimen/m3_comp_elevated_button_container_elevation = 0x7f07010c
com.example.cuida:color/secondary_text_disabled_material_light = 0x7f060314
-com.example.cuida:style/Widget.Material3.TextInputEditText.OutlinedBox.Dense = 0x7f1303d5
-com.example.cuida:color/secondary_text_disabled_material_dark = 0x7f060313
com.example.cuida:dimen/abc_control_padding_material = 0x7f07001a
-com.example.cuida:layout/abc_list_menu_item_icon = 0x7f0c000f
-com.example.cuida:id/dragAnticlockwise = 0x7f0900bb
com.example.cuida:color/secondary_text_default_material_light = 0x7f060312
+com.example.cuida:id/dragAnticlockwise = 0x7f0900bc
+com.example.cuida:layout/abc_list_menu_item_icon = 0x7f0c000f
com.example.cuida:attr/listPreferredItemPaddingEnd = 0x7f0402db
com.example.cuida:drawable/abc_list_focused_holo = 0x7f08004e
com.example.cuida:dimen/m3_bottom_sheet_modal_elevation = 0x7f0700c7
-com.example.cuida:style/Base.V24.Theme.Material3.Light.Dialog = 0x7f1300b4
com.example.cuida:color/secondary_text_default_material_dark = 0x7f060311
-com.example.cuida:color/secondary_dark_color = 0x7f060310
-com.example.cuida:id/screen = 0x7f0901c0
+com.example.cuida:style/Base.V24.Theme.Material3.Light.Dialog = 0x7f1300b4
+com.example.cuida:id/screen = 0x7f0901c5
com.example.cuida:color/purple_700 = 0x7f06030c
-com.example.cuida:macro/m3_comp_switch_unselected_pressed_track_outline_color = 0x7f0d0140
com.example.cuida:color/purple_200 = 0x7f06030a
+com.example.cuida:macro/m3_comp_switch_unselected_pressed_track_outline_color = 0x7f0d0140
com.example.cuida:attr/materialButtonStyle = 0x7f0402ee
com.example.cuida:dimen/m3_sys_motion_easing_legacy_accelerate_control_x2 = 0x7f0701fc
-com.example.cuida:style/Base.Theme.AppCompat.Dialog.FixedSize = 0x7f13004f
-com.example.cuida:id/transitionToStart = 0x7f09022c
-com.example.cuida:color/primary_text_default_material_light = 0x7f060307
com.example.cuida:attr/warmth = 0x7f0404f1
com.example.cuida:color/primary_text_default_material_dark = 0x7f060306
-com.example.cuida:style/Widget.Material3.CardView.Elevated = 0x7f130363
com.example.cuida:color/m3_ref_palette_dynamic_neutral_variant70 = 0x7f0600d6
com.example.cuida:color/primary_material_light = 0x7f060305
-com.example.cuida:attr/chipBackgroundColor = 0x7f0400c4
+com.example.cuida:style/Widget.Material3.CardView.Elevated = 0x7f130363
com.example.cuida:attr/listPreferredItemHeight = 0x7f0402d8
+com.example.cuida:attr/chipBackgroundColor = 0x7f0400c4
com.example.cuida:color/primary_material_dark = 0x7f060304
-com.example.cuida:id/dropdown_menu = 0x7f0900c3
-com.example.cuida:dimen/m3_comp_assist_chip_elevated_container_elevation = 0x7f0700fe
-com.example.cuida:anim/abc_slide_in_top = 0x7f010007
-com.example.cuida:color/primary_dark_color = 0x7f060300
-com.example.cuida:styleable/MaterialCalendarItem = 0x7f140058
-com.example.cuida:color/primary_color = 0x7f0602ff
-com.example.cuida:style/TextAppearance.M3.Sys.Typescale.LabelLarge = 0x7f1301dc
com.example.cuida:color/mtrl_switch_thumb_tint = 0x7f0602ef
com.example.cuida:color/mtrl_textinput_focused_box_stroke_color = 0x7f0602fb
-com.example.cuida:color/m3_sys_color_dynamic_light_surface_container = 0x7f0601c6
+com.example.cuida:style/TextAppearance.M3.Sys.Typescale.LabelLarge = 0x7f1301dc
com.example.cuida:dimen/design_bottom_navigation_label_padding = 0x7f070069
-com.example.cuida:style/Base.Widget.Material3.TabLayout.Secondary = 0x7f130110
-com.example.cuida:id/fitStart = 0x7f0900e6
+com.example.cuida:color/m3_sys_color_dynamic_light_surface_container = 0x7f0601c6
com.example.cuida:color/mtrl_textinput_filled_box_default_background_color = 0x7f0602fa
+com.example.cuida:id/fitStart = 0x7f0900eb
+com.example.cuida:style/Base.Widget.Material3.TabLayout.Secondary = 0x7f130110
+com.example.cuida:dimen/design_fab_translation_z_hovered_focused = 0x7f070075
com.example.cuida:style/Widget.MaterialComponents.BottomAppBar = 0x7f1303ef
com.example.cuida:attr/colorOnPrimaryFixed = 0x7f04010b
-com.example.cuida:dimen/design_fab_translation_z_hovered_focused = 0x7f070075
-com.example.cuida:style/Widget.AppCompat.SeekBar.Discrete = 0x7f130326
com.example.cuida:color/mtrl_text_btn_text_color_selector = 0x7f0602f7
+com.example.cuida:style/Widget.AppCompat.SeekBar.Discrete = 0x7f130326
com.example.cuida:color/mtrl_tabs_ripple_color = 0x7f0602f6
com.example.cuida:attr/drawPath = 0x7f040194
com.example.cuida:color/mtrl_tabs_icon_color_selector_colored = 0x7f0602f4
@@ -2621,562 +2782,411 @@ com.example.cuida:color/mtrl_switch_track_tint = 0x7f0602f1
com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.Item = 0x7f130429
com.example.cuida:integer/m3_sys_motion_duration_long2 = 0x7f0a0016
com.example.cuida:color/mtrl_switch_thumb_icon_tint = 0x7f0602ee
-com.example.cuida:style/Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f1302f4
-com.example.cuida:color/mtrl_on_surface_ripple_color = 0x7f0602e9
-com.example.cuida:color/mtrl_navigation_item_background_color = 0x7f0602e5
com.example.cuida:dimen/mtrl_fab_translation_z_hovered_focused = 0x7f0702b5
com.example.cuida:color/mtrl_navigation_bar_ripple_color = 0x7f0602e4
-com.example.cuida:string/m3_sys_motion_easing_standard = 0x7f120074
-com.example.cuida:color/mtrl_navigation_bar_item_tint = 0x7f0602e3
+com.example.cuida:color/mtrl_on_surface_ripple_color = 0x7f0602e9
+com.example.cuida:style/Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f1302f4
+com.example.cuida:color/mtrl_navigation_item_background_color = 0x7f0602e5
com.example.cuida:color/mtrl_filled_icon_tint = 0x7f0602de
com.example.cuida:color/mtrl_filled_background_color = 0x7f0602dd
com.example.cuida:macro/m3_comp_top_app_bar_small_trailing_icon_color = 0x7f0d0175
com.example.cuida:color/mtrl_fab_ripple_color = 0x7f0602dc
-com.example.cuida:color/mtrl_fab_icon_text_color_selector = 0x7f0602db
-com.example.cuida:color/mtrl_fab_bg_color_selector = 0x7f0602da
-com.example.cuida:dimen/mtrl_card_checked_icon_size = 0x7f070299
-com.example.cuida:color/mtrl_error = 0x7f0602d9
-com.example.cuida:style/Theme.MaterialComponents.Dialog.MinWidth = 0x7f13025e
-com.example.cuida:color/mtrl_chip_surface_color = 0x7f0602d4
-com.example.cuida:style/Widget.AppCompat.Light.ActionBar.TabText = 0x7f130305
-com.example.cuida:color/mtrl_chip_close_icon_tint = 0x7f0602d3
+com.example.cuida:id/text_title = 0x7f090221
com.example.cuida:color/mtrl_card_view_ripple = 0x7f0602d1
com.example.cuida:id/accessibility_custom_action_17 = 0x7f090019
-com.example.cuida:color/m3_ref_palette_primary30 = 0x7f06013d
com.example.cuida:color/mtrl_card_view_foreground = 0x7f0602d0
+com.example.cuida:color/m3_ref_palette_primary30 = 0x7f06013d
com.example.cuida:attr/customReference = 0x7f040173
com.example.cuida:color/mtrl_calendar_selected_range = 0x7f0602cf
-com.example.cuida:style/Widget.AppCompat.PopupWindow = 0x7f13031d
-com.example.cuida:color/mtrl_calendar_item_stroke_color = 0x7f0602ce
-com.example.cuida:drawable/mtrl_switch_thumb_pressed = 0x7f0800e9
-com.example.cuida:color/mtrl_btn_stroke_color_selector = 0x7f0602c8
com.example.cuida:color/mtrl_btn_ripple_color = 0x7f0602c7
-com.example.cuida:id/button_cancel_password = 0x7f090076
-com.example.cuida:drawable/ic_call_answer = 0x7f08009e
com.example.cuida:color/m3_ref_palette_dynamic_tertiary70 = 0x7f060102
com.example.cuida:color/material_timepicker_modebutton_tint = 0x7f0602c5
-com.example.cuida:string/m3_sys_motion_easing_legacy = 0x7f120070
-com.example.cuida:id/submenuarrow = 0x7f0901f8
-com.example.cuida:attr/headerLayout = 0x7f040224
+com.example.cuida:drawable/ic_call_answer = 0x7f08009e
+com.example.cuida:id/button_cancel_password = 0x7f090076
+com.example.cuida:id/submenuarrow = 0x7f0901fd
com.example.cuida:attr/constraintRotate = 0x7f04013a
com.example.cuida:dimen/m3_card_disabled_z = 0x7f0700e7
+com.example.cuida:string/m3_sys_motion_easing_legacy = 0x7f120070
+com.example.cuida:attr/headerLayout = 0x7f040224
com.example.cuida:attr/isMaterialTheme = 0x7f040256
com.example.cuida:color/material_timepicker_clockface = 0x7f0602c4
-com.example.cuida:id/mtrl_internal_children_alpha_tag = 0x7f090151
+com.example.cuida:id/mtrl_internal_children_alpha_tag = 0x7f090156
com.example.cuida:color/material_timepicker_clock_text_color = 0x7f0602c3
com.example.cuida:string/mtrl_checkbox_state_description_checked = 0x7f120096
-com.example.cuida:attr/iconStartPadding = 0x7f04023d
com.example.cuida:dimen/abc_text_size_menu_header_material = 0x7f07004a
+com.example.cuida:attr/iconStartPadding = 0x7f04023d
com.example.cuida:dimen/m3_sys_motion_easing_legacy_decelerate_control_x2 = 0x7f070204
-com.example.cuida:color/material_timepicker_button_stroke = 0x7f0602c2
-com.example.cuida:drawable/ic_call_answer_video = 0x7f0800a0
-com.example.cuida:color/material_slider_thumb_color = 0x7f0602c0
com.example.cuida:dimen/design_navigation_icon_padding = 0x7f070078
com.example.cuida:color/material_slider_halo_color = 0x7f0602bd
-com.example.cuida:color/material_slider_active_track_color = 0x7f0602bc
com.example.cuida:color/material_slider_active_tick_marks_color = 0x7f0602bb
-com.example.cuida:drawable/ic_arrow_back_black_24 = 0x7f08009d
-com.example.cuida:drawable/$m3_avd_hide_password__1 = 0x7f080007
-com.example.cuida:color/material_personalized_primary_text_disable_only = 0x7f0602ba
com.example.cuida:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow = 0x7f13014a
com.example.cuida:style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem = 0x7f130145
-com.example.cuida:id/text_input_end_icon = 0x7f090213
com.example.cuida:drawable/abc_btn_colored_material = 0x7f08002f
com.example.cuida:color/material_personalized_primary_inverse_text_disable_only = 0x7f0602b9
-com.example.cuida:style/TextAppearance.MaterialComponents.Headline6 = 0x7f130202
+com.example.cuida:id/text_input_end_icon = 0x7f090218
com.example.cuida:style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored = 0x7f1301ba
com.example.cuida:color/design_fab_stroke_top_outer_color = 0x7f060064
com.example.cuida:color/material_personalized_hint_foreground_inverse = 0x7f0602b8
-com.example.cuida:integer/mtrl_switch_thumb_viewport_center_coordinate = 0x7f0a003c
-com.example.cuida:id/progress_horizontal = 0x7f0901a8
+com.example.cuida:style/TextAppearance.MaterialComponents.Headline6 = 0x7f130202
+com.example.cuida:id/progress_horizontal = 0x7f0901ad
com.example.cuida:attr/listPreferredItemPaddingLeft = 0x7f0402dc
com.example.cuida:color/material_personalized_hint_foreground = 0x7f0602b7
+com.example.cuida:integer/mtrl_switch_thumb_viewport_center_coordinate = 0x7f0a003c
com.example.cuida:color/material_personalized_color_text_primary_inverse_disable_only = 0x7f0602b4
com.example.cuida:color/material_personalized_color_tertiary_container = 0x7f0602b1
com.example.cuida:color/material_personalized_color_tertiary = 0x7f0602b0
com.example.cuida:attr/colorSurfaceVariant = 0x7f040132
com.example.cuida:color/material_personalized_color_surface_variant = 0x7f0602af
-com.example.cuida:attr/actionLayout = 0x7f040010
com.example.cuida:color/material_personalized_color_surface_inverse = 0x7f0602ae
+com.example.cuida:attr/actionLayout = 0x7f040010
com.example.cuida:string/character_counter_pattern = 0x7f120031
com.example.cuida:color/material_dynamic_tertiary80 = 0x7f06026e
com.example.cuida:color/material_personalized_color_surface_bright = 0x7f0602a7
-com.example.cuida:color/material_personalized_color_surface = 0x7f0602a6
-com.example.cuida:layout/material_clock_period_toggle = 0x7f0c0048
+com.example.cuida:layout/material_clock_period_toggle = 0x7f0c0049
com.example.cuida:color/material_personalized_color_secondary_text = 0x7f0602a4
com.example.cuida:dimen/mtrl_textinput_start_icon_margin_end = 0x7f070300
+com.example.cuida:color/material_personalized_color_primary_text_inverse = 0x7f0602a1
com.example.cuida:style/Theme.MaterialComponents.Dialog.Bridge = 0x7f13025b
com.example.cuida:color/mtrl_outlined_stroke_color = 0x7f0602eb
-com.example.cuida:color/material_personalized_color_primary_text_inverse = 0x7f0602a1
com.example.cuida:macro/m3_comp_navigation_bar_inactive_focus_label_text_color = 0x7f0d0070
-com.example.cuida:macro/m3_comp_menu_list_item_selected_container_color = 0x7f0d0061
com.example.cuida:color/m3_textfield_stroke_color = 0x7f060216
com.example.cuida:color/material_personalized_color_primary_text = 0x7f0602a0
+com.example.cuida:macro/m3_comp_menu_list_item_selected_container_color = 0x7f0d0061
com.example.cuida:string/register_button = 0x7f1200d6
-com.example.cuida:id/navigation_profile = 0x7f09016d
com.example.cuida:drawable/abc_ab_share_pack_mtrl_alpha = 0x7f080028
+com.example.cuida:id/navigation_profile = 0x7f090172
com.example.cuida:dimen/m3_comp_search_bar_container_elevation = 0x7f070170
com.example.cuida:dimen/m3_comp_navigation_bar_active_indicator_width = 0x7f07013c
com.example.cuida:color/material_personalized_color_primary_container = 0x7f06029e
com.example.cuida:color/material_personalized_color_on_tertiary = 0x7f060299
-com.example.cuida:style/ThemeOverlay.Material3.SideSheetDialog = 0x7f1302b4
-com.example.cuida:color/abc_tint_switch_track = 0x7f060018
com.example.cuida:attr/mock_showLabel = 0x7f040330
-com.example.cuida:color/m3_dynamic_hint_foreground = 0x7f060096
com.example.cuida:color/material_personalized_color_on_surface_variant = 0x7f060298
+com.example.cuida:color/abc_tint_switch_track = 0x7f060018
+com.example.cuida:color/m3_dynamic_hint_foreground = 0x7f060096
+com.example.cuida:style/ThemeOverlay.Material3.SideSheetDialog = 0x7f1302b4
com.example.cuida:color/material_personalized_color_on_secondary = 0x7f060294
-com.example.cuida:attr/deltaPolarAngle = 0x7f040181
com.example.cuida:color/material_personalized_color_on_primary_container = 0x7f060293
-com.example.cuida:attr/counterEnabled = 0x7f040160
-com.example.cuida:color/material_personalized_color_on_primary = 0x7f060292
-com.example.cuida:styleable/RadialViewGroup = 0x7f140080
-com.example.cuida:color/material_personalized_color_on_error_container = 0x7f060291
-com.example.cuida:color/material_personalized_color_error = 0x7f06028d
-com.example.cuida:color/button_material_light = 0x7f06002f
+com.example.cuida:attr/deltaPolarAngle = 0x7f040181
com.example.cuida:color/material_personalized_color_control_normal = 0x7f06028c
+com.example.cuida:color/button_material_light = 0x7f06002f
com.example.cuida:color/material_personalized_color_background = 0x7f060289
-com.example.cuida:color/material_personalized__highlighted_text_inverse = 0x7f060288
-com.example.cuida:attr/navigationIconTint = 0x7f040363
-com.example.cuida:color/m3_ref_palette_dynamic_primary80 = 0x7f0600e9
-com.example.cuida:color/material_on_surface_emphasis_medium = 0x7f060285
com.example.cuida:color/material_on_primary_emphasis_medium = 0x7f060282
com.example.cuida:dimen/mtrl_extended_fab_end_padding = 0x7f0702a7
com.example.cuida:dimen/m3_comp_navigation_rail_container_width = 0x7f07014d
-com.example.cuida:dimen/m3_sys_motion_easing_standard_control_x1 = 0x7f07020f
com.example.cuida:color/material_on_primary_emphasis_high_type = 0x7f060281
-com.example.cuida:id/open_search_view_divider = 0x7f090185
+com.example.cuida:dimen/m3_sys_motion_easing_standard_control_x1 = 0x7f07020f
com.example.cuida:color/material_on_primary_disabled = 0x7f060280
-com.example.cuida:color/material_harmonized_color_on_error_container = 0x7f06027c
-com.example.cuida:dimen/mtrl_card_spacing = 0x7f07029d
+com.example.cuida:id/open_search_view_divider = 0x7f09018a
com.example.cuida:color/material_harmonized_color_on_error = 0x7f06027b
+com.example.cuida:dimen/mtrl_card_spacing = 0x7f07029d
com.example.cuida:color/material_grey_900 = 0x7f060278
-com.example.cuida:color/material_grey_850 = 0x7f060277
com.example.cuida:attr/dividerThickness = 0x7f04018f
com.example.cuida:color/material_grey_800 = 0x7f060276
com.example.cuida:color/material_grey_600 = 0x7f060275
-com.example.cuida:id/textinput_placeholder = 0x7f090220
+com.example.cuida:id/textinput_placeholder = 0x7f090226
com.example.cuida:color/material_grey_300 = 0x7f060273
com.example.cuida:color/material_dynamic_tertiary99 = 0x7f060271
+com.example.cuida:dimen/compat_button_inset_horizontal_material = 0x7f070058
com.example.cuida:style/Widget.Material3.CollapsingToolbar.Large = 0x7f130377
com.example.cuida:color/m3_ref_palette_dynamic_secondary20 = 0x7f0600f0
-com.example.cuida:dimen/compat_button_inset_horizontal_material = 0x7f070058
com.example.cuida:color/material_dynamic_tertiary95 = 0x7f060270
com.example.cuida:macro/m3_comp_outlined_card_hover_outline_color = 0x7f0d00b0
-com.example.cuida:attr/itemSpacing = 0x7f04026c
com.example.cuida:drawable/m3_password_eye = 0x7f0800bb
com.example.cuida:drawable/abc_btn_check_material_anim = 0x7f08002c
+com.example.cuida:attr/itemSpacing = 0x7f04026c
com.example.cuida:style/Widget.MaterialComponents.Button.Icon = 0x7f1303f8
-com.example.cuida:id/always = 0x7f090050
com.example.cuida:dimen/m3_comp_radio_button_disabled_unselected_icon_opacity = 0x7f070168
-com.example.cuida:layout/mtrl_picker_text_input_date_range = 0x7f0c0070
+com.example.cuida:id/always = 0x7f090050
+com.example.cuida:layout/mtrl_picker_text_input_date_range = 0x7f0c0071
com.example.cuida:dimen/m3_back_progress_side_container_max_scale_x_distance_grow = 0x7f0700b3
-com.example.cuida:attr/minTouchTargetSize = 0x7f040329
-com.example.cuida:color/material_dynamic_tertiary100 = 0x7f060267
com.example.cuida:color/material_dynamic_secondary99 = 0x7f060264
-com.example.cuida:attr/passwordToggleTint = 0x7f040386
-com.example.cuida:dimen/mtrl_textinput_end_icon_margin_start = 0x7f0702fe
-com.example.cuida:color/material_dynamic_secondary80 = 0x7f060261
-com.example.cuida:dimen/compat_button_padding_horizontal_material = 0x7f07005a
-com.example.cuida:color/material_dynamic_secondary70 = 0x7f060260
com.example.cuida:color/material_dynamic_secondary60 = 0x7f06025f
com.example.cuida:color/m3_sys_color_dynamic_dark_on_primary_container = 0x7f060195
com.example.cuida:color/material_dynamic_secondary40 = 0x7f06025d
-com.example.cuida:color/material_dynamic_secondary0 = 0x7f060258
com.example.cuida:attr/itemVerticalPadding = 0x7f040274
com.example.cuida:dimen/design_navigation_item_icon_padding = 0x7f07007b
com.example.cuida:color/material_dynamic_primary95 = 0x7f060256
-com.example.cuida:macro/m3_comp_switch_disabled_selected_handle_color = 0x7f0d011a
-com.example.cuida:color/material_dynamic_primary90 = 0x7f060255
com.example.cuida:dimen/mtrl_btn_icon_btn_padding_left = 0x7f07025d
com.example.cuida:color/material_dynamic_primary70 = 0x7f060253
-com.example.cuida:color/material_dynamic_primary10 = 0x7f06024c
-com.example.cuida:integer/mtrl_tab_indicator_anim_duration_ms = 0x7f0a0040
-com.example.cuida:color/material_dynamic_neutral_variant90 = 0x7f060248
com.example.cuida:macro/m3_comp_assist_chip_container_shape = 0x7f0d0000
com.example.cuida:color/material_dynamic_neutral_variant30 = 0x7f060242
-com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton = 0x7f130428
-com.example.cuida:string/fallback_menu_item_copy_link = 0x7f12004f
com.example.cuida:color/material_dynamic_neutral_variant20 = 0x7f060241
+com.example.cuida:string/fallback_menu_item_copy_link = 0x7f12004f
+com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton = 0x7f130428
com.example.cuida:attr/chipStyle = 0x7f0400d6
com.example.cuida:color/material_dynamic_neutral_variant0 = 0x7f06023e
-com.example.cuida:id/east = 0x7f0900c7
com.example.cuida:color/mtrl_choice_chip_text_color = 0x7f0602d8
+com.example.cuida:id/east = 0x7f0900c8
com.example.cuida:color/material_personalized_color_surface_container_lowest = 0x7f0602ac
-com.example.cuida:color/m3_ref_palette_dynamic_neutral_variant92 = 0x7f0600da
com.example.cuida:color/material_dynamic_neutral99 = 0x7f06023d
+com.example.cuida:color/m3_ref_palette_dynamic_neutral_variant92 = 0x7f0600da
com.example.cuida:macro/m3_comp_filled_tonal_icon_button_container_color = 0x7f0d0055
-com.example.cuida:dimen/material_emphasis_medium = 0x7f070233
com.example.cuida:color/material_dynamic_neutral95 = 0x7f06023c
+com.example.cuida:dimen/material_emphasis_medium = 0x7f070233
com.example.cuida:style/Base.Theme.AppCompat.DialogWhenLarge = 0x7f130051
com.example.cuida:color/material_dynamic_neutral90 = 0x7f06023b
com.example.cuida:drawable/abc_list_selector_disabled_holo_light = 0x7f080055
+com.example.cuida:color/material_dynamic_neutral70 = 0x7f060239
com.example.cuida:style/Widget.AppCompat.Light.ActionButton.CloseMode = 0x7f13030a
com.example.cuida:dimen/abc_alert_dialog_button_dimen = 0x7f070011
-com.example.cuida:color/material_dynamic_neutral70 = 0x7f060239
-com.example.cuida:macro/m3_comp_switch_unselected_handle_color = 0x7f0d0135
com.example.cuida:dimen/design_bottom_navigation_item_min_width = 0x7f070068
-com.example.cuida:attr/textAppearanceSubtitle2 = 0x7f040477
+com.example.cuida:macro/m3_comp_switch_unselected_handle_color = 0x7f0d0135
com.example.cuida:color/material_dynamic_neutral60 = 0x7f060238
-com.example.cuida:style/ThemeOverlay.Material3.ExtendedFloatingActionButton.Secondary = 0x7f13029e
-com.example.cuida:dimen/abc_edit_text_inset_bottom_material = 0x7f07002c
+com.example.cuida:attr/textAppearanceSubtitle2 = 0x7f040477
com.example.cuida:dimen/m3_comp_assist_chip_flat_container_elevation = 0x7f0700ff
com.example.cuida:color/material_dynamic_neutral50 = 0x7f060237
com.example.cuida:style/Widget.Material3.MaterialCalendar.DayTextView = 0x7f13039b
-com.example.cuida:style/TextAppearance.AppCompat.Caption = 0x7f130197
com.example.cuida:color/material_dynamic_neutral40 = 0x7f060236
+com.example.cuida:style/TextAppearance.AppCompat.Caption = 0x7f130197
com.example.cuida:color/material_dynamic_neutral30 = 0x7f060235
-com.example.cuida:style/Widget.MaterialComponents.Button.OutlinedButton = 0x7f1303f9
-com.example.cuida:integer/m3_sys_motion_duration_medium3 = 0x7f0a001b
-com.example.cuida:color/material_dynamic_neutral10 = 0x7f060232
-com.example.cuida:drawable/ic_mtrl_chip_close_circle = 0x7f0800b2
com.example.cuida:style/MaterialAlertDialog.MaterialComponents.Title.Icon.CenterStacked = 0x7f130131
com.example.cuida:attr/thumbIcon = 0x7f04049a
com.example.cuida:color/material_dynamic_neutral0 = 0x7f060231
-com.example.cuida:color/material_dynamic_color_light_on_error = 0x7f06022f
com.example.cuida:color/material_dynamic_color_light_error_container = 0x7f06022e
com.example.cuida:drawable/abc_menu_hardkey_panel_mtrl_mult = 0x7f080058
-com.example.cuida:styleable/SearchBar = 0x7f140086
com.example.cuida:color/material_dynamic_color_light_error = 0x7f06022d
+com.example.cuida:styleable/SearchBar = 0x7f140086
com.example.cuida:color/material_dynamic_color_dark_on_error = 0x7f06022b
+com.example.cuida:style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse = 0x7f1301b8
+com.example.cuida:color/m3_sys_color_dynamic_light_tertiary = 0x7f0601cd
com.example.cuida:color/material_dynamic_color_dark_error_container = 0x7f06022a
-com.example.cuida:id/search_badge = 0x7f0901c6
-com.example.cuida:color/material_divider_color = 0x7f060228
-com.example.cuida:attr/visibilityMode = 0x7f0404ef
com.example.cuida:attr/guidelineUseRtl = 0x7f040221
com.example.cuida:color/material_blue_grey_900 = 0x7f060223
-com.example.cuida:attr/buttonTintMode = 0x7f04009f
-com.example.cuida:color/m3_tonal_button_ripple_color_selector = 0x7f060221
-com.example.cuida:dimen/tooltip_vertical_padding = 0x7f07031d
-com.example.cuida:style/Widget.Material3.Button.TextButton.Dialog = 0x7f13035b
+com.example.cuida:attr/visibilityMode = 0x7f0404ef
com.example.cuida:attr/contentPaddingLeft = 0x7f04014c
+com.example.cuida:style/Widget.Material3.Button.TextButton.Dialog = 0x7f13035b
com.example.cuida:color/m3_timepicker_secondary_text_button_text_color = 0x7f06021f
com.example.cuida:styleable/MaterialButtonToggleGroup = 0x7f140056
com.example.cuida:dimen/mtrl_switch_track_width = 0x7f0702f7
com.example.cuida:color/m3_timepicker_secondary_text_button_ripple_color = 0x7f06021e
-com.example.cuida:bool/abc_action_bar_embed_tabs = 0x7f050000
com.example.cuida:dimen/abc_text_size_subtitle_material_toolbar = 0x7f07004e
-com.example.cuida:style/Platform.ThemeOverlay.AppCompat = 0x7f13013c
+com.example.cuida:bool/abc_action_bar_embed_tabs = 0x7f050000
com.example.cuida:color/m3_timepicker_display_text_color = 0x7f06021d
-com.example.cuida:id/clip_vertical = 0x7f090091
+com.example.cuida:style/Platform.ThemeOverlay.AppCompat = 0x7f13013c
+com.example.cuida:macro/m3_comp_search_bar_container_color = 0x7f0d00e7
+com.example.cuida:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu = 0x7f13044f
+com.example.cuida:dimen/mtrl_badge_long_text_horizontal_padding = 0x7f070249
+com.example.cuida:style/ThemeOverlay.MaterialComponents.Dark = 0x7f1302ca
com.example.cuida:color/m3_timepicker_display_ripple_color = 0x7f06021c
+com.example.cuida:id/clip_vertical = 0x7f090092
com.example.cuida:color/m3_timepicker_button_ripple_color = 0x7f060218
-com.example.cuida:attr/layout_constraintLeft_toRightOf = 0x7f0402a5
-com.example.cuida:color/m3_textfield_filled_background_color = 0x7f060212
-com.example.cuida:id/startToEnd = 0x7f0901f2
-com.example.cuida:color/m3_text_button_ripple_color_selector = 0x7f060211
-com.example.cuida:id/included = 0x7f090108
+com.example.cuida:id/included = 0x7f09010d
com.example.cuida:dimen/hint_alpha_material_dark = 0x7f070099
-com.example.cuida:color/m3_tabs_ripple_color_secondary = 0x7f06020c
com.example.cuida:id/accessibility_action_clickable_span = 0x7f09000f
com.example.cuida:color/material_dynamic_secondary30 = 0x7f06025c
-com.example.cuida:color/ripple_material_light = 0x7f06030e
-com.example.cuida:color/m3_sys_color_on_secondary_fixed = 0x7f0601ff
-com.example.cuida:dimen/design_bottom_navigation_margin = 0x7f07006a
-com.example.cuida:color/m3_sys_color_on_primary_fixed_variant = 0x7f0601fe
-com.example.cuida:color/m3_sys_color_light_surface_variant = 0x7f0601fa
com.example.cuida:color/material_personalized_color_text_secondary_and_tertiary_inverse_disabled = 0x7f0602b6
-com.example.cuida:color/m3_sys_color_dark_surface_container_lowest = 0x7f060186
com.example.cuida:color/m3_sys_color_light_surface_dim = 0x7f0601f9
+com.example.cuida:color/m3_sys_color_dark_surface_container_lowest = 0x7f060186
com.example.cuida:attr/liftOnScroll = 0x7f0402c9
com.example.cuida:color/m3_sys_color_light_surface_container_high = 0x7f0601f5
-com.example.cuida:attr/colorBackgroundFloating = 0x7f0400fc
com.example.cuida:drawable/abc_list_selector_background_transition_holo_light = 0x7f080053
-com.example.cuida:attr/fontWeight = 0x7f040218
+com.example.cuida:attr/colorBackgroundFloating = 0x7f0400fc
com.example.cuida:color/m3_sys_color_light_surface_bright = 0x7f0601f3
-com.example.cuida:id/easeIn = 0x7f0900c4
+com.example.cuida:attr/fontWeight = 0x7f040218
+com.example.cuida:id/easeIn = 0x7f0900c5
com.example.cuida:color/m3_timepicker_display_background_color = 0x7f06021b
+com.example.cuida:color/m3_sys_color_light_surface = 0x7f0601f2
+com.example.cuida:attr/hintAnimationEnabled = 0x7f04022f
com.example.cuida:style/Widget.MaterialComponents.TimePicker.Clock = 0x7f130453
com.example.cuida:style/Widget.MaterialComponents.TabLayout.Colored = 0x7f130442
-com.example.cuida:attr/hintAnimationEnabled = 0x7f04022f
-com.example.cuida:color/m3_sys_color_light_surface = 0x7f0601f2
-com.example.cuida:color/m3_ref_palette_dynamic_tertiary50 = 0x7f060100
com.example.cuida:dimen/notification_main_column_padding_top = 0x7f07030e
-com.example.cuida:attr/boxStrokeWidthFocused = 0x7f04008d
-com.example.cuida:attr/switchStyle = 0x7f040431
+com.example.cuida:color/m3_ref_palette_dynamic_tertiary50 = 0x7f060100
com.example.cuida:color/m3_sys_color_light_primary_container = 0x7f0601ef
-com.example.cuida:dimen/mtrl_tooltip_cornerSize = 0x7f070303
-com.example.cuida:color/m3_sys_color_light_primary = 0x7f0601ee
+com.example.cuida:attr/switchStyle = 0x7f040431
+com.example.cuida:attr/boxStrokeWidthFocused = 0x7f04008d
com.example.cuida:color/material_grey_50 = 0x7f060274
com.example.cuida:color/m3_sys_color_light_on_tertiary = 0x7f0601ea
-com.example.cuida:color/m3_sys_color_light_on_surface_variant = 0x7f0601e9
+com.example.cuida:color/m3_sys_color_on_tertiary_fixed_variant = 0x7f060202
+com.example.cuida:color/tooltip_background_dark = 0x7f060320
+com.example.cuida:dimen/material_input_text_to_prefix_suffix_padding = 0x7f07023d
com.example.cuida:dimen/m3_navigation_rail_item_padding_top = 0x7f0701cf
-com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderSelection = 0x7f1303a1
com.example.cuida:color/m3_sys_color_light_on_secondary_container = 0x7f0601e7
+com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderSelection = 0x7f1303a1
com.example.cuida:style/ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework = 0x7f1302d1
com.example.cuida:color/m3_sys_color_light_on_error = 0x7f0601e2
-com.example.cuida:anim/mtrl_bottom_sheet_slide_out = 0x7f01002a
-com.example.cuida:bool/abc_config_actionMenuItemAllCaps = 0x7f050001
-com.example.cuida:color/m3_sys_color_light_inverse_surface = 0x7f0601e0
com.example.cuida:color/m3_sys_color_light_inverse_primary = 0x7f0601df
-com.example.cuida:macro/m3_comp_navigation_drawer_inactive_hover_state_layer_color = 0x7f0d008e
com.example.cuida:macro/m3_comp_date_picker_modal_header_headline_type = 0x7f0d0017
com.example.cuida:attr/contentPaddingBottom = 0x7f04014a
+com.example.cuida:macro/m3_comp_navigation_drawer_inactive_hover_state_layer_color = 0x7f0d008e
com.example.cuida:color/m3_sys_color_light_error_container = 0x7f0601dd
com.example.cuida:attr/contentPadding = 0x7f040149
com.example.cuida:color/m3_sys_color_light_error = 0x7f0601dc
com.example.cuida:dimen/fastscroll_default_thickness = 0x7f070092
-com.example.cuida:style/Widget.Material3.NavigationView = 0x7f1303ba
+com.example.cuida:color/m3_sys_color_dynamic_tertiary_fixed_dim = 0x7f0601da
com.example.cuida:dimen/m3_comp_time_picker_time_selector_hover_state_layer_opacity = 0x7f0701a3
com.example.cuida:dimen/mtrl_calendar_maximum_default_fullscreen_minor_axis = 0x7f070285
-com.example.cuida:color/m3_sys_color_dynamic_tertiary_fixed_dim = 0x7f0601da
+com.example.cuida:style/Widget.Material3.NavigationView = 0x7f1303ba
com.example.cuida:color/m3_sys_color_dynamic_primary_fixed = 0x7f0601d5
-com.example.cuida:attr/titleCentered = 0x7f0404b1
-com.example.cuida:color/m3_sys_color_dynamic_on_tertiary_fixed = 0x7f0601d3
-com.example.cuida:color/m3_sys_color_on_tertiary_fixed_variant = 0x7f060202
-com.example.cuida:dimen/material_input_text_to_prefix_suffix_padding = 0x7f07023d
-com.example.cuida:color/tooltip_background_dark = 0x7f060320
-com.example.cuida:macro/m3_comp_time_picker_period_selector_outline_color = 0x7f0d0155
com.example.cuida:attr/shapeCornerFamily = 0x7f0403df
com.example.cuida:color/m3_sys_color_dynamic_on_secondary_fixed_variant = 0x7f0601d2
-com.example.cuida:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu = 0x7f13044f
-com.example.cuida:style/ThemeOverlay.MaterialComponents.Dark = 0x7f1302ca
-com.example.cuida:macro/m3_comp_search_bar_container_color = 0x7f0d00e7
-com.example.cuida:dimen/mtrl_badge_long_text_horizontal_padding = 0x7f070249
-com.example.cuida:attr/tabIndicatorColor = 0x7f04043b
-com.example.cuida:color/m3_sys_color_dynamic_on_secondary_fixed = 0x7f0601d1
-com.example.cuida:layout/mtrl_search_view = 0x7f0c0072
-com.example.cuida:color/m3_sys_color_dynamic_light_on_surface = 0x7f0601ba
+com.example.cuida:macro/m3_comp_time_picker_period_selector_outline_color = 0x7f0d0155
+com.example.cuida:layout/mtrl_search_view = 0x7f0c0073
com.example.cuida:dimen/m3_comp_filled_text_field_disabled_active_indicator_opacity = 0x7f07012e
+com.example.cuida:color/m3_sys_color_dynamic_light_on_surface = 0x7f0601ba
com.example.cuida:color/m3_sys_color_dynamic_on_primary_fixed = 0x7f0601cf
com.example.cuida:dimen/material_filled_edittext_font_2_0_padding_bottom = 0x7f070236
com.example.cuida:color/m3_sys_color_dynamic_light_tertiary_container = 0x7f0601ce
-com.example.cuida:style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse = 0x7f1301b8
-com.example.cuida:color/m3_sys_color_dynamic_light_tertiary = 0x7f0601cd
com.example.cuida:string/mtrl_picker_announce_current_selection_none = 0x7f1200a0
com.example.cuida:color/m3_sys_color_dynamic_light_surface_variant = 0x7f0601cc
-com.example.cuida:dimen/m3_btn_text_btn_padding_left = 0x7f0700e3
+com.example.cuida:color/m3_ref_palette_primary20 = 0x7f06013c
com.example.cuida:color/primary_light_color = 0x7f060303
-com.example.cuida:style/TextAppearance.AppCompat.Tooltip = 0x7f1301af
-com.example.cuida:id/mtrl_calendar_year_selector_frame = 0x7f09014e
-com.example.cuida:attr/imageButtonStyle = 0x7f040245
com.example.cuida:color/m3_sys_color_dynamic_light_surface_container_lowest = 0x7f0601ca
-com.example.cuida:color/m3_sys_color_dynamic_light_surface_container_low = 0x7f0601c9
-com.example.cuida:style/Widget.MaterialComponents.NavigationRailView.Colored = 0x7f130432
+com.example.cuida:id/mtrl_calendar_year_selector_frame = 0x7f090153
+com.example.cuida:style/TextAppearance.AppCompat.Tooltip = 0x7f1301af
+com.example.cuida:attr/imageButtonStyle = 0x7f040245
com.example.cuida:attr/strokeWidth = 0x7f04041f
com.example.cuida:dimen/mtrl_btn_inset = 0x7f07025f
-com.example.cuida:id/graph_wrap = 0x7f0900f5
+com.example.cuida:style/Widget.MaterialComponents.NavigationRailView.Colored = 0x7f130432
com.example.cuida:color/m3_sys_color_dynamic_light_surface_container_highest = 0x7f0601c8
-com.example.cuida:style/Widget.MaterialComponents.TabLayout = 0x7f130441
-com.example.cuida:style/Base.Theme.MaterialComponents.Light.Dialog = 0x7f130072
-com.example.cuida:color/m3_sys_color_dynamic_light_surface_container_high = 0x7f0601c7
-com.example.cuida:id/end = 0x7f0900d4
-com.example.cuida:color/material_grey_100 = 0x7f060272
-com.example.cuida:id/unchecked = 0x7f090233
-com.example.cuida:color/m3_sys_color_dynamic_light_surface_bright = 0x7f0601c5
-com.example.cuida:color/m3_sys_color_dynamic_light_secondary_container = 0x7f0601c3
-com.example.cuida:style/ShapeAppearanceOverlay.Material3.NavigationView.Item = 0x7f130187
-com.example.cuida:color/m3_sys_color_dynamic_light_outline_variant = 0x7f0601bf
-com.example.cuida:styleable/DialogFragmentNavigator = 0x7f140032
-com.example.cuida:color/m3_ref_palette_primary10 = 0x7f06013a
+com.example.cuida:id/graph_wrap = 0x7f0900fa
com.example.cuida:dimen/abc_star_small = 0x7f07003d
-com.example.cuida:macro/m3_comp_radio_button_selected_focus_icon_color = 0x7f0d00d9
-com.example.cuida:id/tag_accessibility_clickable_spans = 0x7f0901fd
+com.example.cuida:color/m3_ref_palette_primary10 = 0x7f06013a
+com.example.cuida:styleable/DialogFragmentNavigator = 0x7f140032
com.example.cuida:color/m3_sys_color_dynamic_light_outline = 0x7f0601be
-com.example.cuida:color/m3_sys_color_dynamic_light_on_tertiary = 0x7f0601bc
+com.example.cuida:macro/m3_comp_radio_button_selected_focus_icon_color = 0x7f0d00d9
+com.example.cuida:id/tag_accessibility_clickable_spans = 0x7f090202
com.example.cuida:dimen/m3_comp_suggestion_chip_container_height = 0x7f070187
com.example.cuida:color/m3_sys_color_dynamic_light_on_secondary = 0x7f0601b8
com.example.cuida:style/TextAppearance.Material3.ActionBar.Subtitle = 0x7f1301e2
com.example.cuida:attr/fastScrollHorizontalTrackDrawable = 0x7f0401e4
com.example.cuida:dimen/design_navigation_item_horizontal_padding = 0x7f07007a
com.example.cuida:color/m3_sys_color_dynamic_light_on_error = 0x7f0601b4
-com.example.cuida:dimen/mtrl_calendar_header_toggle_margin_bottom = 0x7f070282
com.example.cuida:color/ripple_material_dark = 0x7f06030d
-com.example.cuida:macro/m3_comp_filled_tonal_icon_button_toggle_selected_icon_color = 0x7f0d0056
+com.example.cuida:dimen/mtrl_calendar_header_toggle_margin_bottom = 0x7f070282
com.example.cuida:color/m3_sys_color_dynamic_light_on_background = 0x7f0601b3
+com.example.cuida:macro/m3_comp_filled_tonal_icon_button_toggle_selected_icon_color = 0x7f0d0056
+com.example.cuida:color/m3_sys_color_dynamic_light_on_surface_variant = 0x7f0601bb
com.example.cuida:integer/m3_sys_motion_duration_short1 = 0x7f0a001d
com.example.cuida:attr/materialDividerHeavyStyle = 0x7f040306
-com.example.cuida:color/m3_sys_color_dynamic_light_on_surface_variant = 0x7f0601bb
-com.example.cuida:style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f1301c2
com.example.cuida:color/m3_sys_color_dynamic_light_inverse_on_surface = 0x7f0601b0
-com.example.cuida:layout/notification_action = 0x7f0c0073
+com.example.cuida:style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f1301c2
+com.example.cuida:layout/notification_action = 0x7f0c0074
com.example.cuida:dimen/m3_appbar_expanded_title_margin_horizontal = 0x7f0700a8
com.example.cuida:color/m3_sys_color_dynamic_light_error_container = 0x7f0601af
-com.example.cuida:color/m3_sys_color_dynamic_light_error = 0x7f0601ae
-com.example.cuida:attr/colorOnTertiaryContainer = 0x7f040116
-com.example.cuida:color/m3_sys_color_dynamic_dark_tertiary_container = 0x7f0601ac
-com.example.cuida:id/login_link = 0x7f09011f
com.example.cuida:drawable/abc_btn_check_to_on_mtrl_000 = 0x7f08002d
+com.example.cuida:id/login_link = 0x7f090124
+com.example.cuida:color/m3_sys_color_dynamic_dark_tertiary = 0x7f0601ab
com.example.cuida:style/TextAppearance.MaterialComponents.Tooltip = 0x7f130207
com.example.cuida:string/abc_search_hint = 0x7f120012
-com.example.cuida:color/m3_sys_color_dynamic_dark_tertiary = 0x7f0601ab
com.example.cuida:color/m3_textfield_label_color = 0x7f060215
com.example.cuida:color/m3_sys_color_dynamic_dark_surface_container_lowest = 0x7f0601a8
-com.example.cuida:style/Base.TextAppearance.MaterialComponents.Subtitle2 = 0x7f130047
com.example.cuida:color/m3_sys_color_dynamic_dark_surface_container = 0x7f0601a4
-com.example.cuida:dimen/m3_sys_motion_easing_emphasized_decelerate_control_y1 = 0x7f0701f9
-com.example.cuida:color/m3_sys_color_dynamic_dark_secondary = 0x7f0601a0
+com.example.cuida:style/Base.TextAppearance.MaterialComponents.Subtitle2 = 0x7f130047
com.example.cuida:color/m3_sys_color_dynamic_dark_primary = 0x7f06019e
-com.example.cuida:color/m3_sys_color_dynamic_dark_outline_variant = 0x7f06019d
-com.example.cuida:dimen/m3_sys_motion_easing_legacy_accelerate_control_x1 = 0x7f0701fb
-com.example.cuida:attr/dragDirection = 0x7f040191
com.example.cuida:color/material_personalized_color_on_secondary_container = 0x7f060295
com.example.cuida:attr/titleTextColor = 0x7f0404bc
+com.example.cuida:attr/dragDirection = 0x7f040191
+com.example.cuida:dimen/m3_sys_motion_easing_legacy_accelerate_control_x1 = 0x7f0701fb
com.example.cuida:dimen/appcompat_dialog_background_inset = 0x7f070051
-com.example.cuida:color/m3_sys_color_dynamic_dark_on_surface_variant = 0x7f060199
-com.example.cuida:attr/colorOnSecondary = 0x7f04010e
com.example.cuida:color/m3_sys_color_dynamic_dark_on_surface = 0x7f060198
+com.example.cuida:attr/colorOnSecondary = 0x7f04010e
com.example.cuida:dimen/material_helper_text_font_1_3_padding_top = 0x7f07023c
com.example.cuida:dimen/m3_comp_search_view_container_elevation = 0x7f070174
-com.example.cuida:attr/actionButtonStyle = 0x7f04000e
com.example.cuida:color/m3_sys_color_dynamic_dark_on_secondary = 0x7f060196
-com.example.cuida:attr/layout_scrollEffect = 0x7f0402c5
+com.example.cuida:attr/actionButtonStyle = 0x7f04000e
com.example.cuida:color/m3_sys_color_dynamic_dark_on_primary = 0x7f060194
-com.example.cuida:style/Theme.AppCompat.Light.NoActionBar = 0x7f13021f
-com.example.cuida:color/m3_sys_color_dynamic_dark_on_error = 0x7f060192
+com.example.cuida:attr/layout_scrollEffect = 0x7f0402c5
com.example.cuida:color/m3_sys_color_dynamic_dark_error_container = 0x7f06018d
-com.example.cuida:color/m3_sys_color_dynamic_dark_background = 0x7f06018b
-com.example.cuida:dimen/mtrl_slider_label_radius = 0x7f0702e4
-com.example.cuida:color/m3_sys_color_dark_tertiary_container = 0x7f06018a
-com.example.cuida:drawable/mtrl_ic_check_mark = 0x7f0800dd
com.example.cuida:color/m3_sys_color_dark_surface_container_high = 0x7f060183
+com.example.cuida:drawable/mtrl_ic_check_mark = 0x7f0800dd
com.example.cuida:style/Widget.AppCompat.ListView = 0x7f130318
-com.example.cuida:id/pressed = 0x7f0901a1
+com.example.cuida:id/pressed = 0x7f0901a6
com.example.cuida:dimen/design_bottom_navigation_active_item_min_width = 0x7f070062
com.example.cuida:color/m3_sys_color_dynamic_light_on_tertiary_container = 0x7f0601bd
com.example.cuida:color/m3_sys_color_dark_surface_container = 0x7f060182
-com.example.cuida:macro/m3_comp_navigation_drawer_active_focus_icon_color = 0x7f0d007b
com.example.cuida:attr/dayStyle = 0x7f040179
com.example.cuida:color/m3_sys_color_dark_surface_bright = 0x7f060181
-com.example.cuida:styleable/NavigationRailView = 0x7f140078
+com.example.cuida:macro/m3_comp_navigation_drawer_active_focus_icon_color = 0x7f0d007b
com.example.cuida:dimen/m3_comp_input_chip_container_elevation = 0x7f070134
+com.example.cuida:styleable/NavigationRailView = 0x7f140078
com.example.cuida:dimen/m3_comp_extended_fab_primary_hover_container_elevation = 0x7f070114
com.example.cuida:color/m3_sys_color_dark_surface = 0x7f060180
com.example.cuida:attr/behavior_skipCollapsed = 0x7f040077
com.example.cuida:dimen/m3_small_fab_max_image_size = 0x7f0701e9
-com.example.cuida:style/Widget.AppCompat.TextView.SpinnerItem = 0x7f13032c
-com.example.cuida:color/m3_sys_color_dark_secondary_container = 0x7f06017f
-com.example.cuida:attr/actionModeCutDrawable = 0x7f040018
-com.example.cuida:color/m3_sys_color_dark_secondary = 0x7f06017e
-com.example.cuida:style/Widget.Material3.PopupMenu.ContextMenu = 0x7f1303bc
-com.example.cuida:attr/colorPrimary = 0x7f04011b
-com.example.cuida:color/m3_sys_color_dark_primary_container = 0x7f06017d
-com.example.cuida:dimen/m3_bottomappbar_fab_cradle_vertical_offset = 0x7f0700ca
-com.example.cuida:dimen/mtrl_progress_circular_inset = 0x7f0702d1
-com.example.cuida:style/Theme.AppCompat.DayNight = 0x7f13020d
-com.example.cuida:dimen/abc_action_button_min_height_material = 0x7f07000d
-com.example.cuida:id/CTRL = 0x7f090003
-com.example.cuida:color/m3_sys_color_dark_primary = 0x7f06017c
-com.example.cuida:macro/m3_comp_outlined_text_field_outline_color = 0x7f0d00c6
com.example.cuida:color/material_dynamic_tertiary90 = 0x7f06026f
-com.example.cuida:color/m3_ref_palette_secondary60 = 0x7f06014d
+com.example.cuida:macro/m3_comp_outlined_text_field_outline_color = 0x7f0d00c6
com.example.cuida:drawable/ic_call_decline = 0x7f0800a2
+com.example.cuida:color/m3_ref_palette_secondary60 = 0x7f06014d
com.example.cuida:color/material_timepicker_button_background = 0x7f0602c1
-com.example.cuida:dimen/abc_dialog_padding_top_material = 0x7f070025
com.example.cuida:color/m3_sys_color_dark_outline = 0x7f06017a
-com.example.cuida:dimen/m3_sys_motion_easing_legacy_control_x1 = 0x7f0701ff
+com.example.cuida:dimen/abc_dialog_padding_top_material = 0x7f070025
com.example.cuida:color/purple_500 = 0x7f06030b
+com.example.cuida:dimen/m3_sys_motion_easing_legacy_control_x1 = 0x7f0701ff
com.example.cuida:color/m3_sys_color_dynamic_light_on_error_container = 0x7f0601b5
com.example.cuida:color/m3_sys_color_dark_on_surface = 0x7f060176
-com.example.cuida:color/m3_sys_color_dark_on_secondary = 0x7f060174
-com.example.cuida:style/TextAppearance.AppCompat.Subhead = 0x7f1301ab
com.example.cuida:color/m3_sys_color_dark_on_primary_container = 0x7f060173
+com.example.cuida:style/TextAppearance.AppCompat.Subhead = 0x7f1301ab
com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderSelection = 0x7f130425
com.example.cuida:color/m3_sys_color_dark_on_primary = 0x7f060172
-com.example.cuida:color/m3_textfield_indicator_text_color = 0x7f060213
-com.example.cuida:id/position = 0x7f09019f
-com.example.cuida:color/m3_selection_control_ripple_color_selector = 0x7f060161
-com.example.cuida:color/m3_sys_color_dark_on_background = 0x7f06016f
com.example.cuida:attr/tabRippleColor = 0x7f040448
com.example.cuida:color/m3_sys_color_dark_inverse_surface = 0x7f06016e
com.example.cuida:styleable/StateSet = 0x7f140096
com.example.cuida:color/m3_sys_color_dark_inverse_primary = 0x7f06016d
-com.example.cuida:macro/m3_comp_filled_tonal_icon_button_toggle_unselected_icon_color = 0x7f0d0057
com.example.cuida:attr/badgeRadius = 0x7f040059
com.example.cuida:dimen/mtrl_textinput_box_corner_radius_medium = 0x7f0702f8
-com.example.cuida:id/noScroll = 0x7f090176
+com.example.cuida:macro/m3_comp_filled_tonal_icon_button_toggle_unselected_icon_color = 0x7f0d0057
com.example.cuida:color/m3_sys_color_dark_inverse_on_surface = 0x7f06016c
-com.example.cuida:anim/abc_fade_out = 0x7f010001
+com.example.cuida:id/noScroll = 0x7f09017b
com.example.cuida:color/m3_sys_color_dark_error_container = 0x7f06016b
-com.example.cuida:style/Theme.Material3.Light.Dialog.MinWidth = 0x7f130240
-com.example.cuida:color/m3_sys_color_dark_error = 0x7f06016a
+com.example.cuida:anim/abc_fade_out = 0x7f010001
com.example.cuida:drawable/fingerprint_dialog_error = 0x7f080099
com.example.cuida:dimen/material_font_2_0_box_collapsed_padding_top = 0x7f070239
+com.example.cuida:color/m3_sys_color_dark_background = 0x7f060169
com.example.cuida:style/ShapeAppearance.M3.Comp.Sheet.Side.Docked.Container.Shape = 0x7f130162
com.example.cuida:string/bottom_sheet_behavior = 0x7f120022
-com.example.cuida:color/m3_sys_color_dark_background = 0x7f060169
+com.example.cuida:color/m3_slider_thumb_color = 0x7f060166
+com.example.cuida:attr/fastScrollHorizontalThumbDrawable = 0x7f0401e3
com.example.cuida:style/Base.TextAppearance.AppCompat.Tooltip = 0x7f130031
com.example.cuida:string/call_notification_screening_text = 0x7f12002e
-com.example.cuida:attr/fastScrollHorizontalThumbDrawable = 0x7f0401e3
-com.example.cuida:color/m3_slider_thumb_color = 0x7f060166
com.example.cuida:color/mtrl_choice_chip_ripple_color = 0x7f0602d7
com.example.cuida:color/m3_slider_halo_color = 0x7f060164
com.example.cuida:color/m3_slider_active_track_color = 0x7f060163
-com.example.cuida:dimen/mtrl_calendar_navigation_top_padding = 0x7f07028a
-com.example.cuida:attr/textureEffect = 0x7f040493
-com.example.cuida:color/material_personalized_color_surface_container = 0x7f0602a8
-com.example.cuida:color/m3_ref_palette_dynamic_neutral70 = 0x7f0600be
-com.example.cuida:color/material_blue_grey_800 = 0x7f060222
com.example.cuida:dimen/mtrl_calendar_year_vertical_padding = 0x7f070296
-com.example.cuida:attr/closeIconSize = 0x7f0400ea
com.example.cuida:color/m3_ref_palette_tertiary90 = 0x7f06015d
-com.example.cuida:attr/contentDescription = 0x7f040142
+com.example.cuida:attr/closeIconSize = 0x7f0400ea
com.example.cuida:attr/showDelay = 0x7f0403e4
com.example.cuida:color/m3_ref_palette_tertiary80 = 0x7f06015c
+com.example.cuida:attr/contentDescription = 0x7f040142
com.example.cuida:string/fingerprint_not_recognized = 0x7f120058
-com.example.cuida:id/text_date = 0x7f090211
com.example.cuida:color/m3_ref_palette_tertiary60 = 0x7f06015a
-com.example.cuida:id/cache_measures = 0x7f09007c
-com.example.cuida:color/material_personalized_color_outline_variant = 0x7f06029c
-com.example.cuida:dimen/m3_bottom_sheet_elevation = 0x7f0700c6
-com.example.cuida:color/m3_ref_palette_neutral22 = 0x7f06011a
-com.example.cuida:color/m3_ref_palette_tertiary10 = 0x7f060154
-com.example.cuida:style/ThemeOverlay.Material3.DynamicColors.DayNight = 0x7f13029b
-com.example.cuida:id/showHome = 0x7f0901d7
+com.example.cuida:id/text_date = 0x7f090216
+com.example.cuida:id/showHome = 0x7f0901dc
com.example.cuida:color/m3_ref_palette_tertiary0 = 0x7f060153
-com.example.cuida:color/m3_ref_palette_dynamic_secondary99 = 0x7f0600f9
-com.example.cuida:attr/textInputFilledStyle = 0x7f040486
-com.example.cuida:color/m3_ref_palette_secondary99 = 0x7f060152
+com.example.cuida:style/ThemeOverlay.Material3.DynamicColors.DayNight = 0x7f13029b
com.example.cuida:color/m3_ref_palette_secondary90 = 0x7f060150
-com.example.cuida:color/m3_ref_palette_secondary70 = 0x7f06014e
-com.example.cuida:layout/mtrl_alert_dialog_title = 0x7f0c0055
-com.example.cuida:color/m3_ref_palette_secondary50 = 0x7f06014c
-com.example.cuida:attr/layout_anchorGravity = 0x7f040285
-com.example.cuida:color/m3_ref_palette_secondary40 = 0x7f06014b
com.example.cuida:style/ThemeOverlay.Material3.MaterialCalendar.HeaderCancelButton = 0x7f1302ad
com.example.cuida:color/m3_ref_palette_secondary30 = 0x7f06014a
-com.example.cuida:color/m3_chip_stroke_color = 0x7f060085
com.example.cuida:color/m3_ref_palette_secondary100 = 0x7f060148
-com.example.cuida:color/m3_ref_palette_dynamic_neutral_variant80 = 0x7f0600d7
+com.example.cuida:color/m3_chip_stroke_color = 0x7f060085
com.example.cuida:color/m3_ref_palette_secondary10 = 0x7f060147
-com.example.cuida:id/chain2 = 0x7f090087
+com.example.cuida:color/m3_ref_palette_dynamic_neutral_variant80 = 0x7f0600d7
+com.example.cuida:id/chain2 = 0x7f090088
com.example.cuida:color/m3_ref_palette_secondary0 = 0x7f060146
com.example.cuida:dimen/m3_side_sheet_standard_elevation = 0x7f0701e3
-com.example.cuida:attr/textBackgroundPanY = 0x7f04047d
com.example.cuida:color/m3_ref_palette_primary99 = 0x7f060145
-com.example.cuida:color/m3_ref_palette_primary90 = 0x7f060143
-com.example.cuida:string/m3_sys_motion_easing_standard_accelerate = 0x7f120075
+com.example.cuida:attr/textBackgroundPanY = 0x7f04047d
com.example.cuida:color/m3_ref_palette_primary80 = 0x7f060142
+com.example.cuida:string/m3_sys_motion_easing_standard_accelerate = 0x7f120075
com.example.cuida:color/m3_ref_palette_primary60 = 0x7f060140
-com.example.cuida:color/m3_ref_palette_primary50 = 0x7f06013f
-com.example.cuida:color/m3_ref_palette_primary20 = 0x7f06013c
-com.example.cuida:style/TextAppearance.MaterialComponents.Body2 = 0x7f1301f9
com.example.cuida:color/m3_ref_palette_primary100 = 0x7f06013b
-com.example.cuida:dimen/mtrl_badge_text_size = 0x7f07024c
-com.example.cuida:styleable/FragmentNavigator = 0x7f14003f
+com.example.cuida:style/TextAppearance.MaterialComponents.Body2 = 0x7f1301f9
com.example.cuida:color/abc_search_url_text_pressed = 0x7f06000f
+com.example.cuida:styleable/FragmentNavigator = 0x7f14003f
com.example.cuida:color/m3_ref_palette_neutral_variant99 = 0x7f060138
+com.example.cuida:drawable/common_google_signin_btn_icon_dark_normal = 0x7f080084
com.example.cuida:macro/m3_comp_outlined_text_field_container_shape = 0x7f0d00b4
com.example.cuida:attr/itemFillColor = 0x7f040259
-com.example.cuida:drawable/common_google_signin_btn_icon_dark_normal = 0x7f080084
com.example.cuida:color/m3_ref_palette_neutral_variant95 = 0x7f060137
com.example.cuida:color/m3_ref_palette_neutral_variant80 = 0x7f060135
-com.example.cuida:attr/sizePercent = 0x7f0403f4
-com.example.cuida:dimen/m3_sys_motion_easing_standard_accelerate_control_y1 = 0x7f07020d
-com.example.cuida:color/m3_ref_palette_neutral_variant70 = 0x7f060134
com.example.cuida:color/m3_ref_palette_neutral_variant50 = 0x7f060132
-com.example.cuida:attr/arcMode = 0x7f04003c
com.example.cuida:color/m3_ref_palette_neutral94 = 0x7f060127
com.example.cuida:color/m3_ref_palette_neutral_variant40 = 0x7f060131
+com.example.cuida:attr/arcMode = 0x7f04003c
com.example.cuida:color/m3_ref_palette_neutral_variant20 = 0x7f06012f
com.example.cuida:style/Theme.AppCompat = 0x7f13020b
com.example.cuida:color/m3_ref_palette_neutral_variant100 = 0x7f06012e
-com.example.cuida:drawable/mtrl_checkbox_button_icon_checked_indeterminate = 0x7f0800d1
com.example.cuida:color/m3_ref_palette_neutral12 = 0x7f060117
com.example.cuida:color/m3_ref_palette_neutral_variant0 = 0x7f06012c
-com.example.cuida:color/m3_ref_palette_neutral98 = 0x7f06012a
-com.example.cuida:color/m3_ref_palette_neutral96 = 0x7f060129
-com.example.cuida:attr/labelVisibilityMode = 0x7f04027b
-com.example.cuida:color/m3_ref_palette_neutral92 = 0x7f060126
com.example.cuida:attr/ratingBarStyleSmall = 0x7f0403b1
com.example.cuida:color/m3_ref_palette_neutral80 = 0x7f060123
com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.HeaderLayout.Fullscreen = 0x7f130424
@@ -3185,29 +3195,26 @@ com.example.cuida:color/m3_ref_palette_neutral40 = 0x7f06011e
com.example.cuida:style/Theme.Material3.Dark.BottomSheetDialog = 0x7f13022a
com.example.cuida:color/m3_ref_palette_neutral4 = 0x7f06011d
com.example.cuida:macro/m3_comp_sheet_bottom_docked_container_shape = 0x7f0d0106
-com.example.cuida:id/checkbox = 0x7f090089
-com.example.cuida:attr/colorSurfaceContainerLow = 0x7f04012e
com.example.cuida:color/m3_sys_color_dynamic_light_on_primary = 0x7f0601b6
-com.example.cuida:color/m3_ref_palette_dynamic_neutral98 = 0x7f0600c6
+com.example.cuida:id/checkbox = 0x7f09008a
+com.example.cuida:attr/colorSurfaceContainerLow = 0x7f04012e
com.example.cuida:color/m3_ref_palette_neutral30 = 0x7f06011c
-com.example.cuida:style/Base.Theme.Material3.Dark.BottomSheetDialog = 0x7f13005a
-com.example.cuida:color/m3_ref_palette_neutral24 = 0x7f06011b
-com.example.cuida:color/m3_ref_palette_neutral20 = 0x7f060119
+com.example.cuida:color/m3_ref_palette_dynamic_neutral98 = 0x7f0600c6
com.example.cuida:id/accessibility_custom_action_4 = 0x7f09002a
-com.example.cuida:color/m3_assist_chip_stroke_color = 0x7f060074
com.example.cuida:color/m3_ref_palette_neutral17 = 0x7f060118
+com.example.cuida:color/m3_assist_chip_stroke_color = 0x7f060074
com.example.cuida:drawable/mtrl_checkbox_button_icon_indeterminate_unchecked = 0x7f0800d4
com.example.cuida:styleable/DrawerArrowToggle = 0x7f140033
com.example.cuida:style/Widget.Material3.BottomSheet.DragHandle = 0x7f13034e
com.example.cuida:color/m3_text_button_foreground_color_selector = 0x7f060210
com.example.cuida:color/m3_ref_palette_neutral100 = 0x7f060116
com.example.cuida:string/abc_searchview_description_voice = 0x7f120017
-com.example.cuida:id/mtrl_picker_header_title_and_selection = 0x7f090156
+com.example.cuida:id/mtrl_picker_header_title_and_selection = 0x7f09015b
com.example.cuida:color/material_dynamic_neutral_variant60 = 0x7f060245
com.example.cuida:macro/m3_comp_slider_active_track_color = 0x7f0d010c
com.example.cuida:color/m3_ref_palette_neutral10 = 0x7f060115
com.example.cuida:color/m3_ref_palette_neutral0 = 0x7f060114
-com.example.cuida:id/container = 0x7f090098
+com.example.cuida:id/container = 0x7f090099
com.example.cuida:color/m3_ref_palette_error95 = 0x7f060112
com.example.cuida:dimen/m3_comp_navigation_bar_focus_state_layer_opacity = 0x7f07013f
com.example.cuida:attr/titleMarginBottom = 0x7f0404b5
@@ -3230,7 +3237,7 @@ com.example.cuida:string/mtrl_timepicker_confirm = 0x7f1200ca
com.example.cuida:string/abc_menu_shift_shortcut_label = 0x7f12000e
com.example.cuida:attr/actionBarTabStyle = 0x7f04000a
com.example.cuida:color/m3_ref_palette_dynamic_tertiary40 = 0x7f0600ff
-com.example.cuida:id/hide_ime_id = 0x7f0900fa
+com.example.cuida:id/hide_ime_id = 0x7f0900ff
com.example.cuida:color/m3_ref_palette_dynamic_tertiary30 = 0x7f0600fe
com.example.cuida:attr/colorSecondaryVariant = 0x7f040128
com.example.cuida:dimen/material_divider_thickness = 0x7f07022f
@@ -3259,7 +3266,7 @@ com.example.cuida:color/m3_ref_palette_dynamic_primary99 = 0x7f0600ec
com.example.cuida:color/m3_ref_palette_dynamic_primary95 = 0x7f0600eb
com.example.cuida:dimen/m3_searchview_divider_size = 0x7f0701de
com.example.cuida:color/m3_ref_palette_dynamic_primary90 = 0x7f0600ea
-com.example.cuida:layout/mtrl_picker_header_toggle = 0x7f0c006e
+com.example.cuida:layout/mtrl_picker_header_toggle = 0x7f0c006f
com.example.cuida:color/material_dynamic_neutral_variant95 = 0x7f060249
com.example.cuida:attr/floatingActionButtonSecondaryStyle = 0x7f0401f0
com.example.cuida:color/m3_ref_palette_dynamic_primary70 = 0x7f0600e8
@@ -3267,13 +3274,13 @@ com.example.cuida:color/m3_ref_palette_primary40 = 0x7f06013e
com.example.cuida:color/m3_chip_text_color = 0x7f060086
com.example.cuida:color/m3_ref_palette_dynamic_primary60 = 0x7f0600e7
com.example.cuida:macro/m3_comp_search_bar_input_text_type = 0x7f0d00eb
-com.example.cuida:id/text_med_dosage = 0x7f090216
+com.example.cuida:id/text_med_dosage = 0x7f09021b
com.example.cuida:color/m3_ref_palette_dynamic_primary50 = 0x7f0600e6
com.example.cuida:attr/nullable = 0x7f04036a
com.example.cuida:color/m3_ref_palette_dynamic_primary40 = 0x7f0600e5
com.example.cuida:layout/abc_select_dialog_material = 0x7f0c001a
-com.example.cuida:id/textinput_prefix_text = 0x7f090221
-com.example.cuida:id/material_clock_period_pm_button = 0x7f09012c
+com.example.cuida:id/textinput_prefix_text = 0x7f090227
+com.example.cuida:id/material_clock_period_pm_button = 0x7f090131
com.example.cuida:dimen/abc_action_bar_subtitle_top_margin_material = 0x7f07000c
com.example.cuida:dimen/abc_search_view_preferred_height = 0x7f070036
com.example.cuida:drawable/$avd_hide_password__2 = 0x7f080002
@@ -3320,7 +3327,7 @@ com.example.cuida:style/TextAppearance.M3.Sys.Typescale.LabelMedium = 0x7f1301dd
com.example.cuida:attr/textOutlineColor = 0x7f04048d
com.example.cuida:color/mtrl_tabs_icon_color_selector = 0x7f0602f3
com.example.cuida:color/m3_ref_palette_dynamic_neutral_variant0 = 0x7f0600c8
-com.example.cuida:id/item_touch_helper_previous_elevation = 0x7f09010f
+com.example.cuida:id/item_touch_helper_previous_elevation = 0x7f090114
com.example.cuida:dimen/abc_dropdownitem_icon_width = 0x7f070029
com.example.cuida:anim/m3_bottom_sheet_slide_out = 0x7f010022
com.example.cuida:styleable/MaterialCheckBoxStates = 0x7f14005b
@@ -3348,11 +3355,11 @@ com.example.cuida:attr/subheaderInsetEnd = 0x7f040422
com.example.cuida:attr/motionEffect_viewTransition = 0x7f040355
com.example.cuida:attr/layout_constraintBottom_toTopOf = 0x7f040291
com.example.cuida:color/m3_ref_palette_dynamic_neutral6 = 0x7f0600bc
-com.example.cuida:id/transition_position = 0x7f09022f
+com.example.cuida:id/transition_position = 0x7f090235
com.example.cuida:color/m3_ref_palette_dynamic_neutral30 = 0x7f0600b8
com.example.cuida:style/TextAppearance.Material3.ActionBar.Title = 0x7f1301e3
com.example.cuida:color/m3_ref_palette_dynamic_neutral20 = 0x7f0600b5
-com.example.cuida:layout/mtrl_alert_select_dialog_item = 0x7f0c0056
+com.example.cuida:layout/mtrl_alert_select_dialog_item = 0x7f0c0057
com.example.cuida:attr/gapBetweenBars = 0x7f04021d
com.example.cuida:style/Widget.AppCompat.ButtonBar.AlertDialog = 0x7f1302f8
com.example.cuida:color/m3_ref_palette_dynamic_neutral17 = 0x7f0600b4
@@ -3394,14 +3401,14 @@ com.example.cuida:color/m3_dark_highlighted_text = 0x7f060089
com.example.cuida:color/m3_sys_color_light_on_background = 0x7f0601e1
com.example.cuida:style/Base.V14.Theme.Material3.Dark.BottomSheetDialog = 0x7f13008a
com.example.cuida:attr/colorOnPrimaryFixedVariant = 0x7f04010c
-com.example.cuida:id/dragDown = 0x7f0900bd
+com.example.cuida:id/dragDown = 0x7f0900be
com.example.cuida:color/m3_chip_assist_text_color = 0x7f060082
com.example.cuida:dimen/m3_bottomappbar_horizontal_padding = 0x7f0700cd
com.example.cuida:color/material_dynamic_primary40 = 0x7f060250
com.example.cuida:attr/singleSelection = 0x7f0403f3
com.example.cuida:color/m3_checkbox_button_icon_tint = 0x7f060080
com.example.cuida:style/ShapeAppearance.MaterialComponents.SmallComponent = 0x7f13017e
-com.example.cuida:id/text_med_name = 0x7f090217
+com.example.cuida:id/text_med_name = 0x7f09021c
com.example.cuida:dimen/m3_comp_extended_fab_primary_focus_container_elevation = 0x7f070112
com.example.cuida:color/material_dynamic_secondary50 = 0x7f06025e
com.example.cuida:style/Widget.AppCompat.ActionMode = 0x7f1302ee
@@ -3412,7 +3419,7 @@ com.example.cuida:color/m3_card_stroke_color = 0x7f06007f
com.example.cuida:styleable/ShapeableImageView = 0x7f140089
com.example.cuida:color/m3_sys_color_light_outline_variant = 0x7f0601ed
com.example.cuida:color/m3_card_foreground_color = 0x7f06007d
-com.example.cuida:id/header_title = 0x7f0900f9
+com.example.cuida:id/header_title = 0x7f0900fe
com.example.cuida:dimen/mtrl_navigation_item_horizontal_padding = 0x7f0702c3
com.example.cuida:attr/textFillColor = 0x7f040483
com.example.cuida:style/ShapeAppearanceOverlay.MaterialComponents.Chip = 0x7f13018c
@@ -3421,14 +3428,14 @@ com.example.cuida:style/ThemeOverlay.MaterialComponents.Toolbar.Primary = 0x7f13
com.example.cuida:style/Base.Theme.Material3.Dark.Dialog = 0x7f13005b
com.example.cuida:color/m3_button_outline_color_selector = 0x7f060078
com.example.cuida:attr/errorIconTint = 0x7f0401c0
-com.example.cuida:id/material_timepicker_ok_button = 0x7f090137
+com.example.cuida:id/material_timepicker_ok_button = 0x7f09013c
com.example.cuida:color/mtrl_navigation_bar_colored_item_tint = 0x7f0602e1
com.example.cuida:color/abc_background_cache_hint_selector_material_dark = 0x7f060000
com.example.cuida:color/m3_assist_chip_icon_tint_color = 0x7f060073
com.example.cuida:color/mtrl_btn_text_color_disabled = 0x7f0602cb
com.example.cuida:attr/itemMinHeight = 0x7f040260
com.example.cuida:color/m3_appbar_overlay_color = 0x7f060072
-com.example.cuida:id/text_med_time = 0x7f090219
+com.example.cuida:id/text_med_time = 0x7f09021e
com.example.cuida:dimen/m3_comp_outlined_icon_button_unselected_outline_width = 0x7f070159
com.example.cuida:color/background_floating_material_dark = 0x7f06001e
com.example.cuida:color/foreground_material_dark = 0x7f06006e
@@ -3454,7 +3461,7 @@ com.example.cuida:attr/dividerPadding = 0x7f04018e
com.example.cuida:color/design_dark_default_color_on_surface = 0x7f060049
com.example.cuida:attr/counterOverflowTextAppearance = 0x7f040162
com.example.cuida:style/Widget.Material3.MaterialCalendar = 0x7f130395
-com.example.cuida:id/fragment_container_view_tag = 0x7f0900ee
+com.example.cuida:id/fragment_container_view_tag = 0x7f0900f3
com.example.cuida:color/design_dark_default_color_on_background = 0x7f060045
com.example.cuida:color/design_dark_default_color_error = 0x7f060044
com.example.cuida:attr/currentState = 0x7f040167
@@ -3465,7 +3472,7 @@ com.example.cuida:id/accessibility_custom_action_5 = 0x7f09002b
com.example.cuida:attr/fastScrollVerticalTrackDrawable = 0x7f0401e6
com.example.cuida:dimen/m3_carousel_gone_size = 0x7f0700f2
com.example.cuida:style/Platform.V25.AppCompat.Light = 0x7f130142
-com.example.cuida:id/mtrl_calendar_frame = 0x7f090149
+com.example.cuida:id/mtrl_calendar_frame = 0x7f09014e
com.example.cuida:attr/textAppearanceHeadline4 = 0x7f040463
com.example.cuida:color/material_dynamic_neutral_variant10 = 0x7f06023f
com.example.cuida:attr/controlBackground = 0x7f040152
@@ -3473,7 +3480,7 @@ com.example.cuida:drawable/abc_star_black_48dp = 0x7f080067
com.example.cuida:color/common_google_signin_btn_text_light_pressed = 0x7f06003f
com.example.cuida:color/common_google_signin_btn_text_light_focused = 0x7f06003e
com.example.cuida:color/m3_fab_efab_foreground_color_selector = 0x7f06009b
-com.example.cuida:id/recycler_appointments_future = 0x7f0901ac
+com.example.cuida:id/recycler_appointments_future = 0x7f0901b1
com.example.cuida:color/design_default_color_on_background = 0x7f060052
com.example.cuida:color/common_google_signin_btn_text_light = 0x7f06003b
com.example.cuida:style/TextAppearance.MaterialComponents.Subtitle2 = 0x7f130205
@@ -3487,7 +3494,7 @@ com.example.cuida:color/common_google_signin_btn_text_dark_disabled = 0x7f060038
com.example.cuida:attr/onTouchUp = 0x7f040374
com.example.cuida:color/cardview_shadow_end_color = 0x7f060034
com.example.cuida:color/m3_dynamic_default_color_secondary_text = 0x7f060094
-com.example.cuida:id/light = 0x7f090117
+com.example.cuida:id/light = 0x7f09011c
com.example.cuida:drawable/ic_passkey = 0x7f0800b4
com.example.cuida:color/m3_tabs_ripple_color = 0x7f06020b
com.example.cuida:color/m3_ref_palette_dynamic_neutral_variant6 = 0x7f0600d4
@@ -3501,15 +3508,15 @@ com.example.cuida:style/Widget.Material3.BottomSheet = 0x7f13034d
com.example.cuida:string/call_notification_answer_video_action = 0x7f120029
com.example.cuida:attr/boxCornerRadiusBottomStart = 0x7f040087
com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.Day.Today = 0x7f13041c
-com.example.cuida:id/navigation_bar_item_icon_view = 0x7f090166
+com.example.cuida:id/navigation_bar_item_icon_view = 0x7f09016b
com.example.cuida:drawable/ic_m3_chip_close = 0x7f0800ae
com.example.cuida:attr/isMaterial3Theme = 0x7f040255
com.example.cuida:attr/checkedChip = 0x7f0400ba
-com.example.cuida:id/search_src_text = 0x7f0901ce
+com.example.cuida:id/search_src_text = 0x7f0901d3
com.example.cuida:attr/shapeAppearanceCornerExtraLarge = 0x7f0403d6
com.example.cuida:color/button_material_dark = 0x7f06002e
com.example.cuida:color/browser_actions_title_color = 0x7f06002d
-com.example.cuida:id/fingerprint_error = 0x7f0900e1
+com.example.cuida:id/fingerprint_error = 0x7f0900e6
com.example.cuida:color/material_dynamic_secondary90 = 0x7f060262
com.example.cuida:color/browser_actions_divider_color = 0x7f06002b
com.example.cuida:attr/iconGravity = 0x7f04023a
@@ -3572,7 +3579,7 @@ com.example.cuida:style/RtlUnderlay.Widget.AppCompat.ActionButton.Overflow = 0x7
com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored = 0x7f13003a
com.example.cuida:attr/windowActionModeOverlay = 0x7f0404fa
com.example.cuida:style/Base.Widget.AppCompat.Light.ActionBar.TabView = 0x7f1300e2
-com.example.cuida:layout/material_clock_period_toggle_land = 0x7f0c0049
+com.example.cuida:layout/material_clock_period_toggle_land = 0x7f0c004a
com.example.cuida:color/abc_tint_edittext = 0x7f060015
com.example.cuida:attr/springMass = 0x7f040404
com.example.cuida:dimen/m3_comp_extended_fab_primary_pressed_container_elevation = 0x7f070117
@@ -3598,7 +3605,7 @@ com.example.cuida:attr/layoutManager = 0x7f040283
com.example.cuida:style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu = 0x7f13044a
com.example.cuida:animator/mtrl_btn_state_list_anim = 0x7f020015
com.example.cuida:attr/viewTransitionOnNegativeCross = 0x7f0404ed
-com.example.cuida:id/save_overlay_view = 0x7f0901bd
+com.example.cuida:id/save_overlay_view = 0x7f0901c2
com.example.cuida:attr/itemHorizontalPadding = 0x7f04025a
com.example.cuida:dimen/mtrl_snackbar_message_margin_horizontal = 0x7f0702f0
com.example.cuida:dimen/mtrl_calendar_action_height = 0x7f07026f
@@ -3622,7 +3629,7 @@ com.example.cuida:attr/values = 0x7f0404e7
com.example.cuida:style/Widget.AppCompat.Spinner.DropDown.ActionBar = 0x7f130329
com.example.cuida:attr/dialogCornerRadius = 0x7f040185
com.example.cuida:attr/colorScheme = 0x7f040123
-com.example.cuida:id/special_effects_controller_view_tag = 0x7f0901e5
+com.example.cuida:id/special_effects_controller_view_tag = 0x7f0901ea
com.example.cuida:attr/useMaterialThemeColors = 0x7f0404e6
com.example.cuida:color/cardview_light_background = 0x7f060033
com.example.cuida:attr/useCompatPadding = 0x7f0404e4
@@ -3680,7 +3687,7 @@ com.example.cuida:color/abc_primary_text_material_dark = 0x7f06000b
com.example.cuida:color/common_google_signin_btn_text_light_default = 0x7f06003c
com.example.cuida:dimen/m3_comp_time_input_time_input_field_focus_outline_width = 0x7f07019c
com.example.cuida:attr/tooltipText = 0x7f0404c7
-com.example.cuida:id/report_drawn = 0x7f0901b2
+com.example.cuida:id/report_drawn = 0x7f0901b7
com.example.cuida:dimen/m3_comp_fab_primary_focus_state_layer_opacity = 0x7f07011b
com.example.cuida:style/Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f130306
com.example.cuida:attr/shortcutMatchRequired = 0x7f0403e0
@@ -3688,7 +3695,7 @@ com.example.cuida:attr/tooltipStyle = 0x7f0404c6
com.example.cuida:color/m3_ref_palette_primary95 = 0x7f060144
com.example.cuida:color/material_dynamic_primary20 = 0x7f06024e
com.example.cuida:attr/tooltipForegroundColor = 0x7f0404c4
-com.example.cuida:layout/mtrl_search_bar = 0x7f0c0071
+com.example.cuida:layout/mtrl_search_bar = 0x7f0c0072
com.example.cuida:attr/minWidth = 0x7f04032a
com.example.cuida:style/Base.TextAppearance.AppCompat.Headline = 0x7f13001f
com.example.cuida:attr/toolbarSurfaceStyle = 0x7f0404c3
@@ -3696,7 +3703,7 @@ com.example.cuida:style/Base.V22.Theme.AppCompat.Light = 0x7f1300ae
com.example.cuida:attr/itemShapeInsetBottom = 0x7f040268
com.example.cuida:attr/toolbarId = 0x7f0404c0
com.example.cuida:dimen/material_filled_edittext_font_1_3_padding_bottom = 0x7f070234
-com.example.cuida:id/west = 0x7f090242
+com.example.cuida:id/west = 0x7f090248
com.example.cuida:attr/itemStrokeWidth = 0x7f04026e
com.example.cuida:string/mtrl_picker_a11y_next_month = 0x7f12009c
com.example.cuida:attr/titleTextEllipsize = 0x7f0404bd
@@ -3715,7 +3722,7 @@ com.example.cuida:attr/secondaryActivityAction = 0x7f0403cd
com.example.cuida:attr/titleMarginStart = 0x7f0404b7
com.example.cuida:style/Base.V14.ThemeOverlay.MaterialComponents.Dialog = 0x7f13009d
com.example.cuida:attr/chipGroupStyle = 0x7f0400c7
-com.example.cuida:id/exitUntilCollapsed = 0x7f0900d8
+com.example.cuida:id/exitUntilCollapsed = 0x7f0900dc
com.example.cuida:attr/titleCollapseMode = 0x7f0404b2
com.example.cuida:style/Widget.Material3.MaterialCalendar.HeaderLayout.Fullscreen = 0x7f1303a0
com.example.cuida:attr/motionInterpolator = 0x7f040356
@@ -3727,7 +3734,7 @@ com.example.cuida:attr/tickRadiusActive = 0x7f0404aa
com.example.cuida:attr/tickMarkTintMode = 0x7f0404a9
com.example.cuida:attr/tickColorInactive = 0x7f0404a6
com.example.cuida:string/path_password_eye_mask_strike_through = 0x7f1200d2
-com.example.cuida:id/scrollIndicatorDown = 0x7f0901c2
+com.example.cuida:id/scrollIndicatorDown = 0x7f0901c7
com.example.cuida:attr/layout_constraintEnd_toStartOf = 0x7f040297
com.example.cuida:drawable/abc_list_pressed_holo_dark = 0x7f080050
com.example.cuida:attr/tickColor = 0x7f0404a4
@@ -3778,7 +3785,7 @@ com.example.cuida:dimen/design_bottom_navigation_active_text_size = 0x7f070063
com.example.cuida:dimen/abc_edit_text_inset_horizontal_material = 0x7f07002d
com.example.cuida:attr/textInputFilledExposedDropdownMenuStyle = 0x7f040485
com.example.cuida:style/Base.Theme.MaterialComponents = 0x7f130065
-com.example.cuida:id/on = 0x7f09017f
+com.example.cuida:id/on = 0x7f090184
com.example.cuida:drawable/common_google_signin_btn_icon_light_normal_background = 0x7f08008a
com.example.cuida:id/accessibility_custom_action_1 = 0x7f090011
com.example.cuida:anim/mtrl_bottom_sheet_slide_in = 0x7f010029
@@ -3796,7 +3803,7 @@ com.example.cuida:style/Base.TextAppearance.AppCompat.SearchResult.Title = 0x7f1
com.example.cuida:attr/textAppearanceTitleLarge = 0x7f040478
com.example.cuida:color/m3_timepicker_button_text_color = 0x7f060219
com.example.cuida:macro/m3_comp_primary_navigation_tab_with_label_text_inactive_label_text_color = 0x7f0d00d5
-com.example.cuida:layout/material_timepicker = 0x7f0c0050
+com.example.cuida:layout/material_timepicker = 0x7f0c0051
com.example.cuida:attr/popupMenuBackground = 0x7f04039b
com.example.cuida:attr/textAppearanceOverline = 0x7f040471
com.example.cuida:attr/cornerFamilyTopLeft = 0x7f040158
@@ -3810,7 +3817,7 @@ com.example.cuida:attr/textAppearanceListItem = 0x7f04046e
com.example.cuida:style/Widget.AppCompat.Spinner.DropDown = 0x7f130328
com.example.cuida:attr/itemTextAppearanceActive = 0x7f040270
com.example.cuida:style/Widget.Material3.PopupMenu.Overflow = 0x7f1303be
-com.example.cuida:id/withinBounds = 0x7f090246
+com.example.cuida:id/withinBounds = 0x7f09024c
com.example.cuida:dimen/m3_navigation_rail_item_active_indicator_width = 0x7f0701cb
com.example.cuida:attr/textAppearanceLabelSmall = 0x7f04046b
com.example.cuida:attr/textAppearanceLabelMedium = 0x7f04046a
@@ -3838,7 +3845,7 @@ com.example.cuida:color/m3_sys_color_dynamic_light_surface = 0x7f0601c4
com.example.cuida:style/Base.Widget.AppCompat.ActionBar.TabView = 0x7f1300c6
com.example.cuida:attr/waveShape = 0x7f0404f6
com.example.cuida:dimen/m3_carousel_extra_small_item_size = 0x7f0700f1
-com.example.cuida:id/grouping = 0x7f0900f7
+com.example.cuida:id/grouping = 0x7f0900fc
com.example.cuida:attr/textAppearanceBody2 = 0x7f040457
com.example.cuida:attr/textAllCaps = 0x7f040455
com.example.cuida:attr/telltales_velocityMode = 0x7f040454
@@ -3852,11 +3859,11 @@ com.example.cuida:style/Widget.AppCompat.PopupMenu = 0x7f13031b
com.example.cuida:attr/expandedTitleTextColor = 0x7f0401d0
com.example.cuida:attr/tabTextColor = 0x7f04044e
com.example.cuida:color/m3_ref_palette_dynamic_neutral_variant12 = 0x7f0600cb
-com.example.cuida:id/indeterminate = 0x7f090109
+com.example.cuida:id/indeterminate = 0x7f09010e
com.example.cuida:attr/colorOnSurfaceVariant = 0x7f040114
com.example.cuida:style/TextAppearance.MaterialComponents.TimePicker.Title = 0x7f130206
com.example.cuida:attr/tabSecondaryStyle = 0x7f040449
-com.example.cuida:id/edit_email = 0x7f0900ca
+com.example.cuida:id/edit_email = 0x7f0900cb
com.example.cuida:id/action_bar_title = 0x7f09003a
com.example.cuida:attr/triggerId = 0x7f0404de
com.example.cuida:attr/titleTextStyle = 0x7f0404be
@@ -3890,7 +3897,7 @@ com.example.cuida:dimen/design_fab_border_width = 0x7f070070
com.example.cuida:dimen/m3_alert_dialog_icon_margin = 0x7f0700a4
com.example.cuida:attr/helperTextTextColor = 0x7f040229
com.example.cuida:dimen/m3_navigation_item_vertical_padding = 0x7f0701c3
-com.example.cuida:id/scrollIndicatorUp = 0x7f0901c3
+com.example.cuida:id/scrollIndicatorUp = 0x7f0901c8
com.example.cuida:attr/splitLayoutDirection = 0x7f0403fd
com.example.cuida:color/common_google_signin_btn_text_dark = 0x7f060036
com.example.cuida:style/Base.Widget.AppCompat.ImageButton = 0x7f1300dc
@@ -3905,7 +3912,7 @@ com.example.cuida:style/Widget.MaterialComponents.Button.TextButton.Snackbar = 0
com.example.cuida:attr/suggestionRowLayout = 0x7f04042e
com.example.cuida:style/TextAppearance.Design.HelperText = 0x7f1301cc
com.example.cuida:attr/suffixText = 0x7f04042b
-com.example.cuida:id/right_icon = 0x7f0901b7
+com.example.cuida:id/right_icon = 0x7f0901bc
com.example.cuida:attr/textAppearanceCaption = 0x7f04045c
com.example.cuida:dimen/m3_badge_with_text_horizontal_offset = 0x7f0700ba
com.example.cuida:attr/subtitleTextStyle = 0x7f04042a
@@ -3926,7 +3933,7 @@ com.example.cuida:color/mtrl_btn_transparent_bg_color = 0x7f0602cd
com.example.cuida:style/ThemeOverlay.Material3.Dialog = 0x7f130297
com.example.cuida:dimen/m3_toolbar_text_size_title = 0x7f07021d
com.example.cuida:color/highlighted_text_material_light = 0x7f060071
-com.example.cuida:id/month_grid = 0x7f09013f
+com.example.cuida:id/month_grid = 0x7f090144
com.example.cuida:dimen/mtrl_calendar_selection_baseline_to_top_fullscreen = 0x7f07028c
com.example.cuida:attr/chipIcon = 0x7f0400c8
com.example.cuida:attr/layout_constraintHeight_max = 0x7f04029d
@@ -3945,7 +3952,7 @@ com.example.cuida:color/m3_dynamic_primary_text_disable_only = 0x7f060097
com.example.cuida:attr/behavior_significantVelocityThreshold = 0x7f040076
com.example.cuida:drawable/abc_btn_check_to_on_mtrl_015 = 0x7f08002e
com.example.cuida:integer/m3_sys_motion_duration_medium2 = 0x7f0a001a
-com.example.cuida:id/carryVelocity = 0x7f090080
+com.example.cuida:id/carryVelocity = 0x7f090081
com.example.cuida:attr/behavior_saveFlags = 0x7f040075
com.example.cuida:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text = 0x7f13014b
com.example.cuida:id/arc = 0x7f090057
@@ -3962,7 +3969,7 @@ com.example.cuida:style/ShapeAppearance.M3.Comp.FilledButton.Container.Shape = 0
com.example.cuida:color/mtrl_textinput_disabled_color = 0x7f0602f9
com.example.cuida:attr/startIconTint = 0x7f040410
com.example.cuida:attr/actionOverflowButtonStyle = 0x7f040022
-com.example.cuida:id/nav_controller_view_tag = 0x7f09015f
+com.example.cuida:id/nav_controller_view_tag = 0x7f090164
com.example.cuida:drawable/notification_bg_low_pressed = 0x7f0800f7
com.example.cuida:attr/targetPackage = 0x7f040451
com.example.cuida:attr/startIconDrawable = 0x7f04040d
@@ -3971,7 +3978,7 @@ com.example.cuida:color/material_dynamic_tertiary0 = 0x7f060265
com.example.cuida:attr/textAppearanceLabelLarge = 0x7f040469
com.example.cuida:style/TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f1301b0
com.example.cuida:attr/startIconCheckable = 0x7f04040b
-com.example.cuida:id/textStart = 0x7f09020e
+com.example.cuida:id/textStart = 0x7f090213
com.example.cuida:attr/startDestination = 0x7f04040a
com.example.cuida:style/Widget.Material3.CompoundButton.Switch = 0x7f13037c
com.example.cuida:dimen/abc_action_button_min_width_overflow_material = 0x7f07000f
@@ -4000,7 +4007,7 @@ com.example.cuida:dimen/m3_navigation_rail_item_active_indicator_height = 0x7f07
com.example.cuida:animator/m3_btn_state_list_anim = 0x7f02000b
com.example.cuida:attr/region_widthLessThan = 0x7f0403b9
com.example.cuida:attr/simpleItemSelectedRippleColor = 0x7f0403ef
-com.example.cuida:id/sharedValueUnset = 0x7f0901d4
+com.example.cuida:id/sharedValueUnset = 0x7f0901d9
com.example.cuida:dimen/m3_timepicker_window_elevation = 0x7f07021c
com.example.cuida:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup = 0x7f130148
com.example.cuida:attr/dropdownListPreferredItemHeight = 0x7f0401a3
@@ -4008,7 +4015,7 @@ com.example.cuida:dimen/m3_comp_navigation_bar_container_elevation = 0x7f07013d
com.example.cuida:color/browser_actions_bg_grey = 0x7f06002a
com.example.cuida:attr/maxActionInlineWidth = 0x7f040317
com.example.cuida:styleable/Spinner = 0x7f14008f
-com.example.cuida:layout/notification_template_part_chronometer = 0x7f0c0077
+com.example.cuida:layout/notification_template_part_chronometer = 0x7f0c0078
com.example.cuida:attr/startIconMinSize = 0x7f04040e
com.example.cuida:attr/simpleItemSelectedColor = 0x7f0403ee
com.example.cuida:dimen/m3_card_elevated_hovered_z = 0x7f0700ec
@@ -4033,11 +4040,11 @@ com.example.cuida:attr/popupTheme = 0x7f04039d
com.example.cuida:color/m3_sys_color_on_secondary_fixed_variant = 0x7f060200
com.example.cuida:attr/circularflow_angles = 0x7f0400db
com.example.cuida:attr/shapeAppearanceCornerLarge = 0x7f0403d8
-com.example.cuida:id/icon_only = 0x7f090102
+com.example.cuida:id/icon_only = 0x7f090107
com.example.cuida:attr/shapeAppearanceCornerExtraSmall = 0x7f0403d7
com.example.cuida:style/MaterialAlertDialog.MaterialComponents.Picker.Date.Spinner = 0x7f13012f
com.example.cuida:attr/setsTag = 0x7f0403d4
-com.example.cuida:id/dragStart = 0x7f0900c1
+com.example.cuida:id/dragStart = 0x7f0900c2
com.example.cuida:dimen/abc_text_size_body_2_material = 0x7f070040
com.example.cuida:attr/selectorSize = 0x7f0403d3
com.example.cuida:attr/selectionRequired = 0x7f0403d2
@@ -4051,7 +4058,7 @@ com.example.cuida:layout/design_navigation_item_separator = 0x7f0c002c
com.example.cuida:attr/secondaryActivityName = 0x7f0403ce
com.example.cuida:attr/searchIcon = 0x7f0403ca
com.example.cuida:dimen/m3_carousel_small_item_default_corner_size = 0x7f0700f3
-com.example.cuida:id/mtrl_picker_header = 0x7f090154
+com.example.cuida:id/mtrl_picker_header = 0x7f090159
com.example.cuida:anim/abc_slide_out_bottom = 0x7f010008
com.example.cuida:attr/searchHintIcon = 0x7f0403c9
com.example.cuida:color/m3_sys_color_light_surface_container_low = 0x7f0601f7
@@ -4069,9 +4076,9 @@ com.example.cuida:attr/scrimBackground = 0x7f0403c7
com.example.cuida:attr/route = 0x7f0403c2
com.example.cuida:attr/autoSizeTextType = 0x7f040049
com.example.cuida:attr/round = 0x7f0403c0
-com.example.cuida:id/textSpacerNoButtons = 0x7f09020c
+com.example.cuida:id/textSpacerNoButtons = 0x7f090211
com.example.cuida:dimen/m3_bottomappbar_fab_cradle_margin = 0x7f0700c8
-com.example.cuida:id/login_button = 0x7f09011e
+com.example.cuida:id/login_button = 0x7f090123
com.example.cuida:attr/extendedFloatingActionButtonPrimaryStyle = 0x7f0401d3
com.example.cuida:layout/abc_list_menu_item_radio = 0x7f0c0011
com.example.cuida:attr/restoreState = 0x7f0403bc
@@ -4167,7 +4174,7 @@ com.example.cuida:attr/dividerInsetStart = 0x7f04018d
com.example.cuida:attr/panelMenuListWidth = 0x7f040382
com.example.cuida:attr/paddingTopNoTitle = 0x7f04037e
com.example.cuida:style/Base.V23.Theme.AppCompat.Light = 0x7f1300b0
-com.example.cuida:id/locale = 0x7f09011d
+com.example.cuida:id/locale = 0x7f090122
com.example.cuida:dimen/m3_sys_motion_easing_legacy_decelerate_control_y2 = 0x7f070206
com.example.cuida:attr/paddingStartSystemWindowInsets = 0x7f04037d
com.example.cuida:attr/paddingRightSystemWindowInsets = 0x7f04037b
@@ -4180,8 +4187,8 @@ com.example.cuida:attr/overlay = 0x7f040376
com.example.cuida:attr/textAppearanceLargePopupMenu = 0x7f04046c
com.example.cuida:color/material_dynamic_color_dark_error = 0x7f060229
com.example.cuida:attr/onStateTransition = 0x7f040373
-com.example.cuida:id/recycler_appointments_past = 0x7f0901ad
-com.example.cuida:id/clip_horizontal = 0x7f090090
+com.example.cuida:id/recycler_appointments_past = 0x7f0901b2
+com.example.cuida:id/clip_horizontal = 0x7f090091
com.example.cuida:attr/behavior_fitToContents = 0x7f040070
com.example.cuida:attr/onShow = 0x7f040372
com.example.cuida:attr/motionEasingStandard = 0x7f04034a
@@ -4192,7 +4199,7 @@ com.example.cuida:styleable/NavArgument = 0x7f140070
com.example.cuida:attr/badgeHeight = 0x7f040058
com.example.cuida:attr/onHide = 0x7f04036f
com.example.cuida:attr/offsetAlignmentMode = 0x7f04036d
-com.example.cuida:id/time = 0x7f090223
+com.example.cuida:id/time = 0x7f090229
com.example.cuida:attr/numericModifiers = 0x7f04036c
com.example.cuida:drawable/fingerprint_dialog_fp_icon = 0x7f08009a
com.example.cuida:style/ShapeAppearanceOverlay.Material3.Button = 0x7f130180
@@ -4203,11 +4210,11 @@ com.example.cuida:styleable/TextAppearance = 0x7f14009b
com.example.cuida:color/m3_ref_palette_dynamic_secondary40 = 0x7f0600f2
com.example.cuida:attr/finishSecondaryWithPrimary = 0x7f0401e8
com.example.cuida:drawable/common_google_signin_btn_icon_dark = 0x7f080082
-com.example.cuida:id/fitToContents = 0x7f0900e7
+com.example.cuida:id/fitToContents = 0x7f0900ec
com.example.cuida:dimen/material_helper_text_default_padding_top = 0x7f07023a
com.example.cuida:color/mtrl_tabs_legacy_text_color_selector = 0x7f0602f5
com.example.cuida:attr/number = 0x7f04036b
-com.example.cuida:layout/material_clock_display_divider = 0x7f0c0047
+com.example.cuida:layout/material_clock_display_divider = 0x7f0c0048
com.example.cuida:dimen/abc_text_size_title_material = 0x7f07004f
com.example.cuida:string/mtrl_picker_date_header_title = 0x7f1200a4
com.example.cuida:attr/circleCrop = 0x7f0400d8
@@ -4218,7 +4225,7 @@ com.example.cuida:attr/flow_padding = 0x7f040206
com.example.cuida:attr/fontVariationSettings = 0x7f040217
com.example.cuida:attr/reactiveGuide_applyToConstraintSet = 0x7f0403b4
com.example.cuida:attr/navigationViewStyle = 0x7f040366
-com.example.cuida:id/callMeasure = 0x7f09007d
+com.example.cuida:id/callMeasure = 0x7f09007e
com.example.cuida:attr/carousel_alignment = 0x7f0400a8
com.example.cuida:attr/cornerSizeTopLeft = 0x7f04015e
com.example.cuida:attr/navigationRailStyle = 0x7f040365
@@ -4239,7 +4246,7 @@ com.example.cuida:attr/motionStagger = 0x7f04035a
com.example.cuida:color/m3_sys_color_dark_on_error_container = 0x7f060171
com.example.cuida:style/Theme.AppCompat.DayNight.DarkActionBar = 0x7f13020e
com.example.cuida:attr/motionPathRotate = 0x7f040358
-com.example.cuida:id/flip = 0x7f0900ea
+com.example.cuida:id/flip = 0x7f0900ef
com.example.cuida:dimen/m3_comp_navigation_rail_pressed_state_layer_opacity = 0x7f070151
com.example.cuida:color/primary_text_disabled_material_light = 0x7f060309
com.example.cuida:color/m3_ref_palette_dynamic_tertiary80 = 0x7f060103
@@ -4253,7 +4260,7 @@ com.example.cuida:color/m3_sys_color_light_outline = 0x7f0601ec
com.example.cuida:attr/mock_labelBackgroundColor = 0x7f04032d
com.example.cuida:attr/materialCalendarMonth = 0x7f0402fa
com.example.cuida:attr/motionEffect_start = 0x7f040351
-com.example.cuida:layout/mtrl_alert_select_dialog_singlechoice = 0x7f0c0058
+com.example.cuida:layout/mtrl_alert_select_dialog_singlechoice = 0x7f0c0059
com.example.cuida:drawable/abc_ic_go_search_api_material = 0x7f080041
com.example.cuida:attr/motionEffect_end = 0x7f04034f
com.example.cuida:style/TextAppearance.M3.Sys.Typescale.HeadlineSmall = 0x7f1301db
@@ -4292,9 +4299,9 @@ com.example.cuida:attr/materialCalendarMonthNavigationButton = 0x7f0402fb
com.example.cuida:attr/materialAlertDialogButtonSpacerVisibility = 0x7f0402e8
com.example.cuida:attr/motionDurationShort2 = 0x7f04033f
com.example.cuida:style/Theme.Material3.DayNight.SideSheetDialog = 0x7f130238
-com.example.cuida:id/parent_matrix = 0x7f090197
+com.example.cuida:id/parent_matrix = 0x7f09019c
com.example.cuida:dimen/mtrl_alert_dialog_background_inset_top = 0x7f070246
-com.example.cuida:id/tag_unhandled_key_event_manager = 0x7f090206
+com.example.cuida:id/tag_unhandled_key_event_manager = 0x7f09020b
com.example.cuida:attr/motionDurationMedium3 = 0x7f04033c
com.example.cuida:attr/checkedTextViewStyle = 0x7f0400c3
com.example.cuida:styleable/KeyCycle = 0x7f140045
@@ -4303,8 +4310,8 @@ com.example.cuida:attr/motionDurationMedium1 = 0x7f04033a
com.example.cuida:xml/image_share_filepaths = 0x7f150002
com.example.cuida:color/mtrl_popupmenu_overlay_color = 0x7f0602ec
com.example.cuida:attr/motionDurationLong3 = 0x7f040338
-com.example.cuida:id/standard = 0x7f0901ef
-com.example.cuida:id/spread_inside = 0x7f0901e9
+com.example.cuida:id/standard = 0x7f0901f4
+com.example.cuida:id/spread_inside = 0x7f0901ee
com.example.cuida:attr/motionDurationLong2 = 0x7f040337
com.example.cuida:attr/materialCalendarHeaderCancelButton = 0x7f0402f3
com.example.cuida:dimen/m3_card_stroke_width = 0x7f0700ef
@@ -4324,8 +4331,8 @@ com.example.cuida:id/bounceEnd = 0x7f090068
com.example.cuida:drawable/notification_bg_low_normal = 0x7f0800f6
com.example.cuida:dimen/m3_navigation_item_active_indicator_label_padding = 0x7f0701bc
com.example.cuida:attr/motionEffect_translationY = 0x7f040354
-com.example.cuida:id/utente_edit_text = 0x7f090238
-com.example.cuida:id/snap = 0x7f0901e1
+com.example.cuida:id/utente_edit_text = 0x7f09023e
+com.example.cuida:id/snap = 0x7f0901e6
com.example.cuida:attr/mock_showDiagonals = 0x7f04032f
com.example.cuida:animator/mtrl_fab_transformation_sheet_expand_spec = 0x7f020021
com.example.cuida:attr/mock_labelColor = 0x7f04032e
@@ -4353,7 +4360,7 @@ com.example.cuida:attr/materialTimePickerTheme = 0x7f040314
com.example.cuida:color/mtrl_choice_chip_background_color = 0x7f0602d6
com.example.cuida:macro/m3_comp_secondary_navigation_tab_active_label_text_color = 0x7f0d00fc
com.example.cuida:color/m3_ref_palette_dynamic_neutral100 = 0x7f0600b2
-com.example.cuida:id/profile_utente = 0x7f0901a6
+com.example.cuida:id/profile_utente = 0x7f0901ab
com.example.cuida:attr/materialCardViewOutlinedStyle = 0x7f040301
com.example.cuida:attr/buttonIconTint = 0x7f040098
com.example.cuida:attr/deltaPolarRadius = 0x7f040182
@@ -4386,7 +4393,7 @@ com.example.cuida:dimen/abc_list_item_height_material = 0x7f070031
com.example.cuida:color/m3_sys_color_dark_tertiary = 0x7f060189
com.example.cuida:color/m3_ref_palette_dynamic_neutral_variant10 = 0x7f0600c9
com.example.cuida:style/Widget.MaterialComponents.MaterialCalendar.YearNavigationButton = 0x7f13042f
-com.example.cuida:id/tag_on_apply_window_listener = 0x7f090200
+com.example.cuida:id/tag_on_apply_window_listener = 0x7f090205
com.example.cuida:dimen/mtrl_textinput_counter_margin_start = 0x7f0702fd
com.example.cuida:attr/materialIconButtonFilledTonalStyle = 0x7f040309
com.example.cuida:styleable/SnackbarLayout = 0x7f14008e
@@ -4406,7 +4413,7 @@ com.example.cuida:dimen/m3_comp_sheet_bottom_docked_drag_handle_height = 0x7f070
com.example.cuida:attr/motionDurationMedium4 = 0x7f04033d
com.example.cuida:attr/materialCardViewStyle = 0x7f040302
com.example.cuida:string/abc_searchview_description_query = 0x7f120014
-com.example.cuida:id/transition_transform = 0x7f090231
+com.example.cuida:id/transition_transform = 0x7f090237
com.example.cuida:color/m3_ref_palette_tertiary20 = 0x7f060156
com.example.cuida:attr/materialCardViewFilledStyle = 0x7f040300
com.example.cuida:id/accessibility_custom_action_15 = 0x7f090017
@@ -4477,7 +4484,7 @@ com.example.cuida:color/abc_btn_colored_borderless_text_material = 0x7f060002
com.example.cuida:string/appbar_scrolling_view_behavior = 0x7f120021
com.example.cuida:attr/logoAdjustViewBounds = 0x7f0402e0
com.example.cuida:style/RtlOverlay.Widget.AppCompat.PopupMenuItem = 0x7f130147
-com.example.cuida:id/password_edit_text = 0x7f090198
+com.example.cuida:id/password_edit_text = 0x7f09019d
com.example.cuida:attr/behavior_peekHeight = 0x7f040074
com.example.cuida:dimen/mtrl_tooltip_padding = 0x7f070306
com.example.cuida:attr/listPreferredItemPaddingStart = 0x7f0402de
@@ -4502,7 +4509,7 @@ com.example.cuida:attr/logo = 0x7f0402df
com.example.cuida:attr/listChoiceIndicatorSingleAnimated = 0x7f0402d2
com.example.cuida:style/ShapeAppearance.MaterialComponents.Tooltip = 0x7f13017f
com.example.cuida:attr/listChoiceIndicatorMultipleAnimated = 0x7f0402d1
-com.example.cuida:id/navigation_bar_item_small_label_view = 0x7f090169
+com.example.cuida:id/navigation_bar_item_small_label_view = 0x7f09016e
com.example.cuida:attr/shapeAppearanceSmallComponent = 0x7f0403de
com.example.cuida:attr/listChoiceBackgroundIndicator = 0x7f0402d0
com.example.cuida:color/m3_chip_ripple_color = 0x7f060084
@@ -4517,10 +4524,10 @@ com.example.cuida:integer/mtrl_switch_thumb_motion_duration = 0x7f0a0038
com.example.cuida:color/design_default_color_secondary = 0x7f06005a
com.example.cuida:style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu = 0x7f13044b
com.example.cuida:style/Widget.Material3.TabLayout = 0x7f1303cf
-com.example.cuida:id/material_label = 0x7f090130
+com.example.cuida:id/material_label = 0x7f090135
com.example.cuida:dimen/mtrl_chip_text_size = 0x7f07029f
com.example.cuida:color/m3_ref_palette_tertiary30 = 0x7f060157
-com.example.cuida:id/mtrl_calendar_days_of_week = 0x7f090148
+com.example.cuida:id/mtrl_calendar_days_of_week = 0x7f09014d
com.example.cuida:attr/crossfade = 0x7f040166
com.example.cuida:styleable/Toolbar = 0x7f1400a0
com.example.cuida:attr/layout_goneMarginLeft = 0x7f0402bd
@@ -4546,7 +4553,7 @@ com.example.cuida:id/FUNCTION = 0x7f090004
com.example.cuida:attr/errorShown = 0x7f0401c2
com.example.cuida:drawable/m3_tabs_line_indicator = 0x7f0800c0
com.example.cuida:attr/layout_constraintStart_toEndOf = 0x7f0402a9
-com.example.cuida:id/transition_layout_save = 0x7f09022e
+com.example.cuida:id/transition_layout_save = 0x7f090234
com.example.cuida:attr/tickVisible = 0x7f0404ac
com.example.cuida:dimen/m3_navigation_item_shape_inset_top = 0x7f0701c2
com.example.cuida:attr/trackColor = 0x7f0404cd
@@ -4575,7 +4582,7 @@ com.example.cuida:attr/layout_goneMarginRight = 0x7f0402be
com.example.cuida:string/mtrl_picker_range_header_only_end_selected = 0x7f1200af
com.example.cuida:dimen/m3_chip_checked_hovered_translation_z = 0x7f0700f6
com.example.cuida:attr/drawableTopCompat = 0x7f04019d
-com.example.cuida:layout/mtrl_calendar_day_of_week = 0x7f0c005b
+com.example.cuida:layout/mtrl_calendar_day_of_week = 0x7f0c005c
com.example.cuida:attr/layout_constraintDimensionRatio = 0x7f040295
com.example.cuida:dimen/tooltip_precise_anchor_threshold = 0x7f07031c
com.example.cuida:attr/layout_constraintCircleRadius = 0x7f040294
@@ -4585,7 +4592,7 @@ com.example.cuida:styleable/ConstraintLayout_placeholder = 0x7f14002c
com.example.cuida:string/abc_capital_off = 0x7f120006
com.example.cuida:attr/autoCompleteTextViewStyle = 0x7f040043
com.example.cuida:attr/layout_constraintWidth_percent = 0x7f0402b6
-com.example.cuida:id/toggle = 0x7f090227
+com.example.cuida:id/toggle = 0x7f09022d
com.example.cuida:color/m3_sys_color_dark_surface_container_highest = 0x7f060184
com.example.cuida:color/m3_ref_palette_dynamic_neutral_variant50 = 0x7f0600d3
com.example.cuida:attr/endIconScaleType = 0x7f0401b4
@@ -4607,7 +4614,7 @@ com.example.cuida:drawable/ic_mtrl_chip_checked_circle = 0x7f0800b1
com.example.cuida:style/Widget.Material3.Button.TextButton.Dialog.Icon = 0x7f13035d
com.example.cuida:macro/m3_comp_elevated_button_container_color = 0x7f0d002a
com.example.cuida:attr/collapseIcon = 0x7f0400f0
-com.example.cuida:id/ghost_view_holder = 0x7f0900f2
+com.example.cuida:id/ghost_view_holder = 0x7f0900f7
com.example.cuida:animator/mtrl_btn_unelevated_state_list_anim = 0x7f020016
com.example.cuida:attr/layout_collapseMode = 0x7f040287
com.example.cuida:style/Theme.MaterialComponents.Light.DarkActionBar = 0x7f130264
@@ -4675,7 +4682,7 @@ com.example.cuida:attr/launchSingleTop = 0x7f04027f
com.example.cuida:style/Theme.AppCompat.DialogWhenLarge = 0x7f130217
com.example.cuida:macro/m3_comp_navigation_drawer_inactive_pressed_icon_color = 0x7f0d0091
com.example.cuida:attr/fontFamily = 0x7f04020d
-com.example.cuida:id/disableScroll = 0x7f0900b9
+com.example.cuida:id/disableScroll = 0x7f0900ba
com.example.cuida:anim/abc_popup_exit = 0x7f010004
com.example.cuida:drawable/abc_list_selector_holo_dark = 0x7f080056
com.example.cuida:color/m3_ref_palette_dynamic_neutral_variant22 = 0x7f0600ce
@@ -4700,7 +4707,7 @@ com.example.cuida:attr/collapsingToolbarLayoutMediumSize = 0x7f0400f7
com.example.cuida:attr/ifTagSet = 0x7f040242
com.example.cuida:macro/m3_comp_sheet_side_docked_modal_container_color = 0x7f0d0109
com.example.cuida:color/m3_hint_foreground = 0x7f06009f
-com.example.cuida:id/visible = 0x7f090240
+com.example.cuida:id/visible = 0x7f090246
com.example.cuida:attr/ifTagNotSet = 0x7f040241
com.example.cuida:color/m3_sys_color_dynamic_primary_fixed_dim = 0x7f0601d6
com.example.cuida:attr/motionEasingStandardInterpolator = 0x7f04034d
@@ -4720,7 +4727,7 @@ com.example.cuida:attr/hoveredFocusedTranslationZ = 0x7f040237
com.example.cuida:style/Base.TextAppearance.AppCompat.Small = 0x7f13002b
com.example.cuida:string/nav_app_bar_open_drawer_description = 0x7f1200cd
com.example.cuida:attr/colorOnSecondaryFixedVariant = 0x7f040111
-com.example.cuida:id/ghost_view = 0x7f0900f1
+com.example.cuida:id/ghost_view = 0x7f0900f6
com.example.cuida:attr/layout_constraintWidth_default = 0x7f0402b3
com.example.cuida:animator/m3_extended_fab_change_size_expand_motion_spec = 0x7f020011
com.example.cuida:attr/horizontalOffset = 0x7f040235
@@ -4751,7 +4758,7 @@ com.example.cuida:string/abc_menu_delete_shortcut_label = 0x7f12000a
com.example.cuida:attr/hideMotionSpec = 0x7f04022b
com.example.cuida:dimen/mtrl_progress_circular_radius = 0x7f0702d5
com.example.cuida:style/Theme.Material3.DynamicColors.Dark = 0x7f130239
-com.example.cuida:id/middle = 0x7f09013c
+com.example.cuida:id/middle = 0x7f090141
com.example.cuida:attr/flow_firstHorizontalStyle = 0x7f0401fa
com.example.cuida:dimen/mtrl_low_ripple_focused_alpha = 0x7f0702bc
com.example.cuida:attr/applyMotionScene = 0x7f04003b
@@ -4760,7 +4767,7 @@ com.example.cuida:attr/helperTextTextAppearance = 0x7f040228
com.example.cuida:attr/helperText = 0x7f040226
com.example.cuida:drawable/$mtrl_checkbox_button_icon_indeterminate_unchecked__1 = 0x7f080015
com.example.cuida:attr/expandedTitleMarginBottom = 0x7f0401cb
-com.example.cuida:id/sliding_pane_detail_container = 0x7f0901dd
+com.example.cuida:id/sliding_pane_detail_container = 0x7f0901e2
com.example.cuida:attr/gestureInsetBottomIgnored = 0x7f04021e
com.example.cuida:style/Base.Widget.Material3.MaterialCalendar.NavigationButton = 0x7f13010c
com.example.cuida:attr/drawableLeftCompat = 0x7f040197
@@ -4770,8 +4777,8 @@ com.example.cuida:dimen/m3_sys_motion_easing_emphasized_decelerate_control_x2 =
com.example.cuida:color/m3_ref_palette_neutral_variant60 = 0x7f060133
com.example.cuida:attr/fontProviderQuery = 0x7f040214
com.example.cuida:macro/m3_comp_time_input_time_input_field_supporting_text_type = 0x7f0d014c
-com.example.cuida:id/scrollView = 0x7f0901c4
-com.example.cuida:id/enterAlways = 0x7f0900d6
+com.example.cuida:id/scrollView = 0x7f0901c9
+com.example.cuida:id/enterAlways = 0x7f0900da
com.example.cuida:id/action_bar_subtitle = 0x7f090039
com.example.cuida:color/material_personalized_color_text_hint_foreground_inverse = 0x7f0602b2
com.example.cuida:array/hide_fingerprint_instantly_prefixes = 0x7f030004
@@ -4784,7 +4791,7 @@ com.example.cuida:style/TextAppearance.MaterialComponents.Headline4 = 0x7f130200
com.example.cuida:color/abc_tint_seek_thumb = 0x7f060016
com.example.cuida:attr/minHeight = 0x7f040326
com.example.cuida:style/Widget.MaterialComponents.NavigationView = 0x7f130436
-com.example.cuida:id/contiguous = 0x7f09009b
+com.example.cuida:id/contiguous = 0x7f09009c
com.example.cuida:anim/fragment_fast_out_extra_slow_in = 0x7f01001c
com.example.cuida:style/Base.Widget.MaterialComponents.CheckedTextView = 0x7f130112
com.example.cuida:macro/m3_comp_date_picker_modal_range_selection_month_subhead_color = 0x7f0d001c
@@ -4806,7 +4813,7 @@ com.example.cuida:attr/textAppearanceSubtitle1 = 0x7f040476
com.example.cuida:attr/autoSizePresetSizes = 0x7f040047
com.example.cuida:color/m3_ref_palette_secondary95 = 0x7f060151
com.example.cuida:attr/flow_verticalBias = 0x7f040208
-com.example.cuida:id/chain = 0x7f090086
+com.example.cuida:id/chain = 0x7f090087
com.example.cuida:color/design_fab_stroke_top_inner_color = 0x7f060063
com.example.cuida:attr/flow_maxElementsWrap = 0x7f040205
com.example.cuida:attr/backgroundTint = 0x7f040055
@@ -4838,13 +4845,13 @@ com.example.cuida:string/mtrl_switch_thumb_path_unchecked = 0x7f1200c6
com.example.cuida:dimen/mtrl_calendar_year_width = 0x7f070297
com.example.cuida:macro/m3_comp_extended_fab_primary_container_shape = 0x7f0d002e
com.example.cuida:attr/actionModeFindDrawable = 0x7f040019
-com.example.cuida:id/navigation_bar_item_icon_container = 0x7f090165
+com.example.cuida:id/navigation_bar_item_icon_container = 0x7f09016a
com.example.cuida:attr/textInputFilledDenseStyle = 0x7f040484
com.example.cuida:attr/textLocale = 0x7f04048c
com.example.cuida:string/icon_content_description = 0x7f120063
com.example.cuida:attr/activityName = 0x7f04002a
com.example.cuida:attr/finishPrimaryWithSecondary = 0x7f0401e7
-com.example.cuida:id/transition_scene_layoutid_cache = 0x7f090230
+com.example.cuida:id/transition_scene_layoutid_cache = 0x7f090236
com.example.cuida:dimen/notification_media_narrow_margin = 0x7f07030f
com.example.cuida:style/TextAppearance.Material3.DisplayMedium = 0x7f1301e8
com.example.cuida:attr/flow_firstHorizontalBias = 0x7f0401f9
@@ -4872,9 +4879,9 @@ com.example.cuida:color/m3_sys_color_dynamic_dark_surface = 0x7f0601a2
com.example.cuida:attr/addElevationShadow = 0x7f04002b
com.example.cuida:string/mtrl_picker_range_header_title = 0x7f1200b2
com.example.cuida:attr/cornerSizeBottomLeft = 0x7f04015c
-com.example.cuida:id/skipCollapsed = 0x7f0901da
+com.example.cuida:id/skipCollapsed = 0x7f0901df
com.example.cuida:attr/materialCalendarHeaderToggleButton = 0x7f0402f9
-com.example.cuida:id/sliding_pane_layout = 0x7f0901de
+com.example.cuida:id/sliding_pane_layout = 0x7f0901e3
com.example.cuida:attr/drawableTint = 0x7f04019b
com.example.cuida:attr/fastScrollVerticalThumbDrawable = 0x7f0401e5
com.example.cuida:attr/defaultScrollFlagsEnabled = 0x7f04017f
@@ -4912,7 +4919,7 @@ com.example.cuida:attr/forceApplySystemWindowInsetTop = 0x7f040219
com.example.cuida:attr/fabAlignmentModeEndMargin = 0x7f0401da
com.example.cuida:color/m3_sys_color_dynamic_light_inverse_primary = 0x7f0601b1
com.example.cuida:macro/m3_comp_navigation_rail_label_text_type = 0x7f0d00a2
-com.example.cuida:id/wrap_content_constrained = 0x7f090249
+com.example.cuida:id/wrap_content_constrained = 0x7f09024f
com.example.cuida:color/m3_navigation_rail_item_with_indicator_label_tint = 0x7f0600a9
com.example.cuida:color/dim_foreground_disabled_material_light = 0x7f060068
com.example.cuida:attr/fabAlignmentMode = 0x7f0401d9
@@ -4925,9 +4932,9 @@ com.example.cuida:array/crypto_fingerprint_fallback_vendors = 0x7f030002
com.example.cuida:style/Base.Widget.AppCompat.ActionBar.TabText = 0x7f1300c5
com.example.cuida:attr/layout_constraintHeight = 0x7f04029b
com.example.cuida:attr/extendedFloatingActionButtonTertiaryStyle = 0x7f0401d7
-com.example.cuida:id/src_atop = 0x7f0901ec
+com.example.cuida:id/src_atop = 0x7f0901f1
com.example.cuida:dimen/material_emphasis_high_type = 0x7f070232
-com.example.cuida:id/checkbox_taken = 0x7f09008b
+com.example.cuida:id/checkbox_taken = 0x7f09008c
com.example.cuida:drawable/mtrl_checkbox_button_icon_checked_unchecked = 0x7f0800d2
com.example.cuida:attr/extendedFloatingActionButtonSecondaryStyle = 0x7f0401d4
com.example.cuida:drawable/$mtrl_switch_thumb_checked_unchecked__0 = 0x7f080021
@@ -4944,7 +4951,7 @@ com.example.cuida:attr/layout_collapseParallaxMultiplier = 0x7f040288
com.example.cuida:attr/textAppearanceSmallPopupMenu = 0x7f040475
com.example.cuida:attr/menu = 0x7f040321
com.example.cuida:style/ShapeAppearanceOverlay.Material3.Corner.Right = 0x7f130184
-com.example.cuida:id/material_clock_display_and_toggle = 0x7f090127
+com.example.cuida:id/material_clock_display_and_toggle = 0x7f09012c
com.example.cuida:attr/colorTertiaryContainer = 0x7f040135
com.example.cuida:attr/exitAnim = 0x7f0401c5
com.example.cuida:attr/errorTextColor = 0x7f0401c4
@@ -4954,8 +4961,9 @@ com.example.cuida:color/bright_foreground_inverse_material_dark = 0x7f060026
com.example.cuida:attr/errorContentDescription = 0x7f0401bd
com.example.cuida:color/primary_dark_material_light = 0x7f060302
com.example.cuida:attr/textureWidth = 0x7f040495
-com.example.cuida:id/date_picker_actions = 0x7f0900a7
+com.example.cuida:id/date_picker_actions = 0x7f0900a8
com.example.cuida:dimen/m3_btn_text_btn_icon_padding_left = 0x7f0700e1
+com.example.cuida:id/edit_med_notes = 0x7f0900ce
com.example.cuida:attr/errorAccessibilityLabel = 0x7f0401bb
com.example.cuida:color/m3_sys_color_light_surface_container = 0x7f0601f4
com.example.cuida:attr/endIconDrawable = 0x7f0401b1
@@ -4991,7 +4999,7 @@ com.example.cuida:dimen/m3_extended_fab_top_padding = 0x7f0701b1
com.example.cuida:style/Theme.MaterialComponents.Bridge = 0x7f130246
com.example.cuida:macro/m3_comp_date_picker_modal_header_supporting_text_type = 0x7f0d0019
com.example.cuida:attr/firstBaselineToTopHeight = 0x7f0401e9
-com.example.cuida:id/decor_content_parent = 0x7f0900aa
+com.example.cuida:id/decor_content_parent = 0x7f0900ab
com.example.cuida:dimen/design_snackbar_elevation = 0x7f070083
com.example.cuida:attr/dynamicColorThemeOverlay = 0x7f0401a5
com.example.cuida:style/Base.Widget.AppCompat.TextView.SpinnerItem = 0x7f1300f9
@@ -5008,7 +5016,7 @@ com.example.cuida:color/design_dark_default_color_on_error = 0x7f060046
com.example.cuida:style/Widget.Material3.BottomNavigationView.ActiveIndicator = 0x7f13034c
com.example.cuida:attr/colorControlNormal = 0x7f040101
com.example.cuida:macro/m3_comp_navigation_rail_active_focus_state_layer_color = 0x7f0d0096
-com.example.cuida:id/open_search_view_root = 0x7f090189
+com.example.cuida:id/open_search_view_root = 0x7f09018e
com.example.cuida:attr/layout_scrollInterpolator = 0x7f0402c7
com.example.cuida:attr/defaultNavHost = 0x7f04017d
com.example.cuida:attr/drawableSize = 0x7f040199
@@ -5029,9 +5037,9 @@ com.example.cuida:color/mtrl_chip_background_color = 0x7f0602d2
com.example.cuida:attr/elevationOverlayColor = 0x7f0401ab
com.example.cuida:style/Base.Widget.Material3.CollapsingToolbar = 0x7f130102
com.example.cuida:color/switch_thumb_normal_material_light = 0x7f06031b
-com.example.cuida:id/cos = 0x7f09009e
+com.example.cuida:id/cos = 0x7f09009f
com.example.cuida:dimen/m3_searchbar_outlined_stroke_width = 0x7f0701da
-com.example.cuida:id/uniform = 0x7f090234
+com.example.cuida:id/uniform = 0x7f09023a
com.example.cuida:attr/colorOnPrimary = 0x7f040109
com.example.cuida:color/design_fab_stroke_end_inner_color = 0x7f060061
com.example.cuida:attr/drawableEndCompat = 0x7f040196
@@ -5106,12 +5114,13 @@ com.example.cuida:attr/customIntegerValue = 0x7f040170
com.example.cuida:attr/customFloatValue = 0x7f04016f
com.example.cuida:attr/clearTop = 0x7f0400e0
com.example.cuida:animator/m3_appbar_state_list_animator = 0x7f020009
-com.example.cuida:id/spring = 0x7f0901ea
+com.example.cuida:id/spring = 0x7f0901ef
com.example.cuida:attr/customColorValue = 0x7f04016d
com.example.cuida:style/Base.TextAppearance.AppCompat.Subhead.Inverse = 0x7f13002e
com.example.cuida:dimen/compat_control_corner_material = 0x7f07005c
com.example.cuida:attr/triggerReceiver = 0x7f0404df
com.example.cuida:drawable/$mtrl_checkbox_button_icon_indeterminate_checked__0 = 0x7f080013
+com.example.cuida:id/checkbox_topical = 0x7f090254
com.example.cuida:id/async = 0x7f090059
com.example.cuida:dimen/m3_comp_switch_unselected_pressed_state_layer_opacity = 0x7f070198
com.example.cuida:attr/cornerRadius = 0x7f04015a
@@ -5138,7 +5147,7 @@ com.example.cuida:dimen/m3_extended_fab_bottom_padding = 0x7f0701ac
com.example.cuida:attr/behavior_autoShrink = 0x7f04006d
com.example.cuida:color/material_harmonized_color_error_container = 0x7f06027a
com.example.cuida:color/m3_ref_palette_dynamic_neutral96 = 0x7f0600c5
-com.example.cuida:id/month_navigation_next = 0x7f090142
+com.example.cuida:id/month_navigation_next = 0x7f090147
com.example.cuida:color/m3_dark_primary_text_disable_only = 0x7f06008b
com.example.cuida:drawable/$mtrl_switch_thumb_checked_pressed__0 = 0x7f080020
com.example.cuida:dimen/m3_comp_filled_card_hover_state_layer_opacity = 0x7f07012b
@@ -5164,7 +5173,7 @@ com.example.cuida:drawable/abc_text_select_handle_middle_mtrl = 0x7f08006f
com.example.cuida:attr/paddingBottomSystemWindowInsets = 0x7f040378
com.example.cuida:dimen/abc_config_prefDialogWidth = 0x7f070017
com.example.cuida:attr/indeterminateAnimationType = 0x7f04024a
-com.example.cuida:layout/material_radial_view_group = 0x7f0c004c
+com.example.cuida:layout/material_radial_view_group = 0x7f0c004d
com.example.cuida:attr/colorSurfaceDim = 0x7f040130
com.example.cuida:attr/textAppearanceHeadline2 = 0x7f040461
com.example.cuida:attr/materialSearchBarStyle = 0x7f04030c
@@ -5174,7 +5183,7 @@ com.example.cuida:attr/contentPaddingEnd = 0x7f04014b
com.example.cuida:dimen/design_bottom_navigation_icon_size = 0x7f070066
com.example.cuida:style/Base.V24.Theme.Material3.Dark.Dialog = 0x7f1300b2
com.example.cuida:attr/contentInsetStart = 0x7f040147
-com.example.cuida:id/title_template = 0x7f090226
+com.example.cuida:id/title_template = 0x7f09022c
com.example.cuida:attr/suffixTextAppearance = 0x7f04042c
com.example.cuida:attr/layout_constraintVertical_chainStyle = 0x7f0402b0
com.example.cuida:attr/contentInsetEndWithActions = 0x7f040144
@@ -5204,7 +5213,7 @@ com.example.cuida:dimen/m3_comp_date_picker_modal_header_container_height = 0x7f
com.example.cuida:style/Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f130313
com.example.cuida:attr/colorTertiaryFixed = 0x7f040136
com.example.cuida:attr/layout_constraintWidth_min = 0x7f0402b5
-com.example.cuida:id/listMode = 0x7f09011b
+com.example.cuida:id/listMode = 0x7f090120
com.example.cuida:attr/layout_constraintTop_toBottomOf = 0x7f0402ad
com.example.cuida:dimen/abc_action_bar_overflow_padding_start_material = 0x7f070008
com.example.cuida:attr/chipIconEnabled = 0x7f0400c9
@@ -5220,7 +5229,7 @@ com.example.cuida:attr/rotationCenterId = 0x7f0403bf
com.example.cuida:dimen/abc_action_bar_content_inset_with_nav = 0x7f070001
com.example.cuida:attr/popupMenuStyle = 0x7f04039c
com.example.cuida:styleable/StateListDrawableItem = 0x7f140095
-com.example.cuida:layout/material_clockface_textview = 0x7f0c004a
+com.example.cuida:layout/material_clockface_textview = 0x7f0c004b
com.example.cuida:dimen/fastscroll_minimum_range = 0x7f070094
com.example.cuida:attr/collapsedTitleTextAppearance = 0x7f0400f3
com.example.cuida:layout/design_text_input_end_icon = 0x7f0c0030
@@ -5293,10 +5302,10 @@ com.example.cuida:attr/carousel_touchUpMode = 0x7f0400b0
com.example.cuida:attr/flow_lastHorizontalBias = 0x7f040201
com.example.cuida:attr/colorOnSurfaceInverse = 0x7f040113
com.example.cuida:attr/haloRadius = 0x7f040223
-com.example.cuida:layout/mtrl_navigation_rail_item = 0x7f0c0066
+com.example.cuida:layout/mtrl_navigation_rail_item = 0x7f0c0067
com.example.cuida:attr/shapeAppearanceOverlay = 0x7f0403dd
com.example.cuida:attr/imageZoom = 0x7f040249
-com.example.cuida:id/submit_area = 0x7f0901f9
+com.example.cuida:id/submit_area = 0x7f0901fe
com.example.cuida:attr/colorOnContainer = 0x7f040105
com.example.cuida:attr/radioButtonStyle = 0x7f0403ad
com.example.cuida:attr/colorOnSurface = 0x7f040112
@@ -5329,7 +5338,7 @@ com.example.cuida:color/m3_sys_color_dynamic_dark_surface_container_highest = 0x
com.example.cuida:style/Widget.MaterialComponents.Toolbar.Surface = 0x7f13045e
com.example.cuida:attr/motion_postLayoutCollision = 0x7f04035c
com.example.cuida:attr/errorIconDrawable = 0x7f0401bf
-com.example.cuida:id/snackbar_action = 0x7f0901df
+com.example.cuida:id/snackbar_action = 0x7f0901e4
com.example.cuida:attr/layout_marginBaseline = 0x7f0402c3
com.example.cuida:attr/color = 0x7f0400fa
com.example.cuida:macro/m3_comp_outlined_text_field_disabled_outline_color = 0x7f0d00b7
@@ -5341,7 +5350,7 @@ com.example.cuida:attr/listDividerAlertDialog = 0x7f0402d3
com.example.cuida:attr/bottomSheetDialogTheme = 0x7f040080
com.example.cuida:attr/collapsedTitleGravity = 0x7f0400f2
com.example.cuida:attr/textBackground = 0x7f04047b
-com.example.cuida:layout/mtrl_calendar_vertical = 0x7f0c0062
+com.example.cuida:layout/mtrl_calendar_vertical = 0x7f0c0063
com.example.cuida:attr/collapseContentDescription = 0x7f0400ef
com.example.cuida:drawable/design_snackbar_background = 0x7f080098
com.example.cuida:style/Widget.Design.TextInputLayout = 0x7f13033d
@@ -5354,6 +5363,7 @@ com.example.cuida:color/m3_sys_color_dynamic_dark_surface_bright = 0x7f0601a3
com.example.cuida:macro/m3_comp_switch_selected_icon_color = 0x7f0d012a
com.example.cuida:attr/titleMargin = 0x7f0404b4
com.example.cuida:drawable/m3_popupmenu_background_overlay = 0x7f0800bc
+com.example.cuida:id/edit_med_dosage = 0x7f0900cc
com.example.cuida:attr/materialCalendarDayOfWeekLabel = 0x7f0402f1
com.example.cuida:styleable/StateListDrawable = 0x7f140094
com.example.cuida:style/Theme.MaterialComponents.DayNight.DialogWhenLarge = 0x7f130255
@@ -5379,7 +5389,7 @@ com.example.cuida:dimen/m3_comp_slider_disabled_inactive_track_opacity = 0x7f070
com.example.cuida:styleable/Motion = 0x7f140068
com.example.cuida:interpolator/mtrl_fast_out_linear_in = 0x7f0b000e
com.example.cuida:attr/defaultMarginsEnabled = 0x7f04017c
-com.example.cuida:id/content = 0x7f090099
+com.example.cuida:id/content = 0x7f09009a
com.example.cuida:drawable/abc_ic_voice_search_api_material = 0x7f080049
com.example.cuida:interpolator/mtrl_fast_out_slow_in = 0x7f0b000f
com.example.cuida:attr/clockHandColor = 0x7f0400e4
@@ -5408,7 +5418,7 @@ com.example.cuida:dimen/m3_comp_fab_primary_small_container_height = 0x7f070123
com.example.cuida:color/m3_chip_background_color = 0x7f060083
com.example.cuida:drawable/ic_mtrl_chip_checked_black = 0x7f0800b0
com.example.cuida:dimen/m3_comp_navigation_bar_container_height = 0x7f07013e
-com.example.cuida:id/unlabeled = 0x7f090235
+com.example.cuida:id/unlabeled = 0x7f09023b
com.example.cuida:attr/buttonPanelSideLayout = 0x7f04009a
com.example.cuida:macro/m3_comp_time_picker_time_selector_unselected_label_text_color = 0x7f0d016b
com.example.cuida:id/autoComplete = 0x7f09005b
@@ -5426,7 +5436,7 @@ com.example.cuida:attr/errorTextAppearance = 0x7f0401c3
com.example.cuida:dimen/m3_comp_fab_primary_icon_size = 0x7f07011e
com.example.cuida:attr/chipStartPadding = 0x7f0400d3
com.example.cuida:attr/scopeUris = 0x7f0403c5
-com.example.cuida:id/password_toggle = 0x7f090199
+com.example.cuida:id/password_toggle = 0x7f09019e
com.example.cuida:attr/chipStandaloneStyle = 0x7f0400d2
com.example.cuida:attr/badgeWithTextWidth = 0x7f040067
com.example.cuida:color/material_dynamic_neutral_variant40 = 0x7f060243
@@ -5501,7 +5511,7 @@ com.example.cuida:string/google_api_key = 0x7f12005e
com.example.cuida:attr/checkedIconVisible = 0x7f0400c1
com.example.cuida:attr/editTextStyle = 0x7f0401a8
com.example.cuida:color/bright_foreground_inverse_material_light = 0x7f060027
-com.example.cuida:layout/mtrl_layout_snackbar_include = 0x7f0c0065
+com.example.cuida:layout/mtrl_layout_snackbar_include = 0x7f0c0066
com.example.cuida:attr/haloColor = 0x7f040222
com.example.cuida:anim/btn_radio_to_on_mtrl_ring_outer_animation = 0x7f010016
com.example.cuida:attr/trackTintMode = 0x7f0404d7
@@ -5555,7 +5565,7 @@ com.example.cuida:color/text_secondary = 0x7f06031f
com.example.cuida:attr/alpha = 0x7f040031
com.example.cuida:dimen/material_clock_hand_stroke_width = 0x7f070226
com.example.cuida:dimen/material_clock_display_width = 0x7f070221
-com.example.cuida:id/pathRelative = 0x7f09019b
+com.example.cuida:id/pathRelative = 0x7f0901a0
com.example.cuida:attr/passwordToggleTintMode = 0x7f040387
com.example.cuida:attr/hintEnabled = 0x7f040230
com.example.cuida:drawable/abc_ic_arrow_drop_right_black_24dp = 0x7f08003e
@@ -5570,7 +5580,7 @@ com.example.cuida:attr/badgeWithTextShapeAppearanceOverlay = 0x7f040066
com.example.cuida:attr/badgeWithTextShapeAppearance = 0x7f040065
com.example.cuida:attr/flow_lastVerticalBias = 0x7f040203
com.example.cuida:color/material_on_surface_disabled = 0x7f060283
-com.example.cuida:id/fitXY = 0x7f0900e8
+com.example.cuida:id/fitXY = 0x7f0900ed
com.example.cuida:id/accelerate = 0x7f09000e
com.example.cuida:anim/btn_checkbox_to_checked_icon_null_animation = 0x7f01000e
com.example.cuida:attr/textAppearanceHeadline3 = 0x7f040462
@@ -5584,7 +5594,7 @@ com.example.cuida:attr/textEndPadding = 0x7f040482
com.example.cuida:attr/badgeWithTextHeight = 0x7f040063
com.example.cuida:style/Widget.MaterialComponents.Button.TextButton = 0x7f1303fb
com.example.cuida:attr/badgeShapeAppearance = 0x7f04005a
-com.example.cuida:id/mtrl_anchor_parent = 0x7f090146
+com.example.cuida:id/mtrl_anchor_parent = 0x7f09014b
com.example.cuida:attr/chipIconTint = 0x7f0400cb
com.example.cuida:attr/materialAlertDialogTheme = 0x7f0402e9
com.example.cuida:anim/linear_indeterminate_line1_tail_interpolator = 0x7f01001e
@@ -5595,7 +5605,7 @@ com.example.cuida:dimen/material_time_picker_minimum_screen_height = 0x7f070241
com.example.cuida:anim/m3_side_sheet_exit_to_right = 0x7f010028
com.example.cuida:attr/barrierAllowsGoneWidgets = 0x7f040069
com.example.cuida:dimen/m3_navigation_item_shape_inset_bottom = 0x7f0701bf
-com.example.cuida:id/material_minute_text_input = 0x7f090131
+com.example.cuida:id/material_minute_text_input = 0x7f090136
com.example.cuida:dimen/abc_dialog_list_padding_bottom_no_buttons = 0x7f070020
com.example.cuida:attr/backgroundInsetStart = 0x7f040050
com.example.cuida:attr/mimeType = 0x7f040325
@@ -5672,7 +5682,7 @@ com.example.cuida:color/primary_text_disabled_material_dark = 0x7f060308
com.example.cuida:style/Base.V23.Theme.AppCompat = 0x7f1300af
com.example.cuida:attr/colorOnSecondaryFixed = 0x7f040110
com.example.cuida:attr/altSrc = 0x7f040033
-com.example.cuida:id/mtrl_motion_snapshot_view = 0x7f090152
+com.example.cuida:id/mtrl_motion_snapshot_view = 0x7f090157
com.example.cuida:animator/fragment_fade_enter = 0x7f020005
com.example.cuida:attr/tabPaddingEnd = 0x7f040445
com.example.cuida:attr/boxCornerRadiusTopStart = 0x7f040089
@@ -5694,19 +5704,19 @@ com.example.cuida:anim/nav_default_exit_anim = 0x7f01002d
com.example.cuida:anim/btn_radio_to_off_mtrl_ring_outer_path_animation = 0x7f010014
com.example.cuida:dimen/mtrl_snackbar_padding_horizontal = 0x7f0702f1
com.example.cuida:styleable/PropertySet = 0x7f14007f
-com.example.cuida:id/text_reason = 0x7f09021a
-com.example.cuida:id/off = 0x7f09017e
+com.example.cuida:id/text_reason = 0x7f09021f
+com.example.cuida:id/off = 0x7f090183
com.example.cuida:color/m3_sys_color_on_tertiary_fixed = 0x7f060201
com.example.cuida:macro/m3_comp_navigation_rail_container_color = 0x7f0d009c
com.example.cuida:animator/mtrl_extended_fab_state_list_animator = 0x7f02001d
-com.example.cuida:id/month_navigation_bar = 0x7f090140
-com.example.cuida:id/invisible = 0x7f09010c
+com.example.cuida:id/month_navigation_bar = 0x7f090145
+com.example.cuida:id/invisible = 0x7f090111
com.example.cuida:attr/animateCircleAngleTo = 0x7f040035
com.example.cuida:color/m3_ref_palette_neutral_variant90 = 0x7f060136
com.example.cuida:string/generic_error_no_keyguard = 0x7f12005c
com.example.cuida:attr/paddingTopSystemWindowInsets = 0x7f04037f
-com.example.cuida:layout/mtrl_picker_fullscreen = 0x7f0c0069
-com.example.cuida:layout/mtrl_calendar_days_of_week = 0x7f0c005c
+com.example.cuida:layout/mtrl_picker_fullscreen = 0x7f0c006a
+com.example.cuida:layout/mtrl_calendar_days_of_week = 0x7f0c005d
com.example.cuida:attr/forceDefaultNavigationOnClickListener = 0x7f04021a
com.example.cuida:color/background_material_light = 0x7f060021
com.example.cuida:attr/motion_triggerOnCollision = 0x7f04035d
@@ -5717,7 +5727,7 @@ com.example.cuida:style/Base.TextAppearance.MaterialComponents.Headline6 = 0x7f1
com.example.cuida:dimen/abc_switch_padding = 0x7f07003e
com.example.cuida:color/material_cursor_color = 0x7f060225
com.example.cuida:macro/m3_comp_switch_unselected_focus_handle_color = 0x7f0d0130
-com.example.cuida:id/cradle = 0x7f0900a0
+com.example.cuida:id/cradle = 0x7f0900a1
com.example.cuida:id/barrier = 0x7f09005f
com.example.cuida:anim/m3_side_sheet_enter_from_left = 0x7f010025
com.example.cuida:style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox = 0x7f1302dc
@@ -5742,12 +5752,12 @@ com.example.cuida:attr/transitionDisable = 0x7f0404d9
com.example.cuida:dimen/mtrl_calendar_selection_text_baseline_to_top = 0x7f07028f
com.example.cuida:dimen/m3_nav_badge_with_text_vertical_offset = 0x7f0701ba
com.example.cuida:style/Base.MaterialAlertDialog.MaterialComponents.Title.Panel = 0x7f130014
-com.example.cuida:id/fill_horizontal = 0x7f0900dd
+com.example.cuida:id/fill_horizontal = 0x7f0900e2
com.example.cuida:color/m3_highlighted_text = 0x7f06009e
com.example.cuida:color/material_on_background_disabled = 0x7f06027d
com.example.cuida:attr/tabIndicatorAnimationDuration = 0x7f040439
com.example.cuida:attr/indeterminateProgressStyle = 0x7f04024b
-com.example.cuida:layout/item_appointment = 0x7f0c003d
+com.example.cuida:layout/item_appointment = 0x7f0c003e
com.example.cuida:integer/m3_sys_motion_duration_long1 = 0x7f0a0015
com.example.cuida:attr/liftOnScrollColor = 0x7f0402ca
com.example.cuida:drawable/common_google_signin_btn_icon_dark_normal_background = 0x7f080085
@@ -5793,7 +5803,7 @@ com.example.cuida:dimen/mtrl_low_ripple_pressed_alpha = 0x7f0702be
com.example.cuida:styleable/ListPopupWindow = 0x7f140050
com.example.cuida:color/design_fab_shadow_end_color = 0x7f06005e
com.example.cuida:attr/extendedFloatingActionButtonSurfaceStyle = 0x7f0401d6
-com.example.cuida:id/src_over = 0x7f0901ee
+com.example.cuida:id/src_over = 0x7f0901f3
com.example.cuida:attr/useDrawerArrowDrawable = 0x7f0404e5
com.example.cuida:attr/actionBarWidgetTheme = 0x7f04000d
com.example.cuida:animator/m3_extended_fab_hide_motion_spec = 0x7f020012
@@ -5801,7 +5811,7 @@ com.example.cuida:attr/tintNavigationIcon = 0x7f0404af
com.example.cuida:attr/badgeWidePadding = 0x7f040061
com.example.cuida:attr/SharedValue = 0x7f040000
com.example.cuida:string/hide_bottom_view_on_scroll_behavior = 0x7f120062
-com.example.cuida:id/match_parent = 0x7f090125
+com.example.cuida:id/match_parent = 0x7f09012a
com.example.cuida:drawable/btn_radio_on_to_off_mtrl_animation = 0x7f080080
com.example.cuida:attr/clickAction = 0x7f0400e2
com.example.cuida:color/m3_ref_palette_tertiary100 = 0x7f060155
@@ -5815,24 +5825,24 @@ com.example.cuida:attr/maxNumber = 0x7f04031d
com.example.cuida:anim/btn_radio_to_off_mtrl_ring_outer_animation = 0x7f010013
com.example.cuida:animator/m3_extended_fab_change_size_collapse_motion_spec = 0x7f020010
com.example.cuida:dimen/mtrl_calendar_header_toggle_margin_top = 0x7f070283
-com.example.cuida:id/honorRequest = 0x7f0900fe
+com.example.cuida:id/honorRequest = 0x7f090103
com.example.cuida:color/m3_ref_palette_neutral90 = 0x7f060125
com.example.cuida:style/ShapeAppearanceOverlay.Material3.Corner.Bottom = 0x7f130182
-com.example.cuida:layout/material_timepicker_textinput_display = 0x7f0c0052
+com.example.cuida:layout/material_timepicker_textinput_display = 0x7f0c0053
com.example.cuida:attr/buttonBarPositiveButtonStyle = 0x7f040092
com.example.cuida:color/m3_bottom_sheet_drag_handle_color = 0x7f060075
com.example.cuida:anim/btn_checkbox_to_unchecked_check_path_merged_animation = 0x7f010010
com.example.cuida:integer/mtrl_view_invisible = 0x7f0a0042
-com.example.cuida:id/search_edit_frame = 0x7f0901ca
-com.example.cuida:id/navigation_bar_item_large_label_view = 0x7f090168
+com.example.cuida:id/search_edit_frame = 0x7f0901cf
+com.example.cuida:id/navigation_bar_item_large_label_view = 0x7f09016d
com.example.cuida:dimen/m3_comp_search_bar_avatar_size = 0x7f07016f
com.example.cuida:id/action_text = 0x7f090045
com.example.cuida:color/dim_foreground_material_light = 0x7f06006a
-com.example.cuida:id/view_tree_view_model_store_owner = 0x7f09023f
+com.example.cuida:id/view_tree_view_model_store_owner = 0x7f090245
com.example.cuida:drawable/ic_search_black_24 = 0x7f0800b7
com.example.cuida:dimen/m3_navigation_rail_item_padding_top_with_large_font = 0x7f0701d0
com.example.cuida:style/ThemeOverlay.MaterialComponents.Light = 0x7f1302d0
-com.example.cuida:layout/m3_auto_complete_simple_item = 0x7f0c0043
+com.example.cuida:layout/m3_auto_complete_simple_item = 0x7f0c0044
com.example.cuida:drawable/$mtrl_checkbox_button_unchecked_checked__2 = 0x7f08001f
com.example.cuida:anim/m3_side_sheet_enter_from_right = 0x7f010026
com.example.cuida:attr/showDividers = 0x7f0403e5
@@ -5858,14 +5868,14 @@ com.example.cuida:dimen/m3_sys_motion_easing_standard_control_x2 = 0x7f070210
com.example.cuida:attr/endIconTintMode = 0x7f0401b6
com.example.cuida:color/m3_sys_color_light_surface_container_highest = 0x7f0601f6
com.example.cuida:dimen/m3_bottom_sheet_drag_handle_bottom_padding = 0x7f0700c5
-com.example.cuida:id/message = 0x7f09013b
-com.example.cuida:id/button_save = 0x7f09007a
+com.example.cuida:id/message = 0x7f090140
+com.example.cuida:id/button_save = 0x7f09007b
com.example.cuida:attr/shouldRemoveExpandedCorners = 0x7f0403e1
com.example.cuida:color/m3_sys_color_light_on_surface = 0x7f0601e8
com.example.cuida:string/abc_searchview_description_clear = 0x7f120013
com.example.cuida:attr/recyclerViewStyle = 0x7f0403b6
com.example.cuida:style/Widget.MaterialComponents.TimePicker.Display.TextInputEditText = 0x7f130457
-com.example.cuida:layout/fragment_sns24 = 0x7f0c003a
+com.example.cuida:layout/fragment_sns24 = 0x7f0c003b
com.example.cuida:dimen/m3_appbar_expanded_title_margin_bottom = 0x7f0700a7
com.example.cuida:attr/destination = 0x7f040184
com.example.cuida:id/TOP_START = 0x7f09000d
@@ -5874,7 +5884,7 @@ com.example.cuida:attr/autoCompleteMode = 0x7f040042
com.example.cuida:styleable/NavAction = 0x7f14006f
com.example.cuida:attr/textOutlineThickness = 0x7f04048e
com.example.cuida:integer/design_snackbar_text_max_lines = 0x7f0a0007
-com.example.cuida:id/mtrl_picker_header_selection_text = 0x7f090155
+com.example.cuida:id/mtrl_picker_header_selection_text = 0x7f09015a
com.example.cuida:attr/materialClockStyle = 0x7f040304
com.example.cuida:color/m3_default_color_secondary_text = 0x7f06008d
com.example.cuida:style/Theme.MaterialComponents.DayNight = 0x7f130248
@@ -5925,7 +5935,7 @@ com.example.cuida:anim/abc_tooltip_exit = 0x7f01000b
com.example.cuida:string/searchbar_scrolling_view_behavior = 0x7f1200d9
com.example.cuida:attr/thumbIconTint = 0x7f04049c
com.example.cuida:style/TextAppearance.AppCompat.Button = 0x7f130196
-com.example.cuida:id/outline = 0x7f09018f
+com.example.cuida:id/outline = 0x7f090194
com.example.cuida:color/m3_sys_color_primary_fixed_dim = 0x7f060204
com.example.cuida:anim/abc_slide_in_bottom = 0x7f010006
com.example.cuida:attr/layout_constraintHeight_percent = 0x7f04029f
@@ -5934,7 +5944,7 @@ com.example.cuida:attr/transitionPathRotate = 0x7f0404dc
com.example.cuida:attr/layout_constraintBaseline_toTopOf = 0x7f04028e
com.example.cuida:drawable/material_ic_clear_black_24dp = 0x7f0800c5
com.example.cuida:attr/paddingLeftSystemWindowInsets = 0x7f04037a
-com.example.cuida:id/tag_accessibility_heading = 0x7f0901fe
+com.example.cuida:id/tag_accessibility_heading = 0x7f090203
com.example.cuida:attr/defaultQueryHint = 0x7f04017e
com.example.cuida:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f130036
com.example.cuida:color/abc_hint_foreground_material_dark = 0x7f060007
diff --git a/app/build/intermediates/symbol_list_with_package_name/debug/processDebugResources/package-aware-r.txt b/app/build/intermediates/symbol_list_with_package_name/debug/processDebugResources/package-aware-r.txt
index 86268b9..3d715b0 100644
--- a/app/build/intermediates/symbol_list_with_package_name/debug/processDebugResources/package-aware-r.txt
+++ b/app/build/intermediates/symbol_list_with_package_name/debug/processDebugResources/package-aware-r.txt
@@ -3321,6 +3321,7 @@ id button_cancel
id button_cancel_password
id button_change_password
id button_edit_profile
+id button_find_hospital
id button_logout
id button_save
id button_save_password
@@ -3338,8 +3339,11 @@ id chain
id chain2
id chains
id checkbox
+id checkbox_inhalatory
+id checkbox_oral
id checkbox_remember_me
id checkbox_taken
+id checkbox_topical
id checked
id chronometer
id circle_center
@@ -3403,6 +3407,8 @@ id east
id edge
id edit_age
id edit_email
+id edit_med_name
+id edit_med_notes
id edit_name
id edit_profile_image
id edit_query
@@ -3419,6 +3425,7 @@ id enterAlwaysCollapsed
id exitUntilCollapsed
id expand_activities_button
id expanded_menu
+id fab_add_medication
id fade
id fill
id fill_horizontal
@@ -3740,6 +3747,7 @@ id text_med_notes
id text_med_time
id text_reason
id text_time
+id text_title
id text_type
id textinput_counter
id textinput_error
@@ -3926,6 +3934,7 @@ layout design_navigation_menu
layout design_navigation_menu_item
layout design_text_input_end_icon
layout design_text_input_start_icon
+layout dialog_add_medication
layout dialog_change_password
layout dialog_edit_profile
layout fingerprint_dialog_layout
diff --git a/app/build/outputs/apk/debug/app-debug.apk b/app/build/outputs/apk/debug/app-debug.apk
index a048cd7..0607b87 100644
Binary files a/app/build/outputs/apk/debug/app-debug.apk and b/app/build/outputs/apk/debug/app-debug.apk differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityForgotPasswordBinding.class.uniqueId8 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityForgotPasswordBinding.class.uniqueId8
new file mode 100644
index 0000000..a06bdb2
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityForgotPasswordBinding.class.uniqueId8 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityLoginBinding.class.uniqueId10 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityLoginBinding.class.uniqueId10
new file mode 100644
index 0000000..6ba586e
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityLoginBinding.class.uniqueId10 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityMainBinding.class.uniqueId28 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityMainBinding.class.uniqueId28
new file mode 100644
index 0000000..747d494
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityMainBinding.class.uniqueId28 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityRegisterBinding.class.uniqueId17 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityRegisterBinding.class.uniqueId17
new file mode 100644
index 0000000..2317940
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityRegisterBinding.class.uniqueId17 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AppointmentAdapter$AppointmentViewHolder.class.uniqueId21 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AppointmentAdapter$AppointmentViewHolder.class.uniqueId21
new file mode 100644
index 0000000..d2ba465
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AppointmentAdapter$AppointmentViewHolder.class.uniqueId21 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AppointmentAdapter.class.uniqueId25 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AppointmentAdapter.class.uniqueId25
new file mode 100644
index 0000000..b669b43
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AppointmentAdapter.class.uniqueId25 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DialogAddMedicationBinding.class.uniqueId5 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DialogAddMedicationBinding.class.uniqueId5
new file mode 100644
index 0000000..4fd9559
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DialogAddMedicationBinding.class.uniqueId5 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DialogChangePasswordBinding.class.uniqueId9 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DialogChangePasswordBinding.class.uniqueId9
new file mode 100644
index 0000000..d12c930
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DialogChangePasswordBinding.class.uniqueId9 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DialogEditProfileBinding.class.uniqueId30 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DialogEditProfileBinding.class.uniqueId30
new file mode 100644
index 0000000..8443a5a
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DialogEditProfileBinding.class.uniqueId30 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentAppointmentsBinding.class.uniqueId29 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentAppointmentsBinding.class.uniqueId29
new file mode 100644
index 0000000..bf06d66
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentAppointmentsBinding.class.uniqueId29 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentHomeBinding.class.uniqueId22 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentHomeBinding.class.uniqueId22
new file mode 100644
index 0000000..bd6b11b
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentHomeBinding.class.uniqueId22 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentMedicationBinding.class.uniqueId27 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentMedicationBinding.class.uniqueId27
new file mode 100644
index 0000000..1462cda
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentMedicationBinding.class.uniqueId27 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentProfileBinding.class.uniqueId4 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentProfileBinding.class.uniqueId4
new file mode 100644
index 0000000..ad81014
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentProfileBinding.class.uniqueId4 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentScheduleAppointmentBinding.class.uniqueId14 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentScheduleAppointmentBinding.class.uniqueId14
new file mode 100644
index 0000000..fb7fb8f
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentScheduleAppointmentBinding.class.uniqueId14 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentSns24Binding.class.uniqueId0 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentSns24Binding.class.uniqueId0
new file mode 100644
index 0000000..85f960a
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FragmentSns24Binding.class.uniqueId0 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Gemini$1.class.uniqueId2 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Gemini$1.class.uniqueId2
deleted file mode 100644
index f2f3e6f..0000000
Binary files a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Gemini$1.class.uniqueId2 and /dev/null differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Gemini.class.uniqueId3 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Gemini.class.uniqueId3
deleted file mode 100644
index 8189b65..0000000
Binary files a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Gemini.class.uniqueId3 and /dev/null differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/HomeFragment.class.uniqueId18 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/HomeFragment.class.uniqueId18
new file mode 100644
index 0000000..e2f8a3e
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/HomeFragment.class.uniqueId18 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ItemAppointmentBinding.class.uniqueId13 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ItemAppointmentBinding.class.uniqueId13
new file mode 100644
index 0000000..bc110bf
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ItemAppointmentBinding.class.uniqueId13 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ItemMedicationBinding.class.uniqueId16 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ItemMedicationBinding.class.uniqueId16
new file mode 100644
index 0000000..1b7aa59
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ItemMedicationBinding.class.uniqueId16 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MainActivity.class.uniqueId26 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MainActivity.class.uniqueId26
new file mode 100644
index 0000000..1ee02e4
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MainActivity.class.uniqueId26 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationAdapter$MedicationViewHolder.class.uniqueId20 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationAdapter$MedicationViewHolder.class.uniqueId20
new file mode 100644
index 0000000..99ea637
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationAdapter$MedicationViewHolder.class.uniqueId20 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationAdapter$OnItemClickListener.class.uniqueId24 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationAdapter$OnItemClickListener.class.uniqueId24
new file mode 100644
index 0000000..c043af6
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationAdapter$OnItemClickListener.class.uniqueId24 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationAdapter.class.uniqueId11 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationAdapter.class.uniqueId11
new file mode 100644
index 0000000..c6ddac8
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationAdapter.class.uniqueId11 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationDialog$OnMedicationSaveListener.class.uniqueId7 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationDialog$OnMedicationSaveListener.class.uniqueId7
new file mode 100644
index 0000000..c59f3a3
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationDialog$OnMedicationSaveListener.class.uniqueId7 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationDialog.class.uniqueId2 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationDialog.class.uniqueId2
new file mode 100644
index 0000000..fbbd880
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationDialog.class.uniqueId2 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationFragment$1.class.uniqueId6 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationFragment$1.class.uniqueId6
new file mode 100644
index 0000000..0224828
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationFragment$1.class.uniqueId6 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationFragment.class.uniqueId23 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationFragment.class.uniqueId23
new file mode 100644
index 0000000..f4f60d9
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/MedicationFragment.class.uniqueId23 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ProfileFragment.class.uniqueId19 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ProfileFragment.class.uniqueId19
new file mode 100644
index 0000000..bfe9e34
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ProfileFragment.class.uniqueId19 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ScheduleAppointmentFragment.class.uniqueId15 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ScheduleAppointmentFragment.class.uniqueId15
new file mode 100644
index 0000000..8404b3c
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ScheduleAppointmentFragment.class.uniqueId15 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Sns24Fragment$1.class.uniqueId1 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Sns24Fragment$1.class.uniqueId1
deleted file mode 100644
index 6472aad..0000000
Binary files a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Sns24Fragment$1.class.uniqueId1 and /dev/null differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Sns24Fragment.class.uniqueId0 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Sns24Fragment.class.uniqueId0
deleted file mode 100644
index fe7fd03..0000000
Binary files a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Sns24Fragment.class.uniqueId0 and /dev/null differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/TimeSlotAdapter$OnTimeSlotSelectedListener.class.uniqueId3 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/TimeSlotAdapter$OnTimeSlotSelectedListener.class.uniqueId3
new file mode 100644
index 0000000..6f341b7
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/TimeSlotAdapter$OnTimeSlotSelectedListener.class.uniqueId3 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/TimeSlotAdapter$ViewHolder.class.uniqueId12 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/TimeSlotAdapter$ViewHolder.class.uniqueId12
new file mode 100644
index 0000000..1b43387
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/TimeSlotAdapter$ViewHolder.class.uniqueId12 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/TimeSlotAdapter.class.uniqueId1 b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/TimeSlotAdapter.class.uniqueId1
new file mode 100644
index 0000000..8b8e976
Binary files /dev/null and b/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/TimeSlotAdapter.class.uniqueId1 differ
diff --git a/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin
index 0b577bf..8c21cd4 100644
Binary files a/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin and b/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ
diff --git a/app/src/main/java/com/example/cuida/services/Gemini.java b/app/src/main/java/com/example/cuida/services/Gemini.java
index 45a46b8..143adb8 100644
--- a/app/src/main/java/com/example/cuida/services/Gemini.java
+++ b/app/src/main/java/com/example/cuida/services/Gemini.java
@@ -18,7 +18,7 @@ public class Gemini {
public Gemini() {
// 1. Configurar o modelo (usa a tua API Key do Google AI Studio)
GenerativeModel generativeModel = new GenerativeModel(
- "gemini-1.5-flash",
+ "gemini-2.5-flash",
"AIzaSyBmLgn-SHaTDvAeDWsw2iTZRR9gahhOu7k");
this.modelo = GenerativeModelFutures.from(generativeModel);
}
diff --git a/app/src/main/java/com/example/cuida/ui/medication/MedicationAdapter.java b/app/src/main/java/com/example/cuida/ui/medication/MedicationAdapter.java
index f69852d..d1ba491 100644
--- a/app/src/main/java/com/example/cuida/ui/medication/MedicationAdapter.java
+++ b/app/src/main/java/com/example/cuida/ui/medication/MedicationAdapter.java
@@ -19,6 +19,8 @@ public class MedicationAdapter extends RecyclerView.Adapter {
+ int position = getAdapterPosition();
+ if (listener != null && position != RecyclerView.NO_POSITION) {
+ listener.onItemClick(medicationList.get(position));
+ }
+ });
}
}
}
diff --git a/app/src/main/java/com/example/cuida/ui/medication/MedicationDialog.java b/app/src/main/java/com/example/cuida/ui/medication/MedicationDialog.java
new file mode 100644
index 0000000..2bf6ace
--- /dev/null
+++ b/app/src/main/java/com/example/cuida/ui/medication/MedicationDialog.java
@@ -0,0 +1,142 @@
+package com.example.cuida.ui.medication;
+
+import android.app.Dialog;
+import android.app.TimePickerDialog;
+import android.os.Bundle;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.widget.EditText;
+import android.widget.TextView;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.appcompat.app.AlertDialog;
+import androidx.fragment.app.DialogFragment;
+import com.example.cuida.R;
+import com.example.cuida.data.model.Medication;
+import java.util.Calendar;
+import java.util.Locale;
+
+public class MedicationDialog extends DialogFragment {
+
+ private EditText editName, editNotes;
+ private android.widget.CheckBox checkOral, checkTopical, checkInhalatory;
+ private TextView textTime;
+ private Medication medicationToEdit;
+ private OnMedicationSaveListener listener;
+
+ public interface OnMedicationSaveListener {
+ void onSave(Medication medication);
+ }
+
+ public void setListener(OnMedicationSaveListener listener) {
+ this.listener = listener;
+ }
+
+ public void setMedicationToEdit(Medication medication) {
+ this.medicationToEdit = medication;
+ }
+
+ @NonNull
+ @Override
+ public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
+ AlertDialog.Builder builder = new AlertDialog.Builder(requireContext());
+ LayoutInflater inflater = requireActivity().getLayoutInflater();
+ View view = inflater.inflate(R.layout.dialog_add_medication, null);
+
+ editName = view.findViewById(R.id.edit_med_name);
+ editNotes = view.findViewById(R.id.edit_med_notes);
+ textTime = view.findViewById(R.id.text_med_time);
+
+ checkOral = view.findViewById(R.id.checkbox_oral);
+ checkTopical = view.findViewById(R.id.checkbox_topical);
+ checkInhalatory = view.findViewById(R.id.checkbox_inhalatory);
+
+ // Set up TimePicker
+ textTime.setOnClickListener(v -> showTimePicker());
+
+ if (medicationToEdit != null) {
+ editName.setText(medicationToEdit.name);
+ editNotes.setText(medicationToEdit.notes);
+ textTime.setText(medicationToEdit.time);
+
+ // Parse dosage string to set checkboxes
+ String dosage = medicationToEdit.dosage;
+ if (dosage != null) {
+ checkOral.setChecked(dosage.contains("Oral"));
+ checkTopical.setChecked(dosage.contains("Tópica"));
+ checkInhalatory.setChecked(dosage.contains("Inalatória"));
+ }
+
+ builder.setTitle("Editar Medicamento");
+ } else {
+ builder.setTitle("Adicionar Medicamento");
+ // Default time to current time
+ Calendar cal = Calendar.getInstance();
+ updateTimeLabel(cal.get(Calendar.HOUR_OF_DAY), cal.get(Calendar.MINUTE));
+ }
+
+ builder.setView(view)
+ .setPositiveButton("Guardar", (dialog, id) -> {
+ String name = editName.getText().toString();
+ String notes = editNotes.getText().toString();
+ String time = textTime.getText().toString();
+
+ StringBuilder dosageBuilder = new StringBuilder();
+ if (checkOral.isChecked())
+ dosageBuilder.append("Via Oral, ");
+ if (checkTopical.isChecked())
+ dosageBuilder.append("Via Tópica, ");
+ if (checkInhalatory.isChecked())
+ dosageBuilder.append("Via Inalatória, ");
+
+ String dosage = dosageBuilder.toString();
+ if (dosage.endsWith(", ")) {
+ dosage = dosage.substring(0, dosage.length() - 2);
+ } else if (dosage.isEmpty()) {
+ dosage = "Via não especificada";
+ }
+
+ if (medicationToEdit != null) {
+ medicationToEdit.name = name;
+ medicationToEdit.dosage = dosage;
+ medicationToEdit.notes = notes;
+ medicationToEdit.time = time;
+ if (listener != null)
+ listener.onSave(medicationToEdit);
+ } else {
+ Medication newMed = new Medication(name, time, dosage, notes);
+ if (listener != null)
+ listener.onSave(newMed);
+ }
+ })
+ .setNegativeButton("Cancelar", (dialog, id) -> dismiss());
+
+ return builder.create();
+ }
+
+ private void showTimePicker() {
+ Calendar cal = Calendar.getInstance();
+ int hour = cal.get(Calendar.HOUR_OF_DAY);
+ int minute = cal.get(Calendar.MINUTE);
+
+ if (medicationToEdit != null) {
+ try {
+ String[] parts = medicationToEdit.time.split(":");
+ hour = Integer.parseInt(parts[0]);
+ minute = Integer.parseInt(parts[1]);
+ } catch (Exception e) {
+ // Use current time if parsing fails
+ }
+ }
+
+ TimePickerDialog timePickerDialog = new TimePickerDialog(getContext(),
+ (view, hourOfDay, minute1) -> updateTimeLabel(hourOfDay, minute1),
+ hour, minute, true);
+ timePickerDialog.show();
+ }
+
+ private void updateTimeLabel(int hourOfDay, int minute) {
+ String time = String.format(Locale.getDefault(), "%02d:%02d", hourOfDay, minute);
+ textTime.setText(time);
+ }
+}
diff --git a/app/src/main/java/com/example/cuida/ui/medication/MedicationFragment.java b/app/src/main/java/com/example/cuida/ui/medication/MedicationFragment.java
index 35114a4..80c7fd3 100644
--- a/app/src/main/java/com/example/cuida/ui/medication/MedicationFragment.java
+++ b/app/src/main/java/com/example/cuida/ui/medication/MedicationFragment.java
@@ -8,6 +8,7 @@ import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment;
import androidx.lifecycle.ViewModelProvider;
import androidx.recyclerview.widget.LinearLayoutManager;
+import com.example.cuida.data.model.Medication;
import com.example.cuida.databinding.FragmentMedicationBinding;
public class MedicationFragment extends Fragment {
@@ -21,9 +22,18 @@ public class MedicationFragment extends Fragment {
binding = FragmentMedicationBinding.inflate(inflater, container, false);
- MedicationAdapter adapter = new MedicationAdapter(medication -> {
- medicationViewModel.update(medication);
+ MedicationAdapter adapter = new MedicationAdapter(new MedicationAdapter.OnItemClickListener() {
+ @Override
+ public void onCheckClick(Medication medication) {
+ medicationViewModel.update(medication);
+ }
+
+ @Override
+ public void onItemClick(Medication medication) {
+ showMedicationDialog(medication);
+ }
});
+
binding.recyclerMedication.setLayoutManager(new LinearLayoutManager(getContext()));
binding.recyclerMedication.setAdapter(adapter);
@@ -31,9 +41,25 @@ public class MedicationFragment extends Fragment {
adapter.setMedications(medications);
});
+ binding.fabAddMedication.setOnClickListener(v -> showMedicationDialog(null));
+
return binding.getRoot();
}
+ private void showMedicationDialog(Medication medication) {
+ MedicationDialog dialog = new MedicationDialog();
+ dialog.setMedicationToEdit(medication);
+ dialog.setListener(medicationToSave -> {
+ if (medication == null) {
+ medicationViewModel.insert(medicationToSave);
+ } else {
+ medicationViewModel.update(medicationToSave);
+ }
+ dialog.dismiss();
+ });
+ dialog.show(getParentFragmentManager(), "MedicationDialog");
+ }
+
@Override
public void onDestroyView() {
super.onDestroyView();
diff --git a/app/src/main/java/com/example/cuida/ui/medication/MedicationViewModel.java b/app/src/main/java/com/example/cuida/ui/medication/MedicationViewModel.java
index 0e30e9c..8633d62 100644
--- a/app/src/main/java/com/example/cuida/ui/medication/MedicationViewModel.java
+++ b/app/src/main/java/com/example/cuida/ui/medication/MedicationViewModel.java
@@ -30,6 +30,12 @@ public class MedicationViewModel extends AndroidViewModel {
return nextMedication;
}
+ public void insert(Medication medication) {
+ AppDatabase.databaseWriteExecutor.execute(() -> {
+ AppDatabase.getDatabase(getApplication()).medicationDao().insert(medication);
+ });
+ }
+
public void update(Medication medication) {
AppDatabase.databaseWriteExecutor.execute(() -> {
AppDatabase.getDatabase(getApplication()).medicationDao().update(medication);
diff --git a/app/src/main/java/com/example/cuida/ui/sns24/Sns24Fragment.java b/app/src/main/java/com/example/cuida/ui/sns24/Sns24Fragment.java
index d48ba53..8d86814 100644
--- a/app/src/main/java/com/example/cuida/ui/sns24/Sns24Fragment.java
+++ b/app/src/main/java/com/example/cuida/ui/sns24/Sns24Fragment.java
@@ -45,7 +45,7 @@ public class Sns24Fragment extends Fragment {
// 1. Inicializar o Modelo Gemini
// NOTA: Substitua "SUA_API_KEY" pela sua chave do Google AI Studio
- GenerativeModel gm = new GenerativeModel("gemini-1.5-flash", API_KEY);
+ GenerativeModel gm = new GenerativeModel("gemini-2.5-flash", API_KEY);
model = GenerativeModelFutures.from(gm);
// 2. Botão Ligar SNS 24
@@ -71,12 +71,15 @@ public class Sns24Fragment extends Fragment {
binding.buttonAiTriage.setEnabled(false);
binding.textAiResult.setVisibility(View.VISIBLE);
binding.textAiResult.setText("A analisar sintomas com IA...");
+ binding.buttonFindHospital.setVisibility(View.GONE);
// Criar o prompt
Content content = new Content.Builder()
.addText("Atua como um assistente de triagem de saúde. O utilizador diz: \"" + symptoms + "\". " +
- "Dá uma resposta curta (máximo 4 linhas) sobre a urgência e se deve ligar para o SNS 24 (808242424). "
+ "Se a situação exigir avaliação médica imediata ou urgência, começa a resposta com 'URGENTE: HOSPITAL'. "
+
+ "Caso contrário, dá apenas o conselho habitual. " +
+ "Dá uma resposta curta (máximo 4 linhas). " +
"Aviso: Isto não substitui aconselhamento médico.")
.build();
@@ -93,8 +96,19 @@ public class Sns24Fragment extends Fragment {
@Override
public void onSuccess(GenerateContentResponse result) {
if (getActivity() != null) {
- binding.textAiResult.setText(result.getText());
+ String text = result.getText();
+ binding.textAiResult.setText(text);
binding.buttonAiTriage.setEnabled(true);
+
+ if (text != null && text.contains("URGENTE: HOSPITAL")) {
+ binding.buttonFindHospital.setVisibility(View.VISIBLE);
+ binding.buttonFindHospital.setOnClickListener(v -> {
+ Uri gmmIntentUri = Uri.parse("geo:0,0?q=hospital");
+ Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
+ mapIntent.setPackage("com.google.android.apps.maps");
+ startActivity(mapIntent);
+ });
+ }
}
}
diff --git a/app/src/main/res/layout/dialog_add_medication.xml b/app/src/main/res/layout/dialog_add_medication.xml
new file mode 100644
index 0000000..44160ec
--- /dev/null
+++ b/app/src/main/res/layout/dialog_add_medication.xml
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/layout/fragment_medication.xml b/app/src/main/res/layout/fragment_medication.xml
index 85aa53a..4b794bf 100644
--- a/app/src/main/res/layout/fragment_medication.xml
+++ b/app/src/main/res/layout/fragment_medication.xml
@@ -1,22 +1,40 @@
-
+ android:layout_width="0dp"
+ android:layout_height="0dp"
+ android:layout_marginTop="16dp"
+ app:layout_constraintTop_toBottomOf="@id/text_title"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"/>
-
+
+
+
diff --git a/app/src/main/res/layout/fragment_sns24.xml b/app/src/main/res/layout/fragment_sns24.xml
index 4dd3a39..7a6ce83 100644
--- a/app/src/main/res/layout/fragment_sns24.xml
+++ b/app/src/main/res/layout/fragment_sns24.xml
@@ -75,6 +75,18 @@
android:textColor="@android:color/black"
android:padding="16dp"
android:background="#F5F5F5"
+ android:visibility="gone"
+ android:layout_marginBottom="16dp"/>
+
+
diff --git a/build/reports/problems/problems-report.html b/build/reports/problems/problems-report.html
index 551569e..3dd9ccc 100644
--- a/build/reports/problems/problems-report.html
+++ b/build/reports/problems/problems-report.html
@@ -650,7 +650,7 @@ code + .copy-button {