From c5cb6840bd986bbd71a9ebc232bbf44ed0e1fc3d Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期四, 23 五月 2024 17:43:11 +0800
Subject: [PATCH] jpush更新完成

---
 HDL-ON_Android/libs/arm64-v8a/libjcore212.so       |    0 
 HDL-ON_Android/Properties/AndroidManifest.xml      |   18 
 HDL_APP_Project.sln                                |   14 
 OnPro_JPush/Jars/AboutJars.txt                     |   24 
 OnPro_JPush/Jars/zxing.jar                         |    0 
 HDL_ON/Common/Constant.cs                          |    4 
 OnPro_JPush/Properties/AssemblyInfo.cs             |   27 
 HDL_ON/Common/ApiUtlis.cs                          |   85 
 HDL-ON_Android/libs/armeabi-v7a/libjcore212.so     |    0 
 OnPro_JPush/Additions/AboutAdditions.txt           |   48 
 OnPro_JPush/OnPro_JPush.csproj                     |   70 
 HDL_ON/HDL_ON.projitems                            |    6 
 HDL-ON_Android/HDL-ON_Android.csproj               |   25 
 /dev/null                                          |  678 ---
 OnPro_JPush/Transforms/Metadata.xml                |   12 
 HDL_ON/Common/HDLCommon.cs                         |  105 
 DLL/Shared.Droid.JPush.dll                         |    0 
 HDL-ON_Android/Resources/Resource.designer.cs      | 10141 +++++++++++++++++++++++++---------------------------
 OnPro_JPush/Transforms/EnumMethods.xml             |   13 
 HDL_ON/UI/UI2/4-PersonalCenter/PersonalDataPage.cs |   55 
 HDL_ON/DAL/ThirdPartySdk/ESOnVideo.cs              |   94 
 OnPro_JPush/Jars/jpush-Google-release.aar          |    0 
 OnPro_JPush/Transforms/EnumFields.xml              |   14 
 23 files changed, 5,117 insertions(+), 6,316 deletions(-)

diff --git a/DLL/Shared.Droid.JPush.dll b/DLL/Shared.Droid.JPush.dll
index 8bf06ba..c004ca0 100644
--- a/DLL/Shared.Droid.JPush.dll
+++ b/DLL/Shared.Droid.JPush.dll
Binary files differ
diff --git a/HDL-ON_Android/FengLinVideo/Form/MonitorFragment.cs b/HDL-ON_Android/FengLinVideo/Form/MonitorFragment.cs
deleted file mode 100644
index ca7ce90..0000000
--- a/HDL-ON_Android/FengLinVideo/Form/MonitorFragment.cs
+++ /dev/null
@@ -1,210 +0,0 @@
-锘�
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading;
-using Android.App;
-using Android.Content;
-using Android.Icu.Text;
-using Android.OS;
-using Android.Runtime;
-using Android.Util;
-using Android.Views;
-using Android.Widget;
-using Com.ETouchSky;
-using Com.Tool;
-using HDL_ON.DAL.Server;
-using HDL_ON_Android.FengLinVideo.Interface;
-using Java.Util;
-using Org.Json;
-
-namespace HDL_ON_Android.FengLinVideo.Form
-{
-    public class MonitorFragment : Fragment, View.IOnClickListener, VideoState
-    {
-
-        private View mView;
-        private VideoPhone mPhone;
-
-        // 鎴浘
-        private LinearLayout screenshotLayout;
-        private ImageView screenImage;
-        private TextView ScreenText;
-
-        //寮�閿�
-        private LinearLayout unlockLayout;
-        private ImageView unlockImag;
-        private TextView unlockText;
-
-        // 鏇存柊绾跨▼
-        public static Thread thread = null;
-
-        public MonitorFragment(VideoPhone phone)
-        {
-            this.mPhone = phone;
-        }
-
-        public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
-        {
-            mView = inflater.Inflate(Resource.Layout.fragment_monitor, container, false);
-
-            IniView();
-
-            return mView;
-        }
-
-        private void IniView()
-        {
-            screenshotLayout = (LinearLayout)mView.FindViewById(Resource.Id.icon_sceenshotLayout);
-            screenImage = (ImageView)mView.FindViewById(Resource.Id.icon_sceenshotImg);
-            ScreenText = (TextView)mView.FindViewById(Resource.Id.icon_sceenshotText);
-
-            unlockLayout = (LinearLayout)mView.FindViewById(Resource.Id.icon_unlockLayout);
-            unlockImag = (ImageView)mView.FindViewById(Resource.Id.icon_unlockImg);
-            unlockText = (TextView)mView.FindViewById(Resource.Id.icon_unlockText);
-
-            unlockLayout.SetOnClickListener(this);
-            screenshotLayout.SetOnClickListener(this);
-        }
-
-        /// <summary>
-        /// 寮�閿�
-        /// </summary>
-        private void Unlock()
-        {
-            if (mPhone != null)
-            {
-                try
-                {
-                    unlockImag.Selected = true;
-                    JSONObject ht = new JSONObject();
-                    ht.Put("command", "open");//鍥哄畾鍙傛暟
-                    ht.Put("room_id", VideoActivity.Roomno);
-                    ht.Put("devType", 7);
-                    mPhone.SendCustomData(ht.ToString());
-                }
-                catch { }
-            }
-        }
-
-        /// <summary>
-        /// 鏇存柊寮�閿佹寜閽姸鎬�
-        /// </summary>
-        private void UpdataUnlockState()
-        {
-            try
-            {
-                //寮�閿佹垚鍔燂紝15绉掑唴涓嶇粰鍐嶇偣鍑绘寜閽�
-                unlockLayout.Enabled = false;
-                if (thread != null)
-                {
-                    try
-                    {
-                        thread.Interrupt();
-                    }
-                    catch { }
-                    thread = null;
-                }
-
-                thread = new Thread(() =>
-                {
-                    try
-                    {
-                        Thread.Sleep(15 * 1000);
-
-                        Activity.RunOnUiThread(() =>
-                        {
-                            if (unlockLayout != null)
-                                unlockLayout.Enabled = true;
-                        });
-                    }
-                    catch { }
-                });
-
-                thread.Start();
-            }
-            catch { }
-        }
-
-        public void OnClick(View v)
-        {
-            //
-            if (v.Equals(unlockLayout))
-            {
-                if (mPhone != null)
-                    Unlock();
-            }
-            else if (v.Equals(screenshotLayout))
-            {
-
-                //鏈夎棰戣繃鏉ュ彲璋冪敤姝ゆ帴鍙h繘琛屾媿鐓�
-                if (mPhone != null)
-                {
-                    // 鍐呴儴鍌ㄥ瓨/DCIM/Camera/.....jpg
-                    screenImage.Selected = true;
-                    SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss");
-                    string time = format.Format(new Date(SystemClock.CurrentThreadTimeMillis()));
-                    string ss = Android.OS.Environment.ExternalStorageDirectory.Path + "/DCIM/Camera";
-                    string path = ss + "/" + time + ".jpg";
-                    mPhone.Snap(path);
-                    //2021-09-01 澧炲姞鍙戦�佸箍鎾紝閫氱煡鍒锋柊鍥惧簱鐨勬樉绀�
-                    HDLONUtils.SendBroadcastScanFile(this.Context, path);
-                }
-            }
-        }
-
-        /// <summary>
-        /// 閫氳瘽鐘舵�佸洖璋冩柟娉�
-        /// </summary>
-        /// <param name="msg"></param>
-        public void OnPhoneEvent(string msg)
-        {
-            try
-            {
-                //
-                TextProtocol tp = new TextProtocol();
-                tp.Parse(msg);
-                string event1 = tp.GetString("event");
-
-                switch (event1)
-                {
-                    case "EVT_HangUp"://鎸傛柇
-                        Activity.Finish();
-                        break;
-                    case "EVT_RECV_CUSTOM_DATA":
-                        UpdataUnlockState();
-                        break;
-                    case "EVT_SnapAck":
-                        int error = tp.GetInt("error");
-                        string filePath = tp.GetString("filePath");
-                        if (error == 0)
-                        {
-                            screenImage.Selected = true;
-                        }
-                        else
-                        {
-                            screenImage.Selected = false;
-                        }
-                        break;
-                }
-            }
-            catch { }
-        }
-
-        public override void OnDestroy()
-        {
-            base.OnDestroy();
-
-            if (thread != null)
-            {
-                try
-                {
-                    thread.Interrupt();
-                }
-                catch { }
-                thread = null;
-            }
-        }
-    }
-}
\ No newline at end of file
diff --git a/HDL-ON_Android/FengLinVideo/Form/ReverseCallFragment.cs b/HDL-ON_Android/FengLinVideo/Form/ReverseCallFragment.cs
deleted file mode 100644
index 90ab019..0000000
--- a/HDL-ON_Android/FengLinVideo/Form/ReverseCallFragment.cs
+++ /dev/null
@@ -1,442 +0,0 @@
-锘�
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading;
-using Android.App;
-using Android.Content;
-using Android.Icu.Text;
-using Android.OS;
-using Android.Runtime;
-using Android.Util;
-using Android.Views;
-using Android.Widget;
-using Com.ETouchSky;
-using Com.Tool;
-using HDL_ON.Common;
-using HDL_ON.DAL.Server;
-using HDL_ON_Android.FengLinVideo.Interface;
-using Java.Util;
-using Org.Json;
-
-namespace HDL_ON_Android.FengLinVideo.Form
-{
-    public class ReverseCallFragment : Fragment, View.IOnClickListener, VideoState
-    {
-        private VideoPhone mPhone;
-        private string param = "";
-        private bool isCalling = false;
-
-        private View mView;
-
-        private ImageView screenshotImg;// 鎴浘
-        private ImageView unlockImg;// 寮�閿�
-        private LinearLayout answerLayout; // 鎺ュ惉
-        private ImageView hangupImg; // 鎺ュ惉
-        private ImageView answerImg;// 鎸傛柇
-        private TextView hangupText;
-
-        private TextView tvTip;
-
-        private System.Threading.Timer timer = null;
-        private int Time = 0;
-
-        public ReverseCallFragment(VideoPhone _phone, string _param)
-        {
-            this.mPhone = _phone;
-            this.param = _param;
-        }
-
-        public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
-        {
-            mView = inflater.Inflate(Resource.Layout.fragment_call, container, false);
-
-            IniView();
-            ReverseCall(param);
-
-            return mView;
-        }
-
-        private void IniView()
-        {
-            screenshotImg = (ImageView)mView.FindViewById(Resource.Id.callScreenshotImg);//
-            unlockImg = (ImageView)mView.FindViewById(Resource.Id.callUnlockImg);//
-            tvTip = (TextView)mView.FindViewById(Resource.Id.callTipText);
-            answerLayout = (LinearLayout)mView.FindViewById(Resource.Id.callAnswerLayout);
-            hangupImg = (ImageView)mView.FindViewById(Resource.Id.callHangupImg);
-            answerImg = (ImageView)mView.FindViewById(Resource.Id.callAnswerImg);
-            hangupText = (TextView)mView.FindViewById(Resource.Id.callHangupText);
-
-            screenshotImg.SetOnClickListener(this);
-            unlockImg.SetOnClickListener(this);
-            hangupImg.SetOnClickListener(this);
-            answerImg.SetOnClickListener(this);
-
-            hangupText.SetText(GetString(Resource.String.video_not_answer), null);
-            tvTip.SetText(GetString(Resource.String.calling), null);
-        }
-
-        /// <summary>
-        /// 涓�鑸槸鎺ㄩ�佽繃鐨勬潵鐢典俊鎭椂璋冪敤姝ゆ帴鍙f墦寮�瑙嗛绐楀彛銆傜劧鍚庡彲璋冪敤mPhone.acceptRing(param);鎺ユ敹鏉ョ數淇℃伅
-        /// </summary>
-        /// <param name="param"></param>
-        private void ReverseCall(string param)
-        {
-            if (mPhone != null)
-            {
-                mPhone.ReverseCall(param);
-            }
-        }
-
-        /// <summary>
-        /// 寮�閿�
-        /// </summary>
-        private void Unlock()
-        {
-            //寮�閿侊紝褰撴敹鍒版潵鐢典俊鎭椂鍙繘琛屽紑閿佹搷浣�
-            if (mPhone != null)
-            {
-                try
-                {
-                    unlockImg.Selected = true;
-                    JSONObject ht = new JSONObject();
-                    ht.Put("command", "open");//鍥哄畾鍙傛暟
-                    ht.Put("room_id", 123); //鍔ㄦ�佸弬鏁� 锛屼紶閫掑紑闂ㄧ殑鎴块棿鍙枫�傝繖涓紑闂ㄥ彛璁板綍灏辫兘璁板綍璋佸紑鐨勯棬
-                    ht.Put("devType", 7); //鍥哄畾鍙傛暟
-                    mPhone.SendCustomData(ht.ToString());
-                }
-                catch (Exception e)
-                {
-                    string erro = e.Message;
-                }
-            }
-        }
-
-        public static Thread unlockThread = null;//鍏紑鍑烘潵锛屽叧闂璦ctivity鐨勬椂鍊欒缁撴潫杩欎釜绾跨▼锛屼笉鐒朵細寮曡捣宕╂簝
-        /// <summary>
-        /// 鏇存柊寮�閿佹寜閽姸鎬�,寮�閿佹垚鍔燂紝15绉掑唴涓嶇粰鍐嶇偣鍑绘寜閽�
-        /// </summary>
-        private void UpdataUnlockState()
-        {
-            try
-            {
-                if (unlockImg == null) return;
-
-                unlockImg.Enabled = false;
-
-                unlockThread = new Thread(() =>
-                  {
-                      try
-                      {
-                          Thread.Sleep(15 * 1000);
-                          
-                      Activity.RunOnUiThread(() =>
-                      {
-                          try {
-                              if (unlockImg != null)
-                                  unlockImg.Enabled = true;
-                          }
-                          catch { }
-                      });
-
-                      }
-                      catch { }
-                  });//.Start();
-
-                unlockThread.Start();
-
-                PostUnlock();
-            }
-            catch { }
-        }
-
-        private string GetTime(int time)
-        {
-
-            int m = time / 60;
-            int s = time % 60;
-
-            return UnitFormat(m) + ":" + UnitFormat(s);
-
-        }
-
-        private static string UnitFormat(int i)
-        {
-            string retStr = null;
-            if (i >= 0 && i < 10)
-                retStr = "0" + i;
-            else
-                retStr = "" + i;
-            return retStr;
-        }
-
-        /// <summary>
-        /// 閫氳瘽璁板綍璁℃椂鍣紝浠庢媺娴佹垚鍔熷紑濮嬭绠楁椂闂�
-        /// </summary>
-        private void TimeStarts()
-        {
-            try
-            {
-                if (timer != null)
-                    timer.Dispose();
-
-                TimerCallback timerCallback = new TimerCallback(Tick);
-                timer = new System.Threading.Timer(timerCallback, null, 0, 1000);
-
-            }
-            catch (Exception) { }
-        }
-
-        private void TimeEnd()
-        {
-            Time = 0;
-
-            if (timer != null)
-            {
-                timer.Dispose();
-                timer = null;
-            }
-        }
-
-        public void Tick(Object state)
-        {
-            try
-            {
-                Activity.RunOnUiThread(() =>
-                {
-                    try
-                    {
-                        Time++;
-                        if (tvTip != null)
-                            tvTip.SetText(GetTime(Time), null);
-                    }
-                    catch { }
-                });
-            }
-            catch { }
-        }
-
-        /// <summary>
-        /// 閫氳瘽娑堟伅鍥炶皟鏂规硶
-        /// </summary>
-        /// <param name="msg"></param>
-        public void OnPhoneEvent(string msg)
-        {
-            try
-            {
-                //
-                TextProtocol tp = new TextProtocol();
-                tp.Parse(msg);
-                string event1 = tp.GetString("event");
-
-                switch (event1)
-                {
-                    case "EVT_RECV_CUSTOM_DATA":// 寮�閿佹垚鍔�
-                        string data = tp.GetString("data");
-                        UpdataUnlockState();
-                        break;
-                    case "EVT_StartStream":// 鎷夋祦鎴愬姛锛屽紑濮嬭褰曢�氳瘽鏃堕棿
-                        isCalling = true;
-                        TimeStarts();
-                        hangupText.SetText(GetString(Resource.String.video_hang_up), null);
-                        break;
-                    case "EVT_StopStream":
-                        if (isCalling == false)
-                            PostReject();// 鎷掓帴
-                        else
-                            PostHangup();// 姝e父鎸傛柇
-                        break;
-                    case "EVT_SnapAck":
-                        int error = tp.GetInt("error");
-                        string filePath = tp.GetString("filePath");
-                        if (error == 0)
-                        {
-                            screenshotImg.Selected = true;
-                            PostScreenshot(filePath);
-                        }
-                        else
-                        {
-                            screenshotImg.Selected = false;
-                        }
-                        break;
-                }
-            }
-            catch (Exception e)
-            {
-                string error = e.Message;
-            }
-        }
-
-        public void OnClick(View v)
-        {
-            if (v.Equals(answerImg))
-            {
-                //鎺ユ敹鏉ョ數
-                if (mPhone != null)
-                {
-                    if (mPhone.IsRinging)
-                    {
-                        string UserData = "user text";
-                        //娉ㄦ剰锛歊equestAudio 璇锋眰瀵规柟闊抽锛孯equestVideo璇锋眰瀵规柟瑙嗛 SendAudio鍙戦�佹湰鍦伴煶棰� SendVideo 鍙戦�佹湰鍦拌棰� 涓�鑸棬鍙d笉鎺ユ敹鍒拌棰戯紝鎵�浠ユ渶濂借缃�0锛屽噺灏戞祦閲忔秷鑰�
-                        string param = string.Format("RequestAudio=1\r\n" + "RequestVideo=1\r\n" + "SendAudio=1\r\n" + "SendVideo=1r\n" + "UserData=%s\r\n", UserData);
-                        mPhone.AcceptRing(param);
-                        answerLayout.Visibility = ViewStates.Gone;
-                        PostAnswer();
-                    }
-                }
-            }
-            else if (v.Equals(hangupImg))
-            {
-                if (mPhone != null)
-                {
-                    mPhone.HangUp();
-                    TimeEnd();
-                }
-                Activity.Finish();
-            }
-            else if (v.Equals(screenshotImg))
-            {
-                //鏈夎棰戣繃鏉ュ彲璋冪敤姝ゆ帴鍙h繘琛屾媿鐓�
-                if (mPhone != null)
-                {
-                    // 鍐呴儴鍌ㄥ瓨/DCIM/Camera/.....jpg
-                    screenshotImg.Selected = true;
-                    SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss");
-                    string time = format.Format(new Date(SystemClock.CurrentThreadTimeMillis()));
-                    string ss = Android.OS.Environment.ExternalStorageDirectory.Path + "/DCIM/Camera";
-                    string path = ss + "/" + time + ".jpg";
-                    mPhone.Snap(path);
-                    //2021-09-01 澧炲姞鍙戦�佸箍鎾紝閫氱煡鍒锋柊鍥惧簱鐨勬樉绀�
-                    HDLONUtils.SendBroadcastScanFile(this.Context, path);
-                }
-            }
-            else if (v.Equals(unlockImg))
-            {
-                Unlock();
-            }
-        }
-
-        /// <summary>
-        /// post 鎴浘
-        /// </summary>
-        /// <param name="path">鎴浘淇濈暀鐨勮矾寰�</param>
-        private void PostScreenshot(string path)
-        {
-            new Thread(() =>
-            {
-                try
-                {
-                    string[] str = path.Split("/");
-                    string img_name = str.GetValue(str.Length - 1).ToString().Replace(".jpg", "");
-                    byte[] images = FileUtlis.Files.ReadFileForPath(path);
-                    Dictionary<string, object> d = new Dictionary<string, object>();
-                    d.Add("callId", VideoActivity.CallId);
-                    d.Add("images", images);
-                    d.Add("imagesName", "_Android.jpg");
-                    string jsonString = HttpUtil.GetSignRequestJson(d);
-
-                    string url = "/home-wisdom/app/fl/vi/screenshot";
-                    ResponsePackNew response = HttpUtil.RequestHttpsPost(url, jsonString);
-                    Log.Info("FengLinVideo", "Post Screenshot Response code=" + response.Code);
-                }
-                catch { }
-
-            }).Start();
-        }
-
-        /// <summary>
-        /// post 鎺ュ惉鐢佃瘽璁板綍
-        /// </summary>
-        private void PostAnswer()
-        {
-            new Thread(() =>
-            {
-                try
-                {
-                    Dictionary<string, object> d = new Dictionary<string, object>();
-                    d.Add("uuid", VideoActivity.UUId);//涓版灄璇锋眰鐨勫敮涓�id string
-                    d.Add("cmtID", VideoActivity.CmtID);//涓版灄绀惧尯id string
-                    d.Add("roomno", VideoActivity.Roomno);//涓版灄鎴块棿鍙� string
-                    d.Add("unitno", VideoActivity.Unitno);//涓版灄妤兼爧鍙� string
-                    d.Add("HomeID", VideoActivity.HomeID);//涓版灄浣忓畢id string
-                    d.Add("callId", VideoActivity.CallId);//鍛煎彨璁板綍id int
-                    string jsonString = HttpUtil.GetSignRequestJson(d);
-
-                    string url = "/home-wisdom/app/fl/vi/answer";
-                    ResponsePackNew response = HttpUtil.RequestHttpsPost(url, jsonString);
-                    Log.Info("FengLinVideo", "Post Answer Response code=" + response.Code);
-                }
-                catch { }
-
-            }).Start();
-        }
-
-        /// <summary>
-        /// post 鎸傛柇鐢佃瘽璁板綍
-        /// </summary>
-        private void PostHangup()
-        {
-            new Thread(() =>
-            {
-                try
-                {
-                    Dictionary<string, object> d = new Dictionary<string, object>();
-                    d.Add("callId", VideoActivity.CallId);//鍛煎彨璁板綍id int
-                    d.Add("callDuration", Time);//閫氳瘽鏃堕暱锛堢锛� int
-                    string jsonString = HttpUtil.GetSignRequestJson(d);
-
-                    string url = "/home-wisdom/app/fl/vi/hang-up";
-                    ResponsePackNew response = HttpUtil.RequestHttpsPost(url, jsonString);
-                    Log.Info("FengLinVideo", "Post Hangup Response code=" + response.Code);
-                }
-                catch { }
-
-            }).Start();
-        }
-
-        /// <summary>
-        /// post 鎷掓帴璁板綍
-        /// </summary>
-        private void PostReject()
-        {
-            new Thread(() =>
-            {
-                try
-                {
-                    Dictionary<string, object> d = new Dictionary<string, object>();
-                    d.Add("callId", VideoActivity.CallId);//鍛煎彨璁板綍id int
-                    string jsonString = HttpUtil.GetSignRequestJson(d);
-
-                    string url = "/home-wisdom/app/fl/vi/reject";
-                    ResponsePackNew response = HttpUtil.RequestHttpsPost(url, jsonString);
-                    Log.Info("FengLinVideo", "Post Reject Response code=" + response.Code);
-                }
-                catch { }
-
-            }).Start();
-        }
-
-        /// <summary>
-        /// post 寮�閿佽褰�
-        /// </summary>
-        private void PostUnlock()
-        {
-            new Thread(() =>
-            {
-                try
-                {
-                    Dictionary<string, object> d = new Dictionary<string, object>();
-                    d.Add("callId", VideoActivity.CallId);//鍛煎彨璁板綍id int
-                    string jsonString = HttpUtil.GetSignRequestJson(d);
-
-                    string url = "/home-wisdom/app/fl/vi/unlock";
-                    ResponsePackNew response = HttpUtil.RequestHttpsPost(url, jsonString);
-                    Log.Info("FengLinVideo", "Post Reject Response code=" + response.Code);
-                }
-                catch { }
-
-            }).Start();
-        }
-    }
-}
diff --git a/HDL-ON_Android/FengLinVideo/Interface/VideoState.cs b/HDL-ON_Android/FengLinVideo/Interface/VideoState.cs
deleted file mode 100644
index c0c45d5..0000000
--- a/HDL-ON_Android/FengLinVideo/Interface/VideoState.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-锘縰sing System;
-namespace HDL_ON_Android.FengLinVideo.Interface
-{
-    public interface VideoState
-    {
-        void OnPhoneEvent(string msg);
-    }
-}
diff --git a/HDL-ON_Android/FengLinVideo/widget/TipDiaglog.cs b/HDL-ON_Android/FengLinVideo/widget/TipDiaglog.cs
deleted file mode 100644
index 157762f..0000000
--- a/HDL-ON_Android/FengLinVideo/widget/TipDiaglog.cs
+++ /dev/null
@@ -1,143 +0,0 @@
-锘縰sing System;
-using Android.App;
-using Android.Content;
-using Android.Graphics;
-using Android.Views;
-using Android.Widget;
-using HDL_ON_Android;
-
-namespace GateWay.Droid.FengLinVideo.widget
-{
-    public class TipDiaglog : Dialog, View.IOnClickListener, View.IOnTouchListener
-    {
-        private Context mContext = null;
-
-        private string titleText = "鎻愮ず";
-        private string contentText = "";
-        private string confirmText = "纭";
-        private bool isClose = false;
-
-        private TextView contentView = null;
-        private TextView titleView = null;
-        private TextView okView = null;
-        public object Tag = null;
-        private OnConfirmClickListener onConfirmClickListener;
-
-        public TipDiaglog(Context context) : base(context, Resource.Style.DialogTheme)
-        {
-            this.mContext = context;
-        }
-
-        public void SetAutoClose(bool bol)
-        {
-            this.isClose = bol;
-        }
-
-        public void SetTitleText(string _titleText)
-        {
-            titleText = _titleText;
-            if (titleView != null)
-            {
-                titleView.SetText(titleText, null);                
-            }
-        }
-
-        public void SetContentText(string _contentText)
-        {
-            contentText = _contentText;
-            if (contentView != null)
-            {
-                contentView.SetText(contentText, null);
-            }
-        }
-
-        public void SetConfirmText(string text)
-        {
-            confirmText = text;
-            if (okView != null)
-            {
-                okView.SetText(confirmText, null);
-            }
-        }
-
-        public override void Create()
-        {
-            base.Create();
-
-            try
-            {
-                SetContentView(Resource.Layout.dialog_tip);
-
-                contentView = (TextView)FindViewById(Resource.Id.tv_content);
-                titleView = (TextView)FindViewById(Resource.Id.tv_title);
-                okView = (TextView)FindViewById(Resource.Id.tv_ok);
-
-                contentView.SetText(contentText, null);
-                titleView.SetText(titleText, null);
-                okView.SetText(confirmText, null);
-
-                okView.SetOnTouchListener(this);
-                okView.SetOnClickListener(this);
-            }
-            catch (Exception e)
-            {
-                string error = e.Message;
-            }
-        }
-
-        public override void OnWindowFocusChanged(bool hasFocus)
-        {
-            base.OnWindowFocusChanged(hasFocus);
-
-            try
-            {
-                Display display = ((Activity)mContext).WindowManager.DefaultDisplay;
-                
-                WindowManagerLayoutParams p = Window.Attributes;
-                Point point = new Point();
-                display.GetSize(point);
-                p.Width = (int)(point.X * 0.7);                
-                Window.SetGravity(GravityFlags.Center);
-            }
-            catch (Exception e)
-            {
-                string ss = e.Message;
-            }
-        }
-
-        public void SetConfirmClickListener(OnConfirmClickListener l)
-        {
-            onConfirmClickListener = l;
-        }
-
-        public void OnClick(View v)
-        {
-            if (v.Equals(okView))
-            {
-                if (onConfirmClickListener != null)
-                    onConfirmClickListener.onSureClick(this, v, isClose);
-            }
-        }
-
-        public bool OnTouch(View v, MotionEvent e)
-        {
-            if (e.Action == MotionEventActions.Down)
-            {
-                v.SetBackgroundResource(Resource.Drawable.sure_background_sel);
-            }
-            else if (e.Action == MotionEventActions.Up)
-            {
-                v.SetBackgroundResource(Resource.Drawable.sure_background_def);
-            }
-
-            return false;
-
-        }
-
-        public interface OnConfirmClickListener
-        {
-            void onSureClick(TipDiaglog dialoog, View v,bool bol);
-        }
-
-    }
-}
diff --git a/HDL-ON_Android/HDL-ON_Android.csproj b/HDL-ON_Android/HDL-ON_Android.csproj
index 13a63d3..c6a8439 100644
--- a/HDL-ON_Android/HDL-ON_Android.csproj
+++ b/HDL-ON_Android/HDL-ON_Android.csproj
@@ -152,12 +152,6 @@
     <Reference Include="http">
       <HintPath>..\DLL\FL\Android\http.dll</HintPath>
     </Reference>
-    <Reference Include="VideoLibs">
-      <HintPath>..\DLL\FL\Android\VideoLibs.dll</HintPath>
-    </Reference>
-    <Reference Include="videophone">
-      <HintPath>..\DLL\FL\Android\videophone.dll</HintPath>
-    </Reference>
     <Reference Include="UMSdkDroid">
       <HintPath>..\DLL\UMeng\UMSdkDroid.dll</HintPath>
     </Reference>
@@ -189,12 +183,6 @@
     <Reference Include="Shared.Droid">
       <HintPath>..\DLL\Android\Shared.Droid.dll</HintPath>
     </Reference>
-    <Reference Include="Shared.Droid.HDLLinphone">
-      <HintPath>..\DLL\Linphone\Android\Shared.Droid.HDLLinphone.dll</HintPath>
-    </Reference>
-    <Reference Include="Shared.Droid.JPush-Google">
-      <HintPath>..\..\绗笁鏂瑰姛鑳絓鏋佸厜\lib\Shared.Droid.JPush-Google.dll</HintPath>
-    </Reference>
   </ItemGroup>
   <ItemGroup>
     <Compile Include="Other\JPush\JPushFirmBroadcast.cs" />
@@ -209,11 +197,6 @@
     <Compile Include="Other\JLCountrycode.cs" />
     <Compile Include="Other\JPush\JPushReceiver.cs" />
     <Compile Include="Other\JPush\JPushService.cs" />
-    <Compile Include="VideoActivity.cs" />
-    <Compile Include="FengLinVideo\Interface\VideoState.cs" />
-    <Compile Include="FengLinVideo\Form\MonitorFragment.cs" />
-    <Compile Include="FengLinVideo\Form\ReverseCallFragment.cs" />
-    <Compile Include="FengLinVideo\widget\TipDiaglog.cs" />
     <Compile Include="LeChengVideo\Form\MonitorFragment.cs" />
     <Compile Include="LeChengVideo\Form\ReverseCallFragment.cs" />
     <Compile Include="LeChengVideoActivity.cs" />
@@ -603,6 +586,8 @@
     <AndroidAsset Include="Assets\Phone\LogicIcon\electricaltvhisense.png" />
     <AndroidAsset Include="Assets\Phone\FunctionIcon\EnvirSensor\Pm10Icon.png" />
     <AndroidAsset Include="Assets\Phone\FunctionIcon\EnvirSensor\Pm10Bg.png" />
+    <None Include="libs\armeabi-v7a\libjcore212.so" />
+    <None Include="libs\arm64-v8a\libjcore212.so" />
   </ItemGroup>
   <ItemGroup>
     <AndroidResource Include="Resources\values\colors.xml" />
@@ -1826,6 +1811,12 @@
     <Folder Include="Assets\Phone\AksIcon\" />
     <Folder Include="Assets\Phone\FunctionIcon\GroupControl\" />
   </ItemGroup>
+  <ItemGroup>
+    <ProjectReference Include="..\OnPro_JPush\OnPro_JPush.csproj">
+      <Project>{723098FE-214B-4E79-A5D0-DA31B9366611}</Project>
+      <Name>OnPro_JPush</Name>
+    </ProjectReference>
+  </ItemGroup>
   <Import Project="..\HDL_ON\HDL_ON.projitems" Label="Shared" Condition="Exists('..\HDL_ON\HDL_ON.projitems')" />
   <Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
diff --git a/HDL-ON_Android/Properties/AndroidManifest.xml b/HDL-ON_Android/Properties/AndroidManifest.xml
index e1766c9..703a751 100644
--- a/HDL-ON_Android/Properties/AndroidManifest.xml
+++ b/HDL-ON_Android/Properties/AndroidManifest.xml
@@ -31,19 +31,8 @@
 	<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
 	<uses-permission android:name="android.permission.READ_LOGS" />
 	<!-- 鏋佸厜鎺ㄩ�佺粨鏉� -->
-	<application
-		android:allowBackup="true"
-		android:supportsRtl="true"
-		tools:replace="android:allowBackup,android:label,android:supportsRtl"
-		android:debuggable="false"
-		android:icon="@drawable/Icon"
-		android:requestLegacyExternalStorage="true"
-		android:networkSecurityConfig="@xml/network_security_config"
-		android:largeHeap="true"
-		android:label="On Pro">
-		<provider 
-            tools:replace="android:authorities"
-			android:name="android.support.v4.content.FileProvider" android:authorities="com.hdl.onpro.fileProvider" android:grantUriPermissions="true" android:exported="false">
+	<application android:allowBackup="true" android:supportsRtl="true" tools:replace="android:allowBackup,android:label,android:supportsRtl" android:debuggable="false" android:icon="@drawable/Icon" android:requestLegacyExternalStorage="true" android:networkSecurityConfig="@xml/network_security_config" android:largeHeap="true" android:label="On Pro">
+		<provider tools:replace="android:authorities" android:name="android.support.v4.content.FileProvider" android:authorities="com.hdl.onpro.fileProvider" android:grantUriPermissions="true" android:exported="false">
 			<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" />
 		</provider>
 		<!--鏋佸厜鎺ㄩ��-->
@@ -70,8 +59,7 @@
 		<!-- since 3.1.0 Required SDK 鏍稿績鍔熻兘-->
 		<provider android:authorities="com.hdl.onpro.DownloadProvider" android:name="cn.jpush.android.service.DownloadProvider" android:exported="true" />
 		<!-- Required SDK 鏍稿績鍔熻兘-->
-		<receiver android:name="cn.jpush.android.service.PushReceiver" android:enabled="true"
-			android:exported="true">
+		<receiver android:name="cn.jpush.android.service.PushReceiver" android:enabled="true" android:exported="true">
 			<intent-filter android:priority="1000">
 				<action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" />
 				<category android:name="com.hdl.onpro" />
diff --git a/HDL-ON_Android/Resources/Resource.designer.cs b/HDL-ON_Android/Resources/Resource.designer.cs
index b811c3e..36aa6d2 100644
--- a/HDL-ON_Android/Resources/Resource.designer.cs
+++ b/HDL-ON_Android/Resources/Resource.designer.cs
@@ -5394,2282 +5394,2252 @@
 			// aapt resource value: 0x7F060051
 			public const int color_0fff = 2131099729;
 			
-			// aapt resource value: 0x7F060052
-			public const int color_222222 = 2131099730;
-			
 			// aapt resource value: 0x7F060053
-			public const int color_5C62FE = 2131099731;
+			public const int color_background = 2131099731;
 			
 			// aapt resource value: 0x7F060054
-			public const int color_999999 = 2131099732;
-			
-			// aapt resource value: 0x7F060058
-			public const int color_background = 2131099736;
-			
-			// aapt resource value: 0x7F060059
-			public const int color_bar = 2131099737;
-			
-			// aapt resource value: 0x7F06005A
-			public const int color_bg = 2131099738;
-			
-			// aapt resource value: 0x7F06005B
-			public const int color_default = 2131099739;
-			
-			// aapt resource value: 0x7F06005C
-			public const int color_disable = 2131099740;
+			public const int color_bar = 2131099732;
 			
 			// aapt resource value: 0x7F060055
-			public const int color_E1E1E1 = 2131099733;
+			public const int color_bg = 2131099733;
 			
 			// aapt resource value: 0x7F060056
-			public const int color_F5F5F5 = 2131099734;
+			public const int color_default = 2131099734;
 			
 			// aapt resource value: 0x7F060057
-			public const int color_F6F6F6 = 2131099735;
+			public const int color_disable = 2131099735;
+			
+			// aapt resource value: 0x7F060052
+			public const int color_F6F6F6 = 2131099730;
+			
+			// aapt resource value: 0x7F060058
+			public const int color_select = 2131099736;
+			
+			// aapt resource value: 0x7F060059
+			public const int color_white = 2131099737;
+			
+			// aapt resource value: 0x7F06005A
+			public const int common_title_tab_text_color = 2131099738;
+			
+			// aapt resource value: 0x7F06005B
+			public const int common_title_text_color = 2131099739;
+			
+			// aapt resource value: 0x7F06005C
+			public const int design_bottom_navigation_shadow_color = 2131099740;
 			
 			// aapt resource value: 0x7F06005D
-			public const int color_select = 2131099741;
+			public const int design_box_stroke_color = 2131099741;
 			
 			// aapt resource value: 0x7F06005E
-			public const int color_white = 2131099742;
+			public const int design_dark_default_color_background = 2131099742;
 			
 			// aapt resource value: 0x7F06005F
-			public const int common_title_tab_text_color = 2131099743;
+			public const int design_dark_default_color_error = 2131099743;
 			
 			// aapt resource value: 0x7F060060
-			public const int common_title_text_color = 2131099744;
+			public const int design_dark_default_color_on_background = 2131099744;
 			
 			// aapt resource value: 0x7F060061
-			public const int design_bottom_navigation_shadow_color = 2131099745;
+			public const int design_dark_default_color_on_error = 2131099745;
 			
 			// aapt resource value: 0x7F060062
-			public const int design_box_stroke_color = 2131099746;
+			public const int design_dark_default_color_on_primary = 2131099746;
 			
 			// aapt resource value: 0x7F060063
-			public const int design_dark_default_color_background = 2131099747;
+			public const int design_dark_default_color_on_secondary = 2131099747;
 			
 			// aapt resource value: 0x7F060064
-			public const int design_dark_default_color_error = 2131099748;
+			public const int design_dark_default_color_on_surface = 2131099748;
 			
 			// aapt resource value: 0x7F060065
-			public const int design_dark_default_color_on_background = 2131099749;
+			public const int design_dark_default_color_primary = 2131099749;
 			
 			// aapt resource value: 0x7F060066
-			public const int design_dark_default_color_on_error = 2131099750;
+			public const int design_dark_default_color_primary_dark = 2131099750;
 			
 			// aapt resource value: 0x7F060067
-			public const int design_dark_default_color_on_primary = 2131099751;
+			public const int design_dark_default_color_primary_variant = 2131099751;
 			
 			// aapt resource value: 0x7F060068
-			public const int design_dark_default_color_on_secondary = 2131099752;
+			public const int design_dark_default_color_secondary = 2131099752;
 			
 			// aapt resource value: 0x7F060069
-			public const int design_dark_default_color_on_surface = 2131099753;
+			public const int design_dark_default_color_secondary_variant = 2131099753;
 			
 			// aapt resource value: 0x7F06006A
-			public const int design_dark_default_color_primary = 2131099754;
+			public const int design_dark_default_color_surface = 2131099754;
 			
 			// aapt resource value: 0x7F06006B
-			public const int design_dark_default_color_primary_dark = 2131099755;
+			public const int design_default_color_background = 2131099755;
 			
 			// aapt resource value: 0x7F06006C
-			public const int design_dark_default_color_primary_variant = 2131099756;
+			public const int design_default_color_error = 2131099756;
 			
 			// aapt resource value: 0x7F06006D
-			public const int design_dark_default_color_secondary = 2131099757;
+			public const int design_default_color_on_background = 2131099757;
 			
 			// aapt resource value: 0x7F06006E
-			public const int design_dark_default_color_secondary_variant = 2131099758;
+			public const int design_default_color_on_error = 2131099758;
 			
 			// aapt resource value: 0x7F06006F
-			public const int design_dark_default_color_surface = 2131099759;
+			public const int design_default_color_on_primary = 2131099759;
 			
 			// aapt resource value: 0x7F060070
-			public const int design_default_color_background = 2131099760;
+			public const int design_default_color_on_secondary = 2131099760;
 			
 			// aapt resource value: 0x7F060071
-			public const int design_default_color_error = 2131099761;
+			public const int design_default_color_on_surface = 2131099761;
 			
 			// aapt resource value: 0x7F060072
-			public const int design_default_color_on_background = 2131099762;
+			public const int design_default_color_primary = 2131099762;
 			
 			// aapt resource value: 0x7F060073
-			public const int design_default_color_on_error = 2131099763;
+			public const int design_default_color_primary_dark = 2131099763;
 			
 			// aapt resource value: 0x7F060074
-			public const int design_default_color_on_primary = 2131099764;
+			public const int design_default_color_primary_variant = 2131099764;
 			
 			// aapt resource value: 0x7F060075
-			public const int design_default_color_on_secondary = 2131099765;
+			public const int design_default_color_secondary = 2131099765;
 			
 			// aapt resource value: 0x7F060076
-			public const int design_default_color_on_surface = 2131099766;
+			public const int design_default_color_secondary_variant = 2131099766;
 			
 			// aapt resource value: 0x7F060077
-			public const int design_default_color_primary = 2131099767;
+			public const int design_default_color_surface = 2131099767;
 			
 			// aapt resource value: 0x7F060078
-			public const int design_default_color_primary_dark = 2131099768;
+			public const int design_error = 2131099768;
 			
 			// aapt resource value: 0x7F060079
-			public const int design_default_color_primary_variant = 2131099769;
+			public const int design_fab_shadow_end_color = 2131099769;
 			
 			// aapt resource value: 0x7F06007A
-			public const int design_default_color_secondary = 2131099770;
+			public const int design_fab_shadow_mid_color = 2131099770;
 			
 			// aapt resource value: 0x7F06007B
-			public const int design_default_color_secondary_variant = 2131099771;
+			public const int design_fab_shadow_start_color = 2131099771;
 			
 			// aapt resource value: 0x7F06007C
-			public const int design_default_color_surface = 2131099772;
+			public const int design_fab_stroke_end_inner_color = 2131099772;
 			
 			// aapt resource value: 0x7F06007D
-			public const int design_error = 2131099773;
+			public const int design_fab_stroke_end_outer_color = 2131099773;
 			
 			// aapt resource value: 0x7F06007E
-			public const int design_fab_shadow_end_color = 2131099774;
+			public const int design_fab_stroke_top_inner_color = 2131099774;
 			
 			// aapt resource value: 0x7F06007F
-			public const int design_fab_shadow_mid_color = 2131099775;
+			public const int design_fab_stroke_top_outer_color = 2131099775;
 			
 			// aapt resource value: 0x7F060080
-			public const int design_fab_shadow_start_color = 2131099776;
+			public const int design_icon_tint = 2131099776;
 			
 			// aapt resource value: 0x7F060081
-			public const int design_fab_stroke_end_inner_color = 2131099777;
+			public const int design_snackbar_background_color = 2131099777;
 			
 			// aapt resource value: 0x7F060082
-			public const int design_fab_stroke_end_outer_color = 2131099778;
+			public const int dim_foreground_disabled_material_dark = 2131099778;
 			
 			// aapt resource value: 0x7F060083
-			public const int design_fab_stroke_top_inner_color = 2131099779;
+			public const int dim_foreground_disabled_material_light = 2131099779;
 			
 			// aapt resource value: 0x7F060084
-			public const int design_fab_stroke_top_outer_color = 2131099780;
+			public const int dim_foreground_material_dark = 2131099780;
 			
 			// aapt resource value: 0x7F060085
-			public const int design_icon_tint = 2131099781;
+			public const int dim_foreground_material_light = 2131099781;
 			
 			// aapt resource value: 0x7F060086
-			public const int design_snackbar_background_color = 2131099782;
+			public const int error_color_material_dark = 2131099782;
 			
 			// aapt resource value: 0x7F060087
-			public const int dim_foreground_disabled_material_dark = 2131099783;
+			public const int error_color_material_light = 2131099783;
 			
 			// aapt resource value: 0x7F060088
-			public const int dim_foreground_disabled_material_light = 2131099784;
+			public const int foreground_material_dark = 2131099784;
 			
 			// aapt resource value: 0x7F060089
-			public const int dim_foreground_material_dark = 2131099785;
+			public const int foreground_material_light = 2131099785;
 			
 			// aapt resource value: 0x7F06008A
-			public const int dim_foreground_material_light = 2131099786;
+			public const int gd_top_view = 2131099786;
 			
 			// aapt resource value: 0x7F06008B
-			public const int error_color_material_dark = 2131099787;
+			public const int highlighted_text_material_dark = 2131099787;
 			
 			// aapt resource value: 0x7F06008C
-			public const int error_color_material_light = 2131099788;
+			public const int highlighted_text_material_light = 2131099788;
 			
 			// aapt resource value: 0x7F06008D
-			public const int foreground_material_dark = 2131099789;
+			public const int ic_launcher_background = 2131099789;
 			
 			// aapt resource value: 0x7F06008E
-			public const int foreground_material_light = 2131099790;
+			public const int lc_color_4ea7f2 = 2131099790;
 			
 			// aapt resource value: 0x7F06008F
-			public const int gd_top_view = 2131099791;
+			public const int lc_demo_color_000000 = 2131099791;
 			
 			// aapt resource value: 0x7F060090
-			public const int highlighted_text_material_dark = 2131099792;
+			public const int lc_demo_color_00ffffff = 2131099792;
 			
 			// aapt resource value: 0x7F060091
-			public const int highlighted_text_material_light = 2131099793;
+			public const int lc_demo_color_0B8C0D = 2131099793;
 			
 			// aapt resource value: 0x7F060092
-			public const int ic_launcher_background = 2131099794;
+			public const int lc_demo_color_2c2c2c = 2131099794;
 			
 			// aapt resource value: 0x7F060093
-			public const int lc_color_4ea7f2 = 2131099795;
+			public const int lc_demo_color_442c2c2c = 2131099795;
 			
 			// aapt resource value: 0x7F060094
-			public const int lc_demo_color_000000 = 2131099796;
+			public const int lc_demo_color_66000000 = 2131099796;
 			
 			// aapt resource value: 0x7F060095
-			public const int lc_demo_color_00ffffff = 2131099797;
+			public const int lc_demo_color_66f18d00 = 2131099797;
 			
 			// aapt resource value: 0x7F060096
-			public const int lc_demo_color_0B8C0D = 2131099798;
+			public const int lc_demo_color_880B8C0D = 2131099798;
 			
 			// aapt resource value: 0x7F060097
-			public const int lc_demo_color_2c2c2c = 2131099799;
-			
-			// aapt resource value: 0x7F060098
-			public const int lc_demo_color_442c2c2c = 2131099800;
+			public const int lc_demo_color_8f8f8f = 2131099799;
 			
 			// aapt resource value: 0x7F060099
-			public const int lc_demo_color_66000000 = 2131099801;
+			public const int lc_demo_color_d9d9d9 = 2131099801;
 			
 			// aapt resource value: 0x7F06009A
-			public const int lc_demo_color_66f18d00 = 2131099802;
+			public const int lc_demo_color_f18d00 = 2131099802;
 			
 			// aapt resource value: 0x7F06009B
-			public const int lc_demo_color_880B8C0D = 2131099803;
+			public const int lc_demo_color_f2f2f2 = 2131099803;
+			
+			// aapt resource value: 0x7F060098
+			public const int lc_demo_color_FF4F4F = 2131099800;
 			
 			// aapt resource value: 0x7F06009C
-			public const int lc_demo_color_8f8f8f = 2131099804;
-			
-			// aapt resource value: 0x7F06009E
-			public const int lc_demo_color_d9d9d9 = 2131099806;
-			
-			// aapt resource value: 0x7F06009F
-			public const int lc_demo_color_f18d00 = 2131099807;
-			
-			// aapt resource value: 0x7F0600A0
-			public const int lc_demo_color_f2f2f2 = 2131099808;
+			public const int lc_demo_color_ffffff = 2131099804;
 			
 			// aapt resource value: 0x7F06009D
-			public const int lc_demo_color_FF4F4F = 2131099805;
+			public const int m3_appbar_overlay_color = 2131099805;
+			
+			// aapt resource value: 0x7F06009E
+			public const int m3_assist_chip_icon_tint_color = 2131099806;
+			
+			// aapt resource value: 0x7F06009F
+			public const int m3_assist_chip_stroke_color = 2131099807;
+			
+			// aapt resource value: 0x7F0600A0
+			public const int m3_bottom_sheet_drag_handle_color = 2131099808;
 			
 			// aapt resource value: 0x7F0600A1
-			public const int lc_demo_color_ffffff = 2131099809;
+			public const int m3_button_background_color_selector = 2131099809;
 			
 			// aapt resource value: 0x7F0600A2
-			public const int lpsdk_app_bg = 2131099810;
+			public const int m3_button_foreground_color_selector = 2131099810;
 			
 			// aapt resource value: 0x7F0600A3
-			public const int lpsdk_app_line = 2131099811;
+			public const int m3_button_outline_color_selector = 2131099811;
 			
 			// aapt resource value: 0x7F0600A4
-			public const int lpsdk_color_white = 2131099812;
+			public const int m3_button_ripple_color = 2131099812;
 			
 			// aapt resource value: 0x7F0600A5
-			public const int lpsdk_textColor = 2131099813;
+			public const int m3_button_ripple_color_selector = 2131099813;
 			
 			// aapt resource value: 0x7F0600A6
-			public const int m3_appbar_overlay_color = 2131099814;
+			public const int m3_calendar_item_disabled_text = 2131099814;
 			
 			// aapt resource value: 0x7F0600A7
-			public const int m3_assist_chip_icon_tint_color = 2131099815;
+			public const int m3_calendar_item_stroke_color = 2131099815;
 			
 			// aapt resource value: 0x7F0600A8
-			public const int m3_assist_chip_stroke_color = 2131099816;
+			public const int m3_card_foreground_color = 2131099816;
 			
 			// aapt resource value: 0x7F0600A9
-			public const int m3_bottom_sheet_drag_handle_color = 2131099817;
+			public const int m3_card_ripple_color = 2131099817;
 			
 			// aapt resource value: 0x7F0600AA
-			public const int m3_button_background_color_selector = 2131099818;
+			public const int m3_card_stroke_color = 2131099818;
 			
 			// aapt resource value: 0x7F0600AB
-			public const int m3_button_foreground_color_selector = 2131099819;
+			public const int m3_checkbox_button_icon_tint = 2131099819;
 			
 			// aapt resource value: 0x7F0600AC
-			public const int m3_button_outline_color_selector = 2131099820;
+			public const int m3_checkbox_button_tint = 2131099820;
 			
 			// aapt resource value: 0x7F0600AD
-			public const int m3_button_ripple_color = 2131099821;
+			public const int m3_chip_assist_text_color = 2131099821;
 			
 			// aapt resource value: 0x7F0600AE
-			public const int m3_button_ripple_color_selector = 2131099822;
+			public const int m3_chip_background_color = 2131099822;
 			
 			// aapt resource value: 0x7F0600AF
-			public const int m3_calendar_item_disabled_text = 2131099823;
+			public const int m3_chip_ripple_color = 2131099823;
 			
 			// aapt resource value: 0x7F0600B0
-			public const int m3_calendar_item_stroke_color = 2131099824;
+			public const int m3_chip_stroke_color = 2131099824;
 			
 			// aapt resource value: 0x7F0600B1
-			public const int m3_card_foreground_color = 2131099825;
+			public const int m3_chip_text_color = 2131099825;
 			
 			// aapt resource value: 0x7F0600B2
-			public const int m3_card_ripple_color = 2131099826;
+			public const int m3_dark_default_color_primary_text = 2131099826;
 			
 			// aapt resource value: 0x7F0600B3
-			public const int m3_card_stroke_color = 2131099827;
+			public const int m3_dark_default_color_secondary_text = 2131099827;
 			
 			// aapt resource value: 0x7F0600B4
-			public const int m3_checkbox_button_icon_tint = 2131099828;
+			public const int m3_dark_highlighted_text = 2131099828;
 			
 			// aapt resource value: 0x7F0600B5
-			public const int m3_checkbox_button_tint = 2131099829;
+			public const int m3_dark_hint_foreground = 2131099829;
 			
 			// aapt resource value: 0x7F0600B6
-			public const int m3_chip_assist_text_color = 2131099830;
+			public const int m3_dark_primary_text_disable_only = 2131099830;
 			
 			// aapt resource value: 0x7F0600B7
-			public const int m3_chip_background_color = 2131099831;
+			public const int m3_default_color_primary_text = 2131099831;
 			
 			// aapt resource value: 0x7F0600B8
-			public const int m3_chip_ripple_color = 2131099832;
+			public const int m3_default_color_secondary_text = 2131099832;
 			
 			// aapt resource value: 0x7F0600B9
-			public const int m3_chip_stroke_color = 2131099833;
+			public const int m3_dynamic_dark_default_color_primary_text = 2131099833;
 			
 			// aapt resource value: 0x7F0600BA
-			public const int m3_chip_text_color = 2131099834;
+			public const int m3_dynamic_dark_default_color_secondary_text = 2131099834;
 			
 			// aapt resource value: 0x7F0600BB
-			public const int m3_dark_default_color_primary_text = 2131099835;
+			public const int m3_dynamic_dark_highlighted_text = 2131099835;
 			
 			// aapt resource value: 0x7F0600BC
-			public const int m3_dark_default_color_secondary_text = 2131099836;
+			public const int m3_dynamic_dark_hint_foreground = 2131099836;
 			
 			// aapt resource value: 0x7F0600BD
-			public const int m3_dark_highlighted_text = 2131099837;
+			public const int m3_dynamic_dark_primary_text_disable_only = 2131099837;
 			
 			// aapt resource value: 0x7F0600BE
-			public const int m3_dark_hint_foreground = 2131099838;
+			public const int m3_dynamic_default_color_primary_text = 2131099838;
 			
 			// aapt resource value: 0x7F0600BF
-			public const int m3_dark_primary_text_disable_only = 2131099839;
+			public const int m3_dynamic_default_color_secondary_text = 2131099839;
 			
 			// aapt resource value: 0x7F0600C0
-			public const int m3_default_color_primary_text = 2131099840;
+			public const int m3_dynamic_highlighted_text = 2131099840;
 			
 			// aapt resource value: 0x7F0600C1
-			public const int m3_default_color_secondary_text = 2131099841;
+			public const int m3_dynamic_hint_foreground = 2131099841;
 			
 			// aapt resource value: 0x7F0600C2
-			public const int m3_dynamic_dark_default_color_primary_text = 2131099842;
+			public const int m3_dynamic_primary_text_disable_only = 2131099842;
 			
 			// aapt resource value: 0x7F0600C3
-			public const int m3_dynamic_dark_default_color_secondary_text = 2131099843;
+			public const int m3_efab_ripple_color_selector = 2131099843;
 			
 			// aapt resource value: 0x7F0600C4
-			public const int m3_dynamic_dark_highlighted_text = 2131099844;
+			public const int m3_elevated_chip_background_color = 2131099844;
 			
 			// aapt resource value: 0x7F0600C5
-			public const int m3_dynamic_dark_hint_foreground = 2131099845;
+			public const int m3_fab_efab_background_color_selector = 2131099845;
 			
 			// aapt resource value: 0x7F0600C6
-			public const int m3_dynamic_dark_primary_text_disable_only = 2131099846;
+			public const int m3_fab_efab_foreground_color_selector = 2131099846;
 			
 			// aapt resource value: 0x7F0600C7
-			public const int m3_dynamic_default_color_primary_text = 2131099847;
+			public const int m3_fab_ripple_color_selector = 2131099847;
 			
 			// aapt resource value: 0x7F0600C8
-			public const int m3_dynamic_default_color_secondary_text = 2131099848;
+			public const int m3_filled_icon_button_container_color_selector = 2131099848;
 			
 			// aapt resource value: 0x7F0600C9
-			public const int m3_dynamic_highlighted_text = 2131099849;
+			public const int m3_highlighted_text = 2131099849;
 			
 			// aapt resource value: 0x7F0600CA
-			public const int m3_dynamic_hint_foreground = 2131099850;
+			public const int m3_hint_foreground = 2131099850;
 			
 			// aapt resource value: 0x7F0600CB
-			public const int m3_dynamic_primary_text_disable_only = 2131099851;
+			public const int m3_icon_button_icon_color_selector = 2131099851;
 			
 			// aapt resource value: 0x7F0600CC
-			public const int m3_efab_ripple_color_selector = 2131099852;
+			public const int m3_navigation_bar_item_with_indicator_icon_tint = 2131099852;
 			
 			// aapt resource value: 0x7F0600CD
-			public const int m3_elevated_chip_background_color = 2131099853;
+			public const int m3_navigation_bar_item_with_indicator_label_tint = 2131099853;
 			
 			// aapt resource value: 0x7F0600CE
-			public const int m3_fab_efab_background_color_selector = 2131099854;
+			public const int m3_navigation_bar_ripple_color_selector = 2131099854;
 			
 			// aapt resource value: 0x7F0600CF
-			public const int m3_fab_efab_foreground_color_selector = 2131099855;
+			public const int m3_navigation_item_background_color = 2131099855;
 			
 			// aapt resource value: 0x7F0600D0
-			public const int m3_fab_ripple_color_selector = 2131099856;
+			public const int m3_navigation_item_icon_tint = 2131099856;
 			
 			// aapt resource value: 0x7F0600D1
-			public const int m3_filled_icon_button_container_color_selector = 2131099857;
+			public const int m3_navigation_item_ripple_color = 2131099857;
 			
 			// aapt resource value: 0x7F0600D2
-			public const int m3_highlighted_text = 2131099858;
+			public const int m3_navigation_item_text_color = 2131099858;
 			
 			// aapt resource value: 0x7F0600D3
-			public const int m3_hint_foreground = 2131099859;
+			public const int m3_navigation_rail_item_with_indicator_icon_tint = 2131099859;
 			
 			// aapt resource value: 0x7F0600D4
-			public const int m3_icon_button_icon_color_selector = 2131099860;
+			public const int m3_navigation_rail_item_with_indicator_label_tint = 2131099860;
 			
 			// aapt resource value: 0x7F0600D5
-			public const int m3_navigation_bar_item_with_indicator_icon_tint = 2131099861;
+			public const int m3_navigation_rail_ripple_color_selector = 2131099861;
 			
 			// aapt resource value: 0x7F0600D6
-			public const int m3_navigation_bar_item_with_indicator_label_tint = 2131099862;
+			public const int m3_popupmenu_overlay_color = 2131099862;
 			
 			// aapt resource value: 0x7F0600D7
-			public const int m3_navigation_bar_ripple_color_selector = 2131099863;
+			public const int m3_primary_text_disable_only = 2131099863;
 			
 			// aapt resource value: 0x7F0600D8
-			public const int m3_navigation_item_background_color = 2131099864;
+			public const int m3_radiobutton_button_tint = 2131099864;
 			
 			// aapt resource value: 0x7F0600D9
-			public const int m3_navigation_item_icon_tint = 2131099865;
+			public const int m3_radiobutton_ripple_tint = 2131099865;
 			
 			// aapt resource value: 0x7F0600DA
-			public const int m3_navigation_item_ripple_color = 2131099866;
+			public const int m3_ref_palette_black = 2131099866;
 			
 			// aapt resource value: 0x7F0600DB
-			public const int m3_navigation_item_text_color = 2131099867;
+			public const int m3_ref_palette_dynamic_neutral0 = 2131099867;
 			
 			// aapt resource value: 0x7F0600DC
-			public const int m3_navigation_rail_item_with_indicator_icon_tint = 2131099868;
+			public const int m3_ref_palette_dynamic_neutral10 = 2131099868;
 			
 			// aapt resource value: 0x7F0600DD
-			public const int m3_navigation_rail_item_with_indicator_label_tint = 2131099869;
+			public const int m3_ref_palette_dynamic_neutral100 = 2131099869;
 			
 			// aapt resource value: 0x7F0600DE
-			public const int m3_navigation_rail_ripple_color_selector = 2131099870;
+			public const int m3_ref_palette_dynamic_neutral12 = 2131099870;
 			
 			// aapt resource value: 0x7F0600DF
-			public const int m3_popupmenu_overlay_color = 2131099871;
+			public const int m3_ref_palette_dynamic_neutral17 = 2131099871;
 			
 			// aapt resource value: 0x7F0600E0
-			public const int m3_primary_text_disable_only = 2131099872;
+			public const int m3_ref_palette_dynamic_neutral20 = 2131099872;
 			
 			// aapt resource value: 0x7F0600E1
-			public const int m3_radiobutton_button_tint = 2131099873;
+			public const int m3_ref_palette_dynamic_neutral22 = 2131099873;
 			
 			// aapt resource value: 0x7F0600E2
-			public const int m3_radiobutton_ripple_tint = 2131099874;
+			public const int m3_ref_palette_dynamic_neutral24 = 2131099874;
 			
 			// aapt resource value: 0x7F0600E3
-			public const int m3_ref_palette_black = 2131099875;
+			public const int m3_ref_palette_dynamic_neutral30 = 2131099875;
 			
 			// aapt resource value: 0x7F0600E4
-			public const int m3_ref_palette_dynamic_neutral0 = 2131099876;
+			public const int m3_ref_palette_dynamic_neutral4 = 2131099876;
 			
 			// aapt resource value: 0x7F0600E5
-			public const int m3_ref_palette_dynamic_neutral10 = 2131099877;
+			public const int m3_ref_palette_dynamic_neutral40 = 2131099877;
 			
 			// aapt resource value: 0x7F0600E6
-			public const int m3_ref_palette_dynamic_neutral100 = 2131099878;
+			public const int m3_ref_palette_dynamic_neutral50 = 2131099878;
 			
 			// aapt resource value: 0x7F0600E7
-			public const int m3_ref_palette_dynamic_neutral12 = 2131099879;
+			public const int m3_ref_palette_dynamic_neutral6 = 2131099879;
 			
 			// aapt resource value: 0x7F0600E8
-			public const int m3_ref_palette_dynamic_neutral17 = 2131099880;
+			public const int m3_ref_palette_dynamic_neutral60 = 2131099880;
 			
 			// aapt resource value: 0x7F0600E9
-			public const int m3_ref_palette_dynamic_neutral20 = 2131099881;
+			public const int m3_ref_palette_dynamic_neutral70 = 2131099881;
 			
 			// aapt resource value: 0x7F0600EA
-			public const int m3_ref_palette_dynamic_neutral22 = 2131099882;
+			public const int m3_ref_palette_dynamic_neutral80 = 2131099882;
 			
 			// aapt resource value: 0x7F0600EB
-			public const int m3_ref_palette_dynamic_neutral24 = 2131099883;
+			public const int m3_ref_palette_dynamic_neutral87 = 2131099883;
 			
 			// aapt resource value: 0x7F0600EC
-			public const int m3_ref_palette_dynamic_neutral30 = 2131099884;
+			public const int m3_ref_palette_dynamic_neutral90 = 2131099884;
 			
 			// aapt resource value: 0x7F0600ED
-			public const int m3_ref_palette_dynamic_neutral4 = 2131099885;
+			public const int m3_ref_palette_dynamic_neutral92 = 2131099885;
 			
 			// aapt resource value: 0x7F0600EE
-			public const int m3_ref_palette_dynamic_neutral40 = 2131099886;
+			public const int m3_ref_palette_dynamic_neutral94 = 2131099886;
 			
 			// aapt resource value: 0x7F0600EF
-			public const int m3_ref_palette_dynamic_neutral50 = 2131099887;
+			public const int m3_ref_palette_dynamic_neutral95 = 2131099887;
 			
 			// aapt resource value: 0x7F0600F0
-			public const int m3_ref_palette_dynamic_neutral6 = 2131099888;
+			public const int m3_ref_palette_dynamic_neutral96 = 2131099888;
 			
 			// aapt resource value: 0x7F0600F1
-			public const int m3_ref_palette_dynamic_neutral60 = 2131099889;
+			public const int m3_ref_palette_dynamic_neutral98 = 2131099889;
 			
 			// aapt resource value: 0x7F0600F2
-			public const int m3_ref_palette_dynamic_neutral70 = 2131099890;
+			public const int m3_ref_palette_dynamic_neutral99 = 2131099890;
 			
 			// aapt resource value: 0x7F0600F3
-			public const int m3_ref_palette_dynamic_neutral80 = 2131099891;
+			public const int m3_ref_palette_dynamic_neutral_variant0 = 2131099891;
 			
 			// aapt resource value: 0x7F0600F4
-			public const int m3_ref_palette_dynamic_neutral87 = 2131099892;
+			public const int m3_ref_palette_dynamic_neutral_variant10 = 2131099892;
 			
 			// aapt resource value: 0x7F0600F5
-			public const int m3_ref_palette_dynamic_neutral90 = 2131099893;
+			public const int m3_ref_palette_dynamic_neutral_variant100 = 2131099893;
 			
 			// aapt resource value: 0x7F0600F6
-			public const int m3_ref_palette_dynamic_neutral92 = 2131099894;
+			public const int m3_ref_palette_dynamic_neutral_variant20 = 2131099894;
 			
 			// aapt resource value: 0x7F0600F7
-			public const int m3_ref_palette_dynamic_neutral94 = 2131099895;
+			public const int m3_ref_palette_dynamic_neutral_variant30 = 2131099895;
 			
 			// aapt resource value: 0x7F0600F8
-			public const int m3_ref_palette_dynamic_neutral95 = 2131099896;
+			public const int m3_ref_palette_dynamic_neutral_variant40 = 2131099896;
 			
 			// aapt resource value: 0x7F0600F9
-			public const int m3_ref_palette_dynamic_neutral96 = 2131099897;
+			public const int m3_ref_palette_dynamic_neutral_variant50 = 2131099897;
 			
 			// aapt resource value: 0x7F0600FA
-			public const int m3_ref_palette_dynamic_neutral98 = 2131099898;
+			public const int m3_ref_palette_dynamic_neutral_variant60 = 2131099898;
 			
 			// aapt resource value: 0x7F0600FB
-			public const int m3_ref_palette_dynamic_neutral99 = 2131099899;
+			public const int m3_ref_palette_dynamic_neutral_variant70 = 2131099899;
 			
 			// aapt resource value: 0x7F0600FC
-			public const int m3_ref_palette_dynamic_neutral_variant0 = 2131099900;
+			public const int m3_ref_palette_dynamic_neutral_variant80 = 2131099900;
 			
 			// aapt resource value: 0x7F0600FD
-			public const int m3_ref_palette_dynamic_neutral_variant10 = 2131099901;
+			public const int m3_ref_palette_dynamic_neutral_variant90 = 2131099901;
 			
 			// aapt resource value: 0x7F0600FE
-			public const int m3_ref_palette_dynamic_neutral_variant100 = 2131099902;
+			public const int m3_ref_palette_dynamic_neutral_variant95 = 2131099902;
 			
 			// aapt resource value: 0x7F0600FF
-			public const int m3_ref_palette_dynamic_neutral_variant20 = 2131099903;
+			public const int m3_ref_palette_dynamic_neutral_variant99 = 2131099903;
 			
 			// aapt resource value: 0x7F060100
-			public const int m3_ref_palette_dynamic_neutral_variant30 = 2131099904;
+			public const int m3_ref_palette_dynamic_primary0 = 2131099904;
 			
 			// aapt resource value: 0x7F060101
-			public const int m3_ref_palette_dynamic_neutral_variant40 = 2131099905;
+			public const int m3_ref_palette_dynamic_primary10 = 2131099905;
 			
 			// aapt resource value: 0x7F060102
-			public const int m3_ref_palette_dynamic_neutral_variant50 = 2131099906;
+			public const int m3_ref_palette_dynamic_primary100 = 2131099906;
 			
 			// aapt resource value: 0x7F060103
-			public const int m3_ref_palette_dynamic_neutral_variant60 = 2131099907;
+			public const int m3_ref_palette_dynamic_primary20 = 2131099907;
 			
 			// aapt resource value: 0x7F060104
-			public const int m3_ref_palette_dynamic_neutral_variant70 = 2131099908;
+			public const int m3_ref_palette_dynamic_primary30 = 2131099908;
 			
 			// aapt resource value: 0x7F060105
-			public const int m3_ref_palette_dynamic_neutral_variant80 = 2131099909;
+			public const int m3_ref_palette_dynamic_primary40 = 2131099909;
 			
 			// aapt resource value: 0x7F060106
-			public const int m3_ref_palette_dynamic_neutral_variant90 = 2131099910;
+			public const int m3_ref_palette_dynamic_primary50 = 2131099910;
 			
 			// aapt resource value: 0x7F060107
-			public const int m3_ref_palette_dynamic_neutral_variant95 = 2131099911;
+			public const int m3_ref_palette_dynamic_primary60 = 2131099911;
 			
 			// aapt resource value: 0x7F060108
-			public const int m3_ref_palette_dynamic_neutral_variant99 = 2131099912;
+			public const int m3_ref_palette_dynamic_primary70 = 2131099912;
 			
 			// aapt resource value: 0x7F060109
-			public const int m3_ref_palette_dynamic_primary0 = 2131099913;
+			public const int m3_ref_palette_dynamic_primary80 = 2131099913;
 			
 			// aapt resource value: 0x7F06010A
-			public const int m3_ref_palette_dynamic_primary10 = 2131099914;
+			public const int m3_ref_palette_dynamic_primary90 = 2131099914;
 			
 			// aapt resource value: 0x7F06010B
-			public const int m3_ref_palette_dynamic_primary100 = 2131099915;
+			public const int m3_ref_palette_dynamic_primary95 = 2131099915;
 			
 			// aapt resource value: 0x7F06010C
-			public const int m3_ref_palette_dynamic_primary20 = 2131099916;
+			public const int m3_ref_palette_dynamic_primary99 = 2131099916;
 			
 			// aapt resource value: 0x7F06010D
-			public const int m3_ref_palette_dynamic_primary30 = 2131099917;
+			public const int m3_ref_palette_dynamic_secondary0 = 2131099917;
 			
 			// aapt resource value: 0x7F06010E
-			public const int m3_ref_palette_dynamic_primary40 = 2131099918;
+			public const int m3_ref_palette_dynamic_secondary10 = 2131099918;
 			
 			// aapt resource value: 0x7F06010F
-			public const int m3_ref_palette_dynamic_primary50 = 2131099919;
+			public const int m3_ref_palette_dynamic_secondary100 = 2131099919;
 			
 			// aapt resource value: 0x7F060110
-			public const int m3_ref_palette_dynamic_primary60 = 2131099920;
+			public const int m3_ref_palette_dynamic_secondary20 = 2131099920;
 			
 			// aapt resource value: 0x7F060111
-			public const int m3_ref_palette_dynamic_primary70 = 2131099921;
+			public const int m3_ref_palette_dynamic_secondary30 = 2131099921;
 			
 			// aapt resource value: 0x7F060112
-			public const int m3_ref_palette_dynamic_primary80 = 2131099922;
+			public const int m3_ref_palette_dynamic_secondary40 = 2131099922;
 			
 			// aapt resource value: 0x7F060113
-			public const int m3_ref_palette_dynamic_primary90 = 2131099923;
+			public const int m3_ref_palette_dynamic_secondary50 = 2131099923;
 			
 			// aapt resource value: 0x7F060114
-			public const int m3_ref_palette_dynamic_primary95 = 2131099924;
+			public const int m3_ref_palette_dynamic_secondary60 = 2131099924;
 			
 			// aapt resource value: 0x7F060115
-			public const int m3_ref_palette_dynamic_primary99 = 2131099925;
+			public const int m3_ref_palette_dynamic_secondary70 = 2131099925;
 			
 			// aapt resource value: 0x7F060116
-			public const int m3_ref_palette_dynamic_secondary0 = 2131099926;
+			public const int m3_ref_palette_dynamic_secondary80 = 2131099926;
 			
 			// aapt resource value: 0x7F060117
-			public const int m3_ref_palette_dynamic_secondary10 = 2131099927;
+			public const int m3_ref_palette_dynamic_secondary90 = 2131099927;
 			
 			// aapt resource value: 0x7F060118
-			public const int m3_ref_palette_dynamic_secondary100 = 2131099928;
+			public const int m3_ref_palette_dynamic_secondary95 = 2131099928;
 			
 			// aapt resource value: 0x7F060119
-			public const int m3_ref_palette_dynamic_secondary20 = 2131099929;
+			public const int m3_ref_palette_dynamic_secondary99 = 2131099929;
 			
 			// aapt resource value: 0x7F06011A
-			public const int m3_ref_palette_dynamic_secondary30 = 2131099930;
+			public const int m3_ref_palette_dynamic_tertiary0 = 2131099930;
 			
 			// aapt resource value: 0x7F06011B
-			public const int m3_ref_palette_dynamic_secondary40 = 2131099931;
+			public const int m3_ref_palette_dynamic_tertiary10 = 2131099931;
 			
 			// aapt resource value: 0x7F06011C
-			public const int m3_ref_palette_dynamic_secondary50 = 2131099932;
+			public const int m3_ref_palette_dynamic_tertiary100 = 2131099932;
 			
 			// aapt resource value: 0x7F06011D
-			public const int m3_ref_palette_dynamic_secondary60 = 2131099933;
+			public const int m3_ref_palette_dynamic_tertiary20 = 2131099933;
 			
 			// aapt resource value: 0x7F06011E
-			public const int m3_ref_palette_dynamic_secondary70 = 2131099934;
+			public const int m3_ref_palette_dynamic_tertiary30 = 2131099934;
 			
 			// aapt resource value: 0x7F06011F
-			public const int m3_ref_palette_dynamic_secondary80 = 2131099935;
+			public const int m3_ref_palette_dynamic_tertiary40 = 2131099935;
 			
 			// aapt resource value: 0x7F060120
-			public const int m3_ref_palette_dynamic_secondary90 = 2131099936;
+			public const int m3_ref_palette_dynamic_tertiary50 = 2131099936;
 			
 			// aapt resource value: 0x7F060121
-			public const int m3_ref_palette_dynamic_secondary95 = 2131099937;
+			public const int m3_ref_palette_dynamic_tertiary60 = 2131099937;
 			
 			// aapt resource value: 0x7F060122
-			public const int m3_ref_palette_dynamic_secondary99 = 2131099938;
+			public const int m3_ref_palette_dynamic_tertiary70 = 2131099938;
 			
 			// aapt resource value: 0x7F060123
-			public const int m3_ref_palette_dynamic_tertiary0 = 2131099939;
+			public const int m3_ref_palette_dynamic_tertiary80 = 2131099939;
 			
 			// aapt resource value: 0x7F060124
-			public const int m3_ref_palette_dynamic_tertiary10 = 2131099940;
+			public const int m3_ref_palette_dynamic_tertiary90 = 2131099940;
 			
 			// aapt resource value: 0x7F060125
-			public const int m3_ref_palette_dynamic_tertiary100 = 2131099941;
+			public const int m3_ref_palette_dynamic_tertiary95 = 2131099941;
 			
 			// aapt resource value: 0x7F060126
-			public const int m3_ref_palette_dynamic_tertiary20 = 2131099942;
+			public const int m3_ref_palette_dynamic_tertiary99 = 2131099942;
 			
 			// aapt resource value: 0x7F060127
-			public const int m3_ref_palette_dynamic_tertiary30 = 2131099943;
+			public const int m3_ref_palette_error0 = 2131099943;
 			
 			// aapt resource value: 0x7F060128
-			public const int m3_ref_palette_dynamic_tertiary40 = 2131099944;
+			public const int m3_ref_palette_error10 = 2131099944;
 			
 			// aapt resource value: 0x7F060129
-			public const int m3_ref_palette_dynamic_tertiary50 = 2131099945;
+			public const int m3_ref_palette_error100 = 2131099945;
 			
 			// aapt resource value: 0x7F06012A
-			public const int m3_ref_palette_dynamic_tertiary60 = 2131099946;
+			public const int m3_ref_palette_error20 = 2131099946;
 			
 			// aapt resource value: 0x7F06012B
-			public const int m3_ref_palette_dynamic_tertiary70 = 2131099947;
+			public const int m3_ref_palette_error30 = 2131099947;
 			
 			// aapt resource value: 0x7F06012C
-			public const int m3_ref_palette_dynamic_tertiary80 = 2131099948;
+			public const int m3_ref_palette_error40 = 2131099948;
 			
 			// aapt resource value: 0x7F06012D
-			public const int m3_ref_palette_dynamic_tertiary90 = 2131099949;
+			public const int m3_ref_palette_error50 = 2131099949;
 			
 			// aapt resource value: 0x7F06012E
-			public const int m3_ref_palette_dynamic_tertiary95 = 2131099950;
+			public const int m3_ref_palette_error60 = 2131099950;
 			
 			// aapt resource value: 0x7F06012F
-			public const int m3_ref_palette_dynamic_tertiary99 = 2131099951;
+			public const int m3_ref_palette_error70 = 2131099951;
 			
 			// aapt resource value: 0x7F060130
-			public const int m3_ref_palette_error0 = 2131099952;
+			public const int m3_ref_palette_error80 = 2131099952;
 			
 			// aapt resource value: 0x7F060131
-			public const int m3_ref_palette_error10 = 2131099953;
+			public const int m3_ref_palette_error90 = 2131099953;
 			
 			// aapt resource value: 0x7F060132
-			public const int m3_ref_palette_error100 = 2131099954;
+			public const int m3_ref_palette_error95 = 2131099954;
 			
 			// aapt resource value: 0x7F060133
-			public const int m3_ref_palette_error20 = 2131099955;
+			public const int m3_ref_palette_error99 = 2131099955;
 			
 			// aapt resource value: 0x7F060134
-			public const int m3_ref_palette_error30 = 2131099956;
+			public const int m3_ref_palette_neutral0 = 2131099956;
 			
 			// aapt resource value: 0x7F060135
-			public const int m3_ref_palette_error40 = 2131099957;
+			public const int m3_ref_palette_neutral10 = 2131099957;
 			
 			// aapt resource value: 0x7F060136
-			public const int m3_ref_palette_error50 = 2131099958;
+			public const int m3_ref_palette_neutral100 = 2131099958;
 			
 			// aapt resource value: 0x7F060137
-			public const int m3_ref_palette_error60 = 2131099959;
+			public const int m3_ref_palette_neutral12 = 2131099959;
 			
 			// aapt resource value: 0x7F060138
-			public const int m3_ref_palette_error70 = 2131099960;
+			public const int m3_ref_palette_neutral17 = 2131099960;
 			
 			// aapt resource value: 0x7F060139
-			public const int m3_ref_palette_error80 = 2131099961;
+			public const int m3_ref_palette_neutral20 = 2131099961;
 			
 			// aapt resource value: 0x7F06013A
-			public const int m3_ref_palette_error90 = 2131099962;
+			public const int m3_ref_palette_neutral22 = 2131099962;
 			
 			// aapt resource value: 0x7F06013B
-			public const int m3_ref_palette_error95 = 2131099963;
+			public const int m3_ref_palette_neutral24 = 2131099963;
 			
 			// aapt resource value: 0x7F06013C
-			public const int m3_ref_palette_error99 = 2131099964;
+			public const int m3_ref_palette_neutral30 = 2131099964;
 			
 			// aapt resource value: 0x7F06013D
-			public const int m3_ref_palette_neutral0 = 2131099965;
+			public const int m3_ref_palette_neutral4 = 2131099965;
 			
 			// aapt resource value: 0x7F06013E
-			public const int m3_ref_palette_neutral10 = 2131099966;
+			public const int m3_ref_palette_neutral40 = 2131099966;
 			
 			// aapt resource value: 0x7F06013F
-			public const int m3_ref_palette_neutral100 = 2131099967;
+			public const int m3_ref_palette_neutral50 = 2131099967;
 			
 			// aapt resource value: 0x7F060140
-			public const int m3_ref_palette_neutral12 = 2131099968;
+			public const int m3_ref_palette_neutral6 = 2131099968;
 			
 			// aapt resource value: 0x7F060141
-			public const int m3_ref_palette_neutral17 = 2131099969;
+			public const int m3_ref_palette_neutral60 = 2131099969;
 			
 			// aapt resource value: 0x7F060142
-			public const int m3_ref_palette_neutral20 = 2131099970;
+			public const int m3_ref_palette_neutral70 = 2131099970;
 			
 			// aapt resource value: 0x7F060143
-			public const int m3_ref_palette_neutral22 = 2131099971;
+			public const int m3_ref_palette_neutral80 = 2131099971;
 			
 			// aapt resource value: 0x7F060144
-			public const int m3_ref_palette_neutral24 = 2131099972;
+			public const int m3_ref_palette_neutral87 = 2131099972;
 			
 			// aapt resource value: 0x7F060145
-			public const int m3_ref_palette_neutral30 = 2131099973;
+			public const int m3_ref_palette_neutral90 = 2131099973;
 			
 			// aapt resource value: 0x7F060146
-			public const int m3_ref_palette_neutral4 = 2131099974;
+			public const int m3_ref_palette_neutral92 = 2131099974;
 			
 			// aapt resource value: 0x7F060147
-			public const int m3_ref_palette_neutral40 = 2131099975;
+			public const int m3_ref_palette_neutral94 = 2131099975;
 			
 			// aapt resource value: 0x7F060148
-			public const int m3_ref_palette_neutral50 = 2131099976;
+			public const int m3_ref_palette_neutral95 = 2131099976;
 			
 			// aapt resource value: 0x7F060149
-			public const int m3_ref_palette_neutral6 = 2131099977;
+			public const int m3_ref_palette_neutral96 = 2131099977;
 			
 			// aapt resource value: 0x7F06014A
-			public const int m3_ref_palette_neutral60 = 2131099978;
+			public const int m3_ref_palette_neutral98 = 2131099978;
 			
 			// aapt resource value: 0x7F06014B
-			public const int m3_ref_palette_neutral70 = 2131099979;
+			public const int m3_ref_palette_neutral99 = 2131099979;
 			
 			// aapt resource value: 0x7F06014C
-			public const int m3_ref_palette_neutral80 = 2131099980;
+			public const int m3_ref_palette_neutral_variant0 = 2131099980;
 			
 			// aapt resource value: 0x7F06014D
-			public const int m3_ref_palette_neutral87 = 2131099981;
+			public const int m3_ref_palette_neutral_variant10 = 2131099981;
 			
 			// aapt resource value: 0x7F06014E
-			public const int m3_ref_palette_neutral90 = 2131099982;
+			public const int m3_ref_palette_neutral_variant100 = 2131099982;
 			
 			// aapt resource value: 0x7F06014F
-			public const int m3_ref_palette_neutral92 = 2131099983;
+			public const int m3_ref_palette_neutral_variant20 = 2131099983;
 			
 			// aapt resource value: 0x7F060150
-			public const int m3_ref_palette_neutral94 = 2131099984;
+			public const int m3_ref_palette_neutral_variant30 = 2131099984;
 			
 			// aapt resource value: 0x7F060151
-			public const int m3_ref_palette_neutral95 = 2131099985;
+			public const int m3_ref_palette_neutral_variant40 = 2131099985;
 			
 			// aapt resource value: 0x7F060152
-			public const int m3_ref_palette_neutral96 = 2131099986;
+			public const int m3_ref_palette_neutral_variant50 = 2131099986;
 			
 			// aapt resource value: 0x7F060153
-			public const int m3_ref_palette_neutral98 = 2131099987;
+			public const int m3_ref_palette_neutral_variant60 = 2131099987;
 			
 			// aapt resource value: 0x7F060154
-			public const int m3_ref_palette_neutral99 = 2131099988;
+			public const int m3_ref_palette_neutral_variant70 = 2131099988;
 			
 			// aapt resource value: 0x7F060155
-			public const int m3_ref_palette_neutral_variant0 = 2131099989;
+			public const int m3_ref_palette_neutral_variant80 = 2131099989;
 			
 			// aapt resource value: 0x7F060156
-			public const int m3_ref_palette_neutral_variant10 = 2131099990;
+			public const int m3_ref_palette_neutral_variant90 = 2131099990;
 			
 			// aapt resource value: 0x7F060157
-			public const int m3_ref_palette_neutral_variant100 = 2131099991;
+			public const int m3_ref_palette_neutral_variant95 = 2131099991;
 			
 			// aapt resource value: 0x7F060158
-			public const int m3_ref_palette_neutral_variant20 = 2131099992;
+			public const int m3_ref_palette_neutral_variant99 = 2131099992;
 			
 			// aapt resource value: 0x7F060159
-			public const int m3_ref_palette_neutral_variant30 = 2131099993;
+			public const int m3_ref_palette_primary0 = 2131099993;
 			
 			// aapt resource value: 0x7F06015A
-			public const int m3_ref_palette_neutral_variant40 = 2131099994;
+			public const int m3_ref_palette_primary10 = 2131099994;
 			
 			// aapt resource value: 0x7F06015B
-			public const int m3_ref_palette_neutral_variant50 = 2131099995;
+			public const int m3_ref_palette_primary100 = 2131099995;
 			
 			// aapt resource value: 0x7F06015C
-			public const int m3_ref_palette_neutral_variant60 = 2131099996;
+			public const int m3_ref_palette_primary20 = 2131099996;
 			
 			// aapt resource value: 0x7F06015D
-			public const int m3_ref_palette_neutral_variant70 = 2131099997;
+			public const int m3_ref_palette_primary30 = 2131099997;
 			
 			// aapt resource value: 0x7F06015E
-			public const int m3_ref_palette_neutral_variant80 = 2131099998;
+			public const int m3_ref_palette_primary40 = 2131099998;
 			
 			// aapt resource value: 0x7F06015F
-			public const int m3_ref_palette_neutral_variant90 = 2131099999;
+			public const int m3_ref_palette_primary50 = 2131099999;
 			
 			// aapt resource value: 0x7F060160
-			public const int m3_ref_palette_neutral_variant95 = 2131100000;
+			public const int m3_ref_palette_primary60 = 2131100000;
 			
 			// aapt resource value: 0x7F060161
-			public const int m3_ref_palette_neutral_variant99 = 2131100001;
+			public const int m3_ref_palette_primary70 = 2131100001;
 			
 			// aapt resource value: 0x7F060162
-			public const int m3_ref_palette_primary0 = 2131100002;
+			public const int m3_ref_palette_primary80 = 2131100002;
 			
 			// aapt resource value: 0x7F060163
-			public const int m3_ref_palette_primary10 = 2131100003;
+			public const int m3_ref_palette_primary90 = 2131100003;
 			
 			// aapt resource value: 0x7F060164
-			public const int m3_ref_palette_primary100 = 2131100004;
+			public const int m3_ref_palette_primary95 = 2131100004;
 			
 			// aapt resource value: 0x7F060165
-			public const int m3_ref_palette_primary20 = 2131100005;
+			public const int m3_ref_palette_primary99 = 2131100005;
 			
 			// aapt resource value: 0x7F060166
-			public const int m3_ref_palette_primary30 = 2131100006;
+			public const int m3_ref_palette_secondary0 = 2131100006;
 			
 			// aapt resource value: 0x7F060167
-			public const int m3_ref_palette_primary40 = 2131100007;
+			public const int m3_ref_palette_secondary10 = 2131100007;
 			
 			// aapt resource value: 0x7F060168
-			public const int m3_ref_palette_primary50 = 2131100008;
+			public const int m3_ref_palette_secondary100 = 2131100008;
 			
 			// aapt resource value: 0x7F060169
-			public const int m3_ref_palette_primary60 = 2131100009;
+			public const int m3_ref_palette_secondary20 = 2131100009;
 			
 			// aapt resource value: 0x7F06016A
-			public const int m3_ref_palette_primary70 = 2131100010;
+			public const int m3_ref_palette_secondary30 = 2131100010;
 			
 			// aapt resource value: 0x7F06016B
-			public const int m3_ref_palette_primary80 = 2131100011;
+			public const int m3_ref_palette_secondary40 = 2131100011;
 			
 			// aapt resource value: 0x7F06016C
-			public const int m3_ref_palette_primary90 = 2131100012;
+			public const int m3_ref_palette_secondary50 = 2131100012;
 			
 			// aapt resource value: 0x7F06016D
-			public const int m3_ref_palette_primary95 = 2131100013;
+			public const int m3_ref_palette_secondary60 = 2131100013;
 			
 			// aapt resource value: 0x7F06016E
-			public const int m3_ref_palette_primary99 = 2131100014;
+			public const int m3_ref_palette_secondary70 = 2131100014;
 			
 			// aapt resource value: 0x7F06016F
-			public const int m3_ref_palette_secondary0 = 2131100015;
+			public const int m3_ref_palette_secondary80 = 2131100015;
 			
 			// aapt resource value: 0x7F060170
-			public const int m3_ref_palette_secondary10 = 2131100016;
+			public const int m3_ref_palette_secondary90 = 2131100016;
 			
 			// aapt resource value: 0x7F060171
-			public const int m3_ref_palette_secondary100 = 2131100017;
+			public const int m3_ref_palette_secondary95 = 2131100017;
 			
 			// aapt resource value: 0x7F060172
-			public const int m3_ref_palette_secondary20 = 2131100018;
+			public const int m3_ref_palette_secondary99 = 2131100018;
 			
 			// aapt resource value: 0x7F060173
-			public const int m3_ref_palette_secondary30 = 2131100019;
+			public const int m3_ref_palette_tertiary0 = 2131100019;
 			
 			// aapt resource value: 0x7F060174
-			public const int m3_ref_palette_secondary40 = 2131100020;
+			public const int m3_ref_palette_tertiary10 = 2131100020;
 			
 			// aapt resource value: 0x7F060175
-			public const int m3_ref_palette_secondary50 = 2131100021;
+			public const int m3_ref_palette_tertiary100 = 2131100021;
 			
 			// aapt resource value: 0x7F060176
-			public const int m3_ref_palette_secondary60 = 2131100022;
+			public const int m3_ref_palette_tertiary20 = 2131100022;
 			
 			// aapt resource value: 0x7F060177
-			public const int m3_ref_palette_secondary70 = 2131100023;
+			public const int m3_ref_palette_tertiary30 = 2131100023;
 			
 			// aapt resource value: 0x7F060178
-			public const int m3_ref_palette_secondary80 = 2131100024;
+			public const int m3_ref_palette_tertiary40 = 2131100024;
 			
 			// aapt resource value: 0x7F060179
-			public const int m3_ref_palette_secondary90 = 2131100025;
+			public const int m3_ref_palette_tertiary50 = 2131100025;
 			
 			// aapt resource value: 0x7F06017A
-			public const int m3_ref_palette_secondary95 = 2131100026;
+			public const int m3_ref_palette_tertiary60 = 2131100026;
 			
 			// aapt resource value: 0x7F06017B
-			public const int m3_ref_palette_secondary99 = 2131100027;
+			public const int m3_ref_palette_tertiary70 = 2131100027;
 			
 			// aapt resource value: 0x7F06017C
-			public const int m3_ref_palette_tertiary0 = 2131100028;
+			public const int m3_ref_palette_tertiary80 = 2131100028;
 			
 			// aapt resource value: 0x7F06017D
-			public const int m3_ref_palette_tertiary10 = 2131100029;
+			public const int m3_ref_palette_tertiary90 = 2131100029;
 			
 			// aapt resource value: 0x7F06017E
-			public const int m3_ref_palette_tertiary100 = 2131100030;
+			public const int m3_ref_palette_tertiary95 = 2131100030;
 			
 			// aapt resource value: 0x7F06017F
-			public const int m3_ref_palette_tertiary20 = 2131100031;
+			public const int m3_ref_palette_tertiary99 = 2131100031;
 			
 			// aapt resource value: 0x7F060180
-			public const int m3_ref_palette_tertiary30 = 2131100032;
+			public const int m3_ref_palette_white = 2131100032;
 			
 			// aapt resource value: 0x7F060181
-			public const int m3_ref_palette_tertiary40 = 2131100033;
+			public const int m3_selection_control_ripple_color_selector = 2131100033;
 			
 			// aapt resource value: 0x7F060182
-			public const int m3_ref_palette_tertiary50 = 2131100034;
+			public const int m3_simple_item_ripple_color = 2131100034;
 			
 			// aapt resource value: 0x7F060183
-			public const int m3_ref_palette_tertiary60 = 2131100035;
+			public const int m3_slider_active_track_color = 2131100035;
 			
 			// aapt resource value: 0x7F060184
-			public const int m3_ref_palette_tertiary70 = 2131100036;
+			public const int m3_slider_halo_color = 2131100036;
 			
 			// aapt resource value: 0x7F060185
-			public const int m3_ref_palette_tertiary80 = 2131100037;
+			public const int m3_slider_inactive_track_color = 2131100037;
 			
 			// aapt resource value: 0x7F060186
-			public const int m3_ref_palette_tertiary90 = 2131100038;
+			public const int m3_slider_thumb_color = 2131100038;
 			
 			// aapt resource value: 0x7F060187
-			public const int m3_ref_palette_tertiary95 = 2131100039;
+			public const int m3_switch_thumb_tint = 2131100039;
 			
 			// aapt resource value: 0x7F060188
-			public const int m3_ref_palette_tertiary99 = 2131100040;
+			public const int m3_switch_track_tint = 2131100040;
 			
 			// aapt resource value: 0x7F060189
-			public const int m3_ref_palette_white = 2131100041;
+			public const int m3_sys_color_dark_background = 2131100041;
 			
 			// aapt resource value: 0x7F06018A
-			public const int m3_selection_control_ripple_color_selector = 2131100042;
+			public const int m3_sys_color_dark_error = 2131100042;
 			
 			// aapt resource value: 0x7F06018B
-			public const int m3_simple_item_ripple_color = 2131100043;
+			public const int m3_sys_color_dark_error_container = 2131100043;
 			
 			// aapt resource value: 0x7F06018C
-			public const int m3_slider_active_track_color = 2131100044;
+			public const int m3_sys_color_dark_inverse_on_surface = 2131100044;
 			
 			// aapt resource value: 0x7F06018D
-			public const int m3_slider_halo_color = 2131100045;
+			public const int m3_sys_color_dark_inverse_primary = 2131100045;
 			
 			// aapt resource value: 0x7F06018E
-			public const int m3_slider_inactive_track_color = 2131100046;
+			public const int m3_sys_color_dark_inverse_surface = 2131100046;
 			
 			// aapt resource value: 0x7F06018F
-			public const int m3_slider_thumb_color = 2131100047;
+			public const int m3_sys_color_dark_on_background = 2131100047;
 			
 			// aapt resource value: 0x7F060190
-			public const int m3_switch_thumb_tint = 2131100048;
+			public const int m3_sys_color_dark_on_error = 2131100048;
 			
 			// aapt resource value: 0x7F060191
-			public const int m3_switch_track_tint = 2131100049;
+			public const int m3_sys_color_dark_on_error_container = 2131100049;
 			
 			// aapt resource value: 0x7F060192
-			public const int m3_sys_color_dark_background = 2131100050;
+			public const int m3_sys_color_dark_on_primary = 2131100050;
 			
 			// aapt resource value: 0x7F060193
-			public const int m3_sys_color_dark_error = 2131100051;
+			public const int m3_sys_color_dark_on_primary_container = 2131100051;
 			
 			// aapt resource value: 0x7F060194
-			public const int m3_sys_color_dark_error_container = 2131100052;
+			public const int m3_sys_color_dark_on_secondary = 2131100052;
 			
 			// aapt resource value: 0x7F060195
-			public const int m3_sys_color_dark_inverse_on_surface = 2131100053;
+			public const int m3_sys_color_dark_on_secondary_container = 2131100053;
 			
 			// aapt resource value: 0x7F060196
-			public const int m3_sys_color_dark_inverse_primary = 2131100054;
+			public const int m3_sys_color_dark_on_surface = 2131100054;
 			
 			// aapt resource value: 0x7F060197
-			public const int m3_sys_color_dark_inverse_surface = 2131100055;
+			public const int m3_sys_color_dark_on_surface_variant = 2131100055;
 			
 			// aapt resource value: 0x7F060198
-			public const int m3_sys_color_dark_on_background = 2131100056;
+			public const int m3_sys_color_dark_on_tertiary = 2131100056;
 			
 			// aapt resource value: 0x7F060199
-			public const int m3_sys_color_dark_on_error = 2131100057;
+			public const int m3_sys_color_dark_on_tertiary_container = 2131100057;
 			
 			// aapt resource value: 0x7F06019A
-			public const int m3_sys_color_dark_on_error_container = 2131100058;
+			public const int m3_sys_color_dark_outline = 2131100058;
 			
 			// aapt resource value: 0x7F06019B
-			public const int m3_sys_color_dark_on_primary = 2131100059;
+			public const int m3_sys_color_dark_outline_variant = 2131100059;
 			
 			// aapt resource value: 0x7F06019C
-			public const int m3_sys_color_dark_on_primary_container = 2131100060;
+			public const int m3_sys_color_dark_primary = 2131100060;
 			
 			// aapt resource value: 0x7F06019D
-			public const int m3_sys_color_dark_on_secondary = 2131100061;
+			public const int m3_sys_color_dark_primary_container = 2131100061;
 			
 			// aapt resource value: 0x7F06019E
-			public const int m3_sys_color_dark_on_secondary_container = 2131100062;
+			public const int m3_sys_color_dark_secondary = 2131100062;
 			
 			// aapt resource value: 0x7F06019F
-			public const int m3_sys_color_dark_on_surface = 2131100063;
+			public const int m3_sys_color_dark_secondary_container = 2131100063;
 			
 			// aapt resource value: 0x7F0601A0
-			public const int m3_sys_color_dark_on_surface_variant = 2131100064;
+			public const int m3_sys_color_dark_surface = 2131100064;
 			
 			// aapt resource value: 0x7F0601A1
-			public const int m3_sys_color_dark_on_tertiary = 2131100065;
+			public const int m3_sys_color_dark_surface_bright = 2131100065;
 			
 			// aapt resource value: 0x7F0601A2
-			public const int m3_sys_color_dark_on_tertiary_container = 2131100066;
+			public const int m3_sys_color_dark_surface_container = 2131100066;
 			
 			// aapt resource value: 0x7F0601A3
-			public const int m3_sys_color_dark_outline = 2131100067;
+			public const int m3_sys_color_dark_surface_container_high = 2131100067;
 			
 			// aapt resource value: 0x7F0601A4
-			public const int m3_sys_color_dark_outline_variant = 2131100068;
+			public const int m3_sys_color_dark_surface_container_highest = 2131100068;
 			
 			// aapt resource value: 0x7F0601A5
-			public const int m3_sys_color_dark_primary = 2131100069;
+			public const int m3_sys_color_dark_surface_container_low = 2131100069;
 			
 			// aapt resource value: 0x7F0601A6
-			public const int m3_sys_color_dark_primary_container = 2131100070;
+			public const int m3_sys_color_dark_surface_container_lowest = 2131100070;
 			
 			// aapt resource value: 0x7F0601A7
-			public const int m3_sys_color_dark_secondary = 2131100071;
+			public const int m3_sys_color_dark_surface_dim = 2131100071;
 			
 			// aapt resource value: 0x7F0601A8
-			public const int m3_sys_color_dark_secondary_container = 2131100072;
+			public const int m3_sys_color_dark_surface_variant = 2131100072;
 			
 			// aapt resource value: 0x7F0601A9
-			public const int m3_sys_color_dark_surface = 2131100073;
+			public const int m3_sys_color_dark_tertiary = 2131100073;
 			
 			// aapt resource value: 0x7F0601AA
-			public const int m3_sys_color_dark_surface_bright = 2131100074;
+			public const int m3_sys_color_dark_tertiary_container = 2131100074;
 			
 			// aapt resource value: 0x7F0601AB
-			public const int m3_sys_color_dark_surface_container = 2131100075;
+			public const int m3_sys_color_dynamic_dark_background = 2131100075;
 			
 			// aapt resource value: 0x7F0601AC
-			public const int m3_sys_color_dark_surface_container_high = 2131100076;
+			public const int m3_sys_color_dynamic_dark_inverse_on_surface = 2131100076;
 			
 			// aapt resource value: 0x7F0601AD
-			public const int m3_sys_color_dark_surface_container_highest = 2131100077;
+			public const int m3_sys_color_dynamic_dark_inverse_primary = 2131100077;
 			
 			// aapt resource value: 0x7F0601AE
-			public const int m3_sys_color_dark_surface_container_low = 2131100078;
+			public const int m3_sys_color_dynamic_dark_inverse_surface = 2131100078;
 			
 			// aapt resource value: 0x7F0601AF
-			public const int m3_sys_color_dark_surface_container_lowest = 2131100079;
+			public const int m3_sys_color_dynamic_dark_on_background = 2131100079;
 			
 			// aapt resource value: 0x7F0601B0
-			public const int m3_sys_color_dark_surface_dim = 2131100080;
+			public const int m3_sys_color_dynamic_dark_on_primary = 2131100080;
 			
 			// aapt resource value: 0x7F0601B1
-			public const int m3_sys_color_dark_surface_variant = 2131100081;
+			public const int m3_sys_color_dynamic_dark_on_primary_container = 2131100081;
 			
 			// aapt resource value: 0x7F0601B2
-			public const int m3_sys_color_dark_tertiary = 2131100082;
+			public const int m3_sys_color_dynamic_dark_on_secondary = 2131100082;
 			
 			// aapt resource value: 0x7F0601B3
-			public const int m3_sys_color_dark_tertiary_container = 2131100083;
+			public const int m3_sys_color_dynamic_dark_on_secondary_container = 2131100083;
 			
 			// aapt resource value: 0x7F0601B4
-			public const int m3_sys_color_dynamic_dark_background = 2131100084;
+			public const int m3_sys_color_dynamic_dark_on_surface = 2131100084;
 			
 			// aapt resource value: 0x7F0601B5
-			public const int m3_sys_color_dynamic_dark_inverse_on_surface = 2131100085;
+			public const int m3_sys_color_dynamic_dark_on_surface_variant = 2131100085;
 			
 			// aapt resource value: 0x7F0601B6
-			public const int m3_sys_color_dynamic_dark_inverse_primary = 2131100086;
+			public const int m3_sys_color_dynamic_dark_on_tertiary = 2131100086;
 			
 			// aapt resource value: 0x7F0601B7
-			public const int m3_sys_color_dynamic_dark_inverse_surface = 2131100087;
+			public const int m3_sys_color_dynamic_dark_on_tertiary_container = 2131100087;
 			
 			// aapt resource value: 0x7F0601B8
-			public const int m3_sys_color_dynamic_dark_on_background = 2131100088;
+			public const int m3_sys_color_dynamic_dark_outline = 2131100088;
 			
 			// aapt resource value: 0x7F0601B9
-			public const int m3_sys_color_dynamic_dark_on_primary = 2131100089;
+			public const int m3_sys_color_dynamic_dark_outline_variant = 2131100089;
 			
 			// aapt resource value: 0x7F0601BA
-			public const int m3_sys_color_dynamic_dark_on_primary_container = 2131100090;
+			public const int m3_sys_color_dynamic_dark_primary = 2131100090;
 			
 			// aapt resource value: 0x7F0601BB
-			public const int m3_sys_color_dynamic_dark_on_secondary = 2131100091;
+			public const int m3_sys_color_dynamic_dark_primary_container = 2131100091;
 			
 			// aapt resource value: 0x7F0601BC
-			public const int m3_sys_color_dynamic_dark_on_secondary_container = 2131100092;
+			public const int m3_sys_color_dynamic_dark_secondary = 2131100092;
 			
 			// aapt resource value: 0x7F0601BD
-			public const int m3_sys_color_dynamic_dark_on_surface = 2131100093;
+			public const int m3_sys_color_dynamic_dark_secondary_container = 2131100093;
 			
 			// aapt resource value: 0x7F0601BE
-			public const int m3_sys_color_dynamic_dark_on_surface_variant = 2131100094;
+			public const int m3_sys_color_dynamic_dark_surface = 2131100094;
 			
 			// aapt resource value: 0x7F0601BF
-			public const int m3_sys_color_dynamic_dark_on_tertiary = 2131100095;
+			public const int m3_sys_color_dynamic_dark_surface_bright = 2131100095;
 			
 			// aapt resource value: 0x7F0601C0
-			public const int m3_sys_color_dynamic_dark_on_tertiary_container = 2131100096;
+			public const int m3_sys_color_dynamic_dark_surface_container = 2131100096;
 			
 			// aapt resource value: 0x7F0601C1
-			public const int m3_sys_color_dynamic_dark_outline = 2131100097;
+			public const int m3_sys_color_dynamic_dark_surface_container_high = 2131100097;
 			
 			// aapt resource value: 0x7F0601C2
-			public const int m3_sys_color_dynamic_dark_outline_variant = 2131100098;
+			public const int m3_sys_color_dynamic_dark_surface_container_highest = 2131100098;
 			
 			// aapt resource value: 0x7F0601C3
-			public const int m3_sys_color_dynamic_dark_primary = 2131100099;
+			public const int m3_sys_color_dynamic_dark_surface_container_low = 2131100099;
 			
 			// aapt resource value: 0x7F0601C4
-			public const int m3_sys_color_dynamic_dark_primary_container = 2131100100;
+			public const int m3_sys_color_dynamic_dark_surface_container_lowest = 2131100100;
 			
 			// aapt resource value: 0x7F0601C5
-			public const int m3_sys_color_dynamic_dark_secondary = 2131100101;
+			public const int m3_sys_color_dynamic_dark_surface_dim = 2131100101;
 			
 			// aapt resource value: 0x7F0601C6
-			public const int m3_sys_color_dynamic_dark_secondary_container = 2131100102;
+			public const int m3_sys_color_dynamic_dark_surface_variant = 2131100102;
 			
 			// aapt resource value: 0x7F0601C7
-			public const int m3_sys_color_dynamic_dark_surface = 2131100103;
+			public const int m3_sys_color_dynamic_dark_tertiary = 2131100103;
 			
 			// aapt resource value: 0x7F0601C8
-			public const int m3_sys_color_dynamic_dark_surface_bright = 2131100104;
+			public const int m3_sys_color_dynamic_dark_tertiary_container = 2131100104;
 			
 			// aapt resource value: 0x7F0601C9
-			public const int m3_sys_color_dynamic_dark_surface_container = 2131100105;
+			public const int m3_sys_color_dynamic_light_background = 2131100105;
 			
 			// aapt resource value: 0x7F0601CA
-			public const int m3_sys_color_dynamic_dark_surface_container_high = 2131100106;
+			public const int m3_sys_color_dynamic_light_inverse_on_surface = 2131100106;
 			
 			// aapt resource value: 0x7F0601CB
-			public const int m3_sys_color_dynamic_dark_surface_container_highest = 2131100107;
+			public const int m3_sys_color_dynamic_light_inverse_primary = 2131100107;
 			
 			// aapt resource value: 0x7F0601CC
-			public const int m3_sys_color_dynamic_dark_surface_container_low = 2131100108;
+			public const int m3_sys_color_dynamic_light_inverse_surface = 2131100108;
 			
 			// aapt resource value: 0x7F0601CD
-			public const int m3_sys_color_dynamic_dark_surface_container_lowest = 2131100109;
+			public const int m3_sys_color_dynamic_light_on_background = 2131100109;
 			
 			// aapt resource value: 0x7F0601CE
-			public const int m3_sys_color_dynamic_dark_surface_dim = 2131100110;
+			public const int m3_sys_color_dynamic_light_on_primary = 2131100110;
 			
 			// aapt resource value: 0x7F0601CF
-			public const int m3_sys_color_dynamic_dark_surface_variant = 2131100111;
+			public const int m3_sys_color_dynamic_light_on_primary_container = 2131100111;
 			
 			// aapt resource value: 0x7F0601D0
-			public const int m3_sys_color_dynamic_dark_tertiary = 2131100112;
+			public const int m3_sys_color_dynamic_light_on_secondary = 2131100112;
 			
 			// aapt resource value: 0x7F0601D1
-			public const int m3_sys_color_dynamic_dark_tertiary_container = 2131100113;
+			public const int m3_sys_color_dynamic_light_on_secondary_container = 2131100113;
 			
 			// aapt resource value: 0x7F0601D2
-			public const int m3_sys_color_dynamic_light_background = 2131100114;
+			public const int m3_sys_color_dynamic_light_on_surface = 2131100114;
 			
 			// aapt resource value: 0x7F0601D3
-			public const int m3_sys_color_dynamic_light_inverse_on_surface = 2131100115;
+			public const int m3_sys_color_dynamic_light_on_surface_variant = 2131100115;
 			
 			// aapt resource value: 0x7F0601D4
-			public const int m3_sys_color_dynamic_light_inverse_primary = 2131100116;
+			public const int m3_sys_color_dynamic_light_on_tertiary = 2131100116;
 			
 			// aapt resource value: 0x7F0601D5
-			public const int m3_sys_color_dynamic_light_inverse_surface = 2131100117;
+			public const int m3_sys_color_dynamic_light_on_tertiary_container = 2131100117;
 			
 			// aapt resource value: 0x7F0601D6
-			public const int m3_sys_color_dynamic_light_on_background = 2131100118;
+			public const int m3_sys_color_dynamic_light_outline = 2131100118;
 			
 			// aapt resource value: 0x7F0601D7
-			public const int m3_sys_color_dynamic_light_on_primary = 2131100119;
+			public const int m3_sys_color_dynamic_light_outline_variant = 2131100119;
 			
 			// aapt resource value: 0x7F0601D8
-			public const int m3_sys_color_dynamic_light_on_primary_container = 2131100120;
+			public const int m3_sys_color_dynamic_light_primary = 2131100120;
 			
 			// aapt resource value: 0x7F0601D9
-			public const int m3_sys_color_dynamic_light_on_secondary = 2131100121;
+			public const int m3_sys_color_dynamic_light_primary_container = 2131100121;
 			
 			// aapt resource value: 0x7F0601DA
-			public const int m3_sys_color_dynamic_light_on_secondary_container = 2131100122;
+			public const int m3_sys_color_dynamic_light_secondary = 2131100122;
 			
 			// aapt resource value: 0x7F0601DB
-			public const int m3_sys_color_dynamic_light_on_surface = 2131100123;
+			public const int m3_sys_color_dynamic_light_secondary_container = 2131100123;
 			
 			// aapt resource value: 0x7F0601DC
-			public const int m3_sys_color_dynamic_light_on_surface_variant = 2131100124;
+			public const int m3_sys_color_dynamic_light_surface = 2131100124;
 			
 			// aapt resource value: 0x7F0601DD
-			public const int m3_sys_color_dynamic_light_on_tertiary = 2131100125;
+			public const int m3_sys_color_dynamic_light_surface_bright = 2131100125;
 			
 			// aapt resource value: 0x7F0601DE
-			public const int m3_sys_color_dynamic_light_on_tertiary_container = 2131100126;
+			public const int m3_sys_color_dynamic_light_surface_container = 2131100126;
 			
 			// aapt resource value: 0x7F0601DF
-			public const int m3_sys_color_dynamic_light_outline = 2131100127;
+			public const int m3_sys_color_dynamic_light_surface_container_high = 2131100127;
 			
 			// aapt resource value: 0x7F0601E0
-			public const int m3_sys_color_dynamic_light_outline_variant = 2131100128;
+			public const int m3_sys_color_dynamic_light_surface_container_highest = 2131100128;
 			
 			// aapt resource value: 0x7F0601E1
-			public const int m3_sys_color_dynamic_light_primary = 2131100129;
+			public const int m3_sys_color_dynamic_light_surface_container_low = 2131100129;
 			
 			// aapt resource value: 0x7F0601E2
-			public const int m3_sys_color_dynamic_light_primary_container = 2131100130;
+			public const int m3_sys_color_dynamic_light_surface_container_lowest = 2131100130;
 			
 			// aapt resource value: 0x7F0601E3
-			public const int m3_sys_color_dynamic_light_secondary = 2131100131;
+			public const int m3_sys_color_dynamic_light_surface_dim = 2131100131;
 			
 			// aapt resource value: 0x7F0601E4
-			public const int m3_sys_color_dynamic_light_secondary_container = 2131100132;
+			public const int m3_sys_color_dynamic_light_surface_variant = 2131100132;
 			
 			// aapt resource value: 0x7F0601E5
-			public const int m3_sys_color_dynamic_light_surface = 2131100133;
+			public const int m3_sys_color_dynamic_light_tertiary = 2131100133;
 			
 			// aapt resource value: 0x7F0601E6
-			public const int m3_sys_color_dynamic_light_surface_bright = 2131100134;
+			public const int m3_sys_color_dynamic_light_tertiary_container = 2131100134;
 			
 			// aapt resource value: 0x7F0601E7
-			public const int m3_sys_color_dynamic_light_surface_container = 2131100135;
+			public const int m3_sys_color_dynamic_on_primary_fixed = 2131100135;
 			
 			// aapt resource value: 0x7F0601E8
-			public const int m3_sys_color_dynamic_light_surface_container_high = 2131100136;
+			public const int m3_sys_color_dynamic_on_primary_fixed_variant = 2131100136;
 			
 			// aapt resource value: 0x7F0601E9
-			public const int m3_sys_color_dynamic_light_surface_container_highest = 2131100137;
+			public const int m3_sys_color_dynamic_on_secondary_fixed = 2131100137;
 			
 			// aapt resource value: 0x7F0601EA
-			public const int m3_sys_color_dynamic_light_surface_container_low = 2131100138;
+			public const int m3_sys_color_dynamic_on_secondary_fixed_variant = 2131100138;
 			
 			// aapt resource value: 0x7F0601EB
-			public const int m3_sys_color_dynamic_light_surface_container_lowest = 2131100139;
+			public const int m3_sys_color_dynamic_on_tertiary_fixed = 2131100139;
 			
 			// aapt resource value: 0x7F0601EC
-			public const int m3_sys_color_dynamic_light_surface_dim = 2131100140;
+			public const int m3_sys_color_dynamic_on_tertiary_fixed_variant = 2131100140;
 			
 			// aapt resource value: 0x7F0601ED
-			public const int m3_sys_color_dynamic_light_surface_variant = 2131100141;
+			public const int m3_sys_color_dynamic_primary_fixed = 2131100141;
 			
 			// aapt resource value: 0x7F0601EE
-			public const int m3_sys_color_dynamic_light_tertiary = 2131100142;
+			public const int m3_sys_color_dynamic_primary_fixed_dim = 2131100142;
 			
 			// aapt resource value: 0x7F0601EF
-			public const int m3_sys_color_dynamic_light_tertiary_container = 2131100143;
+			public const int m3_sys_color_dynamic_secondary_fixed = 2131100143;
 			
 			// aapt resource value: 0x7F0601F0
-			public const int m3_sys_color_dynamic_on_primary_fixed = 2131100144;
+			public const int m3_sys_color_dynamic_secondary_fixed_dim = 2131100144;
 			
 			// aapt resource value: 0x7F0601F1
-			public const int m3_sys_color_dynamic_on_primary_fixed_variant = 2131100145;
+			public const int m3_sys_color_dynamic_tertiary_fixed = 2131100145;
 			
 			// aapt resource value: 0x7F0601F2
-			public const int m3_sys_color_dynamic_on_secondary_fixed = 2131100146;
+			public const int m3_sys_color_dynamic_tertiary_fixed_dim = 2131100146;
 			
 			// aapt resource value: 0x7F0601F3
-			public const int m3_sys_color_dynamic_on_secondary_fixed_variant = 2131100147;
+			public const int m3_sys_color_light_background = 2131100147;
 			
 			// aapt resource value: 0x7F0601F4
-			public const int m3_sys_color_dynamic_on_tertiary_fixed = 2131100148;
+			public const int m3_sys_color_light_error = 2131100148;
 			
 			// aapt resource value: 0x7F0601F5
-			public const int m3_sys_color_dynamic_on_tertiary_fixed_variant = 2131100149;
+			public const int m3_sys_color_light_error_container = 2131100149;
 			
 			// aapt resource value: 0x7F0601F6
-			public const int m3_sys_color_dynamic_primary_fixed = 2131100150;
+			public const int m3_sys_color_light_inverse_on_surface = 2131100150;
 			
 			// aapt resource value: 0x7F0601F7
-			public const int m3_sys_color_dynamic_primary_fixed_dim = 2131100151;
+			public const int m3_sys_color_light_inverse_primary = 2131100151;
 			
 			// aapt resource value: 0x7F0601F8
-			public const int m3_sys_color_dynamic_secondary_fixed = 2131100152;
+			public const int m3_sys_color_light_inverse_surface = 2131100152;
 			
 			// aapt resource value: 0x7F0601F9
-			public const int m3_sys_color_dynamic_secondary_fixed_dim = 2131100153;
+			public const int m3_sys_color_light_on_background = 2131100153;
 			
 			// aapt resource value: 0x7F0601FA
-			public const int m3_sys_color_dynamic_tertiary_fixed = 2131100154;
+			public const int m3_sys_color_light_on_error = 2131100154;
 			
 			// aapt resource value: 0x7F0601FB
-			public const int m3_sys_color_dynamic_tertiary_fixed_dim = 2131100155;
+			public const int m3_sys_color_light_on_error_container = 2131100155;
 			
 			// aapt resource value: 0x7F0601FC
-			public const int m3_sys_color_light_background = 2131100156;
+			public const int m3_sys_color_light_on_primary = 2131100156;
 			
 			// aapt resource value: 0x7F0601FD
-			public const int m3_sys_color_light_error = 2131100157;
+			public const int m3_sys_color_light_on_primary_container = 2131100157;
 			
 			// aapt resource value: 0x7F0601FE
-			public const int m3_sys_color_light_error_container = 2131100158;
+			public const int m3_sys_color_light_on_secondary = 2131100158;
 			
 			// aapt resource value: 0x7F0601FF
-			public const int m3_sys_color_light_inverse_on_surface = 2131100159;
+			public const int m3_sys_color_light_on_secondary_container = 2131100159;
 			
 			// aapt resource value: 0x7F060200
-			public const int m3_sys_color_light_inverse_primary = 2131100160;
+			public const int m3_sys_color_light_on_surface = 2131100160;
 			
 			// aapt resource value: 0x7F060201
-			public const int m3_sys_color_light_inverse_surface = 2131100161;
+			public const int m3_sys_color_light_on_surface_variant = 2131100161;
 			
 			// aapt resource value: 0x7F060202
-			public const int m3_sys_color_light_on_background = 2131100162;
+			public const int m3_sys_color_light_on_tertiary = 2131100162;
 			
 			// aapt resource value: 0x7F060203
-			public const int m3_sys_color_light_on_error = 2131100163;
+			public const int m3_sys_color_light_on_tertiary_container = 2131100163;
 			
 			// aapt resource value: 0x7F060204
-			public const int m3_sys_color_light_on_error_container = 2131100164;
+			public const int m3_sys_color_light_outline = 2131100164;
 			
 			// aapt resource value: 0x7F060205
-			public const int m3_sys_color_light_on_primary = 2131100165;
+			public const int m3_sys_color_light_outline_variant = 2131100165;
 			
 			// aapt resource value: 0x7F060206
-			public const int m3_sys_color_light_on_primary_container = 2131100166;
+			public const int m3_sys_color_light_primary = 2131100166;
 			
 			// aapt resource value: 0x7F060207
-			public const int m3_sys_color_light_on_secondary = 2131100167;
+			public const int m3_sys_color_light_primary_container = 2131100167;
 			
 			// aapt resource value: 0x7F060208
-			public const int m3_sys_color_light_on_secondary_container = 2131100168;
+			public const int m3_sys_color_light_secondary = 2131100168;
 			
 			// aapt resource value: 0x7F060209
-			public const int m3_sys_color_light_on_surface = 2131100169;
+			public const int m3_sys_color_light_secondary_container = 2131100169;
 			
 			// aapt resource value: 0x7F06020A
-			public const int m3_sys_color_light_on_surface_variant = 2131100170;
+			public const int m3_sys_color_light_surface = 2131100170;
 			
 			// aapt resource value: 0x7F06020B
-			public const int m3_sys_color_light_on_tertiary = 2131100171;
+			public const int m3_sys_color_light_surface_bright = 2131100171;
 			
 			// aapt resource value: 0x7F06020C
-			public const int m3_sys_color_light_on_tertiary_container = 2131100172;
+			public const int m3_sys_color_light_surface_container = 2131100172;
 			
 			// aapt resource value: 0x7F06020D
-			public const int m3_sys_color_light_outline = 2131100173;
+			public const int m3_sys_color_light_surface_container_high = 2131100173;
 			
 			// aapt resource value: 0x7F06020E
-			public const int m3_sys_color_light_outline_variant = 2131100174;
+			public const int m3_sys_color_light_surface_container_highest = 2131100174;
 			
 			// aapt resource value: 0x7F06020F
-			public const int m3_sys_color_light_primary = 2131100175;
+			public const int m3_sys_color_light_surface_container_low = 2131100175;
 			
 			// aapt resource value: 0x7F060210
-			public const int m3_sys_color_light_primary_container = 2131100176;
+			public const int m3_sys_color_light_surface_container_lowest = 2131100176;
 			
 			// aapt resource value: 0x7F060211
-			public const int m3_sys_color_light_secondary = 2131100177;
+			public const int m3_sys_color_light_surface_dim = 2131100177;
 			
 			// aapt resource value: 0x7F060212
-			public const int m3_sys_color_light_secondary_container = 2131100178;
+			public const int m3_sys_color_light_surface_variant = 2131100178;
 			
 			// aapt resource value: 0x7F060213
-			public const int m3_sys_color_light_surface = 2131100179;
+			public const int m3_sys_color_light_tertiary = 2131100179;
 			
 			// aapt resource value: 0x7F060214
-			public const int m3_sys_color_light_surface_bright = 2131100180;
+			public const int m3_sys_color_light_tertiary_container = 2131100180;
 			
 			// aapt resource value: 0x7F060215
-			public const int m3_sys_color_light_surface_container = 2131100181;
+			public const int m3_sys_color_on_primary_fixed = 2131100181;
 			
 			// aapt resource value: 0x7F060216
-			public const int m3_sys_color_light_surface_container_high = 2131100182;
+			public const int m3_sys_color_on_primary_fixed_variant = 2131100182;
 			
 			// aapt resource value: 0x7F060217
-			public const int m3_sys_color_light_surface_container_highest = 2131100183;
+			public const int m3_sys_color_on_secondary_fixed = 2131100183;
 			
 			// aapt resource value: 0x7F060218
-			public const int m3_sys_color_light_surface_container_low = 2131100184;
+			public const int m3_sys_color_on_secondary_fixed_variant = 2131100184;
 			
 			// aapt resource value: 0x7F060219
-			public const int m3_sys_color_light_surface_container_lowest = 2131100185;
+			public const int m3_sys_color_on_tertiary_fixed = 2131100185;
 			
 			// aapt resource value: 0x7F06021A
-			public const int m3_sys_color_light_surface_dim = 2131100186;
+			public const int m3_sys_color_on_tertiary_fixed_variant = 2131100186;
 			
 			// aapt resource value: 0x7F06021B
-			public const int m3_sys_color_light_surface_variant = 2131100187;
+			public const int m3_sys_color_primary_fixed = 2131100187;
 			
 			// aapt resource value: 0x7F06021C
-			public const int m3_sys_color_light_tertiary = 2131100188;
+			public const int m3_sys_color_primary_fixed_dim = 2131100188;
 			
 			// aapt resource value: 0x7F06021D
-			public const int m3_sys_color_light_tertiary_container = 2131100189;
+			public const int m3_sys_color_secondary_fixed = 2131100189;
 			
 			// aapt resource value: 0x7F06021E
-			public const int m3_sys_color_on_primary_fixed = 2131100190;
+			public const int m3_sys_color_secondary_fixed_dim = 2131100190;
 			
 			// aapt resource value: 0x7F06021F
-			public const int m3_sys_color_on_primary_fixed_variant = 2131100191;
+			public const int m3_sys_color_tertiary_fixed = 2131100191;
 			
 			// aapt resource value: 0x7F060220
-			public const int m3_sys_color_on_secondary_fixed = 2131100192;
+			public const int m3_sys_color_tertiary_fixed_dim = 2131100192;
 			
 			// aapt resource value: 0x7F060221
-			public const int m3_sys_color_on_secondary_fixed_variant = 2131100193;
+			public const int m3_tabs_icon_color = 2131100193;
 			
 			// aapt resource value: 0x7F060222
-			public const int m3_sys_color_on_tertiary_fixed = 2131100194;
+			public const int m3_tabs_icon_color_secondary = 2131100194;
 			
 			// aapt resource value: 0x7F060223
-			public const int m3_sys_color_on_tertiary_fixed_variant = 2131100195;
+			public const int m3_tabs_ripple_color = 2131100195;
 			
 			// aapt resource value: 0x7F060224
-			public const int m3_sys_color_primary_fixed = 2131100196;
+			public const int m3_tabs_ripple_color_secondary = 2131100196;
 			
 			// aapt resource value: 0x7F060225
-			public const int m3_sys_color_primary_fixed_dim = 2131100197;
+			public const int m3_tabs_text_color = 2131100197;
 			
 			// aapt resource value: 0x7F060226
-			public const int m3_sys_color_secondary_fixed = 2131100198;
-			
-			// aapt resource value: 0x7F060227
-			public const int m3_sys_color_secondary_fixed_dim = 2131100199;
-			
-			// aapt resource value: 0x7F060228
-			public const int m3_sys_color_tertiary_fixed = 2131100200;
-			
-			// aapt resource value: 0x7F060229
-			public const int m3_sys_color_tertiary_fixed_dim = 2131100201;
+			public const int m3_tabs_text_color_secondary = 2131100198;
 			
 			// aapt resource value: 0x7F06022A
-			public const int m3_tabs_icon_color = 2131100202;
+			public const int m3_textfield_filled_background_color = 2131100202;
 			
 			// aapt resource value: 0x7F06022B
-			public const int m3_tabs_icon_color_secondary = 2131100203;
+			public const int m3_textfield_indicator_text_color = 2131100203;
 			
 			// aapt resource value: 0x7F06022C
-			public const int m3_tabs_ripple_color = 2131100204;
+			public const int m3_textfield_input_text_color = 2131100204;
 			
 			// aapt resource value: 0x7F06022D
-			public const int m3_tabs_ripple_color_secondary = 2131100205;
+			public const int m3_textfield_label_color = 2131100205;
 			
 			// aapt resource value: 0x7F06022E
-			public const int m3_tabs_text_color = 2131100206;
+			public const int m3_textfield_stroke_color = 2131100206;
+			
+			// aapt resource value: 0x7F060227
+			public const int m3_text_button_background_color_selector = 2131100199;
+			
+			// aapt resource value: 0x7F060228
+			public const int m3_text_button_foreground_color_selector = 2131100200;
+			
+			// aapt resource value: 0x7F060229
+			public const int m3_text_button_ripple_color_selector = 2131100201;
 			
 			// aapt resource value: 0x7F06022F
-			public const int m3_tabs_text_color_secondary = 2131100207;
-			
-			// aapt resource value: 0x7F060233
-			public const int m3_textfield_filled_background_color = 2131100211;
-			
-			// aapt resource value: 0x7F060234
-			public const int m3_textfield_indicator_text_color = 2131100212;
-			
-			// aapt resource value: 0x7F060235
-			public const int m3_textfield_input_text_color = 2131100213;
-			
-			// aapt resource value: 0x7F060236
-			public const int m3_textfield_label_color = 2131100214;
-			
-			// aapt resource value: 0x7F060237
-			public const int m3_textfield_stroke_color = 2131100215;
+			public const int m3_timepicker_button_background_color = 2131100207;
 			
 			// aapt resource value: 0x7F060230
-			public const int m3_text_button_background_color_selector = 2131100208;
+			public const int m3_timepicker_button_ripple_color = 2131100208;
 			
 			// aapt resource value: 0x7F060231
-			public const int m3_text_button_foreground_color_selector = 2131100209;
+			public const int m3_timepicker_button_text_color = 2131100209;
 			
 			// aapt resource value: 0x7F060232
-			public const int m3_text_button_ripple_color_selector = 2131100210;
+			public const int m3_timepicker_clock_text_color = 2131100210;
+			
+			// aapt resource value: 0x7F060233
+			public const int m3_timepicker_display_background_color = 2131100211;
+			
+			// aapt resource value: 0x7F060234
+			public const int m3_timepicker_display_ripple_color = 2131100212;
+			
+			// aapt resource value: 0x7F060235
+			public const int m3_timepicker_display_text_color = 2131100213;
+			
+			// aapt resource value: 0x7F060236
+			public const int m3_timepicker_secondary_text_button_ripple_color = 2131100214;
+			
+			// aapt resource value: 0x7F060237
+			public const int m3_timepicker_secondary_text_button_text_color = 2131100215;
 			
 			// aapt resource value: 0x7F060238
-			public const int m3_timepicker_button_background_color = 2131100216;
+			public const int m3_timepicker_time_input_stroke_color = 2131100216;
 			
 			// aapt resource value: 0x7F060239
-			public const int m3_timepicker_button_ripple_color = 2131100217;
+			public const int m3_tonal_button_ripple_color_selector = 2131100217;
 			
 			// aapt resource value: 0x7F06023A
-			public const int m3_timepicker_button_text_color = 2131100218;
+			public const int material_blue_grey_800 = 2131100218;
 			
 			// aapt resource value: 0x7F06023B
-			public const int m3_timepicker_clock_text_color = 2131100219;
+			public const int material_blue_grey_900 = 2131100219;
 			
 			// aapt resource value: 0x7F06023C
-			public const int m3_timepicker_display_background_color = 2131100220;
+			public const int material_blue_grey_950 = 2131100220;
 			
 			// aapt resource value: 0x7F06023D
-			public const int m3_timepicker_display_ripple_color = 2131100221;
+			public const int material_cursor_color = 2131100221;
 			
 			// aapt resource value: 0x7F06023E
-			public const int m3_timepicker_display_text_color = 2131100222;
+			public const int material_deep_teal_200 = 2131100222;
 			
 			// aapt resource value: 0x7F06023F
-			public const int m3_timepicker_secondary_text_button_ripple_color = 2131100223;
+			public const int material_deep_teal_500 = 2131100223;
 			
 			// aapt resource value: 0x7F060240
-			public const int m3_timepicker_secondary_text_button_text_color = 2131100224;
+			public const int material_divider_color = 2131100224;
 			
 			// aapt resource value: 0x7F060241
-			public const int m3_timepicker_time_input_stroke_color = 2131100225;
+			public const int material_dynamic_neutral0 = 2131100225;
 			
 			// aapt resource value: 0x7F060242
-			public const int m3_tonal_button_ripple_color_selector = 2131100226;
+			public const int material_dynamic_neutral10 = 2131100226;
 			
 			// aapt resource value: 0x7F060243
-			public const int material_blue_grey_800 = 2131100227;
+			public const int material_dynamic_neutral100 = 2131100227;
 			
 			// aapt resource value: 0x7F060244
-			public const int material_blue_grey_900 = 2131100228;
+			public const int material_dynamic_neutral20 = 2131100228;
 			
 			// aapt resource value: 0x7F060245
-			public const int material_blue_grey_950 = 2131100229;
+			public const int material_dynamic_neutral30 = 2131100229;
 			
 			// aapt resource value: 0x7F060246
-			public const int material_cursor_color = 2131100230;
+			public const int material_dynamic_neutral40 = 2131100230;
 			
 			// aapt resource value: 0x7F060247
-			public const int material_deep_teal_200 = 2131100231;
+			public const int material_dynamic_neutral50 = 2131100231;
 			
 			// aapt resource value: 0x7F060248
-			public const int material_deep_teal_500 = 2131100232;
+			public const int material_dynamic_neutral60 = 2131100232;
 			
 			// aapt resource value: 0x7F060249
-			public const int material_divider_color = 2131100233;
+			public const int material_dynamic_neutral70 = 2131100233;
 			
 			// aapt resource value: 0x7F06024A
-			public const int material_dynamic_neutral0 = 2131100234;
+			public const int material_dynamic_neutral80 = 2131100234;
 			
 			// aapt resource value: 0x7F06024B
-			public const int material_dynamic_neutral10 = 2131100235;
+			public const int material_dynamic_neutral90 = 2131100235;
 			
 			// aapt resource value: 0x7F06024C
-			public const int material_dynamic_neutral100 = 2131100236;
+			public const int material_dynamic_neutral95 = 2131100236;
 			
 			// aapt resource value: 0x7F06024D
-			public const int material_dynamic_neutral20 = 2131100237;
+			public const int material_dynamic_neutral99 = 2131100237;
 			
 			// aapt resource value: 0x7F06024E
-			public const int material_dynamic_neutral30 = 2131100238;
+			public const int material_dynamic_neutral_variant0 = 2131100238;
 			
 			// aapt resource value: 0x7F06024F
-			public const int material_dynamic_neutral40 = 2131100239;
+			public const int material_dynamic_neutral_variant10 = 2131100239;
 			
 			// aapt resource value: 0x7F060250
-			public const int material_dynamic_neutral50 = 2131100240;
+			public const int material_dynamic_neutral_variant100 = 2131100240;
 			
 			// aapt resource value: 0x7F060251
-			public const int material_dynamic_neutral60 = 2131100241;
+			public const int material_dynamic_neutral_variant20 = 2131100241;
 			
 			// aapt resource value: 0x7F060252
-			public const int material_dynamic_neutral70 = 2131100242;
+			public const int material_dynamic_neutral_variant30 = 2131100242;
 			
 			// aapt resource value: 0x7F060253
-			public const int material_dynamic_neutral80 = 2131100243;
+			public const int material_dynamic_neutral_variant40 = 2131100243;
 			
 			// aapt resource value: 0x7F060254
-			public const int material_dynamic_neutral90 = 2131100244;
+			public const int material_dynamic_neutral_variant50 = 2131100244;
 			
 			// aapt resource value: 0x7F060255
-			public const int material_dynamic_neutral95 = 2131100245;
+			public const int material_dynamic_neutral_variant60 = 2131100245;
 			
 			// aapt resource value: 0x7F060256
-			public const int material_dynamic_neutral99 = 2131100246;
+			public const int material_dynamic_neutral_variant70 = 2131100246;
 			
 			// aapt resource value: 0x7F060257
-			public const int material_dynamic_neutral_variant0 = 2131100247;
+			public const int material_dynamic_neutral_variant80 = 2131100247;
 			
 			// aapt resource value: 0x7F060258
-			public const int material_dynamic_neutral_variant10 = 2131100248;
+			public const int material_dynamic_neutral_variant90 = 2131100248;
 			
 			// aapt resource value: 0x7F060259
-			public const int material_dynamic_neutral_variant100 = 2131100249;
+			public const int material_dynamic_neutral_variant95 = 2131100249;
 			
 			// aapt resource value: 0x7F06025A
-			public const int material_dynamic_neutral_variant20 = 2131100250;
+			public const int material_dynamic_neutral_variant99 = 2131100250;
 			
 			// aapt resource value: 0x7F06025B
-			public const int material_dynamic_neutral_variant30 = 2131100251;
+			public const int material_dynamic_primary0 = 2131100251;
 			
 			// aapt resource value: 0x7F06025C
-			public const int material_dynamic_neutral_variant40 = 2131100252;
+			public const int material_dynamic_primary10 = 2131100252;
 			
 			// aapt resource value: 0x7F06025D
-			public const int material_dynamic_neutral_variant50 = 2131100253;
+			public const int material_dynamic_primary100 = 2131100253;
 			
 			// aapt resource value: 0x7F06025E
-			public const int material_dynamic_neutral_variant60 = 2131100254;
+			public const int material_dynamic_primary20 = 2131100254;
 			
 			// aapt resource value: 0x7F06025F
-			public const int material_dynamic_neutral_variant70 = 2131100255;
+			public const int material_dynamic_primary30 = 2131100255;
 			
 			// aapt resource value: 0x7F060260
-			public const int material_dynamic_neutral_variant80 = 2131100256;
+			public const int material_dynamic_primary40 = 2131100256;
 			
 			// aapt resource value: 0x7F060261
-			public const int material_dynamic_neutral_variant90 = 2131100257;
+			public const int material_dynamic_primary50 = 2131100257;
 			
 			// aapt resource value: 0x7F060262
-			public const int material_dynamic_neutral_variant95 = 2131100258;
+			public const int material_dynamic_primary60 = 2131100258;
 			
 			// aapt resource value: 0x7F060263
-			public const int material_dynamic_neutral_variant99 = 2131100259;
+			public const int material_dynamic_primary70 = 2131100259;
 			
 			// aapt resource value: 0x7F060264
-			public const int material_dynamic_primary0 = 2131100260;
+			public const int material_dynamic_primary80 = 2131100260;
 			
 			// aapt resource value: 0x7F060265
-			public const int material_dynamic_primary10 = 2131100261;
+			public const int material_dynamic_primary90 = 2131100261;
 			
 			// aapt resource value: 0x7F060266
-			public const int material_dynamic_primary100 = 2131100262;
+			public const int material_dynamic_primary95 = 2131100262;
 			
 			// aapt resource value: 0x7F060267
-			public const int material_dynamic_primary20 = 2131100263;
+			public const int material_dynamic_primary99 = 2131100263;
 			
 			// aapt resource value: 0x7F060268
-			public const int material_dynamic_primary30 = 2131100264;
+			public const int material_dynamic_secondary0 = 2131100264;
 			
 			// aapt resource value: 0x7F060269
-			public const int material_dynamic_primary40 = 2131100265;
+			public const int material_dynamic_secondary10 = 2131100265;
 			
 			// aapt resource value: 0x7F06026A
-			public const int material_dynamic_primary50 = 2131100266;
+			public const int material_dynamic_secondary100 = 2131100266;
 			
 			// aapt resource value: 0x7F06026B
-			public const int material_dynamic_primary60 = 2131100267;
+			public const int material_dynamic_secondary20 = 2131100267;
 			
 			// aapt resource value: 0x7F06026C
-			public const int material_dynamic_primary70 = 2131100268;
+			public const int material_dynamic_secondary30 = 2131100268;
 			
 			// aapt resource value: 0x7F06026D
-			public const int material_dynamic_primary80 = 2131100269;
+			public const int material_dynamic_secondary40 = 2131100269;
 			
 			// aapt resource value: 0x7F06026E
-			public const int material_dynamic_primary90 = 2131100270;
+			public const int material_dynamic_secondary50 = 2131100270;
 			
 			// aapt resource value: 0x7F06026F
-			public const int material_dynamic_primary95 = 2131100271;
+			public const int material_dynamic_secondary60 = 2131100271;
 			
 			// aapt resource value: 0x7F060270
-			public const int material_dynamic_primary99 = 2131100272;
+			public const int material_dynamic_secondary70 = 2131100272;
 			
 			// aapt resource value: 0x7F060271
-			public const int material_dynamic_secondary0 = 2131100273;
+			public const int material_dynamic_secondary80 = 2131100273;
 			
 			// aapt resource value: 0x7F060272
-			public const int material_dynamic_secondary10 = 2131100274;
+			public const int material_dynamic_secondary90 = 2131100274;
 			
 			// aapt resource value: 0x7F060273
-			public const int material_dynamic_secondary100 = 2131100275;
+			public const int material_dynamic_secondary95 = 2131100275;
 			
 			// aapt resource value: 0x7F060274
-			public const int material_dynamic_secondary20 = 2131100276;
+			public const int material_dynamic_secondary99 = 2131100276;
 			
 			// aapt resource value: 0x7F060275
-			public const int material_dynamic_secondary30 = 2131100277;
+			public const int material_dynamic_tertiary0 = 2131100277;
 			
 			// aapt resource value: 0x7F060276
-			public const int material_dynamic_secondary40 = 2131100278;
+			public const int material_dynamic_tertiary10 = 2131100278;
 			
 			// aapt resource value: 0x7F060277
-			public const int material_dynamic_secondary50 = 2131100279;
+			public const int material_dynamic_tertiary100 = 2131100279;
 			
 			// aapt resource value: 0x7F060278
-			public const int material_dynamic_secondary60 = 2131100280;
+			public const int material_dynamic_tertiary20 = 2131100280;
 			
 			// aapt resource value: 0x7F060279
-			public const int material_dynamic_secondary70 = 2131100281;
+			public const int material_dynamic_tertiary30 = 2131100281;
 			
 			// aapt resource value: 0x7F06027A
-			public const int material_dynamic_secondary80 = 2131100282;
+			public const int material_dynamic_tertiary40 = 2131100282;
 			
 			// aapt resource value: 0x7F06027B
-			public const int material_dynamic_secondary90 = 2131100283;
+			public const int material_dynamic_tertiary50 = 2131100283;
 			
 			// aapt resource value: 0x7F06027C
-			public const int material_dynamic_secondary95 = 2131100284;
+			public const int material_dynamic_tertiary60 = 2131100284;
 			
 			// aapt resource value: 0x7F06027D
-			public const int material_dynamic_secondary99 = 2131100285;
+			public const int material_dynamic_tertiary70 = 2131100285;
 			
 			// aapt resource value: 0x7F06027E
-			public const int material_dynamic_tertiary0 = 2131100286;
+			public const int material_dynamic_tertiary80 = 2131100286;
 			
 			// aapt resource value: 0x7F06027F
-			public const int material_dynamic_tertiary10 = 2131100287;
+			public const int material_dynamic_tertiary90 = 2131100287;
 			
 			// aapt resource value: 0x7F060280
-			public const int material_dynamic_tertiary100 = 2131100288;
+			public const int material_dynamic_tertiary95 = 2131100288;
 			
 			// aapt resource value: 0x7F060281
-			public const int material_dynamic_tertiary20 = 2131100289;
+			public const int material_dynamic_tertiary99 = 2131100289;
 			
 			// aapt resource value: 0x7F060282
-			public const int material_dynamic_tertiary30 = 2131100290;
+			public const int material_grey_100 = 2131100290;
 			
 			// aapt resource value: 0x7F060283
-			public const int material_dynamic_tertiary40 = 2131100291;
+			public const int material_grey_300 = 2131100291;
 			
 			// aapt resource value: 0x7F060284
-			public const int material_dynamic_tertiary50 = 2131100292;
+			public const int material_grey_50 = 2131100292;
 			
 			// aapt resource value: 0x7F060285
-			public const int material_dynamic_tertiary60 = 2131100293;
+			public const int material_grey_600 = 2131100293;
 			
 			// aapt resource value: 0x7F060286
-			public const int material_dynamic_tertiary70 = 2131100294;
+			public const int material_grey_800 = 2131100294;
 			
 			// aapt resource value: 0x7F060287
-			public const int material_dynamic_tertiary80 = 2131100295;
+			public const int material_grey_850 = 2131100295;
 			
 			// aapt resource value: 0x7F060288
-			public const int material_dynamic_tertiary90 = 2131100296;
+			public const int material_grey_900 = 2131100296;
 			
 			// aapt resource value: 0x7F060289
-			public const int material_dynamic_tertiary95 = 2131100297;
+			public const int material_harmonized_color_error = 2131100297;
 			
 			// aapt resource value: 0x7F06028A
-			public const int material_dynamic_tertiary99 = 2131100298;
+			public const int material_harmonized_color_error_container = 2131100298;
 			
 			// aapt resource value: 0x7F06028B
-			public const int material_grey_100 = 2131100299;
+			public const int material_harmonized_color_on_error = 2131100299;
 			
 			// aapt resource value: 0x7F06028C
-			public const int material_grey_300 = 2131100300;
+			public const int material_harmonized_color_on_error_container = 2131100300;
 			
 			// aapt resource value: 0x7F06028D
-			public const int material_grey_50 = 2131100301;
+			public const int material_on_background_disabled = 2131100301;
 			
 			// aapt resource value: 0x7F06028E
-			public const int material_grey_600 = 2131100302;
+			public const int material_on_background_emphasis_high_type = 2131100302;
 			
 			// aapt resource value: 0x7F06028F
-			public const int material_grey_800 = 2131100303;
+			public const int material_on_background_emphasis_medium = 2131100303;
 			
 			// aapt resource value: 0x7F060290
-			public const int material_grey_850 = 2131100304;
+			public const int material_on_primary_disabled = 2131100304;
 			
 			// aapt resource value: 0x7F060291
-			public const int material_grey_900 = 2131100305;
+			public const int material_on_primary_emphasis_high_type = 2131100305;
 			
 			// aapt resource value: 0x7F060292
-			public const int material_harmonized_color_error = 2131100306;
+			public const int material_on_primary_emphasis_medium = 2131100306;
 			
 			// aapt resource value: 0x7F060293
-			public const int material_harmonized_color_error_container = 2131100307;
+			public const int material_on_surface_disabled = 2131100307;
 			
 			// aapt resource value: 0x7F060294
-			public const int material_harmonized_color_on_error = 2131100308;
+			public const int material_on_surface_emphasis_high_type = 2131100308;
 			
 			// aapt resource value: 0x7F060295
-			public const int material_harmonized_color_on_error_container = 2131100309;
+			public const int material_on_surface_emphasis_medium = 2131100309;
 			
 			// aapt resource value: 0x7F060296
-			public const int material_on_background_disabled = 2131100310;
-			
-			// aapt resource value: 0x7F060297
-			public const int material_on_background_emphasis_high_type = 2131100311;
-			
-			// aapt resource value: 0x7F060298
-			public const int material_on_background_emphasis_medium = 2131100312;
+			public const int material_on_surface_stroke = 2131100310;
 			
 			// aapt resource value: 0x7F060299
-			public const int material_on_primary_disabled = 2131100313;
+			public const int material_personalized_color_background = 2131100313;
 			
 			// aapt resource value: 0x7F06029A
-			public const int material_on_primary_emphasis_high_type = 2131100314;
+			public const int material_personalized_color_control_activated = 2131100314;
 			
 			// aapt resource value: 0x7F06029B
-			public const int material_on_primary_emphasis_medium = 2131100315;
+			public const int material_personalized_color_control_highlight = 2131100315;
 			
 			// aapt resource value: 0x7F06029C
-			public const int material_on_surface_disabled = 2131100316;
+			public const int material_personalized_color_control_normal = 2131100316;
 			
 			// aapt resource value: 0x7F06029D
-			public const int material_on_surface_emphasis_high_type = 2131100317;
+			public const int material_personalized_color_error = 2131100317;
 			
 			// aapt resource value: 0x7F06029E
-			public const int material_on_surface_emphasis_medium = 2131100318;
+			public const int material_personalized_color_error_container = 2131100318;
 			
 			// aapt resource value: 0x7F06029F
-			public const int material_on_surface_stroke = 2131100319;
-			
-			// aapt resource value: 0x7F0602A2
-			public const int material_personalized_color_background = 2131100322;
-			
-			// aapt resource value: 0x7F0602A3
-			public const int material_personalized_color_control_activated = 2131100323;
-			
-			// aapt resource value: 0x7F0602A4
-			public const int material_personalized_color_control_highlight = 2131100324;
-			
-			// aapt resource value: 0x7F0602A5
-			public const int material_personalized_color_control_normal = 2131100325;
-			
-			// aapt resource value: 0x7F0602A6
-			public const int material_personalized_color_error = 2131100326;
-			
-			// aapt resource value: 0x7F0602A7
-			public const int material_personalized_color_error_container = 2131100327;
-			
-			// aapt resource value: 0x7F0602A8
-			public const int material_personalized_color_on_background = 2131100328;
-			
-			// aapt resource value: 0x7F0602A9
-			public const int material_personalized_color_on_error = 2131100329;
-			
-			// aapt resource value: 0x7F0602AA
-			public const int material_personalized_color_on_error_container = 2131100330;
-			
-			// aapt resource value: 0x7F0602AB
-			public const int material_personalized_color_on_primary = 2131100331;
-			
-			// aapt resource value: 0x7F0602AC
-			public const int material_personalized_color_on_primary_container = 2131100332;
-			
-			// aapt resource value: 0x7F0602AD
-			public const int material_personalized_color_on_secondary = 2131100333;
-			
-			// aapt resource value: 0x7F0602AE
-			public const int material_personalized_color_on_secondary_container = 2131100334;
-			
-			// aapt resource value: 0x7F0602AF
-			public const int material_personalized_color_on_surface = 2131100335;
-			
-			// aapt resource value: 0x7F0602B0
-			public const int material_personalized_color_on_surface_inverse = 2131100336;
-			
-			// aapt resource value: 0x7F0602B1
-			public const int material_personalized_color_on_surface_variant = 2131100337;
-			
-			// aapt resource value: 0x7F0602B2
-			public const int material_personalized_color_on_tertiary = 2131100338;
-			
-			// aapt resource value: 0x7F0602B3
-			public const int material_personalized_color_on_tertiary_container = 2131100339;
-			
-			// aapt resource value: 0x7F0602B4
-			public const int material_personalized_color_outline = 2131100340;
-			
-			// aapt resource value: 0x7F0602B5
-			public const int material_personalized_color_outline_variant = 2131100341;
-			
-			// aapt resource value: 0x7F0602B6
-			public const int material_personalized_color_primary = 2131100342;
-			
-			// aapt resource value: 0x7F0602B7
-			public const int material_personalized_color_primary_container = 2131100343;
-			
-			// aapt resource value: 0x7F0602B8
-			public const int material_personalized_color_primary_inverse = 2131100344;
-			
-			// aapt resource value: 0x7F0602B9
-			public const int material_personalized_color_primary_text = 2131100345;
-			
-			// aapt resource value: 0x7F0602BA
-			public const int material_personalized_color_primary_text_inverse = 2131100346;
-			
-			// aapt resource value: 0x7F0602BB
-			public const int material_personalized_color_secondary = 2131100347;
-			
-			// aapt resource value: 0x7F0602BC
-			public const int material_personalized_color_secondary_container = 2131100348;
-			
-			// aapt resource value: 0x7F0602BD
-			public const int material_personalized_color_secondary_text = 2131100349;
-			
-			// aapt resource value: 0x7F0602BE
-			public const int material_personalized_color_secondary_text_inverse = 2131100350;
-			
-			// aapt resource value: 0x7F0602BF
-			public const int material_personalized_color_surface = 2131100351;
-			
-			// aapt resource value: 0x7F0602C0
-			public const int material_personalized_color_surface_bright = 2131100352;
-			
-			// aapt resource value: 0x7F0602C1
-			public const int material_personalized_color_surface_container = 2131100353;
-			
-			// aapt resource value: 0x7F0602C2
-			public const int material_personalized_color_surface_container_high = 2131100354;
-			
-			// aapt resource value: 0x7F0602C3
-			public const int material_personalized_color_surface_container_highest = 2131100355;
-			
-			// aapt resource value: 0x7F0602C4
-			public const int material_personalized_color_surface_container_low = 2131100356;
-			
-			// aapt resource value: 0x7F0602C5
-			public const int material_personalized_color_surface_container_lowest = 2131100357;
-			
-			// aapt resource value: 0x7F0602C6
-			public const int material_personalized_color_surface_dim = 2131100358;
-			
-			// aapt resource value: 0x7F0602C7
-			public const int material_personalized_color_surface_inverse = 2131100359;
-			
-			// aapt resource value: 0x7F0602C8
-			public const int material_personalized_color_surface_variant = 2131100360;
-			
-			// aapt resource value: 0x7F0602C9
-			public const int material_personalized_color_tertiary = 2131100361;
-			
-			// aapt resource value: 0x7F0602CA
-			public const int material_personalized_color_tertiary_container = 2131100362;
-			
-			// aapt resource value: 0x7F0602CB
-			public const int material_personalized_color_text_hint_foreground_inverse = 2131100363;
-			
-			// aapt resource value: 0x7F0602CC
-			public const int material_personalized_color_text_primary_inverse = 2131100364;
-			
-			// aapt resource value: 0x7F0602CD
-			public const int material_personalized_color_text_primary_inverse_disable_only = 2131100365;
-			
-			// aapt resource value: 0x7F0602CE
-			public const int material_personalized_color_text_secondary_and_tertiary_inverse = 2131100366;
-			
-			// aapt resource value: 0x7F0602CF
-			public const int material_personalized_color_text_secondary_and_tertiary_inverse_disabled = 2131100367;
-			
-			// aapt resource value: 0x7F0602D0
-			public const int material_personalized_hint_foreground = 2131100368;
-			
-			// aapt resource value: 0x7F0602D1
-			public const int material_personalized_hint_foreground_inverse = 2131100369;
-			
-			// aapt resource value: 0x7F0602D2
-			public const int material_personalized_primary_inverse_text_disable_only = 2131100370;
-			
-			// aapt resource value: 0x7F0602D3
-			public const int material_personalized_primary_text_disable_only = 2131100371;
+			public const int material_personalized_color_on_background = 2131100319;
 			
 			// aapt resource value: 0x7F0602A0
-			public const int material_personalized__highlighted_text = 2131100320;
+			public const int material_personalized_color_on_error = 2131100320;
 			
 			// aapt resource value: 0x7F0602A1
-			public const int material_personalized__highlighted_text_inverse = 2131100321;
+			public const int material_personalized_color_on_error_container = 2131100321;
 			
-			// aapt resource value: 0x7F0602D4
-			public const int material_red_500 = 2131100372;
+			// aapt resource value: 0x7F0602A2
+			public const int material_personalized_color_on_primary = 2131100322;
+			
+			// aapt resource value: 0x7F0602A3
+			public const int material_personalized_color_on_primary_container = 2131100323;
+			
+			// aapt resource value: 0x7F0602A4
+			public const int material_personalized_color_on_secondary = 2131100324;
+			
+			// aapt resource value: 0x7F0602A5
+			public const int material_personalized_color_on_secondary_container = 2131100325;
+			
+			// aapt resource value: 0x7F0602A6
+			public const int material_personalized_color_on_surface = 2131100326;
+			
+			// aapt resource value: 0x7F0602A7
+			public const int material_personalized_color_on_surface_inverse = 2131100327;
+			
+			// aapt resource value: 0x7F0602A8
+			public const int material_personalized_color_on_surface_variant = 2131100328;
+			
+			// aapt resource value: 0x7F0602A9
+			public const int material_personalized_color_on_tertiary = 2131100329;
+			
+			// aapt resource value: 0x7F0602AA
+			public const int material_personalized_color_on_tertiary_container = 2131100330;
+			
+			// aapt resource value: 0x7F0602AB
+			public const int material_personalized_color_outline = 2131100331;
+			
+			// aapt resource value: 0x7F0602AC
+			public const int material_personalized_color_outline_variant = 2131100332;
+			
+			// aapt resource value: 0x7F0602AD
+			public const int material_personalized_color_primary = 2131100333;
+			
+			// aapt resource value: 0x7F0602AE
+			public const int material_personalized_color_primary_container = 2131100334;
+			
+			// aapt resource value: 0x7F0602AF
+			public const int material_personalized_color_primary_inverse = 2131100335;
+			
+			// aapt resource value: 0x7F0602B0
+			public const int material_personalized_color_primary_text = 2131100336;
+			
+			// aapt resource value: 0x7F0602B1
+			public const int material_personalized_color_primary_text_inverse = 2131100337;
+			
+			// aapt resource value: 0x7F0602B2
+			public const int material_personalized_color_secondary = 2131100338;
+			
+			// aapt resource value: 0x7F0602B3
+			public const int material_personalized_color_secondary_container = 2131100339;
+			
+			// aapt resource value: 0x7F0602B4
+			public const int material_personalized_color_secondary_text = 2131100340;
+			
+			// aapt resource value: 0x7F0602B5
+			public const int material_personalized_color_secondary_text_inverse = 2131100341;
+			
+			// aapt resource value: 0x7F0602B6
+			public const int material_personalized_color_surface = 2131100342;
+			
+			// aapt resource value: 0x7F0602B7
+			public const int material_personalized_color_surface_bright = 2131100343;
+			
+			// aapt resource value: 0x7F0602B8
+			public const int material_personalized_color_surface_container = 2131100344;
+			
+			// aapt resource value: 0x7F0602B9
+			public const int material_personalized_color_surface_container_high = 2131100345;
+			
+			// aapt resource value: 0x7F0602BA
+			public const int material_personalized_color_surface_container_highest = 2131100346;
+			
+			// aapt resource value: 0x7F0602BB
+			public const int material_personalized_color_surface_container_low = 2131100347;
+			
+			// aapt resource value: 0x7F0602BC
+			public const int material_personalized_color_surface_container_lowest = 2131100348;
+			
+			// aapt resource value: 0x7F0602BD
+			public const int material_personalized_color_surface_dim = 2131100349;
+			
+			// aapt resource value: 0x7F0602BE
+			public const int material_personalized_color_surface_inverse = 2131100350;
+			
+			// aapt resource value: 0x7F0602BF
+			public const int material_personalized_color_surface_variant = 2131100351;
+			
+			// aapt resource value: 0x7F0602C0
+			public const int material_personalized_color_tertiary = 2131100352;
+			
+			// aapt resource value: 0x7F0602C1
+			public const int material_personalized_color_tertiary_container = 2131100353;
+			
+			// aapt resource value: 0x7F0602C2
+			public const int material_personalized_color_text_hint_foreground_inverse = 2131100354;
+			
+			// aapt resource value: 0x7F0602C3
+			public const int material_personalized_color_text_primary_inverse = 2131100355;
+			
+			// aapt resource value: 0x7F0602C4
+			public const int material_personalized_color_text_primary_inverse_disable_only = 2131100356;
+			
+			// aapt resource value: 0x7F0602C5
+			public const int material_personalized_color_text_secondary_and_tertiary_inverse = 2131100357;
+			
+			// aapt resource value: 0x7F0602C6
+			public const int material_personalized_color_text_secondary_and_tertiary_inverse_disabled = 2131100358;
+			
+			// aapt resource value: 0x7F0602C7
+			public const int material_personalized_hint_foreground = 2131100359;
+			
+			// aapt resource value: 0x7F0602C8
+			public const int material_personalized_hint_foreground_inverse = 2131100360;
+			
+			// aapt resource value: 0x7F0602C9
+			public const int material_personalized_primary_inverse_text_disable_only = 2131100361;
+			
+			// aapt resource value: 0x7F0602CA
+			public const int material_personalized_primary_text_disable_only = 2131100362;
+			
+			// aapt resource value: 0x7F060297
+			public const int material_personalized__highlighted_text = 2131100311;
+			
+			// aapt resource value: 0x7F060298
+			public const int material_personalized__highlighted_text_inverse = 2131100312;
+			
+			// aapt resource value: 0x7F0602CB
+			public const int material_red_500 = 2131100363;
+			
+			// aapt resource value: 0x7F0602CC
+			public const int material_slider_active_tick_marks_color = 2131100364;
+			
+			// aapt resource value: 0x7F0602CD
+			public const int material_slider_active_track_color = 2131100365;
+			
+			// aapt resource value: 0x7F0602CE
+			public const int material_slider_halo_color = 2131100366;
+			
+			// aapt resource value: 0x7F0602CF
+			public const int material_slider_inactive_tick_marks_color = 2131100367;
+			
+			// aapt resource value: 0x7F0602D0
+			public const int material_slider_inactive_track_color = 2131100368;
+			
+			// aapt resource value: 0x7F0602D1
+			public const int material_slider_thumb_color = 2131100369;
+			
+			// aapt resource value: 0x7F0602D2
+			public const int material_timepicker_button_background = 2131100370;
+			
+			// aapt resource value: 0x7F0602D3
+			public const int material_timepicker_button_stroke = 2131100371;
 			
 			// aapt resource value: 0x7F0602D5
-			public const int material_slider_active_tick_marks_color = 2131100373;
+			public const int material_timepicker_clockface = 2131100373;
+			
+			// aapt resource value: 0x7F0602D4
+			public const int material_timepicker_clock_text_color = 2131100372;
 			
 			// aapt resource value: 0x7F0602D6
-			public const int material_slider_active_track_color = 2131100374;
+			public const int material_timepicker_modebutton_tint = 2131100374;
 			
 			// aapt resource value: 0x7F0602D7
-			public const int material_slider_halo_color = 2131100375;
+			public const int mobile_common_text_edit_enable_selector = 2131100375;
 			
 			// aapt resource value: 0x7F0602D8
-			public const int material_slider_inactive_tick_marks_color = 2131100376;
+			public const int mobile_common_text_name_enable_selector = 2131100376;
 			
 			// aapt resource value: 0x7F0602D9
-			public const int material_slider_inactive_track_color = 2131100377;
+			public const int mobile_common_title_text_color_selector = 2131100377;
 			
 			// aapt resource value: 0x7F0602DA
-			public const int material_slider_thumb_color = 2131100378;
+			public const int mobile_common_transparent = 2131100378;
 			
 			// aapt resource value: 0x7F0602DB
-			public const int material_timepicker_button_background = 2131100379;
+			public const int mtrl_btn_bg_color_selector = 2131100379;
 			
 			// aapt resource value: 0x7F0602DC
-			public const int material_timepicker_button_stroke = 2131100380;
-			
-			// aapt resource value: 0x7F0602DE
-			public const int material_timepicker_clockface = 2131100382;
+			public const int mtrl_btn_ripple_color = 2131100380;
 			
 			// aapt resource value: 0x7F0602DD
-			public const int material_timepicker_clock_text_color = 2131100381;
+			public const int mtrl_btn_stroke_color_selector = 2131100381;
+			
+			// aapt resource value: 0x7F0602DE
+			public const int mtrl_btn_text_btn_bg_color_selector = 2131100382;
 			
 			// aapt resource value: 0x7F0602DF
-			public const int material_timepicker_modebutton_tint = 2131100383;
+			public const int mtrl_btn_text_btn_ripple_color = 2131100383;
 			
 			// aapt resource value: 0x7F0602E0
-			public const int mobile_common_text_edit_enable_selector = 2131100384;
+			public const int mtrl_btn_text_color_disabled = 2131100384;
 			
 			// aapt resource value: 0x7F0602E1
-			public const int mobile_common_text_name_enable_selector = 2131100385;
+			public const int mtrl_btn_text_color_selector = 2131100385;
 			
 			// aapt resource value: 0x7F0602E2
-			public const int mobile_common_title_text_color_selector = 2131100386;
+			public const int mtrl_btn_transparent_bg_color = 2131100386;
 			
 			// aapt resource value: 0x7F0602E3
-			public const int mobile_common_transparent = 2131100387;
+			public const int mtrl_calendar_item_stroke_color = 2131100387;
 			
 			// aapt resource value: 0x7F0602E4
-			public const int mtrl_btn_bg_color_selector = 2131100388;
+			public const int mtrl_calendar_selected_range = 2131100388;
 			
 			// aapt resource value: 0x7F0602E5
-			public const int mtrl_btn_ripple_color = 2131100389;
+			public const int mtrl_card_view_foreground = 2131100389;
 			
 			// aapt resource value: 0x7F0602E6
-			public const int mtrl_btn_stroke_color_selector = 2131100390;
+			public const int mtrl_card_view_ripple = 2131100390;
 			
 			// aapt resource value: 0x7F0602E7
-			public const int mtrl_btn_text_btn_bg_color_selector = 2131100391;
+			public const int mtrl_chip_background_color = 2131100391;
 			
 			// aapt resource value: 0x7F0602E8
-			public const int mtrl_btn_text_btn_ripple_color = 2131100392;
+			public const int mtrl_chip_close_icon_tint = 2131100392;
 			
 			// aapt resource value: 0x7F0602E9
-			public const int mtrl_btn_text_color_disabled = 2131100393;
+			public const int mtrl_chip_surface_color = 2131100393;
 			
 			// aapt resource value: 0x7F0602EA
-			public const int mtrl_btn_text_color_selector = 2131100394;
+			public const int mtrl_chip_text_color = 2131100394;
 			
 			// aapt resource value: 0x7F0602EB
-			public const int mtrl_btn_transparent_bg_color = 2131100395;
+			public const int mtrl_choice_chip_background_color = 2131100395;
 			
 			// aapt resource value: 0x7F0602EC
-			public const int mtrl_calendar_item_stroke_color = 2131100396;
+			public const int mtrl_choice_chip_ripple_color = 2131100396;
 			
 			// aapt resource value: 0x7F0602ED
-			public const int mtrl_calendar_selected_range = 2131100397;
+			public const int mtrl_choice_chip_text_color = 2131100397;
 			
 			// aapt resource value: 0x7F0602EE
-			public const int mtrl_card_view_foreground = 2131100398;
+			public const int mtrl_error = 2131100398;
 			
 			// aapt resource value: 0x7F0602EF
-			public const int mtrl_card_view_ripple = 2131100399;
+			public const int mtrl_fab_bg_color_selector = 2131100399;
 			
 			// aapt resource value: 0x7F0602F0
-			public const int mtrl_chip_background_color = 2131100400;
+			public const int mtrl_fab_icon_text_color_selector = 2131100400;
 			
 			// aapt resource value: 0x7F0602F1
-			public const int mtrl_chip_close_icon_tint = 2131100401;
+			public const int mtrl_fab_ripple_color = 2131100401;
 			
 			// aapt resource value: 0x7F0602F2
-			public const int mtrl_chip_surface_color = 2131100402;
+			public const int mtrl_filled_background_color = 2131100402;
 			
 			// aapt resource value: 0x7F0602F3
-			public const int mtrl_chip_text_color = 2131100403;
+			public const int mtrl_filled_icon_tint = 2131100403;
 			
 			// aapt resource value: 0x7F0602F4
-			public const int mtrl_choice_chip_background_color = 2131100404;
+			public const int mtrl_filled_stroke_color = 2131100404;
 			
 			// aapt resource value: 0x7F0602F5
-			public const int mtrl_choice_chip_ripple_color = 2131100405;
+			public const int mtrl_indicator_text_color = 2131100405;
 			
 			// aapt resource value: 0x7F0602F6
-			public const int mtrl_choice_chip_text_color = 2131100406;
+			public const int mtrl_navigation_bar_colored_item_tint = 2131100406;
 			
 			// aapt resource value: 0x7F0602F7
-			public const int mtrl_error = 2131100407;
+			public const int mtrl_navigation_bar_colored_ripple_color = 2131100407;
 			
 			// aapt resource value: 0x7F0602F8
-			public const int mtrl_fab_bg_color_selector = 2131100408;
+			public const int mtrl_navigation_bar_item_tint = 2131100408;
 			
 			// aapt resource value: 0x7F0602F9
-			public const int mtrl_fab_icon_text_color_selector = 2131100409;
+			public const int mtrl_navigation_bar_ripple_color = 2131100409;
 			
 			// aapt resource value: 0x7F0602FA
-			public const int mtrl_fab_ripple_color = 2131100410;
+			public const int mtrl_navigation_item_background_color = 2131100410;
 			
 			// aapt resource value: 0x7F0602FB
-			public const int mtrl_filled_background_color = 2131100411;
+			public const int mtrl_navigation_item_icon_tint = 2131100411;
 			
 			// aapt resource value: 0x7F0602FC
-			public const int mtrl_filled_icon_tint = 2131100412;
+			public const int mtrl_navigation_item_text_color = 2131100412;
 			
 			// aapt resource value: 0x7F0602FD
-			public const int mtrl_filled_stroke_color = 2131100413;
+			public const int mtrl_on_primary_text_btn_text_color_selector = 2131100413;
 			
 			// aapt resource value: 0x7F0602FE
-			public const int mtrl_indicator_text_color = 2131100414;
+			public const int mtrl_on_surface_ripple_color = 2131100414;
 			
 			// aapt resource value: 0x7F0602FF
-			public const int mtrl_navigation_bar_colored_item_tint = 2131100415;
+			public const int mtrl_outlined_icon_tint = 2131100415;
 			
 			// aapt resource value: 0x7F060300
-			public const int mtrl_navigation_bar_colored_ripple_color = 2131100416;
+			public const int mtrl_outlined_stroke_color = 2131100416;
 			
 			// aapt resource value: 0x7F060301
-			public const int mtrl_navigation_bar_item_tint = 2131100417;
+			public const int mtrl_popupmenu_overlay_color = 2131100417;
 			
 			// aapt resource value: 0x7F060302
-			public const int mtrl_navigation_bar_ripple_color = 2131100418;
+			public const int mtrl_scrim_color = 2131100418;
 			
 			// aapt resource value: 0x7F060303
-			public const int mtrl_navigation_item_background_color = 2131100419;
+			public const int mtrl_switch_thumb_icon_tint = 2131100419;
 			
 			// aapt resource value: 0x7F060304
-			public const int mtrl_navigation_item_icon_tint = 2131100420;
+			public const int mtrl_switch_thumb_tint = 2131100420;
 			
 			// aapt resource value: 0x7F060305
-			public const int mtrl_navigation_item_text_color = 2131100421;
+			public const int mtrl_switch_track_decoration_tint = 2131100421;
 			
 			// aapt resource value: 0x7F060306
-			public const int mtrl_on_primary_text_btn_text_color_selector = 2131100422;
+			public const int mtrl_switch_track_tint = 2131100422;
 			
 			// aapt resource value: 0x7F060307
-			public const int mtrl_on_surface_ripple_color = 2131100423;
+			public const int mtrl_tabs_colored_ripple_color = 2131100423;
 			
 			// aapt resource value: 0x7F060308
-			public const int mtrl_outlined_icon_tint = 2131100424;
+			public const int mtrl_tabs_icon_color_selector = 2131100424;
 			
 			// aapt resource value: 0x7F060309
-			public const int mtrl_outlined_stroke_color = 2131100425;
+			public const int mtrl_tabs_icon_color_selector_colored = 2131100425;
 			
 			// aapt resource value: 0x7F06030A
-			public const int mtrl_popupmenu_overlay_color = 2131100426;
+			public const int mtrl_tabs_legacy_text_color_selector = 2131100426;
 			
 			// aapt resource value: 0x7F06030B
-			public const int mtrl_scrim_color = 2131100427;
-			
-			// aapt resource value: 0x7F06030C
-			public const int mtrl_switch_thumb_icon_tint = 2131100428;
+			public const int mtrl_tabs_ripple_color = 2131100427;
 			
 			// aapt resource value: 0x7F06030D
-			public const int mtrl_switch_thumb_tint = 2131100429;
+			public const int mtrl_textinput_default_box_stroke_color = 2131100429;
 			
 			// aapt resource value: 0x7F06030E
-			public const int mtrl_switch_track_decoration_tint = 2131100430;
+			public const int mtrl_textinput_disabled_color = 2131100430;
 			
 			// aapt resource value: 0x7F06030F
-			public const int mtrl_switch_track_tint = 2131100431;
+			public const int mtrl_textinput_filled_box_default_background_color = 2131100431;
 			
 			// aapt resource value: 0x7F060310
-			public const int mtrl_tabs_colored_ripple_color = 2131100432;
+			public const int mtrl_textinput_focused_box_stroke_color = 2131100432;
 			
 			// aapt resource value: 0x7F060311
-			public const int mtrl_tabs_icon_color_selector = 2131100433;
+			public const int mtrl_textinput_hovered_box_stroke_color = 2131100433;
+			
+			// aapt resource value: 0x7F06030C
+			public const int mtrl_text_btn_text_color_selector = 2131100428;
 			
 			// aapt resource value: 0x7F060312
-			public const int mtrl_tabs_icon_color_selector_colored = 2131100434;
+			public const int notification_action_color_filter = 2131100434;
 			
 			// aapt resource value: 0x7F060313
-			public const int mtrl_tabs_legacy_text_color_selector = 2131100435;
+			public const int notification_icon_bg_color = 2131100435;
 			
 			// aapt resource value: 0x7F060314
-			public const int mtrl_tabs_ripple_color = 2131100436;
-			
-			// aapt resource value: 0x7F060316
-			public const int mtrl_textinput_default_box_stroke_color = 2131100438;
-			
-			// aapt resource value: 0x7F060317
-			public const int mtrl_textinput_disabled_color = 2131100439;
-			
-			// aapt resource value: 0x7F060318
-			public const int mtrl_textinput_filled_box_default_background_color = 2131100440;
-			
-			// aapt resource value: 0x7F060319
-			public const int mtrl_textinput_focused_box_stroke_color = 2131100441;
-			
-			// aapt resource value: 0x7F06031A
-			public const int mtrl_textinput_hovered_box_stroke_color = 2131100442;
+			public const int notification_material_background_media_default_color = 2131100436;
 			
 			// aapt resource value: 0x7F060315
-			public const int mtrl_text_btn_text_color_selector = 2131100437;
+			public const int pickerview_bgColor_default = 2131100437;
+			
+			// aapt resource value: 0x7F060316
+			public const int pickerview_bgColor_overlay = 2131100438;
+			
+			// aapt resource value: 0x7F060317
+			public const int pickerview_bg_topbar = 2131100439;
+			
+			// aapt resource value: 0x7F060318
+			public const int pickerview_timebtn_nor = 2131100440;
+			
+			// aapt resource value: 0x7F060319
+			public const int pickerview_timebtn_pre = 2131100441;
+			
+			// aapt resource value: 0x7F06031A
+			public const int pickerview_topbar_title = 2131100442;
 			
 			// aapt resource value: 0x7F06031B
-			public const int notification_action_color_filter = 2131100443;
+			public const int pickerview_wheelview_textcolor_center = 2131100443;
 			
 			// aapt resource value: 0x7F06031C
-			public const int notification_icon_bg_color = 2131100444;
+			public const int pickerview_wheelview_textcolor_divider = 2131100444;
 			
 			// aapt resource value: 0x7F06031D
-			public const int notification_material_background_media_default_color = 2131100445;
+			public const int pickerview_wheelview_textcolor_out = 2131100445;
 			
 			// aapt resource value: 0x7F06031E
-			public const int pickerview_bgColor_default = 2131100446;
+			public const int primary_dark_material_dark = 2131100446;
 			
 			// aapt resource value: 0x7F06031F
-			public const int pickerview_bgColor_overlay = 2131100447;
+			public const int primary_dark_material_light = 2131100447;
 			
 			// aapt resource value: 0x7F060320
-			public const int pickerview_bg_topbar = 2131100448;
+			public const int primary_material_dark = 2131100448;
 			
 			// aapt resource value: 0x7F060321
-			public const int pickerview_timebtn_nor = 2131100449;
+			public const int primary_material_light = 2131100449;
 			
 			// aapt resource value: 0x7F060322
-			public const int pickerview_timebtn_pre = 2131100450;
+			public const int primary_text_default_material_dark = 2131100450;
 			
 			// aapt resource value: 0x7F060323
-			public const int pickerview_topbar_title = 2131100451;
+			public const int primary_text_default_material_light = 2131100451;
 			
 			// aapt resource value: 0x7F060324
-			public const int pickerview_wheelview_textcolor_center = 2131100452;
+			public const int primary_text_disabled_material_dark = 2131100452;
 			
 			// aapt resource value: 0x7F060325
-			public const int pickerview_wheelview_textcolor_divider = 2131100453;
+			public const int primary_text_disabled_material_light = 2131100453;
 			
 			// aapt resource value: 0x7F060326
-			public const int pickerview_wheelview_textcolor_out = 2131100454;
+			public const int ripple_material_dark = 2131100454;
 			
 			// aapt resource value: 0x7F060327
-			public const int primary_dark_material_dark = 2131100455;
+			public const int ripple_material_light = 2131100455;
 			
 			// aapt resource value: 0x7F060328
-			public const int primary_dark_material_light = 2131100456;
+			public const int secondary_text_default_material_dark = 2131100456;
 			
 			// aapt resource value: 0x7F060329
-			public const int primary_material_dark = 2131100457;
+			public const int secondary_text_default_material_light = 2131100457;
 			
 			// aapt resource value: 0x7F06032A
-			public const int primary_material_light = 2131100458;
+			public const int secondary_text_disabled_material_dark = 2131100458;
 			
 			// aapt resource value: 0x7F06032B
-			public const int primary_text_default_material_dark = 2131100459;
+			public const int secondary_text_disabled_material_light = 2131100459;
 			
 			// aapt resource value: 0x7F06032C
-			public const int primary_text_default_material_light = 2131100460;
+			public const int switch_thumb_disabled_material_dark = 2131100460;
 			
 			// aapt resource value: 0x7F06032D
-			public const int primary_text_disabled_material_dark = 2131100461;
+			public const int switch_thumb_disabled_material_light = 2131100461;
 			
 			// aapt resource value: 0x7F06032E
-			public const int primary_text_disabled_material_light = 2131100462;
+			public const int switch_thumb_material_dark = 2131100462;
 			
 			// aapt resource value: 0x7F06032F
-			public const int ripple_material_dark = 2131100463;
+			public const int switch_thumb_material_light = 2131100463;
 			
 			// aapt resource value: 0x7F060330
-			public const int ripple_material_light = 2131100464;
+			public const int switch_thumb_normal_material_dark = 2131100464;
 			
 			// aapt resource value: 0x7F060331
-			public const int secondary_text_default_material_dark = 2131100465;
+			public const int switch_thumb_normal_material_light = 2131100465;
 			
 			// aapt resource value: 0x7F060332
-			public const int secondary_text_default_material_light = 2131100466;
+			public const int tooltip_background_dark = 2131100466;
 			
 			// aapt resource value: 0x7F060333
-			public const int secondary_text_disabled_material_dark = 2131100467;
+			public const int tooltip_background_light = 2131100467;
 			
 			// aapt resource value: 0x7F060334
-			public const int secondary_text_disabled_material_light = 2131100468;
+			public const int transparent = 2131100468;
 			
 			// aapt resource value: 0x7F060335
-			public const int switch_thumb_disabled_material_dark = 2131100469;
+			public const int zxing_custom_possible_result_points = 2131100469;
 			
 			// aapt resource value: 0x7F060336
-			public const int switch_thumb_disabled_material_light = 2131100470;
+			public const int zxing_custom_result_view = 2131100470;
 			
 			// aapt resource value: 0x7F060337
-			public const int switch_thumb_material_dark = 2131100471;
+			public const int zxing_custom_viewfinder_laser = 2131100471;
 			
 			// aapt resource value: 0x7F060338
-			public const int switch_thumb_material_light = 2131100472;
+			public const int zxing_custom_viewfinder_mask = 2131100472;
 			
 			// aapt resource value: 0x7F060339
-			public const int switch_thumb_normal_material_dark = 2131100473;
+			public const int zxing_possible_result_points = 2131100473;
 			
 			// aapt resource value: 0x7F06033A
-			public const int switch_thumb_normal_material_light = 2131100474;
+			public const int zxing_result_view = 2131100474;
 			
 			// aapt resource value: 0x7F06033B
-			public const int tooltip_background_dark = 2131100475;
+			public const int zxing_status_text = 2131100475;
 			
 			// aapt resource value: 0x7F06033C
-			public const int tooltip_background_light = 2131100476;
+			public const int zxing_transparent = 2131100476;
 			
 			// aapt resource value: 0x7F06033D
-			public const int transparent = 2131100477;
+			public const int zxing_viewfinder_laser = 2131100477;
 			
 			// aapt resource value: 0x7F06033E
-			public const int white = 2131100478;
-			
-			// aapt resource value: 0x7F06033F
-			public const int zxing_custom_possible_result_points = 2131100479;
-			
-			// aapt resource value: 0x7F060340
-			public const int zxing_custom_result_view = 2131100480;
-			
-			// aapt resource value: 0x7F060341
-			public const int zxing_custom_viewfinder_laser = 2131100481;
-			
-			// aapt resource value: 0x7F060342
-			public const int zxing_custom_viewfinder_mask = 2131100482;
-			
-			// aapt resource value: 0x7F060343
-			public const int zxing_possible_result_points = 2131100483;
-			
-			// aapt resource value: 0x7F060344
-			public const int zxing_result_view = 2131100484;
-			
-			// aapt resource value: 0x7F060345
-			public const int zxing_status_text = 2131100485;
-			
-			// aapt resource value: 0x7F060346
-			public const int zxing_transparent = 2131100486;
-			
-			// aapt resource value: 0x7F060347
-			public const int zxing_viewfinder_laser = 2131100487;
-			
-			// aapt resource value: 0x7F060348
-			public const int zxing_viewfinder_mask = 2131100488;
+			public const int zxing_viewfinder_mask = 2131100478;
 			
 			static Color()
 			{
@@ -13758,964 +13728,898 @@
 			public const int btn_checkbox_unchecked_to_checked_mtrl_animation = 2131230907;
 			
 			// aapt resource value: 0x7F0800BC
-			public const int btn_click_lp_screenshot = 2131230908;
+			public const int btn_disagree = 2131230908;
 			
 			// aapt resource value: 0x7F0800BD
-			public const int btn_click_lp_unlock = 2131230909;
+			public const int btn_moveplan_switch = 2131230909;
 			
 			// aapt resource value: 0x7F0800BE
-			public const int btn_disagree = 2131230910;
+			public const int btn_radio_off_mtrl = 2131230910;
 			
 			// aapt resource value: 0x7F0800BF
-			public const int btn_moveplan_switch = 2131230911;
+			public const int btn_radio_off_to_on_mtrl_animation = 2131230911;
 			
 			// aapt resource value: 0x7F0800C0
-			public const int btn_radio_off_mtrl = 2131230912;
+			public const int btn_radio_on_mtrl = 2131230912;
 			
 			// aapt resource value: 0x7F0800C1
-			public const int btn_radio_off_to_on_mtrl_animation = 2131230913;
+			public const int btn_radio_on_to_off_mtrl_animation = 2131230913;
 			
 			// aapt resource value: 0x7F0800C2
-			public const int btn_radio_on_mtrl = 2131230914;
+			public const int cc_bg_black_round = 2131230914;
 			
 			// aapt resource value: 0x7F0800C3
-			public const int btn_radio_on_to_off_mtrl_animation = 2131230915;
+			public const int checkbox_btn_addbox_tip_selector = 2131230915;
 			
 			// aapt resource value: 0x7F0800C4
-			public const int cc_bg_black_round = 2131230916;
+			public const int checkbox_btn_message_selector = 2131230916;
 			
 			// aapt resource value: 0x7F0800C5
-			public const int checkbox_btn_addbox_tip_selector = 2131230917;
+			public const int checkbox_btn_wifi_selector = 2131230917;
 			
 			// aapt resource value: 0x7F0800C6
-			public const int checkbox_btn_message_selector = 2131230918;
+			public const int cloud_connecting = 2131230918;
 			
 			// aapt resource value: 0x7F0800C7
-			public const int checkbox_btn_wifi_selector = 2131230919;
+			public const int common_border_bg = 2131230919;
 			
 			// aapt resource value: 0x7F0800C8
-			public const int cloud_connecting = 2131230920;
+			public const int common_border_bg_normal = 2131230920;
 			
 			// aapt resource value: 0x7F0800C9
-			public const int common_border_bg = 2131230921;
+			public const int common_btn_bg_shape_gray = 2131230921;
 			
 			// aapt resource value: 0x7F0800CA
-			public const int common_border_bg_normal = 2131230922;
+			public const int common_btn_bg_shape_white = 2131230922;
 			
 			// aapt resource value: 0x7F0800CB
-			public const int common_btn_bg_shape_gray = 2131230923;
+			public const int common_edit_text_cursor_bg = 2131230923;
 			
 			// aapt resource value: 0x7F0800CC
-			public const int common_btn_bg_shape_white = 2131230924;
+			public const int common_failhrlp_default = 2131230924;
 			
 			// aapt resource value: 0x7F0800CD
-			public const int common_edit_text_cursor_bg = 2131230925;
+			public const int common_icon_nav_back = 2131230925;
 			
 			// aapt resource value: 0x7F0800CE
-			public const int common_failhrlp_default = 2131230926;
+			public const int common_icon_nav_more = 2131230926;
 			
 			// aapt resource value: 0x7F0800CF
-			public const int common_icon_nav_back = 2131230927;
+			public const int common_image_nav_refresh = 2131230927;
 			
 			// aapt resource value: 0x7F0800D0
-			public const int common_icon_nav_more = 2131230928;
+			public const int common_image_nav_refresh_disable = 2131230928;
 			
 			// aapt resource value: 0x7F0800D1
-			public const int common_image_nav_refresh = 2131230929;
+			public const int common_image_nav_refresh_selector = 2131230929;
 			
 			// aapt resource value: 0x7F0800D2
-			public const int common_image_nav_refresh_disable = 2131230930;
+			public const int common_image_nav_share = 2131230930;
 			
 			// aapt resource value: 0x7F0800D3
-			public const int common_image_nav_refresh_selector = 2131230931;
+			public const int common_image_nav_title_left = 2131230931;
 			
 			// aapt resource value: 0x7F0800D4
-			public const int common_image_nav_share = 2131230932;
+			public const int common_image_nav_title_right = 2131230932;
 			
 			// aapt resource value: 0x7F0800D5
-			public const int common_image_nav_title_left = 2131230933;
+			public const int common_list_item_bg_h = 2131230933;
 			
 			// aapt resource value: 0x7F0800D6
-			public const int common_image_nav_title_right = 2131230934;
+			public const int common_list_item_bg_n = 2131230934;
 			
 			// aapt resource value: 0x7F0800D7
-			public const int common_list_item_bg_h = 2131230935;
+			public const int common_list_item_bg_selector = 2131230935;
 			
 			// aapt resource value: 0x7F0800D8
-			public const int common_list_item_bg_n = 2131230936;
+			public const int common_netsetting_power = 2131230936;
 			
 			// aapt resource value: 0x7F0800D9
-			public const int common_list_item_bg_selector = 2131230937;
+			public const int common_newmessage = 2131230937;
 			
 			// aapt resource value: 0x7F0800DA
-			public const int common_netsetting_power = 2131230938;
+			public const int common_nullpic_nonetwork = 2131230938;
 			
 			// aapt resource value: 0x7F0800DB
-			public const int common_newmessage = 2131230939;
+			public const int common_switch_btn_selector = 2131230939;
 			
 			// aapt resource value: 0x7F0800DC
-			public const int common_nullpic_nonetwork = 2131230940;
+			public const int common_title_refresh_selector = 2131230940;
 			
 			// aapt resource value: 0x7F0800DD
-			public const int common_switch_btn_selector = 2131230941;
+			public const int common_title_switch = 2131230941;
 			
 			// aapt resource value: 0x7F0800DE
-			public const int common_title_refresh_selector = 2131230942;
+			public const int default_cover_small = 2131230942;
 			
 			// aapt resource value: 0x7F0800DF
-			public const int common_title_switch = 2131230943;
+			public const int default_ptr_flip = 2131230943;
 			
 			// aapt resource value: 0x7F0800E0
-			public const int default_cover_small = 2131230944;
+			public const int default_ptr_rotate = 2131230944;
 			
 			// aapt resource value: 0x7F0800E1
-			public const int default_ptr_flip = 2131230945;
+			public const int design_fab_background = 2131230945;
 			
 			// aapt resource value: 0x7F0800E2
-			public const int default_ptr_rotate = 2131230946;
+			public const int design_ic_visibility = 2131230946;
 			
 			// aapt resource value: 0x7F0800E3
-			public const int design_fab_background = 2131230947;
+			public const int design_ic_visibility_off = 2131230947;
 			
 			// aapt resource value: 0x7F0800E4
-			public const int design_ic_visibility = 2131230948;
+			public const int design_password_eye = 2131230948;
 			
 			// aapt resource value: 0x7F0800E5
-			public const int design_ic_visibility_off = 2131230949;
-			
-			// aapt resource value: 0x7F0800E6
-			public const int design_password_eye = 2131230950;
-			
-			// aapt resource value: 0x7F0800E7
-			public const int design_snackbar_background = 2131230951;
-			
-			// aapt resource value: 0x7F0800EA
-			public const int devicedetail_wifi_1singal = 2131230954;
-			
-			// aapt resource value: 0x7F0800EB
-			public const int devicedetail_wifi_1singal_lock = 2131230955;
-			
-			// aapt resource value: 0x7F0800EC
-			public const int devicedetail_wifi_2singal = 2131230956;
-			
-			// aapt resource value: 0x7F0800ED
-			public const int devicedetail_wifi_2singal_lock = 2131230957;
-			
-			// aapt resource value: 0x7F0800EE
-			public const int devicedetail_wifi_3singal = 2131230958;
-			
-			// aapt resource value: 0x7F0800EF
-			public const int devicedetail_wifi_3singal_lock = 2131230959;
-			
-			// aapt resource value: 0x7F0800F0
-			public const int devicedetail_wifi_nosingal = 2131230960;
-			
-			// aapt resource value: 0x7F0800F1
-			public const int devicedetail_wifi_nosingal_lock = 2131230961;
-			
-			// aapt resource value: 0x7F0800F2
-			public const int devicemanage_icon_search = 2131230962;
+			public const int design_snackbar_background = 2131230949;
 			
 			// aapt resource value: 0x7F0800E8
-			public const int device_body_wifi_list_lock = 2131230952;
+			public const int devicedetail_wifi_1singal = 2131230952;
 			
 			// aapt resource value: 0x7F0800E9
-			public const int device_manager_icon_nextarrow = 2131230953;
+			public const int devicedetail_wifi_1singal_lock = 2131230953;
+			
+			// aapt resource value: 0x7F0800EA
+			public const int devicedetail_wifi_2singal = 2131230954;
+			
+			// aapt resource value: 0x7F0800EB
+			public const int devicedetail_wifi_2singal_lock = 2131230955;
+			
+			// aapt resource value: 0x7F0800EC
+			public const int devicedetail_wifi_3singal = 2131230956;
+			
+			// aapt resource value: 0x7F0800ED
+			public const int devicedetail_wifi_3singal_lock = 2131230957;
+			
+			// aapt resource value: 0x7F0800EE
+			public const int devicedetail_wifi_nosingal = 2131230958;
+			
+			// aapt resource value: 0x7F0800EF
+			public const int devicedetail_wifi_nosingal_lock = 2131230959;
+			
+			// aapt resource value: 0x7F0800F0
+			public const int devicemanage_icon_search = 2131230960;
+			
+			// aapt resource value: 0x7F0800E6
+			public const int device_body_wifi_list_lock = 2131230950;
+			
+			// aapt resource value: 0x7F0800E7
+			public const int device_manager_icon_nextarrow = 2131230951;
+			
+			// aapt resource value: 0x7F0800F1
+			public const int dialog_background = 2131230961;
+			
+			// aapt resource value: 0x7F0800F2
+			public const int dialog_background2 = 2131230962;
 			
 			// aapt resource value: 0x7F0800F3
-			public const int dialog_background = 2131230963;
+			public const int dialog_cancle_btn_bg = 2131230963;
 			
 			// aapt resource value: 0x7F0800F4
-			public const int dialog_background2 = 2131230964;
+			public const int dialog_conform_btn_bg = 2131230964;
 			
 			// aapt resource value: 0x7F0800F5
-			public const int dialog_cancel_btn_normal_bg = 2131230965;
+			public const int fingerprint_draw_off = 2131230965;
 			
 			// aapt resource value: 0x7F0800F6
-			public const int dialog_cancel_btn_press_bg = 2131230966;
+			public const int fingerprint_draw_off_animation = 2131230966;
 			
 			// aapt resource value: 0x7F0800F7
-			public const int dialog_cancel_btn_selector = 2131230967;
+			public const int fingerprint_draw_on = 2131230967;
 			
 			// aapt resource value: 0x7F0800F8
-			public const int dialog_cancle_btn_bg = 2131230968;
+			public const int fingerprint_draw_on_animation = 2131230968;
 			
 			// aapt resource value: 0x7F0800F9
-			public const int dialog_conform_btn_bg = 2131230969;
+			public const int fingerprint_error = 2131230969;
 			
 			// aapt resource value: 0x7F0800FA
-			public const int dialog_ok_btn_normal_bg = 2131230970;
+			public const int fingerprint_error_off = 2131230970;
 			
 			// aapt resource value: 0x7F0800FB
-			public const int dialog_ok_btn_press_bg = 2131230971;
+			public const int fingerprint_error_off_animation = 2131230971;
 			
 			// aapt resource value: 0x7F0800FC
-			public const int dialog_ok_btn_selector = 2131230972;
+			public const int fingerprint_error_on = 2131230972;
 			
 			// aapt resource value: 0x7F0800FD
-			public const int fingerprint_draw_off = 2131230973;
+			public const int fingerprint_error_on_animation = 2131230973;
 			
 			// aapt resource value: 0x7F0800FE
-			public const int fingerprint_draw_off_animation = 2131230974;
+			public const int fingerprint_error_state_to_fp = 2131230974;
 			
 			// aapt resource value: 0x7F0800FF
-			public const int fingerprint_draw_on = 2131230975;
+			public const int fingerprint_error_state_to_fp_animation = 2131230975;
 			
 			// aapt resource value: 0x7F080100
-			public const int fingerprint_draw_on_animation = 2131230976;
+			public const int fingerprint_fingerprint = 2131230976;
 			
 			// aapt resource value: 0x7F080101
-			public const int fingerprint_error = 2131230977;
+			public const int fingerprint_fp_to_error_state = 2131230977;
 			
 			// aapt resource value: 0x7F080102
-			public const int fingerprint_error_off = 2131230978;
+			public const int fingerprint_fp_to_error_state_animation = 2131230978;
 			
 			// aapt resource value: 0x7F080103
-			public const int fingerprint_error_off_animation = 2131230979;
+			public const int gd_btn_shape_app_b = 2131230979;
 			
 			// aapt resource value: 0x7F080104
-			public const int fingerprint_error_on = 2131230980;
+			public const int gd_btn_shape_app_g = 2131230980;
 			
 			// aapt resource value: 0x7F080105
-			public const int fingerprint_error_on_animation = 2131230981;
+			public const int gd_btn_shape_app_w = 2131230981;
 			
 			// aapt resource value: 0x7F080106
-			public const int fingerprint_error_state_to_fp = 2131230982;
+			public const int gd_btn_shape_shadow_w = 2131230982;
 			
 			// aapt resource value: 0x7F080107
-			public const int fingerprint_error_state_to_fp_animation = 2131230983;
+			public const int gd_click_effect_select = 2131230983;
 			
 			// aapt resource value: 0x7F080108
-			public const int fingerprint_fingerprint = 2131230984;
-			
-			// aapt resource value: 0x7F080109
-			public const int fingerprint_fp_to_error_state = 2131230985;
-			
-			// aapt resource value: 0x7F08010A
-			public const int fingerprint_fp_to_error_state_animation = 2131230986;
-			
-			// aapt resource value: 0x7F08010B
-			public const int gd_btn_shape_app_b = 2131230987;
-			
-			// aapt resource value: 0x7F08010C
-			public const int gd_btn_shape_app_g = 2131230988;
-			
-			// aapt resource value: 0x7F08010D
-			public const int gd_btn_shape_app_w = 2131230989;
-			
-			// aapt resource value: 0x7F08010E
-			public const int gd_btn_shape_shadow_w = 2131230990;
-			
-			// aapt resource value: 0x7F08010F
-			public const int gd_click_effect_select = 2131230991;
-			
-			// aapt resource value: 0x7F080110
-			public const int hangup = 2131230992;
-			
-			// aapt resource value: 0x7F08014F
-			public const int Icon = 2131231055;
-			
-			// aapt resource value: 0x7F080150
-			public const int icon_wifipassword_nosupport5g = 2131231056;
-			
-			// aapt resource value: 0x7F080111
-			public const int ic_arrow_back_black_24 = 2131230993;
-			
-			// aapt resource value: 0x7F080112
-			public const int ic_call_answer = 2131230994;
-			
-			// aapt resource value: 0x7F080113
-			public const int ic_call_answer_low = 2131230995;
-			
-			// aapt resource value: 0x7F080114
-			public const int ic_call_answer_video = 2131230996;
-			
-			// aapt resource value: 0x7F080115
-			public const int ic_call_answer_video_low = 2131230997;
-			
-			// aapt resource value: 0x7F080116
-			public const int ic_call_decline = 2131230998;
-			
-			// aapt resource value: 0x7F080117
-			public const int ic_call_decline_low = 2131230999;
-			
-			// aapt resource value: 0x7F080118
-			public const int ic_clear_black_24 = 2131231000;
-			
-			// aapt resource value: 0x7F080119
-			public const int ic_clock_black_24dp = 2131231001;
-			
-			// aapt resource value: 0x7F08011A
-			public const int ic_esvideo_on_answer = 2131231002;
-			
-			// aapt resource value: 0x7F08011B
-			public const int ic_esvideo_on_back = 2131231003;
-			
-			// aapt resource value: 0x7F08011C
-			public const int ic_esvideo_on_hangup = 2131231004;
-			
-			// aapt resource value: 0x7F08011D
-			public const int ic_esvideo_on_takephoto_select = 2131231005;
-			
-			// aapt resource value: 0x7F08011E
-			public const int ic_esvideo_on_takephoto_unselect = 2131231006;
-			
-			// aapt resource value: 0x7F08011F
-			public const int ic_esvideo_on_unlock_select = 2131231007;
-			
-			// aapt resource value: 0x7F080120
-			public const int ic_esvideo_on_unlock_unselect = 2131231008;
-			
-			// aapt resource value: 0x7F080121
-			public const int ic_gdmap_add = 2131231009;
-			
-			// aapt resource value: 0x7F080122
-			public const int ic_gdmap_back = 2131231010;
-			
-			// aapt resource value: 0x7F080123
-			public const int ic_gdmap_delete = 2131231011;
-			
-			// aapt resource value: 0x7F080124
-			public const int ic_gdmap_home = 2131231012;
-			
-			// aapt resource value: 0x7F080125
-			public const int ic_gdmap_mylocation = 2131231013;
-			
-			// aapt resource value: 0x7F080126
-			public const int ic_gdmap_now = 2131231014;
-			
-			// aapt resource value: 0x7F080127
-			public const int ic_gdmap_search = 2131231015;
-			
-			// aapt resource value: 0x7F080128
-			public const int ic_gdmap_zoom_out = 2131231016;
-			
-			// aapt resource value: 0x7F080129
-			public const int ic_gps_point = 2131231017;
-			
-			// aapt resource value: 0x7F08012A
-			public const int ic_keyboard_black_24dp = 2131231018;
-			
-			// aapt resource value: 0x7F08012B
-			public const int ic_launcher_background = 2131231019;
-			
-			// aapt resource value: 0x7F08012C
-			public const int ic_launcher_foreground = 2131231020;
-			
-			// aapt resource value: 0x7F08012D
-			public const int ic_m3_chip_check = 2131231021;
-			
-			// aapt resource value: 0x7F08012E
-			public const int ic_m3_chip_checked_circle = 2131231022;
-			
-			// aapt resource value: 0x7F08012F
-			public const int ic_m3_chip_close = 2131231023;
-			
-			// aapt resource value: 0x7F080130
-			public const int ic_mtrl_checked_circle = 2131231024;
-			
-			// aapt resource value: 0x7F080131
-			public const int ic_mtrl_chip_checked_black = 2131231025;
-			
-			// aapt resource value: 0x7F080132
-			public const int ic_mtrl_chip_checked_circle = 2131231026;
-			
-			// aapt resource value: 0x7F080133
-			public const int ic_mtrl_chip_close_circle = 2131231027;
-			
-			// aapt resource value: 0x7F080134
-			public const int ic_password_clear = 2131231028;
-			
-			// aapt resource value: 0x7F080135
-			public const int ic_password_invisible = 2131231029;
-			
-			// aapt resource value: 0x7F080136
-			public const int ic_password_visible = 2131231030;
-			
-			// aapt resource value: 0x7F080137
-			public const int ic_search_black_24 = 2131231031;
-			
-			// aapt resource value: 0x7F080138
-			public const int ic_shadow = 2131231032;
-			
-			// aapt resource value: 0x7F080139
-			public const int ic_ss_arrow_back = 2131231033;
-			
-			// aapt resource value: 0x7F08013A
-			public const int ic_wd_arc_scale_bg = 2131231034;
-			
-			// aapt resource value: 0x7F08013B
-			public const int ic_wd_curtain_bg_top = 2131231035;
-			
-			// aapt resource value: 0x7F08013C
-			public const int ic_wd_curtain_h_bg = 2131231036;
-			
-			// aapt resource value: 0x7F08013D
-			public const int ic_wd_curtain_h_open = 2131231037;
-			
-			// aapt resource value: 0x7F08013E
-			public const int ic_wd_curtain_h_progress = 2131231038;
-			
-			// aapt resource value: 0x7F08013F
-			public const int ic_wd_curtain_h_top = 2131231039;
+			public const int hangup = 2131230984;
 			
 			// aapt resource value: 0x7F080140
-			public const int ic_wd_curtain_open = 2131231040;
+			public const int Icon = 2131231040;
 			
 			// aapt resource value: 0x7F080141
-			public const int ic_wd_curtain_roll_bg = 2131231041;
+			public const int icon_wifipassword_nosupport5g = 2131231041;
+			
+			// aapt resource value: 0x7F080109
+			public const int ic_arrow_back_black_24 = 2131230985;
+			
+			// aapt resource value: 0x7F08010A
+			public const int ic_call_answer = 2131230986;
+			
+			// aapt resource value: 0x7F08010B
+			public const int ic_call_answer_low = 2131230987;
+			
+			// aapt resource value: 0x7F08010C
+			public const int ic_call_answer_video = 2131230988;
+			
+			// aapt resource value: 0x7F08010D
+			public const int ic_call_answer_video_low = 2131230989;
+			
+			// aapt resource value: 0x7F08010E
+			public const int ic_call_decline = 2131230990;
+			
+			// aapt resource value: 0x7F08010F
+			public const int ic_call_decline_low = 2131230991;
+			
+			// aapt resource value: 0x7F080110
+			public const int ic_clear_black_24 = 2131230992;
+			
+			// aapt resource value: 0x7F080111
+			public const int ic_clock_black_24dp = 2131230993;
+			
+			// aapt resource value: 0x7F080112
+			public const int ic_gdmap_add = 2131230994;
+			
+			// aapt resource value: 0x7F080113
+			public const int ic_gdmap_back = 2131230995;
+			
+			// aapt resource value: 0x7F080114
+			public const int ic_gdmap_delete = 2131230996;
+			
+			// aapt resource value: 0x7F080115
+			public const int ic_gdmap_home = 2131230997;
+			
+			// aapt resource value: 0x7F080116
+			public const int ic_gdmap_mylocation = 2131230998;
+			
+			// aapt resource value: 0x7F080117
+			public const int ic_gdmap_now = 2131230999;
+			
+			// aapt resource value: 0x7F080118
+			public const int ic_gdmap_search = 2131231000;
+			
+			// aapt resource value: 0x7F080119
+			public const int ic_gdmap_zoom_out = 2131231001;
+			
+			// aapt resource value: 0x7F08011A
+			public const int ic_gps_point = 2131231002;
+			
+			// aapt resource value: 0x7F08011B
+			public const int ic_keyboard_black_24dp = 2131231003;
+			
+			// aapt resource value: 0x7F08011C
+			public const int ic_launcher_background = 2131231004;
+			
+			// aapt resource value: 0x7F08011D
+			public const int ic_launcher_foreground = 2131231005;
+			
+			// aapt resource value: 0x7F08011E
+			public const int ic_m3_chip_check = 2131231006;
+			
+			// aapt resource value: 0x7F08011F
+			public const int ic_m3_chip_checked_circle = 2131231007;
+			
+			// aapt resource value: 0x7F080120
+			public const int ic_m3_chip_close = 2131231008;
+			
+			// aapt resource value: 0x7F080121
+			public const int ic_mtrl_checked_circle = 2131231009;
+			
+			// aapt resource value: 0x7F080122
+			public const int ic_mtrl_chip_checked_black = 2131231010;
+			
+			// aapt resource value: 0x7F080123
+			public const int ic_mtrl_chip_checked_circle = 2131231011;
+			
+			// aapt resource value: 0x7F080124
+			public const int ic_mtrl_chip_close_circle = 2131231012;
+			
+			// aapt resource value: 0x7F080125
+			public const int ic_password_clear = 2131231013;
+			
+			// aapt resource value: 0x7F080126
+			public const int ic_password_invisible = 2131231014;
+			
+			// aapt resource value: 0x7F080127
+			public const int ic_password_visible = 2131231015;
+			
+			// aapt resource value: 0x7F080128
+			public const int ic_search_black_24 = 2131231016;
+			
+			// aapt resource value: 0x7F080129
+			public const int ic_shadow = 2131231017;
+			
+			// aapt resource value: 0x7F08012A
+			public const int ic_ss_arrow_back = 2131231018;
+			
+			// aapt resource value: 0x7F08012B
+			public const int ic_wd_arc_scale_bg = 2131231019;
+			
+			// aapt resource value: 0x7F08012C
+			public const int ic_wd_curtain_bg_top = 2131231020;
+			
+			// aapt resource value: 0x7F08012D
+			public const int ic_wd_curtain_h_bg = 2131231021;
+			
+			// aapt resource value: 0x7F08012E
+			public const int ic_wd_curtain_h_open = 2131231022;
+			
+			// aapt resource value: 0x7F08012F
+			public const int ic_wd_curtain_h_progress = 2131231023;
+			
+			// aapt resource value: 0x7F080130
+			public const int ic_wd_curtain_h_top = 2131231024;
+			
+			// aapt resource value: 0x7F080131
+			public const int ic_wd_curtain_open = 2131231025;
+			
+			// aapt resource value: 0x7F080132
+			public const int ic_wd_curtain_roll_bg = 2131231026;
+			
+			// aapt resource value: 0x7F080133
+			public const int ic_wd_curtain_roll_progress = 2131231027;
+			
+			// aapt resource value: 0x7F080134
+			public const int ic_wd_on_curtain_blinds_progress = 2131231028;
+			
+			// aapt resource value: 0x7F080135
+			public const int ic_wd_on_curtain_blinds_progress2 = 2131231029;
+			
+			// aapt resource value: 0x7F080136
+			public const int ic_wd_on_curtain_blinds_progress_close = 2131231030;
+			
+			// aapt resource value: 0x7F080137
+			public const int ic_wd_on_curtain_blinds_progress_close2 = 2131231031;
+			
+			// aapt resource value: 0x7F080138
+			public const int ic_wd_on_curtain_h_bg = 2131231032;
+			
+			// aapt resource value: 0x7F080139
+			public const int ic_wd_on_curtain_h_open = 2131231033;
+			
+			// aapt resource value: 0x7F08013A
+			public const int ic_wd_on_curtain_h_progress = 2131231034;
+			
+			// aapt resource value: 0x7F08013B
+			public const int ic_wd_on_curtain_h_progress_close = 2131231035;
+			
+			// aapt resource value: 0x7F08013C
+			public const int ic_wd_on_curtain_open = 2131231036;
+			
+			// aapt resource value: 0x7F08013D
+			public const int ic_wd_on_curtain_roll_bg = 2131231037;
+			
+			// aapt resource value: 0x7F08013E
+			public const int ic_wd_on_curtain_roll_progress = 2131231038;
+			
+			// aapt resource value: 0x7F08013F
+			public const int ic_wd_on_curtain_roll_progress_close = 2131231039;
 			
 			// aapt resource value: 0x7F080142
-			public const int ic_wd_curtain_roll_progress = 2131231042;
+			public const int indicator_arrow = 2131231042;
 			
 			// aapt resource value: 0x7F080143
-			public const int ic_wd_on_curtain_blinds_progress = 2131231043;
+			public const int indicator_bg_bottom = 2131231043;
 			
 			// aapt resource value: 0x7F080144
-			public const int ic_wd_on_curtain_blinds_progress2 = 2131231044;
+			public const int indicator_bg_top = 2131231044;
 			
 			// aapt resource value: 0x7F080145
-			public const int ic_wd_on_curtain_blinds_progress_close = 2131231045;
+			public const int launchImage = 2131231045;
 			
 			// aapt resource value: 0x7F080146
-			public const int ic_wd_on_curtain_blinds_progress_close2 = 2131231046;
+			public const int lc_demo_bg_selector = 2131231046;
 			
 			// aapt resource value: 0x7F080147
-			public const int ic_wd_on_curtain_h_bg = 2131231047;
+			public const int lc_demo_border_100r_shape = 2131231047;
 			
 			// aapt resource value: 0x7F080148
-			public const int ic_wd_on_curtain_h_open = 2131231048;
+			public const int lc_demo_border_gray_4r_shape = 2131231048;
 			
 			// aapt resource value: 0x7F080149
-			public const int ic_wd_on_curtain_h_progress = 2131231049;
+			public const int lc_demo_border_org_4r_shape = 2131231049;
 			
 			// aapt resource value: 0x7F08014A
-			public const int ic_wd_on_curtain_h_progress_close = 2131231050;
+			public const int lc_demo_cursor_drawable = 2131231050;
 			
 			// aapt resource value: 0x7F08014B
-			public const int ic_wd_on_curtain_open = 2131231051;
+			public const int lc_demo_org_progress_style = 2131231051;
 			
 			// aapt resource value: 0x7F08014C
-			public const int ic_wd_on_curtain_roll_bg = 2131231052;
+			public const int lc_demo_pg_background = 2131231052;
 			
 			// aapt resource value: 0x7F08014D
-			public const int ic_wd_on_curtain_roll_progress = 2131231053;
+			public const int lc_demo_photo_capture_selector = 2131231053;
 			
 			// aapt resource value: 0x7F08014E
-			public const int ic_wd_on_curtain_roll_progress_close = 2131231054;
+			public const int lc_demo_pic_color_cloud_video_selector = 2131231054;
+			
+			// aapt resource value: 0x7F08014F
+			public const int lc_demo_pic_color_local_video_selector = 2131231055;
+			
+			// aapt resource value: 0x7F080150
+			public const int lc_demo_point = 2131231056;
 			
 			// aapt resource value: 0x7F080151
-			public const int indicator_arrow = 2131231057;
+			public const int lc_demo_progress_style = 2131231057;
 			
 			// aapt resource value: 0x7F080152
-			public const int indicator_bg_bottom = 2131231058;
+			public const int lc_demo_soild_100r_org_shape = 2131231058;
 			
 			// aapt resource value: 0x7F080153
-			public const int indicator_bg_top = 2131231059;
+			public const int lc_demo_soild_100r_tra_shape = 2131231059;
 			
 			// aapt resource value: 0x7F080154
-			public const int launchImage = 2131231060;
+			public const int lc_demo_soild_10r_org_shape = 2131231060;
 			
 			// aapt resource value: 0x7F080155
-			public const int lc_demo_bg_selector = 2131231061;
+			public const int lc_demo_soild_10r_white_shape = 2131231061;
 			
 			// aapt resource value: 0x7F080156
-			public const int lc_demo_border_100r_shape = 2131231062;
+			public const int lc_demo_txt_color_selector = 2131231062;
 			
 			// aapt resource value: 0x7F080157
-			public const int lc_demo_border_gray_4r_shape = 2131231063;
+			public const int lc_demo_txt_color_video_selector = 2131231063;
 			
 			// aapt resource value: 0x7F080158
-			public const int lc_demo_border_org_4r_shape = 2131231064;
+			public const int lc_demo_txt_pixel_shape = 2131231064;
 			
 			// aapt resource value: 0x7F080159
-			public const int lc_demo_cursor_drawable = 2131231065;
+			public const int lc_operation_step = 2131231065;
 			
 			// aapt resource value: 0x7F08015A
-			public const int lc_demo_org_progress_style = 2131231066;
+			public const int lc_standard_big_btn_disabled_bg = 2131231066;
 			
 			// aapt resource value: 0x7F08015B
-			public const int lc_demo_pg_background = 2131231067;
+			public const int lc_standard_big_btn_normal_bg = 2131231067;
 			
 			// aapt resource value: 0x7F08015C
-			public const int lc_demo_photo_capture_selector = 2131231068;
+			public const int lc_standard_big_btn_pressed_bg = 2131231068;
 			
 			// aapt resource value: 0x7F08015D
-			public const int lc_demo_pic_color_cloud_video_selector = 2131231069;
+			public const int lc_standard_big_btn_selector = 2131231069;
 			
 			// aapt resource value: 0x7F08015E
-			public const int lc_demo_pic_color_local_video_selector = 2131231070;
+			public const int lc_standard_next_btn_disable_bg = 2131231070;
 			
 			// aapt resource value: 0x7F08015F
-			public const int lc_demo_point = 2131231071;
+			public const int lc_standard_next_btn_normal_bg = 2131231071;
 			
 			// aapt resource value: 0x7F080160
-			public const int lc_demo_progress_style = 2131231072;
+			public const int lc_standard_next_btn_pressed_bg = 2131231072;
 			
 			// aapt resource value: 0x7F080161
-			public const int lc_demo_soild_100r_org_shape = 2131231073;
+			public const int leba_bg_single_unselected = 2131231073;
 			
 			// aapt resource value: 0x7F080162
-			public const int lc_demo_soild_100r_tra_shape = 2131231074;
+			public const int Loading = 2131231074;
 			
 			// aapt resource value: 0x7F080163
-			public const int lc_demo_soild_10r_org_shape = 2131231075;
+			public const int m3_appbar_background = 2131231075;
 			
 			// aapt resource value: 0x7F080164
-			public const int lc_demo_soild_10r_white_shape = 2131231076;
+			public const int m3_avd_hide_password = 2131231076;
 			
 			// aapt resource value: 0x7F080165
-			public const int lc_demo_txt_color_selector = 2131231077;
+			public const int m3_avd_show_password = 2131231077;
 			
 			// aapt resource value: 0x7F080166
-			public const int lc_demo_txt_color_video_selector = 2131231078;
+			public const int m3_bottom_sheet_drag_handle = 2131231078;
 			
 			// aapt resource value: 0x7F080167
-			public const int lc_demo_txt_pixel_shape = 2131231079;
+			public const int m3_password_eye = 2131231079;
 			
 			// aapt resource value: 0x7F080168
-			public const int lc_operation_step = 2131231080;
+			public const int m3_popupmenu_background_overlay = 2131231080;
 			
 			// aapt resource value: 0x7F080169
-			public const int lc_standard_big_btn_disabled_bg = 2131231081;
+			public const int m3_radiobutton_ripple = 2131231081;
 			
 			// aapt resource value: 0x7F08016A
-			public const int lc_standard_big_btn_normal_bg = 2131231082;
+			public const int m3_selection_control_ripple = 2131231082;
 			
 			// aapt resource value: 0x7F08016B
-			public const int lc_standard_big_btn_pressed_bg = 2131231083;
+			public const int m3_tabs_background = 2131231083;
 			
 			// aapt resource value: 0x7F08016C
-			public const int lc_standard_big_btn_selector = 2131231084;
+			public const int m3_tabs_line_indicator = 2131231084;
 			
 			// aapt resource value: 0x7F08016D
-			public const int lc_standard_next_btn_disable_bg = 2131231085;
+			public const int m3_tabs_rounded_line_indicator = 2131231085;
 			
 			// aapt resource value: 0x7F08016E
-			public const int lc_standard_next_btn_normal_bg = 2131231086;
+			public const int m3_tabs_transparent_background = 2131231086;
 			
 			// aapt resource value: 0x7F08016F
-			public const int lc_standard_next_btn_pressed_bg = 2131231087;
+			public const int material_cursor_drawable = 2131231087;
 			
 			// aapt resource value: 0x7F080170
-			public const int leba_bg_single_unselected = 2131231088;
+			public const int material_ic_calendar_black_24dp = 2131231088;
 			
 			// aapt resource value: 0x7F080171
-			public const int Loading = 2131231089;
+			public const int material_ic_clear_black_24dp = 2131231089;
 			
 			// aapt resource value: 0x7F080172
-			public const int lp_calltime_shape = 2131231090;
+			public const int material_ic_edit_black_24dp = 2131231090;
 			
 			// aapt resource value: 0x7F080173
-			public const int lp_calltime_shape_gray = 2131231091;
+			public const int material_ic_keyboard_arrow_left_black_24dp = 2131231091;
 			
 			// aapt resource value: 0x7F080174
-			public const int lp_dialog_background = 2131231092;
+			public const int material_ic_keyboard_arrow_next_black_24dp = 2131231092;
 			
 			// aapt resource value: 0x7F080175
-			public const int lp_dialog_cancel_background = 2131231093;
+			public const int material_ic_keyboard_arrow_previous_black_24dp = 2131231093;
 			
 			// aapt resource value: 0x7F080176
-			public const int lp_dialog_confirm_background = 2131231094;
+			public const int material_ic_keyboard_arrow_right_black_24dp = 2131231094;
 			
 			// aapt resource value: 0x7F080177
-			public const int lp_line_shape = 2131231095;
+			public const int material_ic_menu_arrow_down_black_24dp = 2131231095;
 			
 			// aapt resource value: 0x7F080178
-			public const int m3_appbar_background = 2131231096;
+			public const int material_ic_menu_arrow_up_black_24dp = 2131231096;
 			
 			// aapt resource value: 0x7F080179
-			public const int m3_avd_hide_password = 2131231097;
+			public const int message_system_list_item_divider = 2131231097;
 			
 			// aapt resource value: 0x7F08017A
-			public const int m3_avd_show_password = 2131231098;
+			public const int mic = 2131231098;
 			
 			// aapt resource value: 0x7F08017B
-			public const int m3_bottom_sheet_drag_handle = 2131231099;
-			
-			// aapt resource value: 0x7F08017C
-			public const int m3_password_eye = 2131231100;
+			public const int mobile_common_bg_btn_border_shape = 2131231099;
 			
 			// aapt resource value: 0x7F08017D
-			public const int m3_popupmenu_background_overlay = 2131231101;
+			public const int mobile_common_checkbox_small_checked = 2131231101;
 			
 			// aapt resource value: 0x7F08017E
-			public const int m3_radiobutton_ripple = 2131231102;
+			public const int mobile_common_checkbox_small_default = 2131231102;
+			
+			// aapt resource value: 0x7F08017C
+			public const int mobile_common_check_box_selector = 2131231100;
 			
 			// aapt resource value: 0x7F08017F
-			public const int m3_selection_control_ripple = 2131231103;
+			public const int mobile_common_common_pic_nointernet = 2131231103;
 			
 			// aapt resource value: 0x7F080180
-			public const int m3_tabs_background = 2131231104;
+			public const int mobile_common_dialog_bg = 2131231104;
 			
 			// aapt resource value: 0x7F080181
-			public const int m3_tabs_line_indicator = 2131231105;
+			public const int mobile_common_dialog_tips_bg = 2131231105;
 			
 			// aapt resource value: 0x7F080182
-			public const int m3_tabs_rounded_line_indicator = 2131231106;
+			public const int mobile_common_icon_deleteinput = 2131231106;
 			
 			// aapt resource value: 0x7F080183
-			public const int m3_tabs_transparent_background = 2131231107;
+			public const int mobile_common_icon_nextarrow = 2131231107;
 			
 			// aapt resource value: 0x7F080184
-			public const int material_cursor_drawable = 2131231108;
+			public const int mobile_common_leba_bg_single_selected = 2131231108;
 			
 			// aapt resource value: 0x7F080185
-			public const int material_ic_calendar_black_24dp = 2131231109;
+			public const int mobile_common_leba_bg_single_unselected = 2131231109;
 			
 			// aapt resource value: 0x7F080186
-			public const int material_ic_clear_black_24dp = 2131231110;
+			public const int mobile_common_my_menu_selector_bg = 2131231110;
 			
 			// aapt resource value: 0x7F080187
-			public const int material_ic_edit_black_24dp = 2131231111;
+			public const int mobile_common_next_btn_selector = 2131231111;
 			
 			// aapt resource value: 0x7F080188
-			public const int material_ic_keyboard_arrow_left_black_24dp = 2131231112;
+			public const int mobile_common_progress_loading_img = 2131231112;
 			
 			// aapt resource value: 0x7F080189
-			public const int material_ic_keyboard_arrow_next_black_24dp = 2131231113;
+			public const int mobile_common_progress_style = 2131231113;
 			
 			// aapt resource value: 0x7F08018A
-			public const int material_ic_keyboard_arrow_previous_black_24dp = 2131231114;
+			public const int mobile_common_radius_5dp_white_bg = 2131231114;
 			
 			// aapt resource value: 0x7F08018B
-			public const int material_ic_keyboard_arrow_right_black_24dp = 2131231115;
+			public const int mobile_common_shape_round_bg = 2131231115;
 			
 			// aapt resource value: 0x7F08018C
-			public const int material_ic_menu_arrow_down_black_24dp = 2131231116;
+			public const int mobile_common_share_selector = 2131231116;
 			
 			// aapt resource value: 0x7F08018D
-			public const int material_ic_menu_arrow_up_black_24dp = 2131231117;
+			public const int mobile_common_title_back = 2131231117;
 			
 			// aapt resource value: 0x7F08018E
-			public const int message_system_list_item_divider = 2131231118;
+			public const int mtrl_bottomsheet_drag_handle = 2131231118;
 			
 			// aapt resource value: 0x7F08018F
-			public const int mic = 2131231119;
+			public const int mtrl_checkbox_button = 2131231119;
 			
 			// aapt resource value: 0x7F080190
-			public const int mobile_common_bg_btn_border_shape = 2131231120;
-			
-			// aapt resource value: 0x7F080192
-			public const int mobile_common_checkbox_small_checked = 2131231122;
-			
-			// aapt resource value: 0x7F080193
-			public const int mobile_common_checkbox_small_default = 2131231123;
+			public const int mtrl_checkbox_button_checked_unchecked = 2131231120;
 			
 			// aapt resource value: 0x7F080191
-			public const int mobile_common_check_box_selector = 2131231121;
+			public const int mtrl_checkbox_button_icon = 2131231121;
+			
+			// aapt resource value: 0x7F080192
+			public const int mtrl_checkbox_button_icon_checked_indeterminate = 2131231122;
+			
+			// aapt resource value: 0x7F080193
+			public const int mtrl_checkbox_button_icon_checked_unchecked = 2131231123;
 			
 			// aapt resource value: 0x7F080194
-			public const int mobile_common_common_pic_nointernet = 2131231124;
+			public const int mtrl_checkbox_button_icon_indeterminate_checked = 2131231124;
 			
 			// aapt resource value: 0x7F080195
-			public const int mobile_common_dialog_bg = 2131231125;
+			public const int mtrl_checkbox_button_icon_indeterminate_unchecked = 2131231125;
 			
 			// aapt resource value: 0x7F080196
-			public const int mobile_common_dialog_tips_bg = 2131231126;
+			public const int mtrl_checkbox_button_icon_unchecked_checked = 2131231126;
 			
 			// aapt resource value: 0x7F080197
-			public const int mobile_common_icon_deleteinput = 2131231127;
+			public const int mtrl_checkbox_button_icon_unchecked_indeterminate = 2131231127;
 			
 			// aapt resource value: 0x7F080198
-			public const int mobile_common_icon_nextarrow = 2131231128;
+			public const int mtrl_checkbox_button_unchecked_checked = 2131231128;
 			
 			// aapt resource value: 0x7F080199
-			public const int mobile_common_leba_bg_single_selected = 2131231129;
+			public const int mtrl_dialog_background = 2131231129;
 			
 			// aapt resource value: 0x7F08019A
-			public const int mobile_common_leba_bg_single_unselected = 2131231130;
+			public const int mtrl_dropdown_arrow = 2131231130;
 			
 			// aapt resource value: 0x7F08019B
-			public const int mobile_common_my_menu_selector_bg = 2131231131;
+			public const int mtrl_ic_arrow_drop_down = 2131231131;
 			
 			// aapt resource value: 0x7F08019C
-			public const int mobile_common_next_btn_selector = 2131231132;
+			public const int mtrl_ic_arrow_drop_up = 2131231132;
 			
 			// aapt resource value: 0x7F08019D
-			public const int mobile_common_progress_loading_img = 2131231133;
-			
-			// aapt resource value: 0x7F08019E
-			public const int mobile_common_progress_style = 2131231134;
+			public const int mtrl_ic_cancel = 2131231133;
 			
 			// aapt resource value: 0x7F08019F
-			public const int mobile_common_radius_5dp_white_bg = 2131231135;
+			public const int mtrl_ic_checkbox_checked = 2131231135;
 			
 			// aapt resource value: 0x7F0801A0
-			public const int mobile_common_shape_round_bg = 2131231136;
+			public const int mtrl_ic_checkbox_unchecked = 2131231136;
+			
+			// aapt resource value: 0x7F08019E
+			public const int mtrl_ic_check_mark = 2131231134;
 			
 			// aapt resource value: 0x7F0801A1
-			public const int mobile_common_share_selector = 2131231137;
+			public const int mtrl_ic_error = 2131231137;
 			
 			// aapt resource value: 0x7F0801A2
-			public const int mobile_common_title_back = 2131231138;
+			public const int mtrl_ic_indeterminate = 2131231138;
 			
 			// aapt resource value: 0x7F0801A3
-			public const int mtrl_bottomsheet_drag_handle = 2131231139;
+			public const int mtrl_navigation_bar_item_background = 2131231139;
 			
 			// aapt resource value: 0x7F0801A4
-			public const int mtrl_checkbox_button = 2131231140;
+			public const int mtrl_popupmenu_background = 2131231140;
 			
 			// aapt resource value: 0x7F0801A5
-			public const int mtrl_checkbox_button_checked_unchecked = 2131231141;
+			public const int mtrl_popupmenu_background_overlay = 2131231141;
 			
 			// aapt resource value: 0x7F0801A6
-			public const int mtrl_checkbox_button_icon = 2131231142;
+			public const int mtrl_switch_thumb = 2131231142;
 			
 			// aapt resource value: 0x7F0801A7
-			public const int mtrl_checkbox_button_icon_checked_indeterminate = 2131231143;
+			public const int mtrl_switch_thumb_checked = 2131231143;
 			
 			// aapt resource value: 0x7F0801A8
-			public const int mtrl_checkbox_button_icon_checked_unchecked = 2131231144;
+			public const int mtrl_switch_thumb_checked_pressed = 2131231144;
 			
 			// aapt resource value: 0x7F0801A9
-			public const int mtrl_checkbox_button_icon_indeterminate_checked = 2131231145;
+			public const int mtrl_switch_thumb_checked_unchecked = 2131231145;
 			
 			// aapt resource value: 0x7F0801AA
-			public const int mtrl_checkbox_button_icon_indeterminate_unchecked = 2131231146;
+			public const int mtrl_switch_thumb_pressed = 2131231146;
 			
 			// aapt resource value: 0x7F0801AB
-			public const int mtrl_checkbox_button_icon_unchecked_checked = 2131231147;
+			public const int mtrl_switch_thumb_pressed_checked = 2131231147;
 			
 			// aapt resource value: 0x7F0801AC
-			public const int mtrl_checkbox_button_icon_unchecked_indeterminate = 2131231148;
+			public const int mtrl_switch_thumb_pressed_unchecked = 2131231148;
 			
 			// aapt resource value: 0x7F0801AD
-			public const int mtrl_checkbox_button_unchecked_checked = 2131231149;
+			public const int mtrl_switch_thumb_unchecked = 2131231149;
 			
 			// aapt resource value: 0x7F0801AE
-			public const int mtrl_dialog_background = 2131231150;
+			public const int mtrl_switch_thumb_unchecked_checked = 2131231150;
 			
 			// aapt resource value: 0x7F0801AF
-			public const int mtrl_dropdown_arrow = 2131231151;
+			public const int mtrl_switch_thumb_unchecked_pressed = 2131231151;
 			
 			// aapt resource value: 0x7F0801B0
-			public const int mtrl_ic_arrow_drop_down = 2131231152;
+			public const int mtrl_switch_track = 2131231152;
 			
 			// aapt resource value: 0x7F0801B1
-			public const int mtrl_ic_arrow_drop_up = 2131231153;
+			public const int mtrl_switch_track_decoration = 2131231153;
 			
 			// aapt resource value: 0x7F0801B2
-			public const int mtrl_ic_cancel = 2131231154;
+			public const int mtrl_tabs_default_indicator = 2131231154;
 			
 			// aapt resource value: 0x7F0801B4
-			public const int mtrl_ic_checkbox_checked = 2131231156;
-			
-			// aapt resource value: 0x7F0801B5
-			public const int mtrl_ic_checkbox_unchecked = 2131231157;
+			public const int navigation_empty_icon = 2131231156;
 			
 			// aapt resource value: 0x7F0801B3
-			public const int mtrl_ic_check_mark = 2131231155;
+			public const int nav_back = 2131231155;
+			
+			// aapt resource value: 0x7F0801B5
+			public const int notification_action_background = 2131231157;
 			
 			// aapt resource value: 0x7F0801B6
-			public const int mtrl_ic_error = 2131231158;
+			public const int notification_bg = 2131231158;
 			
 			// aapt resource value: 0x7F0801B7
-			public const int mtrl_ic_indeterminate = 2131231159;
+			public const int notification_bg_low = 2131231159;
 			
 			// aapt resource value: 0x7F0801B8
-			public const int mtrl_navigation_bar_item_background = 2131231160;
+			public const int notification_bg_low_normal = 2131231160;
 			
 			// aapt resource value: 0x7F0801B9
-			public const int mtrl_popupmenu_background = 2131231161;
+			public const int notification_bg_low_pressed = 2131231161;
 			
 			// aapt resource value: 0x7F0801BA
-			public const int mtrl_popupmenu_background_overlay = 2131231162;
+			public const int notification_bg_normal = 2131231162;
 			
 			// aapt resource value: 0x7F0801BB
-			public const int mtrl_switch_thumb = 2131231163;
+			public const int notification_bg_normal_pressed = 2131231163;
 			
 			// aapt resource value: 0x7F0801BC
-			public const int mtrl_switch_thumb_checked = 2131231164;
+			public const int notification_icon_background = 2131231164;
 			
 			// aapt resource value: 0x7F0801BD
-			public const int mtrl_switch_thumb_checked_pressed = 2131231165;
+			public const int notification_oversize_large_icon_bg = 2131231165;
 			
 			// aapt resource value: 0x7F0801BE
-			public const int mtrl_switch_thumb_checked_unchecked = 2131231166;
+			public const int notification_template_icon_bg = 2131231166;
 			
 			// aapt resource value: 0x7F0801BF
-			public const int mtrl_switch_thumb_pressed = 2131231167;
+			public const int notification_template_icon_low_bg = 2131231167;
 			
 			// aapt resource value: 0x7F0801C0
-			public const int mtrl_switch_thumb_pressed_checked = 2131231168;
+			public const int notification_tile_bg = 2131231168;
 			
 			// aapt resource value: 0x7F0801C1
-			public const int mtrl_switch_thumb_pressed_unchecked = 2131231169;
+			public const int notify_panel_notification_icon_bg = 2131231169;
 			
 			// aapt resource value: 0x7F0801C2
-			public const int mtrl_switch_thumb_unchecked = 2131231170;
+			public const int play_module_video_cloudstage_direction_limit_down = 2131231170;
 			
 			// aapt resource value: 0x7F0801C3
-			public const int mtrl_switch_thumb_unchecked_checked = 2131231171;
+			public const int play_module_video_cloudstage_direction_limit_left = 2131231171;
 			
 			// aapt resource value: 0x7F0801C4
-			public const int mtrl_switch_thumb_unchecked_pressed = 2131231172;
+			public const int play_module_video_cloudstage_direction_limit_right = 2131231172;
 			
 			// aapt resource value: 0x7F0801C5
-			public const int mtrl_switch_track = 2131231173;
+			public const int play_module_video_cloudstage_direction_limit_up = 2131231173;
 			
 			// aapt resource value: 0x7F0801C6
-			public const int mtrl_switch_track_decoration = 2131231174;
+			public const int progress_style = 2131231174;
 			
 			// aapt resource value: 0x7F0801C7
-			public const int mtrl_tabs_default_indicator = 2131231175;
-			
-			// aapt resource value: 0x7F0801C9
-			public const int navigation_empty_icon = 2131231177;
+			public const int scan_capture = 2131231175;
 			
 			// aapt resource value: 0x7F0801C8
-			public const int nav_back = 2131231176;
+			public const int scan_line = 2131231176;
+			
+			// aapt resource value: 0x7F0801C9
+			public const int screenshot = 2131231177;
 			
 			// aapt resource value: 0x7F0801CA
-			public const int notification_action_background = 2131231178;
+			public const int screenshot_def = 2131231178;
 			
 			// aapt resource value: 0x7F0801CB
-			public const int notification_bg = 2131231179;
+			public const int screenshot_sel = 2131231179;
 			
 			// aapt resource value: 0x7F0801CC
-			public const int notification_bg_low = 2131231180;
+			public const int selector_orange_textview = 2131231180;
 			
 			// aapt resource value: 0x7F0801CD
-			public const int notification_bg_low_normal = 2131231181;
+			public const int selector_pickerview_btn = 2131231181;
 			
 			// aapt resource value: 0x7F0801CE
-			public const int notification_bg_low_pressed = 2131231182;
+			public const int setting_icon_check = 2131231182;
 			
 			// aapt resource value: 0x7F0801CF
-			public const int notification_bg_normal = 2131231183;
+			public const int shape_corners_edittext_1dp_normal = 2131231183;
 			
 			// aapt resource value: 0x7F0801D0
-			public const int notification_bg_normal_pressed = 2131231184;
+			public const int small_icon = 2131231184;
 			
 			// aapt resource value: 0x7F0801D1
-			public const int notification_icon_background = 2131231185;
+			public const int sure_background_def = 2131231185;
 			
 			// aapt resource value: 0x7F0801D2
-			public const int notification_oversize_large_icon_bg = 2131231186;
+			public const int sure_background_sel = 2131231186;
 			
 			// aapt resource value: 0x7F0801D3
-			public const int notification_template_icon_bg = 2131231187;
+			public const int switch_off = 2131231187;
 			
 			// aapt resource value: 0x7F0801D4
-			public const int notification_template_icon_low_bg = 2131231188;
+			public const int switch_off_disable = 2131231188;
 			
 			// aapt resource value: 0x7F0801D5
-			public const int notification_tile_bg = 2131231189;
+			public const int switch_on = 2131231189;
 			
 			// aapt resource value: 0x7F0801D6
-			public const int notify_panel_notification_icon_bg = 2131231190;
+			public const int switch_on_disable = 2131231190;
 			
 			// aapt resource value: 0x7F0801D7
-			public const int oval_color_white_18 = 2131231191;
+			public const int test_level_drawable = 2131231191;
 			
 			// aapt resource value: 0x7F0801D8
-			public const int play_module_video_cloudstage_direction_limit_down = 2131231192;
+			public const int text_cursor_drawable = 2131231192;
 			
 			// aapt resource value: 0x7F0801D9
-			public const int play_module_video_cloudstage_direction_limit_left = 2131231193;
+			public const int tip_background = 2131231193;
 			
 			// aapt resource value: 0x7F0801DA
-			public const int play_module_video_cloudstage_direction_limit_right = 2131231194;
+			public const int tooltip_frame_dark = 2131231194;
 			
 			// aapt resource value: 0x7F0801DB
-			public const int play_module_video_cloudstage_direction_limit_up = 2131231195;
+			public const int tooltip_frame_light = 2131231195;
 			
 			// aapt resource value: 0x7F0801DC
-			public const int progress_style = 2131231196;
+			public const int transparent_divider = 2131231196;
 			
 			// aapt resource value: 0x7F0801DD
-			public const int scan_capture = 2131231197;
+			public const int unlock = 2131231197;
 			
 			// aapt resource value: 0x7F0801DE
-			public const int scan_line = 2131231198;
+			public const int unlock_def = 2131231198;
 			
 			// aapt resource value: 0x7F0801DF
-			public const int screenshot = 2131231199;
+			public const int unlock_sel = 2131231199;
 			
 			// aapt resource value: 0x7F0801E0
-			public const int screenshot_def = 2131231200;
+			public const int user_module_bg_commit_button = 2131231200;
 			
 			// aapt resource value: 0x7F0801E1
-			public const int screenshot_sel = 2131231201;
+			public const int user_module_bg_commit_button_press = 2131231201;
 			
 			// aapt resource value: 0x7F0801E2
-			public const int selector_orange_textview = 2131231202;
+			public const int user_module_bg_commit_button_selector = 2131231202;
 			
 			// aapt resource value: 0x7F0801E3
-			public const int selector_pickerview_btn = 2131231203;
+			public const int user_module_icon_login_account = 2131231203;
 			
 			// aapt resource value: 0x7F0801E4
-			public const int setting_icon_check = 2131231204;
+			public const int video_background = 2131231204;
 			
 			// aapt resource value: 0x7F0801E5
-			public const int shape_corners_edittext_1dp_normal = 2131231205;
-			
-			// aapt resource value: 0x7F0801E6
-			public const int small_icon = 2131231206;
-			
-			// aapt resource value: 0x7F0801E7
-			public const int sure_background_def = 2131231207;
-			
-			// aapt resource value: 0x7F0801E8
-			public const int sure_background_sel = 2131231208;
-			
-			// aapt resource value: 0x7F0801E9
-			public const int switch_off = 2131231209;
-			
-			// aapt resource value: 0x7F0801EA
-			public const int switch_off_disable = 2131231210;
-			
-			// aapt resource value: 0x7F0801EB
-			public const int switch_on = 2131231211;
-			
-			// aapt resource value: 0x7F0801EC
-			public const int switch_on_disable = 2131231212;
-			
-			// aapt resource value: 0x7F0801ED
-			public const int test_level_drawable = 2131231213;
-			
-			// aapt resource value: 0x7F0801EE
-			public const int text_cursor_drawable = 2131231214;
-			
-			// aapt resource value: 0x7F0801EF
-			public const int tip_background = 2131231215;
-			
-			// aapt resource value: 0x7F0801F0
-			public const int tooltip_frame_dark = 2131231216;
-			
-			// aapt resource value: 0x7F0801F1
-			public const int tooltip_frame_light = 2131231217;
-			
-			// aapt resource value: 0x7F0801F2
-			public const int transparent_divider = 2131231218;
-			
-			// aapt resource value: 0x7F0801F3
-			public const int unlock = 2131231219;
-			
-			// aapt resource value: 0x7F0801F4
-			public const int unlock_def = 2131231220;
-			
-			// aapt resource value: 0x7F0801F5
-			public const int unlock_sel = 2131231221;
-			
-			// aapt resource value: 0x7F0801F6
-			public const int user_module_bg_commit_button = 2131231222;
-			
-			// aapt resource value: 0x7F0801F7
-			public const int user_module_bg_commit_button_press = 2131231223;
-			
-			// aapt resource value: 0x7F0801F8
-			public const int user_module_bg_commit_button_selector = 2131231224;
-			
-			// aapt resource value: 0x7F0801F9
-			public const int user_module_icon_login_account = 2131231225;
-			
-			// aapt resource value: 0x7F0801FA
-			public const int video_background = 2131231226;
-			
-			// aapt resource value: 0x7F0801FB
-			public const int wifi_connecting = 2131231227;
+			public const int wifi_connecting = 2131231205;
 			
 			static Drawable()
 			{
@@ -14977,670 +14881,640 @@
 			public const int auto = 2131296358;
 			
 			// aapt resource value: 0x7F090067
-			public const int autoAccept = 2131296359;
+			public const int autoComplete = 2131296359;
 			
 			// aapt resource value: 0x7F090068
-			public const int autoComplete = 2131296360;
+			public const int autoCompleteToEnd = 2131296360;
 			
 			// aapt resource value: 0x7F090069
-			public const int autoCompleteToEnd = 2131296361;
+			public const int autoCompleteToStart = 2131296361;
 			
 			// aapt resource value: 0x7F09006A
-			public const int autoCompleteToStart = 2131296362;
+			public const int av_anim = 2131296362;
 			
 			// aapt resource value: 0x7F09006B
-			public const int autoTest = 2131296363;
+			public const int barrier = 2131296363;
 			
 			// aapt resource value: 0x7F09006C
-			public const int av_anim = 2131296364;
-			
-			// aapt resource value: 0x7F09006D
-			public const int barrier = 2131296365;
+			public const int baseline = 2131296364;
 			
 			// aapt resource value: 0x7F09006E
-			public const int baseline = 2131296366;
+			public const int beginning = 2131296366;
 			
-			// aapt resource value: 0x7F090070
-			public const int beginning = 2131296368;
+			// aapt resource value: 0x7F09006D
+			public const int beginOnFirstDraw = 2131296365;
 			
 			// aapt resource value: 0x7F09006F
-			public const int beginOnFirstDraw = 2131296367;
+			public const int bestChoice = 2131296367;
+			
+			// aapt resource value: 0x7F090070
+			public const int bg = 2131296368;
 			
 			// aapt resource value: 0x7F090071
-			public const int bestChoice = 2131296369;
+			public const int bind_success_rl = 2131296369;
 			
 			// aapt resource value: 0x7F090072
-			public const int bg = 2131296370;
+			public const int bind_success_sv = 2131296370;
 			
 			// aapt resource value: 0x7F090073
-			public const int bind_success_rl = 2131296371;
+			public const int blocking = 2131296371;
 			
 			// aapt resource value: 0x7F090074
-			public const int bind_success_sv = 2131296372;
+			public const int both = 2131296372;
 			
 			// aapt resource value: 0x7F090075
-			public const int blocking = 2131296373;
+			public const int bottom = 2131296373;
 			
 			// aapt resource value: 0x7F090076
-			public const int both = 2131296374;
+			public const int bottomToTop = 2131296374;
 			
 			// aapt resource value: 0x7F090077
-			public const int bottom = 2131296375;
-			
-			// aapt resource value: 0x7F090078
-			public const int bottomToTop = 2131296376;
-			
-			// aapt resource value: 0x7F090079
-			public const int bottom_divider = 2131296377;
+			public const int bottom_divider = 2131296375;
 			
 			// aapt resource value: 0x7F090001
 			public const int BOTTOM_END = 2131296257;
 			
-			// aapt resource value: 0x7F09007A
-			public const int bottom_line = 2131296378;
+			// aapt resource value: 0x7F090078
+			public const int bottom_line = 2131296376;
 			
 			// aapt resource value: 0x7F090002
 			public const int BOTTOM_START = 2131296258;
 			
+			// aapt resource value: 0x7F090079
+			public const int bottom_tip_title = 2131296377;
+			
+			// aapt resource value: 0x7F09007A
+			public const int bounce = 2131296378;
+			
 			// aapt resource value: 0x7F09007B
-			public const int bottom_tip_title = 2131296379;
+			public const int bounceBoth = 2131296379;
 			
 			// aapt resource value: 0x7F09007C
-			public const int bounce = 2131296380;
+			public const int bounceEnd = 2131296380;
 			
 			// aapt resource value: 0x7F09007D
-			public const int bounceBoth = 2131296381;
+			public const int bounceStart = 2131296381;
 			
 			// aapt resource value: 0x7F09007E
-			public const int bounceEnd = 2131296382;
-			
-			// aapt resource value: 0x7F09007F
-			public const int bounceStart = 2131296383;
-			
-			// aapt resource value: 0x7F090080
-			public const int browser_actions_header_text = 2131296384;
-			
-			// aapt resource value: 0x7F090083
-			public const int browser_actions_menu_items = 2131296387;
+			public const int browser_actions_header_text = 2131296382;
 			
 			// aapt resource value: 0x7F090081
-			public const int browser_actions_menu_item_icon = 2131296385;
+			public const int browser_actions_menu_items = 2131296385;
+			
+			// aapt resource value: 0x7F09007F
+			public const int browser_actions_menu_item_icon = 2131296383;
+			
+			// aapt resource value: 0x7F090080
+			public const int browser_actions_menu_item_text = 2131296384;
 			
 			// aapt resource value: 0x7F090082
-			public const int browser_actions_menu_item_text = 2131296386;
+			public const int browser_actions_menu_view = 2131296386;
+			
+			// aapt resource value: 0x7F090083
+			public const int btnCancel = 2131296387;
 			
 			// aapt resource value: 0x7F090084
-			public const int browser_actions_menu_view = 2131296388;
+			public const int btnSubmit = 2131296388;
 			
 			// aapt resource value: 0x7F090085
-			public const int btnCancel = 2131296389;
+			public const int btn_cancel = 2131296389;
 			
 			// aapt resource value: 0x7F090086
-			public const int btnSubmit = 2131296390;
+			public const int btn_ok = 2131296390;
 			
 			// aapt resource value: 0x7F090087
-			public const int btn_cancel = 2131296391;
+			public const int buttonPanel = 2131296391;
 			
 			// aapt resource value: 0x7F090088
-			public const int btn_ok = 2131296392;
+			public const int cache_measures = 2131296392;
 			
 			// aapt resource value: 0x7F090089
-			public const int buttonPanel = 2131296393;
+			public const int callAnswerImg = 2131296393;
 			
 			// aapt resource value: 0x7F09008A
-			public const int cache_measures = 2131296394;
+			public const int callAnswerLayout = 2131296394;
 			
 			// aapt resource value: 0x7F09008B
-			public const int callAnswerImg = 2131296395;
+			public const int callHangupImg = 2131296395;
 			
 			// aapt resource value: 0x7F09008C
-			public const int callAnswerLayout = 2131296396;
+			public const int callHangupText = 2131296396;
 			
 			// aapt resource value: 0x7F09008D
-			public const int callHangupImg = 2131296397;
+			public const int callMeasure = 2131296397;
 			
 			// aapt resource value: 0x7F09008E
-			public const int callHangupText = 2131296398;
+			public const int callScreenshotImg = 2131296398;
 			
 			// aapt resource value: 0x7F09008F
-			public const int callMeasure = 2131296399;
+			public const int callTipText = 2131296399;
 			
 			// aapt resource value: 0x7F090090
-			public const int callScreenshotImg = 2131296400;
+			public const int callUnlockImg = 2131296400;
 			
 			// aapt resource value: 0x7F090091
-			public const int callTipText = 2131296401;
+			public const int cancel_action = 2131296401;
 			
 			// aapt resource value: 0x7F090092
-			public const int callUnlockImg = 2131296402;
+			public const int cancel_btn = 2131296402;
 			
 			// aapt resource value: 0x7F090093
-			public const int call_accept = 2131296403;
+			public const int cancel_button = 2131296403;
 			
 			// aapt resource value: 0x7F090094
-			public const int camera0 = 2131296404;
+			public const int capture_container = 2131296404;
 			
 			// aapt resource value: 0x7F090095
-			public const int camera1 = 2131296405;
+			public const int capture_crop_view = 2131296405;
 			
 			// aapt resource value: 0x7F090096
-			public const int cancel_action = 2131296406;
+			public const int capture_mask_bottom = 2131296406;
 			
 			// aapt resource value: 0x7F090097
-			public const int cancel_btn = 2131296407;
+			public const int capture_mask_top = 2131296407;
 			
 			// aapt resource value: 0x7F090098
-			public const int cancel_button = 2131296408;
+			public const int capture_preview = 2131296408;
 			
 			// aapt resource value: 0x7F090099
-			public const int capture_container = 2131296409;
+			public const int capture_scan_line = 2131296409;
 			
 			// aapt resource value: 0x7F09009A
-			public const int capture_crop_view = 2131296410;
+			public const int carryVelocity = 2131296410;
 			
 			// aapt resource value: 0x7F09009B
-			public const int capture_mask_bottom = 2131296411;
+			public const int cb_confirm = 2131296411;
 			
 			// aapt resource value: 0x7F09009C
-			public const int capture_mask_top = 2131296412;
+			public const int cc_btn_back = 2131296412;
 			
 			// aapt resource value: 0x7F09009D
-			public const int capture_preview = 2131296413;
+			public const int cc_line_long = 2131296413;
 			
 			// aapt resource value: 0x7F09009E
-			public const int capture_scan_line = 2131296414;
+			public const int cc_listview = 2131296414;
 			
 			// aapt resource value: 0x7F09009F
-			public const int carryVelocity = 2131296415;
+			public const int cc_nameView = 2131296415;
 			
 			// aapt resource value: 0x7F0900A0
-			public const int cb_confirm = 2131296416;
+			public const int cc_rl_topview = 2131296416;
 			
 			// aapt resource value: 0x7F0900A1
-			public const int cc_btn_back = 2131296417;
+			public const int cc_searchBarContainer = 2131296417;
 			
 			// aapt resource value: 0x7F0900A2
-			public const int cc_line_long = 2131296418;
+			public const int cc_sectionTextView = 2131296418;
 			
 			// aapt resource value: 0x7F0900A3
-			public const int cc_listview = 2131296419;
+			public const int cc_tv_activity_title = 2131296419;
 			
 			// aapt resource value: 0x7F0900A4
-			public const int cc_nameView = 2131296420;
+			public const int center = 2131296420;
 			
 			// aapt resource value: 0x7F0900A5
-			public const int cc_rl_topview = 2131296421;
+			public const int centerCrop = 2131296421;
 			
 			// aapt resource value: 0x7F0900A6
-			public const int cc_searchBarContainer = 2131296422;
+			public const int centerInside = 2131296422;
 			
 			// aapt resource value: 0x7F0900A7
-			public const int cc_sectionTextView = 2131296423;
+			public const int center_horizontal = 2131296423;
 			
 			// aapt resource value: 0x7F0900A8
-			public const int cc_tv_activity_title = 2131296424;
+			public const int center_title = 2131296424;
 			
 			// aapt resource value: 0x7F0900A9
-			public const int center = 2131296425;
+			public const int center_vertical = 2131296425;
 			
 			// aapt resource value: 0x7F0900AA
-			public const int centerCrop = 2131296426;
+			public const int chain = 2131296426;
 			
 			// aapt resource value: 0x7F0900AB
-			public const int centerInside = 2131296427;
+			public const int chain2 = 2131296427;
 			
 			// aapt resource value: 0x7F0900AC
-			public const int center_horizontal = 2131296428;
+			public const int chains = 2131296428;
 			
 			// aapt resource value: 0x7F0900AD
-			public const int center_title = 2131296429;
+			public const int checkbox = 2131296429;
 			
 			// aapt resource value: 0x7F0900AE
-			public const int center_vertical = 2131296430;
+			public const int @checked = 2131296430;
 			
 			// aapt resource value: 0x7F0900AF
-			public const int chain = 2131296431;
+			public const int child_content = 2131296431;
 			
 			// aapt resource value: 0x7F0900B0
-			public const int chain2 = 2131296432;
+			public const int chronometer = 2131296432;
 			
 			// aapt resource value: 0x7F0900B1
-			public const int chains = 2131296433;
+			public const int circle_center = 2131296433;
 			
 			// aapt resource value: 0x7F0900B2
-			public const int checkbox = 2131296434;
+			public const int clear_text = 2131296434;
 			
 			// aapt resource value: 0x7F0900B3
-			public const int @checked = 2131296435;
+			public const int clip_horizontal = 2131296435;
 			
 			// aapt resource value: 0x7F0900B4
-			public const int child_content = 2131296436;
+			public const int clip_vertical = 2131296436;
 			
 			// aapt resource value: 0x7F0900B5
-			public const int chronometer = 2131296437;
+			public const int clockwise = 2131296437;
 			
 			// aapt resource value: 0x7F0900B6
-			public const int circle_center = 2131296438;
+			public const int close = 2131296438;
 			
 			// aapt resource value: 0x7F0900B7
-			public const int clear_text = 2131296439;
+			public const int closest = 2131296439;
 			
 			// aapt resource value: 0x7F0900B8
-			public const int clip_horizontal = 2131296440;
+			public const int cloud_image1 = 2131296440;
 			
 			// aapt resource value: 0x7F0900B9
-			public const int clip_vertical = 2131296441;
+			public const int cloud_image2 = 2131296441;
 			
 			// aapt resource value: 0x7F0900BA
-			public const int clockwise = 2131296442;
+			public const int cloud_progrees_img = 2131296442;
 			
 			// aapt resource value: 0x7F0900BB
-			public const int close = 2131296443;
+			public const int collapseActionView = 2131296443;
 			
 			// aapt resource value: 0x7F0900BC
-			public const int closest = 2131296444;
+			public const int collapsed = 2131296444;
 			
 			// aapt resource value: 0x7F0900BD
-			public const int cloud_image1 = 2131296445;
+			public const int comment = 2131296445;
 			
 			// aapt resource value: 0x7F0900BE
-			public const int cloud_image2 = 2131296446;
+			public const int common_search_cancel = 2131296446;
 			
 			// aapt resource value: 0x7F0900BF
-			public const int cloud_progrees_img = 2131296447;
+			public const int common_search_input = 2131296447;
 			
 			// aapt resource value: 0x7F0900C0
-			public const int collapseActionView = 2131296448;
+			public const int compress = 2131296448;
 			
 			// aapt resource value: 0x7F0900C1
-			public const int collapsed = 2131296449;
+			public const int confirm_btn = 2131296449;
 			
 			// aapt resource value: 0x7F0900C2
-			public const int comment = 2131296450;
+			public const int confirm_button = 2131296450;
 			
 			// aapt resource value: 0x7F0900C3
-			public const int common_search_cancel = 2131296451;
+			public const int constraint = 2131296451;
 			
 			// aapt resource value: 0x7F0900C4
-			public const int common_search_input = 2131296452;
+			public const int container = 2131296452;
 			
 			// aapt resource value: 0x7F0900C5
-			public const int compress = 2131296453;
+			public const int content = 2131296453;
 			
 			// aapt resource value: 0x7F0900C6
-			public const int configAVMsg = 2131296454;
+			public const int contentFrame = 2131296454;
 			
 			// aapt resource value: 0x7F0900C7
-			public const int confirm_btn = 2131296455;
+			public const int contentPanel = 2131296455;
 			
 			// aapt resource value: 0x7F0900C8
-			public const int confirm_button = 2131296456;
+			public const int content_container = 2131296456;
 			
 			// aapt resource value: 0x7F0900C9
-			public const int constraint = 2131296457;
+			public const int contiguous = 2131296457;
 			
 			// aapt resource value: 0x7F0900CA
-			public const int container = 2131296458;
+			public const int continuousVelocity = 2131296458;
 			
 			// aapt resource value: 0x7F0900CB
-			public const int content = 2131296459;
+			public const int coordinator = 2131296459;
 			
 			// aapt resource value: 0x7F0900CC
-			public const int contentFrame = 2131296460;
+			public const int cos = 2131296460;
 			
 			// aapt resource value: 0x7F0900CD
-			public const int contentPanel = 2131296461;
+			public const int countdown_view = 2131296461;
 			
 			// aapt resource value: 0x7F0900CE
-			public const int content_container = 2131296462;
+			public const int counterclockwise = 2131296462;
 			
 			// aapt resource value: 0x7F0900CF
-			public const int contiguous = 2131296463;
-			
-			// aapt resource value: 0x7F0900D0
-			public const int continuousVelocity = 2131296464;
-			
-			// aapt resource value: 0x7F0900D1
-			public const int coordinator = 2131296465;
-			
-			// aapt resource value: 0x7F0900D2
-			public const int cos = 2131296466;
-			
-			// aapt resource value: 0x7F0900D3
-			public const int countdown_view = 2131296467;
-			
-			// aapt resource value: 0x7F0900D4
-			public const int counterclockwise = 2131296468;
-			
-			// aapt resource value: 0x7F0900D5
-			public const int cradle = 2131296469;
+			public const int cradle = 2131296463;
 			
 			// aapt resource value: 0x7F090003
 			public const int CTRL = 2131296259;
 			
+			// aapt resource value: 0x7F0900D0
+			public const int cubein = 2131296464;
+			
+			// aapt resource value: 0x7F0900D1
+			public const int cubeout = 2131296465;
+			
+			// aapt resource value: 0x7F0900D2
+			public const int currentState = 2131296466;
+			
+			// aapt resource value: 0x7F0900D3
+			public const int custom = 2131296467;
+			
+			// aapt resource value: 0x7F0900D4
+			public const int customPanel = 2131296468;
+			
+			// aapt resource value: 0x7F0900D5
+			public const int cut = 2131296469;
+			
 			// aapt resource value: 0x7F0900D6
-			public const int cubein = 2131296470;
+			public const int date_picker_actions = 2131296470;
 			
 			// aapt resource value: 0x7F0900D7
-			public const int cubeout = 2131296471;
+			public const int day = 2131296471;
 			
 			// aapt resource value: 0x7F0900D8
-			public const int currentState = 2131296472;
+			public const int decelerate = 2131296472;
 			
 			// aapt resource value: 0x7F0900D9
-			public const int custom = 2131296473;
+			public const int decelerateAndComplete = 2131296473;
 			
 			// aapt resource value: 0x7F0900DA
-			public const int customPanel = 2131296474;
+			public const int decode = 2131296474;
 			
 			// aapt resource value: 0x7F0900DB
-			public const int cut = 2131296475;
+			public const int decode_failed = 2131296475;
 			
 			// aapt resource value: 0x7F0900DC
-			public const int date_picker_actions = 2131296476;
+			public const int decode_succeeded = 2131296476;
 			
 			// aapt resource value: 0x7F0900DD
-			public const int day = 2131296477;
+			public const int decor_content_parent = 2131296477;
 			
 			// aapt resource value: 0x7F0900DE
-			public const int decelerate = 2131296478;
+			public const int default_activity_button = 2131296478;
 			
 			// aapt resource value: 0x7F0900DF
-			public const int decelerateAndComplete = 2131296479;
+			public const int deltaRelative = 2131296479;
 			
 			// aapt resource value: 0x7F0900E0
-			public const int decode = 2131296480;
+			public const int dependency_ordering = 2131296480;
 			
 			// aapt resource value: 0x7F0900E1
-			public const int decode_failed = 2131296481;
+			public const int description = 2131296481;
 			
 			// aapt resource value: 0x7F0900E2
-			public const int decode_succeeded = 2131296482;
+			public const int design_bottom_sheet = 2131296482;
 			
 			// aapt resource value: 0x7F0900E3
-			public const int decor_content_parent = 2131296483;
+			public const int design_menu_item_action_area = 2131296483;
 			
 			// aapt resource value: 0x7F0900E4
-			public const int default_activity_button = 2131296484;
+			public const int design_menu_item_action_area_stub = 2131296484;
 			
 			// aapt resource value: 0x7F0900E5
-			public const int deltaRelative = 2131296485;
+			public const int design_menu_item_text = 2131296485;
 			
 			// aapt resource value: 0x7F0900E6
-			public const int dependency_ordering = 2131296486;
-			
-			// aapt resource value: 0x7F0900E7
-			public const int description = 2131296487;
-			
-			// aapt resource value: 0x7F0900E8
-			public const int design_bottom_sheet = 2131296488;
+			public const int design_navigation_view = 2131296486;
 			
 			// aapt resource value: 0x7F0900E9
-			public const int design_menu_item_action_area = 2131296489;
+			public const int device_hidden_title = 2131296489;
 			
 			// aapt resource value: 0x7F0900EA
-			public const int design_menu_item_action_area_stub = 2131296490;
+			public const int device_list = 2131296490;
 			
 			// aapt resource value: 0x7F0900EB
-			public const int design_menu_item_text = 2131296491;
+			public const int device_name = 2131296491;
 			
 			// aapt resource value: 0x7F0900EC
-			public const int design_navigation_view = 2131296492;
-			
-			// aapt resource value: 0x7F0900EF
-			public const int device_hidden_title = 2131296495;
-			
-			// aapt resource value: 0x7F0900F0
-			public const int device_list = 2131296496;
-			
-			// aapt resource value: 0x7F0900F1
-			public const int device_name = 2131296497;
-			
-			// aapt resource value: 0x7F0900F2
-			public const int device_name_input = 2131296498;
-			
-			// aapt resource value: 0x7F0900F3
-			public const int device_wifi_list = 2131296499;
-			
-			// aapt resource value: 0x7F0900F4
-			public const int device_wifi_list_connected = 2131296500;
-			
-			// aapt resource value: 0x7F0900F5
-			public const int device_wifi_list_connected_info = 2131296501;
-			
-			// aapt resource value: 0x7F0900F6
-			public const int device_wifi_list_empty_view = 2131296502;
-			
-			// aapt resource value: 0x7F0900F7
-			public const int device_wifi_list_layout = 2131296503;
-			
-			// aapt resource value: 0x7F0900F8
-			public const int device_wifi_list_text = 2131296504;
-			
-			// aapt resource value: 0x7F0900F9
-			public const int device_wifi_list_title = 2131296505;
-			
-			// aapt resource value: 0x7F0900FA
-			public const int device_wifi_no_5g = 2131296506;
-			
-			// aapt resource value: 0x7F0900FB
-			public const int device_wifi_password = 2131296507;
-			
-			// aapt resource value: 0x7F0900FC
-			public const int device_wifi_password_done_btn = 2131296508;
-			
-			// aapt resource value: 0x7F0900FD
-			public const int device_wifi_password_title = 2131296509;
-			
-			// aapt resource value: 0x7F0900FE
-			public const int device_wifi_ssid = 2131296510;
+			public const int device_name_input = 2131296492;
 			
 			// aapt resource value: 0x7F0900ED
-			public const int dev_img = 2131296493;
+			public const int device_wifi_list = 2131296493;
 			
 			// aapt resource value: 0x7F0900EE
-			public const int dev_wifi_name = 2131296494;
+			public const int device_wifi_list_connected = 2131296494;
 			
-			// aapt resource value: 0x7F0900FF
-			public const int dh_scannerstyle_view = 2131296511;
+			// aapt resource value: 0x7F0900EF
+			public const int device_wifi_list_connected_info = 2131296495;
 			
-			// aapt resource value: 0x7F090100
-			public const int dh_scanview = 2131296512;
+			// aapt resource value: 0x7F0900F0
+			public const int device_wifi_list_empty_view = 2131296496;
 			
-			// aapt resource value: 0x7F090101
-			public const int dialog_button = 2131296513;
+			// aapt resource value: 0x7F0900F1
+			public const int device_wifi_list_layout = 2131296497;
+			
+			// aapt resource value: 0x7F0900F2
+			public const int device_wifi_list_text = 2131296498;
+			
+			// aapt resource value: 0x7F0900F3
+			public const int device_wifi_list_title = 2131296499;
+			
+			// aapt resource value: 0x7F0900F4
+			public const int device_wifi_no_5g = 2131296500;
+			
+			// aapt resource value: 0x7F0900F5
+			public const int device_wifi_password = 2131296501;
+			
+			// aapt resource value: 0x7F0900F6
+			public const int device_wifi_password_done_btn = 2131296502;
+			
+			// aapt resource value: 0x7F0900F7
+			public const int device_wifi_password_title = 2131296503;
+			
+			// aapt resource value: 0x7F0900F8
+			public const int device_wifi_ssid = 2131296504;
+			
+			// aapt resource value: 0x7F0900E7
+			public const int dev_img = 2131296487;
+			
+			// aapt resource value: 0x7F0900E8
+			public const int dev_wifi_name = 2131296488;
+			
+			// aapt resource value: 0x7F0900F9
+			public const int dh_scannerstyle_view = 2131296505;
+			
+			// aapt resource value: 0x7F0900FA
+			public const int dh_scanview = 2131296506;
+			
+			// aapt resource value: 0x7F0900FB
+			public const int dialog_button = 2131296507;
+			
+			// aapt resource value: 0x7F0900FC
+			public const int dimensions = 2131296508;
+			
+			// aapt resource value: 0x7F0900FD
+			public const int direct = 2131296509;
 			
 			// aapt resource value: 0x7F090102
-			public const int dialog_cancel_btn = 2131296514;
+			public const int disabled = 2131296514;
+			
+			// aapt resource value: 0x7F0900FE
+			public const int disableHome = 2131296510;
+			
+			// aapt resource value: 0x7F0900FF
+			public const int disableIntraAutoTransition = 2131296511;
+			
+			// aapt resource value: 0x7F090100
+			public const int disablePostScroll = 2131296512;
+			
+			// aapt resource value: 0x7F090101
+			public const int disableScroll = 2131296513;
 			
 			// aapt resource value: 0x7F090103
-			public const int dialog_ok_btn = 2131296515;
+			public const int disagree_btn = 2131296515;
 			
 			// aapt resource value: 0x7F090104
-			public const int dimensions = 2131296516;
+			public const int disjoint = 2131296516;
 			
 			// aapt resource value: 0x7F090105
-			public const int direct = 2131296517;
-			
-			// aapt resource value: 0x7F09010B
-			public const int disabled = 2131296523;
+			public const int dragAnticlockwise = 2131296517;
 			
 			// aapt resource value: 0x7F090106
-			public const int disableHome = 2131296518;
+			public const int dragClockwise = 2131296518;
 			
 			// aapt resource value: 0x7F090107
-			public const int disableIntraAutoTransition = 2131296519;
+			public const int dragDown = 2131296519;
 			
 			// aapt resource value: 0x7F090108
-			public const int disablePostScroll = 2131296520;
+			public const int dragEnd = 2131296520;
 			
 			// aapt resource value: 0x7F090109
-			public const int disableReportBytes = 2131296521;
+			public const int dragLeft = 2131296521;
 			
 			// aapt resource value: 0x7F09010A
-			public const int disableScroll = 2131296522;
+			public const int dragRight = 2131296522;
+			
+			// aapt resource value: 0x7F09010B
+			public const int dragStart = 2131296523;
 			
 			// aapt resource value: 0x7F09010C
-			public const int disagree_btn = 2131296524;
+			public const int dragUp = 2131296524;
 			
 			// aapt resource value: 0x7F09010D
-			public const int disjoint = 2131296525;
+			public const int dropdown_menu = 2131296525;
 			
 			// aapt resource value: 0x7F09010E
-			public const int dragAnticlockwise = 2131296526;
+			public const int easeIn = 2131296526;
 			
 			// aapt resource value: 0x7F09010F
-			public const int dragClockwise = 2131296527;
+			public const int easeInOut = 2131296527;
 			
 			// aapt resource value: 0x7F090110
-			public const int dragDown = 2131296528;
+			public const int easeOut = 2131296528;
 			
 			// aapt resource value: 0x7F090111
-			public const int dragEnd = 2131296529;
+			public const int east = 2131296529;
 			
 			// aapt resource value: 0x7F090112
-			public const int dragLeft = 2131296530;
+			public const int edge = 2131296530;
 			
 			// aapt resource value: 0x7F090113
-			public const int dragRight = 2131296531;
+			public const int edit_query = 2131296531;
 			
 			// aapt resource value: 0x7F090114
-			public const int dragStart = 2131296532;
+			public const int edit_text_id = 2131296532;
 			
 			// aapt resource value: 0x7F090115
-			public const int dragUp = 2131296533;
+			public const int elastic = 2131296533;
 			
 			// aapt resource value: 0x7F090116
-			public const int dropdown_menu = 2131296534;
+			public const int embed = 2131296534;
 			
 			// aapt resource value: 0x7F090117
-			public const int easeIn = 2131296535;
+			public const int empty_tip = 2131296535;
 			
 			// aapt resource value: 0x7F090118
-			public const int easeInOut = 2131296536;
+			public const int encrypt_key = 2131296536;
 			
 			// aapt resource value: 0x7F090119
-			public const int easeOut = 2131296537;
+			public const int end = 2131296537;
 			
 			// aapt resource value: 0x7F09011A
-			public const int east = 2131296538;
+			public const int endToStart = 2131296538;
 			
 			// aapt resource value: 0x7F09011B
-			public const int edge = 2131296539;
+			public const int end_padder = 2131296539;
 			
 			// aapt resource value: 0x7F09011C
-			public const int edit_query = 2131296540;
+			public const int enterAlways = 2131296540;
 			
 			// aapt resource value: 0x7F09011D
-			public const int edit_text_id = 2131296541;
+			public const int enterAlwaysCollapsed = 2131296541;
 			
 			// aapt resource value: 0x7F09011E
-			public const int elastic = 2131296542;
+			public const int error_tip = 2131296542;
 			
 			// aapt resource value: 0x7F09011F
-			public const int embed = 2131296543;
+			public const int error_tip_title = 2131296543;
 			
 			// aapt resource value: 0x7F090120
-			public const int empty_tip = 2131296544;
+			public const int et_device_pwd = 2131296544;
 			
 			// aapt resource value: 0x7F090121
-			public const int enableReportBytes = 2131296545;
+			public const int et_input_sc = 2131296545;
 			
 			// aapt resource value: 0x7F090122
-			public const int encrypt_key = 2131296546;
+			public const int et_new_name = 2131296546;
 			
 			// aapt resource value: 0x7F090123
-			public const int end = 2131296547;
+			public const int et_pwd_new = 2131296547;
 			
 			// aapt resource value: 0x7F090124
-			public const int endToStart = 2131296548;
+			public const int et_sms_valid = 2131296548;
 			
 			// aapt resource value: 0x7F090125
-			public const int end_padder = 2131296549;
+			public const int et_user_input = 2131296549;
 			
 			// aapt resource value: 0x7F090126
-			public const int enterAlways = 2131296550;
-			
-			// aapt resource value: 0x7F090127
-			public const int enterAlwaysCollapsed = 2131296551;
+			public const int exitUntilCollapsed = 2131296550;
 			
 			// aapt resource value: 0x7F090128
-			public const int error_tip = 2131296552;
+			public const int expanded = 2131296552;
 			
 			// aapt resource value: 0x7F090129
-			public const int error_tip_title = 2131296553;
+			public const int expanded_menu = 2131296553;
+			
+			// aapt resource value: 0x7F090127
+			public const int expand_activities_button = 2131296551;
 			
 			// aapt resource value: 0x7F09012A
-			public const int et_device_pwd = 2131296554;
+			public const int fade = 2131296554;
 			
 			// aapt resource value: 0x7F09012B
-			public const int et_input_sc = 2131296555;
-			
-			// aapt resource value: 0x7F09012C
-			public const int et_new_name = 2131296556;
-			
-			// aapt resource value: 0x7F09012D
-			public const int et_pwd_new = 2131296557;
-			
-			// aapt resource value: 0x7F09012E
-			public const int et_sms_valid = 2131296558;
-			
-			// aapt resource value: 0x7F09012F
-			public const int et_user_input = 2131296559;
-			
-			// aapt resource value: 0x7F090130
-			public const int exitUntilCollapsed = 2131296560;
-			
-			// aapt resource value: 0x7F090132
-			public const int expanded = 2131296562;
-			
-			// aapt resource value: 0x7F090133
-			public const int expanded_menu = 2131296563;
-			
-			// aapt resource value: 0x7F090131
-			public const int expand_activities_button = 2131296561;
-			
-			// aapt resource value: 0x7F090134
-			public const int fade = 2131296564;
+			public const int fill = 2131296555;
 			
 			// aapt resource value: 0x7F090004
 			public const int FILL = 2131296260;
 			
-			// aapt resource value: 0x7F090135
-			public const int fill = 2131296565;
+			// aapt resource value: 0x7F09012E
+			public const int filled = 2131296558;
 			
-			// aapt resource value: 0x7F090138
-			public const int filled = 2131296568;
-			
-			// aapt resource value: 0x7F090136
-			public const int fill_horizontal = 2131296566;
+			// aapt resource value: 0x7F09012C
+			public const int fill_horizontal = 2131296556;
 			
 			// aapt resource value: 0x7F090005
 			public const int FILL_STROKE = 2131296261;
 			
-			// aapt resource value: 0x7F090137
-			public const int fill_vertical = 2131296567;
+			// aapt resource value: 0x7F09012D
+			public const int fill_vertical = 2131296557;
 			
-			// aapt resource value: 0x7F090139
-			public const int fingerprint_icon = 2131296569;
+			// aapt resource value: 0x7F09012F
+			public const int fingerprint_icon = 2131296559;
 			
-			// aapt resource value: 0x7F09013A
-			public const int fitCenter = 2131296570;
+			// aapt resource value: 0x7F090130
+			public const int fitCenter = 2131296560;
 			
-			// aapt resource value: 0x7F09013B
-			public const int fitEnd = 2131296571;
+			// aapt resource value: 0x7F090131
+			public const int fitEnd = 2131296561;
 			
-			// aapt resource value: 0x7F09013C
-			public const int fitStart = 2131296572;
+			// aapt resource value: 0x7F090132
+			public const int fitStart = 2131296562;
 			
-			// aapt resource value: 0x7F09013D
-			public const int fitToContents = 2131296573;
+			// aapt resource value: 0x7F090133
+			public const int fitToContents = 2131296563;
 			
-			// aapt resource value: 0x7F09013E
-			public const int fitXY = 2131296574;
+			// aapt resource value: 0x7F090134
+			public const int fitXY = 2131296564;
 			
-			// aapt resource value: 0x7F09013F
-			public const int @fixed = 2131296575;
+			// aapt resource value: 0x7F090135
+			public const int @fixed = 2131296565;
 			
 			// aapt resource value: 0x7F090007
 			public const int FixedBehind = 2131296263;
@@ -15648,1322 +15522,1211 @@
 			// aapt resource value: 0x7F090008
 			public const int FixedFront = 2131296264;
 			
+			// aapt resource value: 0x7F090137
+			public const int flip = 2131296567;
+			
+			// aapt resource value: 0x7F090138
+			public const int fliphorizontal = 2131296568;
+			
+			// aapt resource value: 0x7F090139
+			public const int flipvertical = 2131296569;
+			
+			// aapt resource value: 0x7F09013A
+			public const int floating = 2131296570;
+			
+			// aapt resource value: 0x7F090136
+			public const int fl_inner = 2131296566;
+			
+			// aapt resource value: 0x7F09013B
+			public const int forever = 2131296571;
+			
 			// aapt resource value: 0x7F090141
-			public const int flip = 2131296577;
+			public const int fragment_container_view_tag = 2131296577;
 			
 			// aapt resource value: 0x7F090142
-			public const int fliphorizontal = 2131296578;
+			public const int frost = 2131296578;
 			
-			// aapt resource value: 0x7F090143
-			public const int flipvertical = 2131296579;
+			// aapt resource value: 0x7F09013C
+			public const int fr_content = 2131296572;
 			
-			// aapt resource value: 0x7F090144
-			public const int floating = 2131296580;
+			// aapt resource value: 0x7F09013D
+			public const int fr_detail = 2131296573;
+			
+			// aapt resource value: 0x7F09013E
+			public const int fr_live_window = 2131296574;
+			
+			// aapt resource value: 0x7F09013F
+			public const int fr_live_window_content = 2131296575;
 			
 			// aapt resource value: 0x7F090140
-			public const int fl_inner = 2131296576;
+			public const int fr_record = 2131296576;
 			
-			// aapt resource value: 0x7F090145
-			public const int forever = 2131296581;
-			
-			// aapt resource value: 0x7F09014B
-			public const int fragment_container_view_tag = 2131296587;
-			
-			// aapt resource value: 0x7F09014C
-			public const int frost = 2131296588;
-			
-			// aapt resource value: 0x7F090146
-			public const int fr_content = 2131296582;
-			
-			// aapt resource value: 0x7F090147
-			public const int fr_detail = 2131296583;
-			
-			// aapt resource value: 0x7F090148
-			public const int fr_live_window = 2131296584;
-			
-			// aapt resource value: 0x7F090149
-			public const int fr_live_window_content = 2131296585;
-			
-			// aapt resource value: 0x7F09014A
-			public const int fr_record = 2131296586;
-			
-			// aapt resource value: 0x7F09014D
-			public const int fullscreen_header = 2131296589;
+			// aapt resource value: 0x7F090143
+			public const int fullscreen_header = 2131296579;
 			
 			// aapt resource value: 0x7F090006
 			public const int FUNCTION = 2131296262;
 			
+			// aapt resource value: 0x7F090144
+			public const int gatway_list = 2131296580;
+			
+			// aapt resource value: 0x7F090145
+			public const int gd_btn_back = 2131296581;
+			
+			// aapt resource value: 0x7F090146
+			public const int gd_btn_myLocation = 2131296582;
+			
+			// aapt resource value: 0x7F090147
+			public const int gd_btn_save = 2131296583;
+			
+			// aapt resource value: 0x7F090148
+			public const int gd_img_search_delete = 2131296584;
+			
+			// aapt resource value: 0x7F090149
+			public const int gd_ll_myhome = 2131296585;
+			
+			// aapt resource value: 0x7F09014A
+			public const int gd_ll_search = 2131296586;
+			
+			// aapt resource value: 0x7F09014B
+			public const int gd_mapView = 2131296587;
+			
+			// aapt resource value: 0x7F09014C
+			public const int gd_rl_topview = 2131296588;
+			
+			// aapt resource value: 0x7F09014D
+			public const int gd_tv_activity_title = 2131296589;
+			
 			// aapt resource value: 0x7F09014E
-			public const int gatway_list = 2131296590;
+			public const int gd_tv_radius = 2131296590;
 			
 			// aapt resource value: 0x7F09014F
-			public const int gd_btn_back = 2131296591;
+			public const int gd_tv_search_title = 2131296591;
 			
 			// aapt resource value: 0x7F090150
-			public const int gd_btn_myLocation = 2131296592;
+			public const int ghost_view = 2131296592;
 			
 			// aapt resource value: 0x7F090151
-			public const int gd_btn_save = 2131296593;
+			public const int ghost_view_holder = 2131296593;
 			
 			// aapt resource value: 0x7F090152
-			public const int gd_img_search_delete = 2131296594;
+			public const int gone = 2131296594;
 			
 			// aapt resource value: 0x7F090153
-			public const int gd_ll_myhome = 2131296595;
+			public const int graph = 2131296595;
 			
 			// aapt resource value: 0x7F090154
-			public const int gd_ll_search = 2131296596;
+			public const int graph_wrap = 2131296596;
 			
 			// aapt resource value: 0x7F090155
-			public const int gd_mapView = 2131296597;
-			
-			// aapt resource value: 0x7F090156
-			public const int gd_rl_topview = 2131296598;
+			public const int gridview = 2131296597;
 			
 			// aapt resource value: 0x7F090157
-			public const int gd_tv_activity_title = 2131296599;
+			public const int grouping = 2131296599;
 			
 			// aapt resource value: 0x7F090158
-			public const int gd_tv_radius = 2131296600;
+			public const int groups = 2131296600;
+			
+			// aapt resource value: 0x7F090156
+			public const int group_divider = 2131296598;
 			
 			// aapt resource value: 0x7F090159
-			public const int gd_tv_search_title = 2131296601;
+			public const int hdl_gallery_rootView = 2131296601;
 			
 			// aapt resource value: 0x7F09015A
-			public const int ghost_view = 2131296602;
+			public const int hdl_gallery_viewPager = 2131296602;
 			
 			// aapt resource value: 0x7F09015B
-			public const int ghost_view_holder = 2131296603;
+			public const int hdl_options1 = 2131296603;
 			
 			// aapt resource value: 0x7F09015C
-			public const int gone = 2131296604;
+			public const int hdl_options2 = 2131296604;
 			
 			// aapt resource value: 0x7F09015D
-			public const int graph = 2131296605;
+			public const int hdl_options3 = 2131296605;
 			
 			// aapt resource value: 0x7F09015E
-			public const int graph_wrap = 2131296606;
+			public const int hdl_pickerview_ll = 2131296606;
 			
 			// aapt resource value: 0x7F09015F
-			public const int gridview = 2131296607;
-			
-			// aapt resource value: 0x7F090161
-			public const int grouping = 2131296609;
-			
-			// aapt resource value: 0x7F090162
-			public const int groups = 2131296610;
+			public const int header_title = 2131296607;
 			
 			// aapt resource value: 0x7F090160
-			public const int group_divider = 2131296608;
+			public const int help_link = 2131296608;
 			
-			// aapt resource value: 0x7F090163
-			public const int hangup = 2131296611;
+			// aapt resource value: 0x7F090161
+			public const int help_tip = 2131296609;
+			
+			// aapt resource value: 0x7F090162
+			public const int hidden = 2131296610;
 			
 			// aapt resource value: 0x7F090164
-			public const int hangupMonitorIn = 2131296612;
+			public const int hideable = 2131296612;
+			
+			// aapt resource value: 0x7F090163
+			public const int hide_ime_id = 2131296611;
 			
 			// aapt resource value: 0x7F090165
-			public const int hdl_gallery_rootView = 2131296613;
+			public const int home = 2131296613;
 			
 			// aapt resource value: 0x7F090166
-			public const int hdl_gallery_viewPager = 2131296614;
+			public const int homeAsUp = 2131296614;
 			
 			// aapt resource value: 0x7F090167
-			public const int hdl_options1 = 2131296615;
+			public const int honorRequest = 2131296615;
 			
 			// aapt resource value: 0x7F090168
-			public const int hdl_options2 = 2131296616;
+			public const int horizontal_only = 2131296616;
 			
 			// aapt resource value: 0x7F090169
-			public const int hdl_options3 = 2131296617;
+			public const int hour = 2131296617;
 			
 			// aapt resource value: 0x7F09016A
-			public const int hdl_pickerview_ll = 2131296618;
+			public const int hour_24 = 2131296618;
 			
 			// aapt resource value: 0x7F09016B
-			public const int header_title = 2131296619;
+			public const int hour_48 = 2131296619;
 			
 			// aapt resource value: 0x7F09016C
-			public const int help_link = 2131296620;
+			public const int icon = 2131296620;
 			
 			// aapt resource value: 0x7F09016D
-			public const int help_tip = 2131296621;
+			public const int icon_group = 2131296621;
 			
 			// aapt resource value: 0x7F09016E
-			public const int hidden = 2131296622;
+			public const int icon_sceenshotImg = 2131296622;
 			
 			// aapt resource value: 0x7F09016F
-			public const int hide = 2131296623;
-			
-			// aapt resource value: 0x7F090171
-			public const int hideable = 2131296625;
+			public const int icon_sceenshotLayout = 2131296623;
 			
 			// aapt resource value: 0x7F090170
-			public const int hide_ime_id = 2131296624;
+			public const int icon_sceenshotText = 2131296624;
+			
+			// aapt resource value: 0x7F090171
+			public const int icon_unlockImg = 2131296625;
 			
 			// aapt resource value: 0x7F090172
-			public const int home = 2131296626;
+			public const int icon_unlockLayout = 2131296626;
 			
 			// aapt resource value: 0x7F090173
-			public const int homeAsUp = 2131296627;
+			public const int icon_unlockText = 2131296627;
 			
 			// aapt resource value: 0x7F090174
-			public const int honorRequest = 2131296628;
+			public const int ifRoom = 2131296628;
 			
 			// aapt resource value: 0x7F090175
-			public const int horizontal_only = 2131296629;
+			public const int ignore = 2131296629;
 			
 			// aapt resource value: 0x7F090176
-			public const int hour = 2131296630;
+			public const int ignoreRequest = 2131296630;
 			
 			// aapt resource value: 0x7F090177
-			public const int hour_24 = 2131296631;
+			public const int image = 2131296631;
 			
 			// aapt resource value: 0x7F090178
-			public const int hour_48 = 2131296632;
+			public const int img_iv = 2131296632;
 			
 			// aapt resource value: 0x7F090179
-			public const int icon = 2131296633;
+			public const int immediateStop = 2131296633;
 			
 			// aapt resource value: 0x7F09017A
-			public const int icon_group = 2131296634;
+			public const int included = 2131296634;
 			
 			// aapt resource value: 0x7F09017B
-			public const int icon_sceenshotImg = 2131296635;
+			public const int indeterminate = 2131296635;
 			
 			// aapt resource value: 0x7F09017C
-			public const int icon_sceenshotLayout = 2131296636;
+			public const int info = 2131296636;
 			
 			// aapt resource value: 0x7F09017D
-			public const int icon_sceenshotText = 2131296637;
+			public const int input_search_query = 2131296637;
 			
 			// aapt resource value: 0x7F09017E
-			public const int icon_unlockImg = 2131296638;
+			public const int invisible = 2131296638;
 			
 			// aapt resource value: 0x7F09017F
-			public const int icon_unlockLayout = 2131296639;
+			public const int inward = 2131296639;
 			
 			// aapt resource value: 0x7F090180
-			public const int icon_unlockText = 2131296640;
+			public const int is_pooling_container_tag = 2131296640;
 			
 			// aapt resource value: 0x7F090181
-			public const int id_top = 2131296641;
+			public const int italic = 2131296641;
 			
 			// aapt resource value: 0x7F090182
-			public const int ifRoom = 2131296642;
+			public const int item_touch_helper_previous_elevation = 2131296642;
 			
 			// aapt resource value: 0x7F090183
-			public const int ignore = 2131296643;
+			public const int iv_ap_img = 2131296643;
 			
 			// aapt resource value: 0x7F090184
-			public const int ignoreRequest = 2131296644;
+			public const int iv_back = 2131296644;
 			
 			// aapt resource value: 0x7F090185
-			public const int image = 2131296645;
+			public const int iv_bg = 2131296645;
 			
 			// aapt resource value: 0x7F090186
-			public const int img_iv = 2131296646;
+			public const int iv_change_screen = 2131296646;
 			
 			// aapt resource value: 0x7F090187
-			public const int immediateStop = 2131296647;
+			public const int iv_check = 2131296647;
 			
 			// aapt resource value: 0x7F090188
-			public const int included = 2131296648;
+			public const int iv_choose_other = 2131296648;
 			
 			// aapt resource value: 0x7F090189
-			public const int indeterminate = 2131296649;
+			public const int iv_cloudStage = 2131296649;
 			
 			// aapt resource value: 0x7F09018A
-			public const int info = 2131296650;
+			public const int iv_cloudStage1 = 2131296650;
 			
 			// aapt resource value: 0x7F09018B
-			public const int input_search_query = 2131296651;
+			public const int iv_copy = 2131296651;
 			
 			// aapt resource value: 0x7F09018C
-			public const int invisible = 2131296652;
+			public const int iv_day_next = 2131296652;
 			
 			// aapt resource value: 0x7F09018D
-			public const int inward = 2131296653;
+			public const int iv_day_pre = 2131296653;
 			
 			// aapt resource value: 0x7F09018E
-			public const int is_pooling_container_tag = 2131296654;
+			public const int iv_detail = 2131296654;
 			
 			// aapt resource value: 0x7F09018F
-			public const int italic = 2131296655;
+			public const int iv_device_pic = 2131296655;
 			
 			// aapt resource value: 0x7F090190
-			public const int item_touch_helper_previous_elevation = 2131296656;
+			public const int iv_direction_limit_down = 2131296656;
 			
 			// aapt resource value: 0x7F090191
-			public const int iv_ap_img = 2131296657;
+			public const int iv_direction_limit_left = 2131296657;
 			
 			// aapt resource value: 0x7F090192
-			public const int iv_back = 2131296658;
+			public const int iv_direction_limit_right = 2131296658;
 			
 			// aapt resource value: 0x7F090193
-			public const int iv_bg = 2131296659;
+			public const int iv_direction_limit_up = 2131296659;
 			
 			// aapt resource value: 0x7F090194
-			public const int iv_change_screen = 2131296660;
+			public const int iv_icon = 2131296660;
 			
 			// aapt resource value: 0x7F090195
-			public const int iv_check = 2131296661;
+			public const int iv_img = 2131296661;
 			
 			// aapt resource value: 0x7F090196
-			public const int iv_choose_other = 2131296662;
+			public const int iv_move_check = 2131296662;
 			
 			// aapt resource value: 0x7F090197
-			public const int iv_cloudStage = 2131296663;
+			public const int iv_name_next = 2131296663;
 			
 			// aapt resource value: 0x7F090198
-			public const int iv_cloudStage1 = 2131296664;
+			public const int iv_no_device = 2131296664;
 			
 			// aapt resource value: 0x7F090199
-			public const int iv_copy = 2131296665;
+			public const int iv_paly_pause = 2131296665;
 			
 			// aapt resource value: 0x7F09019A
-			public const int iv_day_next = 2131296666;
+			public const int iv_play = 2131296666;
 			
 			// aapt resource value: 0x7F09019B
-			public const int iv_day_pre = 2131296667;
+			public const int iv_play_style = 2131296667;
 			
 			// aapt resource value: 0x7F09019C
-			public const int iv_detail = 2131296668;
+			public const int iv_screen_shot = 2131296668;
 			
 			// aapt resource value: 0x7F09019D
-			public const int iv_device_pic = 2131296669;
+			public const int iv_screen_shot1 = 2131296669;
 			
 			// aapt resource value: 0x7F09019E
-			public const int iv_direction_limit_down = 2131296670;
+			public const int iv_self_input = 2131296670;
 			
 			// aapt resource value: 0x7F09019F
-			public const int iv_direction_limit_left = 2131296671;
+			public const int iv_sound = 2131296671;
 			
 			// aapt resource value: 0x7F0901A0
-			public const int iv_direction_limit_right = 2131296672;
+			public const int iv_speak = 2131296672;
 			
 			// aapt resource value: 0x7F0901A1
-			public const int iv_direction_limit_up = 2131296673;
+			public const int iv_speak1 = 2131296673;
 			
 			// aapt resource value: 0x7F0901A2
-			public const int iv_icon = 2131296674;
+			public const int iv_video = 2131296674;
 			
 			// aapt resource value: 0x7F0901A3
-			public const int iv_img = 2131296675;
+			public const int iv_video1 = 2131296675;
 			
 			// aapt resource value: 0x7F0901A4
-			public const int iv_lp_answer = 2131296676;
+			public const int iv_wifi = 2131296676;
 			
 			// aapt resource value: 0x7F0901A5
-			public const int iv_lp_hangUp = 2131296677;
+			public const int jumpToEnd = 2131296677;
 			
 			// aapt resource value: 0x7F0901A6
-			public const int iv_lp_screenshot = 2131296678;
+			public const int jumpToStart = 2131296678;
 			
 			// aapt resource value: 0x7F0901A7
-			public const int iv_lp_unlock = 2131296679;
-			
-			// aapt resource value: 0x7F0901A8
-			public const int iv_move_check = 2131296680;
+			public const int labeled = 2131296679;
 			
 			// aapt resource value: 0x7F0901A9
-			public const int iv_name_next = 2131296681;
+			public const int layout = 2131296681;
 			
 			// aapt resource value: 0x7F0901AA
-			public const int iv_no_device = 2131296682;
+			public const int layout_password = 2131296682;
 			
 			// aapt resource value: 0x7F0901AB
-			public const int iv_paly_pause = 2131296683;
+			public const int layout_wifi_pwd = 2131296683;
+			
+			// aapt resource value: 0x7F0901A8
+			public const int lay_down = 2131296680;
 			
 			// aapt resource value: 0x7F0901AC
-			public const int iv_play = 2131296684;
+			public const int left = 2131296684;
 			
 			// aapt resource value: 0x7F0901AD
-			public const int iv_play_style = 2131296685;
+			public const int leftToRight = 2131296685;
 			
 			// aapt resource value: 0x7F0901AE
-			public const int iv_screen_shot = 2131296686;
+			public const int legacy = 2131296686;
 			
 			// aapt resource value: 0x7F0901AF
-			public const int iv_screen_shot1 = 2131296687;
+			public const int line1 = 2131296687;
 			
 			// aapt resource value: 0x7F0901B0
-			public const int iv_self_input = 2131296688;
+			public const int line3 = 2131296688;
 			
 			// aapt resource value: 0x7F0901B1
-			public const int iv_sound = 2131296689;
+			public const int linear = 2131296689;
 			
 			// aapt resource value: 0x7F0901B2
-			public const int iv_speak = 2131296690;
+			public const int listMode = 2131296690;
 			
 			// aapt resource value: 0x7F0901B3
-			public const int iv_speak1 = 2131296691;
+			public const int list_item = 2131296691;
 			
 			// aapt resource value: 0x7F0901B4
-			public const int iv_video = 2131296692;
+			public const int live_window = 2131296692;
 			
 			// aapt resource value: 0x7F0901B5
-			public const int iv_video1 = 2131296693;
+			public const int ll_add = 2131296693;
 			
 			// aapt resource value: 0x7F0901B6
-			public const int iv_wifi = 2131296694;
+			public const int ll_alarm_p_bg_name = 2131296694;
 			
 			// aapt resource value: 0x7F0901B7
-			public const int jumpToEnd = 2131296695;
+			public const int ll_all = 2131296695;
 			
 			// aapt resource value: 0x7F0901B8
-			public const int jumpToStart = 2131296696;
+			public const int ll_back = 2131296696;
 			
 			// aapt resource value: 0x7F0901B9
-			public const int labeled = 2131296697;
-			
-			// aapt resource value: 0x7F0901BB
-			public const int layout = 2131296699;
-			
-			// aapt resource value: 0x7F0901BC
-			public const int layout_password = 2131296700;
-			
-			// aapt resource value: 0x7F0901BD
-			public const int layout_wifi_pwd = 2131296701;
+			public const int ll_choose_other = 2131296697;
 			
 			// aapt resource value: 0x7F0901BA
-			public const int lay_down = 2131296698;
+			public const int ll_cloudstage = 2131296698;
+			
+			// aapt resource value: 0x7F0901BB
+			public const int ll_cloudstage1 = 2131296699;
+			
+			// aapt resource value: 0x7F0901BC
+			public const int ll_controller = 2131296700;
+			
+			// aapt resource value: 0x7F0901BD
+			public const int ll_delete = 2131296701;
 			
 			// aapt resource value: 0x7F0901BE
-			public const int left = 2131296702;
+			public const int ll_detail = 2131296702;
 			
 			// aapt resource value: 0x7F0901BF
-			public const int leftToRight = 2131296703;
+			public const int ll_edit = 2131296703;
 			
 			// aapt resource value: 0x7F0901C0
-			public const int legacy = 2131296704;
+			public const int ll_fullscreen = 2131296704;
 			
 			// aapt resource value: 0x7F0901C1
-			public const int line1 = 2131296705;
+			public const int ll_help = 2131296705;
 			
 			// aapt resource value: 0x7F0901C2
-			public const int line3 = 2131296706;
+			public const int ll_input = 2131296706;
 			
 			// aapt resource value: 0x7F0901C3
-			public const int linear = 2131296707;
+			public const int ll_new_version = 2131296707;
 			
 			// aapt resource value: 0x7F0901C4
-			public const int listMode = 2131296708;
+			public const int ll_operate = 2131296708;
 			
 			// aapt resource value: 0x7F0901C5
-			public const int list_item = 2131296709;
+			public const int ll_paly_pause = 2131296709;
 			
 			// aapt resource value: 0x7F0901C6
-			public const int live_window = 2131296710;
+			public const int ll_play_style = 2131296710;
 			
 			// aapt resource value: 0x7F0901C7
-			public const int ll_add = 2131296711;
+			public const int ll_screenshot = 2131296711;
 			
 			// aapt resource value: 0x7F0901C8
-			public const int ll_alarm_p_bg_name = 2131296712;
+			public const int ll_screenshot1 = 2131296712;
 			
 			// aapt resource value: 0x7F0901C9
-			public const int ll_all = 2131296713;
+			public const int ll_self_input = 2131296713;
 			
 			// aapt resource value: 0x7F0901CA
-			public const int ll_back = 2131296714;
+			public const int ll_sound = 2131296714;
 			
 			// aapt resource value: 0x7F0901CB
-			public const int ll_choose_other = 2131296715;
+			public const int ll_speak = 2131296715;
 			
 			// aapt resource value: 0x7F0901CC
-			public const int ll_cloudstage = 2131296716;
+			public const int ll_speak1 = 2131296716;
 			
 			// aapt resource value: 0x7F0901CD
-			public const int ll_cloudstage1 = 2131296717;
+			public const int ll_switch_btn = 2131296717;
 			
 			// aapt resource value: 0x7F0901CE
-			public const int ll_controller = 2131296718;
+			public const int ll_title_center = 2131296718;
 			
 			// aapt resource value: 0x7F0901CF
-			public const int ll_delete = 2131296719;
+			public const int ll_title_left = 2131296719;
 			
 			// aapt resource value: 0x7F0901D0
-			public const int ll_detail = 2131296720;
+			public const int ll_title_left2 = 2131296720;
 			
 			// aapt resource value: 0x7F0901D1
-			public const int ll_edit = 2131296721;
+			public const int ll_title_right = 2131296721;
 			
 			// aapt resource value: 0x7F0901D2
-			public const int ll_fullscreen = 2131296722;
+			public const int ll_title_right2 = 2131296722;
 			
 			// aapt resource value: 0x7F0901D3
-			public const int ll_help = 2131296723;
+			public const int ll_video = 2131296723;
 			
 			// aapt resource value: 0x7F0901D4
-			public const int ll_input = 2131296724;
+			public const int ll_video1 = 2131296724;
 			
 			// aapt resource value: 0x7F0901D5
-			public const int ll_lp_btn_back = 2131296725;
+			public const int ll_video_content = 2131296725;
 			
 			// aapt resource value: 0x7F0901D6
-			public const int ll_new_version = 2131296726;
-			
-			// aapt resource value: 0x7F0901D7
-			public const int ll_operate = 2131296727;
+			public const int loading_pb = 2131296726;
 			
 			// aapt resource value: 0x7F0901D8
-			public const int ll_paly_pause = 2131296728;
+			public const int locale = 2131296728;
+			
+			// aapt resource value: 0x7F0901D7
+			public const int locaVideo = 2131296727;
 			
 			// aapt resource value: 0x7F0901D9
-			public const int ll_play_style = 2131296729;
+			public const int login_login = 2131296729;
 			
 			// aapt resource value: 0x7F0901DA
-			public const int ll_screenshot = 2131296730;
+			public const int login_regesiter = 2131296730;
 			
 			// aapt resource value: 0x7F0901DB
-			public const int ll_screenshot1 = 2131296731;
+			public const int login_username = 2131296731;
 			
 			// aapt resource value: 0x7F0901DC
-			public const int ll_self_input = 2131296732;
+			public const int ltr = 2131296732;
 			
 			// aapt resource value: 0x7F0901DD
-			public const int ll_sound = 2131296733;
+			public const int m3_side_sheet = 2131296733;
 			
 			// aapt resource value: 0x7F0901DE
-			public const int ll_speak = 2131296734;
+			public const int manualOnly = 2131296734;
 			
 			// aapt resource value: 0x7F0901DF
-			public const int ll_speak1 = 2131296735;
+			public const int marquee = 2131296735;
 			
 			// aapt resource value: 0x7F0901E0
-			public const int ll_switch_btn = 2131296736;
-			
-			// aapt resource value: 0x7F0901E1
-			public const int ll_title_center = 2131296737;
-			
-			// aapt resource value: 0x7F0901E2
-			public const int ll_title_left = 2131296738;
-			
-			// aapt resource value: 0x7F0901E3
-			public const int ll_title_left2 = 2131296739;
-			
-			// aapt resource value: 0x7F0901E4
-			public const int ll_title_right = 2131296740;
-			
-			// aapt resource value: 0x7F0901E5
-			public const int ll_title_right2 = 2131296741;
-			
-			// aapt resource value: 0x7F0901E6
-			public const int ll_video = 2131296742;
-			
-			// aapt resource value: 0x7F0901E7
-			public const int ll_video1 = 2131296743;
-			
-			// aapt resource value: 0x7F0901E8
-			public const int ll_video_content = 2131296744;
-			
-			// aapt resource value: 0x7F0901E9
-			public const int ll_video_lp_rendering = 2131296745;
-			
-			// aapt resource value: 0x7F0901EA
-			public const int loading_pb = 2131296746;
-			
-			// aapt resource value: 0x7F0901EC
-			public const int localDoorUnlock = 2131296748;
-			
-			// aapt resource value: 0x7F0901EE
-			public const int locale = 2131296750;
-			
-			// aapt resource value: 0x7F0901ED
-			public const int localVideo = 2131296749;
-			
-			// aapt resource value: 0x7F0901EB
-			public const int locaVideo = 2131296747;
-			
-			// aapt resource value: 0x7F0901EF
-			public const int login_login = 2131296751;
-			
-			// aapt resource value: 0x7F0901F0
-			public const int login_regesiter = 2131296752;
-			
-			// aapt resource value: 0x7F0901F1
-			public const int login_username = 2131296753;
-			
-			// aapt resource value: 0x7F0901F6
-			public const int lpsdk_dialog_cancel_tv = 2131296758;
-			
-			// aapt resource value: 0x7F0901F7
-			public const int lpsdk_dialog_confirm_tv = 2131296759;
-			
-			// aapt resource value: 0x7F0901F8
-			public const int lpsdk_dialog_content_tv = 2131296760;
-			
-			// aapt resource value: 0x7F0901F9
-			public const int lpsdk_dialog_title_tv = 2131296761;
-			
-			// aapt resource value: 0x7F0901F2
-			public const int lp_dialog_cancel_tv = 2131296754;
-			
-			// aapt resource value: 0x7F0901F3
-			public const int lp_dialog_confirm_tv = 2131296755;
-			
-			// aapt resource value: 0x7F0901F4
-			public const int lp_dialog_data_picker = 2131296756;
-			
-			// aapt resource value: 0x7F0901F5
-			public const int lp_dialog_time_picker = 2131296757;
-			
-			// aapt resource value: 0x7F0901FA
-			public const int ltr = 2131296762;
-			
-			// aapt resource value: 0x7F0901FB
-			public const int m3_side_sheet = 2131296763;
-			
-			// aapt resource value: 0x7F0901FC
-			public const int manualOnly = 2131296764;
-			
-			// aapt resource value: 0x7F0901FD
-			public const int marquee = 2131296765;
-			
-			// aapt resource value: 0x7F0901FE
-			public const int masked = 2131296766;
+			public const int masked = 2131296736;
 			
 			// aapt resource value: 0x7F09000A
 			public const int MatchLayout = 2131296266;
 			
-			// aapt resource value: 0x7F0901FF
-			public const int match_constraint = 2131296767;
+			// aapt resource value: 0x7F0901E1
+			public const int match_constraint = 2131296737;
 			
-			// aapt resource value: 0x7F090200
-			public const int match_parent = 2131296768;
+			// aapt resource value: 0x7F0901E2
+			public const int match_parent = 2131296738;
 			
-			// aapt resource value: 0x7F090201
-			public const int material_clock_display = 2131296769;
+			// aapt resource value: 0x7F0901E3
+			public const int material_clock_display = 2131296739;
 			
-			// aapt resource value: 0x7F090202
-			public const int material_clock_display_and_toggle = 2131296770;
+			// aapt resource value: 0x7F0901E4
+			public const int material_clock_display_and_toggle = 2131296740;
 			
-			// aapt resource value: 0x7F090203
-			public const int material_clock_face = 2131296771;
+			// aapt resource value: 0x7F0901E5
+			public const int material_clock_face = 2131296741;
 			
-			// aapt resource value: 0x7F090204
-			public const int material_clock_hand = 2131296772;
+			// aapt resource value: 0x7F0901E6
+			public const int material_clock_hand = 2131296742;
 			
-			// aapt resource value: 0x7F090205
-			public const int material_clock_level = 2131296773;
+			// aapt resource value: 0x7F0901E7
+			public const int material_clock_level = 2131296743;
 			
-			// aapt resource value: 0x7F090206
-			public const int material_clock_period_am_button = 2131296774;
+			// aapt resource value: 0x7F0901E8
+			public const int material_clock_period_am_button = 2131296744;
 			
-			// aapt resource value: 0x7F090207
-			public const int material_clock_period_pm_button = 2131296775;
+			// aapt resource value: 0x7F0901E9
+			public const int material_clock_period_pm_button = 2131296745;
 			
-			// aapt resource value: 0x7F090208
-			public const int material_clock_period_toggle = 2131296776;
+			// aapt resource value: 0x7F0901EA
+			public const int material_clock_period_toggle = 2131296746;
 			
-			// aapt resource value: 0x7F090209
-			public const int material_hour_text_input = 2131296777;
+			// aapt resource value: 0x7F0901EB
+			public const int material_hour_text_input = 2131296747;
 			
-			// aapt resource value: 0x7F09020A
-			public const int material_hour_tv = 2131296778;
+			// aapt resource value: 0x7F0901EC
+			public const int material_hour_tv = 2131296748;
 			
-			// aapt resource value: 0x7F09020B
-			public const int material_label = 2131296779;
+			// aapt resource value: 0x7F0901ED
+			public const int material_label = 2131296749;
 			
-			// aapt resource value: 0x7F09020C
-			public const int material_minute_text_input = 2131296780;
+			// aapt resource value: 0x7F0901EE
+			public const int material_minute_text_input = 2131296750;
 			
-			// aapt resource value: 0x7F09020D
-			public const int material_minute_tv = 2131296781;
+			// aapt resource value: 0x7F0901EF
+			public const int material_minute_tv = 2131296751;
 			
-			// aapt resource value: 0x7F09020E
-			public const int material_textinput_timepicker = 2131296782;
+			// aapt resource value: 0x7F0901F0
+			public const int material_textinput_timepicker = 2131296752;
 			
-			// aapt resource value: 0x7F09020F
-			public const int material_timepicker_cancel_button = 2131296783;
+			// aapt resource value: 0x7F0901F1
+			public const int material_timepicker_cancel_button = 2131296753;
 			
-			// aapt resource value: 0x7F090210
-			public const int material_timepicker_container = 2131296784;
+			// aapt resource value: 0x7F0901F2
+			public const int material_timepicker_container = 2131296754;
 			
-			// aapt resource value: 0x7F090211
-			public const int material_timepicker_mode_button = 2131296785;
+			// aapt resource value: 0x7F0901F3
+			public const int material_timepicker_mode_button = 2131296755;
 			
-			// aapt resource value: 0x7F090212
-			public const int material_timepicker_ok_button = 2131296786;
+			// aapt resource value: 0x7F0901F4
+			public const int material_timepicker_ok_button = 2131296756;
 			
-			// aapt resource value: 0x7F090213
-			public const int material_timepicker_view = 2131296787;
+			// aapt resource value: 0x7F0901F5
+			public const int material_timepicker_view = 2131296757;
 			
-			// aapt resource value: 0x7F090214
-			public const int material_value_index = 2131296788;
+			// aapt resource value: 0x7F0901F6
+			public const int material_value_index = 2131296758;
 			
-			// aapt resource value: 0x7F090215
-			public const int matrix = 2131296789;
+			// aapt resource value: 0x7F0901F7
+			public const int matrix = 2131296759;
 			
-			// aapt resource value: 0x7F090216
-			public const int media_actions = 2131296790;
+			// aapt resource value: 0x7F0901F8
+			public const int media_actions = 2131296760;
 			
-			// aapt resource value: 0x7F090217
-			public const int media_controller_compat_view_tag = 2131296791;
+			// aapt resource value: 0x7F0901F9
+			public const int media_controller_compat_view_tag = 2131296761;
 			
-			// aapt resource value: 0x7F090218
-			public const int message = 2131296792;
+			// aapt resource value: 0x7F0901FA
+			public const int message = 2131296762;
 			
 			// aapt resource value: 0x7F090009
 			public const int META = 2131296265;
 			
+			// aapt resource value: 0x7F0901FB
+			public const int middle = 2131296763;
+			
+			// aapt resource value: 0x7F0901FC
+			public const int min = 2131296764;
+			
+			// aapt resource value: 0x7F0901FD
+			public const int mini = 2131296765;
+			
+			// aapt resource value: 0x7F0901FE
+			public const int month = 2131296766;
+			
+			// aapt resource value: 0x7F0901FF
+			public const int month_grid = 2131296767;
+			
+			// aapt resource value: 0x7F090200
+			public const int month_navigation_bar = 2131296768;
+			
+			// aapt resource value: 0x7F090201
+			public const int month_navigation_fragment_toggle = 2131296769;
+			
+			// aapt resource value: 0x7F090202
+			public const int month_navigation_next = 2131296770;
+			
+			// aapt resource value: 0x7F090203
+			public const int month_navigation_previous = 2131296771;
+			
+			// aapt resource value: 0x7F090204
+			public const int month_title = 2131296772;
+			
+			// aapt resource value: 0x7F090205
+			public const int motion_base = 2131296773;
+			
+			// aapt resource value: 0x7F090206
+			public const int msg_content_tv = 2131296774;
+			
+			// aapt resource value: 0x7F090207
+			public const int mtrl_anchor_parent = 2131296775;
+			
+			// aapt resource value: 0x7F090209
+			public const int mtrl_calendar_days_of_week = 2131296777;
+			
+			// aapt resource value: 0x7F090208
+			public const int mtrl_calendar_day_selector_frame = 2131296776;
+			
+			// aapt resource value: 0x7F09020A
+			public const int mtrl_calendar_frame = 2131296778;
+			
+			// aapt resource value: 0x7F09020B
+			public const int mtrl_calendar_main_pane = 2131296779;
+			
+			// aapt resource value: 0x7F09020C
+			public const int mtrl_calendar_months = 2131296780;
+			
+			// aapt resource value: 0x7F09020D
+			public const int mtrl_calendar_selection_frame = 2131296781;
+			
+			// aapt resource value: 0x7F09020E
+			public const int mtrl_calendar_text_input_frame = 2131296782;
+			
+			// aapt resource value: 0x7F09020F
+			public const int mtrl_calendar_year_selector_frame = 2131296783;
+			
+			// aapt resource value: 0x7F090210
+			public const int mtrl_card_checked_layer_id = 2131296784;
+			
+			// aapt resource value: 0x7F090211
+			public const int mtrl_child_content_container = 2131296785;
+			
+			// aapt resource value: 0x7F090212
+			public const int mtrl_internal_children_alpha_tag = 2131296786;
+			
+			// aapt resource value: 0x7F090213
+			public const int mtrl_motion_snapshot_view = 2131296787;
+			
+			// aapt resource value: 0x7F090214
+			public const int mtrl_picker_fullscreen = 2131296788;
+			
+			// aapt resource value: 0x7F090215
+			public const int mtrl_picker_header = 2131296789;
+			
+			// aapt resource value: 0x7F090216
+			public const int mtrl_picker_header_selection_text = 2131296790;
+			
+			// aapt resource value: 0x7F090217
+			public const int mtrl_picker_header_title_and_selection = 2131296791;
+			
+			// aapt resource value: 0x7F090218
+			public const int mtrl_picker_header_toggle = 2131296792;
+			
 			// aapt resource value: 0x7F090219
-			public const int middle = 2131296793;
+			public const int mtrl_picker_text_input_date = 2131296793;
 			
 			// aapt resource value: 0x7F09021A
-			public const int min = 2131296794;
+			public const int mtrl_picker_text_input_range_end = 2131296794;
 			
 			// aapt resource value: 0x7F09021B
-			public const int mini = 2131296795;
+			public const int mtrl_picker_text_input_range_start = 2131296795;
 			
 			// aapt resource value: 0x7F09021C
-			public const int monitor = 2131296796;
+			public const int mtrl_picker_title_text = 2131296796;
 			
 			// aapt resource value: 0x7F09021D
-			public const int month = 2131296797;
+			public const int mtrl_view_tag_bottom_padding = 2131296797;
 			
 			// aapt resource value: 0x7F09021E
-			public const int month_grid = 2131296798;
+			public const int multiply = 2131296798;
 			
 			// aapt resource value: 0x7F09021F
-			public const int month_navigation_bar = 2131296799;
+			public const int nameText = 2131296799;
 			
 			// aapt resource value: 0x7F090220
-			public const int month_navigation_fragment_toggle = 2131296800;
+			public const int name_tv = 2131296800;
 			
 			// aapt resource value: 0x7F090221
-			public const int month_navigation_next = 2131296801;
+			public const int navigation_bar_item_active_indicator_view = 2131296801;
 			
 			// aapt resource value: 0x7F090222
-			public const int month_navigation_previous = 2131296802;
+			public const int navigation_bar_item_icon_container = 2131296802;
 			
 			// aapt resource value: 0x7F090223
-			public const int month_title = 2131296803;
+			public const int navigation_bar_item_icon_view = 2131296803;
 			
 			// aapt resource value: 0x7F090224
-			public const int motion_base = 2131296804;
+			public const int navigation_bar_item_labels_group = 2131296804;
 			
 			// aapt resource value: 0x7F090225
-			public const int msg_content_tv = 2131296805;
+			public const int navigation_bar_item_large_label_view = 2131296805;
 			
 			// aapt resource value: 0x7F090226
-			public const int mtrl_anchor_parent = 2131296806;
-			
-			// aapt resource value: 0x7F090228
-			public const int mtrl_calendar_days_of_week = 2131296808;
+			public const int navigation_bar_item_small_label_view = 2131296806;
 			
 			// aapt resource value: 0x7F090227
-			public const int mtrl_calendar_day_selector_frame = 2131296807;
+			public const int navigation_header_container = 2131296807;
+			
+			// aapt resource value: 0x7F090228
+			public const int never = 2131296808;
 			
 			// aapt resource value: 0x7F090229
-			public const int mtrl_calendar_frame = 2131296809;
+			public const int neverCompleteToEnd = 2131296809;
 			
 			// aapt resource value: 0x7F09022A
-			public const int mtrl_calendar_main_pane = 2131296810;
+			public const int neverCompleteToStart = 2131296810;
 			
 			// aapt resource value: 0x7F09022B
-			public const int mtrl_calendar_months = 2131296811;
+			public const int next = 2131296811;
 			
 			// aapt resource value: 0x7F09022C
-			public const int mtrl_calendar_selection_frame = 2131296812;
-			
-			// aapt resource value: 0x7F09022D
-			public const int mtrl_calendar_text_input_frame = 2131296813;
-			
-			// aapt resource value: 0x7F09022E
-			public const int mtrl_calendar_year_selector_frame = 2131296814;
+			public const int next_btn = 2131296812;
 			
 			// aapt resource value: 0x7F09022F
-			public const int mtrl_card_checked_layer_id = 2131296815;
+			public const int none = 2131296815;
 			
 			// aapt resource value: 0x7F090230
-			public const int mtrl_child_content_container = 2131296816;
+			public const int normal = 2131296816;
 			
 			// aapt resource value: 0x7F090231
-			public const int mtrl_internal_children_alpha_tag = 2131296817;
+			public const int north = 2131296817;
 			
-			// aapt resource value: 0x7F090232
-			public const int mtrl_motion_snapshot_view = 2131296818;
+			// aapt resource value: 0x7F09022D
+			public const int noScroll = 2131296813;
+			
+			// aapt resource value: 0x7F09022E
+			public const int noState = 2131296814;
 			
 			// aapt resource value: 0x7F090233
-			public const int mtrl_picker_fullscreen = 2131296819;
+			public const int notification_background = 2131296819;
 			
 			// aapt resource value: 0x7F090234
-			public const int mtrl_picker_header = 2131296820;
+			public const int notification_main_column = 2131296820;
 			
 			// aapt resource value: 0x7F090235
-			public const int mtrl_picker_header_selection_text = 2131296821;
+			public const int notification_main_column_container = 2131296821;
 			
-			// aapt resource value: 0x7F090236
-			public const int mtrl_picker_header_title_and_selection = 2131296822;
-			
-			// aapt resource value: 0x7F090237
-			public const int mtrl_picker_header_toggle = 2131296823;
-			
-			// aapt resource value: 0x7F090238
-			public const int mtrl_picker_text_input_date = 2131296824;
-			
-			// aapt resource value: 0x7F090239
-			public const int mtrl_picker_text_input_range_end = 2131296825;
-			
-			// aapt resource value: 0x7F09023A
-			public const int mtrl_picker_text_input_range_start = 2131296826;
-			
-			// aapt resource value: 0x7F09023B
-			public const int mtrl_picker_title_text = 2131296827;
-			
-			// aapt resource value: 0x7F09023C
-			public const int mtrl_view_tag_bottom_padding = 2131296828;
-			
-			// aapt resource value: 0x7F09023D
-			public const int multiply = 2131296829;
-			
-			// aapt resource value: 0x7F09023E
-			public const int nameText = 2131296830;
-			
-			// aapt resource value: 0x7F09023F
-			public const int name_tv = 2131296831;
-			
-			// aapt resource value: 0x7F090240
-			public const int navigation_bar_item_active_indicator_view = 2131296832;
-			
-			// aapt resource value: 0x7F090241
-			public const int navigation_bar_item_icon_container = 2131296833;
-			
-			// aapt resource value: 0x7F090242
-			public const int navigation_bar_item_icon_view = 2131296834;
-			
-			// aapt resource value: 0x7F090243
-			public const int navigation_bar_item_labels_group = 2131296835;
-			
-			// aapt resource value: 0x7F090244
-			public const int navigation_bar_item_large_label_view = 2131296836;
-			
-			// aapt resource value: 0x7F090245
-			public const int navigation_bar_item_small_label_view = 2131296837;
-			
-			// aapt resource value: 0x7F090246
-			public const int navigation_header_container = 2131296838;
-			
-			// aapt resource value: 0x7F090247
-			public const int never = 2131296839;
-			
-			// aapt resource value: 0x7F090248
-			public const int neverCompleteToEnd = 2131296840;
-			
-			// aapt resource value: 0x7F090249
-			public const int neverCompleteToStart = 2131296841;
-			
-			// aapt resource value: 0x7F09024A
-			public const int next = 2131296842;
-			
-			// aapt resource value: 0x7F09024B
-			public const int next_btn = 2131296843;
-			
-			// aapt resource value: 0x7F09024E
-			public const int none = 2131296846;
-			
-			// aapt resource value: 0x7F09024F
-			public const int normal = 2131296847;
-			
-			// aapt resource value: 0x7F090250
-			public const int north = 2131296848;
-			
-			// aapt resource value: 0x7F09024C
-			public const int noScroll = 2131296844;
-			
-			// aapt resource value: 0x7F09024D
-			public const int noState = 2131296845;
-			
-			// aapt resource value: 0x7F090252
-			public const int notification_background = 2131296850;
-			
-			// aapt resource value: 0x7F090253
-			public const int notification_main_column = 2131296851;
-			
-			// aapt resource value: 0x7F090254
-			public const int notification_main_column_container = 2131296852;
-			
-			// aapt resource value: 0x7F090251
-			public const int not_show = 2131296849;
+			// aapt resource value: 0x7F090232
+			public const int not_show = 2131296818;
 			
 			// aapt resource value: 0x7F09000B
 			public const int NO_DEBUG = 2131296267;
 			
+			// aapt resource value: 0x7F090236
+			public const int off = 2131296822;
+			
+			// aapt resource value: 0x7F090237
+			public const int on = 2131296823;
+			
+			// aapt resource value: 0x7F090238
+			public const int onInterceptTouchReturnSwipe = 2131296824;
+			
+			// aapt resource value: 0x7F090239
+			public const int open_search_bar_text_view = 2131296825;
+			
+			// aapt resource value: 0x7F09023A
+			public const int open_search_view_background = 2131296826;
+			
+			// aapt resource value: 0x7F09023B
+			public const int open_search_view_clear_button = 2131296827;
+			
+			// aapt resource value: 0x7F09023C
+			public const int open_search_view_content_container = 2131296828;
+			
+			// aapt resource value: 0x7F09023D
+			public const int open_search_view_divider = 2131296829;
+			
+			// aapt resource value: 0x7F09023E
+			public const int open_search_view_dummy_toolbar = 2131296830;
+			
+			// aapt resource value: 0x7F09023F
+			public const int open_search_view_edit_text = 2131296831;
+			
+			// aapt resource value: 0x7F090240
+			public const int open_search_view_header_container = 2131296832;
+			
+			// aapt resource value: 0x7F090241
+			public const int open_search_view_root = 2131296833;
+			
+			// aapt resource value: 0x7F090242
+			public const int open_search_view_scrim = 2131296834;
+			
+			// aapt resource value: 0x7F090243
+			public const int open_search_view_search_prefix = 2131296835;
+			
+			// aapt resource value: 0x7F090244
+			public const int open_search_view_status_bar_spacer = 2131296836;
+			
+			// aapt resource value: 0x7F090245
+			public const int open_search_view_toolbar = 2131296837;
+			
+			// aapt resource value: 0x7F090246
+			public const int open_search_view_toolbar_container = 2131296838;
+			
+			// aapt resource value: 0x7F090249
+			public const int options1 = 2131296841;
+			
+			// aapt resource value: 0x7F09024A
+			public const int options2 = 2131296842;
+			
+			// aapt resource value: 0x7F09024B
+			public const int options3 = 2131296843;
+			
+			// aapt resource value: 0x7F09024C
+			public const int optionspicker = 2131296844;
+			
+			// aapt resource value: 0x7F090247
+			public const int option_list = 2131296839;
+			
+			// aapt resource value: 0x7F090248
+			public const int option_name = 2131296840;
+			
+			// aapt resource value: 0x7F09024D
+			public const int outline = 2131296845;
+			
+			// aapt resource value: 0x7F09024E
+			public const int outmost_container = 2131296846;
+			
+			// aapt resource value: 0x7F09024F
+			public const int outward = 2131296847;
+			
+			// aapt resource value: 0x7F090250
+			public const int overshoot = 2131296848;
+			
+			// aapt resource value: 0x7F090251
+			public const int packed = 2131296849;
+			
+			// aapt resource value: 0x7F090252
+			public const int pair_img1 = 2131296850;
+			
+			// aapt resource value: 0x7F090253
+			public const int pair_img2 = 2131296851;
+			
+			// aapt resource value: 0x7F090254
+			public const int parallax = 2131296852;
+			
 			// aapt resource value: 0x7F090255
-			public const int off = 2131296853;
+			public const int parent = 2131296853;
 			
 			// aapt resource value: 0x7F090256
-			public const int on = 2131296854;
+			public const int parentPanel = 2131296854;
 			
 			// aapt resource value: 0x7F090257
-			public const int onInterceptTouchReturnSwipe = 2131296855;
+			public const int parentRelative = 2131296855;
 			
 			// aapt resource value: 0x7F090258
-			public const int open_search_bar_text_view = 2131296856;
+			public const int parent_matrix = 2131296856;
 			
 			// aapt resource value: 0x7F090259
-			public const int open_search_view_background = 2131296857;
+			public const int password_toggle = 2131296857;
 			
 			// aapt resource value: 0x7F09025A
-			public const int open_search_view_clear_button = 2131296858;
+			public const int path = 2131296858;
 			
 			// aapt resource value: 0x7F09025B
-			public const int open_search_view_content_container = 2131296859;
+			public const int pathRelative = 2131296859;
 			
 			// aapt resource value: 0x7F09025C
-			public const int open_search_view_divider = 2131296860;
+			public const int pb_loading = 2131296860;
 			
 			// aapt resource value: 0x7F09025D
-			public const int open_search_view_dummy_toolbar = 2131296861;
+			public const int peekHeight = 2131296861;
 			
 			// aapt resource value: 0x7F09025E
-			public const int open_search_view_edit_text = 2131296862;
+			public const int percent = 2131296862;
 			
 			// aapt resource value: 0x7F09025F
-			public const int open_search_view_header_container = 2131296863;
+			public const int pg_download = 2131296863;
 			
 			// aapt resource value: 0x7F090260
-			public const int open_search_view_root = 2131296864;
+			public const int pg_upodate = 2131296864;
 			
 			// aapt resource value: 0x7F090261
-			public const int open_search_view_scrim = 2131296865;
+			public const int phone_btn = 2131296865;
 			
 			// aapt resource value: 0x7F090262
-			public const int open_search_view_search_prefix = 2131296866;
+			public const int pin = 2131296866;
 			
 			// aapt resource value: 0x7F090263
-			public const int open_search_view_status_bar_spacer = 2131296867;
+			public const int pixel_recycle = 2131296867;
 			
 			// aapt resource value: 0x7F090264
-			public const int open_search_view_toolbar = 2131296868;
+			public const int pooling_container_listener_holder_tag = 2131296868;
 			
 			// aapt resource value: 0x7F090265
-			public const int open_search_view_toolbar_container = 2131296869;
-			
-			// aapt resource value: 0x7F090268
-			public const int options1 = 2131296872;
-			
-			// aapt resource value: 0x7F090269
-			public const int options2 = 2131296873;
-			
-			// aapt resource value: 0x7F09026A
-			public const int options3 = 2131296874;
-			
-			// aapt resource value: 0x7F09026B
-			public const int optionspicker = 2131296875;
+			public const int position = 2131296869;
 			
 			// aapt resource value: 0x7F090266
-			public const int option_list = 2131296870;
+			public const int postLayout = 2131296870;
 			
 			// aapt resource value: 0x7F090267
-			public const int option_name = 2131296871;
+			public const int pressed = 2131296871;
+			
+			// aapt resource value: 0x7F090268
+			public const int privacy_policy_btn = 2131296872;
+			
+			// aapt resource value: 0x7F090269
+			public const int progress_circular = 2131296873;
+			
+			// aapt resource value: 0x7F09026A
+			public const int progress_horizontal = 2131296874;
+			
+			// aapt resource value: 0x7F09026B
+			public const int pullDownFromTop = 2131296875;
 			
 			// aapt resource value: 0x7F09026C
-			public const int outline = 2131296876;
+			public const int pullFromEnd = 2131296876;
 			
 			// aapt resource value: 0x7F09026D
-			public const int outmost_container = 2131296877;
+			public const int pullFromStart = 2131296877;
 			
 			// aapt resource value: 0x7F09026E
-			public const int outward = 2131296878;
+			public const int pullUpFromBottom = 2131296878;
 			
 			// aapt resource value: 0x7F09026F
-			public const int overshoot = 2131296879;
+			public const int pull_out = 2131296879;
 			
 			// aapt resource value: 0x7F090270
-			public const int packed = 2131296880;
+			public const int pull_to_refresh_image = 2131296880;
 			
 			// aapt resource value: 0x7F090271
-			public const int pair_img1 = 2131296881;
+			public const int pull_to_refresh_progress = 2131296881;
 			
 			// aapt resource value: 0x7F090272
-			public const int pair_img2 = 2131296882;
+			public const int pull_to_refresh_sub_text = 2131296882;
 			
 			// aapt resource value: 0x7F090273
-			public const int parallax = 2131296883;
+			public const int pull_to_refresh_text = 2131296883;
 			
 			// aapt resource value: 0x7F090274
-			public const int parent = 2131296884;
+			public const int quit = 2131296884;
 			
 			// aapt resource value: 0x7F090275
-			public const int parentPanel = 2131296885;
+			public const int radio = 2131296885;
 			
 			// aapt resource value: 0x7F090276
-			public const int parentRelative = 2131296886;
+			public const int ratio = 2131296886;
 			
 			// aapt resource value: 0x7F090277
-			public const int parent_matrix = 2131296887;
+			public const int rb_never_remind = 2131296887;
 			
 			// aapt resource value: 0x7F090278
-			public const int password_toggle = 2131296888;
+			public const int rcv_channel = 2131296888;
 			
 			// aapt resource value: 0x7F090279
-			public const int path = 2131296889;
+			public const int rcv_record = 2131296889;
 			
 			// aapt resource value: 0x7F09027A
-			public const int pathRelative = 2131296890;
+			public const int rcv_video_list = 2131296890;
 			
 			// aapt resource value: 0x7F09027B
-			public const int pb_loading = 2131296891;
+			public const int record_endTime = 2131296891;
 			
 			// aapt resource value: 0x7F09027C
-			public const int peekHeight = 2131296892;
+			public const int record_list = 2131296892;
 			
 			// aapt resource value: 0x7F09027D
-			public const int peerAddress = 2131296893;
+			public const int record_seekbar = 2131296893;
 			
 			// aapt resource value: 0x7F09027E
-			public const int percent = 2131296894;
+			public const int record_startTime = 2131296894;
 			
 			// aapt resource value: 0x7F09027F
-			public const int pg_download = 2131296895;
+			public const int rectangle = 2131296895;
 			
 			// aapt resource value: 0x7F090280
-			public const int pg_upodate = 2131296896;
+			public const int rectangles = 2131296896;
 			
 			// aapt resource value: 0x7F090281
-			public const int phone_btn = 2131296897;
+			public const int remoteFrame = 2131296897;
 			
 			// aapt resource value: 0x7F090282
-			public const int pin = 2131296898;
+			public const int report_drawn = 2131296898;
 			
 			// aapt resource value: 0x7F090283
-			public const int pixel_recycle = 2131296899;
+			public const int restart_preview = 2131296899;
 			
 			// aapt resource value: 0x7F090284
-			public const int pooling_container_listener_holder_tag = 2131296900;
+			public const int return_scan_result = 2131296900;
 			
 			// aapt resource value: 0x7F090285
-			public const int position = 2131296901;
+			public const int reverseSawtooth = 2131296901;
 			
 			// aapt resource value: 0x7F090286
-			public const int postLayout = 2131296902;
+			public const int right = 2131296902;
 			
 			// aapt resource value: 0x7F090287
-			public const int pressed = 2131296903;
+			public const int rightToLeft = 2131296903;
 			
 			// aapt resource value: 0x7F090288
-			public const int privacy_policy_btn = 2131296904;
+			public const int right_icon = 2131296904;
 			
 			// aapt resource value: 0x7F090289
-			public const int progress_circular = 2131296905;
+			public const int right_side = 2131296905;
 			
 			// aapt resource value: 0x7F09028A
-			public const int progress_horizontal = 2131296906;
+			public const int rl_cur_wifi = 2131296906;
 			
 			// aapt resource value: 0x7F09028B
-			public const int pullDownFromTop = 2131296907;
+			public const int rl_deployment = 2131296907;
 			
 			// aapt resource value: 0x7F09028C
-			public const int pullFromEnd = 2131296908;
+			public const int rl_detail = 2131296908;
 			
 			// aapt resource value: 0x7F09028D
-			public const int pullFromStart = 2131296909;
+			public const int rl_detail_type = 2131296909;
 			
 			// aapt resource value: 0x7F09028E
-			public const int pullUpFromBottom = 2131296910;
+			public const int rl_detail_version = 2131296910;
 			
 			// aapt resource value: 0x7F09028F
-			public const int pull_out = 2131296911;
+			public const int rl_detele = 2131296911;
 			
 			// aapt resource value: 0x7F090290
-			public const int pull_to_refresh_image = 2131296912;
+			public const int rl_device_detail = 2131296912;
 			
 			// aapt resource value: 0x7F090291
-			public const int pull_to_refresh_progress = 2131296913;
+			public const int rl_device_modify = 2131296913;
 			
 			// aapt resource value: 0x7F090292
-			public const int pull_to_refresh_sub_text = 2131296914;
+			public const int rl_device_serial = 2131296914;
 			
 			// aapt resource value: 0x7F090293
-			public const int pull_to_refresh_text = 2131296915;
+			public const int rl_loading = 2131296915;
 			
 			// aapt resource value: 0x7F090294
-			public const int quit = 2131296916;
+			public const int rl_no_device = 2131296916;
 			
 			// aapt resource value: 0x7F090295
-			public const int radio = 2131296917;
+			public const int rl_offline = 2131296917;
 			
 			// aapt resource value: 0x7F090296
-			public const int ratio = 2131296918;
+			public const int rl_title = 2131296918;
 			
 			// aapt resource value: 0x7F090297
-			public const int rb_never_remind = 2131296919;
+			public const int rotate = 2131296919;
 			
 			// aapt resource value: 0x7F090298
-			public const int rcv_channel = 2131296920;
+			public const int rotatedown = 2131296920;
 			
 			// aapt resource value: 0x7F090299
-			public const int rcv_record = 2131296921;
+			public const int rotateup = 2131296921;
 			
 			// aapt resource value: 0x7F09029A
-			public const int rcv_video_list = 2131296922;
+			public const int round = 2131296922;
 			
 			// aapt resource value: 0x7F09029B
-			public const int record_endTime = 2131296923;
+			public const int rounded = 2131296923;
 			
 			// aapt resource value: 0x7F09029C
-			public const int record_list = 2131296924;
+			public const int row_index_key = 2131296924;
 			
 			// aapt resource value: 0x7F09029D
-			public const int record_seekbar = 2131296925;
+			public const int rtl = 2131296925;
 			
 			// aapt resource value: 0x7F09029E
-			public const int record_startTime = 2131296926;
+			public const int rudder = 2131296926;
 			
 			// aapt resource value: 0x7F09029F
-			public const int rectangle = 2131296927;
+			public const int rv_topbar = 2131296927;
 			
 			// aapt resource value: 0x7F0902A0
-			public const int rectangles = 2131296928;
+			public const int sample_text = 2131296928;
 			
 			// aapt resource value: 0x7F0902A1
-			public const int remoteFrame = 2131296929;
+			public const int save_non_transition_alpha = 2131296929;
 			
 			// aapt resource value: 0x7F0902A2
-			public const int remoteFrameContainer = 2131296930;
+			public const int save_overlay_view = 2131296930;
 			
 			// aapt resource value: 0x7F0902A3
-			public const int remoteVideo = 2131296931;
-			
-			// aapt resource value: 0x7F0902A4
-			public const int report_drawn = 2131296932;
-			
-			// aapt resource value: 0x7F0902A5
-			public const int requestA = 2131296933;
-			
-			// aapt resource value: 0x7F0902A6
-			public const int requestMasterAudio = 2131296934;
-			
-			// aapt resource value: 0x7F0902A7
-			public const int requestMasterVideo = 2131296935;
-			
-			// aapt resource value: 0x7F0902A8
-			public const int requestV = 2131296936;
-			
-			// aapt resource value: 0x7F0902A9
-			public const int restart_preview = 2131296937;
-			
-			// aapt resource value: 0x7F0902AA
-			public const int return_scan_result = 2131296938;
-			
-			// aapt resource value: 0x7F0902AB
-			public const int reverseCall = 2131296939;
-			
-			// aapt resource value: 0x7F0902AC
-			public const int reverseCallInfo = 2131296940;
-			
-			// aapt resource value: 0x7F0902AD
-			public const int reverseSawtooth = 2131296941;
-			
-			// aapt resource value: 0x7F0902AE
-			public const int right = 2131296942;
-			
-			// aapt resource value: 0x7F0902AF
-			public const int rightToLeft = 2131296943;
-			
-			// aapt resource value: 0x7F0902B0
-			public const int right_icon = 2131296944;
-			
-			// aapt resource value: 0x7F0902B1
-			public const int right_side = 2131296945;
-			
-			// aapt resource value: 0x7F0902B2
-			public const int rl_cur_wifi = 2131296946;
-			
-			// aapt resource value: 0x7F0902B3
-			public const int rl_deployment = 2131296947;
-			
-			// aapt resource value: 0x7F0902B4
-			public const int rl_detail = 2131296948;
-			
-			// aapt resource value: 0x7F0902B5
-			public const int rl_detail_type = 2131296949;
-			
-			// aapt resource value: 0x7F0902B6
-			public const int rl_detail_version = 2131296950;
-			
-			// aapt resource value: 0x7F0902B7
-			public const int rl_detele = 2131296951;
-			
-			// aapt resource value: 0x7F0902B8
-			public const int rl_device_detail = 2131296952;
-			
-			// aapt resource value: 0x7F0902B9
-			public const int rl_device_modify = 2131296953;
-			
-			// aapt resource value: 0x7F0902BA
-			public const int rl_device_serial = 2131296954;
-			
-			// aapt resource value: 0x7F0902BB
-			public const int rl_loading = 2131296955;
-			
-			// aapt resource value: 0x7F0902BC
-			public const int rl_lp_answerView = 2131296956;
-			
-			// aapt resource value: 0x7F0902BD
-			public const int rl_lp_topView = 2131296957;
-			
-			// aapt resource value: 0x7F0902BE
-			public const int rl_lp_unlock = 2131296958;
-			
-			// aapt resource value: 0x7F0902BF
-			public const int rl_no_device = 2131296959;
-			
-			// aapt resource value: 0x7F0902C0
-			public const int rl_offline = 2131296960;
-			
-			// aapt resource value: 0x7F0902C1
-			public const int rl_title = 2131296961;
-			
-			// aapt resource value: 0x7F0902C2
-			public const int rotate = 2131296962;
-			
-			// aapt resource value: 0x7F0902C3
-			public const int rotatedown = 2131296963;
-			
-			// aapt resource value: 0x7F0902C4
-			public const int rotateup = 2131296964;
-			
-			// aapt resource value: 0x7F0902C5
-			public const int round = 2131296965;
-			
-			// aapt resource value: 0x7F0902C6
-			public const int rounded = 2131296966;
-			
-			// aapt resource value: 0x7F0902C7
-			public const int row_index_key = 2131296967;
-			
-			// aapt resource value: 0x7F0902C8
-			public const int rtl = 2131296968;
-			
-			// aapt resource value: 0x7F0902C9
-			public const int rudder = 2131296969;
-			
-			// aapt resource value: 0x7F0902CA
-			public const int rv_topbar = 2131296970;
-			
-			// aapt resource value: 0x7F0902CB
-			public const int sample_text = 2131296971;
-			
-			// aapt resource value: 0x7F0902CC
-			public const int save_non_transition_alpha = 2131296972;
-			
-			// aapt resource value: 0x7F0902CD
-			public const int save_overlay_view = 2131296973;
-			
-			// aapt resource value: 0x7F0902CE
-			public const int sawtooth = 2131296974;
-			
-			// aapt resource value: 0x7F0902CF
-			public const int scale = 2131296975;
+			public const int sawtooth = 2131296931;
 			
 			// aapt resource value: 0x7F090012
 			public const int Scale = 2131296274;
 			
-			// aapt resource value: 0x7F0902D0
-			public const int scan_line = 2131296976;
+			// aapt resource value: 0x7F0902A4
+			public const int scale = 2131296932;
 			
-			// aapt resource value: 0x7F0902D1
-			public const int screen = 2131296977;
+			// aapt resource value: 0x7F0902A5
+			public const int scan_line = 2131296933;
 			
-			// aapt resource value: 0x7F0902D2
-			public const int scroll = 2131296978;
+			// aapt resource value: 0x7F0902A6
+			public const int screen = 2131296934;
 			
-			// aapt resource value: 0x7F0902D6
-			public const int scrollable = 2131296982;
+			// aapt resource value: 0x7F0902A7
+			public const int scroll = 2131296935;
 			
-			// aapt resource value: 0x7F0902D3
-			public const int scrollIndicatorDown = 2131296979;
+			// aapt resource value: 0x7F0902AB
+			public const int scrollable = 2131296939;
 			
-			// aapt resource value: 0x7F0902D4
-			public const int scrollIndicatorUp = 2131296980;
+			// aapt resource value: 0x7F0902A8
+			public const int scrollIndicatorDown = 2131296936;
 			
-			// aapt resource value: 0x7F0902D5
-			public const int scrollView = 2131296981;
+			// aapt resource value: 0x7F0902A9
+			public const int scrollIndicatorUp = 2131296937;
 			
-			// aapt resource value: 0x7F0902D7
-			public const int scrollview = 2131296983;
+			// aapt resource value: 0x7F0902AC
+			public const int scrollview = 2131296940;
 			
-			// aapt resource value: 0x7F0902D8
-			public const int search_badge = 2131296984;
+			// aapt resource value: 0x7F0902AA
+			public const int scrollView = 2131296938;
 			
-			// aapt resource value: 0x7F0902D9
-			public const int search_bar = 2131296985;
+			// aapt resource value: 0x7F0902AD
+			public const int search_badge = 2131296941;
 			
-			// aapt resource value: 0x7F0902DA
-			public const int search_button = 2131296986;
+			// aapt resource value: 0x7F0902AE
+			public const int search_bar = 2131296942;
 			
-			// aapt resource value: 0x7F0902DB
-			public const int search_close_btn = 2131296987;
+			// aapt resource value: 0x7F0902AF
+			public const int search_button = 2131296943;
 			
-			// aapt resource value: 0x7F0902DC
-			public const int search_edit_frame = 2131296988;
+			// aapt resource value: 0x7F0902B0
+			public const int search_close_btn = 2131296944;
 			
-			// aapt resource value: 0x7F0902DD
-			public const int search_go_btn = 2131296989;
+			// aapt resource value: 0x7F0902B1
+			public const int search_edit_frame = 2131296945;
 			
-			// aapt resource value: 0x7F0902DE
-			public const int search_mag_icon = 2131296990;
+			// aapt resource value: 0x7F0902B2
+			public const int search_go_btn = 2131296946;
 			
-			// aapt resource value: 0x7F0902DF
-			public const int search_plate = 2131296991;
+			// aapt resource value: 0x7F0902B3
+			public const int search_mag_icon = 2131296947;
 			
-			// aapt resource value: 0x7F0902E0
-			public const int search_src_text = 2131296992;
+			// aapt resource value: 0x7F0902B4
+			public const int search_plate = 2131296948;
 			
-			// aapt resource value: 0x7F0902E1
-			public const int search_voice_btn = 2131296993;
+			// aapt resource value: 0x7F0902B5
+			public const int search_src_text = 2131296949;
 			
-			// aapt resource value: 0x7F0902E2
-			public const int second = 2131296994;
+			// aapt resource value: 0x7F0902B6
+			public const int search_voice_btn = 2131296950;
 			
-			// aapt resource value: 0x7F0902E4
-			public const int selected = 2131296996;
+			// aapt resource value: 0x7F0902B7
+			public const int second = 2131296951;
 			
-			// aapt resource value: 0x7F0902E5
-			public const int selection_type = 2131296997;
+			// aapt resource value: 0x7F0902B9
+			public const int selected = 2131296953;
 			
-			// aapt resource value: 0x7F0902E3
-			public const int select_dialog_listview = 2131296995;
+			// aapt resource value: 0x7F0902BA
+			public const int selection_type = 2131296954;
 			
-			// aapt resource value: 0x7F0902E6
-			public const int sendA = 2131296998;
+			// aapt resource value: 0x7F0902B8
+			public const int select_dialog_listview = 2131296952;
 			
-			// aapt resource value: 0x7F0902E7
-			public const int sendCustomData = 2131296999;
+			// aapt resource value: 0x7F0902BB
+			public const int service_agreement_btn = 2131296955;
 			
-			// aapt resource value: 0x7F0902E8
-			public const int sendV = 2131297000;
+			// aapt resource value: 0x7F0902BC
+			public const int sharedValueSet = 2131296956;
 			
-			// aapt resource value: 0x7F0902E9
-			public const int service_agreement_btn = 2131297001;
-			
-			// aapt resource value: 0x7F0902EA
-			public const int sharedValueSet = 2131297002;
-			
-			// aapt resource value: 0x7F0902EB
-			public const int sharedValueUnset = 2131297003;
+			// aapt resource value: 0x7F0902BD
+			public const int sharedValueUnset = 2131296957;
 			
 			// aapt resource value: 0x7F09000C
 			public const int SHIFT = 2131296268;
 			
-			// aapt resource value: 0x7F0902EC
-			public const int shortcut = 2131297004;
+			// aapt resource value: 0x7F0902BE
+			public const int shortcut = 2131296958;
 			
-			// aapt resource value: 0x7F0902ED
-			public const int show = 2131297005;
+			// aapt resource value: 0x7F0902BF
+			public const int showCustom = 2131296959;
 			
-			// aapt resource value: 0x7F0902EE
-			public const int showCustom = 2131297006;
+			// aapt resource value: 0x7F0902C0
+			public const int showHome = 2131296960;
 			
-			// aapt resource value: 0x7F0902EF
-			public const int showHome = 2131297007;
-			
-			// aapt resource value: 0x7F0902F0
-			public const int showTitle = 2131297008;
+			// aapt resource value: 0x7F0902C1
+			public const int showTitle = 2131296961;
 			
 			// aapt resource value: 0x7F09000D
 			public const int SHOW_ALL = 2131296269;
@@ -16974,911 +16737,800 @@
 			// aapt resource value: 0x7F09000F
 			public const int SHOW_PROGRESS = 2131296271;
 			
-			// aapt resource value: 0x7F0902F1
-			public const int sin = 2131297009;
+			// aapt resource value: 0x7F0902C2
+			public const int sin = 2131296962;
 			
-			// aapt resource value: 0x7F0902F2
-			public const int skipCollapsed = 2131297010;
+			// aapt resource value: 0x7F0902C3
+			public const int skipCollapsed = 2131296963;
 			
-			// aapt resource value: 0x7F0902F3
-			public const int skipped = 2131297011;
+			// aapt resource value: 0x7F0902C4
+			public const int skipped = 2131296964;
 			
-			// aapt resource value: 0x7F0902F4
-			public const int slide = 2131297012;
+			// aapt resource value: 0x7F0902C5
+			public const int slide = 2131296965;
 			
-			// aapt resource value: 0x7F0902F5
-			public const int snackbar_action = 2131297013;
+			// aapt resource value: 0x7F0902C6
+			public const int snackbar_action = 2131296966;
 			
-			// aapt resource value: 0x7F0902F6
-			public const int snackbar_text = 2131297014;
+			// aapt resource value: 0x7F0902C7
+			public const int snackbar_text = 2131296967;
 			
-			// aapt resource value: 0x7F0902F7
-			public const int snap = 2131297015;
+			// aapt resource value: 0x7F0902C8
+			public const int snap = 2131296968;
 			
-			// aapt resource value: 0x7F0902F8
-			public const int snapMargins = 2131297016;
+			// aapt resource value: 0x7F0902C9
+			public const int snapMargins = 2131296969;
 			
-			// aapt resource value: 0x7F0902F9
-			public const int snapshot = 2131297017;
+			// aapt resource value: 0x7F0902CA
+			public const int south = 2131296970;
 			
-			// aapt resource value: 0x7F0902FA
-			public const int south = 2131297018;
+			// aapt resource value: 0x7F0902CB
+			public const int spacer = 2131296971;
 			
-			// aapt resource value: 0x7F0902FB
-			public const int spacer = 2131297019;
+			// aapt resource value: 0x7F0902CC
+			public const int special_effects_controller_view_tag = 2131296972;
 			
-			// aapt resource value: 0x7F0902FC
-			public const int special_effects_controller_view_tag = 2131297020;
+			// aapt resource value: 0x7F0902CD
+			public const int spline = 2131296973;
 			
-			// aapt resource value: 0x7F0902FD
-			public const int spline = 2131297021;
+			// aapt resource value: 0x7F0902CE
+			public const int split_action_bar = 2131296974;
 			
-			// aapt resource value: 0x7F0902FE
-			public const int split_action_bar = 2131297022;
+			// aapt resource value: 0x7F0902CF
+			public const int spread = 2131296975;
 			
-			// aapt resource value: 0x7F0902FF
-			public const int spread = 2131297023;
+			// aapt resource value: 0x7F0902D0
+			public const int spread_inside = 2131296976;
 			
-			// aapt resource value: 0x7F090300
-			public const int spread_inside = 2131297024;
+			// aapt resource value: 0x7F0902D1
+			public const int spring = 2131296977;
 			
-			// aapt resource value: 0x7F090301
-			public const int spring = 2131297025;
+			// aapt resource value: 0x7F0902D2
+			public const int square = 2131296978;
 			
-			// aapt resource value: 0x7F090302
-			public const int square = 2131297026;
+			// aapt resource value: 0x7F0902D3
+			public const int src_atop = 2131296979;
 			
-			// aapt resource value: 0x7F090303
-			public const int src_atop = 2131297027;
+			// aapt resource value: 0x7F0902D4
+			public const int src_in = 2131296980;
 			
-			// aapt resource value: 0x7F090304
-			public const int src_in = 2131297028;
+			// aapt resource value: 0x7F0902D5
+			public const int src_over = 2131296981;
 			
-			// aapt resource value: 0x7F090305
-			public const int src_over = 2131297029;
+			// aapt resource value: 0x7F0902D6
+			public const int srl_classics_arrow = 2131296982;
 			
-			// aapt resource value: 0x7F090306
-			public const int srl_classics_arrow = 2131297030;
+			// aapt resource value: 0x7F0902D7
+			public const int srl_classics_center = 2131296983;
 			
-			// aapt resource value: 0x7F090307
-			public const int srl_classics_center = 2131297031;
+			// aapt resource value: 0x7F0902D8
+			public const int srl_classics_progress = 2131296984;
 			
-			// aapt resource value: 0x7F090308
-			public const int srl_classics_progress = 2131297032;
+			// aapt resource value: 0x7F0902D9
+			public const int srl_classics_title = 2131296985;
 			
-			// aapt resource value: 0x7F090309
-			public const int srl_classics_title = 2131297033;
+			// aapt resource value: 0x7F0902DA
+			public const int srl_classics_update = 2131296986;
 			
-			// aapt resource value: 0x7F09030A
-			public const int srl_classics_update = 2131297034;
+			// aapt resource value: 0x7F0902DB
+			public const int ssid = 2131296987;
 			
-			// aapt resource value: 0x7F09030B
-			public const int ssid = 2131297035;
+			// aapt resource value: 0x7F0902DC
+			public const int ssid_title = 2131296988;
 			
-			// aapt resource value: 0x7F09030C
-			public const int ssid_title = 2131297036;
+			// aapt resource value: 0x7F0902DD
+			public const int stack = 2131296989;
 			
-			// aapt resource value: 0x7F09030D
-			public const int stack = 2131297037;
+			// aapt resource value: 0x7F0902DE
+			public const int standard = 2131296990;
 			
-			// aapt resource value: 0x7F09030E
-			public const int standard = 2131297038;
+			// aapt resource value: 0x7F0902DF
+			public const int start = 2131296991;
 			
-			// aapt resource value: 0x7F09030F
-			public const int start = 2131297039;
+			// aapt resource value: 0x7F0902E0
+			public const int startHorizontal = 2131296992;
 			
-			// aapt resource value: 0x7F090310
-			public const int startAVMsg = 2131297040;
+			// aapt resource value: 0x7F0902E1
+			public const int startToEnd = 2131296993;
 			
-			// aapt resource value: 0x7F090311
-			public const int startDoorKey = 2131297041;
+			// aapt resource value: 0x7F0902E2
+			public const int startVertical = 2131296994;
 			
-			// aapt resource value: 0x7F090312
-			public const int startHorizontal = 2131297042;
+			// aapt resource value: 0x7F0902E3
+			public const int staticLayout = 2131296995;
 			
-			// aapt resource value: 0x7F090313
-			public const int startLocalRecord = 2131297043;
+			// aapt resource value: 0x7F0902E4
+			public const int staticPostLayout = 2131296996;
 			
-			// aapt resource value: 0x7F090314
-			public const int startReadCard = 2131297044;
+			// aapt resource value: 0x7F0902E5
+			public const int status = 2131296997;
 			
-			// aapt resource value: 0x7F090315
-			public const int startRecord = 2131297045;
+			// aapt resource value: 0x7F0902E6
+			public const int status_bar_latest_event_content = 2131296998;
 			
-			// aapt resource value: 0x7F090316
-			public const int startRecordLocalAudio = 2131297046;
+			// aapt resource value: 0x7F0902E7
+			public const int stop = 2131296999;
 			
-			// aapt resource value: 0x7F090317
-			public const int startRecordPeerAudio = 2131297047;
-			
-			// aapt resource value: 0x7F090318
-			public const int startStream = 2131297048;
-			
-			// aapt resource value: 0x7F090319
-			public const int startToEnd = 2131297049;
-			
-			// aapt resource value: 0x7F09031A
-			public const int startVertical = 2131297050;
-			
-			// aapt resource value: 0x7F09031B
-			public const int startWatchDog = 2131297051;
-			
-			// aapt resource value: 0x7F09031C
-			public const int start_stop = 2131297052;
-			
-			// aapt resource value: 0x7F09031D
-			public const int start_stop_stream = 2131297053;
-			
-			// aapt resource value: 0x7F09031E
-			public const int staticLayout = 2131297054;
-			
-			// aapt resource value: 0x7F09031F
-			public const int staticPostLayout = 2131297055;
-			
-			// aapt resource value: 0x7F090320
-			public const int status = 2131297056;
-			
-			// aapt resource value: 0x7F090322
-			public const int statusbarutil_fake_status_bar_view = 2131297058;
-			
-			// aapt resource value: 0x7F090323
-			public const int statusbarutil_translucent_view = 2131297059;
-			
-			// aapt resource value: 0x7F090321
-			public const int status_bar_latest_event_content = 2131297057;
-			
-			// aapt resource value: 0x7F090324
-			public const int stop = 2131297060;
-			
-			// aapt resource value: 0x7F090325
-			public const int stopAVMsg = 2131297061;
-			
-			// aapt resource value: 0x7F090326
-			public const int stopDoorKey = 2131297062;
-			
-			// aapt resource value: 0x7F090327
-			public const int stopLocalRecord = 2131297063;
-			
-			// aapt resource value: 0x7F090328
-			public const int stopReadCard = 2131297064;
-			
-			// aapt resource value: 0x7F090329
-			public const int stopRecord = 2131297065;
-			
-			// aapt resource value: 0x7F09032A
-			public const int stopRecordLocalAudio = 2131297066;
-			
-			// aapt resource value: 0x7F09032B
-			public const int stopRecordPeerAudio = 2131297067;
-			
-			// aapt resource value: 0x7F09032C
-			public const int stopStream = 2131297068;
-			
-			// aapt resource value: 0x7F09032D
-			public const int stopWatchDog = 2131297069;
-			
-			// aapt resource value: 0x7F09032E
-			public const int stretch = 2131297070;
+			// aapt resource value: 0x7F0902E8
+			public const int stretch = 2131297000;
 			
 			// aapt resource value: 0x7F090010
 			public const int STROKE = 2131296272;
 			
-			// aapt resource value: 0x7F090330
-			public const int submenuarrow = 2131297072;
+			// aapt resource value: 0x7F0902EA
+			public const int submenuarrow = 2131297002;
 			
-			// aapt resource value: 0x7F090331
-			public const int submit_area = 2131297073;
+			// aapt resource value: 0x7F0902EB
+			public const int submit_area = 2131297003;
 			
-			// aapt resource value: 0x7F090332
-			public const int subtitle = 2131297074;
+			// aapt resource value: 0x7F0902EC
+			public const int subtitle = 2131297004;
 			
-			// aapt resource value: 0x7F09032F
-			public const int sub_tv = 2131297071;
+			// aapt resource value: 0x7F0902E9
+			public const int sub_tv = 2131297001;
 			
-			// aapt resource value: 0x7F090333
-			public const int supportScrollUp = 2131297075;
+			// aapt resource value: 0x7F0902ED
+			public const int supportScrollUp = 2131297005;
 			
-			// aapt resource value: 0x7F090334
-			public const int switch_tv = 2131297076;
+			// aapt resource value: 0x7F0902EE
+			public const int switch_tv = 2131297006;
 			
-			// aapt resource value: 0x7F090335
-			public const int switch_wifi = 2131297077;
+			// aapt resource value: 0x7F0902EF
+			public const int switch_wifi = 2131297007;
 			
 			// aapt resource value: 0x7F090011
 			public const int SYM = 2131296273;
 			
-			// aapt resource value: 0x7F090337
-			public const int tablet = 2131297079;
+			// aapt resource value: 0x7F0902F1
+			public const int tablet = 2131297009;
 			
-			// aapt resource value: 0x7F090336
-			public const int tabMode = 2131297078;
+			// aapt resource value: 0x7F0902F0
+			public const int tabMode = 2131297008;
 			
-			// aapt resource value: 0x7F090338
-			public const int tag_accessibility_actions = 2131297080;
+			// aapt resource value: 0x7F0902F2
+			public const int tag_accessibility_actions = 2131297010;
 			
-			// aapt resource value: 0x7F090339
-			public const int tag_accessibility_clickable_spans = 2131297081;
+			// aapt resource value: 0x7F0902F3
+			public const int tag_accessibility_clickable_spans = 2131297011;
 			
-			// aapt resource value: 0x7F09033A
-			public const int tag_accessibility_heading = 2131297082;
+			// aapt resource value: 0x7F0902F4
+			public const int tag_accessibility_heading = 2131297012;
 			
-			// aapt resource value: 0x7F09033B
-			public const int tag_accessibility_pane_title = 2131297083;
+			// aapt resource value: 0x7F0902F5
+			public const int tag_accessibility_pane_title = 2131297013;
 			
-			// aapt resource value: 0x7F09033C
-			public const int tag_left = 2131297084;
+			// aapt resource value: 0x7F0902F6
+			public const int tag_left = 2131297014;
 			
-			// aapt resource value: 0x7F09033D
-			public const int tag_on_apply_window_listener = 2131297085;
+			// aapt resource value: 0x7F0902F7
+			public const int tag_on_apply_window_listener = 2131297015;
 			
-			// aapt resource value: 0x7F09033E
-			public const int tag_on_receive_content_listener = 2131297086;
+			// aapt resource value: 0x7F0902F8
+			public const int tag_on_receive_content_listener = 2131297016;
 			
-			// aapt resource value: 0x7F09033F
-			public const int tag_on_receive_content_mime_types = 2131297087;
+			// aapt resource value: 0x7F0902F9
+			public const int tag_on_receive_content_mime_types = 2131297017;
 			
-			// aapt resource value: 0x7F090340
-			public const int tag_right = 2131297088;
+			// aapt resource value: 0x7F0902FA
+			public const int tag_right = 2131297018;
 			
-			// aapt resource value: 0x7F090341
-			public const int tag_screen_reader_focusable = 2131297089;
+			// aapt resource value: 0x7F0902FB
+			public const int tag_screen_reader_focusable = 2131297019;
 			
-			// aapt resource value: 0x7F090342
-			public const int tag_state_description = 2131297090;
+			// aapt resource value: 0x7F0902FC
+			public const int tag_state_description = 2131297020;
 			
-			// aapt resource value: 0x7F090343
-			public const int tag_transition_group = 2131297091;
+			// aapt resource value: 0x7F0902FD
+			public const int tag_transition_group = 2131297021;
 			
-			// aapt resource value: 0x7F090344
-			public const int tag_unhandled_key_event_manager = 2131297092;
+			// aapt resource value: 0x7F0902FE
+			public const int tag_unhandled_key_event_manager = 2131297022;
 			
-			// aapt resource value: 0x7F090345
-			public const int tag_unhandled_key_listeners = 2131297093;
+			// aapt resource value: 0x7F0902FF
+			public const int tag_unhandled_key_listeners = 2131297023;
 			
-			// aapt resource value: 0x7F090346
-			public const int tag_window_insets_animation_callback = 2131297094;
+			// aapt resource value: 0x7F090300
+			public const int tag_window_insets_animation_callback = 2131297024;
 			
-			// aapt resource value: 0x7F090347
-			public const int test = 2131297095;
+			// aapt resource value: 0x7F090301
+			public const int test = 2131297025;
 			
-			// aapt resource value: 0x7F090348
-			public const int testWatchDogReboot = 2131297096;
+			// aapt resource value: 0x7F090302
+			public const int text = 2131297026;
 			
-			// aapt resource value: 0x7F090349
-			public const int text = 2131297097;
+			// aapt resource value: 0x7F090303
+			public const int text2 = 2131297027;
 			
-			// aapt resource value: 0x7F09034A
-			public const int text2 = 2131297098;
+			// aapt resource value: 0x7F090304
+			public const int textEnd = 2131297028;
 			
-			// aapt resource value: 0x7F09034B
-			public const int textEnd = 2131297099;
+			// aapt resource value: 0x7F09030C
+			public const int textinput_counter = 2131297036;
 			
-			// aapt resource value: 0x7F090353
-			public const int textinput_counter = 2131297107;
+			// aapt resource value: 0x7F09030D
+			public const int textinput_error = 2131297037;
 			
-			// aapt resource value: 0x7F090354
-			public const int textinput_error = 2131297108;
+			// aapt resource value: 0x7F09030E
+			public const int textinput_helper_text = 2131297038;
 			
-			// aapt resource value: 0x7F090355
-			public const int textinput_helper_text = 2131297109;
+			// aapt resource value: 0x7F09030F
+			public const int textinput_placeholder = 2131297039;
 			
-			// aapt resource value: 0x7F090356
-			public const int textinput_placeholder = 2131297110;
+			// aapt resource value: 0x7F090310
+			public const int textinput_prefix_text = 2131297040;
 			
-			// aapt resource value: 0x7F090357
-			public const int textinput_prefix_text = 2131297111;
+			// aapt resource value: 0x7F090311
+			public const int textinput_suffix_text = 2131297041;
 			
-			// aapt resource value: 0x7F090358
-			public const int textinput_suffix_text = 2131297112;
+			// aapt resource value: 0x7F090305
+			public const int textSpacerNoButtons = 2131297029;
 			
-			// aapt resource value: 0x7F09034C
-			public const int textSpacerNoButtons = 2131297100;
+			// aapt resource value: 0x7F090306
+			public const int textSpacerNoTitle = 2131297030;
 			
-			// aapt resource value: 0x7F09034D
-			public const int textSpacerNoTitle = 2131297101;
+			// aapt resource value: 0x7F090307
+			public const int textStart = 2131297031;
 			
-			// aapt resource value: 0x7F09034E
-			public const int textStart = 2131297102;
+			// aapt resource value: 0x7F090308
+			public const int textTop = 2131297032;
 			
-			// aapt resource value: 0x7F09034F
-			public const int textTop = 2131297103;
+			// aapt resource value: 0x7F090309
+			public const int text_input_end_icon = 2131297033;
 			
-			// aapt resource value: 0x7F090350
-			public const int text_input_end_icon = 2131297104;
+			// aapt resource value: 0x7F09030A
+			public const int text_input_error_icon = 2131297034;
 			
-			// aapt resource value: 0x7F090351
-			public const int text_input_error_icon = 2131297105;
+			// aapt resource value: 0x7F09030B
+			public const int text_input_start_icon = 2131297035;
 			
-			// aapt resource value: 0x7F090352
-			public const int text_input_start_icon = 2131297106;
+			// aapt resource value: 0x7F090312
+			public const int time = 2131297042;
 			
-			// aapt resource value: 0x7F090359
-			public const int time = 2131297113;
+			// aapt resource value: 0x7F090313
+			public const int timepicker = 2131297043;
 			
-			// aapt resource value: 0x7F09035A
-			public const int timepicker = 2131297114;
+			// aapt resource value: 0x7F090314
+			public const int tip = 2131297044;
 			
-			// aapt resource value: 0x7F09035B
-			public const int timer_lp_calltime = 2131297115;
+			// aapt resource value: 0x7F090315
+			public const int tip1 = 2131297045;
 			
-			// aapt resource value: 0x7F09035C
-			public const int tip = 2131297116;
+			// aapt resource value: 0x7F090316
+			public const int tip2_txt = 2131297046;
 			
-			// aapt resource value: 0x7F09035D
-			public const int tip1 = 2131297117;
+			// aapt resource value: 0x7F090317
+			public const int tip_img = 2131297047;
 			
-			// aapt resource value: 0x7F09035E
-			public const int tip2_txt = 2131297118;
+			// aapt resource value: 0x7F090318
+			public const int tip_txt = 2131297048;
 			
-			// aapt resource value: 0x7F09035F
-			public const int tip_img = 2131297119;
+			// aapt resource value: 0x7F090319
+			public const int tip_txt2 = 2131297049;
 			
-			// aapt resource value: 0x7F090360
-			public const int tip_txt = 2131297120;
+			// aapt resource value: 0x7F09031A
+			public const int tip_txt_1 = 2131297050;
 			
-			// aapt resource value: 0x7F090361
-			public const int tip_txt2 = 2131297121;
+			// aapt resource value: 0x7F09031B
+			public const int tip_wifi_pwd_error = 2131297051;
 			
-			// aapt resource value: 0x7F090362
-			public const int tip_txt_1 = 2131297122;
+			// aapt resource value: 0x7F09031C
+			public const int title = 2131297052;
 			
-			// aapt resource value: 0x7F090363
-			public const int tip_wifi_pwd_error = 2131297123;
+			// aapt resource value: 0x7F09031D
+			public const int titleDividerNoCustom = 2131297053;
 			
-			// aapt resource value: 0x7F090364
-			public const int title = 2131297124;
+			// aapt resource value: 0x7F09031E
+			public const int title_template = 2131297054;
 			
-			// aapt resource value: 0x7F090365
-			public const int titleDividerNoCustom = 2131297125;
+			// aapt resource value: 0x7F09031F
+			public const int title_tv = 2131297055;
 			
-			// aapt resource value: 0x7F090366
-			public const int title_template = 2131297126;
+			// aapt resource value: 0x7F090320
+			public const int toggle = 2131297056;
 			
-			// aapt resource value: 0x7F090367
-			public const int title_tv = 2131297127;
+			// aapt resource value: 0x7F090321
+			public const int top = 2131297057;
 			
-			// aapt resource value: 0x7F090368
-			public const int toggle = 2131297128;
+			// aapt resource value: 0x7F090322
+			public const int topPanel = 2131297058;
 			
-			// aapt resource value: 0x7F090369
-			public const int top = 2131297129;
+			// aapt resource value: 0x7F090323
+			public const int topToBottom = 2131297059;
 			
-			// aapt resource value: 0x7F09036A
-			public const int topPanel = 2131297130;
+			// aapt resource value: 0x7F090324
+			public const int top_bar = 2131297060;
 			
-			// aapt resource value: 0x7F09036B
-			public const int topToBottom = 2131297131;
-			
-			// aapt resource value: 0x7F09036C
-			public const int top_bar = 2131297132;
-			
-			// aapt resource value: 0x7F09036D
-			public const int top_container = 2131297133;
+			// aapt resource value: 0x7F090325
+			public const int top_container = 2131297061;
 			
 			// aapt resource value: 0x7F090013
 			public const int TOP_END = 2131296275;
 			
-			// aapt resource value: 0x7F09036E
-			public const int top_img_container = 2131297134;
+			// aapt resource value: 0x7F090326
+			public const int top_img_container = 2131297062;
 			
-			// aapt resource value: 0x7F09036F
-			public const int top_line = 2131297135;
+			// aapt resource value: 0x7F090327
+			public const int top_line = 2131297063;
 			
 			// aapt resource value: 0x7F090014
 			public const int TOP_START = 2131296276;
 			
-			// aapt resource value: 0x7F090370
-			public const int touch_outside = 2131297136;
+			// aapt resource value: 0x7F090328
+			public const int touch_outside = 2131297064;
 			
-			// aapt resource value: 0x7F090371
-			public const int transitionToEnd = 2131297137;
+			// aapt resource value: 0x7F090329
+			public const int transitionToEnd = 2131297065;
 			
-			// aapt resource value: 0x7F090372
-			public const int transitionToStart = 2131297138;
+			// aapt resource value: 0x7F09032A
+			public const int transitionToStart = 2131297066;
 			
-			// aapt resource value: 0x7F090373
-			public const int transition_current_scene = 2131297139;
+			// aapt resource value: 0x7F09032B
+			public const int transition_current_scene = 2131297067;
 			
-			// aapt resource value: 0x7F090374
-			public const int transition_layout_save = 2131297140;
+			// aapt resource value: 0x7F09032C
+			public const int transition_layout_save = 2131297068;
 			
-			// aapt resource value: 0x7F090375
-			public const int transition_position = 2131297141;
+			// aapt resource value: 0x7F09032D
+			public const int transition_position = 2131297069;
 			
-			// aapt resource value: 0x7F090376
-			public const int transition_scene_layoutid_cache = 2131297142;
+			// aapt resource value: 0x7F09032E
+			public const int transition_scene_layoutid_cache = 2131297070;
 			
-			// aapt resource value: 0x7F090377
-			public const int transition_transform = 2131297143;
+			// aapt resource value: 0x7F09032F
+			public const int transition_transform = 2131297071;
 			
 			// aapt resource value: 0x7F090015
 			public const int Translate = 2131296277;
 			
+			// aapt resource value: 0x7F090330
+			public const int triangle = 2131297072;
+			
+			// aapt resource value: 0x7F090331
+			public const int tvFormat_sd = 2131297073;
+			
+			// aapt resource value: 0x7F090332
+			public const int tvTitle = 2131297074;
+			
+			// aapt resource value: 0x7F090333
+			public const int tv_5g_tip = 2131297075;
+			
+			// aapt resource value: 0x7F090334
+			public const int tv_about_wifi_pwd = 2131297076;
+			
+			// aapt resource value: 0x7F090335
+			public const int tv_action1 = 2131297077;
+			
+			// aapt resource value: 0x7F090336
+			public const int tv_all = 2131297078;
+			
+			// aapt resource value: 0x7F090337
+			public const int tv_ap_sn = 2131297079;
+			
+			// aapt resource value: 0x7F090338
+			public const int tv_cancel = 2131297080;
+			
+			// aapt resource value: 0x7F090339
+			public const int tv_choose_other = 2131297081;
+			
+			// aapt resource value: 0x7F09033A
+			public const int tv_cloud_record = 2131297082;
+			
+			// aapt resource value: 0x7F09033B
+			public const int tv_cloud_video = 2131297083;
+			
+			// aapt resource value: 0x7F09033C
+			public const int tv_content = 2131297084;
+			
+			// aapt resource value: 0x7F09033D
+			public const int tv_cover_stream = 2131297085;
+			
+			// aapt resource value: 0x7F09033F
+			public const int tv_current_version_tip = 2131297087;
+			
+			// aapt resource value: 0x7F090340
+			public const int tv_current_wifi = 2131297088;
+			
+			// aapt resource value: 0x7F09033E
+			public const int tv_cur_wifi_tip = 2131297086;
+			
+			// aapt resource value: 0x7F090341
+			public const int tv_delete = 2131297089;
+			
+			// aapt resource value: 0x7F090342
+			public const int tv_deployment_tip = 2131297090;
+			
+			// aapt resource value: 0x7F090343
+			public const int tv_device_current_version = 2131297091;
+			
+			// aapt resource value: 0x7F090344
+			public const int tv_device_info = 2131297092;
+			
+			// aapt resource value: 0x7F090345
+			public const int tv_device_name = 2131297093;
+			
+			// aapt resource value: 0x7F090346
+			public const int tv_device_name_tip = 2131297094;
+			
+			// aapt resource value: 0x7F090347
+			public const int tv_device_serial = 2131297095;
+			
+			// aapt resource value: 0x7F090348
+			public const int tv_device_serial_tip = 2131297096;
+			
+			// aapt resource value: 0x7F090349
+			public const int tv_device_type = 2131297097;
+			
+			// aapt resource value: 0x7F09034A
+			public const int tv_device_version = 2131297098;
+			
+			// aapt resource value: 0x7F09034B
+			public const int tv_edit = 2131297099;
+			
+			// aapt resource value: 0x7F09034C
+			public const int tv_flash = 2131297100;
+			
+			// aapt resource value: 0x7F09034D
+			public const int tv_goto_connect = 2131297101;
+			
+			// aapt resource value: 0x7F09034E
+			public const int tv_help_phone = 2131297102;
+			
+			// aapt resource value: 0x7F09034F
+			public const int tv_image_show_tip = 2131297103;
+			
+			// aapt resource value: 0x7F090350
+			public const int tv_init = 2131297104;
+			
+			// aapt resource value: 0x7F090351
+			public const int tv_input_ok = 2131297105;
+			
+			// aapt resource value: 0x7F090352
+			public const int tv_lan = 2131297106;
+			
+			// aapt resource value: 0x7F090353
+			public const int tv_left_btn = 2131297107;
+			
+			// aapt resource value: 0x7F090355
+			public const int tv_loadingmore = 2131297109;
+			
+			// aapt resource value: 0x7F090354
+			public const int tv_loading_msg = 2131297108;
+			
+			// aapt resource value: 0x7F090356
+			public const int tv_local_record = 2131297110;
+			
+			// aapt resource value: 0x7F090357
+			public const int tv_local_video = 2131297111;
+			
+			// aapt resource value: 0x7F090358
+			public const int tv_message = 2131297112;
+			
+			// aapt resource value: 0x7F090359
+			public const int tv_message2 = 2131297113;
+			
+			// aapt resource value: 0x7F09035A
+			public const int tv_modify_device_pwd = 2131297114;
+			
+			// aapt resource value: 0x7F09035B
+			public const int tv_month_day = 2131297115;
+			
+			// aapt resource value: 0x7F09035C
+			public const int tv_msg = 2131297116;
+			
+			// aapt resource value: 0x7F09035D
+			public const int tv_name = 2131297117;
+			
+			// aapt resource value: 0x7F09035E
+			public const int tv_name_input = 2131297118;
+			
+			// aapt resource value: 0x7F09035F
+			public const int tv_new_version = 2131297119;
+			
+			// aapt resource value: 0x7F090360
+			public const int tv_new_version_1 = 2131297120;
+			
+			// aapt resource value: 0x7F090361
+			public const int tv_new_version_tip = 2131297121;
+			
+			// aapt resource value: 0x7F090362
+			public const int tv_next = 2131297122;
+			
+			// aapt resource value: 0x7F090363
+			public const int tv_no_video = 2131297123;
+			
+			// aapt resource value: 0x7F090364
+			public const int tv_offline = 2131297124;
+			
+			// aapt resource value: 0x7F090365
+			public const int tv_ok = 2131297125;
+			
+			// aapt resource value: 0x7F090366
+			public const int tv_overseas = 2131297126;
+			
+			// aapt resource value: 0x7F090367
+			public const int tv_pixel = 2131297127;
+			
+			// aapt resource value: 0x7F090368
+			public const int tv_play_pixel = 2131297128;
+			
+			// aapt resource value: 0x7F090369
+			public const int tv_pwd_tip_new = 2131297129;
+			
+			// aapt resource value: 0x7F09036A
+			public const int tv_record_stream = 2131297130;
+			
+			// aapt resource value: 0x7F09036B
+			public const int tv_right_btn = 2131297131;
+			
+			// aapt resource value: 0x7F09036C
+			public const int tv_show_tip = 2131297132;
+			
+			// aapt resource value: 0x7F09036D
+			public const int tv_single_btn = 2131297133;
+			
+			// aapt resource value: 0x7F09036E
+			public const int tv_sms_valid_tip = 2131297134;
+			
+			// aapt resource value: 0x7F09036F
+			public const int tv_softap = 2131297135;
+			
+			// aapt resource value: 0x7F090370
+			public const int tv_sure = 2131297136;
+			
+			// aapt resource value: 0x7F090371
+			public const int tv_time = 2131297137;
+			
+			// aapt resource value: 0x7F090372
+			public const int tv_time_m = 2131297138;
+			
+			// aapt resource value: 0x7F090373
+			public const int tv_time_s = 2131297139;
+			
+			// aapt resource value: 0x7F090374
+			public const int tv_tip = 2131297140;
+			
+			// aapt resource value: 0x7F090375
+			public const int tv_tip_title = 2131297141;
+			
+			// aapt resource value: 0x7F090376
+			public const int tv_title = 2131297142;
+			
+			// aapt resource value: 0x7F090377
+			public const int tv_title_center = 2131297143;
+			
 			// aapt resource value: 0x7F090378
-			public const int triangle = 2131297144;
+			public const int tv_title_center_sub = 2131297144;
 			
 			// aapt resource value: 0x7F090379
-			public const int tvFormat_sd = 2131297145;
+			public const int tv_title_cn = 2131297145;
 			
 			// aapt resource value: 0x7F09037A
-			public const int tvTitle = 2131297146;
+			public const int tv_title_left = 2131297146;
 			
 			// aapt resource value: 0x7F09037B
-			public const int tv_5g_tip = 2131297147;
+			public const int tv_title_left2 = 2131297147;
 			
 			// aapt resource value: 0x7F09037C
-			public const int tv_about_wifi_pwd = 2131297148;
+			public const int tv_title_right = 2131297148;
 			
 			// aapt resource value: 0x7F09037D
-			public const int tv_action1 = 2131297149;
+			public const int tv_title_right2 = 2131297149;
 			
 			// aapt resource value: 0x7F09037E
-			public const int tv_all = 2131297150;
+			public const int tv_title_type = 2131297150;
 			
 			// aapt resource value: 0x7F09037F
-			public const int tv_ap_sn = 2131297151;
+			public const int tv_today = 2131297151;
 			
 			// aapt resource value: 0x7F090380
-			public const int tv_cancel = 2131297152;
+			public const int tv_type_tip = 2131297152;
 			
 			// aapt resource value: 0x7F090381
-			public const int tv_choose_other = 2131297153;
+			public const int tv_version_tip = 2131297153;
 			
 			// aapt resource value: 0x7F090382
-			public const int tv_cloud_record = 2131297154;
+			public const int tv_wifi_name = 2131297154;
 			
 			// aapt resource value: 0x7F090383
-			public const int tv_cloud_video = 2131297155;
+			public const int tv_wifi_pwd = 2131297155;
 			
 			// aapt resource value: 0x7F090384
-			public const int tv_content = 2131297156;
+			public const int tv_wlan = 2131297156;
 			
 			// aapt resource value: 0x7F090385
-			public const int tv_content_tip = 2131297157;
+			public const int tv_zxing_back = 2131297157;
 			
 			// aapt resource value: 0x7F090386
-			public const int tv_cover_stream = 2131297158;
-			
-			// aapt resource value: 0x7F090388
-			public const int tv_current_version_tip = 2131297160;
-			
-			// aapt resource value: 0x7F090389
-			public const int tv_current_wifi = 2131297161;
+			public const int tv_zxing_flash = 2131297158;
 			
 			// aapt resource value: 0x7F090387
-			public const int tv_cur_wifi_tip = 2131297159;
+			public const int tv_zxing_scan = 2131297159;
+			
+			// aapt resource value: 0x7F090388
+			public const int two_button_layout = 2131297160;
+			
+			// aapt resource value: 0x7F090389
+			public const int @unchecked = 2131297161;
 			
 			// aapt resource value: 0x7F09038A
-			public const int tv_delete = 2131297162;
+			public const int uniform = 2131297162;
 			
 			// aapt resource value: 0x7F09038B
-			public const int tv_deployment_tip = 2131297163;
+			public const int unlabeled = 2131297163;
 			
 			// aapt resource value: 0x7F09038C
-			public const int tv_device_current_version = 2131297164;
+			public const int up = 2131297164;
 			
 			// aapt resource value: 0x7F09038D
-			public const int tv_device_info = 2131297165;
+			public const int useLogo = 2131297165;
 			
 			// aapt resource value: 0x7F09038E
-			public const int tv_device_name = 2131297166;
+			public const int user_layout = 2131297166;
 			
 			// aapt resource value: 0x7F09038F
-			public const int tv_device_name_tip = 2131297167;
-			
-			// aapt resource value: 0x7F090390
-			public const int tv_device_serial = 2131297168;
+			public const int user_register = 2131297167;
 			
 			// aapt resource value: 0x7F090391
-			public const int tv_device_serial_tip = 2131297169;
+			public const int vertical_only = 2131297169;
 			
 			// aapt resource value: 0x7F090392
-			public const int tv_device_type = 2131297170;
+			public const int videoBackImg = 2131297170;
 			
 			// aapt resource value: 0x7F090393
-			public const int tv_device_version = 2131297171;
+			public const int view_offset_helper = 2131297171;
 			
 			// aapt resource value: 0x7F090394
-			public const int tv_edit = 2131297172;
+			public const int view_transition = 2131297172;
 			
 			// aapt resource value: 0x7F090395
-			public const int tv_flash = 2131297173;
+			public const int view_tree_lifecycle_owner = 2131297173;
 			
 			// aapt resource value: 0x7F090396
-			public const int tv_goto_connect = 2131297174;
+			public const int view_tree_on_back_pressed_dispatcher_owner = 2131297174;
 			
 			// aapt resource value: 0x7F090397
-			public const int tv_help_phone = 2131297175;
+			public const int view_tree_saved_state_registry_owner = 2131297175;
 			
 			// aapt resource value: 0x7F090398
-			public const int tv_image_show_tip = 2131297176;
+			public const int view_tree_view_model_store_owner = 2131297176;
 			
 			// aapt resource value: 0x7F090399
-			public const int tv_init = 2131297177;
+			public const int visible = 2131297177;
 			
 			// aapt resource value: 0x7F09039A
-			public const int tv_input_ok = 2131297178;
+			public const int visible_removing_fragment_view_tag = 2131297178;
 			
-			// aapt resource value: 0x7F09039B
-			public const int tv_lan = 2131297179;
+			// aapt resource value: 0x7F090390
+			public const int v_bottom_line = 2131297168;
 			
 			// aapt resource value: 0x7F09039C
-			public const int tv_left_btn = 2131297180;
+			public const int webview = 2131297180;
 			
-			// aapt resource value: 0x7F09039E
-			public const int tv_loadingmore = 2131297182;
+			// aapt resource value: 0x7F09039B
+			public const int webView1 = 2131297179;
 			
 			// aapt resource value: 0x7F09039D
-			public const int tv_loading_msg = 2131297181;
+			public const int webview_back_img = 2131297181;
+			
+			// aapt resource value: 0x7F09039E
+			public const int webview_back_ll = 2131297182;
 			
 			// aapt resource value: 0x7F09039F
-			public const int tv_local_record = 2131297183;
+			public const int west = 2131297183;
 			
 			// aapt resource value: 0x7F0903A0
-			public const int tv_local_video = 2131297184;
+			public const int wheel_vertical_view = 2131297184;
 			
 			// aapt resource value: 0x7F0903A1
-			public const int tv_lp_answer = 2131297185;
+			public const int wifi_animation_view = 2131297185;
 			
 			// aapt resource value: 0x7F0903A2
-			public const int tv_lp_calltime = 2131297186;
+			public const int wifi_img = 2131297186;
 			
 			// aapt resource value: 0x7F0903A3
-			public const int tv_lp_hangUp = 2131297187;
+			public const int wifi_list = 2131297187;
 			
 			// aapt resource value: 0x7F0903A4
-			public const int tv_lp_screenshot = 2131297188;
+			public const int wifi_list_container = 2131297188;
 			
 			// aapt resource value: 0x7F0903A5
-			public const int tv_lp_title = 2131297189;
+			public const int wifi_name = 2131297189;
 			
 			// aapt resource value: 0x7F0903A6
-			public const int tv_lp_unlock = 2131297190;
+			public const int wifi_psw = 2131297190;
 			
 			// aapt resource value: 0x7F0903A7
-			public const int tv_message = 2131297191;
+			public const int wifi_pwd = 2131297191;
 			
 			// aapt resource value: 0x7F0903A8
-			public const int tv_message2 = 2131297192;
+			public const int wifi_pwd_check = 2131297192;
 			
 			// aapt resource value: 0x7F0903A9
-			public const int tv_modify_device_pwd = 2131297193;
+			public const int wifi_quality_icon = 2131297193;
 			
 			// aapt resource value: 0x7F0903AA
-			public const int tv_month_day = 2131297194;
-			
-			// aapt resource value: 0x7F0903AB
-			public const int tv_msg = 2131297195;
-			
-			// aapt resource value: 0x7F0903AC
-			public const int tv_name = 2131297196;
+			public const int wifi_ssid = 2131297194;
 			
 			// aapt resource value: 0x7F0903AD
-			public const int tv_name_input = 2131297197;
+			public const int withinBounds = 2131297197;
+			
+			// aapt resource value: 0x7F0903AB
+			public const int withText = 2131297195;
+			
+			// aapt resource value: 0x7F0903AC
+			public const int with_icon = 2131297196;
 			
 			// aapt resource value: 0x7F0903AE
-			public const int tv_new_version = 2131297198;
+			public const int wlan_len = 2131297198;
 			
 			// aapt resource value: 0x7F0903AF
-			public const int tv_new_version_1 = 2131297199;
+			public const int wlan_mode = 2131297199;
 			
 			// aapt resource value: 0x7F0903B0
-			public const int tv_new_version_tip = 2131297200;
+			public const int wlan_name = 2131297200;
 			
 			// aapt resource value: 0x7F0903B1
-			public const int tv_next = 2131297201;
+			public const int wrap = 2131297201;
 			
 			// aapt resource value: 0x7F0903B2
-			public const int tv_no_video = 2131297202;
+			public const int wrap_content = 2131297202;
 			
 			// aapt resource value: 0x7F0903B3
-			public const int tv_offline = 2131297203;
+			public const int wrap_content_constrained = 2131297203;
 			
 			// aapt resource value: 0x7F0903B4
-			public const int tv_ok = 2131297204;
+			public const int x_left = 2131297204;
 			
 			// aapt resource value: 0x7F0903B5
-			public const int tv_overseas = 2131297205;
+			public const int x_right = 2131297205;
 			
 			// aapt resource value: 0x7F0903B6
-			public const int tv_pixel = 2131297206;
+			public const int year = 2131297206;
 			
 			// aapt resource value: 0x7F0903B7
-			public const int tv_play_pixel = 2131297207;
+			public const int zoomin = 2131297207;
 			
 			// aapt resource value: 0x7F0903B8
-			public const int tv_pwd_tip_new = 2131297208;
+			public const int zoomout = 2131297208;
 			
 			// aapt resource value: 0x7F0903B9
-			public const int tv_record_stream = 2131297209;
+			public const int zxing_back_button = 2131297209;
 			
 			// aapt resource value: 0x7F0903BA
-			public const int tv_right_btn = 2131297210;
+			public const int zxing_barcode_scanner = 2131297210;
 			
 			// aapt resource value: 0x7F0903BB
-			public const int tv_show_tip = 2131297211;
+			public const int zxing_barcode_surface = 2131297211;
 			
 			// aapt resource value: 0x7F0903BC
-			public const int tv_single_btn = 2131297212;
+			public const int zxing_camera_closed = 2131297212;
 			
 			// aapt resource value: 0x7F0903BD
-			public const int tv_sms_valid_tip = 2131297213;
+			public const int zxing_camera_error = 2131297213;
 			
 			// aapt resource value: 0x7F0903BE
-			public const int tv_softap = 2131297214;
+			public const int zxing_decode = 2131297214;
 			
 			// aapt resource value: 0x7F0903BF
-			public const int tv_sure = 2131297215;
+			public const int zxing_decode_failed = 2131297215;
 			
 			// aapt resource value: 0x7F0903C0
-			public const int tv_time = 2131297216;
+			public const int zxing_decode_succeeded = 2131297216;
 			
 			// aapt resource value: 0x7F0903C1
-			public const int tv_time_m = 2131297217;
+			public const int zxing_possible_result_points = 2131297217;
 			
 			// aapt resource value: 0x7F0903C2
-			public const int tv_time_s = 2131297218;
+			public const int zxing_preview_failed = 2131297218;
 			
 			// aapt resource value: 0x7F0903C3
-			public const int tv_tip = 2131297219;
+			public const int zxing_prewiew_size_ready = 2131297219;
 			
 			// aapt resource value: 0x7F0903C4
-			public const int tv_tip_title = 2131297220;
+			public const int zxing_status_view = 2131297220;
 			
 			// aapt resource value: 0x7F0903C5
-			public const int tv_title = 2131297221;
-			
-			// aapt resource value: 0x7F0903C6
-			public const int tv_title_center = 2131297222;
-			
-			// aapt resource value: 0x7F0903C7
-			public const int tv_title_center_sub = 2131297223;
-			
-			// aapt resource value: 0x7F0903C8
-			public const int tv_title_cn = 2131297224;
-			
-			// aapt resource value: 0x7F0903C9
-			public const int tv_title_left = 2131297225;
-			
-			// aapt resource value: 0x7F0903CA
-			public const int tv_title_left2 = 2131297226;
-			
-			// aapt resource value: 0x7F0903CB
-			public const int tv_title_right = 2131297227;
-			
-			// aapt resource value: 0x7F0903CC
-			public const int tv_title_right2 = 2131297228;
-			
-			// aapt resource value: 0x7F0903CD
-			public const int tv_title_type = 2131297229;
-			
-			// aapt resource value: 0x7F0903CE
-			public const int tv_today = 2131297230;
-			
-			// aapt resource value: 0x7F0903CF
-			public const int tv_type_tip = 2131297231;
-			
-			// aapt resource value: 0x7F0903D0
-			public const int tv_version_tip = 2131297232;
-			
-			// aapt resource value: 0x7F0903D1
-			public const int tv_wifi_name = 2131297233;
-			
-			// aapt resource value: 0x7F0903D2
-			public const int tv_wifi_pwd = 2131297234;
-			
-			// aapt resource value: 0x7F0903D3
-			public const int tv_wlan = 2131297235;
-			
-			// aapt resource value: 0x7F0903D4
-			public const int tv_zxing_back = 2131297236;
-			
-			// aapt resource value: 0x7F0903D5
-			public const int tv_zxing_flash = 2131297237;
-			
-			// aapt resource value: 0x7F0903D6
-			public const int tv_zxing_scan = 2131297238;
-			
-			// aapt resource value: 0x7F0903D7
-			public const int two_button_layout = 2131297239;
-			
-			// aapt resource value: 0x7F0903D8
-			public const int @unchecked = 2131297240;
-			
-			// aapt resource value: 0x7F0903D9
-			public const int uniform = 2131297241;
-			
-			// aapt resource value: 0x7F0903DA
-			public const int unlabeled = 2131297242;
-			
-			// aapt resource value: 0x7F0903DB
-			public const int up = 2131297243;
-			
-			// aapt resource value: 0x7F0903DC
-			public const int useLogo = 2131297244;
-			
-			// aapt resource value: 0x7F0903DD
-			public const int user_layout = 2131297245;
-			
-			// aapt resource value: 0x7F0903DE
-			public const int user_register = 2131297246;
-			
-			// aapt resource value: 0x7F0903DF
-			public const int uvc = 2131297247;
-			
-			// aapt resource value: 0x7F0903E1
-			public const int vertical_only = 2131297249;
-			
-			// aapt resource value: 0x7F0903E2
-			public const int videoBackImg = 2131297250;
-			
-			// aapt resource value: 0x7F0903E3
-			public const int videoParent = 2131297251;
-			
-			// aapt resource value: 0x7F0903E4
-			public const int video_lp_rendering = 2131297252;
-			
-			// aapt resource value: 0x7F0903E5
-			public const int video_lp_rendering2 = 2131297253;
-			
-			// aapt resource value: 0x7F0903E6
-			public const int view_offset_helper = 2131297254;
-			
-			// aapt resource value: 0x7F0903E7
-			public const int view_split = 2131297255;
-			
-			// aapt resource value: 0x7F0903E8
-			public const int view_transition = 2131297256;
-			
-			// aapt resource value: 0x7F0903E9
-			public const int view_tree_lifecycle_owner = 2131297257;
-			
-			// aapt resource value: 0x7F0903EA
-			public const int view_tree_on_back_pressed_dispatcher_owner = 2131297258;
-			
-			// aapt resource value: 0x7F0903EB
-			public const int view_tree_saved_state_registry_owner = 2131297259;
-			
-			// aapt resource value: 0x7F0903EC
-			public const int view_tree_view_model_store_owner = 2131297260;
-			
-			// aapt resource value: 0x7F0903ED
-			public const int visible = 2131297261;
-			
-			// aapt resource value: 0x7F0903EE
-			public const int visible_removing_fragment_view_tag = 2131297262;
-			
-			// aapt resource value: 0x7F0903E0
-			public const int v_bottom_line = 2131297248;
-			
-			// aapt resource value: 0x7F0903F0
-			public const int webview = 2131297264;
-			
-			// aapt resource value: 0x7F0903EF
-			public const int webView1 = 2131297263;
-			
-			// aapt resource value: 0x7F0903F1
-			public const int webview_back_img = 2131297265;
-			
-			// aapt resource value: 0x7F0903F2
-			public const int webview_back_ll = 2131297266;
-			
-			// aapt resource value: 0x7F0903F3
-			public const int west = 2131297267;
-			
-			// aapt resource value: 0x7F0903F4
-			public const int wheel_vertical_view = 2131297268;
-			
-			// aapt resource value: 0x7F0903F5
-			public const int wifi_animation_view = 2131297269;
-			
-			// aapt resource value: 0x7F0903F6
-			public const int wifi_img = 2131297270;
-			
-			// aapt resource value: 0x7F0903F7
-			public const int wifi_list = 2131297271;
-			
-			// aapt resource value: 0x7F0903F8
-			public const int wifi_list_container = 2131297272;
-			
-			// aapt resource value: 0x7F0903F9
-			public const int wifi_name = 2131297273;
-			
-			// aapt resource value: 0x7F0903FA
-			public const int wifi_psw = 2131297274;
-			
-			// aapt resource value: 0x7F0903FB
-			public const int wifi_pwd = 2131297275;
-			
-			// aapt resource value: 0x7F0903FC
-			public const int wifi_pwd_check = 2131297276;
-			
-			// aapt resource value: 0x7F0903FD
-			public const int wifi_quality_icon = 2131297277;
-			
-			// aapt resource value: 0x7F0903FE
-			public const int wifi_ssid = 2131297278;
-			
-			// aapt resource value: 0x7F090401
-			public const int withinBounds = 2131297281;
-			
-			// aapt resource value: 0x7F0903FF
-			public const int withText = 2131297279;
-			
-			// aapt resource value: 0x7F090400
-			public const int with_icon = 2131297280;
-			
-			// aapt resource value: 0x7F090402
-			public const int wlan_len = 2131297282;
-			
-			// aapt resource value: 0x7F090403
-			public const int wlan_mode = 2131297283;
-			
-			// aapt resource value: 0x7F090404
-			public const int wlan_name = 2131297284;
-			
-			// aapt resource value: 0x7F090405
-			public const int wrap = 2131297285;
-			
-			// aapt resource value: 0x7F090406
-			public const int wrap_content = 2131297286;
-			
-			// aapt resource value: 0x7F090407
-			public const int wrap_content_constrained = 2131297287;
-			
-			// aapt resource value: 0x7F090408
-			public const int x_left = 2131297288;
-			
-			// aapt resource value: 0x7F090409
-			public const int x_right = 2131297289;
-			
-			// aapt resource value: 0x7F09040A
-			public const int year = 2131297290;
-			
-			// aapt resource value: 0x7F09040B
-			public const int zoomin = 2131297291;
-			
-			// aapt resource value: 0x7F09040C
-			public const int zoomout = 2131297292;
-			
-			// aapt resource value: 0x7F09040D
-			public const int zxing_back_button = 2131297293;
-			
-			// aapt resource value: 0x7F09040E
-			public const int zxing_barcode_scanner = 2131297294;
-			
-			// aapt resource value: 0x7F09040F
-			public const int zxing_barcode_surface = 2131297295;
-			
-			// aapt resource value: 0x7F090410
-			public const int zxing_camera_closed = 2131297296;
-			
-			// aapt resource value: 0x7F090411
-			public const int zxing_camera_error = 2131297297;
-			
-			// aapt resource value: 0x7F090412
-			public const int zxing_decode = 2131297298;
-			
-			// aapt resource value: 0x7F090413
-			public const int zxing_decode_failed = 2131297299;
-			
-			// aapt resource value: 0x7F090414
-			public const int zxing_decode_succeeded = 2131297300;
-			
-			// aapt resource value: 0x7F090415
-			public const int zxing_possible_result_points = 2131297301;
-			
-			// aapt resource value: 0x7F090416
-			public const int zxing_preview_failed = 2131297302;
-			
-			// aapt resource value: 0x7F090417
-			public const int zxing_prewiew_size_ready = 2131297303;
-			
-			// aapt resource value: 0x7F090418
-			public const int zxing_status_view = 2131297304;
-			
-			// aapt resource value: 0x7F090419
-			public const int zxing_viewfinder_view = 2131297305;
+			public const int zxing_viewfinder_view = 2131297221;
 			
 			static Id()
 			{
@@ -18301,598 +17953,574 @@
 			public const int activity_error_tip = 2131492903;
 			
 			// aapt resource value: 0x7F0C0028
-			public const int activity_hdllinphone_intercom = 2131492904;
+			public const int activity_main = 2131492904;
 			
 			// aapt resource value: 0x7F0C0029
-			public const int activity_hdllinphone_monitor = 2131492905;
+			public const int activity_splash = 2131492905;
 			
 			// aapt resource value: 0x7F0C002A
-			public const int activity_main = 2131492906;
+			public const int activity_video_phone = 2131492906;
 			
 			// aapt resource value: 0x7F0C002B
-			public const int activity_splash = 2131492907;
+			public const int activity_webview = 2131492907;
 			
 			// aapt resource value: 0x7F0C002C
-			public const int activity_video_phone = 2131492908;
+			public const int activity_zxing_layout = 2131492908;
 			
 			// aapt resource value: 0x7F0C002D
-			public const int activity_webview = 2131492909;
+			public const int biometric_prompt_dialog_content = 2131492909;
 			
 			// aapt resource value: 0x7F0C002E
-			public const int activity_zxing_layout = 2131492910;
+			public const int box_add_tip = 2131492910;
 			
 			// aapt resource value: 0x7F0C002F
-			public const int biometric_prompt_dialog_content = 2131492911;
+			public const int browser_actions_context_menu_page = 2131492911;
 			
 			// aapt resource value: 0x7F0C0030
-			public const int box_add_tip = 2131492912;
+			public const int browser_actions_context_menu_row = 2131492912;
 			
 			// aapt resource value: 0x7F0C0031
-			public const int browser_actions_context_menu_page = 2131492913;
+			public const int cc_activity_widget_countrycode = 2131492913;
 			
 			// aapt resource value: 0x7F0C0032
-			public const int browser_actions_context_menu_row = 2131492914;
+			public const int cc_activity_widget_sortselection = 2131492914;
 			
 			// aapt resource value: 0x7F0C0033
-			public const int cc_activity_widget_countrycode = 2131492915;
+			public const int cc_country_list_item = 2131492915;
 			
 			// aapt resource value: 0x7F0C0034
-			public const int cc_activity_widget_sortselection = 2131492916;
+			public const int chose_type_layout = 2131492916;
 			
 			// aapt resource value: 0x7F0C0035
-			public const int cc_country_list_item = 2131492917;
+			public const int common_progressdialog_layout1 = 2131492917;
 			
 			// aapt resource value: 0x7F0C0036
-			public const int chose_type_layout = 2131492918;
+			public const int custom_dialog = 2131492918;
 			
 			// aapt resource value: 0x7F0C0037
-			public const int common_progressdialog_layout1 = 2131492919;
+			public const int design_bottom_navigation_item = 2131492919;
 			
 			// aapt resource value: 0x7F0C0038
-			public const int custom_dialog = 2131492920;
+			public const int design_bottom_sheet_dialog = 2131492920;
 			
 			// aapt resource value: 0x7F0C0039
-			public const int design_bottom_navigation_item = 2131492921;
+			public const int design_layout_snackbar = 2131492921;
 			
 			// aapt resource value: 0x7F0C003A
-			public const int design_bottom_sheet_dialog = 2131492922;
+			public const int design_layout_snackbar_include = 2131492922;
 			
 			// aapt resource value: 0x7F0C003B
-			public const int design_layout_snackbar = 2131492923;
+			public const int design_layout_tab_icon = 2131492923;
 			
 			// aapt resource value: 0x7F0C003C
-			public const int design_layout_snackbar_include = 2131492924;
+			public const int design_layout_tab_text = 2131492924;
 			
 			// aapt resource value: 0x7F0C003D
-			public const int design_layout_tab_icon = 2131492925;
+			public const int design_menu_item_action_area = 2131492925;
 			
 			// aapt resource value: 0x7F0C003E
-			public const int design_layout_tab_text = 2131492926;
+			public const int design_navigation_item = 2131492926;
 			
 			// aapt resource value: 0x7F0C003F
-			public const int design_menu_item_action_area = 2131492927;
+			public const int design_navigation_item_header = 2131492927;
 			
 			// aapt resource value: 0x7F0C0040
-			public const int design_navigation_item = 2131492928;
+			public const int design_navigation_item_separator = 2131492928;
 			
 			// aapt resource value: 0x7F0C0041
-			public const int design_navigation_item_header = 2131492929;
+			public const int design_navigation_item_subheader = 2131492929;
 			
 			// aapt resource value: 0x7F0C0042
-			public const int design_navigation_item_separator = 2131492930;
+			public const int design_navigation_menu = 2131492930;
 			
 			// aapt resource value: 0x7F0C0043
-			public const int design_navigation_item_subheader = 2131492931;
+			public const int design_navigation_menu_item = 2131492931;
 			
 			// aapt resource value: 0x7F0C0044
-			public const int design_navigation_menu = 2131492932;
+			public const int design_text_input_end_icon = 2131492932;
 			
 			// aapt resource value: 0x7F0C0045
-			public const int design_navigation_menu_item = 2131492933;
+			public const int design_text_input_start_icon = 2131492933;
 			
 			// aapt resource value: 0x7F0C0046
-			public const int design_text_input_end_icon = 2131492934;
+			public const int device_add_wifi_list_item = 2131492934;
 			
 			// aapt resource value: 0x7F0C0047
-			public const int design_text_input_start_icon = 2131492935;
+			public const int device_add_wifi_list_item_more = 2131492935;
 			
 			// aapt resource value: 0x7F0C0048
-			public const int device_add_wifi_list_item = 2131492936;
+			public const int dialog_choose_net = 2131492936;
 			
 			// aapt resource value: 0x7F0C0049
-			public const int device_add_wifi_list_item_more = 2131492937;
+			public const int dialog_device_update = 2131492937;
 			
 			// aapt resource value: 0x7F0C004A
-			public const int dialog_choose_net = 2131492938;
+			public const int dialog_encryptkey_input = 2131492938;
 			
 			// aapt resource value: 0x7F0C004B
-			public const int dialog_device_update = 2131492939;
+			public const int dialog_loading_view = 2131492939;
 			
 			// aapt resource value: 0x7F0C004C
-			public const int dialog_encryptkey_input = 2131492940;
+			public const int dialog_sd_card_reconver = 2131492940;
 			
 			// aapt resource value: 0x7F0C004D
-			public const int dialog_loading_view = 2131492941;
+			public const int dialog_tip = 2131492941;
 			
 			// aapt resource value: 0x7F0C004E
-			public const int dialog_lpsdk_time_select = 2131492942;
+			public const int fragment_ap_bind_success = 2131492942;
 			
 			// aapt resource value: 0x7F0C004F
-			public const int dialog_lpsdk_tip = 2131492943;
+			public const int fragment_ap_pair = 2131492943;
 			
 			// aapt resource value: 0x7F0C0050
-			public const int dialog_sd_card_reconver = 2131492944;
+			public const int fragment_base_tip = 2131492944;
 			
 			// aapt resource value: 0x7F0C0051
-			public const int dialog_tip = 2131492945;
+			public const int fragment_bind_success = 2131492945;
 			
 			// aapt resource value: 0x7F0C0052
-			public const int fragment_ap_bind_success = 2131492946;
+			public const int fragment_call = 2131492946;
 			
 			// aapt resource value: 0x7F0C0053
-			public const int fragment_ap_pair = 2131492947;
-			
-			// aapt resource value: 0x7F0C0054
-			public const int fragment_base_tip = 2131492948;
-			
-			// aapt resource value: 0x7F0C0055
-			public const int fragment_bind_success = 2131492949;
-			
-			// aapt resource value: 0x7F0C0056
-			public const int fragment_call = 2131492950;
+			public const int fragment_connect_process = 2131492947;
 			
 			// aapt resource value: 0x7F0C0057
-			public const int fragment_connect_process = 2131492951;
-			
-			// aapt resource value: 0x7F0C005B
-			public const int fragment_device_cloud_list = 2131492955;
-			
-			// aapt resource value: 0x7F0C005C
-			public const int fragment_device_detail_deployment = 2131492956;
-			
-			// aapt resource value: 0x7F0C005D
-			public const int fragment_device_detail_main = 2131492957;
-			
-			// aapt resource value: 0x7F0C005E
-			public const int fragment_device_detail_name = 2131492958;
-			
-			// aapt resource value: 0x7F0C005F
-			public const int fragment_device_dispatch = 2131492959;
-			
-			// aapt resource value: 0x7F0C0060
-			public const int fragment_device_modify_name = 2131492960;
-			
-			// aapt resource value: 0x7F0C0061
-			public const int fragment_device_version = 2131492961;
+			public const int fragment_device_cloud_list = 2131492951;
 			
 			// aapt resource value: 0x7F0C0058
-			public const int fragment_dev_login = 2131492952;
+			public const int fragment_device_detail_deployment = 2131492952;
 			
 			// aapt resource value: 0x7F0C0059
-			public const int fragment_dev_sec_code = 2131492953;
+			public const int fragment_device_detail_main = 2131492953;
 			
 			// aapt resource value: 0x7F0C005A
-			public const int fragment_dev_wifi_list = 2131492954;
+			public const int fragment_device_detail_name = 2131492954;
+			
+			// aapt resource value: 0x7F0C005B
+			public const int fragment_device_dispatch = 2131492955;
+			
+			// aapt resource value: 0x7F0C005C
+			public const int fragment_device_modify_name = 2131492956;
+			
+			// aapt resource value: 0x7F0C005D
+			public const int fragment_device_version = 2131492957;
+			
+			// aapt resource value: 0x7F0C0054
+			public const int fragment_dev_login = 2131492948;
+			
+			// aapt resource value: 0x7F0C0055
+			public const int fragment_dev_sec_code = 2131492949;
+			
+			// aapt resource value: 0x7F0C0056
+			public const int fragment_dev_wifi_list = 2131492950;
+			
+			// aapt resource value: 0x7F0C005E
+			public const int fragment_error_tip = 2131492958;
+			
+			// aapt resource value: 0x7F0C005F
+			public const int fragment_gateway_list = 2131492959;
+			
+			// aapt resource value: 0x7F0C0060
+			public const int fragment_hidden_wifi = 2131492960;
+			
+			// aapt resource value: 0x7F0C0061
+			public const int fragment_imei_input = 2131492961;
 			
 			// aapt resource value: 0x7F0C0062
-			public const int fragment_error_tip = 2131492962;
+			public const int fragment_init = 2131492962;
 			
 			// aapt resource value: 0x7F0C0063
-			public const int fragment_gateway_list = 2131492963;
+			public const int fragment_manual_input = 2131492963;
 			
 			// aapt resource value: 0x7F0C0064
-			public const int fragment_hidden_wifi = 2131492964;
+			public const int fragment_monitor = 2131492964;
 			
 			// aapt resource value: 0x7F0C0065
-			public const int fragment_imei_input = 2131492965;
+			public const int fragment_scan = 2131492965;
 			
 			// aapt resource value: 0x7F0C0066
-			public const int fragment_init = 2131492966;
+			public const int fragment_security_check = 2131492966;
 			
 			// aapt resource value: 0x7F0C0067
-			public const int fragment_manual_input = 2131492967;
+			public const int fragment_smart_config = 2131492967;
 			
 			// aapt resource value: 0x7F0C0068
-			public const int fragment_monitor = 2131492968;
+			public const int fragment_tip_about_wifi_pwd = 2131492968;
 			
 			// aapt resource value: 0x7F0C0069
-			public const int fragment_scan = 2131492969;
+			public const int fragment_tip_connect_fail = 2131492969;
 			
 			// aapt resource value: 0x7F0C006A
-			public const int fragment_security_check = 2131492970;
+			public const int fragment_tip_not_support_5g = 2131492970;
 			
 			// aapt resource value: 0x7F0C006B
-			public const int fragment_smart_config = 2131492971;
+			public const int fragment_tip_soft_ap_connect_wifi = 2131492971;
 			
 			// aapt resource value: 0x7F0C006C
-			public const int fragment_tip_about_wifi_pwd = 2131492972;
+			public const int fragment_tip_timeout = 2131492972;
 			
 			// aapt resource value: 0x7F0C006D
-			public const int fragment_tip_connect_fail = 2131492973;
+			public const int fragment_tip_user_bind = 2131492973;
 			
 			// aapt resource value: 0x7F0C006E
-			public const int fragment_tip_not_support_5g = 2131492974;
+			public const int fragment_tip_wifi_name = 2131492974;
 			
 			// aapt resource value: 0x7F0C006F
-			public const int fragment_tip_soft_ap_connect_wifi = 2131492975;
+			public const int fragment_type_input = 2131492975;
 			
 			// aapt resource value: 0x7F0C0070
-			public const int fragment_tip_timeout = 2131492976;
+			public const int fragment_wifi_connect_tip = 2131492976;
 			
 			// aapt resource value: 0x7F0C0071
-			public const int fragment_tip_user_bind = 2131492977;
+			public const int fragment_wifi_pwd = 2131492977;
 			
 			// aapt resource value: 0x7F0C0072
-			public const int fragment_tip_wifi_name = 2131492978;
+			public const int gateway_list_item = 2131492978;
 			
 			// aapt resource value: 0x7F0C0073
-			public const int fragment_type_input = 2131492979;
+			public const int hdl_gallery_banner_view_layout = 2131492979;
 			
 			// aapt resource value: 0x7F0C0074
-			public const int fragment_wifi_connect_tip = 2131492980;
+			public const int hdl_widget_activity_crop_image = 2131492980;
 			
 			// aapt resource value: 0x7F0C0075
-			public const int fragment_wifi_pwd = 2131492981;
+			public const int hdl_widget_activity_geofence_round = 2131492981;
 			
 			// aapt resource value: 0x7F0C0076
-			public const int gateway_list_item = 2131492982;
+			public const int hdl_widget_air_button = 2131492982;
 			
 			// aapt resource value: 0x7F0C0077
-			public const int hdl_gallery_banner_view_layout = 2131492983;
+			public const int hdl_widget_include_pickerview_topbar = 2131492983;
 			
 			// aapt resource value: 0x7F0C0078
-			public const int hdl_widget_activity_crop_image = 2131492984;
+			public const int hdl_widget_layout_basepickerview = 2131492984;
 			
 			// aapt resource value: 0x7F0C0079
-			public const int hdl_widget_activity_geofence_round = 2131492985;
+			public const int hdl_widget_pickerview = 2131492985;
 			
 			// aapt resource value: 0x7F0C007A
-			public const int hdl_widget_air_button = 2131492986;
+			public const int hdl_widget_pickerview_options = 2131492986;
 			
 			// aapt resource value: 0x7F0C007B
-			public const int hdl_widget_include_pickerview_topbar = 2131492987;
+			public const int hdl_widget_pickerview_time = 2131492987;
 			
 			// aapt resource value: 0x7F0C007C
-			public const int hdl_widget_layout_basepickerview = 2131492988;
+			public const int ime_base_split_test_activity = 2131492988;
 			
 			// aapt resource value: 0x7F0C007D
-			public const int hdl_widget_pickerview = 2131492989;
+			public const int ime_secondary_split_test_activity = 2131492989;
 			
 			// aapt resource value: 0x7F0C007E
-			public const int hdl_widget_pickerview_options = 2131492990;
+			public const int include_device_wifi_list_item = 2131492990;
 			
 			// aapt resource value: 0x7F0C007F
-			public const int hdl_widget_pickerview_time = 2131492991;
+			public const int item_channel_list = 2131492991;
 			
 			// aapt resource value: 0x7F0C0080
-			public const int ime_base_split_test_activity = 2131492992;
+			public const int item_device_list = 2131492992;
 			
 			// aapt resource value: 0x7F0C0081
-			public const int ime_secondary_split_test_activity = 2131492993;
+			public const int item_media_play_record = 2131492993;
 			
 			// aapt resource value: 0x7F0C0082
-			public const int include_device_wifi_list_item = 2131492994;
+			public const int item_pixel_list = 2131492994;
 			
 			// aapt resource value: 0x7F0C0083
-			public const int item_channel_list = 2131492995;
+			public const int item_record = 2131492995;
 			
 			// aapt resource value: 0x7F0C0084
-			public const int item_device_list = 2131492996;
+			public const int item_record_list = 2131492996;
 			
 			// aapt resource value: 0x7F0C0085
-			public const int item_media_play_record = 2131492997;
+			public const int item_wifi_list_more = 2131492997;
 			
 			// aapt resource value: 0x7F0C0086
-			public const int item_pixel_list = 2131492998;
+			public const int login_activity = 2131492998;
 			
 			// aapt resource value: 0x7F0C0087
-			public const int item_record = 2131492999;
+			public const int m3_alert_dialog = 2131492999;
 			
 			// aapt resource value: 0x7F0C0088
-			public const int item_record_list = 2131493000;
+			public const int m3_alert_dialog_actions = 2131493000;
 			
 			// aapt resource value: 0x7F0C0089
-			public const int item_wifi_list_more = 2131493001;
+			public const int m3_alert_dialog_title = 2131493001;
 			
 			// aapt resource value: 0x7F0C008A
-			public const int linphone_dialog_content_and_twobutton = 2131493002;
+			public const int m3_auto_complete_simple_item = 2131493002;
 			
 			// aapt resource value: 0x7F0C008B
-			public const int login_activity = 2131493003;
+			public const int m3_side_sheet_dialog = 2131493003;
 			
 			// aapt resource value: 0x7F0C008C
-			public const int m3_alert_dialog = 2131493004;
-			
-			// aapt resource value: 0x7F0C008D
-			public const int m3_alert_dialog_actions = 2131493005;
-			
-			// aapt resource value: 0x7F0C008E
-			public const int m3_alert_dialog_title = 2131493006;
-			
-			// aapt resource value: 0x7F0C008F
-			public const int m3_auto_complete_simple_item = 2131493007;
-			
-			// aapt resource value: 0x7F0C0090
-			public const int m3_side_sheet_dialog = 2131493008;
+			public const int material_chip_input_combo = 2131493004;
 			
 			// aapt resource value: 0x7F0C0091
-			public const int material_chip_input_combo = 2131493009;
-			
-			// aapt resource value: 0x7F0C0096
-			public const int material_clockface_textview = 2131493014;
-			
-			// aapt resource value: 0x7F0C0097
-			public const int material_clockface_view = 2131493015;
+			public const int material_clockface_textview = 2131493009;
 			
 			// aapt resource value: 0x7F0C0092
-			public const int material_clock_display = 2131493010;
+			public const int material_clockface_view = 2131493010;
+			
+			// aapt resource value: 0x7F0C008D
+			public const int material_clock_display = 2131493005;
+			
+			// aapt resource value: 0x7F0C008E
+			public const int material_clock_display_divider = 2131493006;
+			
+			// aapt resource value: 0x7F0C008F
+			public const int material_clock_period_toggle = 2131493007;
+			
+			// aapt resource value: 0x7F0C0090
+			public const int material_clock_period_toggle_land = 2131493008;
 			
 			// aapt resource value: 0x7F0C0093
-			public const int material_clock_display_divider = 2131493011;
+			public const int material_radial_view_group = 2131493011;
 			
 			// aapt resource value: 0x7F0C0094
-			public const int material_clock_period_toggle = 2131493012;
+			public const int material_textinput_timepicker = 2131493012;
 			
-			// aapt resource value: 0x7F0C0095
-			public const int material_clock_period_toggle_land = 2131493013;
+			// aapt resource value: 0x7F0C0097
+			public const int material_timepicker = 2131493015;
 			
 			// aapt resource value: 0x7F0C0098
-			public const int material_radial_view_group = 2131493016;
+			public const int material_timepicker_dialog = 2131493016;
 			
 			// aapt resource value: 0x7F0C0099
-			public const int material_textinput_timepicker = 2131493017;
+			public const int material_timepicker_textinput_display = 2131493017;
 			
-			// aapt resource value: 0x7F0C009C
-			public const int material_timepicker = 2131493020;
+			// aapt resource value: 0x7F0C0095
+			public const int material_time_chip = 2131493013;
 			
-			// aapt resource value: 0x7F0C009D
-			public const int material_timepicker_dialog = 2131493021;
-			
-			// aapt resource value: 0x7F0C009E
-			public const int material_timepicker_textinput_display = 2131493022;
+			// aapt resource value: 0x7F0C0096
+			public const int material_time_input = 2131493014;
 			
 			// aapt resource value: 0x7F0C009A
-			public const int material_time_chip = 2131493018;
+			public const int mobile_common_comment = 2131493018;
 			
 			// aapt resource value: 0x7F0C009B
-			public const int material_time_input = 2131493019;
+			public const int mobile_common_lc_alert_dialog_layout = 2131493019;
+			
+			// aapt resource value: 0x7F0C009C
+			public const int mobile_common_progressdialog_layout = 2131493020;
+			
+			// aapt resource value: 0x7F0C009D
+			public const int mobile_common_roll_select_dialog = 2131493021;
+			
+			// aapt resource value: 0x7F0C009E
+			public const int mobile_common_search_view = 2131493022;
 			
 			// aapt resource value: 0x7F0C009F
-			public const int mobile_common_comment = 2131493023;
+			public const int mobile_common_widget_common_title = 2131493023;
 			
 			// aapt resource value: 0x7F0C00A0
-			public const int mobile_common_lc_alert_dialog_layout = 2131493024;
+			public const int mobile_common_widget_switch_title = 2131493024;
 			
 			// aapt resource value: 0x7F0C00A1
-			public const int mobile_common_progressdialog_layout = 2131493025;
+			public const int more_options_layout = 2131493025;
 			
 			// aapt resource value: 0x7F0C00A2
-			public const int mobile_common_roll_select_dialog = 2131493026;
+			public const int mtrl_alert_dialog = 2131493026;
 			
 			// aapt resource value: 0x7F0C00A3
-			public const int mobile_common_search_view = 2131493027;
+			public const int mtrl_alert_dialog_actions = 2131493027;
 			
 			// aapt resource value: 0x7F0C00A4
-			public const int mobile_common_widget_common_title = 2131493028;
+			public const int mtrl_alert_dialog_title = 2131493028;
 			
 			// aapt resource value: 0x7F0C00A5
-			public const int mobile_common_widget_switch_title = 2131493029;
+			public const int mtrl_alert_select_dialog_item = 2131493029;
 			
 			// aapt resource value: 0x7F0C00A6
-			public const int more_options_layout = 2131493030;
+			public const int mtrl_alert_select_dialog_multichoice = 2131493030;
 			
 			// aapt resource value: 0x7F0C00A7
-			public const int mtrl_alert_dialog = 2131493031;
+			public const int mtrl_alert_select_dialog_singlechoice = 2131493031;
 			
 			// aapt resource value: 0x7F0C00A8
-			public const int mtrl_alert_dialog_actions = 2131493032;
+			public const int mtrl_auto_complete_simple_item = 2131493032;
 			
 			// aapt resource value: 0x7F0C00A9
-			public const int mtrl_alert_dialog_title = 2131493033;
-			
-			// aapt resource value: 0x7F0C00AA
-			public const int mtrl_alert_select_dialog_item = 2131493034;
+			public const int mtrl_calendar_day = 2131493033;
 			
 			// aapt resource value: 0x7F0C00AB
-			public const int mtrl_alert_select_dialog_multichoice = 2131493035;
+			public const int mtrl_calendar_days_of_week = 2131493035;
+			
+			// aapt resource value: 0x7F0C00AA
+			public const int mtrl_calendar_day_of_week = 2131493034;
 			
 			// aapt resource value: 0x7F0C00AC
-			public const int mtrl_alert_select_dialog_singlechoice = 2131493036;
+			public const int mtrl_calendar_horizontal = 2131493036;
 			
 			// aapt resource value: 0x7F0C00AD
-			public const int mtrl_auto_complete_simple_item = 2131493037;
-			
-			// aapt resource value: 0x7F0C00AE
-			public const int mtrl_calendar_day = 2131493038;
+			public const int mtrl_calendar_month = 2131493037;
 			
 			// aapt resource value: 0x7F0C00B0
-			public const int mtrl_calendar_days_of_week = 2131493040;
+			public const int mtrl_calendar_months = 2131493040;
+			
+			// aapt resource value: 0x7F0C00AE
+			public const int mtrl_calendar_month_labeled = 2131493038;
 			
 			// aapt resource value: 0x7F0C00AF
-			public const int mtrl_calendar_day_of_week = 2131493039;
+			public const int mtrl_calendar_month_navigation = 2131493039;
 			
 			// aapt resource value: 0x7F0C00B1
-			public const int mtrl_calendar_horizontal = 2131493041;
+			public const int mtrl_calendar_vertical = 2131493041;
 			
 			// aapt resource value: 0x7F0C00B2
-			public const int mtrl_calendar_month = 2131493042;
-			
-			// aapt resource value: 0x7F0C00B5
-			public const int mtrl_calendar_months = 2131493045;
+			public const int mtrl_calendar_year = 2131493042;
 			
 			// aapt resource value: 0x7F0C00B3
-			public const int mtrl_calendar_month_labeled = 2131493043;
+			public const int mtrl_layout_snackbar = 2131493043;
 			
 			// aapt resource value: 0x7F0C00B4
-			public const int mtrl_calendar_month_navigation = 2131493044;
+			public const int mtrl_layout_snackbar_include = 2131493044;
+			
+			// aapt resource value: 0x7F0C00B5
+			public const int mtrl_navigation_rail_item = 2131493045;
 			
 			// aapt resource value: 0x7F0C00B6
-			public const int mtrl_calendar_vertical = 2131493046;
+			public const int mtrl_picker_actions = 2131493046;
 			
 			// aapt resource value: 0x7F0C00B7
-			public const int mtrl_calendar_year = 2131493047;
+			public const int mtrl_picker_dialog = 2131493047;
 			
 			// aapt resource value: 0x7F0C00B8
-			public const int mtrl_layout_snackbar = 2131493048;
+			public const int mtrl_picker_fullscreen = 2131493048;
 			
 			// aapt resource value: 0x7F0C00B9
-			public const int mtrl_layout_snackbar_include = 2131493049;
+			public const int mtrl_picker_header_dialog = 2131493049;
 			
 			// aapt resource value: 0x7F0C00BA
-			public const int mtrl_navigation_rail_item = 2131493050;
+			public const int mtrl_picker_header_fullscreen = 2131493050;
 			
 			// aapt resource value: 0x7F0C00BB
-			public const int mtrl_picker_actions = 2131493051;
+			public const int mtrl_picker_header_selection_text = 2131493051;
 			
 			// aapt resource value: 0x7F0C00BC
-			public const int mtrl_picker_dialog = 2131493052;
+			public const int mtrl_picker_header_title_text = 2131493052;
 			
 			// aapt resource value: 0x7F0C00BD
-			public const int mtrl_picker_fullscreen = 2131493053;
+			public const int mtrl_picker_header_toggle = 2131493053;
 			
 			// aapt resource value: 0x7F0C00BE
-			public const int mtrl_picker_header_dialog = 2131493054;
+			public const int mtrl_picker_text_input_date = 2131493054;
 			
 			// aapt resource value: 0x7F0C00BF
-			public const int mtrl_picker_header_fullscreen = 2131493055;
+			public const int mtrl_picker_text_input_date_range = 2131493055;
 			
 			// aapt resource value: 0x7F0C00C0
-			public const int mtrl_picker_header_selection_text = 2131493056;
+			public const int mtrl_search_bar = 2131493056;
 			
 			// aapt resource value: 0x7F0C00C1
-			public const int mtrl_picker_header_title_text = 2131493057;
+			public const int mtrl_search_view = 2131493057;
 			
 			// aapt resource value: 0x7F0C00C2
-			public const int mtrl_picker_header_toggle = 2131493058;
+			public const int notification_action = 2131493058;
 			
 			// aapt resource value: 0x7F0C00C3
-			public const int mtrl_picker_text_input_date = 2131493059;
+			public const int notification_action_tombstone = 2131493059;
 			
 			// aapt resource value: 0x7F0C00C4
-			public const int mtrl_picker_text_input_date_range = 2131493060;
+			public const int notification_media_action = 2131493060;
 			
 			// aapt resource value: 0x7F0C00C5
-			public const int mtrl_search_bar = 2131493061;
+			public const int notification_media_cancel_action = 2131493061;
 			
 			// aapt resource value: 0x7F0C00C6
-			public const int mtrl_search_view = 2131493062;
+			public const int notification_template_big_media = 2131493062;
 			
 			// aapt resource value: 0x7F0C00C7
-			public const int notification_action = 2131493063;
+			public const int notification_template_big_media_custom = 2131493063;
 			
 			// aapt resource value: 0x7F0C00C8
-			public const int notification_action_tombstone = 2131493064;
+			public const int notification_template_big_media_narrow = 2131493064;
 			
 			// aapt resource value: 0x7F0C00C9
-			public const int notification_media_action = 2131493065;
+			public const int notification_template_big_media_narrow_custom = 2131493065;
 			
 			// aapt resource value: 0x7F0C00CA
-			public const int notification_media_cancel_action = 2131493066;
+			public const int notification_template_custom_big = 2131493066;
 			
 			// aapt resource value: 0x7F0C00CB
-			public const int notification_template_big_media = 2131493067;
+			public const int notification_template_icon_group = 2131493067;
 			
 			// aapt resource value: 0x7F0C00CC
-			public const int notification_template_big_media_custom = 2131493068;
+			public const int notification_template_lines_media = 2131493068;
 			
 			// aapt resource value: 0x7F0C00CD
-			public const int notification_template_big_media_narrow = 2131493069;
+			public const int notification_template_media = 2131493069;
 			
 			// aapt resource value: 0x7F0C00CE
-			public const int notification_template_big_media_narrow_custom = 2131493070;
+			public const int notification_template_media_custom = 2131493070;
 			
 			// aapt resource value: 0x7F0C00CF
-			public const int notification_template_custom_big = 2131493071;
+			public const int notification_template_part_chronometer = 2131493071;
 			
 			// aapt resource value: 0x7F0C00D0
-			public const int notification_template_icon_group = 2131493072;
+			public const int notification_template_part_time = 2131493072;
 			
 			// aapt resource value: 0x7F0C00D1
-			public const int notification_template_lines_media = 2131493073;
+			public const int option_item = 2131493073;
 			
 			// aapt resource value: 0x7F0C00D2
-			public const int notification_template_media = 2131493074;
+			public const int pull_to_refresh_header_horizontal = 2131493074;
 			
 			// aapt resource value: 0x7F0C00D3
-			public const int notification_template_media_custom = 2131493075;
+			public const int pull_to_refresh_header_vertical = 2131493075;
 			
 			// aapt resource value: 0x7F0C00D4
-			public const int notification_template_part_chronometer = 2131493076;
+			public const int select_dialog_item_material = 2131493076;
 			
 			// aapt resource value: 0x7F0C00D5
-			public const int notification_template_part_time = 2131493077;
+			public const int select_dialog_multichoice_material = 2131493077;
 			
 			// aapt resource value: 0x7F0C00D6
-			public const int option_item = 2131493078;
+			public const int select_dialog_singlechoice_material = 2131493078;
 			
 			// aapt resource value: 0x7F0C00D7
-			public const int pull_to_refresh_header_horizontal = 2131493079;
+			public const int sms_valid_view = 2131493079;
 			
 			// aapt resource value: 0x7F0C00D8
-			public const int pull_to_refresh_header_vertical = 2131493080;
+			public const int srl_classics_footer = 2131493080;
 			
 			// aapt resource value: 0x7F0C00D9
-			public const int select_dialog_item_material = 2131493081;
+			public const int srl_classics_header = 2131493081;
 			
 			// aapt resource value: 0x7F0C00DA
-			public const int select_dialog_multichoice_material = 2131493082;
+			public const int support_simple_spinner_dropdown_item = 2131493082;
 			
 			// aapt resource value: 0x7F0C00DB
-			public const int select_dialog_singlechoice_material = 2131493083;
+			public const int toolbar = 2131493083;
 			
 			// aapt resource value: 0x7F0C00DC
-			public const int simple_demo = 2131493084;
+			public const int user_regesiter_activity = 2131493084;
 			
 			// aapt resource value: 0x7F0C00DD
-			public const int sms_valid_view = 2131493085;
+			public const int view_pixel_popwindow = 2131493085;
 			
 			// aapt resource value: 0x7F0C00DE
-			public const int srl_classics_footer = 2131493086;
+			public const int wheel_text = 2131493086;
 			
 			// aapt resource value: 0x7F0C00DF
-			public const int srl_classics_header = 2131493087;
+			public const int widget_common_itme = 2131493087;
 			
 			// aapt resource value: 0x7F0C00E0
-			public const int support_simple_spinner_dropdown_item = 2131493088;
-			
-			// aapt resource value: 0x7F0C00E1
-			public const int test_surfaceview = 2131493089;
-			
-			// aapt resource value: 0x7F0C00E2
-			public const int toolbar = 2131493090;
-			
-			// aapt resource value: 0x7F0C00E3
-			public const int user_regesiter_activity = 2131493091;
+			public const int widget_common_sub_title = 2131493088;
 			
 			// aapt resource value: 0x7F0C00E4
-			public const int video_device = 2131493092;
+			public const int zxingscanneractivitylayout = 2131493092;
 			
 			// aapt resource value: 0x7F0C00E5
-			public const int view_pixel_popwindow = 2131493093;
+			public const int zxingscannerfragmentlayout = 2131493093;
 			
-			// aapt resource value: 0x7F0C00E6
-			public const int wheel_text = 2131493094;
+			// aapt resource value: 0x7F0C00E1
+			public const int zxing_barcode_scanner = 2131493089;
 			
-			// aapt resource value: 0x7F0C00E7
-			public const int widget_common_itme = 2131493095;
+			// aapt resource value: 0x7F0C00E2
+			public const int zxing_capture = 2131493090;
 			
-			// aapt resource value: 0x7F0C00E8
-			public const int widget_common_sub_title = 2131493096;
-			
-			// aapt resource value: 0x7F0C00EC
-			public const int zxingscanneractivitylayout = 2131493100;
-			
-			// aapt resource value: 0x7F0C00ED
-			public const int zxingscannerfragmentlayout = 2131493101;
-			
-			// aapt resource value: 0x7F0C00E9
-			public const int zxing_barcode_scanner = 2131493097;
-			
-			// aapt resource value: 0x7F0C00EA
-			public const int zxing_capture = 2131493098;
-			
-			// aapt resource value: 0x7F0C00EB
-			public const int zxing_layout = 2131493099;
+			// aapt resource value: 0x7F0C00E3
+			public const int zxing_layout = 2131493091;
 			
 			static Layout()
 			{
@@ -19180,34 +18808,10 @@
 			public const int beep = 2131820544;
 			
 			// aapt resource value: 0x7F110001
-			public const int hdl_rootca = 2131820545;
+			public const int voiceprompt_lc_device_psw = 2131820545;
 			
 			// aapt resource value: 0x7F110002
-			public const int incoming_chat = 2131820546;
-			
-			// aapt resource value: 0x7F110003
-			public const int linphonerc_default = 2131820547;
-			
-			// aapt resource value: 0x7F110004
-			public const int linphonerc_factory = 2131820548;
-			
-			// aapt resource value: 0x7F110005
-			public const int lpconfig = 2131820549;
-			
-			// aapt resource value: 0x7F110006
-			public const int oldphone_mono = 2131820550;
-			
-			// aapt resource value: 0x7F110007
-			public const int ringback = 2131820551;
-			
-			// aapt resource value: 0x7F110008
-			public const int toy_mono = 2131820552;
-			
-			// aapt resource value: 0x7F110009
-			public const int voiceprompt_lc_device_psw = 2131820553;
-			
-			// aapt resource value: 0x7F11000A
-			public const int zxing_beep = 2131820554;
+			public const int zxing_beep = 2131820546;
 			
 			static Raw()
 			{
@@ -20343,697 +19947,634 @@
 			public const int lc_demo_sure = 2131886447;
 			
 			// aapt resource value: 0x7F120170
-			public const int linphone_sdk_branch = 2131886448;
+			public const int login_privacy_policy = 2131886448;
 			
 			// aapt resource value: 0x7F120171
-			public const int linphone_sdk_version = 2131886449;
+			public const int login_user_service_agreement = 2131886449;
 			
 			// aapt resource value: 0x7F120172
-			public const int login_privacy_policy = 2131886450;
+			public const int m3_exceed_max_badge_text_suffix = 2131886450;
 			
 			// aapt resource value: 0x7F120173
-			public const int login_user_service_agreement = 2131886451;
+			public const int m3_ref_typeface_brand_medium = 2131886451;
 			
 			// aapt resource value: 0x7F120174
-			public const int lp_answerStr = 2131886452;
+			public const int m3_ref_typeface_brand_regular = 2131886452;
 			
 			// aapt resource value: 0x7F120175
-			public const int lp_callingStr = 2131886453;
+			public const int m3_ref_typeface_plain_medium = 2131886453;
 			
 			// aapt resource value: 0x7F120176
-			public const int lp_cancel = 2131886454;
+			public const int m3_ref_typeface_plain_regular = 2131886454;
 			
 			// aapt resource value: 0x7F120177
-			public const int lp_confirm = 2131886455;
+			public const int m3_sys_motion_easing_emphasized = 2131886455;
 			
 			// aapt resource value: 0x7F120178
-			public const int lp_endMonitoringStr = 2131886456;
+			public const int m3_sys_motion_easing_emphasized_accelerate = 2131886456;
 			
 			// aapt resource value: 0x7F120179
-			public const int lp_endOfCallStr = 2131886457;
+			public const int m3_sys_motion_easing_emphasized_decelerate = 2131886457;
 			
 			// aapt resource value: 0x7F12017A
-			public const int lp_hangupStr = 2131886458;
+			public const int m3_sys_motion_easing_emphasized_path_data = 2131886458;
 			
 			// aapt resource value: 0x7F12017B
-			public const int lp_okStr = 2131886459;
+			public const int m3_sys_motion_easing_legacy = 2131886459;
 			
 			// aapt resource value: 0x7F12017C
-			public const int lp_operationFailedStr = 2131886460;
+			public const int m3_sys_motion_easing_legacy_accelerate = 2131886460;
 			
 			// aapt resource value: 0x7F12017D
-			public const int lp_outdoorUnitStr = 2131886461;
+			public const int m3_sys_motion_easing_legacy_decelerate = 2131886461;
 			
 			// aapt resource value: 0x7F12017E
-			public const int lp_refuseStr = 2131886462;
+			public const int m3_sys_motion_easing_linear = 2131886462;
 			
 			// aapt resource value: 0x7F12017F
-			public const int lp_saveToTheAlbumsStr = 2131886463;
+			public const int m3_sys_motion_easing_standard = 2131886463;
 			
 			// aapt resource value: 0x7F120180
-			public const int lp_screenshotStr = 2131886464;
+			public const int m3_sys_motion_easing_standard_accelerate = 2131886464;
 			
 			// aapt resource value: 0x7F120181
-			public const int lp_sipAccount_null = 2131886465;
+			public const int m3_sys_motion_easing_standard_decelerate = 2131886465;
 			
 			// aapt resource value: 0x7F120182
-			public const int lp_tipStr = 2131886466;
-			
-			// aapt resource value: 0x7F120185
-			public const int lp_unlockfailureStr = 2131886469;
+			public const int material_clock_display_divider = 2131886466;
 			
 			// aapt resource value: 0x7F120183
-			public const int lp_unlockStr = 2131886467;
+			public const int material_clock_toggle_content_description = 2131886467;
 			
 			// aapt resource value: 0x7F120184
-			public const int lp_unlockSuccessfullyStr = 2131886468;
+			public const int material_hour_24h_suffix = 2131886468;
+			
+			// aapt resource value: 0x7F120185
+			public const int material_hour_selection = 2131886469;
 			
 			// aapt resource value: 0x7F120186
-			public const int m3_exceed_max_badge_text_suffix = 2131886470;
+			public const int material_hour_suffix = 2131886470;
 			
 			// aapt resource value: 0x7F120187
-			public const int m3_ref_typeface_brand_medium = 2131886471;
+			public const int material_minute_selection = 2131886471;
 			
 			// aapt resource value: 0x7F120188
-			public const int m3_ref_typeface_brand_regular = 2131886472;
+			public const int material_minute_suffix = 2131886472;
 			
 			// aapt resource value: 0x7F120189
-			public const int m3_ref_typeface_plain_medium = 2131886473;
+			public const int material_motion_easing_accelerated = 2131886473;
 			
 			// aapt resource value: 0x7F12018A
-			public const int m3_ref_typeface_plain_regular = 2131886474;
+			public const int material_motion_easing_decelerated = 2131886474;
 			
 			// aapt resource value: 0x7F12018B
-			public const int m3_sys_motion_easing_emphasized = 2131886475;
+			public const int material_motion_easing_emphasized = 2131886475;
 			
 			// aapt resource value: 0x7F12018C
-			public const int m3_sys_motion_easing_emphasized_accelerate = 2131886476;
+			public const int material_motion_easing_linear = 2131886476;
 			
 			// aapt resource value: 0x7F12018D
-			public const int m3_sys_motion_easing_emphasized_decelerate = 2131886477;
+			public const int material_motion_easing_standard = 2131886477;
 			
 			// aapt resource value: 0x7F12018E
-			public const int m3_sys_motion_easing_emphasized_path_data = 2131886478;
+			public const int material_slider_range_end = 2131886478;
 			
 			// aapt resource value: 0x7F12018F
-			public const int m3_sys_motion_easing_legacy = 2131886479;
+			public const int material_slider_range_start = 2131886479;
 			
 			// aapt resource value: 0x7F120190
-			public const int m3_sys_motion_easing_legacy_accelerate = 2131886480;
+			public const int material_slider_value = 2131886480;
 			
 			// aapt resource value: 0x7F120191
-			public const int m3_sys_motion_easing_legacy_decelerate = 2131886481;
+			public const int material_timepicker_am = 2131886481;
 			
 			// aapt resource value: 0x7F120192
-			public const int m3_sys_motion_easing_linear = 2131886482;
+			public const int material_timepicker_clock_mode_description = 2131886482;
 			
 			// aapt resource value: 0x7F120193
-			public const int m3_sys_motion_easing_standard = 2131886483;
+			public const int material_timepicker_hour = 2131886483;
 			
 			// aapt resource value: 0x7F120194
-			public const int m3_sys_motion_easing_standard_accelerate = 2131886484;
+			public const int material_timepicker_minute = 2131886484;
 			
 			// aapt resource value: 0x7F120195
-			public const int m3_sys_motion_easing_standard_decelerate = 2131886485;
+			public const int material_timepicker_pm = 2131886485;
 			
 			// aapt resource value: 0x7F120196
-			public const int material_clock_display_divider = 2131886486;
+			public const int material_timepicker_select_time = 2131886486;
 			
 			// aapt resource value: 0x7F120197
-			public const int material_clock_toggle_content_description = 2131886487;
+			public const int material_timepicker_text_input_mode_description = 2131886487;
 			
 			// aapt resource value: 0x7F120198
-			public const int material_hour_24h_suffix = 2131886488;
+			public const int mobile_common_bec_add_device_valid_error = 2131886488;
 			
 			// aapt resource value: 0x7F120199
-			public const int material_hour_selection = 2131886489;
+			public const int mobile_common_bec_common_network_exception = 2131886489;
 			
 			// aapt resource value: 0x7F12019A
-			public const int material_hour_suffix = 2131886490;
+			public const int mobile_common_bec_common_timeout = 2131886490;
 			
 			// aapt resource value: 0x7F12019B
-			public const int material_minute_selection = 2131886491;
+			public const int mobile_common_bec_device_locked = 2131886491;
 			
 			// aapt resource value: 0x7F12019C
-			public const int material_minute_suffix = 2131886492;
+			public const int mobile_common_common_ignore = 2131886492;
 			
 			// aapt resource value: 0x7F12019D
-			public const int material_motion_easing_accelerated = 2131886493;
+			public const int mobile_common_common_never_remind = 2131886493;
 			
 			// aapt resource value: 0x7F12019E
-			public const int material_motion_easing_decelerated = 2131886494;
+			public const int mobile_common_device = 2131886494;
 			
 			// aapt resource value: 0x7F12019F
-			public const int material_motion_easing_emphasized = 2131886495;
+			public const int mobile_common_device_pwd_rule = 2131886495;
 			
 			// aapt resource value: 0x7F1201A0
-			public const int material_motion_easing_linear = 2131886496;
+			public const int mobile_common_device_timezone = 2131886496;
 			
 			// aapt resource value: 0x7F1201A1
-			public const int material_motion_easing_standard = 2131886497;
+			public const int mobile_common_get_info_failed = 2131886497;
 			
 			// aapt resource value: 0x7F1201A2
-			public const int material_slider_range_end = 2131886498;
+			public const int mobile_common_how_modify_device_pwd = 2131886498;
 			
 			// aapt resource value: 0x7F1201A3
-			public const int material_slider_range_start = 2131886499;
+			public const int mobile_common_lack_permission_then_exit = 2131886499;
 			
 			// aapt resource value: 0x7F1201A4
-			public const int material_slider_value = 2131886500;
+			public const int mobile_common_later = 2131886500;
 			
 			// aapt resource value: 0x7F1201A5
-			public const int material_timepicker_am = 2131886501;
+			public const int mobile_common_modify_device_pwd = 2131886501;
 			
 			// aapt resource value: 0x7F1201A6
-			public const int material_timepicker_clock_mode_description = 2131886502;
+			public const int mobile_common_modify_device_pwd_tip = 2131886502;
 			
 			// aapt resource value: 0x7F1201A7
-			public const int material_timepicker_hour = 2131886503;
+			public const int mobile_common_network_config = 2131886503;
 			
 			// aapt resource value: 0x7F1201A8
-			public const int material_timepicker_minute = 2131886504;
+			public const int mobile_common_no_google_play_detection = 2131886504;
 			
 			// aapt resource value: 0x7F1201A9
-			public const int material_timepicker_pm = 2131886505;
+			public const int mobile_common_no_huawei_play_detection = 2131886505;
 			
 			// aapt resource value: 0x7F1201AA
-			public const int material_timepicker_select_time = 2131886506;
+			public const int mobile_common_password_too_simple = 2131886506;
 			
 			// aapt resource value: 0x7F1201AB
-			public const int material_timepicker_text_input_mode_description = 2131886507;
+			public const int mobile_common_permission_apply = 2131886507;
 			
 			// aapt resource value: 0x7F1201AC
-			public const int mobile_common_bec_add_device_valid_error = 2131886508;
+			public const int mobile_common_permission_explain_access_location_usage = 2131886508;
 			
 			// aapt resource value: 0x7F1201AD
-			public const int mobile_common_bec_common_network_exception = 2131886509;
+			public const int mobile_common_permission_explain_camera = 2131886509;
 			
 			// aapt resource value: 0x7F1201AE
-			public const int mobile_common_bec_common_timeout = 2131886510;
+			public const int mobile_common_permission_explain_external_storage = 2131886510;
 			
 			// aapt resource value: 0x7F1201AF
-			public const int mobile_common_bec_device_locked = 2131886511;
+			public const int mobile_common_permission_explain_get_accounts = 2131886511;
 			
 			// aapt resource value: 0x7F1201B0
-			public const int mobile_common_common_ignore = 2131886512;
+			public const int mobile_common_permission_explain_read_phone_state = 2131886512;
 			
 			// aapt resource value: 0x7F1201B1
-			public const int mobile_common_common_never_remind = 2131886513;
+			public const int mobile_common_permission_explain_record_audio = 2131886513;
 			
 			// aapt resource value: 0x7F1201B2
-			public const int mobile_common_device = 2131886514;
+			public const int mobile_common_permission_explain_write_accounts = 2131886514;
 			
 			// aapt resource value: 0x7F1201B3
-			public const int mobile_common_device_pwd_rule = 2131886515;
+			public const int mobile_common_retry = 2131886515;
 			
 			// aapt resource value: 0x7F1201B4
-			public const int mobile_common_device_timezone = 2131886516;
+			public const int mobile_common_tap_to_view = 2131886516;
 			
 			// aapt resource value: 0x7F1201B5
-			public const int mobile_common_get_info_failed = 2131886517;
+			public const int more_settings = 2131886517;
 			
 			// aapt resource value: 0x7F1201B6
-			public const int mobile_common_how_modify_device_pwd = 2131886518;
+			public const int mtrl_badge_numberless_content_description = 2131886518;
 			
 			// aapt resource value: 0x7F1201B7
-			public const int mobile_common_lack_permission_then_exit = 2131886519;
+			public const int mtrl_checkbox_button_icon_path_checked = 2131886519;
 			
 			// aapt resource value: 0x7F1201B8
-			public const int mobile_common_later = 2131886520;
+			public const int mtrl_checkbox_button_icon_path_group_name = 2131886520;
 			
 			// aapt resource value: 0x7F1201B9
-			public const int mobile_common_modify_device_pwd = 2131886521;
+			public const int mtrl_checkbox_button_icon_path_indeterminate = 2131886521;
 			
 			// aapt resource value: 0x7F1201BA
-			public const int mobile_common_modify_device_pwd_tip = 2131886522;
+			public const int mtrl_checkbox_button_icon_path_name = 2131886522;
 			
 			// aapt resource value: 0x7F1201BB
-			public const int mobile_common_network_config = 2131886523;
+			public const int mtrl_checkbox_button_path_checked = 2131886523;
 			
 			// aapt resource value: 0x7F1201BC
-			public const int mobile_common_no_google_play_detection = 2131886524;
+			public const int mtrl_checkbox_button_path_group_name = 2131886524;
 			
 			// aapt resource value: 0x7F1201BD
-			public const int mobile_common_no_huawei_play_detection = 2131886525;
+			public const int mtrl_checkbox_button_path_name = 2131886525;
 			
 			// aapt resource value: 0x7F1201BE
-			public const int mobile_common_password_too_simple = 2131886526;
+			public const int mtrl_checkbox_button_path_unchecked = 2131886526;
 			
 			// aapt resource value: 0x7F1201BF
-			public const int mobile_common_permission_apply = 2131886527;
+			public const int mtrl_checkbox_state_description_checked = 2131886527;
 			
 			// aapt resource value: 0x7F1201C0
-			public const int mobile_common_permission_explain_access_location_usage = 2131886528;
+			public const int mtrl_checkbox_state_description_indeterminate = 2131886528;
 			
 			// aapt resource value: 0x7F1201C1
-			public const int mobile_common_permission_explain_camera = 2131886529;
+			public const int mtrl_checkbox_state_description_unchecked = 2131886529;
 			
 			// aapt resource value: 0x7F1201C2
-			public const int mobile_common_permission_explain_external_storage = 2131886530;
+			public const int mtrl_chip_close_icon_content_description = 2131886530;
 			
 			// aapt resource value: 0x7F1201C3
-			public const int mobile_common_permission_explain_get_accounts = 2131886531;
+			public const int mtrl_exceed_max_badge_number_content_description = 2131886531;
 			
 			// aapt resource value: 0x7F1201C4
-			public const int mobile_common_permission_explain_read_phone_state = 2131886532;
+			public const int mtrl_exceed_max_badge_number_suffix = 2131886532;
 			
 			// aapt resource value: 0x7F1201C5
-			public const int mobile_common_permission_explain_record_audio = 2131886533;
+			public const int mtrl_picker_a11y_next_month = 2131886533;
 			
 			// aapt resource value: 0x7F1201C6
-			public const int mobile_common_permission_explain_write_accounts = 2131886534;
+			public const int mtrl_picker_a11y_prev_month = 2131886534;
 			
 			// aapt resource value: 0x7F1201C7
-			public const int mobile_common_retry = 2131886535;
+			public const int mtrl_picker_announce_current_range_selection = 2131886535;
 			
 			// aapt resource value: 0x7F1201C8
-			public const int mobile_common_tap_to_view = 2131886536;
+			public const int mtrl_picker_announce_current_selection = 2131886536;
 			
 			// aapt resource value: 0x7F1201C9
-			public const int more_settings = 2131886537;
+			public const int mtrl_picker_announce_current_selection_none = 2131886537;
 			
 			// aapt resource value: 0x7F1201CA
-			public const int mtrl_badge_numberless_content_description = 2131886538;
+			public const int mtrl_picker_cancel = 2131886538;
 			
 			// aapt resource value: 0x7F1201CB
-			public const int mtrl_checkbox_button_icon_path_checked = 2131886539;
+			public const int mtrl_picker_confirm = 2131886539;
 			
 			// aapt resource value: 0x7F1201CC
-			public const int mtrl_checkbox_button_icon_path_group_name = 2131886540;
+			public const int mtrl_picker_date_header_selected = 2131886540;
 			
 			// aapt resource value: 0x7F1201CD
-			public const int mtrl_checkbox_button_icon_path_indeterminate = 2131886541;
+			public const int mtrl_picker_date_header_title = 2131886541;
 			
 			// aapt resource value: 0x7F1201CE
-			public const int mtrl_checkbox_button_icon_path_name = 2131886542;
+			public const int mtrl_picker_date_header_unselected = 2131886542;
 			
 			// aapt resource value: 0x7F1201CF
-			public const int mtrl_checkbox_button_path_checked = 2131886543;
+			public const int mtrl_picker_day_of_week_column_header = 2131886543;
 			
 			// aapt resource value: 0x7F1201D0
-			public const int mtrl_checkbox_button_path_group_name = 2131886544;
+			public const int mtrl_picker_end_date_description = 2131886544;
 			
 			// aapt resource value: 0x7F1201D1
-			public const int mtrl_checkbox_button_path_name = 2131886545;
+			public const int mtrl_picker_invalid_format = 2131886545;
 			
 			// aapt resource value: 0x7F1201D2
-			public const int mtrl_checkbox_button_path_unchecked = 2131886546;
+			public const int mtrl_picker_invalid_format_example = 2131886546;
 			
 			// aapt resource value: 0x7F1201D3
-			public const int mtrl_checkbox_state_description_checked = 2131886547;
+			public const int mtrl_picker_invalid_format_use = 2131886547;
 			
 			// aapt resource value: 0x7F1201D4
-			public const int mtrl_checkbox_state_description_indeterminate = 2131886548;
+			public const int mtrl_picker_invalid_range = 2131886548;
 			
 			// aapt resource value: 0x7F1201D5
-			public const int mtrl_checkbox_state_description_unchecked = 2131886549;
+			public const int mtrl_picker_navigate_to_current_year_description = 2131886549;
 			
 			// aapt resource value: 0x7F1201D6
-			public const int mtrl_chip_close_icon_content_description = 2131886550;
+			public const int mtrl_picker_navigate_to_year_description = 2131886550;
 			
 			// aapt resource value: 0x7F1201D7
-			public const int mtrl_exceed_max_badge_number_content_description = 2131886551;
+			public const int mtrl_picker_out_of_range = 2131886551;
 			
 			// aapt resource value: 0x7F1201D8
-			public const int mtrl_exceed_max_badge_number_suffix = 2131886552;
+			public const int mtrl_picker_range_header_only_end_selected = 2131886552;
 			
 			// aapt resource value: 0x7F1201D9
-			public const int mtrl_picker_a11y_next_month = 2131886553;
+			public const int mtrl_picker_range_header_only_start_selected = 2131886553;
 			
 			// aapt resource value: 0x7F1201DA
-			public const int mtrl_picker_a11y_prev_month = 2131886554;
+			public const int mtrl_picker_range_header_selected = 2131886554;
 			
 			// aapt resource value: 0x7F1201DB
-			public const int mtrl_picker_announce_current_range_selection = 2131886555;
+			public const int mtrl_picker_range_header_title = 2131886555;
 			
 			// aapt resource value: 0x7F1201DC
-			public const int mtrl_picker_announce_current_selection = 2131886556;
+			public const int mtrl_picker_range_header_unselected = 2131886556;
 			
 			// aapt resource value: 0x7F1201DD
-			public const int mtrl_picker_announce_current_selection_none = 2131886557;
+			public const int mtrl_picker_save = 2131886557;
 			
 			// aapt resource value: 0x7F1201DE
-			public const int mtrl_picker_cancel = 2131886558;
+			public const int mtrl_picker_start_date_description = 2131886558;
 			
 			// aapt resource value: 0x7F1201DF
-			public const int mtrl_picker_confirm = 2131886559;
+			public const int mtrl_picker_text_input_date_hint = 2131886559;
 			
 			// aapt resource value: 0x7F1201E0
-			public const int mtrl_picker_date_header_selected = 2131886560;
+			public const int mtrl_picker_text_input_date_range_end_hint = 2131886560;
 			
 			// aapt resource value: 0x7F1201E1
-			public const int mtrl_picker_date_header_title = 2131886561;
+			public const int mtrl_picker_text_input_date_range_start_hint = 2131886561;
 			
 			// aapt resource value: 0x7F1201E2
-			public const int mtrl_picker_date_header_unselected = 2131886562;
+			public const int mtrl_picker_text_input_day_abbr = 2131886562;
 			
 			// aapt resource value: 0x7F1201E3
-			public const int mtrl_picker_day_of_week_column_header = 2131886563;
+			public const int mtrl_picker_text_input_month_abbr = 2131886563;
 			
 			// aapt resource value: 0x7F1201E4
-			public const int mtrl_picker_end_date_description = 2131886564;
+			public const int mtrl_picker_text_input_year_abbr = 2131886564;
 			
 			// aapt resource value: 0x7F1201E5
-			public const int mtrl_picker_invalid_format = 2131886565;
+			public const int mtrl_picker_today_description = 2131886565;
 			
 			// aapt resource value: 0x7F1201E6
-			public const int mtrl_picker_invalid_format_example = 2131886566;
+			public const int mtrl_picker_toggle_to_calendar_input_mode = 2131886566;
 			
 			// aapt resource value: 0x7F1201E7
-			public const int mtrl_picker_invalid_format_use = 2131886567;
+			public const int mtrl_picker_toggle_to_day_selection = 2131886567;
 			
 			// aapt resource value: 0x7F1201E8
-			public const int mtrl_picker_invalid_range = 2131886568;
+			public const int mtrl_picker_toggle_to_text_input_mode = 2131886568;
 			
 			// aapt resource value: 0x7F1201E9
-			public const int mtrl_picker_navigate_to_current_year_description = 2131886569;
+			public const int mtrl_picker_toggle_to_year_selection = 2131886569;
 			
 			// aapt resource value: 0x7F1201EA
-			public const int mtrl_picker_navigate_to_year_description = 2131886570;
+			public const int mtrl_switch_thumb_group_name = 2131886570;
 			
 			// aapt resource value: 0x7F1201EB
-			public const int mtrl_picker_out_of_range = 2131886571;
+			public const int mtrl_switch_thumb_path_checked = 2131886571;
 			
 			// aapt resource value: 0x7F1201EC
-			public const int mtrl_picker_range_header_only_end_selected = 2131886572;
+			public const int mtrl_switch_thumb_path_morphing = 2131886572;
 			
 			// aapt resource value: 0x7F1201ED
-			public const int mtrl_picker_range_header_only_start_selected = 2131886573;
+			public const int mtrl_switch_thumb_path_name = 2131886573;
 			
 			// aapt resource value: 0x7F1201EE
-			public const int mtrl_picker_range_header_selected = 2131886574;
+			public const int mtrl_switch_thumb_path_pressed = 2131886574;
 			
 			// aapt resource value: 0x7F1201EF
-			public const int mtrl_picker_range_header_title = 2131886575;
+			public const int mtrl_switch_thumb_path_unchecked = 2131886575;
 			
 			// aapt resource value: 0x7F1201F0
-			public const int mtrl_picker_range_header_unselected = 2131886576;
+			public const int mtrl_switch_track_decoration_path = 2131886576;
 			
 			// aapt resource value: 0x7F1201F1
-			public const int mtrl_picker_save = 2131886577;
+			public const int mtrl_switch_track_path = 2131886577;
 			
 			// aapt resource value: 0x7F1201F2
-			public const int mtrl_picker_start_date_description = 2131886578;
+			public const int mtrl_timepicker_cancel = 2131886578;
 			
 			// aapt resource value: 0x7F1201F3
-			public const int mtrl_picker_text_input_date_hint = 2131886579;
+			public const int mtrl_timepicker_confirm = 2131886579;
 			
 			// aapt resource value: 0x7F1201F4
-			public const int mtrl_picker_text_input_date_range_end_hint = 2131886580;
+			public const int not_recognized_fingerprint_hint = 2131886580;
 			
 			// aapt resource value: 0x7F1201F5
-			public const int mtrl_picker_text_input_date_range_start_hint = 2131886581;
+			public const int on_the_phone = 2131886581;
 			
 			// aapt resource value: 0x7F1201F6
-			public const int mtrl_picker_text_input_day_abbr = 2131886582;
+			public const int password_toggle_content_description = 2131886582;
 			
 			// aapt resource value: 0x7F1201F7
-			public const int mtrl_picker_text_input_month_abbr = 2131886583;
+			public const int path_password_eye = 2131886583;
 			
 			// aapt resource value: 0x7F1201F8
-			public const int mtrl_picker_text_input_year_abbr = 2131886584;
+			public const int path_password_eye_mask_strike_through = 2131886584;
 			
 			// aapt resource value: 0x7F1201F9
-			public const int mtrl_picker_today_description = 2131886585;
+			public const int path_password_eye_mask_visible = 2131886585;
 			
 			// aapt resource value: 0x7F1201FA
-			public const int mtrl_picker_toggle_to_calendar_input_mode = 2131886586;
+			public const int path_password_strike_through = 2131886586;
 			
 			// aapt resource value: 0x7F1201FB
-			public const int mtrl_picker_toggle_to_day_selection = 2131886587;
+			public const int phone_not_match_tip = 2131886587;
 			
 			// aapt resource value: 0x7F1201FC
-			public const int mtrl_picker_toggle_to_text_input_mode = 2131886588;
+			public const int pickerview_cancel = 2131886588;
 			
 			// aapt resource value: 0x7F1201FD
-			public const int mtrl_picker_toggle_to_year_selection = 2131886589;
+			public const int pickerview_day = 2131886589;
 			
 			// aapt resource value: 0x7F1201FE
-			public const int mtrl_switch_thumb_group_name = 2131886590;
+			public const int pickerview_hours = 2131886590;
 			
 			// aapt resource value: 0x7F1201FF
-			public const int mtrl_switch_thumb_path_checked = 2131886591;
+			public const int pickerview_minutes = 2131886591;
 			
 			// aapt resource value: 0x7F120200
-			public const int mtrl_switch_thumb_path_morphing = 2131886592;
+			public const int pickerview_month = 2131886592;
 			
 			// aapt resource value: 0x7F120201
-			public const int mtrl_switch_thumb_path_name = 2131886593;
+			public const int pickerview_seconds = 2131886593;
 			
 			// aapt resource value: 0x7F120202
-			public const int mtrl_switch_thumb_path_pressed = 2131886594;
+			public const int pickerview_submit = 2131886594;
 			
 			// aapt resource value: 0x7F120203
-			public const int mtrl_switch_thumb_path_unchecked = 2131886595;
+			public const int pickerview_year = 2131886595;
 			
 			// aapt resource value: 0x7F120204
-			public const int mtrl_switch_track_decoration_path = 2131886596;
+			public const int privacy_policy_and_service_agreement = 2131886596;
 			
 			// aapt resource value: 0x7F120205
-			public const int mtrl_switch_track_path = 2131886597;
+			public const int pull_to_refresh_from_bottom_pull_label = 2131886597;
 			
 			// aapt resource value: 0x7F120206
-			public const int mtrl_timepicker_cancel = 2131886598;
+			public const int pull_to_refresh_from_bottom_refreshing_label = 2131886598;
 			
 			// aapt resource value: 0x7F120207
-			public const int mtrl_timepicker_confirm = 2131886599;
+			public const int pull_to_refresh_from_bottom_release_label = 2131886599;
 			
 			// aapt resource value: 0x7F120208
-			public const int not_recognized_fingerprint_hint = 2131886600;
+			public const int pull_to_refresh_pull_label = 2131886600;
 			
 			// aapt resource value: 0x7F120209
-			public const int on_the_phone = 2131886601;
+			public const int pull_to_refresh_refreshing_label = 2131886601;
 			
 			// aapt resource value: 0x7F12020A
-			public const int password_toggle_content_description = 2131886602;
+			public const int pull_to_refresh_release_label = 2131886602;
 			
 			// aapt resource value: 0x7F12020B
-			public const int path_password_eye = 2131886603;
+			public const int read_privacy_policy_and_service_agreement_tip = 2131886603;
 			
 			// aapt resource value: 0x7F12020C
-			public const int path_password_eye_mask_strike_through = 2131886604;
+			public const int scan_title = 2131886604;
 			
 			// aapt resource value: 0x7F12020D
-			public const int path_password_eye_mask_visible = 2131886605;
+			public const int screenshot_fail = 2131886605;
 			
 			// aapt resource value: 0x7F12020E
-			public const int path_password_strike_through = 2131886606;
-			
-			// aapt resource value: 0x7F12020F
-			public const int phone_not_match_tip = 2131886607;
+			public const int screenshot_success = 2131886606;
 			
 			// aapt resource value: 0x7F120210
-			public const int pickerview_cancel = 2131886608;
+			public const int searchbar_scrolling_view_behavior = 2131886608;
 			
 			// aapt resource value: 0x7F120211
-			public const int pickerview_day = 2131886609;
+			public const int searchview_clear_text_content_description = 2131886609;
 			
 			// aapt resource value: 0x7F120212
-			public const int pickerview_hours = 2131886610;
+			public const int searchview_navigation_content_description = 2131886610;
+			
+			// aapt resource value: 0x7F12020F
+			public const int search_menu_title = 2131886607;
 			
 			// aapt resource value: 0x7F120213
-			public const int pickerview_minutes = 2131886611;
+			public const int side_sheet_accessibility_pane_title = 2131886611;
 			
 			// aapt resource value: 0x7F120214
-			public const int pickerview_month = 2131886612;
+			public const int side_sheet_behavior = 2131886612;
 			
 			// aapt resource value: 0x7F120215
-			public const int pickerview_seconds = 2131886613;
+			public const int srl_component_falsify = 2131886613;
 			
 			// aapt resource value: 0x7F120216
-			public const int pickerview_submit = 2131886614;
+			public const int srl_content_empty = 2131886614;
 			
 			// aapt resource value: 0x7F120217
-			public const int pickerview_year = 2131886615;
+			public const int srl_footer_failed = 2131886615;
 			
 			// aapt resource value: 0x7F120218
-			public const int privacy_policy_and_service_agreement = 2131886616;
+			public const int srl_footer_finish = 2131886616;
 			
 			// aapt resource value: 0x7F120219
-			public const int pull_to_refresh_from_bottom_pull_label = 2131886617;
+			public const int srl_footer_loading = 2131886617;
 			
 			// aapt resource value: 0x7F12021A
-			public const int pull_to_refresh_from_bottom_refreshing_label = 2131886618;
+			public const int srl_footer_nothing = 2131886618;
 			
 			// aapt resource value: 0x7F12021B
-			public const int pull_to_refresh_from_bottom_release_label = 2131886619;
+			public const int srl_footer_pulling = 2131886619;
 			
 			// aapt resource value: 0x7F12021C
-			public const int pull_to_refresh_pull_label = 2131886620;
+			public const int srl_footer_refreshing = 2131886620;
 			
 			// aapt resource value: 0x7F12021D
-			public const int pull_to_refresh_refreshing_label = 2131886621;
+			public const int srl_footer_release = 2131886621;
 			
 			// aapt resource value: 0x7F12021E
-			public const int pull_to_refresh_release_label = 2131886622;
+			public const int srl_header_failed = 2131886622;
 			
 			// aapt resource value: 0x7F12021F
-			public const int read_privacy_policy_and_service_agreement_tip = 2131886623;
+			public const int srl_header_finish = 2131886623;
 			
 			// aapt resource value: 0x7F120220
-			public const int scan_title = 2131886624;
+			public const int srl_header_loading = 2131886624;
 			
 			// aapt resource value: 0x7F120221
-			public const int screenshot_fail = 2131886625;
+			public const int srl_header_pulling = 2131886625;
 			
 			// aapt resource value: 0x7F120222
-			public const int screenshot_success = 2131886626;
-			
-			// aapt resource value: 0x7F120224
-			public const int searchbar_scrolling_view_behavior = 2131886628;
-			
-			// aapt resource value: 0x7F120225
-			public const int searchview_clear_text_content_description = 2131886629;
-			
-			// aapt resource value: 0x7F120226
-			public const int searchview_navigation_content_description = 2131886630;
+			public const int srl_header_refreshing = 2131886626;
 			
 			// aapt resource value: 0x7F120223
-			public const int search_menu_title = 2131886627;
+			public const int srl_header_release = 2131886627;
+			
+			// aapt resource value: 0x7F120224
+			public const int srl_header_secondary = 2131886628;
+			
+			// aapt resource value: 0x7F120225
+			public const int srl_header_update = 2131886629;
+			
+			// aapt resource value: 0x7F120226
+			public const int status_bar_notification_info_overflow = 2131886630;
 			
 			// aapt resource value: 0x7F120227
-			public const int side_sheet_accessibility_pane_title = 2131886631;
+			public const int talk_open_failed = 2131886631;
 			
 			// aapt resource value: 0x7F120228
-			public const int side_sheet_behavior = 2131886632;
+			public const int talk_open_success = 2131886632;
 			
 			// aapt resource value: 0x7F120229
-			public const int srl_component_falsify = 2131886633;
+			public const int touch_fingerprint_sensor_hint = 2131886633;
 			
 			// aapt resource value: 0x7F12022A
-			public const int srl_content_empty = 2131886634;
+			public const int unlock_fail = 2131886634;
 			
 			// aapt resource value: 0x7F12022B
-			public const int srl_footer_failed = 2131886635;
+			public const int unlock_success = 2131886635;
 			
 			// aapt resource value: 0x7F12022C
-			public const int srl_footer_finish = 2131886636;
+			public const int user_input_name = 2131886636;
 			
 			// aapt resource value: 0x7F12022D
-			public const int srl_footer_loading = 2131886637;
+			public const int user_login_title = 2131886637;
 			
 			// aapt resource value: 0x7F12022E
-			public const int srl_footer_nothing = 2131886638;
+			public const int user_pwd_login_login = 2131886638;
 			
 			// aapt resource value: 0x7F12022F
-			public const int srl_footer_pulling = 2131886639;
+			public const int user_register = 2131886639;
 			
 			// aapt resource value: 0x7F120230
-			public const int srl_footer_refreshing = 2131886640;
+			public const int user_register_btn = 2131886640;
 			
 			// aapt resource value: 0x7F120231
-			public const int srl_footer_release = 2131886641;
+			public const int valid_code_retrieve_valid_num = 2131886641;
 			
 			// aapt resource value: 0x7F120232
-			public const int srl_header_failed = 2131886642;
+			public const int video_answer = 2131886642;
 			
 			// aapt resource value: 0x7F120233
-			public const int srl_header_finish = 2131886643;
+			public const int video_confirm = 2131886643;
 			
 			// aapt resource value: 0x7F120234
-			public const int srl_header_loading = 2131886644;
+			public const int video_device = 2131886644;
 			
 			// aapt resource value: 0x7F120235
-			public const int srl_header_pulling = 2131886645;
+			public const int video_fail = 2131886645;
 			
 			// aapt resource value: 0x7F120236
-			public const int srl_header_refreshing = 2131886646;
+			public const int video_hang_up = 2131886646;
 			
 			// aapt resource value: 0x7F120237
-			public const int srl_header_release = 2131886647;
+			public const int video_icon = 2131886647;
 			
 			// aapt resource value: 0x7F120238
-			public const int srl_header_secondary = 2131886648;
+			public const int video_not_answer = 2131886648;
 			
 			// aapt resource value: 0x7F120239
-			public const int srl_header_update = 2131886649;
+			public const int video_screenshot = 2131886649;
 			
 			// aapt resource value: 0x7F12023A
-			public const int status_bar_notification_info_overflow = 2131886650;
+			public const int video_success = 2131886650;
 			
 			// aapt resource value: 0x7F12023B
-			public const int talk_open_failed = 2131886651;
+			public const int video_tip = 2131886651;
 			
 			// aapt resource value: 0x7F12023C
-			public const int talk_open_success = 2131886652;
+			public const int video_unlock = 2131886652;
 			
 			// aapt resource value: 0x7F12023D
-			public const int tip_confirm_unlock = 2131886653;
+			public const int zxing_app_name = 2131886653;
 			
 			// aapt resource value: 0x7F12023E
-			public const int touch_fingerprint_sensor_hint = 2131886654;
+			public const int zxing_button_ok = 2131886654;
 			
 			// aapt resource value: 0x7F12023F
-			public const int unlock_fail = 2131886655;
+			public const int zxing_msg_camera_framework_bug = 2131886655;
 			
 			// aapt resource value: 0x7F120240
-			public const int unlock_success = 2131886656;
+			public const int zxing_msg_default_status = 2131886656;
 			
 			// aapt resource value: 0x7F120241
-			public const int user_input_name = 2131886657;
-			
-			// aapt resource value: 0x7F120242
-			public const int user_login_title = 2131886658;
-			
-			// aapt resource value: 0x7F120243
-			public const int user_pwd_login_login = 2131886659;
-			
-			// aapt resource value: 0x7F120244
-			public const int user_register = 2131886660;
-			
-			// aapt resource value: 0x7F120245
-			public const int user_register_btn = 2131886661;
-			
-			// aapt resource value: 0x7F120246
-			public const int valid_code_retrieve_valid_num = 2131886662;
-			
-			// aapt resource value: 0x7F120247
-			public const int video_answer = 2131886663;
-			
-			// aapt resource value: 0x7F120248
-			public const int video_confirm = 2131886664;
-			
-			// aapt resource value: 0x7F120249
-			public const int video_device = 2131886665;
-			
-			// aapt resource value: 0x7F12024A
-			public const int video_fail = 2131886666;
-			
-			// aapt resource value: 0x7F12024B
-			public const int video_hang_up = 2131886667;
-			
-			// aapt resource value: 0x7F12024C
-			public const int video_icon = 2131886668;
-			
-			// aapt resource value: 0x7F12024D
-			public const int video_not_answer = 2131886669;
-			
-			// aapt resource value: 0x7F12024E
-			public const int video_screenshot = 2131886670;
-			
-			// aapt resource value: 0x7F12024F
-			public const int video_success = 2131886671;
-			
-			// aapt resource value: 0x7F120250
-			public const int video_tip = 2131886672;
-			
-			// aapt resource value: 0x7F120251
-			public const int video_unlock = 2131886673;
-			
-			// aapt resource value: 0x7F120252
-			public const int zxing_app_name = 2131886674;
-			
-			// aapt resource value: 0x7F120253
-			public const int zxing_button_ok = 2131886675;
-			
-			// aapt resource value: 0x7F120254
-			public const int zxing_msg_camera_framework_bug = 2131886676;
-			
-			// aapt resource value: 0x7F120255
-			public const int zxing_msg_default_status = 2131886677;
-			
-			// aapt resource value: 0x7F120256
-			public const int zxing_scan_tips = 2131886678;
+			public const int zxing_scan_tips = 2131886657;
 			
 			static String()
 			{
@@ -21048,17 +20589,17 @@
 		public partial class Style
 		{
 			
+			// aapt resource value: 0x7F13046F
+			public const int add_device_btn_style = 2131952751;
+			
 			// aapt resource value: 0x7F130470
-			public const int add_device_btn_style = 2131952752;
+			public const int add_device_common_16dp_2c2c2c = 2131952752;
 			
 			// aapt resource value: 0x7F130471
-			public const int add_device_common_16dp_2c2c2c = 2131952753;
+			public const int add_device_help_style = 2131952753;
 			
-			// aapt resource value: 0x7F130472
-			public const int add_device_help_style = 2131952754;
-			
-			// aapt resource value: 0x7F13046F
-			public const int add_Device_timeout_btn_style = 2131952751;
+			// aapt resource value: 0x7F13046E
+			public const int add_Device_timeout_btn_style = 2131952750;
 			
 			// aapt resource value: 0x7F130000
 			public const int AlertDialog_AppCompat = 2131951616;
@@ -21945,2618 +21486,2606 @@
 			// aapt resource value: 0x7F130126
 			public const int CardView_Light = 2131951910;
 			
+			// aapt resource value: 0x7F130472
+			public const int cc_line_long = 2131952754;
+			
 			// aapt resource value: 0x7F130473
-			public const int cc_line_long = 2131952755;
+			public const int checks_dialog = 2131952755;
 			
 			// aapt resource value: 0x7F130474
-			public const int checks_dialog = 2131952756;
+			public const int common_horizontal_line_style = 2131952756;
 			
 			// aapt resource value: 0x7F130475
-			public const int common_dialog = 2131952757;
+			public const int common_input_style = 2131952757;
 			
 			// aapt resource value: 0x7F130476
-			public const int common_horizontal_line_style = 2131952758;
+			public const int custom_dialog = 2131952758;
 			
 			// aapt resource value: 0x7F130477
-			public const int common_input_style = 2131952759;
-			
-			// aapt resource value: 0x7F130127
-			public const int CustomAlertDialog = 2131951911;
+			public const int custom_dialog2 = 2131952759;
 			
 			// aapt resource value: 0x7F130478
-			public const int custom_dialog = 2131952760;
+			public const int dahua_wight_progressBar = 2131952760;
 			
 			// aapt resource value: 0x7F130479
-			public const int custom_dialog2 = 2131952761;
+			public const int dev_detail_relativeLayout = 2131952761;
+			
+			// aapt resource value: 0x7F130127
+			public const int DialogTheme = 2131951911;
 			
 			// aapt resource value: 0x7F13047A
-			public const int dahua_wight_progressBar = 2131952762;
+			public const int lc_bottom_button_style = 2131952762;
 			
 			// aapt resource value: 0x7F13047B
-			public const int dev_detail_relativeLayout = 2131952763;
+			public const int lc_demo_loading = 2131952763;
 			
 			// aapt resource value: 0x7F130128
-			public const int DialogTheme = 2131951912;
-			
-			// aapt resource value: 0x7F13047C
-			public const int lc_bottom_button_style = 2131952764;
-			
-			// aapt resource value: 0x7F13047D
-			public const int lc_demo_loading = 2131952765;
+			public const int List = 2131951912;
 			
 			// aapt resource value: 0x7F130129
-			public const int List = 2131951913;
+			public const int MaterialAlertDialog_Material3 = 2131951913;
 			
 			// aapt resource value: 0x7F13012A
-			public const int MaterialAlertDialog_Material3 = 2131951914;
+			public const int MaterialAlertDialog_Material3_Animation = 2131951914;
 			
 			// aapt resource value: 0x7F13012B
-			public const int MaterialAlertDialog_Material3_Animation = 2131951915;
+			public const int MaterialAlertDialog_Material3_Body_Text = 2131951915;
 			
 			// aapt resource value: 0x7F13012C
-			public const int MaterialAlertDialog_Material3_Body_Text = 2131951916;
+			public const int MaterialAlertDialog_Material3_Body_Text_CenterStacked = 2131951916;
 			
 			// aapt resource value: 0x7F13012D
-			public const int MaterialAlertDialog_Material3_Body_Text_CenterStacked = 2131951917;
+			public const int MaterialAlertDialog_Material3_Title_Icon = 2131951917;
 			
 			// aapt resource value: 0x7F13012E
-			public const int MaterialAlertDialog_Material3_Title_Icon = 2131951918;
+			public const int MaterialAlertDialog_Material3_Title_Icon_CenterStacked = 2131951918;
 			
 			// aapt resource value: 0x7F13012F
-			public const int MaterialAlertDialog_Material3_Title_Icon_CenterStacked = 2131951919;
+			public const int MaterialAlertDialog_Material3_Title_Panel = 2131951919;
 			
 			// aapt resource value: 0x7F130130
-			public const int MaterialAlertDialog_Material3_Title_Panel = 2131951920;
+			public const int MaterialAlertDialog_Material3_Title_Panel_CenterStacked = 2131951920;
 			
 			// aapt resource value: 0x7F130131
-			public const int MaterialAlertDialog_Material3_Title_Panel_CenterStacked = 2131951921;
+			public const int MaterialAlertDialog_Material3_Title_Text = 2131951921;
 			
 			// aapt resource value: 0x7F130132
-			public const int MaterialAlertDialog_Material3_Title_Text = 2131951922;
+			public const int MaterialAlertDialog_Material3_Title_Text_CenterStacked = 2131951922;
 			
 			// aapt resource value: 0x7F130133
-			public const int MaterialAlertDialog_Material3_Title_Text_CenterStacked = 2131951923;
+			public const int MaterialAlertDialog_MaterialComponents = 2131951923;
 			
 			// aapt resource value: 0x7F130134
-			public const int MaterialAlertDialog_MaterialComponents = 2131951924;
+			public const int MaterialAlertDialog_MaterialComponents_Body_Text = 2131951924;
 			
 			// aapt resource value: 0x7F130135
-			public const int MaterialAlertDialog_MaterialComponents_Body_Text = 2131951925;
+			public const int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar = 2131951925;
 			
 			// aapt resource value: 0x7F130136
-			public const int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar = 2131951926;
+			public const int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner = 2131951926;
 			
 			// aapt resource value: 0x7F130137
-			public const int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner = 2131951927;
+			public const int MaterialAlertDialog_MaterialComponents_Title_Icon = 2131951927;
 			
 			// aapt resource value: 0x7F130138
-			public const int MaterialAlertDialog_MaterialComponents_Title_Icon = 2131951928;
+			public const int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked = 2131951928;
 			
 			// aapt resource value: 0x7F130139
-			public const int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked = 2131951929;
+			public const int MaterialAlertDialog_MaterialComponents_Title_Panel = 2131951929;
 			
 			// aapt resource value: 0x7F13013A
-			public const int MaterialAlertDialog_MaterialComponents_Title_Panel = 2131951930;
+			public const int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked = 2131951930;
 			
 			// aapt resource value: 0x7F13013B
-			public const int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked = 2131951931;
+			public const int MaterialAlertDialog_MaterialComponents_Title_Text = 2131951931;
 			
 			// aapt resource value: 0x7F13013C
-			public const int MaterialAlertDialog_MaterialComponents_Title_Text = 2131951932;
+			public const int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked = 2131951932;
 			
-			// aapt resource value: 0x7F13013D
-			public const int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked = 2131951933;
-			
-			// aapt resource value: 0x7F13047F
-			public const int mobile_common_cam_text_edit = 2131952767;
-			
-			// aapt resource value: 0x7F130480
-			public const int mobile_common_cam_text_edit_enabled = 2131952768;
-			
-			// aapt resource value: 0x7F130481
-			public const int mobile_common_cam_text_name = 2131952769;
-			
-			// aapt resource value: 0x7F130482
-			public const int mobile_common_cam_text_name_enabled = 2131952770;
-			
-			// aapt resource value: 0x7F130483
-			public const int mobile_common_cam_text_sub = 2131952771;
-			
-			// aapt resource value: 0x7F130484
-			public const int mobile_common_checks_dialog = 2131952772;
-			
-			// aapt resource value: 0x7F130485
-			public const int mobile_common_common_title = 2131952773;
-			
-			// aapt resource value: 0x7F130486
-			public const int mobile_common_custom_dialog = 2131952774;
-			
-			// aapt resource value: 0x7F130487
-			public const int mobile_common_dahua_wight_progressBar = 2131952775;
-			
-			// aapt resource value: 0x7F130488
-			public const int mobile_common_dahua_wight_progressBar_Small = 2131952776;
-			
-			// aapt resource value: 0x7F130489
-			public const int mobile_common_dialog_anima = 2131952777;
+			// aapt resource value: 0x7F13047D
+			public const int mobile_common_cam_text_edit = 2131952765;
 			
 			// aapt resource value: 0x7F13047E
-			public const int mobile_common_TextAppearance_22sp_black_bold = 2131952766;
+			public const int mobile_common_cam_text_edit_enabled = 2131952766;
+			
+			// aapt resource value: 0x7F13047F
+			public const int mobile_common_cam_text_name = 2131952767;
+			
+			// aapt resource value: 0x7F130480
+			public const int mobile_common_cam_text_name_enabled = 2131952768;
+			
+			// aapt resource value: 0x7F130481
+			public const int mobile_common_cam_text_sub = 2131952769;
+			
+			// aapt resource value: 0x7F130482
+			public const int mobile_common_checks_dialog = 2131952770;
+			
+			// aapt resource value: 0x7F130483
+			public const int mobile_common_common_title = 2131952771;
+			
+			// aapt resource value: 0x7F130484
+			public const int mobile_common_custom_dialog = 2131952772;
+			
+			// aapt resource value: 0x7F130485
+			public const int mobile_common_dahua_wight_progressBar = 2131952773;
+			
+			// aapt resource value: 0x7F130486
+			public const int mobile_common_dahua_wight_progressBar_Small = 2131952774;
+			
+			// aapt resource value: 0x7F130487
+			public const int mobile_common_dialog_anima = 2131952775;
+			
+			// aapt resource value: 0x7F13047C
+			public const int mobile_common_TextAppearance_22sp_black_bold = 2131952764;
+			
+			// aapt resource value: 0x7F13013D
+			public const int MyDialogStyle = 2131951933;
 			
 			// aapt resource value: 0x7F13013E
-			public const int MyDialogStyle = 2131951934;
+			public const int MyTheme = 2131951934;
 			
 			// aapt resource value: 0x7F13013F
-			public const int MyTheme = 2131951935;
+			public const int MyTheme1 = 2131951935;
+			
+			// aapt resource value: 0x7F130488
+			public const int picker_view_scale_anim = 2131952776;
+			
+			// aapt resource value: 0x7F130489
+			public const int picker_view_slide_anim = 2131952777;
 			
 			// aapt resource value: 0x7F130140
-			public const int MyTheme1 = 2131951936;
-			
-			// aapt resource value: 0x7F13048A
-			public const int picker_view_scale_anim = 2131952778;
-			
-			// aapt resource value: 0x7F13048B
-			public const int picker_view_slide_anim = 2131952779;
+			public const int Platform_AppCompat = 2131951936;
 			
 			// aapt resource value: 0x7F130141
-			public const int Platform_AppCompat = 2131951937;
+			public const int Platform_AppCompat_Light = 2131951937;
 			
 			// aapt resource value: 0x7F130142
-			public const int Platform_AppCompat_Light = 2131951938;
+			public const int Platform_MaterialComponents = 2131951938;
 			
 			// aapt resource value: 0x7F130143
-			public const int Platform_MaterialComponents = 2131951939;
+			public const int Platform_MaterialComponents_Dialog = 2131951939;
 			
 			// aapt resource value: 0x7F130144
-			public const int Platform_MaterialComponents_Dialog = 2131951940;
+			public const int Platform_MaterialComponents_Light = 2131951940;
 			
 			// aapt resource value: 0x7F130145
-			public const int Platform_MaterialComponents_Light = 2131951941;
+			public const int Platform_MaterialComponents_Light_Dialog = 2131951941;
 			
 			// aapt resource value: 0x7F130146
-			public const int Platform_MaterialComponents_Light_Dialog = 2131951942;
+			public const int Platform_ThemeOverlay_AppCompat = 2131951942;
 			
 			// aapt resource value: 0x7F130147
-			public const int Platform_ThemeOverlay_AppCompat = 2131951943;
+			public const int Platform_ThemeOverlay_AppCompat_Dark = 2131951943;
 			
 			// aapt resource value: 0x7F130148
-			public const int Platform_ThemeOverlay_AppCompat_Dark = 2131951944;
+			public const int Platform_ThemeOverlay_AppCompat_Light = 2131951944;
 			
 			// aapt resource value: 0x7F130149
-			public const int Platform_ThemeOverlay_AppCompat_Light = 2131951945;
+			public const int Platform_V21_AppCompat = 2131951945;
 			
 			// aapt resource value: 0x7F13014A
-			public const int Platform_V21_AppCompat = 2131951946;
+			public const int Platform_V21_AppCompat_Light = 2131951946;
 			
 			// aapt resource value: 0x7F13014B
-			public const int Platform_V21_AppCompat_Light = 2131951947;
+			public const int Platform_V25_AppCompat = 2131951947;
 			
 			// aapt resource value: 0x7F13014C
-			public const int Platform_V25_AppCompat = 2131951948;
+			public const int Platform_V25_AppCompat_Light = 2131951948;
 			
 			// aapt resource value: 0x7F13014D
-			public const int Platform_V25_AppCompat_Light = 2131951949;
+			public const int Platform_Widget_AppCompat_Spinner = 2131951949;
 			
 			// aapt resource value: 0x7F13014E
-			public const int Platform_Widget_AppCompat_Spinner = 2131951950;
+			public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131951950;
 			
 			// aapt resource value: 0x7F13014F
-			public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131951951;
+			public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131951951;
 			
 			// aapt resource value: 0x7F130150
-			public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131951952;
+			public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131951952;
 			
 			// aapt resource value: 0x7F130151
-			public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131951953;
+			public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131951953;
 			
 			// aapt resource value: 0x7F130152
-			public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131951954;
+			public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131951954;
 			
 			// aapt resource value: 0x7F130153
-			public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131951955;
+			public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131951955;
 			
 			// aapt resource value: 0x7F130154
-			public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131951956;
+			public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131951956;
 			
 			// aapt resource value: 0x7F130155
-			public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131951957;
+			public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131951957;
 			
 			// aapt resource value: 0x7F130156
-			public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131951958;
-			
-			// aapt resource value: 0x7F130157
-			public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131951959;
-			
-			// aapt resource value: 0x7F13015D
-			public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131951965;
-			
-			// aapt resource value: 0x7F130158
-			public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131951960;
-			
-			// aapt resource value: 0x7F130159
-			public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131951961;
-			
-			// aapt resource value: 0x7F13015A
-			public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131951962;
-			
-			// aapt resource value: 0x7F13015B
-			public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131951963;
+			public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131951958;
 			
 			// aapt resource value: 0x7F13015C
-			public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131951964;
+			public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131951964;
+			
+			// aapt resource value: 0x7F130157
+			public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131951959;
+			
+			// aapt resource value: 0x7F130158
+			public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131951960;
+			
+			// aapt resource value: 0x7F130159
+			public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131951961;
+			
+			// aapt resource value: 0x7F13015A
+			public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131951962;
+			
+			// aapt resource value: 0x7F13015B
+			public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131951963;
+			
+			// aapt resource value: 0x7F13015D
+			public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131951965;
 			
 			// aapt resource value: 0x7F13015E
-			public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131951966;
-			
-			// aapt resource value: 0x7F13015F
-			public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131951967;
-			
-			// aapt resource value: 0x7F13018B
-			public const int ShapeAppearanceOverlay_Material3_Button = 2131952011;
-			
-			// aapt resource value: 0x7F13018C
-			public const int ShapeAppearanceOverlay_Material3_Chip = 2131952012;
-			
-			// aapt resource value: 0x7F13018D
-			public const int ShapeAppearanceOverlay_Material3_Corner_Bottom = 2131952013;
-			
-			// aapt resource value: 0x7F13018E
-			public const int ShapeAppearanceOverlay_Material3_Corner_Left = 2131952014;
-			
-			// aapt resource value: 0x7F13018F
-			public const int ShapeAppearanceOverlay_Material3_Corner_Right = 2131952015;
-			
-			// aapt resource value: 0x7F130190
-			public const int ShapeAppearanceOverlay_Material3_Corner_Top = 2131952016;
-			
-			// aapt resource value: 0x7F130191
-			public const int ShapeAppearanceOverlay_Material3_FloatingActionButton = 2131952017;
-			
-			// aapt resource value: 0x7F130192
-			public const int ShapeAppearanceOverlay_Material3_NavigationView_Item = 2131952018;
-			
-			// aapt resource value: 0x7F130193
-			public const int ShapeAppearanceOverlay_Material3_SearchBar = 2131952019;
-			
-			// aapt resource value: 0x7F130194
-			public const int ShapeAppearanceOverlay_Material3_SearchView = 2131952020;
-			
-			// aapt resource value: 0x7F130195
-			public const int ShapeAppearanceOverlay_MaterialAlertDialog_Material3 = 2131952021;
-			
-			// aapt resource value: 0x7F130196
-			public const int ShapeAppearanceOverlay_MaterialComponents_BottomSheet = 2131952022;
-			
-			// aapt resource value: 0x7F130197
-			public const int ShapeAppearanceOverlay_MaterialComponents_Chip = 2131952023;
-			
-			// aapt resource value: 0x7F130198
-			public const int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton = 2131952024;
-			
-			// aapt resource value: 0x7F130199
-			public const int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton = 2131952025;
-			
-			// aapt resource value: 0x7F13019A
-			public const int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day = 2131952026;
-			
-			// aapt resource value: 0x7F13019B
-			public const int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen = 2131952027;
-			
-			// aapt resource value: 0x7F13019C
-			public const int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year = 2131952028;
-			
-			// aapt resource value: 0x7F13019D
-			public const int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox = 2131952029;
-			
-			// aapt resource value: 0x7F130160
-			public const int ShapeAppearance_M3_Comp_Badge_Large_Shape = 2131951968;
-			
-			// aapt resource value: 0x7F130161
-			public const int ShapeAppearance_M3_Comp_Badge_Shape = 2131951969;
-			
-			// aapt resource value: 0x7F130162
-			public const int ShapeAppearance_M3_Comp_BottomAppBar_Container_Shape = 2131951970;
-			
-			// aapt resource value: 0x7F130163
-			public const int ShapeAppearance_M3_Comp_DatePicker_Modal_Date_Container_Shape = 2131951971;
-			
-			// aapt resource value: 0x7F130164
-			public const int ShapeAppearance_M3_Comp_FilledButton_Container_Shape = 2131951972;
-			
-			// aapt resource value: 0x7F130165
-			public const int ShapeAppearance_M3_Comp_NavigationBar_ActiveIndicator_Shape = 2131951973;
-			
-			// aapt resource value: 0x7F130166
-			public const int ShapeAppearance_M3_Comp_NavigationBar_Container_Shape = 2131951974;
-			
-			// aapt resource value: 0x7F130167
-			public const int ShapeAppearance_M3_Comp_NavigationDrawer_ActiveIndicator_Shape = 2131951975;
-			
-			// aapt resource value: 0x7F130168
-			public const int ShapeAppearance_M3_Comp_NavigationRail_ActiveIndicator_Shape = 2131951976;
-			
-			// aapt resource value: 0x7F130169
-			public const int ShapeAppearance_M3_Comp_NavigationRail_Container_Shape = 2131951977;
-			
-			// aapt resource value: 0x7F13016A
-			public const int ShapeAppearance_M3_Comp_SearchBar_Avatar_Shape = 2131951978;
-			
-			// aapt resource value: 0x7F13016B
-			public const int ShapeAppearance_M3_Comp_SearchBar_Container_Shape = 2131951979;
-			
-			// aapt resource value: 0x7F13016C
-			public const int ShapeAppearance_M3_Comp_SearchView_FullScreen_Container_Shape = 2131951980;
-			
-			// aapt resource value: 0x7F13016D
-			public const int ShapeAppearance_M3_Comp_Sheet_Side_Docked_Container_Shape = 2131951981;
-			
-			// aapt resource value: 0x7F13016E
-			public const int ShapeAppearance_M3_Comp_Switch_Handle_Shape = 2131951982;
-			
-			// aapt resource value: 0x7F13016F
-			public const int ShapeAppearance_M3_Comp_Switch_StateLayer_Shape = 2131951983;
-			
-			// aapt resource value: 0x7F130170
-			public const int ShapeAppearance_M3_Comp_Switch_Track_Shape = 2131951984;
-			
-			// aapt resource value: 0x7F130171
-			public const int ShapeAppearance_M3_Comp_TextButton_Container_Shape = 2131951985;
-			
-			// aapt resource value: 0x7F130172
-			public const int ShapeAppearance_M3_Sys_Shape_Corner_ExtraLarge = 2131951986;
-			
-			// aapt resource value: 0x7F130173
-			public const int ShapeAppearance_M3_Sys_Shape_Corner_ExtraSmall = 2131951987;
-			
-			// aapt resource value: 0x7F130174
-			public const int ShapeAppearance_M3_Sys_Shape_Corner_Full = 2131951988;
-			
-			// aapt resource value: 0x7F130175
-			public const int ShapeAppearance_M3_Sys_Shape_Corner_Large = 2131951989;
-			
-			// aapt resource value: 0x7F130176
-			public const int ShapeAppearance_M3_Sys_Shape_Corner_Medium = 2131951990;
-			
-			// aapt resource value: 0x7F130177
-			public const int ShapeAppearance_M3_Sys_Shape_Corner_None = 2131951991;
-			
-			// aapt resource value: 0x7F130178
-			public const int ShapeAppearance_M3_Sys_Shape_Corner_Small = 2131951992;
-			
-			// aapt resource value: 0x7F130179
-			public const int ShapeAppearance_Material3_Corner_ExtraLarge = 2131951993;
-			
-			// aapt resource value: 0x7F13017A
-			public const int ShapeAppearance_Material3_Corner_ExtraSmall = 2131951994;
-			
-			// aapt resource value: 0x7F13017B
-			public const int ShapeAppearance_Material3_Corner_Full = 2131951995;
-			
-			// aapt resource value: 0x7F13017C
-			public const int ShapeAppearance_Material3_Corner_Large = 2131951996;
-			
-			// aapt resource value: 0x7F13017D
-			public const int ShapeAppearance_Material3_Corner_Medium = 2131951997;
-			
-			// aapt resource value: 0x7F13017E
-			public const int ShapeAppearance_Material3_Corner_None = 2131951998;
-			
-			// aapt resource value: 0x7F13017F
-			public const int ShapeAppearance_Material3_Corner_Small = 2131951999;
-			
-			// aapt resource value: 0x7F130180
-			public const int ShapeAppearance_Material3_LargeComponent = 2131952000;
-			
-			// aapt resource value: 0x7F130181
-			public const int ShapeAppearance_Material3_MediumComponent = 2131952001;
-			
-			// aapt resource value: 0x7F130182
-			public const int ShapeAppearance_Material3_NavigationBarView_ActiveIndicator = 2131952002;
-			
-			// aapt resource value: 0x7F130183
-			public const int ShapeAppearance_Material3_SmallComponent = 2131952003;
-			
-			// aapt resource value: 0x7F130184
-			public const int ShapeAppearance_Material3_Tooltip = 2131952004;
-			
-			// aapt resource value: 0x7F130185
-			public const int ShapeAppearance_MaterialComponents = 2131952005;
-			
-			// aapt resource value: 0x7F130186
-			public const int ShapeAppearance_MaterialComponents_Badge = 2131952006;
-			
-			// aapt resource value: 0x7F130187
-			public const int ShapeAppearance_MaterialComponents_LargeComponent = 2131952007;
-			
-			// aapt resource value: 0x7F130188
-			public const int ShapeAppearance_MaterialComponents_MediumComponent = 2131952008;
-			
-			// aapt resource value: 0x7F130189
-			public const int ShapeAppearance_MaterialComponents_SmallComponent = 2131952009;
+			public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131951966;
 			
 			// aapt resource value: 0x7F13018A
-			public const int ShapeAppearance_MaterialComponents_Tooltip = 2131952010;
+			public const int ShapeAppearanceOverlay_Material3_Button = 2131952010;
 			
-			// aapt resource value: 0x7F13048C
-			public const int sign_dialog = 2131952780;
+			// aapt resource value: 0x7F13018B
+			public const int ShapeAppearanceOverlay_Material3_Chip = 2131952011;
+			
+			// aapt resource value: 0x7F13018C
+			public const int ShapeAppearanceOverlay_Material3_Corner_Bottom = 2131952012;
+			
+			// aapt resource value: 0x7F13018D
+			public const int ShapeAppearanceOverlay_Material3_Corner_Left = 2131952013;
+			
+			// aapt resource value: 0x7F13018E
+			public const int ShapeAppearanceOverlay_Material3_Corner_Right = 2131952014;
+			
+			// aapt resource value: 0x7F13018F
+			public const int ShapeAppearanceOverlay_Material3_Corner_Top = 2131952015;
+			
+			// aapt resource value: 0x7F130190
+			public const int ShapeAppearanceOverlay_Material3_FloatingActionButton = 2131952016;
+			
+			// aapt resource value: 0x7F130191
+			public const int ShapeAppearanceOverlay_Material3_NavigationView_Item = 2131952017;
+			
+			// aapt resource value: 0x7F130192
+			public const int ShapeAppearanceOverlay_Material3_SearchBar = 2131952018;
+			
+			// aapt resource value: 0x7F130193
+			public const int ShapeAppearanceOverlay_Material3_SearchView = 2131952019;
+			
+			// aapt resource value: 0x7F130194
+			public const int ShapeAppearanceOverlay_MaterialAlertDialog_Material3 = 2131952020;
+			
+			// aapt resource value: 0x7F130195
+			public const int ShapeAppearanceOverlay_MaterialComponents_BottomSheet = 2131952021;
+			
+			// aapt resource value: 0x7F130196
+			public const int ShapeAppearanceOverlay_MaterialComponents_Chip = 2131952022;
+			
+			// aapt resource value: 0x7F130197
+			public const int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton = 2131952023;
+			
+			// aapt resource value: 0x7F130198
+			public const int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton = 2131952024;
+			
+			// aapt resource value: 0x7F130199
+			public const int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day = 2131952025;
+			
+			// aapt resource value: 0x7F13019A
+			public const int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen = 2131952026;
+			
+			// aapt resource value: 0x7F13019B
+			public const int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year = 2131952027;
+			
+			// aapt resource value: 0x7F13019C
+			public const int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox = 2131952028;
+			
+			// aapt resource value: 0x7F13015F
+			public const int ShapeAppearance_M3_Comp_Badge_Large_Shape = 2131951967;
+			
+			// aapt resource value: 0x7F130160
+			public const int ShapeAppearance_M3_Comp_Badge_Shape = 2131951968;
+			
+			// aapt resource value: 0x7F130161
+			public const int ShapeAppearance_M3_Comp_BottomAppBar_Container_Shape = 2131951969;
+			
+			// aapt resource value: 0x7F130162
+			public const int ShapeAppearance_M3_Comp_DatePicker_Modal_Date_Container_Shape = 2131951970;
+			
+			// aapt resource value: 0x7F130163
+			public const int ShapeAppearance_M3_Comp_FilledButton_Container_Shape = 2131951971;
+			
+			// aapt resource value: 0x7F130164
+			public const int ShapeAppearance_M3_Comp_NavigationBar_ActiveIndicator_Shape = 2131951972;
+			
+			// aapt resource value: 0x7F130165
+			public const int ShapeAppearance_M3_Comp_NavigationBar_Container_Shape = 2131951973;
+			
+			// aapt resource value: 0x7F130166
+			public const int ShapeAppearance_M3_Comp_NavigationDrawer_ActiveIndicator_Shape = 2131951974;
+			
+			// aapt resource value: 0x7F130167
+			public const int ShapeAppearance_M3_Comp_NavigationRail_ActiveIndicator_Shape = 2131951975;
+			
+			// aapt resource value: 0x7F130168
+			public const int ShapeAppearance_M3_Comp_NavigationRail_Container_Shape = 2131951976;
+			
+			// aapt resource value: 0x7F130169
+			public const int ShapeAppearance_M3_Comp_SearchBar_Avatar_Shape = 2131951977;
+			
+			// aapt resource value: 0x7F13016A
+			public const int ShapeAppearance_M3_Comp_SearchBar_Container_Shape = 2131951978;
+			
+			// aapt resource value: 0x7F13016B
+			public const int ShapeAppearance_M3_Comp_SearchView_FullScreen_Container_Shape = 2131951979;
+			
+			// aapt resource value: 0x7F13016C
+			public const int ShapeAppearance_M3_Comp_Sheet_Side_Docked_Container_Shape = 2131951980;
+			
+			// aapt resource value: 0x7F13016D
+			public const int ShapeAppearance_M3_Comp_Switch_Handle_Shape = 2131951981;
+			
+			// aapt resource value: 0x7F13016E
+			public const int ShapeAppearance_M3_Comp_Switch_StateLayer_Shape = 2131951982;
+			
+			// aapt resource value: 0x7F13016F
+			public const int ShapeAppearance_M3_Comp_Switch_Track_Shape = 2131951983;
+			
+			// aapt resource value: 0x7F130170
+			public const int ShapeAppearance_M3_Comp_TextButton_Container_Shape = 2131951984;
+			
+			// aapt resource value: 0x7F130171
+			public const int ShapeAppearance_M3_Sys_Shape_Corner_ExtraLarge = 2131951985;
+			
+			// aapt resource value: 0x7F130172
+			public const int ShapeAppearance_M3_Sys_Shape_Corner_ExtraSmall = 2131951986;
+			
+			// aapt resource value: 0x7F130173
+			public const int ShapeAppearance_M3_Sys_Shape_Corner_Full = 2131951987;
+			
+			// aapt resource value: 0x7F130174
+			public const int ShapeAppearance_M3_Sys_Shape_Corner_Large = 2131951988;
+			
+			// aapt resource value: 0x7F130175
+			public const int ShapeAppearance_M3_Sys_Shape_Corner_Medium = 2131951989;
+			
+			// aapt resource value: 0x7F130176
+			public const int ShapeAppearance_M3_Sys_Shape_Corner_None = 2131951990;
+			
+			// aapt resource value: 0x7F130177
+			public const int ShapeAppearance_M3_Sys_Shape_Corner_Small = 2131951991;
+			
+			// aapt resource value: 0x7F130178
+			public const int ShapeAppearance_Material3_Corner_ExtraLarge = 2131951992;
+			
+			// aapt resource value: 0x7F130179
+			public const int ShapeAppearance_Material3_Corner_ExtraSmall = 2131951993;
+			
+			// aapt resource value: 0x7F13017A
+			public const int ShapeAppearance_Material3_Corner_Full = 2131951994;
+			
+			// aapt resource value: 0x7F13017B
+			public const int ShapeAppearance_Material3_Corner_Large = 2131951995;
+			
+			// aapt resource value: 0x7F13017C
+			public const int ShapeAppearance_Material3_Corner_Medium = 2131951996;
+			
+			// aapt resource value: 0x7F13017D
+			public const int ShapeAppearance_Material3_Corner_None = 2131951997;
+			
+			// aapt resource value: 0x7F13017E
+			public const int ShapeAppearance_Material3_Corner_Small = 2131951998;
+			
+			// aapt resource value: 0x7F13017F
+			public const int ShapeAppearance_Material3_LargeComponent = 2131951999;
+			
+			// aapt resource value: 0x7F130180
+			public const int ShapeAppearance_Material3_MediumComponent = 2131952000;
+			
+			// aapt resource value: 0x7F130181
+			public const int ShapeAppearance_Material3_NavigationBarView_ActiveIndicator = 2131952001;
+			
+			// aapt resource value: 0x7F130182
+			public const int ShapeAppearance_Material3_SmallComponent = 2131952002;
+			
+			// aapt resource value: 0x7F130183
+			public const int ShapeAppearance_Material3_Tooltip = 2131952003;
+			
+			// aapt resource value: 0x7F130184
+			public const int ShapeAppearance_MaterialComponents = 2131952004;
+			
+			// aapt resource value: 0x7F130185
+			public const int ShapeAppearance_MaterialComponents_Badge = 2131952005;
+			
+			// aapt resource value: 0x7F130186
+			public const int ShapeAppearance_MaterialComponents_LargeComponent = 2131952006;
+			
+			// aapt resource value: 0x7F130187
+			public const int ShapeAppearance_MaterialComponents_MediumComponent = 2131952007;
+			
+			// aapt resource value: 0x7F130188
+			public const int ShapeAppearance_MaterialComponents_SmallComponent = 2131952008;
+			
+			// aapt resource value: 0x7F130189
+			public const int ShapeAppearance_MaterialComponents_Tooltip = 2131952009;
+			
+			// aapt resource value: 0x7F13048A
+			public const int sign_dialog = 2131952778;
+			
+			// aapt resource value: 0x7F13019D
+			public const int SplashTheme = 2131952029;
 			
 			// aapt resource value: 0x7F13019E
-			public const int SplashTheme = 2131952030;
+			public const int TextAppearance_17sp_lc_black_color = 2131952030;
 			
 			// aapt resource value: 0x7F13019F
-			public const int TextAppearance_17sp_lc_black_color = 2131952031;
+			public const int TextAppearance_AppCompat = 2131952031;
 			
 			// aapt resource value: 0x7F1301A0
-			public const int TextAppearance_AppCompat = 2131952032;
+			public const int TextAppearance_AppCompat_Body1 = 2131952032;
 			
 			// aapt resource value: 0x7F1301A1
-			public const int TextAppearance_AppCompat_Body1 = 2131952033;
+			public const int TextAppearance_AppCompat_Body2 = 2131952033;
 			
 			// aapt resource value: 0x7F1301A2
-			public const int TextAppearance_AppCompat_Body2 = 2131952034;
+			public const int TextAppearance_AppCompat_Button = 2131952034;
 			
 			// aapt resource value: 0x7F1301A3
-			public const int TextAppearance_AppCompat_Button = 2131952035;
+			public const int TextAppearance_AppCompat_Caption = 2131952035;
 			
 			// aapt resource value: 0x7F1301A4
-			public const int TextAppearance_AppCompat_Caption = 2131952036;
+			public const int TextAppearance_AppCompat_Display1 = 2131952036;
 			
 			// aapt resource value: 0x7F1301A5
-			public const int TextAppearance_AppCompat_Display1 = 2131952037;
+			public const int TextAppearance_AppCompat_Display2 = 2131952037;
 			
 			// aapt resource value: 0x7F1301A6
-			public const int TextAppearance_AppCompat_Display2 = 2131952038;
+			public const int TextAppearance_AppCompat_Display3 = 2131952038;
 			
 			// aapt resource value: 0x7F1301A7
-			public const int TextAppearance_AppCompat_Display3 = 2131952039;
+			public const int TextAppearance_AppCompat_Display4 = 2131952039;
 			
 			// aapt resource value: 0x7F1301A8
-			public const int TextAppearance_AppCompat_Display4 = 2131952040;
+			public const int TextAppearance_AppCompat_Headline = 2131952040;
 			
 			// aapt resource value: 0x7F1301A9
-			public const int TextAppearance_AppCompat_Headline = 2131952041;
+			public const int TextAppearance_AppCompat_Inverse = 2131952041;
 			
 			// aapt resource value: 0x7F1301AA
-			public const int TextAppearance_AppCompat_Inverse = 2131952042;
+			public const int TextAppearance_AppCompat_Large = 2131952042;
 			
 			// aapt resource value: 0x7F1301AB
-			public const int TextAppearance_AppCompat_Large = 2131952043;
+			public const int TextAppearance_AppCompat_Large_Inverse = 2131952043;
 			
 			// aapt resource value: 0x7F1301AC
-			public const int TextAppearance_AppCompat_Large_Inverse = 2131952044;
+			public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131952044;
 			
 			// aapt resource value: 0x7F1301AD
-			public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131952045;
+			public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131952045;
 			
 			// aapt resource value: 0x7F1301AE
-			public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131952046;
+			public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131952046;
 			
 			// aapt resource value: 0x7F1301AF
-			public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131952047;
+			public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131952047;
 			
 			// aapt resource value: 0x7F1301B0
-			public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131952048;
+			public const int TextAppearance_AppCompat_Medium = 2131952048;
 			
 			// aapt resource value: 0x7F1301B1
-			public const int TextAppearance_AppCompat_Medium = 2131952049;
+			public const int TextAppearance_AppCompat_Medium_Inverse = 2131952049;
 			
 			// aapt resource value: 0x7F1301B2
-			public const int TextAppearance_AppCompat_Medium_Inverse = 2131952050;
+			public const int TextAppearance_AppCompat_Menu = 2131952050;
 			
 			// aapt resource value: 0x7F1301B3
-			public const int TextAppearance_AppCompat_Menu = 2131952051;
+			public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131952051;
 			
 			// aapt resource value: 0x7F1301B4
-			public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131952052;
+			public const int TextAppearance_AppCompat_SearchResult_Title = 2131952052;
 			
 			// aapt resource value: 0x7F1301B5
-			public const int TextAppearance_AppCompat_SearchResult_Title = 2131952053;
+			public const int TextAppearance_AppCompat_Small = 2131952053;
 			
 			// aapt resource value: 0x7F1301B6
-			public const int TextAppearance_AppCompat_Small = 2131952054;
+			public const int TextAppearance_AppCompat_Small_Inverse = 2131952054;
 			
 			// aapt resource value: 0x7F1301B7
-			public const int TextAppearance_AppCompat_Small_Inverse = 2131952055;
+			public const int TextAppearance_AppCompat_Subhead = 2131952055;
 			
 			// aapt resource value: 0x7F1301B8
-			public const int TextAppearance_AppCompat_Subhead = 2131952056;
+			public const int TextAppearance_AppCompat_Subhead_Inverse = 2131952056;
 			
 			// aapt resource value: 0x7F1301B9
-			public const int TextAppearance_AppCompat_Subhead_Inverse = 2131952057;
+			public const int TextAppearance_AppCompat_Title = 2131952057;
 			
 			// aapt resource value: 0x7F1301BA
-			public const int TextAppearance_AppCompat_Title = 2131952058;
+			public const int TextAppearance_AppCompat_Title_Inverse = 2131952058;
 			
 			// aapt resource value: 0x7F1301BB
-			public const int TextAppearance_AppCompat_Title_Inverse = 2131952059;
+			public const int TextAppearance_AppCompat_Tooltip = 2131952059;
 			
 			// aapt resource value: 0x7F1301BC
-			public const int TextAppearance_AppCompat_Tooltip = 2131952060;
+			public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131952060;
 			
 			// aapt resource value: 0x7F1301BD
-			public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131952061;
+			public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131952061;
 			
 			// aapt resource value: 0x7F1301BE
-			public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131952062;
+			public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131952062;
 			
 			// aapt resource value: 0x7F1301BF
-			public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131952063;
+			public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131952063;
 			
 			// aapt resource value: 0x7F1301C0
-			public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131952064;
+			public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131952064;
 			
 			// aapt resource value: 0x7F1301C1
-			public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131952065;
+			public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131952065;
 			
 			// aapt resource value: 0x7F1301C2
-			public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131952066;
+			public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131952066;
 			
 			// aapt resource value: 0x7F1301C3
-			public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131952067;
+			public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131952067;
 			
 			// aapt resource value: 0x7F1301C4
-			public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131952068;
+			public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131952068;
 			
 			// aapt resource value: 0x7F1301C5
-			public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131952069;
+			public const int TextAppearance_AppCompat_Widget_Button = 2131952069;
 			
 			// aapt resource value: 0x7F1301C6
-			public const int TextAppearance_AppCompat_Widget_Button = 2131952070;
+			public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131952070;
 			
 			// aapt resource value: 0x7F1301C7
-			public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131952071;
+			public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131952071;
 			
 			// aapt resource value: 0x7F1301C8
-			public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131952072;
+			public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131952072;
 			
 			// aapt resource value: 0x7F1301C9
-			public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131952073;
+			public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131952073;
 			
 			// aapt resource value: 0x7F1301CA
-			public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131952074;
+			public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131952074;
 			
 			// aapt resource value: 0x7F1301CB
-			public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131952075;
+			public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131952075;
 			
 			// aapt resource value: 0x7F1301CC
-			public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131952076;
+			public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131952076;
 			
 			// aapt resource value: 0x7F1301CD
-			public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131952077;
+			public const int TextAppearance_AppCompat_Widget_Switch = 2131952077;
 			
 			// aapt resource value: 0x7F1301CE
-			public const int TextAppearance_AppCompat_Widget_Switch = 2131952078;
+			public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131952078;
 			
 			// aapt resource value: 0x7F1301CF
-			public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131952079;
+			public const int TextAppearance_Compat_Notification = 2131952079;
 			
 			// aapt resource value: 0x7F1301D0
-			public const int TextAppearance_Compat_Notification = 2131952080;
+			public const int TextAppearance_Compat_Notification_Info = 2131952080;
 			
 			// aapt resource value: 0x7F1301D1
-			public const int TextAppearance_Compat_Notification_Info = 2131952081;
+			public const int TextAppearance_Compat_Notification_Info_Media = 2131952081;
 			
 			// aapt resource value: 0x7F1301D2
-			public const int TextAppearance_Compat_Notification_Info_Media = 2131952082;
+			public const int TextAppearance_Compat_Notification_Line2 = 2131952082;
 			
 			// aapt resource value: 0x7F1301D3
-			public const int TextAppearance_Compat_Notification_Line2 = 2131952083;
+			public const int TextAppearance_Compat_Notification_Line2_Media = 2131952083;
 			
 			// aapt resource value: 0x7F1301D4
-			public const int TextAppearance_Compat_Notification_Line2_Media = 2131952084;
+			public const int TextAppearance_Compat_Notification_Media = 2131952084;
 			
 			// aapt resource value: 0x7F1301D5
-			public const int TextAppearance_Compat_Notification_Media = 2131952085;
+			public const int TextAppearance_Compat_Notification_Time = 2131952085;
 			
 			// aapt resource value: 0x7F1301D6
-			public const int TextAppearance_Compat_Notification_Time = 2131952086;
+			public const int TextAppearance_Compat_Notification_Time_Media = 2131952086;
 			
 			// aapt resource value: 0x7F1301D7
-			public const int TextAppearance_Compat_Notification_Time_Media = 2131952087;
+			public const int TextAppearance_Compat_Notification_Title = 2131952087;
 			
 			// aapt resource value: 0x7F1301D8
-			public const int TextAppearance_Compat_Notification_Title = 2131952088;
+			public const int TextAppearance_Compat_Notification_Title_Media = 2131952088;
 			
 			// aapt resource value: 0x7F1301D9
-			public const int TextAppearance_Compat_Notification_Title_Media = 2131952089;
+			public const int TextAppearance_Design_CollapsingToolbar_Expanded = 2131952089;
 			
 			// aapt resource value: 0x7F1301DA
-			public const int TextAppearance_Design_CollapsingToolbar_Expanded = 2131952090;
+			public const int TextAppearance_Design_Counter = 2131952090;
 			
 			// aapt resource value: 0x7F1301DB
-			public const int TextAppearance_Design_Counter = 2131952091;
+			public const int TextAppearance_Design_Counter_Overflow = 2131952091;
 			
 			// aapt resource value: 0x7F1301DC
-			public const int TextAppearance_Design_Counter_Overflow = 2131952092;
+			public const int TextAppearance_Design_Error = 2131952092;
 			
 			// aapt resource value: 0x7F1301DD
-			public const int TextAppearance_Design_Error = 2131952093;
+			public const int TextAppearance_Design_HelperText = 2131952093;
 			
 			// aapt resource value: 0x7F1301DE
-			public const int TextAppearance_Design_HelperText = 2131952094;
+			public const int TextAppearance_Design_Hint = 2131952094;
 			
 			// aapt resource value: 0x7F1301DF
-			public const int TextAppearance_Design_Hint = 2131952095;
+			public const int TextAppearance_Design_Placeholder = 2131952095;
 			
 			// aapt resource value: 0x7F1301E0
-			public const int TextAppearance_Design_Placeholder = 2131952096;
+			public const int TextAppearance_Design_Prefix = 2131952096;
 			
 			// aapt resource value: 0x7F1301E1
-			public const int TextAppearance_Design_Prefix = 2131952097;
+			public const int TextAppearance_Design_Snackbar_Message = 2131952097;
 			
 			// aapt resource value: 0x7F1301E2
-			public const int TextAppearance_Design_Snackbar_Message = 2131952098;
+			public const int TextAppearance_Design_Suffix = 2131952098;
 			
 			// aapt resource value: 0x7F1301E3
-			public const int TextAppearance_Design_Suffix = 2131952099;
+			public const int TextAppearance_Design_Tab = 2131952099;
 			
 			// aapt resource value: 0x7F1301E4
-			public const int TextAppearance_Design_Tab = 2131952100;
+			public const int TextAppearance_M3_Sys_Typescale_BodyLarge = 2131952100;
 			
 			// aapt resource value: 0x7F1301E5
-			public const int TextAppearance_M3_Sys_Typescale_BodyLarge = 2131952101;
+			public const int TextAppearance_M3_Sys_Typescale_BodyMedium = 2131952101;
 			
 			// aapt resource value: 0x7F1301E6
-			public const int TextAppearance_M3_Sys_Typescale_BodyMedium = 2131952102;
+			public const int TextAppearance_M3_Sys_Typescale_BodySmall = 2131952102;
 			
 			// aapt resource value: 0x7F1301E7
-			public const int TextAppearance_M3_Sys_Typescale_BodySmall = 2131952103;
+			public const int TextAppearance_M3_Sys_Typescale_DisplayLarge = 2131952103;
 			
 			// aapt resource value: 0x7F1301E8
-			public const int TextAppearance_M3_Sys_Typescale_DisplayLarge = 2131952104;
+			public const int TextAppearance_M3_Sys_Typescale_DisplayMedium = 2131952104;
 			
 			// aapt resource value: 0x7F1301E9
-			public const int TextAppearance_M3_Sys_Typescale_DisplayMedium = 2131952105;
+			public const int TextAppearance_M3_Sys_Typescale_DisplaySmall = 2131952105;
 			
 			// aapt resource value: 0x7F1301EA
-			public const int TextAppearance_M3_Sys_Typescale_DisplaySmall = 2131952106;
+			public const int TextAppearance_M3_Sys_Typescale_HeadlineLarge = 2131952106;
 			
 			// aapt resource value: 0x7F1301EB
-			public const int TextAppearance_M3_Sys_Typescale_HeadlineLarge = 2131952107;
+			public const int TextAppearance_M3_Sys_Typescale_HeadlineMedium = 2131952107;
 			
 			// aapt resource value: 0x7F1301EC
-			public const int TextAppearance_M3_Sys_Typescale_HeadlineMedium = 2131952108;
+			public const int TextAppearance_M3_Sys_Typescale_HeadlineSmall = 2131952108;
 			
 			// aapt resource value: 0x7F1301ED
-			public const int TextAppearance_M3_Sys_Typescale_HeadlineSmall = 2131952109;
+			public const int TextAppearance_M3_Sys_Typescale_LabelLarge = 2131952109;
 			
 			// aapt resource value: 0x7F1301EE
-			public const int TextAppearance_M3_Sys_Typescale_LabelLarge = 2131952110;
+			public const int TextAppearance_M3_Sys_Typescale_LabelMedium = 2131952110;
 			
 			// aapt resource value: 0x7F1301EF
-			public const int TextAppearance_M3_Sys_Typescale_LabelMedium = 2131952111;
+			public const int TextAppearance_M3_Sys_Typescale_LabelSmall = 2131952111;
 			
 			// aapt resource value: 0x7F1301F0
-			public const int TextAppearance_M3_Sys_Typescale_LabelSmall = 2131952112;
+			public const int TextAppearance_M3_Sys_Typescale_TitleLarge = 2131952112;
 			
 			// aapt resource value: 0x7F1301F1
-			public const int TextAppearance_M3_Sys_Typescale_TitleLarge = 2131952113;
+			public const int TextAppearance_M3_Sys_Typescale_TitleMedium = 2131952113;
 			
 			// aapt resource value: 0x7F1301F2
-			public const int TextAppearance_M3_Sys_Typescale_TitleMedium = 2131952114;
+			public const int TextAppearance_M3_Sys_Typescale_TitleSmall = 2131952114;
 			
 			// aapt resource value: 0x7F1301F3
-			public const int TextAppearance_M3_Sys_Typescale_TitleSmall = 2131952115;
+			public const int TextAppearance_Material3_ActionBar_Subtitle = 2131952115;
 			
 			// aapt resource value: 0x7F1301F4
-			public const int TextAppearance_Material3_ActionBar_Subtitle = 2131952116;
+			public const int TextAppearance_Material3_ActionBar_Title = 2131952116;
 			
 			// aapt resource value: 0x7F1301F5
-			public const int TextAppearance_Material3_ActionBar_Title = 2131952117;
+			public const int TextAppearance_Material3_BodyLarge = 2131952117;
 			
 			// aapt resource value: 0x7F1301F6
-			public const int TextAppearance_Material3_BodyLarge = 2131952118;
+			public const int TextAppearance_Material3_BodyMedium = 2131952118;
 			
 			// aapt resource value: 0x7F1301F7
-			public const int TextAppearance_Material3_BodyMedium = 2131952119;
+			public const int TextAppearance_Material3_BodySmall = 2131952119;
 			
 			// aapt resource value: 0x7F1301F8
-			public const int TextAppearance_Material3_BodySmall = 2131952120;
+			public const int TextAppearance_Material3_DisplayLarge = 2131952120;
 			
 			// aapt resource value: 0x7F1301F9
-			public const int TextAppearance_Material3_DisplayLarge = 2131952121;
+			public const int TextAppearance_Material3_DisplayMedium = 2131952121;
 			
 			// aapt resource value: 0x7F1301FA
-			public const int TextAppearance_Material3_DisplayMedium = 2131952122;
+			public const int TextAppearance_Material3_DisplaySmall = 2131952122;
 			
 			// aapt resource value: 0x7F1301FB
-			public const int TextAppearance_Material3_DisplaySmall = 2131952123;
+			public const int TextAppearance_Material3_HeadlineLarge = 2131952123;
 			
 			// aapt resource value: 0x7F1301FC
-			public const int TextAppearance_Material3_HeadlineLarge = 2131952124;
+			public const int TextAppearance_Material3_HeadlineMedium = 2131952124;
 			
 			// aapt resource value: 0x7F1301FD
-			public const int TextAppearance_Material3_HeadlineMedium = 2131952125;
+			public const int TextAppearance_Material3_HeadlineSmall = 2131952125;
 			
 			// aapt resource value: 0x7F1301FE
-			public const int TextAppearance_Material3_HeadlineSmall = 2131952126;
+			public const int TextAppearance_Material3_LabelLarge = 2131952126;
 			
 			// aapt resource value: 0x7F1301FF
-			public const int TextAppearance_Material3_LabelLarge = 2131952127;
+			public const int TextAppearance_Material3_LabelMedium = 2131952127;
 			
 			// aapt resource value: 0x7F130200
-			public const int TextAppearance_Material3_LabelMedium = 2131952128;
+			public const int TextAppearance_Material3_LabelSmall = 2131952128;
 			
 			// aapt resource value: 0x7F130201
-			public const int TextAppearance_Material3_LabelSmall = 2131952129;
+			public const int TextAppearance_Material3_MaterialTimePicker_Title = 2131952129;
 			
 			// aapt resource value: 0x7F130202
-			public const int TextAppearance_Material3_MaterialTimePicker_Title = 2131952130;
+			public const int TextAppearance_Material3_SearchBar = 2131952130;
 			
 			// aapt resource value: 0x7F130203
-			public const int TextAppearance_Material3_SearchBar = 2131952131;
+			public const int TextAppearance_Material3_SearchView = 2131952131;
 			
 			// aapt resource value: 0x7F130204
-			public const int TextAppearance_Material3_SearchView = 2131952132;
+			public const int TextAppearance_Material3_SearchView_Prefix = 2131952132;
 			
 			// aapt resource value: 0x7F130205
-			public const int TextAppearance_Material3_SearchView_Prefix = 2131952133;
+			public const int TextAppearance_Material3_TitleLarge = 2131952133;
 			
 			// aapt resource value: 0x7F130206
-			public const int TextAppearance_Material3_TitleLarge = 2131952134;
+			public const int TextAppearance_Material3_TitleMedium = 2131952134;
 			
 			// aapt resource value: 0x7F130207
-			public const int TextAppearance_Material3_TitleMedium = 2131952135;
+			public const int TextAppearance_Material3_TitleSmall = 2131952135;
 			
 			// aapt resource value: 0x7F130208
-			public const int TextAppearance_Material3_TitleSmall = 2131952136;
+			public const int TextAppearance_MaterialComponents_Badge = 2131952136;
 			
 			// aapt resource value: 0x7F130209
-			public const int TextAppearance_MaterialComponents_Badge = 2131952137;
+			public const int TextAppearance_MaterialComponents_Body1 = 2131952137;
 			
 			// aapt resource value: 0x7F13020A
-			public const int TextAppearance_MaterialComponents_Body1 = 2131952138;
+			public const int TextAppearance_MaterialComponents_Body2 = 2131952138;
 			
 			// aapt resource value: 0x7F13020B
-			public const int TextAppearance_MaterialComponents_Body2 = 2131952139;
+			public const int TextAppearance_MaterialComponents_Button = 2131952139;
 			
 			// aapt resource value: 0x7F13020C
-			public const int TextAppearance_MaterialComponents_Button = 2131952140;
+			public const int TextAppearance_MaterialComponents_Caption = 2131952140;
 			
 			// aapt resource value: 0x7F13020D
-			public const int TextAppearance_MaterialComponents_Caption = 2131952141;
+			public const int TextAppearance_MaterialComponents_Chip = 2131952141;
 			
 			// aapt resource value: 0x7F13020E
-			public const int TextAppearance_MaterialComponents_Chip = 2131952142;
+			public const int TextAppearance_MaterialComponents_Headline1 = 2131952142;
 			
 			// aapt resource value: 0x7F13020F
-			public const int TextAppearance_MaterialComponents_Headline1 = 2131952143;
+			public const int TextAppearance_MaterialComponents_Headline2 = 2131952143;
 			
 			// aapt resource value: 0x7F130210
-			public const int TextAppearance_MaterialComponents_Headline2 = 2131952144;
+			public const int TextAppearance_MaterialComponents_Headline3 = 2131952144;
 			
 			// aapt resource value: 0x7F130211
-			public const int TextAppearance_MaterialComponents_Headline3 = 2131952145;
+			public const int TextAppearance_MaterialComponents_Headline4 = 2131952145;
 			
 			// aapt resource value: 0x7F130212
-			public const int TextAppearance_MaterialComponents_Headline4 = 2131952146;
+			public const int TextAppearance_MaterialComponents_Headline5 = 2131952146;
 			
 			// aapt resource value: 0x7F130213
-			public const int TextAppearance_MaterialComponents_Headline5 = 2131952147;
+			public const int TextAppearance_MaterialComponents_Headline6 = 2131952147;
 			
 			// aapt resource value: 0x7F130214
-			public const int TextAppearance_MaterialComponents_Headline6 = 2131952148;
+			public const int TextAppearance_MaterialComponents_Overline = 2131952148;
 			
 			// aapt resource value: 0x7F130215
-			public const int TextAppearance_MaterialComponents_Overline = 2131952149;
+			public const int TextAppearance_MaterialComponents_Subtitle1 = 2131952149;
 			
 			// aapt resource value: 0x7F130216
-			public const int TextAppearance_MaterialComponents_Subtitle1 = 2131952150;
+			public const int TextAppearance_MaterialComponents_Subtitle2 = 2131952150;
 			
 			// aapt resource value: 0x7F130217
-			public const int TextAppearance_MaterialComponents_Subtitle2 = 2131952151;
+			public const int TextAppearance_MaterialComponents_TimePicker_Title = 2131952151;
 			
 			// aapt resource value: 0x7F130218
-			public const int TextAppearance_MaterialComponents_TimePicker_Title = 2131952152;
+			public const int TextAppearance_MaterialComponents_Tooltip = 2131952152;
 			
 			// aapt resource value: 0x7F130219
-			public const int TextAppearance_MaterialComponents_Tooltip = 2131952153;
+			public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131952153;
 			
 			// aapt resource value: 0x7F13021A
-			public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131952154;
+			public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131952154;
 			
 			// aapt resource value: 0x7F13021B
-			public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131952155;
+			public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131952155;
 			
 			// aapt resource value: 0x7F13021C
-			public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131952156;
-			
-			// aapt resource value: 0x7F13021D
-			public const int TextView = 2131952157;
-			
-			// aapt resource value: 0x7F130285
-			public const int ThemeOverlay_AppCompat = 2131952261;
-			
-			// aapt resource value: 0x7F130286
-			public const int ThemeOverlay_AppCompat_ActionBar = 2131952262;
-			
-			// aapt resource value: 0x7F130287
-			public const int ThemeOverlay_AppCompat_Dark = 2131952263;
-			
-			// aapt resource value: 0x7F130288
-			public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131952264;
-			
-			// aapt resource value: 0x7F130289
-			public const int ThemeOverlay_AppCompat_DayNight = 2131952265;
-			
-			// aapt resource value: 0x7F13028A
-			public const int ThemeOverlay_AppCompat_DayNight_ActionBar = 2131952266;
-			
-			// aapt resource value: 0x7F13028B
-			public const int ThemeOverlay_AppCompat_Dialog = 2131952267;
-			
-			// aapt resource value: 0x7F13028C
-			public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131952268;
-			
-			// aapt resource value: 0x7F13028D
-			public const int ThemeOverlay_AppCompat_Light = 2131952269;
-			
-			// aapt resource value: 0x7F13028E
-			public const int ThemeOverlay_Design_TextInputEditText = 2131952270;
-			
-			// aapt resource value: 0x7F13028F
-			public const int ThemeOverlay_Material3 = 2131952271;
-			
-			// aapt resource value: 0x7F130290
-			public const int ThemeOverlay_Material3_ActionBar = 2131952272;
-			
-			// aapt resource value: 0x7F130291
-			public const int ThemeOverlay_Material3_AutoCompleteTextView = 2131952273;
-			
-			// aapt resource value: 0x7F130292
-			public const int ThemeOverlay_Material3_AutoCompleteTextView_FilledBox = 2131952274;
-			
-			// aapt resource value: 0x7F130293
-			public const int ThemeOverlay_Material3_AutoCompleteTextView_FilledBox_Dense = 2131952275;
-			
-			// aapt resource value: 0x7F130294
-			public const int ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox = 2131952276;
-			
-			// aapt resource value: 0x7F130295
-			public const int ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox_Dense = 2131952277;
-			
-			// aapt resource value: 0x7F130296
-			public const int ThemeOverlay_Material3_BottomAppBar = 2131952278;
-			
-			// aapt resource value: 0x7F130297
-			public const int ThemeOverlay_Material3_BottomAppBar_Legacy = 2131952279;
-			
-			// aapt resource value: 0x7F130298
-			public const int ThemeOverlay_Material3_BottomNavigationView = 2131952280;
-			
-			// aapt resource value: 0x7F130299
-			public const int ThemeOverlay_Material3_BottomSheetDialog = 2131952281;
-			
-			// aapt resource value: 0x7F13029A
-			public const int ThemeOverlay_Material3_Button = 2131952282;
-			
-			// aapt resource value: 0x7F13029B
-			public const int ThemeOverlay_Material3_Button_ElevatedButton = 2131952283;
-			
-			// aapt resource value: 0x7F13029C
-			public const int ThemeOverlay_Material3_Button_IconButton = 2131952284;
-			
-			// aapt resource value: 0x7F13029D
-			public const int ThemeOverlay_Material3_Button_IconButton_Filled = 2131952285;
-			
-			// aapt resource value: 0x7F13029E
-			public const int ThemeOverlay_Material3_Button_IconButton_Filled_Tonal = 2131952286;
-			
-			// aapt resource value: 0x7F13029F
-			public const int ThemeOverlay_Material3_Button_TextButton = 2131952287;
-			
-			// aapt resource value: 0x7F1302A0
-			public const int ThemeOverlay_Material3_Button_TextButton_Snackbar = 2131952288;
-			
-			// aapt resource value: 0x7F1302A1
-			public const int ThemeOverlay_Material3_Button_TonalButton = 2131952289;
-			
-			// aapt resource value: 0x7F1302A2
-			public const int ThemeOverlay_Material3_Chip = 2131952290;
-			
-			// aapt resource value: 0x7F1302A3
-			public const int ThemeOverlay_Material3_Chip_Assist = 2131952291;
-			
-			// aapt resource value: 0x7F1302A4
-			public const int ThemeOverlay_Material3_Dark = 2131952292;
-			
-			// aapt resource value: 0x7F1302A5
-			public const int ThemeOverlay_Material3_Dark_ActionBar = 2131952293;
-			
-			// aapt resource value: 0x7F1302A6
-			public const int ThemeOverlay_Material3_DayNight_BottomSheetDialog = 2131952294;
-			
-			// aapt resource value: 0x7F1302A7
-			public const int ThemeOverlay_Material3_DayNight_SideSheetDialog = 2131952295;
-			
-			// aapt resource value: 0x7F1302A8
-			public const int ThemeOverlay_Material3_Dialog = 2131952296;
-			
-			// aapt resource value: 0x7F1302A9
-			public const int ThemeOverlay_Material3_Dialog_Alert = 2131952297;
-			
-			// aapt resource value: 0x7F1302AA
-			public const int ThemeOverlay_Material3_Dialog_Alert_Framework = 2131952298;
-			
-			// aapt resource value: 0x7F1302AB
-			public const int ThemeOverlay_Material3_DynamicColors_Dark = 2131952299;
-			
-			// aapt resource value: 0x7F1302AC
-			public const int ThemeOverlay_Material3_DynamicColors_DayNight = 2131952300;
-			
-			// aapt resource value: 0x7F1302AD
-			public const int ThemeOverlay_Material3_DynamicColors_Light = 2131952301;
-			
-			// aapt resource value: 0x7F1302AE
-			public const int ThemeOverlay_Material3_ExtendedFloatingActionButton_Primary = 2131952302;
-			
-			// aapt resource value: 0x7F1302AF
-			public const int ThemeOverlay_Material3_ExtendedFloatingActionButton_Secondary = 2131952303;
-			
-			// aapt resource value: 0x7F1302B0
-			public const int ThemeOverlay_Material3_ExtendedFloatingActionButton_Surface = 2131952304;
-			
-			// aapt resource value: 0x7F1302B1
-			public const int ThemeOverlay_Material3_ExtendedFloatingActionButton_Tertiary = 2131952305;
-			
-			// aapt resource value: 0x7F1302B2
-			public const int ThemeOverlay_Material3_FloatingActionButton_Primary = 2131952306;
-			
-			// aapt resource value: 0x7F1302B3
-			public const int ThemeOverlay_Material3_FloatingActionButton_Secondary = 2131952307;
-			
-			// aapt resource value: 0x7F1302B4
-			public const int ThemeOverlay_Material3_FloatingActionButton_Surface = 2131952308;
-			
-			// aapt resource value: 0x7F1302B5
-			public const int ThemeOverlay_Material3_FloatingActionButton_Tertiary = 2131952309;
-			
-			// aapt resource value: 0x7F1302B6
-			public const int ThemeOverlay_Material3_HarmonizedColors = 2131952310;
-			
-			// aapt resource value: 0x7F1302B7
-			public const int ThemeOverlay_Material3_HarmonizedColors_Empty = 2131952311;
-			
-			// aapt resource value: 0x7F1302B8
-			public const int ThemeOverlay_Material3_Light = 2131952312;
-			
-			// aapt resource value: 0x7F1302B9
-			public const int ThemeOverlay_Material3_Light_Dialog_Alert_Framework = 2131952313;
-			
-			// aapt resource value: 0x7F1302BA
-			public const int ThemeOverlay_Material3_MaterialAlertDialog = 2131952314;
-			
-			// aapt resource value: 0x7F1302BB
-			public const int ThemeOverlay_Material3_MaterialAlertDialog_Centered = 2131952315;
-			
-			// aapt resource value: 0x7F1302BC
-			public const int ThemeOverlay_Material3_MaterialCalendar = 2131952316;
-			
-			// aapt resource value: 0x7F1302BD
-			public const int ThemeOverlay_Material3_MaterialCalendar_Fullscreen = 2131952317;
-			
-			// aapt resource value: 0x7F1302BE
-			public const int ThemeOverlay_Material3_MaterialCalendar_HeaderCancelButton = 2131952318;
-			
-			// aapt resource value: 0x7F1302BF
-			public const int ThemeOverlay_Material3_MaterialTimePicker = 2131952319;
-			
-			// aapt resource value: 0x7F1302C0
-			public const int ThemeOverlay_Material3_MaterialTimePicker_Display_TextInputEditText = 2131952320;
-			
-			// aapt resource value: 0x7F1302C1
-			public const int ThemeOverlay_Material3_NavigationRailView = 2131952321;
-			
-			// aapt resource value: 0x7F1302C2
-			public const int ThemeOverlay_Material3_NavigationView = 2131952322;
-			
-			// aapt resource value: 0x7F1302C3
-			public const int ThemeOverlay_Material3_PersonalizedColors = 2131952323;
-			
-			// aapt resource value: 0x7F1302C4
-			public const int ThemeOverlay_Material3_Search = 2131952324;
-			
-			// aapt resource value: 0x7F1302C5
-			public const int ThemeOverlay_Material3_SideSheetDialog = 2131952325;
-			
-			// aapt resource value: 0x7F1302C6
-			public const int ThemeOverlay_Material3_Snackbar = 2131952326;
-			
-			// aapt resource value: 0x7F1302C7
-			public const int ThemeOverlay_Material3_TabLayout = 2131952327;
-			
-			// aapt resource value: 0x7F1302C8
-			public const int ThemeOverlay_Material3_TextInputEditText = 2131952328;
-			
-			// aapt resource value: 0x7F1302C9
-			public const int ThemeOverlay_Material3_TextInputEditText_FilledBox = 2131952329;
-			
-			// aapt resource value: 0x7F1302CA
-			public const int ThemeOverlay_Material3_TextInputEditText_FilledBox_Dense = 2131952330;
-			
-			// aapt resource value: 0x7F1302CB
-			public const int ThemeOverlay_Material3_TextInputEditText_OutlinedBox = 2131952331;
-			
-			// aapt resource value: 0x7F1302CC
-			public const int ThemeOverlay_Material3_TextInputEditText_OutlinedBox_Dense = 2131952332;
-			
-			// aapt resource value: 0x7F1302CD
-			public const int ThemeOverlay_Material3_Toolbar_Surface = 2131952333;
-			
-			// aapt resource value: 0x7F1302CE
-			public const int ThemeOverlay_MaterialAlertDialog_Material3_Title_Icon = 2131952334;
-			
-			// aapt resource value: 0x7F1302CF
-			public const int ThemeOverlay_MaterialComponents = 2131952335;
-			
-			// aapt resource value: 0x7F1302D0
-			public const int ThemeOverlay_MaterialComponents_ActionBar = 2131952336;
-			
-			// aapt resource value: 0x7F1302D1
-			public const int ThemeOverlay_MaterialComponents_ActionBar_Primary = 2131952337;
-			
-			// aapt resource value: 0x7F1302D2
-			public const int ThemeOverlay_MaterialComponents_ActionBar_Surface = 2131952338;
-			
-			// aapt resource value: 0x7F1302D3
-			public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView = 2131952339;
-			
-			// aapt resource value: 0x7F1302D4
-			public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox = 2131952340;
-			
-			// aapt resource value: 0x7F1302D5
-			public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = 2131952341;
-			
-			// aapt resource value: 0x7F1302D6
-			public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox = 2131952342;
-			
-			// aapt resource value: 0x7F1302D7
-			public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = 2131952343;
-			
-			// aapt resource value: 0x7F1302D8
-			public const int ThemeOverlay_MaterialComponents_BottomAppBar_Primary = 2131952344;
-			
-			// aapt resource value: 0x7F1302D9
-			public const int ThemeOverlay_MaterialComponents_BottomAppBar_Surface = 2131952345;
-			
-			// aapt resource value: 0x7F1302DA
-			public const int ThemeOverlay_MaterialComponents_BottomSheetDialog = 2131952346;
-			
-			// aapt resource value: 0x7F1302DB
-			public const int ThemeOverlay_MaterialComponents_Dark = 2131952347;
-			
-			// aapt resource value: 0x7F1302DC
-			public const int ThemeOverlay_MaterialComponents_Dark_ActionBar = 2131952348;
-			
-			// aapt resource value: 0x7F1302DD
-			public const int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog = 2131952349;
-			
-			// aapt resource value: 0x7F1302DE
-			public const int ThemeOverlay_MaterialComponents_Dialog = 2131952350;
-			
-			// aapt resource value: 0x7F1302DF
-			public const int ThemeOverlay_MaterialComponents_Dialog_Alert = 2131952351;
-			
-			// aapt resource value: 0x7F1302E0
-			public const int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = 2131952352;
-			
-			// aapt resource value: 0x7F1302E1
-			public const int ThemeOverlay_MaterialComponents_Light = 2131952353;
-			
-			// aapt resource value: 0x7F1302E2
-			public const int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = 2131952354;
-			
-			// aapt resource value: 0x7F1302E3
-			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog = 2131952355;
-			
-			// aapt resource value: 0x7F1302E4
-			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered = 2131952356;
-			
-			// aapt resource value: 0x7F1302E5
-			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date = 2131952357;
-			
-			// aapt resource value: 0x7F1302E6
-			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar = 2131952358;
-			
-			// aapt resource value: 0x7F1302E7
-			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text = 2131952359;
-			
-			// aapt resource value: 0x7F1302E8
-			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day = 2131952360;
-			
-			// aapt resource value: 0x7F1302E9
-			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner = 2131952361;
-			
-			// aapt resource value: 0x7F1302EA
-			public const int ThemeOverlay_MaterialComponents_MaterialCalendar = 2131952362;
-			
-			// aapt resource value: 0x7F1302EB
-			public const int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen = 2131952363;
-			
-			// aapt resource value: 0x7F1302EC
-			public const int ThemeOverlay_MaterialComponents_TextInputEditText = 2131952364;
-			
-			// aapt resource value: 0x7F1302ED
-			public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = 2131952365;
-			
-			// aapt resource value: 0x7F1302EE
-			public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131952366;
-			
-			// aapt resource value: 0x7F1302EF
-			public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = 2131952367;
-			
-			// aapt resource value: 0x7F1302F0
-			public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131952368;
-			
-			// aapt resource value: 0x7F1302F1
-			public const int ThemeOverlay_MaterialComponents_TimePicker = 2131952369;
-			
-			// aapt resource value: 0x7F1302F2
-			public const int ThemeOverlay_MaterialComponents_TimePicker_Display = 2131952370;
-			
-			// aapt resource value: 0x7F1302F3
-			public const int ThemeOverlay_MaterialComponents_TimePicker_Display_TextInputEditText = 2131952371;
-			
-			// aapt resource value: 0x7F1302F4
-			public const int ThemeOverlay_MaterialComponents_Toolbar_Popup_Primary = 2131952372;
-			
-			// aapt resource value: 0x7F1302F5
-			public const int ThemeOverlay_MaterialComponents_Toolbar_Primary = 2131952373;
-			
-			// aapt resource value: 0x7F1302F6
-			public const int ThemeOverlay_MaterialComponents_Toolbar_Surface = 2131952374;
-			
-			// aapt resource value: 0x7F13021E
-			public const int Theme_AppCompat = 2131952158;
-			
-			// aapt resource value: 0x7F13021F
-			public const int Theme_AppCompat_CompactMenu = 2131952159;
-			
-			// aapt resource value: 0x7F130220
-			public const int Theme_AppCompat_DayNight = 2131952160;
-			
-			// aapt resource value: 0x7F130221
-			public const int Theme_AppCompat_DayNight_DarkActionBar = 2131952161;
-			
-			// aapt resource value: 0x7F130222
-			public const int Theme_AppCompat_DayNight_Dialog = 2131952162;
-			
-			// aapt resource value: 0x7F130225
-			public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131952165;
-			
-			// aapt resource value: 0x7F130223
-			public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131952163;
-			
-			// aapt resource value: 0x7F130224
-			public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131952164;
-			
-			// aapt resource value: 0x7F130226
-			public const int Theme_AppCompat_DayNight_NoActionBar = 2131952166;
-			
-			// aapt resource value: 0x7F130227
-			public const int Theme_AppCompat_Dialog = 2131952167;
-			
-			// aapt resource value: 0x7F13022A
-			public const int Theme_AppCompat_DialogWhenLarge = 2131952170;
-			
-			// aapt resource value: 0x7F130228
-			public const int Theme_AppCompat_Dialog_Alert = 2131952168;
-			
-			// aapt resource value: 0x7F130229
-			public const int Theme_AppCompat_Dialog_MinWidth = 2131952169;
-			
-			// aapt resource value: 0x7F13022B
-			public const int Theme_AppCompat_Empty = 2131952171;
-			
-			// aapt resource value: 0x7F13022C
-			public const int Theme_AppCompat_Light = 2131952172;
-			
-			// aapt resource value: 0x7F13022D
-			public const int Theme_AppCompat_Light_DarkActionBar = 2131952173;
-			
-			// aapt resource value: 0x7F13022E
-			public const int Theme_AppCompat_Light_Dialog = 2131952174;
-			
-			// aapt resource value: 0x7F130231
-			public const int Theme_AppCompat_Light_DialogWhenLarge = 2131952177;
-			
-			// aapt resource value: 0x7F13022F
-			public const int Theme_AppCompat_Light_Dialog_Alert = 2131952175;
-			
-			// aapt resource value: 0x7F130230
-			public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131952176;
-			
-			// aapt resource value: 0x7F130232
-			public const int Theme_AppCompat_Light_NoActionBar = 2131952178;
-			
-			// aapt resource value: 0x7F130233
-			public const int Theme_AppCompat_NoActionBar = 2131952179;
-			
-			// aapt resource value: 0x7F130234
-			public const int Theme_BiometricPromptDialog = 2131952180;
-			
-			// aapt resource value: 0x7F130235
-			public const int Theme_Design = 2131952181;
-			
-			// aapt resource value: 0x7F130236
-			public const int Theme_Design_BottomSheetDialog = 2131952182;
-			
-			// aapt resource value: 0x7F130237
-			public const int Theme_Design_Light = 2131952183;
-			
-			// aapt resource value: 0x7F130238
-			public const int Theme_Design_Light_BottomSheetDialog = 2131952184;
-			
-			// aapt resource value: 0x7F130239
-			public const int Theme_Design_Light_NoActionBar = 2131952185;
-			
-			// aapt resource value: 0x7F13023A
-			public const int Theme_Design_NoActionBar = 2131952186;
-			
-			// aapt resource value: 0x7F13023B
-			public const int Theme_Material3_Dark = 2131952187;
-			
-			// aapt resource value: 0x7F13023C
-			public const int Theme_Material3_Dark_BottomSheetDialog = 2131952188;
-			
-			// aapt resource value: 0x7F13023D
-			public const int Theme_Material3_Dark_Dialog = 2131952189;
-			
-			// aapt resource value: 0x7F130240
-			public const int Theme_Material3_Dark_DialogWhenLarge = 2131952192;
-			
-			// aapt resource value: 0x7F13023E
-			public const int Theme_Material3_Dark_Dialog_Alert = 2131952190;
-			
-			// aapt resource value: 0x7F13023F
-			public const int Theme_Material3_Dark_Dialog_MinWidth = 2131952191;
-			
-			// aapt resource value: 0x7F130241
-			public const int Theme_Material3_Dark_NoActionBar = 2131952193;
-			
-			// aapt resource value: 0x7F130242
-			public const int Theme_Material3_Dark_SideSheetDialog = 2131952194;
-			
-			// aapt resource value: 0x7F130243
-			public const int Theme_Material3_DayNight = 2131952195;
-			
-			// aapt resource value: 0x7F130244
-			public const int Theme_Material3_DayNight_BottomSheetDialog = 2131952196;
-			
-			// aapt resource value: 0x7F130245
-			public const int Theme_Material3_DayNight_Dialog = 2131952197;
-			
-			// aapt resource value: 0x7F130248
-			public const int Theme_Material3_DayNight_DialogWhenLarge = 2131952200;
-			
-			// aapt resource value: 0x7F130246
-			public const int Theme_Material3_DayNight_Dialog_Alert = 2131952198;
-			
-			// aapt resource value: 0x7F130247
-			public const int Theme_Material3_DayNight_Dialog_MinWidth = 2131952199;
-			
-			// aapt resource value: 0x7F130249
-			public const int Theme_Material3_DayNight_NoActionBar = 2131952201;
-			
-			// aapt resource value: 0x7F13024A
-			public const int Theme_Material3_DayNight_SideSheetDialog = 2131952202;
-			
-			// aapt resource value: 0x7F13024B
-			public const int Theme_Material3_DynamicColors_Dark = 2131952203;
-			
-			// aapt resource value: 0x7F13024C
-			public const int Theme_Material3_DynamicColors_DayNight = 2131952204;
-			
-			// aapt resource value: 0x7F13024D
-			public const int Theme_Material3_DynamicColors_Light = 2131952205;
-			
-			// aapt resource value: 0x7F13024E
-			public const int Theme_Material3_Light = 2131952206;
-			
-			// aapt resource value: 0x7F13024F
-			public const int Theme_Material3_Light_BottomSheetDialog = 2131952207;
-			
-			// aapt resource value: 0x7F130250
-			public const int Theme_Material3_Light_Dialog = 2131952208;
-			
-			// aapt resource value: 0x7F130253
-			public const int Theme_Material3_Light_DialogWhenLarge = 2131952211;
-			
-			// aapt resource value: 0x7F130251
-			public const int Theme_Material3_Light_Dialog_Alert = 2131952209;
-			
-			// aapt resource value: 0x7F130252
-			public const int Theme_Material3_Light_Dialog_MinWidth = 2131952210;
-			
-			// aapt resource value: 0x7F130254
-			public const int Theme_Material3_Light_NoActionBar = 2131952212;
-			
-			// aapt resource value: 0x7F130255
-			public const int Theme_Material3_Light_SideSheetDialog = 2131952213;
-			
-			// aapt resource value: 0x7F130256
-			public const int Theme_MaterialComponents = 2131952214;
-			
-			// aapt resource value: 0x7F130257
-			public const int Theme_MaterialComponents_BottomSheetDialog = 2131952215;
-			
-			// aapt resource value: 0x7F130258
-			public const int Theme_MaterialComponents_Bridge = 2131952216;
-			
-			// aapt resource value: 0x7F130259
-			public const int Theme_MaterialComponents_CompactMenu = 2131952217;
-			
-			// aapt resource value: 0x7F13025A
-			public const int Theme_MaterialComponents_DayNight = 2131952218;
-			
-			// aapt resource value: 0x7F13025B
-			public const int Theme_MaterialComponents_DayNight_BottomSheetDialog = 2131952219;
-			
-			// aapt resource value: 0x7F13025C
-			public const int Theme_MaterialComponents_DayNight_Bridge = 2131952220;
-			
-			// aapt resource value: 0x7F13025D
-			public const int Theme_MaterialComponents_DayNight_DarkActionBar = 2131952221;
-			
-			// aapt resource value: 0x7F13025E
-			public const int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge = 2131952222;
-			
-			// aapt resource value: 0x7F13025F
-			public const int Theme_MaterialComponents_DayNight_Dialog = 2131952223;
-			
-			// aapt resource value: 0x7F130267
-			public const int Theme_MaterialComponents_DayNight_DialogWhenLarge = 2131952231;
-			
-			// aapt resource value: 0x7F130260
-			public const int Theme_MaterialComponents_DayNight_Dialog_Alert = 2131952224;
-			
-			// aapt resource value: 0x7F130261
-			public const int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge = 2131952225;
-			
-			// aapt resource value: 0x7F130262
-			public const int Theme_MaterialComponents_DayNight_Dialog_Bridge = 2131952226;
-			
-			// aapt resource value: 0x7F130263
-			public const int Theme_MaterialComponents_DayNight_Dialog_FixedSize = 2131952227;
-			
-			// aapt resource value: 0x7F130264
-			public const int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge = 2131952228;
-			
-			// aapt resource value: 0x7F130265
-			public const int Theme_MaterialComponents_DayNight_Dialog_MinWidth = 2131952229;
-			
-			// aapt resource value: 0x7F130266
-			public const int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge = 2131952230;
-			
-			// aapt resource value: 0x7F130268
-			public const int Theme_MaterialComponents_DayNight_NoActionBar = 2131952232;
-			
-			// aapt resource value: 0x7F130269
-			public const int Theme_MaterialComponents_DayNight_NoActionBar_Bridge = 2131952233;
-			
-			// aapt resource value: 0x7F13026A
-			public const int Theme_MaterialComponents_Dialog = 2131952234;
-			
-			// aapt resource value: 0x7F130272
-			public const int Theme_MaterialComponents_DialogWhenLarge = 2131952242;
-			
-			// aapt resource value: 0x7F13026B
-			public const int Theme_MaterialComponents_Dialog_Alert = 2131952235;
-			
-			// aapt resource value: 0x7F13026C
-			public const int Theme_MaterialComponents_Dialog_Alert_Bridge = 2131952236;
-			
-			// aapt resource value: 0x7F13026D
-			public const int Theme_MaterialComponents_Dialog_Bridge = 2131952237;
-			
-			// aapt resource value: 0x7F13026E
-			public const int Theme_MaterialComponents_Dialog_FixedSize = 2131952238;
-			
-			// aapt resource value: 0x7F13026F
-			public const int Theme_MaterialComponents_Dialog_FixedSize_Bridge = 2131952239;
-			
-			// aapt resource value: 0x7F130270
-			public const int Theme_MaterialComponents_Dialog_MinWidth = 2131952240;
-			
-			// aapt resource value: 0x7F130271
-			public const int Theme_MaterialComponents_Dialog_MinWidth_Bridge = 2131952241;
-			
-			// aapt resource value: 0x7F130273
-			public const int Theme_MaterialComponents_Light = 2131952243;
-			
-			// aapt resource value: 0x7F130274
-			public const int Theme_MaterialComponents_Light_BottomSheetDialog = 2131952244;
-			
-			// aapt resource value: 0x7F130275
-			public const int Theme_MaterialComponents_Light_Bridge = 2131952245;
-			
-			// aapt resource value: 0x7F130276
-			public const int Theme_MaterialComponents_Light_DarkActionBar = 2131952246;
-			
-			// aapt resource value: 0x7F130277
-			public const int Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131952247;
-			
-			// aapt resource value: 0x7F130278
-			public const int Theme_MaterialComponents_Light_Dialog = 2131952248;
-			
-			// aapt resource value: 0x7F130280
-			public const int Theme_MaterialComponents_Light_DialogWhenLarge = 2131952256;
-			
-			// aapt resource value: 0x7F130279
-			public const int Theme_MaterialComponents_Light_Dialog_Alert = 2131952249;
-			
-			// aapt resource value: 0x7F13027A
-			public const int Theme_MaterialComponents_Light_Dialog_Alert_Bridge = 2131952250;
-			
-			// aapt resource value: 0x7F13027B
-			public const int Theme_MaterialComponents_Light_Dialog_Bridge = 2131952251;
-			
-			// aapt resource value: 0x7F13027C
-			public const int Theme_MaterialComponents_Light_Dialog_FixedSize = 2131952252;
-			
-			// aapt resource value: 0x7F13027D
-			public const int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge = 2131952253;
-			
-			// aapt resource value: 0x7F13027E
-			public const int Theme_MaterialComponents_Light_Dialog_MinWidth = 2131952254;
-			
-			// aapt resource value: 0x7F13027F
-			public const int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge = 2131952255;
-			
-			// aapt resource value: 0x7F130281
-			public const int Theme_MaterialComponents_Light_NoActionBar = 2131952257;
-			
-			// aapt resource value: 0x7F130282
-			public const int Theme_MaterialComponents_Light_NoActionBar_Bridge = 2131952258;
-			
-			// aapt resource value: 0x7F130283
-			public const int Theme_MaterialComponents_NoActionBar = 2131952259;
+			public const int TextView = 2131952156;
 			
 			// aapt resource value: 0x7F130284
-			public const int Theme_MaterialComponents_NoActionBar_Bridge = 2131952260;
+			public const int ThemeOverlay_AppCompat = 2131952260;
 			
-			// aapt resource value: 0x7F13048D
-			public const int time_picker_style = 2131952781;
+			// aapt resource value: 0x7F130285
+			public const int ThemeOverlay_AppCompat_ActionBar = 2131952261;
 			
-			// aapt resource value: 0x7F13048E
-			public const int translucent = 2131952782;
+			// aapt resource value: 0x7F130286
+			public const int ThemeOverlay_AppCompat_Dark = 2131952262;
 			
-			// aapt resource value: 0x7F13048F
-			public const int user_module_edittext = 2131952783;
+			// aapt resource value: 0x7F130287
+			public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131952263;
 			
-			// aapt resource value: 0x7F130490
-			public const int video_dialog = 2131952784;
+			// aapt resource value: 0x7F130288
+			public const int ThemeOverlay_AppCompat_DayNight = 2131952264;
+			
+			// aapt resource value: 0x7F130289
+			public const int ThemeOverlay_AppCompat_DayNight_ActionBar = 2131952265;
+			
+			// aapt resource value: 0x7F13028A
+			public const int ThemeOverlay_AppCompat_Dialog = 2131952266;
+			
+			// aapt resource value: 0x7F13028B
+			public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131952267;
+			
+			// aapt resource value: 0x7F13028C
+			public const int ThemeOverlay_AppCompat_Light = 2131952268;
+			
+			// aapt resource value: 0x7F13028D
+			public const int ThemeOverlay_Design_TextInputEditText = 2131952269;
+			
+			// aapt resource value: 0x7F13028E
+			public const int ThemeOverlay_Material3 = 2131952270;
+			
+			// aapt resource value: 0x7F13028F
+			public const int ThemeOverlay_Material3_ActionBar = 2131952271;
+			
+			// aapt resource value: 0x7F130290
+			public const int ThemeOverlay_Material3_AutoCompleteTextView = 2131952272;
+			
+			// aapt resource value: 0x7F130291
+			public const int ThemeOverlay_Material3_AutoCompleteTextView_FilledBox = 2131952273;
+			
+			// aapt resource value: 0x7F130292
+			public const int ThemeOverlay_Material3_AutoCompleteTextView_FilledBox_Dense = 2131952274;
+			
+			// aapt resource value: 0x7F130293
+			public const int ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox = 2131952275;
+			
+			// aapt resource value: 0x7F130294
+			public const int ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox_Dense = 2131952276;
+			
+			// aapt resource value: 0x7F130295
+			public const int ThemeOverlay_Material3_BottomAppBar = 2131952277;
+			
+			// aapt resource value: 0x7F130296
+			public const int ThemeOverlay_Material3_BottomAppBar_Legacy = 2131952278;
+			
+			// aapt resource value: 0x7F130297
+			public const int ThemeOverlay_Material3_BottomNavigationView = 2131952279;
+			
+			// aapt resource value: 0x7F130298
+			public const int ThemeOverlay_Material3_BottomSheetDialog = 2131952280;
+			
+			// aapt resource value: 0x7F130299
+			public const int ThemeOverlay_Material3_Button = 2131952281;
+			
+			// aapt resource value: 0x7F13029A
+			public const int ThemeOverlay_Material3_Button_ElevatedButton = 2131952282;
+			
+			// aapt resource value: 0x7F13029B
+			public const int ThemeOverlay_Material3_Button_IconButton = 2131952283;
+			
+			// aapt resource value: 0x7F13029C
+			public const int ThemeOverlay_Material3_Button_IconButton_Filled = 2131952284;
+			
+			// aapt resource value: 0x7F13029D
+			public const int ThemeOverlay_Material3_Button_IconButton_Filled_Tonal = 2131952285;
+			
+			// aapt resource value: 0x7F13029E
+			public const int ThemeOverlay_Material3_Button_TextButton = 2131952286;
+			
+			// aapt resource value: 0x7F13029F
+			public const int ThemeOverlay_Material3_Button_TextButton_Snackbar = 2131952287;
+			
+			// aapt resource value: 0x7F1302A0
+			public const int ThemeOverlay_Material3_Button_TonalButton = 2131952288;
+			
+			// aapt resource value: 0x7F1302A1
+			public const int ThemeOverlay_Material3_Chip = 2131952289;
+			
+			// aapt resource value: 0x7F1302A2
+			public const int ThemeOverlay_Material3_Chip_Assist = 2131952290;
+			
+			// aapt resource value: 0x7F1302A3
+			public const int ThemeOverlay_Material3_Dark = 2131952291;
+			
+			// aapt resource value: 0x7F1302A4
+			public const int ThemeOverlay_Material3_Dark_ActionBar = 2131952292;
+			
+			// aapt resource value: 0x7F1302A5
+			public const int ThemeOverlay_Material3_DayNight_BottomSheetDialog = 2131952293;
+			
+			// aapt resource value: 0x7F1302A6
+			public const int ThemeOverlay_Material3_DayNight_SideSheetDialog = 2131952294;
+			
+			// aapt resource value: 0x7F1302A7
+			public const int ThemeOverlay_Material3_Dialog = 2131952295;
+			
+			// aapt resource value: 0x7F1302A8
+			public const int ThemeOverlay_Material3_Dialog_Alert = 2131952296;
+			
+			// aapt resource value: 0x7F1302A9
+			public const int ThemeOverlay_Material3_Dialog_Alert_Framework = 2131952297;
+			
+			// aapt resource value: 0x7F1302AA
+			public const int ThemeOverlay_Material3_DynamicColors_Dark = 2131952298;
+			
+			// aapt resource value: 0x7F1302AB
+			public const int ThemeOverlay_Material3_DynamicColors_DayNight = 2131952299;
+			
+			// aapt resource value: 0x7F1302AC
+			public const int ThemeOverlay_Material3_DynamicColors_Light = 2131952300;
+			
+			// aapt resource value: 0x7F1302AD
+			public const int ThemeOverlay_Material3_ExtendedFloatingActionButton_Primary = 2131952301;
+			
+			// aapt resource value: 0x7F1302AE
+			public const int ThemeOverlay_Material3_ExtendedFloatingActionButton_Secondary = 2131952302;
+			
+			// aapt resource value: 0x7F1302AF
+			public const int ThemeOverlay_Material3_ExtendedFloatingActionButton_Surface = 2131952303;
+			
+			// aapt resource value: 0x7F1302B0
+			public const int ThemeOverlay_Material3_ExtendedFloatingActionButton_Tertiary = 2131952304;
+			
+			// aapt resource value: 0x7F1302B1
+			public const int ThemeOverlay_Material3_FloatingActionButton_Primary = 2131952305;
+			
+			// aapt resource value: 0x7F1302B2
+			public const int ThemeOverlay_Material3_FloatingActionButton_Secondary = 2131952306;
+			
+			// aapt resource value: 0x7F1302B3
+			public const int ThemeOverlay_Material3_FloatingActionButton_Surface = 2131952307;
+			
+			// aapt resource value: 0x7F1302B4
+			public const int ThemeOverlay_Material3_FloatingActionButton_Tertiary = 2131952308;
+			
+			// aapt resource value: 0x7F1302B5
+			public const int ThemeOverlay_Material3_HarmonizedColors = 2131952309;
+			
+			// aapt resource value: 0x7F1302B6
+			public const int ThemeOverlay_Material3_HarmonizedColors_Empty = 2131952310;
+			
+			// aapt resource value: 0x7F1302B7
+			public const int ThemeOverlay_Material3_Light = 2131952311;
+			
+			// aapt resource value: 0x7F1302B8
+			public const int ThemeOverlay_Material3_Light_Dialog_Alert_Framework = 2131952312;
+			
+			// aapt resource value: 0x7F1302B9
+			public const int ThemeOverlay_Material3_MaterialAlertDialog = 2131952313;
+			
+			// aapt resource value: 0x7F1302BA
+			public const int ThemeOverlay_Material3_MaterialAlertDialog_Centered = 2131952314;
+			
+			// aapt resource value: 0x7F1302BB
+			public const int ThemeOverlay_Material3_MaterialCalendar = 2131952315;
+			
+			// aapt resource value: 0x7F1302BC
+			public const int ThemeOverlay_Material3_MaterialCalendar_Fullscreen = 2131952316;
+			
+			// aapt resource value: 0x7F1302BD
+			public const int ThemeOverlay_Material3_MaterialCalendar_HeaderCancelButton = 2131952317;
+			
+			// aapt resource value: 0x7F1302BE
+			public const int ThemeOverlay_Material3_MaterialTimePicker = 2131952318;
+			
+			// aapt resource value: 0x7F1302BF
+			public const int ThemeOverlay_Material3_MaterialTimePicker_Display_TextInputEditText = 2131952319;
+			
+			// aapt resource value: 0x7F1302C0
+			public const int ThemeOverlay_Material3_NavigationRailView = 2131952320;
+			
+			// aapt resource value: 0x7F1302C1
+			public const int ThemeOverlay_Material3_NavigationView = 2131952321;
+			
+			// aapt resource value: 0x7F1302C2
+			public const int ThemeOverlay_Material3_PersonalizedColors = 2131952322;
+			
+			// aapt resource value: 0x7F1302C3
+			public const int ThemeOverlay_Material3_Search = 2131952323;
+			
+			// aapt resource value: 0x7F1302C4
+			public const int ThemeOverlay_Material3_SideSheetDialog = 2131952324;
+			
+			// aapt resource value: 0x7F1302C5
+			public const int ThemeOverlay_Material3_Snackbar = 2131952325;
+			
+			// aapt resource value: 0x7F1302C6
+			public const int ThemeOverlay_Material3_TabLayout = 2131952326;
+			
+			// aapt resource value: 0x7F1302C7
+			public const int ThemeOverlay_Material3_TextInputEditText = 2131952327;
+			
+			// aapt resource value: 0x7F1302C8
+			public const int ThemeOverlay_Material3_TextInputEditText_FilledBox = 2131952328;
+			
+			// aapt resource value: 0x7F1302C9
+			public const int ThemeOverlay_Material3_TextInputEditText_FilledBox_Dense = 2131952329;
+			
+			// aapt resource value: 0x7F1302CA
+			public const int ThemeOverlay_Material3_TextInputEditText_OutlinedBox = 2131952330;
+			
+			// aapt resource value: 0x7F1302CB
+			public const int ThemeOverlay_Material3_TextInputEditText_OutlinedBox_Dense = 2131952331;
+			
+			// aapt resource value: 0x7F1302CC
+			public const int ThemeOverlay_Material3_Toolbar_Surface = 2131952332;
+			
+			// aapt resource value: 0x7F1302CD
+			public const int ThemeOverlay_MaterialAlertDialog_Material3_Title_Icon = 2131952333;
+			
+			// aapt resource value: 0x7F1302CE
+			public const int ThemeOverlay_MaterialComponents = 2131952334;
+			
+			// aapt resource value: 0x7F1302CF
+			public const int ThemeOverlay_MaterialComponents_ActionBar = 2131952335;
+			
+			// aapt resource value: 0x7F1302D0
+			public const int ThemeOverlay_MaterialComponents_ActionBar_Primary = 2131952336;
+			
+			// aapt resource value: 0x7F1302D1
+			public const int ThemeOverlay_MaterialComponents_ActionBar_Surface = 2131952337;
+			
+			// aapt resource value: 0x7F1302D2
+			public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView = 2131952338;
+			
+			// aapt resource value: 0x7F1302D3
+			public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox = 2131952339;
+			
+			// aapt resource value: 0x7F1302D4
+			public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = 2131952340;
+			
+			// aapt resource value: 0x7F1302D5
+			public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox = 2131952341;
+			
+			// aapt resource value: 0x7F1302D6
+			public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = 2131952342;
+			
+			// aapt resource value: 0x7F1302D7
+			public const int ThemeOverlay_MaterialComponents_BottomAppBar_Primary = 2131952343;
+			
+			// aapt resource value: 0x7F1302D8
+			public const int ThemeOverlay_MaterialComponents_BottomAppBar_Surface = 2131952344;
+			
+			// aapt resource value: 0x7F1302D9
+			public const int ThemeOverlay_MaterialComponents_BottomSheetDialog = 2131952345;
+			
+			// aapt resource value: 0x7F1302DA
+			public const int ThemeOverlay_MaterialComponents_Dark = 2131952346;
+			
+			// aapt resource value: 0x7F1302DB
+			public const int ThemeOverlay_MaterialComponents_Dark_ActionBar = 2131952347;
+			
+			// aapt resource value: 0x7F1302DC
+			public const int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog = 2131952348;
+			
+			// aapt resource value: 0x7F1302DD
+			public const int ThemeOverlay_MaterialComponents_Dialog = 2131952349;
+			
+			// aapt resource value: 0x7F1302DE
+			public const int ThemeOverlay_MaterialComponents_Dialog_Alert = 2131952350;
+			
+			// aapt resource value: 0x7F1302DF
+			public const int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = 2131952351;
+			
+			// aapt resource value: 0x7F1302E0
+			public const int ThemeOverlay_MaterialComponents_Light = 2131952352;
+			
+			// aapt resource value: 0x7F1302E1
+			public const int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = 2131952353;
+			
+			// aapt resource value: 0x7F1302E2
+			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog = 2131952354;
+			
+			// aapt resource value: 0x7F1302E3
+			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered = 2131952355;
+			
+			// aapt resource value: 0x7F1302E4
+			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date = 2131952356;
+			
+			// aapt resource value: 0x7F1302E5
+			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar = 2131952357;
+			
+			// aapt resource value: 0x7F1302E6
+			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text = 2131952358;
+			
+			// aapt resource value: 0x7F1302E7
+			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day = 2131952359;
+			
+			// aapt resource value: 0x7F1302E8
+			public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner = 2131952360;
+			
+			// aapt resource value: 0x7F1302E9
+			public const int ThemeOverlay_MaterialComponents_MaterialCalendar = 2131952361;
+			
+			// aapt resource value: 0x7F1302EA
+			public const int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen = 2131952362;
+			
+			// aapt resource value: 0x7F1302EB
+			public const int ThemeOverlay_MaterialComponents_TextInputEditText = 2131952363;
+			
+			// aapt resource value: 0x7F1302EC
+			public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = 2131952364;
+			
+			// aapt resource value: 0x7F1302ED
+			public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131952365;
+			
+			// aapt resource value: 0x7F1302EE
+			public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = 2131952366;
+			
+			// aapt resource value: 0x7F1302EF
+			public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131952367;
+			
+			// aapt resource value: 0x7F1302F0
+			public const int ThemeOverlay_MaterialComponents_TimePicker = 2131952368;
+			
+			// aapt resource value: 0x7F1302F1
+			public const int ThemeOverlay_MaterialComponents_TimePicker_Display = 2131952369;
+			
+			// aapt resource value: 0x7F1302F2
+			public const int ThemeOverlay_MaterialComponents_TimePicker_Display_TextInputEditText = 2131952370;
+			
+			// aapt resource value: 0x7F1302F3
+			public const int ThemeOverlay_MaterialComponents_Toolbar_Popup_Primary = 2131952371;
+			
+			// aapt resource value: 0x7F1302F4
+			public const int ThemeOverlay_MaterialComponents_Toolbar_Primary = 2131952372;
+			
+			// aapt resource value: 0x7F1302F5
+			public const int ThemeOverlay_MaterialComponents_Toolbar_Surface = 2131952373;
+			
+			// aapt resource value: 0x7F13021D
+			public const int Theme_AppCompat = 2131952157;
+			
+			// aapt resource value: 0x7F13021E
+			public const int Theme_AppCompat_CompactMenu = 2131952158;
+			
+			// aapt resource value: 0x7F13021F
+			public const int Theme_AppCompat_DayNight = 2131952159;
+			
+			// aapt resource value: 0x7F130220
+			public const int Theme_AppCompat_DayNight_DarkActionBar = 2131952160;
+			
+			// aapt resource value: 0x7F130221
+			public const int Theme_AppCompat_DayNight_Dialog = 2131952161;
+			
+			// aapt resource value: 0x7F130224
+			public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131952164;
+			
+			// aapt resource value: 0x7F130222
+			public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131952162;
+			
+			// aapt resource value: 0x7F130223
+			public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131952163;
+			
+			// aapt resource value: 0x7F130225
+			public const int Theme_AppCompat_DayNight_NoActionBar = 2131952165;
+			
+			// aapt resource value: 0x7F130226
+			public const int Theme_AppCompat_Dialog = 2131952166;
+			
+			// aapt resource value: 0x7F130229
+			public const int Theme_AppCompat_DialogWhenLarge = 2131952169;
+			
+			// aapt resource value: 0x7F130227
+			public const int Theme_AppCompat_Dialog_Alert = 2131952167;
+			
+			// aapt resource value: 0x7F130228
+			public const int Theme_AppCompat_Dialog_MinWidth = 2131952168;
+			
+			// aapt resource value: 0x7F13022A
+			public const int Theme_AppCompat_Empty = 2131952170;
+			
+			// aapt resource value: 0x7F13022B
+			public const int Theme_AppCompat_Light = 2131952171;
+			
+			// aapt resource value: 0x7F13022C
+			public const int Theme_AppCompat_Light_DarkActionBar = 2131952172;
+			
+			// aapt resource value: 0x7F13022D
+			public const int Theme_AppCompat_Light_Dialog = 2131952173;
+			
+			// aapt resource value: 0x7F130230
+			public const int Theme_AppCompat_Light_DialogWhenLarge = 2131952176;
+			
+			// aapt resource value: 0x7F13022E
+			public const int Theme_AppCompat_Light_Dialog_Alert = 2131952174;
+			
+			// aapt resource value: 0x7F13022F
+			public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131952175;
+			
+			// aapt resource value: 0x7F130231
+			public const int Theme_AppCompat_Light_NoActionBar = 2131952177;
+			
+			// aapt resource value: 0x7F130232
+			public const int Theme_AppCompat_NoActionBar = 2131952178;
+			
+			// aapt resource value: 0x7F130233
+			public const int Theme_BiometricPromptDialog = 2131952179;
+			
+			// aapt resource value: 0x7F130234
+			public const int Theme_Design = 2131952180;
+			
+			// aapt resource value: 0x7F130235
+			public const int Theme_Design_BottomSheetDialog = 2131952181;
+			
+			// aapt resource value: 0x7F130236
+			public const int Theme_Design_Light = 2131952182;
+			
+			// aapt resource value: 0x7F130237
+			public const int Theme_Design_Light_BottomSheetDialog = 2131952183;
+			
+			// aapt resource value: 0x7F130238
+			public const int Theme_Design_Light_NoActionBar = 2131952184;
+			
+			// aapt resource value: 0x7F130239
+			public const int Theme_Design_NoActionBar = 2131952185;
+			
+			// aapt resource value: 0x7F13023A
+			public const int Theme_Material3_Dark = 2131952186;
+			
+			// aapt resource value: 0x7F13023B
+			public const int Theme_Material3_Dark_BottomSheetDialog = 2131952187;
+			
+			// aapt resource value: 0x7F13023C
+			public const int Theme_Material3_Dark_Dialog = 2131952188;
+			
+			// aapt resource value: 0x7F13023F
+			public const int Theme_Material3_Dark_DialogWhenLarge = 2131952191;
+			
+			// aapt resource value: 0x7F13023D
+			public const int Theme_Material3_Dark_Dialog_Alert = 2131952189;
+			
+			// aapt resource value: 0x7F13023E
+			public const int Theme_Material3_Dark_Dialog_MinWidth = 2131952190;
+			
+			// aapt resource value: 0x7F130240
+			public const int Theme_Material3_Dark_NoActionBar = 2131952192;
+			
+			// aapt resource value: 0x7F130241
+			public const int Theme_Material3_Dark_SideSheetDialog = 2131952193;
+			
+			// aapt resource value: 0x7F130242
+			public const int Theme_Material3_DayNight = 2131952194;
+			
+			// aapt resource value: 0x7F130243
+			public const int Theme_Material3_DayNight_BottomSheetDialog = 2131952195;
+			
+			// aapt resource value: 0x7F130244
+			public const int Theme_Material3_DayNight_Dialog = 2131952196;
+			
+			// aapt resource value: 0x7F130247
+			public const int Theme_Material3_DayNight_DialogWhenLarge = 2131952199;
+			
+			// aapt resource value: 0x7F130245
+			public const int Theme_Material3_DayNight_Dialog_Alert = 2131952197;
+			
+			// aapt resource value: 0x7F130246
+			public const int Theme_Material3_DayNight_Dialog_MinWidth = 2131952198;
+			
+			// aapt resource value: 0x7F130248
+			public const int Theme_Material3_DayNight_NoActionBar = 2131952200;
+			
+			// aapt resource value: 0x7F130249
+			public const int Theme_Material3_DayNight_SideSheetDialog = 2131952201;
+			
+			// aapt resource value: 0x7F13024A
+			public const int Theme_Material3_DynamicColors_Dark = 2131952202;
+			
+			// aapt resource value: 0x7F13024B
+			public const int Theme_Material3_DynamicColors_DayNight = 2131952203;
+			
+			// aapt resource value: 0x7F13024C
+			public const int Theme_Material3_DynamicColors_Light = 2131952204;
+			
+			// aapt resource value: 0x7F13024D
+			public const int Theme_Material3_Light = 2131952205;
+			
+			// aapt resource value: 0x7F13024E
+			public const int Theme_Material3_Light_BottomSheetDialog = 2131952206;
+			
+			// aapt resource value: 0x7F13024F
+			public const int Theme_Material3_Light_Dialog = 2131952207;
+			
+			// aapt resource value: 0x7F130252
+			public const int Theme_Material3_Light_DialogWhenLarge = 2131952210;
+			
+			// aapt resource value: 0x7F130250
+			public const int Theme_Material3_Light_Dialog_Alert = 2131952208;
+			
+			// aapt resource value: 0x7F130251
+			public const int Theme_Material3_Light_Dialog_MinWidth = 2131952209;
+			
+			// aapt resource value: 0x7F130253
+			public const int Theme_Material3_Light_NoActionBar = 2131952211;
+			
+			// aapt resource value: 0x7F130254
+			public const int Theme_Material3_Light_SideSheetDialog = 2131952212;
+			
+			// aapt resource value: 0x7F130255
+			public const int Theme_MaterialComponents = 2131952213;
+			
+			// aapt resource value: 0x7F130256
+			public const int Theme_MaterialComponents_BottomSheetDialog = 2131952214;
+			
+			// aapt resource value: 0x7F130257
+			public const int Theme_MaterialComponents_Bridge = 2131952215;
+			
+			// aapt resource value: 0x7F130258
+			public const int Theme_MaterialComponents_CompactMenu = 2131952216;
+			
+			// aapt resource value: 0x7F130259
+			public const int Theme_MaterialComponents_DayNight = 2131952217;
+			
+			// aapt resource value: 0x7F13025A
+			public const int Theme_MaterialComponents_DayNight_BottomSheetDialog = 2131952218;
+			
+			// aapt resource value: 0x7F13025B
+			public const int Theme_MaterialComponents_DayNight_Bridge = 2131952219;
+			
+			// aapt resource value: 0x7F13025C
+			public const int Theme_MaterialComponents_DayNight_DarkActionBar = 2131952220;
+			
+			// aapt resource value: 0x7F13025D
+			public const int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge = 2131952221;
+			
+			// aapt resource value: 0x7F13025E
+			public const int Theme_MaterialComponents_DayNight_Dialog = 2131952222;
+			
+			// aapt resource value: 0x7F130266
+			public const int Theme_MaterialComponents_DayNight_DialogWhenLarge = 2131952230;
+			
+			// aapt resource value: 0x7F13025F
+			public const int Theme_MaterialComponents_DayNight_Dialog_Alert = 2131952223;
+			
+			// aapt resource value: 0x7F130260
+			public const int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge = 2131952224;
+			
+			// aapt resource value: 0x7F130261
+			public const int Theme_MaterialComponents_DayNight_Dialog_Bridge = 2131952225;
+			
+			// aapt resource value: 0x7F130262
+			public const int Theme_MaterialComponents_DayNight_Dialog_FixedSize = 2131952226;
+			
+			// aapt resource value: 0x7F130263
+			public const int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge = 2131952227;
+			
+			// aapt resource value: 0x7F130264
+			public const int Theme_MaterialComponents_DayNight_Dialog_MinWidth = 2131952228;
+			
+			// aapt resource value: 0x7F130265
+			public const int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge = 2131952229;
+			
+			// aapt resource value: 0x7F130267
+			public const int Theme_MaterialComponents_DayNight_NoActionBar = 2131952231;
+			
+			// aapt resource value: 0x7F130268
+			public const int Theme_MaterialComponents_DayNight_NoActionBar_Bridge = 2131952232;
+			
+			// aapt resource value: 0x7F130269
+			public const int Theme_MaterialComponents_Dialog = 2131952233;
+			
+			// aapt resource value: 0x7F130271
+			public const int Theme_MaterialComponents_DialogWhenLarge = 2131952241;
+			
+			// aapt resource value: 0x7F13026A
+			public const int Theme_MaterialComponents_Dialog_Alert = 2131952234;
+			
+			// aapt resource value: 0x7F13026B
+			public const int Theme_MaterialComponents_Dialog_Alert_Bridge = 2131952235;
+			
+			// aapt resource value: 0x7F13026C
+			public const int Theme_MaterialComponents_Dialog_Bridge = 2131952236;
+			
+			// aapt resource value: 0x7F13026D
+			public const int Theme_MaterialComponents_Dialog_FixedSize = 2131952237;
+			
+			// aapt resource value: 0x7F13026E
+			public const int Theme_MaterialComponents_Dialog_FixedSize_Bridge = 2131952238;
+			
+			// aapt resource value: 0x7F13026F
+			public const int Theme_MaterialComponents_Dialog_MinWidth = 2131952239;
+			
+			// aapt resource value: 0x7F130270
+			public const int Theme_MaterialComponents_Dialog_MinWidth_Bridge = 2131952240;
+			
+			// aapt resource value: 0x7F130272
+			public const int Theme_MaterialComponents_Light = 2131952242;
+			
+			// aapt resource value: 0x7F130273
+			public const int Theme_MaterialComponents_Light_BottomSheetDialog = 2131952243;
+			
+			// aapt resource value: 0x7F130274
+			public const int Theme_MaterialComponents_Light_Bridge = 2131952244;
+			
+			// aapt resource value: 0x7F130275
+			public const int Theme_MaterialComponents_Light_DarkActionBar = 2131952245;
+			
+			// aapt resource value: 0x7F130276
+			public const int Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131952246;
+			
+			// aapt resource value: 0x7F130277
+			public const int Theme_MaterialComponents_Light_Dialog = 2131952247;
+			
+			// aapt resource value: 0x7F13027F
+			public const int Theme_MaterialComponents_Light_DialogWhenLarge = 2131952255;
+			
+			// aapt resource value: 0x7F130278
+			public const int Theme_MaterialComponents_Light_Dialog_Alert = 2131952248;
+			
+			// aapt resource value: 0x7F130279
+			public const int Theme_MaterialComponents_Light_Dialog_Alert_Bridge = 2131952249;
+			
+			// aapt resource value: 0x7F13027A
+			public const int Theme_MaterialComponents_Light_Dialog_Bridge = 2131952250;
+			
+			// aapt resource value: 0x7F13027B
+			public const int Theme_MaterialComponents_Light_Dialog_FixedSize = 2131952251;
+			
+			// aapt resource value: 0x7F13027C
+			public const int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge = 2131952252;
+			
+			// aapt resource value: 0x7F13027D
+			public const int Theme_MaterialComponents_Light_Dialog_MinWidth = 2131952253;
+			
+			// aapt resource value: 0x7F13027E
+			public const int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge = 2131952254;
+			
+			// aapt resource value: 0x7F130280
+			public const int Theme_MaterialComponents_Light_NoActionBar = 2131952256;
+			
+			// aapt resource value: 0x7F130281
+			public const int Theme_MaterialComponents_Light_NoActionBar_Bridge = 2131952257;
+			
+			// aapt resource value: 0x7F130282
+			public const int Theme_MaterialComponents_NoActionBar = 2131952258;
+			
+			// aapt resource value: 0x7F130283
+			public const int Theme_MaterialComponents_NoActionBar_Bridge = 2131952259;
+			
+			// aapt resource value: 0x7F13048B
+			public const int translucent = 2131952779;
+			
+			// aapt resource value: 0x7F13048C
+			public const int user_module_edittext = 2131952780;
+			
+			// aapt resource value: 0x7F1302F6
+			public const int Widget_AppCompat_ActionBar = 2131952374;
 			
 			// aapt resource value: 0x7F1302F7
-			public const int Widget_AppCompat_ActionBar = 2131952375;
+			public const int Widget_AppCompat_ActionBar_Solid = 2131952375;
 			
 			// aapt resource value: 0x7F1302F8
-			public const int Widget_AppCompat_ActionBar_Solid = 2131952376;
+			public const int Widget_AppCompat_ActionBar_TabBar = 2131952376;
 			
 			// aapt resource value: 0x7F1302F9
-			public const int Widget_AppCompat_ActionBar_TabBar = 2131952377;
+			public const int Widget_AppCompat_ActionBar_TabText = 2131952377;
 			
 			// aapt resource value: 0x7F1302FA
-			public const int Widget_AppCompat_ActionBar_TabText = 2131952378;
+			public const int Widget_AppCompat_ActionBar_TabView = 2131952378;
 			
 			// aapt resource value: 0x7F1302FB
-			public const int Widget_AppCompat_ActionBar_TabView = 2131952379;
+			public const int Widget_AppCompat_ActionButton = 2131952379;
 			
 			// aapt resource value: 0x7F1302FC
-			public const int Widget_AppCompat_ActionButton = 2131952380;
+			public const int Widget_AppCompat_ActionButton_CloseMode = 2131952380;
 			
 			// aapt resource value: 0x7F1302FD
-			public const int Widget_AppCompat_ActionButton_CloseMode = 2131952381;
+			public const int Widget_AppCompat_ActionButton_Overflow = 2131952381;
 			
 			// aapt resource value: 0x7F1302FE
-			public const int Widget_AppCompat_ActionButton_Overflow = 2131952382;
+			public const int Widget_AppCompat_ActionMode = 2131952382;
 			
 			// aapt resource value: 0x7F1302FF
-			public const int Widget_AppCompat_ActionMode = 2131952383;
+			public const int Widget_AppCompat_ActivityChooserView = 2131952383;
 			
 			// aapt resource value: 0x7F130300
-			public const int Widget_AppCompat_ActivityChooserView = 2131952384;
+			public const int Widget_AppCompat_AutoCompleteTextView = 2131952384;
 			
 			// aapt resource value: 0x7F130301
-			public const int Widget_AppCompat_AutoCompleteTextView = 2131952385;
-			
-			// aapt resource value: 0x7F130302
-			public const int Widget_AppCompat_Button = 2131952386;
-			
-			// aapt resource value: 0x7F130308
-			public const int Widget_AppCompat_ButtonBar = 2131952392;
-			
-			// aapt resource value: 0x7F130309
-			public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131952393;
-			
-			// aapt resource value: 0x7F130303
-			public const int Widget_AppCompat_Button_Borderless = 2131952387;
-			
-			// aapt resource value: 0x7F130304
-			public const int Widget_AppCompat_Button_Borderless_Colored = 2131952388;
-			
-			// aapt resource value: 0x7F130305
-			public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131952389;
-			
-			// aapt resource value: 0x7F130306
-			public const int Widget_AppCompat_Button_Colored = 2131952390;
+			public const int Widget_AppCompat_Button = 2131952385;
 			
 			// aapt resource value: 0x7F130307
-			public const int Widget_AppCompat_Button_Small = 2131952391;
+			public const int Widget_AppCompat_ButtonBar = 2131952391;
+			
+			// aapt resource value: 0x7F130308
+			public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131952392;
+			
+			// aapt resource value: 0x7F130302
+			public const int Widget_AppCompat_Button_Borderless = 2131952386;
+			
+			// aapt resource value: 0x7F130303
+			public const int Widget_AppCompat_Button_Borderless_Colored = 2131952387;
+			
+			// aapt resource value: 0x7F130304
+			public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131952388;
+			
+			// aapt resource value: 0x7F130305
+			public const int Widget_AppCompat_Button_Colored = 2131952389;
+			
+			// aapt resource value: 0x7F130306
+			public const int Widget_AppCompat_Button_Small = 2131952390;
+			
+			// aapt resource value: 0x7F130309
+			public const int Widget_AppCompat_CompoundButton_CheckBox = 2131952393;
 			
 			// aapt resource value: 0x7F13030A
-			public const int Widget_AppCompat_CompoundButton_CheckBox = 2131952394;
+			public const int Widget_AppCompat_CompoundButton_RadioButton = 2131952394;
 			
 			// aapt resource value: 0x7F13030B
-			public const int Widget_AppCompat_CompoundButton_RadioButton = 2131952395;
+			public const int Widget_AppCompat_CompoundButton_Switch = 2131952395;
 			
 			// aapt resource value: 0x7F13030C
-			public const int Widget_AppCompat_CompoundButton_Switch = 2131952396;
+			public const int Widget_AppCompat_DrawerArrowToggle = 2131952396;
 			
 			// aapt resource value: 0x7F13030D
-			public const int Widget_AppCompat_DrawerArrowToggle = 2131952397;
+			public const int Widget_AppCompat_DropDownItem_Spinner = 2131952397;
 			
 			// aapt resource value: 0x7F13030E
-			public const int Widget_AppCompat_DropDownItem_Spinner = 2131952398;
+			public const int Widget_AppCompat_EditText = 2131952398;
 			
 			// aapt resource value: 0x7F13030F
-			public const int Widget_AppCompat_EditText = 2131952399;
+			public const int Widget_AppCompat_ImageButton = 2131952399;
 			
 			// aapt resource value: 0x7F130310
-			public const int Widget_AppCompat_ImageButton = 2131952400;
+			public const int Widget_AppCompat_Light_ActionBar = 2131952400;
 			
 			// aapt resource value: 0x7F130311
-			public const int Widget_AppCompat_Light_ActionBar = 2131952401;
+			public const int Widget_AppCompat_Light_ActionBar_Solid = 2131952401;
 			
 			// aapt resource value: 0x7F130312
-			public const int Widget_AppCompat_Light_ActionBar_Solid = 2131952402;
+			public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131952402;
 			
 			// aapt resource value: 0x7F130313
-			public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131952403;
+			public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131952403;
 			
 			// aapt resource value: 0x7F130314
-			public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131952404;
+			public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131952404;
 			
 			// aapt resource value: 0x7F130315
-			public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131952405;
+			public const int Widget_AppCompat_Light_ActionBar_TabText = 2131952405;
 			
 			// aapt resource value: 0x7F130316
-			public const int Widget_AppCompat_Light_ActionBar_TabText = 2131952406;
+			public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131952406;
 			
 			// aapt resource value: 0x7F130317
-			public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131952407;
+			public const int Widget_AppCompat_Light_ActionBar_TabView = 2131952407;
 			
 			// aapt resource value: 0x7F130318
-			public const int Widget_AppCompat_Light_ActionBar_TabView = 2131952408;
+			public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131952408;
 			
 			// aapt resource value: 0x7F130319
-			public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131952409;
+			public const int Widget_AppCompat_Light_ActionButton = 2131952409;
 			
 			// aapt resource value: 0x7F13031A
-			public const int Widget_AppCompat_Light_ActionButton = 2131952410;
+			public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131952410;
 			
 			// aapt resource value: 0x7F13031B
-			public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131952411;
+			public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131952411;
 			
 			// aapt resource value: 0x7F13031C
-			public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131952412;
+			public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131952412;
 			
 			// aapt resource value: 0x7F13031D
-			public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131952413;
+			public const int Widget_AppCompat_Light_ActivityChooserView = 2131952413;
 			
 			// aapt resource value: 0x7F13031E
-			public const int Widget_AppCompat_Light_ActivityChooserView = 2131952414;
+			public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131952414;
 			
 			// aapt resource value: 0x7F13031F
-			public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131952415;
+			public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131952415;
 			
 			// aapt resource value: 0x7F130320
-			public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131952416;
+			public const int Widget_AppCompat_Light_ListPopupWindow = 2131952416;
 			
 			// aapt resource value: 0x7F130321
-			public const int Widget_AppCompat_Light_ListPopupWindow = 2131952417;
+			public const int Widget_AppCompat_Light_ListView_DropDown = 2131952417;
 			
 			// aapt resource value: 0x7F130322
-			public const int Widget_AppCompat_Light_ListView_DropDown = 2131952418;
+			public const int Widget_AppCompat_Light_PopupMenu = 2131952418;
 			
 			// aapt resource value: 0x7F130323
-			public const int Widget_AppCompat_Light_PopupMenu = 2131952419;
+			public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131952419;
 			
 			// aapt resource value: 0x7F130324
-			public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131952420;
+			public const int Widget_AppCompat_Light_SearchView = 2131952420;
 			
 			// aapt resource value: 0x7F130325
-			public const int Widget_AppCompat_Light_SearchView = 2131952421;
+			public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131952421;
 			
 			// aapt resource value: 0x7F130326
-			public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131952422;
+			public const int Widget_AppCompat_ListMenuView = 2131952422;
 			
 			// aapt resource value: 0x7F130327
-			public const int Widget_AppCompat_ListMenuView = 2131952423;
+			public const int Widget_AppCompat_ListPopupWindow = 2131952423;
 			
 			// aapt resource value: 0x7F130328
-			public const int Widget_AppCompat_ListPopupWindow = 2131952424;
+			public const int Widget_AppCompat_ListView = 2131952424;
 			
 			// aapt resource value: 0x7F130329
-			public const int Widget_AppCompat_ListView = 2131952425;
+			public const int Widget_AppCompat_ListView_DropDown = 2131952425;
 			
 			// aapt resource value: 0x7F13032A
-			public const int Widget_AppCompat_ListView_DropDown = 2131952426;
+			public const int Widget_AppCompat_ListView_Menu = 2131952426;
 			
 			// aapt resource value: 0x7F13032B
-			public const int Widget_AppCompat_ListView_Menu = 2131952427;
+			public const int Widget_AppCompat_PopupMenu = 2131952427;
 			
 			// aapt resource value: 0x7F13032C
-			public const int Widget_AppCompat_PopupMenu = 2131952428;
+			public const int Widget_AppCompat_PopupMenu_Overflow = 2131952428;
 			
 			// aapt resource value: 0x7F13032D
-			public const int Widget_AppCompat_PopupMenu_Overflow = 2131952429;
+			public const int Widget_AppCompat_PopupWindow = 2131952429;
 			
 			// aapt resource value: 0x7F13032E
-			public const int Widget_AppCompat_PopupWindow = 2131952430;
+			public const int Widget_AppCompat_ProgressBar = 2131952430;
 			
 			// aapt resource value: 0x7F13032F
-			public const int Widget_AppCompat_ProgressBar = 2131952431;
+			public const int Widget_AppCompat_ProgressBar_Horizontal = 2131952431;
 			
 			// aapt resource value: 0x7F130330
-			public const int Widget_AppCompat_ProgressBar_Horizontal = 2131952432;
+			public const int Widget_AppCompat_RatingBar = 2131952432;
 			
 			// aapt resource value: 0x7F130331
-			public const int Widget_AppCompat_RatingBar = 2131952433;
+			public const int Widget_AppCompat_RatingBar_Indicator = 2131952433;
 			
 			// aapt resource value: 0x7F130332
-			public const int Widget_AppCompat_RatingBar_Indicator = 2131952434;
+			public const int Widget_AppCompat_RatingBar_Small = 2131952434;
 			
 			// aapt resource value: 0x7F130333
-			public const int Widget_AppCompat_RatingBar_Small = 2131952435;
+			public const int Widget_AppCompat_SearchView = 2131952435;
 			
 			// aapt resource value: 0x7F130334
-			public const int Widget_AppCompat_SearchView = 2131952436;
+			public const int Widget_AppCompat_SearchView_ActionBar = 2131952436;
 			
 			// aapt resource value: 0x7F130335
-			public const int Widget_AppCompat_SearchView_ActionBar = 2131952437;
+			public const int Widget_AppCompat_SeekBar = 2131952437;
 			
 			// aapt resource value: 0x7F130336
-			public const int Widget_AppCompat_SeekBar = 2131952438;
+			public const int Widget_AppCompat_SeekBar_Discrete = 2131952438;
 			
 			// aapt resource value: 0x7F130337
-			public const int Widget_AppCompat_SeekBar_Discrete = 2131952439;
+			public const int Widget_AppCompat_Spinner = 2131952439;
 			
 			// aapt resource value: 0x7F130338
-			public const int Widget_AppCompat_Spinner = 2131952440;
+			public const int Widget_AppCompat_Spinner_DropDown = 2131952440;
 			
 			// aapt resource value: 0x7F130339
-			public const int Widget_AppCompat_Spinner_DropDown = 2131952441;
+			public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131952441;
 			
 			// aapt resource value: 0x7F13033A
-			public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131952442;
+			public const int Widget_AppCompat_Spinner_Underlined = 2131952442;
 			
 			// aapt resource value: 0x7F13033B
-			public const int Widget_AppCompat_Spinner_Underlined = 2131952443;
+			public const int Widget_AppCompat_TextView = 2131952443;
 			
 			// aapt resource value: 0x7F13033C
-			public const int Widget_AppCompat_TextView = 2131952444;
+			public const int Widget_AppCompat_TextView_SpinnerItem = 2131952444;
 			
 			// aapt resource value: 0x7F13033D
-			public const int Widget_AppCompat_TextView_SpinnerItem = 2131952445;
+			public const int Widget_AppCompat_Toolbar = 2131952445;
 			
 			// aapt resource value: 0x7F13033E
-			public const int Widget_AppCompat_Toolbar = 2131952446;
+			public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131952446;
 			
 			// aapt resource value: 0x7F13033F
-			public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131952447;
+			public const int Widget_Compat_NotificationActionContainer = 2131952447;
 			
 			// aapt resource value: 0x7F130340
-			public const int Widget_Compat_NotificationActionContainer = 2131952448;
+			public const int Widget_Compat_NotificationActionText = 2131952448;
 			
 			// aapt resource value: 0x7F130341
-			public const int Widget_Compat_NotificationActionText = 2131952449;
+			public const int Widget_Design_AppBarLayout = 2131952449;
 			
 			// aapt resource value: 0x7F130342
-			public const int Widget_Design_AppBarLayout = 2131952450;
+			public const int Widget_Design_BottomNavigationView = 2131952450;
 			
 			// aapt resource value: 0x7F130343
-			public const int Widget_Design_BottomNavigationView = 2131952451;
+			public const int Widget_Design_BottomSheet_Modal = 2131952451;
 			
 			// aapt resource value: 0x7F130344
-			public const int Widget_Design_BottomSheet_Modal = 2131952452;
+			public const int Widget_Design_CollapsingToolbar = 2131952452;
 			
 			// aapt resource value: 0x7F130345
-			public const int Widget_Design_CollapsingToolbar = 2131952453;
+			public const int Widget_Design_FloatingActionButton = 2131952453;
 			
 			// aapt resource value: 0x7F130346
-			public const int Widget_Design_FloatingActionButton = 2131952454;
+			public const int Widget_Design_NavigationView = 2131952454;
 			
 			// aapt resource value: 0x7F130347
-			public const int Widget_Design_NavigationView = 2131952455;
+			public const int Widget_Design_ScrimInsetsFrameLayout = 2131952455;
 			
 			// aapt resource value: 0x7F130348
-			public const int Widget_Design_ScrimInsetsFrameLayout = 2131952456;
+			public const int Widget_Design_Snackbar = 2131952456;
 			
 			// aapt resource value: 0x7F130349
-			public const int Widget_Design_Snackbar = 2131952457;
+			public const int Widget_Design_TabLayout = 2131952457;
 			
 			// aapt resource value: 0x7F13034A
-			public const int Widget_Design_TabLayout = 2131952458;
+			public const int Widget_Design_TextInputEditText = 2131952458;
 			
 			// aapt resource value: 0x7F13034B
-			public const int Widget_Design_TextInputEditText = 2131952459;
+			public const int Widget_Design_TextInputLayout = 2131952459;
 			
 			// aapt resource value: 0x7F13034C
-			public const int Widget_Design_TextInputLayout = 2131952460;
+			public const int Widget_Material3_ActionBar_Solid = 2131952460;
 			
 			// aapt resource value: 0x7F13034D
-			public const int Widget_Material3_ActionBar_Solid = 2131952461;
+			public const int Widget_Material3_ActionMode = 2131952461;
 			
 			// aapt resource value: 0x7F13034E
-			public const int Widget_Material3_ActionMode = 2131952462;
+			public const int Widget_Material3_AppBarLayout = 2131952462;
 			
 			// aapt resource value: 0x7F13034F
-			public const int Widget_Material3_AppBarLayout = 2131952463;
+			public const int Widget_Material3_AutoCompleteTextView_FilledBox = 2131952463;
 			
 			// aapt resource value: 0x7F130350
-			public const int Widget_Material3_AutoCompleteTextView_FilledBox = 2131952464;
+			public const int Widget_Material3_AutoCompleteTextView_FilledBox_Dense = 2131952464;
 			
 			// aapt resource value: 0x7F130351
-			public const int Widget_Material3_AutoCompleteTextView_FilledBox_Dense = 2131952465;
+			public const int Widget_Material3_AutoCompleteTextView_OutlinedBox = 2131952465;
 			
 			// aapt resource value: 0x7F130352
-			public const int Widget_Material3_AutoCompleteTextView_OutlinedBox = 2131952466;
+			public const int Widget_Material3_AutoCompleteTextView_OutlinedBox_Dense = 2131952466;
 			
 			// aapt resource value: 0x7F130353
-			public const int Widget_Material3_AutoCompleteTextView_OutlinedBox_Dense = 2131952467;
+			public const int Widget_Material3_Badge = 2131952467;
 			
 			// aapt resource value: 0x7F130354
-			public const int Widget_Material3_Badge = 2131952468;
+			public const int Widget_Material3_Badge_AdjustToBounds = 2131952468;
 			
 			// aapt resource value: 0x7F130355
-			public const int Widget_Material3_Badge_AdjustToBounds = 2131952469;
+			public const int Widget_Material3_BottomAppBar = 2131952469;
 			
 			// aapt resource value: 0x7F130356
-			public const int Widget_Material3_BottomAppBar = 2131952470;
+			public const int Widget_Material3_BottomAppBar_Button_Navigation = 2131952470;
 			
 			// aapt resource value: 0x7F130357
-			public const int Widget_Material3_BottomAppBar_Button_Navigation = 2131952471;
+			public const int Widget_Material3_BottomAppBar_Legacy = 2131952471;
 			
 			// aapt resource value: 0x7F130358
-			public const int Widget_Material3_BottomAppBar_Legacy = 2131952472;
+			public const int Widget_Material3_BottomNavigationView = 2131952472;
 			
 			// aapt resource value: 0x7F130359
-			public const int Widget_Material3_BottomNavigationView = 2131952473;
+			public const int Widget_Material3_BottomNavigationView_ActiveIndicator = 2131952473;
 			
 			// aapt resource value: 0x7F13035A
-			public const int Widget_Material3_BottomNavigationView_ActiveIndicator = 2131952474;
+			public const int Widget_Material3_BottomSheet = 2131952474;
 			
 			// aapt resource value: 0x7F13035B
-			public const int Widget_Material3_BottomSheet = 2131952475;
+			public const int Widget_Material3_BottomSheet_DragHandle = 2131952475;
 			
 			// aapt resource value: 0x7F13035C
-			public const int Widget_Material3_BottomSheet_DragHandle = 2131952476;
+			public const int Widget_Material3_BottomSheet_Modal = 2131952476;
 			
 			// aapt resource value: 0x7F13035D
-			public const int Widget_Material3_BottomSheet_Modal = 2131952477;
+			public const int Widget_Material3_Button = 2131952477;
 			
 			// aapt resource value: 0x7F13035E
-			public const int Widget_Material3_Button = 2131952478;
+			public const int Widget_Material3_Button_ElevatedButton = 2131952478;
 			
 			// aapt resource value: 0x7F13035F
-			public const int Widget_Material3_Button_ElevatedButton = 2131952479;
+			public const int Widget_Material3_Button_ElevatedButton_Icon = 2131952479;
 			
 			// aapt resource value: 0x7F130360
-			public const int Widget_Material3_Button_ElevatedButton_Icon = 2131952480;
+			public const int Widget_Material3_Button_Icon = 2131952480;
 			
 			// aapt resource value: 0x7F130361
-			public const int Widget_Material3_Button_Icon = 2131952481;
+			public const int Widget_Material3_Button_IconButton = 2131952481;
 			
 			// aapt resource value: 0x7F130362
-			public const int Widget_Material3_Button_IconButton = 2131952482;
+			public const int Widget_Material3_Button_IconButton_Filled = 2131952482;
 			
 			// aapt resource value: 0x7F130363
-			public const int Widget_Material3_Button_IconButton_Filled = 2131952483;
+			public const int Widget_Material3_Button_IconButton_Filled_Tonal = 2131952483;
 			
 			// aapt resource value: 0x7F130364
-			public const int Widget_Material3_Button_IconButton_Filled_Tonal = 2131952484;
+			public const int Widget_Material3_Button_IconButton_Outlined = 2131952484;
 			
 			// aapt resource value: 0x7F130365
-			public const int Widget_Material3_Button_IconButton_Outlined = 2131952485;
+			public const int Widget_Material3_Button_OutlinedButton = 2131952485;
 			
 			// aapt resource value: 0x7F130366
-			public const int Widget_Material3_Button_OutlinedButton = 2131952486;
+			public const int Widget_Material3_Button_OutlinedButton_Icon = 2131952486;
 			
 			// aapt resource value: 0x7F130367
-			public const int Widget_Material3_Button_OutlinedButton_Icon = 2131952487;
+			public const int Widget_Material3_Button_TextButton = 2131952487;
 			
 			// aapt resource value: 0x7F130368
-			public const int Widget_Material3_Button_TextButton = 2131952488;
+			public const int Widget_Material3_Button_TextButton_Dialog = 2131952488;
 			
 			// aapt resource value: 0x7F130369
-			public const int Widget_Material3_Button_TextButton_Dialog = 2131952489;
+			public const int Widget_Material3_Button_TextButton_Dialog_Flush = 2131952489;
 			
 			// aapt resource value: 0x7F13036A
-			public const int Widget_Material3_Button_TextButton_Dialog_Flush = 2131952490;
+			public const int Widget_Material3_Button_TextButton_Dialog_Icon = 2131952490;
 			
 			// aapt resource value: 0x7F13036B
-			public const int Widget_Material3_Button_TextButton_Dialog_Icon = 2131952491;
+			public const int Widget_Material3_Button_TextButton_Icon = 2131952491;
 			
 			// aapt resource value: 0x7F13036C
-			public const int Widget_Material3_Button_TextButton_Icon = 2131952492;
+			public const int Widget_Material3_Button_TextButton_Snackbar = 2131952492;
 			
 			// aapt resource value: 0x7F13036D
-			public const int Widget_Material3_Button_TextButton_Snackbar = 2131952493;
+			public const int Widget_Material3_Button_TonalButton = 2131952493;
 			
 			// aapt resource value: 0x7F13036E
-			public const int Widget_Material3_Button_TonalButton = 2131952494;
+			public const int Widget_Material3_Button_TonalButton_Icon = 2131952494;
 			
 			// aapt resource value: 0x7F13036F
-			public const int Widget_Material3_Button_TonalButton_Icon = 2131952495;
+			public const int Widget_Material3_Button_UnelevatedButton = 2131952495;
 			
 			// aapt resource value: 0x7F130370
-			public const int Widget_Material3_Button_UnelevatedButton = 2131952496;
+			public const int Widget_Material3_CardView_Elevated = 2131952496;
 			
 			// aapt resource value: 0x7F130371
-			public const int Widget_Material3_CardView_Elevated = 2131952497;
+			public const int Widget_Material3_CardView_Filled = 2131952497;
 			
 			// aapt resource value: 0x7F130372
-			public const int Widget_Material3_CardView_Filled = 2131952498;
+			public const int Widget_Material3_CardView_Outlined = 2131952498;
 			
 			// aapt resource value: 0x7F130373
-			public const int Widget_Material3_CardView_Outlined = 2131952499;
-			
-			// aapt resource value: 0x7F130374
-			public const int Widget_Material3_CheckedTextView = 2131952500;
-			
-			// aapt resource value: 0x7F13037F
-			public const int Widget_Material3_ChipGroup = 2131952511;
-			
-			// aapt resource value: 0x7F130375
-			public const int Widget_Material3_Chip_Assist = 2131952501;
-			
-			// aapt resource value: 0x7F130376
-			public const int Widget_Material3_Chip_Assist_Elevated = 2131952502;
-			
-			// aapt resource value: 0x7F130377
-			public const int Widget_Material3_Chip_Filter = 2131952503;
-			
-			// aapt resource value: 0x7F130378
-			public const int Widget_Material3_Chip_Filter_Elevated = 2131952504;
-			
-			// aapt resource value: 0x7F130379
-			public const int Widget_Material3_Chip_Input = 2131952505;
-			
-			// aapt resource value: 0x7F13037A
-			public const int Widget_Material3_Chip_Input_Elevated = 2131952506;
-			
-			// aapt resource value: 0x7F13037B
-			public const int Widget_Material3_Chip_Input_Icon = 2131952507;
-			
-			// aapt resource value: 0x7F13037C
-			public const int Widget_Material3_Chip_Input_Icon_Elevated = 2131952508;
-			
-			// aapt resource value: 0x7F13037D
-			public const int Widget_Material3_Chip_Suggestion = 2131952509;
+			public const int Widget_Material3_CheckedTextView = 2131952499;
 			
 			// aapt resource value: 0x7F13037E
-			public const int Widget_Material3_Chip_Suggestion_Elevated = 2131952510;
+			public const int Widget_Material3_ChipGroup = 2131952510;
+			
+			// aapt resource value: 0x7F130374
+			public const int Widget_Material3_Chip_Assist = 2131952500;
+			
+			// aapt resource value: 0x7F130375
+			public const int Widget_Material3_Chip_Assist_Elevated = 2131952501;
+			
+			// aapt resource value: 0x7F130376
+			public const int Widget_Material3_Chip_Filter = 2131952502;
+			
+			// aapt resource value: 0x7F130377
+			public const int Widget_Material3_Chip_Filter_Elevated = 2131952503;
+			
+			// aapt resource value: 0x7F130378
+			public const int Widget_Material3_Chip_Input = 2131952504;
+			
+			// aapt resource value: 0x7F130379
+			public const int Widget_Material3_Chip_Input_Elevated = 2131952505;
+			
+			// aapt resource value: 0x7F13037A
+			public const int Widget_Material3_Chip_Input_Icon = 2131952506;
+			
+			// aapt resource value: 0x7F13037B
+			public const int Widget_Material3_Chip_Input_Icon_Elevated = 2131952507;
+			
+			// aapt resource value: 0x7F13037C
+			public const int Widget_Material3_Chip_Suggestion = 2131952508;
+			
+			// aapt resource value: 0x7F13037D
+			public const int Widget_Material3_Chip_Suggestion_Elevated = 2131952509;
+			
+			// aapt resource value: 0x7F13037F
+			public const int Widget_Material3_CircularProgressIndicator = 2131952511;
 			
 			// aapt resource value: 0x7F130380
-			public const int Widget_Material3_CircularProgressIndicator = 2131952512;
+			public const int Widget_Material3_CircularProgressIndicator_ExtraSmall = 2131952512;
 			
 			// aapt resource value: 0x7F130381
-			public const int Widget_Material3_CircularProgressIndicator_ExtraSmall = 2131952513;
+			public const int Widget_Material3_CircularProgressIndicator_Medium = 2131952513;
 			
 			// aapt resource value: 0x7F130382
-			public const int Widget_Material3_CircularProgressIndicator_Medium = 2131952514;
+			public const int Widget_Material3_CircularProgressIndicator_Small = 2131952514;
 			
 			// aapt resource value: 0x7F130383
-			public const int Widget_Material3_CircularProgressIndicator_Small = 2131952515;
+			public const int Widget_Material3_CollapsingToolbar = 2131952515;
 			
 			// aapt resource value: 0x7F130384
-			public const int Widget_Material3_CollapsingToolbar = 2131952516;
+			public const int Widget_Material3_CollapsingToolbar_Large = 2131952516;
 			
 			// aapt resource value: 0x7F130385
-			public const int Widget_Material3_CollapsingToolbar_Large = 2131952517;
+			public const int Widget_Material3_CollapsingToolbar_Medium = 2131952517;
 			
 			// aapt resource value: 0x7F130386
-			public const int Widget_Material3_CollapsingToolbar_Medium = 2131952518;
+			public const int Widget_Material3_CompoundButton_CheckBox = 2131952518;
 			
 			// aapt resource value: 0x7F130387
-			public const int Widget_Material3_CompoundButton_CheckBox = 2131952519;
+			public const int Widget_Material3_CompoundButton_MaterialSwitch = 2131952519;
 			
 			// aapt resource value: 0x7F130388
-			public const int Widget_Material3_CompoundButton_MaterialSwitch = 2131952520;
+			public const int Widget_Material3_CompoundButton_RadioButton = 2131952520;
 			
 			// aapt resource value: 0x7F130389
-			public const int Widget_Material3_CompoundButton_RadioButton = 2131952521;
+			public const int Widget_Material3_CompoundButton_Switch = 2131952521;
 			
 			// aapt resource value: 0x7F13038A
-			public const int Widget_Material3_CompoundButton_Switch = 2131952522;
+			public const int Widget_Material3_DrawerLayout = 2131952522;
 			
 			// aapt resource value: 0x7F13038B
-			public const int Widget_Material3_DrawerLayout = 2131952523;
+			public const int Widget_Material3_ExtendedFloatingActionButton_Icon_Primary = 2131952523;
 			
 			// aapt resource value: 0x7F13038C
-			public const int Widget_Material3_ExtendedFloatingActionButton_Icon_Primary = 2131952524;
+			public const int Widget_Material3_ExtendedFloatingActionButton_Icon_Secondary = 2131952524;
 			
 			// aapt resource value: 0x7F13038D
-			public const int Widget_Material3_ExtendedFloatingActionButton_Icon_Secondary = 2131952525;
+			public const int Widget_Material3_ExtendedFloatingActionButton_Icon_Surface = 2131952525;
 			
 			// aapt resource value: 0x7F13038E
-			public const int Widget_Material3_ExtendedFloatingActionButton_Icon_Surface = 2131952526;
+			public const int Widget_Material3_ExtendedFloatingActionButton_Icon_Tertiary = 2131952526;
 			
 			// aapt resource value: 0x7F13038F
-			public const int Widget_Material3_ExtendedFloatingActionButton_Icon_Tertiary = 2131952527;
+			public const int Widget_Material3_ExtendedFloatingActionButton_Primary = 2131952527;
 			
 			// aapt resource value: 0x7F130390
-			public const int Widget_Material3_ExtendedFloatingActionButton_Primary = 2131952528;
+			public const int Widget_Material3_ExtendedFloatingActionButton_Secondary = 2131952528;
 			
 			// aapt resource value: 0x7F130391
-			public const int Widget_Material3_ExtendedFloatingActionButton_Secondary = 2131952529;
+			public const int Widget_Material3_ExtendedFloatingActionButton_Surface = 2131952529;
 			
 			// aapt resource value: 0x7F130392
-			public const int Widget_Material3_ExtendedFloatingActionButton_Surface = 2131952530;
+			public const int Widget_Material3_ExtendedFloatingActionButton_Tertiary = 2131952530;
 			
 			// aapt resource value: 0x7F130393
-			public const int Widget_Material3_ExtendedFloatingActionButton_Tertiary = 2131952531;
+			public const int Widget_Material3_FloatingActionButton_Large_Primary = 2131952531;
 			
 			// aapt resource value: 0x7F130394
-			public const int Widget_Material3_FloatingActionButton_Large_Primary = 2131952532;
+			public const int Widget_Material3_FloatingActionButton_Large_Secondary = 2131952532;
 			
 			// aapt resource value: 0x7F130395
-			public const int Widget_Material3_FloatingActionButton_Large_Secondary = 2131952533;
+			public const int Widget_Material3_FloatingActionButton_Large_Surface = 2131952533;
 			
 			// aapt resource value: 0x7F130396
-			public const int Widget_Material3_FloatingActionButton_Large_Surface = 2131952534;
+			public const int Widget_Material3_FloatingActionButton_Large_Tertiary = 2131952534;
 			
 			// aapt resource value: 0x7F130397
-			public const int Widget_Material3_FloatingActionButton_Large_Tertiary = 2131952535;
+			public const int Widget_Material3_FloatingActionButton_Primary = 2131952535;
 			
 			// aapt resource value: 0x7F130398
-			public const int Widget_Material3_FloatingActionButton_Primary = 2131952536;
+			public const int Widget_Material3_FloatingActionButton_Secondary = 2131952536;
 			
 			// aapt resource value: 0x7F130399
-			public const int Widget_Material3_FloatingActionButton_Secondary = 2131952537;
+			public const int Widget_Material3_FloatingActionButton_Small_Primary = 2131952537;
 			
 			// aapt resource value: 0x7F13039A
-			public const int Widget_Material3_FloatingActionButton_Small_Primary = 2131952538;
+			public const int Widget_Material3_FloatingActionButton_Small_Secondary = 2131952538;
 			
 			// aapt resource value: 0x7F13039B
-			public const int Widget_Material3_FloatingActionButton_Small_Secondary = 2131952539;
+			public const int Widget_Material3_FloatingActionButton_Small_Surface = 2131952539;
 			
 			// aapt resource value: 0x7F13039C
-			public const int Widget_Material3_FloatingActionButton_Small_Surface = 2131952540;
+			public const int Widget_Material3_FloatingActionButton_Small_Tertiary = 2131952540;
 			
 			// aapt resource value: 0x7F13039D
-			public const int Widget_Material3_FloatingActionButton_Small_Tertiary = 2131952541;
+			public const int Widget_Material3_FloatingActionButton_Surface = 2131952541;
 			
 			// aapt resource value: 0x7F13039E
-			public const int Widget_Material3_FloatingActionButton_Surface = 2131952542;
+			public const int Widget_Material3_FloatingActionButton_Tertiary = 2131952542;
 			
 			// aapt resource value: 0x7F13039F
-			public const int Widget_Material3_FloatingActionButton_Tertiary = 2131952543;
+			public const int Widget_Material3_Light_ActionBar_Solid = 2131952543;
 			
 			// aapt resource value: 0x7F1303A0
-			public const int Widget_Material3_Light_ActionBar_Solid = 2131952544;
+			public const int Widget_Material3_LinearProgressIndicator = 2131952544;
 			
 			// aapt resource value: 0x7F1303A1
-			public const int Widget_Material3_LinearProgressIndicator = 2131952545;
+			public const int Widget_Material3_MaterialButtonToggleGroup = 2131952545;
 			
 			// aapt resource value: 0x7F1303A2
-			public const int Widget_Material3_MaterialButtonToggleGroup = 2131952546;
+			public const int Widget_Material3_MaterialCalendar = 2131952546;
 			
 			// aapt resource value: 0x7F1303A3
-			public const int Widget_Material3_MaterialCalendar = 2131952547;
-			
-			// aapt resource value: 0x7F1303A4
-			public const int Widget_Material3_MaterialCalendar_Day = 2131952548;
-			
-			// aapt resource value: 0x7F1303A8
-			public const int Widget_Material3_MaterialCalendar_DayOfWeekLabel = 2131952552;
-			
-			// aapt resource value: 0x7F1303A9
-			public const int Widget_Material3_MaterialCalendar_DayTextView = 2131952553;
-			
-			// aapt resource value: 0x7F1303A5
-			public const int Widget_Material3_MaterialCalendar_Day_Invalid = 2131952549;
-			
-			// aapt resource value: 0x7F1303A6
-			public const int Widget_Material3_MaterialCalendar_Day_Selected = 2131952550;
+			public const int Widget_Material3_MaterialCalendar_Day = 2131952547;
 			
 			// aapt resource value: 0x7F1303A7
-			public const int Widget_Material3_MaterialCalendar_Day_Today = 2131952551;
+			public const int Widget_Material3_MaterialCalendar_DayOfWeekLabel = 2131952551;
+			
+			// aapt resource value: 0x7F1303A8
+			public const int Widget_Material3_MaterialCalendar_DayTextView = 2131952552;
+			
+			// aapt resource value: 0x7F1303A4
+			public const int Widget_Material3_MaterialCalendar_Day_Invalid = 2131952548;
+			
+			// aapt resource value: 0x7F1303A5
+			public const int Widget_Material3_MaterialCalendar_Day_Selected = 2131952549;
+			
+			// aapt resource value: 0x7F1303A6
+			public const int Widget_Material3_MaterialCalendar_Day_Today = 2131952550;
+			
+			// aapt resource value: 0x7F1303A9
+			public const int Widget_Material3_MaterialCalendar_Fullscreen = 2131952553;
 			
 			// aapt resource value: 0x7F1303AA
-			public const int Widget_Material3_MaterialCalendar_Fullscreen = 2131952554;
+			public const int Widget_Material3_MaterialCalendar_HeaderCancelButton = 2131952554;
 			
 			// aapt resource value: 0x7F1303AB
-			public const int Widget_Material3_MaterialCalendar_HeaderCancelButton = 2131952555;
+			public const int Widget_Material3_MaterialCalendar_HeaderDivider = 2131952555;
 			
 			// aapt resource value: 0x7F1303AC
-			public const int Widget_Material3_MaterialCalendar_HeaderDivider = 2131952556;
+			public const int Widget_Material3_MaterialCalendar_HeaderLayout = 2131952556;
 			
 			// aapt resource value: 0x7F1303AD
-			public const int Widget_Material3_MaterialCalendar_HeaderLayout = 2131952557;
+			public const int Widget_Material3_MaterialCalendar_HeaderLayout_Fullscreen = 2131952557;
 			
 			// aapt resource value: 0x7F1303AE
-			public const int Widget_Material3_MaterialCalendar_HeaderLayout_Fullscreen = 2131952558;
+			public const int Widget_Material3_MaterialCalendar_HeaderSelection = 2131952558;
 			
 			// aapt resource value: 0x7F1303AF
-			public const int Widget_Material3_MaterialCalendar_HeaderSelection = 2131952559;
+			public const int Widget_Material3_MaterialCalendar_HeaderSelection_Fullscreen = 2131952559;
 			
 			// aapt resource value: 0x7F1303B0
-			public const int Widget_Material3_MaterialCalendar_HeaderSelection_Fullscreen = 2131952560;
+			public const int Widget_Material3_MaterialCalendar_HeaderTitle = 2131952560;
 			
 			// aapt resource value: 0x7F1303B1
-			public const int Widget_Material3_MaterialCalendar_HeaderTitle = 2131952561;
+			public const int Widget_Material3_MaterialCalendar_HeaderToggleButton = 2131952561;
 			
 			// aapt resource value: 0x7F1303B2
-			public const int Widget_Material3_MaterialCalendar_HeaderToggleButton = 2131952562;
+			public const int Widget_Material3_MaterialCalendar_Item = 2131952562;
 			
 			// aapt resource value: 0x7F1303B3
-			public const int Widget_Material3_MaterialCalendar_Item = 2131952563;
+			public const int Widget_Material3_MaterialCalendar_MonthNavigationButton = 2131952563;
 			
 			// aapt resource value: 0x7F1303B4
-			public const int Widget_Material3_MaterialCalendar_MonthNavigationButton = 2131952564;
+			public const int Widget_Material3_MaterialCalendar_MonthTextView = 2131952564;
 			
 			// aapt resource value: 0x7F1303B5
-			public const int Widget_Material3_MaterialCalendar_MonthTextView = 2131952565;
-			
-			// aapt resource value: 0x7F1303B6
-			public const int Widget_Material3_MaterialCalendar_Year = 2131952566;
-			
-			// aapt resource value: 0x7F1303B9
-			public const int Widget_Material3_MaterialCalendar_YearNavigationButton = 2131952569;
-			
-			// aapt resource value: 0x7F1303B7
-			public const int Widget_Material3_MaterialCalendar_Year_Selected = 2131952567;
+			public const int Widget_Material3_MaterialCalendar_Year = 2131952565;
 			
 			// aapt resource value: 0x7F1303B8
-			public const int Widget_Material3_MaterialCalendar_Year_Today = 2131952568;
+			public const int Widget_Material3_MaterialCalendar_YearNavigationButton = 2131952568;
+			
+			// aapt resource value: 0x7F1303B6
+			public const int Widget_Material3_MaterialCalendar_Year_Selected = 2131952566;
+			
+			// aapt resource value: 0x7F1303B7
+			public const int Widget_Material3_MaterialCalendar_Year_Today = 2131952567;
+			
+			// aapt resource value: 0x7F1303B9
+			public const int Widget_Material3_MaterialDivider = 2131952569;
 			
 			// aapt resource value: 0x7F1303BA
-			public const int Widget_Material3_MaterialDivider = 2131952570;
+			public const int Widget_Material3_MaterialDivider_Heavy = 2131952570;
 			
 			// aapt resource value: 0x7F1303BB
-			public const int Widget_Material3_MaterialDivider_Heavy = 2131952571;
+			public const int Widget_Material3_MaterialTimePicker = 2131952571;
 			
 			// aapt resource value: 0x7F1303BC
-			public const int Widget_Material3_MaterialTimePicker = 2131952572;
+			public const int Widget_Material3_MaterialTimePicker_Button = 2131952572;
 			
 			// aapt resource value: 0x7F1303BD
-			public const int Widget_Material3_MaterialTimePicker_Button = 2131952573;
+			public const int Widget_Material3_MaterialTimePicker_Clock = 2131952573;
 			
 			// aapt resource value: 0x7F1303BE
-			public const int Widget_Material3_MaterialTimePicker_Clock = 2131952574;
+			public const int Widget_Material3_MaterialTimePicker_Display = 2131952574;
 			
 			// aapt resource value: 0x7F1303BF
-			public const int Widget_Material3_MaterialTimePicker_Display = 2131952575;
+			public const int Widget_Material3_MaterialTimePicker_Display_Divider = 2131952575;
 			
 			// aapt resource value: 0x7F1303C0
-			public const int Widget_Material3_MaterialTimePicker_Display_Divider = 2131952576;
+			public const int Widget_Material3_MaterialTimePicker_Display_HelperText = 2131952576;
 			
 			// aapt resource value: 0x7F1303C1
-			public const int Widget_Material3_MaterialTimePicker_Display_HelperText = 2131952577;
+			public const int Widget_Material3_MaterialTimePicker_Display_TextInputEditText = 2131952577;
 			
 			// aapt resource value: 0x7F1303C2
-			public const int Widget_Material3_MaterialTimePicker_Display_TextInputEditText = 2131952578;
+			public const int Widget_Material3_MaterialTimePicker_Display_TextInputLayout = 2131952578;
 			
 			// aapt resource value: 0x7F1303C3
-			public const int Widget_Material3_MaterialTimePicker_Display_TextInputLayout = 2131952579;
+			public const int Widget_Material3_MaterialTimePicker_ImageButton = 2131952579;
 			
 			// aapt resource value: 0x7F1303C4
-			public const int Widget_Material3_MaterialTimePicker_ImageButton = 2131952580;
+			public const int Widget_Material3_NavigationRailView = 2131952580;
 			
 			// aapt resource value: 0x7F1303C5
-			public const int Widget_Material3_NavigationRailView = 2131952581;
+			public const int Widget_Material3_NavigationRailView_ActiveIndicator = 2131952581;
 			
 			// aapt resource value: 0x7F1303C6
-			public const int Widget_Material3_NavigationRailView_ActiveIndicator = 2131952582;
+			public const int Widget_Material3_NavigationRailView_Badge = 2131952582;
 			
 			// aapt resource value: 0x7F1303C7
-			public const int Widget_Material3_NavigationRailView_Badge = 2131952583;
+			public const int Widget_Material3_NavigationView = 2131952583;
 			
 			// aapt resource value: 0x7F1303C8
-			public const int Widget_Material3_NavigationView = 2131952584;
+			public const int Widget_Material3_PopupMenu = 2131952584;
 			
 			// aapt resource value: 0x7F1303C9
-			public const int Widget_Material3_PopupMenu = 2131952585;
+			public const int Widget_Material3_PopupMenu_ContextMenu = 2131952585;
 			
 			// aapt resource value: 0x7F1303CA
-			public const int Widget_Material3_PopupMenu_ContextMenu = 2131952586;
+			public const int Widget_Material3_PopupMenu_ListPopupWindow = 2131952586;
 			
 			// aapt resource value: 0x7F1303CB
-			public const int Widget_Material3_PopupMenu_ListPopupWindow = 2131952587;
-			
-			// aapt resource value: 0x7F1303CC
-			public const int Widget_Material3_PopupMenu_Overflow = 2131952588;
-			
-			// aapt resource value: 0x7F1303CF
-			public const int Widget_Material3_SearchBar = 2131952591;
-			
-			// aapt resource value: 0x7F1303D0
-			public const int Widget_Material3_SearchBar_Outlined = 2131952592;
-			
-			// aapt resource value: 0x7F1303D1
-			public const int Widget_Material3_SearchView = 2131952593;
-			
-			// aapt resource value: 0x7F1303D2
-			public const int Widget_Material3_SearchView_Prefix = 2131952594;
-			
-			// aapt resource value: 0x7F1303D3
-			public const int Widget_Material3_SearchView_Toolbar = 2131952595;
-			
-			// aapt resource value: 0x7F1303CD
-			public const int Widget_Material3_Search_ActionButton_Overflow = 2131952589;
+			public const int Widget_Material3_PopupMenu_Overflow = 2131952587;
 			
 			// aapt resource value: 0x7F1303CE
-			public const int Widget_Material3_Search_Toolbar_Button_Navigation = 2131952590;
+			public const int Widget_Material3_SearchBar = 2131952590;
+			
+			// aapt resource value: 0x7F1303CF
+			public const int Widget_Material3_SearchBar_Outlined = 2131952591;
+			
+			// aapt resource value: 0x7F1303D0
+			public const int Widget_Material3_SearchView = 2131952592;
+			
+			// aapt resource value: 0x7F1303D1
+			public const int Widget_Material3_SearchView_Prefix = 2131952593;
+			
+			// aapt resource value: 0x7F1303D2
+			public const int Widget_Material3_SearchView_Toolbar = 2131952594;
+			
+			// aapt resource value: 0x7F1303CC
+			public const int Widget_Material3_Search_ActionButton_Overflow = 2131952588;
+			
+			// aapt resource value: 0x7F1303CD
+			public const int Widget_Material3_Search_Toolbar_Button_Navigation = 2131952589;
+			
+			// aapt resource value: 0x7F1303D3
+			public const int Widget_Material3_SideSheet = 2131952595;
 			
 			// aapt resource value: 0x7F1303D4
-			public const int Widget_Material3_SideSheet = 2131952596;
+			public const int Widget_Material3_SideSheet_Detached = 2131952596;
 			
 			// aapt resource value: 0x7F1303D5
-			public const int Widget_Material3_SideSheet_Detached = 2131952597;
+			public const int Widget_Material3_SideSheet_Modal = 2131952597;
 			
 			// aapt resource value: 0x7F1303D6
-			public const int Widget_Material3_SideSheet_Modal = 2131952598;
+			public const int Widget_Material3_SideSheet_Modal_Detached = 2131952598;
 			
 			// aapt resource value: 0x7F1303D7
-			public const int Widget_Material3_SideSheet_Modal_Detached = 2131952599;
+			public const int Widget_Material3_Slider = 2131952599;
 			
 			// aapt resource value: 0x7F1303D8
-			public const int Widget_Material3_Slider = 2131952600;
+			public const int Widget_Material3_Slider_Label = 2131952600;
 			
 			// aapt resource value: 0x7F1303D9
-			public const int Widget_Material3_Slider_Label = 2131952601;
+			public const int Widget_Material3_Snackbar = 2131952601;
 			
 			// aapt resource value: 0x7F1303DA
-			public const int Widget_Material3_Snackbar = 2131952602;
+			public const int Widget_Material3_Snackbar_FullWidth = 2131952602;
 			
 			// aapt resource value: 0x7F1303DB
-			public const int Widget_Material3_Snackbar_FullWidth = 2131952603;
+			public const int Widget_Material3_Snackbar_TextView = 2131952603;
 			
 			// aapt resource value: 0x7F1303DC
-			public const int Widget_Material3_Snackbar_TextView = 2131952604;
+			public const int Widget_Material3_TabLayout = 2131952604;
 			
 			// aapt resource value: 0x7F1303DD
-			public const int Widget_Material3_TabLayout = 2131952605;
+			public const int Widget_Material3_TabLayout_OnSurface = 2131952605;
 			
 			// aapt resource value: 0x7F1303DE
-			public const int Widget_Material3_TabLayout_OnSurface = 2131952606;
+			public const int Widget_Material3_TabLayout_Secondary = 2131952606;
 			
 			// aapt resource value: 0x7F1303DF
-			public const int Widget_Material3_TabLayout_Secondary = 2131952607;
+			public const int Widget_Material3_TextInputEditText_FilledBox = 2131952607;
 			
 			// aapt resource value: 0x7F1303E0
-			public const int Widget_Material3_TextInputEditText_FilledBox = 2131952608;
+			public const int Widget_Material3_TextInputEditText_FilledBox_Dense = 2131952608;
 			
 			// aapt resource value: 0x7F1303E1
-			public const int Widget_Material3_TextInputEditText_FilledBox_Dense = 2131952609;
+			public const int Widget_Material3_TextInputEditText_OutlinedBox = 2131952609;
 			
 			// aapt resource value: 0x7F1303E2
-			public const int Widget_Material3_TextInputEditText_OutlinedBox = 2131952610;
+			public const int Widget_Material3_TextInputEditText_OutlinedBox_Dense = 2131952610;
 			
 			// aapt resource value: 0x7F1303E3
-			public const int Widget_Material3_TextInputEditText_OutlinedBox_Dense = 2131952611;
+			public const int Widget_Material3_TextInputLayout_FilledBox = 2131952611;
 			
 			// aapt resource value: 0x7F1303E4
-			public const int Widget_Material3_TextInputLayout_FilledBox = 2131952612;
+			public const int Widget_Material3_TextInputLayout_FilledBox_Dense = 2131952612;
 			
 			// aapt resource value: 0x7F1303E5
-			public const int Widget_Material3_TextInputLayout_FilledBox_Dense = 2131952613;
+			public const int Widget_Material3_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu = 2131952613;
 			
 			// aapt resource value: 0x7F1303E6
-			public const int Widget_Material3_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu = 2131952614;
+			public const int Widget_Material3_TextInputLayout_FilledBox_ExposedDropdownMenu = 2131952614;
 			
 			// aapt resource value: 0x7F1303E7
-			public const int Widget_Material3_TextInputLayout_FilledBox_ExposedDropdownMenu = 2131952615;
+			public const int Widget_Material3_TextInputLayout_OutlinedBox = 2131952615;
 			
 			// aapt resource value: 0x7F1303E8
-			public const int Widget_Material3_TextInputLayout_OutlinedBox = 2131952616;
+			public const int Widget_Material3_TextInputLayout_OutlinedBox_Dense = 2131952616;
 			
 			// aapt resource value: 0x7F1303E9
-			public const int Widget_Material3_TextInputLayout_OutlinedBox_Dense = 2131952617;
+			public const int Widget_Material3_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu = 2131952617;
 			
 			// aapt resource value: 0x7F1303EA
-			public const int Widget_Material3_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu = 2131952618;
+			public const int Widget_Material3_TextInputLayout_OutlinedBox_ExposedDropdownMenu = 2131952618;
 			
 			// aapt resource value: 0x7F1303EB
-			public const int Widget_Material3_TextInputLayout_OutlinedBox_ExposedDropdownMenu = 2131952619;
+			public const int Widget_Material3_Toolbar = 2131952619;
 			
 			// aapt resource value: 0x7F1303EC
-			public const int Widget_Material3_Toolbar = 2131952620;
+			public const int Widget_Material3_Toolbar_OnSurface = 2131952620;
 			
 			// aapt resource value: 0x7F1303ED
-			public const int Widget_Material3_Toolbar_OnSurface = 2131952621;
+			public const int Widget_Material3_Toolbar_Surface = 2131952621;
 			
 			// aapt resource value: 0x7F1303EE
-			public const int Widget_Material3_Toolbar_Surface = 2131952622;
+			public const int Widget_Material3_Tooltip = 2131952622;
 			
 			// aapt resource value: 0x7F1303EF
-			public const int Widget_Material3_Tooltip = 2131952623;
+			public const int Widget_MaterialComponents_ActionBar_Primary = 2131952623;
 			
 			// aapt resource value: 0x7F1303F0
-			public const int Widget_MaterialComponents_ActionBar_Primary = 2131952624;
+			public const int Widget_MaterialComponents_ActionBar_PrimarySurface = 2131952624;
 			
 			// aapt resource value: 0x7F1303F1
-			public const int Widget_MaterialComponents_ActionBar_PrimarySurface = 2131952625;
+			public const int Widget_MaterialComponents_ActionBar_Solid = 2131952625;
 			
 			// aapt resource value: 0x7F1303F2
-			public const int Widget_MaterialComponents_ActionBar_Solid = 2131952626;
+			public const int Widget_MaterialComponents_ActionBar_Surface = 2131952626;
 			
 			// aapt resource value: 0x7F1303F3
-			public const int Widget_MaterialComponents_ActionBar_Surface = 2131952627;
+			public const int Widget_MaterialComponents_ActionMode = 2131952627;
 			
 			// aapt resource value: 0x7F1303F4
-			public const int Widget_MaterialComponents_ActionMode = 2131952628;
+			public const int Widget_MaterialComponents_AppBarLayout_Primary = 2131952628;
 			
 			// aapt resource value: 0x7F1303F5
-			public const int Widget_MaterialComponents_AppBarLayout_Primary = 2131952629;
+			public const int Widget_MaterialComponents_AppBarLayout_PrimarySurface = 2131952629;
 			
 			// aapt resource value: 0x7F1303F6
-			public const int Widget_MaterialComponents_AppBarLayout_PrimarySurface = 2131952630;
+			public const int Widget_MaterialComponents_AppBarLayout_Surface = 2131952630;
 			
 			// aapt resource value: 0x7F1303F7
-			public const int Widget_MaterialComponents_AppBarLayout_Surface = 2131952631;
+			public const int Widget_MaterialComponents_AutoCompleteTextView_FilledBox = 2131952631;
 			
 			// aapt resource value: 0x7F1303F8
-			public const int Widget_MaterialComponents_AutoCompleteTextView_FilledBox = 2131952632;
+			public const int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = 2131952632;
 			
 			// aapt resource value: 0x7F1303F9
-			public const int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = 2131952633;
+			public const int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox = 2131952633;
 			
 			// aapt resource value: 0x7F1303FA
-			public const int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox = 2131952634;
+			public const int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = 2131952634;
 			
 			// aapt resource value: 0x7F1303FB
-			public const int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = 2131952635;
+			public const int Widget_MaterialComponents_Badge = 2131952635;
 			
 			// aapt resource value: 0x7F1303FC
-			public const int Widget_MaterialComponents_Badge = 2131952636;
+			public const int Widget_MaterialComponents_BottomAppBar = 2131952636;
 			
 			// aapt resource value: 0x7F1303FD
-			public const int Widget_MaterialComponents_BottomAppBar = 2131952637;
+			public const int Widget_MaterialComponents_BottomAppBar_Colored = 2131952637;
 			
 			// aapt resource value: 0x7F1303FE
-			public const int Widget_MaterialComponents_BottomAppBar_Colored = 2131952638;
+			public const int Widget_MaterialComponents_BottomAppBar_PrimarySurface = 2131952638;
 			
 			// aapt resource value: 0x7F1303FF
-			public const int Widget_MaterialComponents_BottomAppBar_PrimarySurface = 2131952639;
+			public const int Widget_MaterialComponents_BottomNavigationView = 2131952639;
 			
 			// aapt resource value: 0x7F130400
-			public const int Widget_MaterialComponents_BottomNavigationView = 2131952640;
+			public const int Widget_MaterialComponents_BottomNavigationView_Colored = 2131952640;
 			
 			// aapt resource value: 0x7F130401
-			public const int Widget_MaterialComponents_BottomNavigationView_Colored = 2131952641;
+			public const int Widget_MaterialComponents_BottomNavigationView_PrimarySurface = 2131952641;
 			
 			// aapt resource value: 0x7F130402
-			public const int Widget_MaterialComponents_BottomNavigationView_PrimarySurface = 2131952642;
+			public const int Widget_MaterialComponents_BottomSheet = 2131952642;
 			
 			// aapt resource value: 0x7F130403
-			public const int Widget_MaterialComponents_BottomSheet = 2131952643;
+			public const int Widget_MaterialComponents_BottomSheet_Modal = 2131952643;
 			
 			// aapt resource value: 0x7F130404
-			public const int Widget_MaterialComponents_BottomSheet_Modal = 2131952644;
+			public const int Widget_MaterialComponents_Button = 2131952644;
 			
 			// aapt resource value: 0x7F130405
-			public const int Widget_MaterialComponents_Button = 2131952645;
+			public const int Widget_MaterialComponents_Button_Icon = 2131952645;
 			
 			// aapt resource value: 0x7F130406
-			public const int Widget_MaterialComponents_Button_Icon = 2131952646;
+			public const int Widget_MaterialComponents_Button_OutlinedButton = 2131952646;
 			
 			// aapt resource value: 0x7F130407
-			public const int Widget_MaterialComponents_Button_OutlinedButton = 2131952647;
+			public const int Widget_MaterialComponents_Button_OutlinedButton_Icon = 2131952647;
 			
 			// aapt resource value: 0x7F130408
-			public const int Widget_MaterialComponents_Button_OutlinedButton_Icon = 2131952648;
+			public const int Widget_MaterialComponents_Button_TextButton = 2131952648;
 			
 			// aapt resource value: 0x7F130409
-			public const int Widget_MaterialComponents_Button_TextButton = 2131952649;
+			public const int Widget_MaterialComponents_Button_TextButton_Dialog = 2131952649;
 			
 			// aapt resource value: 0x7F13040A
-			public const int Widget_MaterialComponents_Button_TextButton_Dialog = 2131952650;
+			public const int Widget_MaterialComponents_Button_TextButton_Dialog_Flush = 2131952650;
 			
 			// aapt resource value: 0x7F13040B
-			public const int Widget_MaterialComponents_Button_TextButton_Dialog_Flush = 2131952651;
+			public const int Widget_MaterialComponents_Button_TextButton_Dialog_Icon = 2131952651;
 			
 			// aapt resource value: 0x7F13040C
-			public const int Widget_MaterialComponents_Button_TextButton_Dialog_Icon = 2131952652;
+			public const int Widget_MaterialComponents_Button_TextButton_Icon = 2131952652;
 			
 			// aapt resource value: 0x7F13040D
-			public const int Widget_MaterialComponents_Button_TextButton_Icon = 2131952653;
+			public const int Widget_MaterialComponents_Button_TextButton_Snackbar = 2131952653;
 			
 			// aapt resource value: 0x7F13040E
-			public const int Widget_MaterialComponents_Button_TextButton_Snackbar = 2131952654;
+			public const int Widget_MaterialComponents_Button_UnelevatedButton = 2131952654;
 			
 			// aapt resource value: 0x7F13040F
-			public const int Widget_MaterialComponents_Button_UnelevatedButton = 2131952655;
+			public const int Widget_MaterialComponents_Button_UnelevatedButton_Icon = 2131952655;
 			
 			// aapt resource value: 0x7F130410
-			public const int Widget_MaterialComponents_Button_UnelevatedButton_Icon = 2131952656;
+			public const int Widget_MaterialComponents_CardView = 2131952656;
 			
 			// aapt resource value: 0x7F130411
-			public const int Widget_MaterialComponents_CardView = 2131952657;
-			
-			// aapt resource value: 0x7F130412
-			public const int Widget_MaterialComponents_CheckedTextView = 2131952658;
-			
-			// aapt resource value: 0x7F130417
-			public const int Widget_MaterialComponents_ChipGroup = 2131952663;
-			
-			// aapt resource value: 0x7F130413
-			public const int Widget_MaterialComponents_Chip_Action = 2131952659;
-			
-			// aapt resource value: 0x7F130414
-			public const int Widget_MaterialComponents_Chip_Choice = 2131952660;
-			
-			// aapt resource value: 0x7F130415
-			public const int Widget_MaterialComponents_Chip_Entry = 2131952661;
+			public const int Widget_MaterialComponents_CheckedTextView = 2131952657;
 			
 			// aapt resource value: 0x7F130416
-			public const int Widget_MaterialComponents_Chip_Filter = 2131952662;
+			public const int Widget_MaterialComponents_ChipGroup = 2131952662;
+			
+			// aapt resource value: 0x7F130412
+			public const int Widget_MaterialComponents_Chip_Action = 2131952658;
+			
+			// aapt resource value: 0x7F130413
+			public const int Widget_MaterialComponents_Chip_Choice = 2131952659;
+			
+			// aapt resource value: 0x7F130414
+			public const int Widget_MaterialComponents_Chip_Entry = 2131952660;
+			
+			// aapt resource value: 0x7F130415
+			public const int Widget_MaterialComponents_Chip_Filter = 2131952661;
+			
+			// aapt resource value: 0x7F130417
+			public const int Widget_MaterialComponents_CircularProgressIndicator = 2131952663;
 			
 			// aapt resource value: 0x7F130418
-			public const int Widget_MaterialComponents_CircularProgressIndicator = 2131952664;
+			public const int Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall = 2131952664;
 			
 			// aapt resource value: 0x7F130419
-			public const int Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall = 2131952665;
+			public const int Widget_MaterialComponents_CircularProgressIndicator_Medium = 2131952665;
 			
 			// aapt resource value: 0x7F13041A
-			public const int Widget_MaterialComponents_CircularProgressIndicator_Medium = 2131952666;
+			public const int Widget_MaterialComponents_CircularProgressIndicator_Small = 2131952666;
 			
 			// aapt resource value: 0x7F13041B
-			public const int Widget_MaterialComponents_CircularProgressIndicator_Small = 2131952667;
+			public const int Widget_MaterialComponents_CollapsingToolbar = 2131952667;
 			
 			// aapt resource value: 0x7F13041C
-			public const int Widget_MaterialComponents_CollapsingToolbar = 2131952668;
+			public const int Widget_MaterialComponents_CompoundButton_CheckBox = 2131952668;
 			
 			// aapt resource value: 0x7F13041D
-			public const int Widget_MaterialComponents_CompoundButton_CheckBox = 2131952669;
+			public const int Widget_MaterialComponents_CompoundButton_RadioButton = 2131952669;
 			
 			// aapt resource value: 0x7F13041E
-			public const int Widget_MaterialComponents_CompoundButton_RadioButton = 2131952670;
+			public const int Widget_MaterialComponents_CompoundButton_Switch = 2131952670;
 			
 			// aapt resource value: 0x7F13041F
-			public const int Widget_MaterialComponents_CompoundButton_Switch = 2131952671;
+			public const int Widget_MaterialComponents_ExtendedFloatingActionButton = 2131952671;
 			
 			// aapt resource value: 0x7F130420
-			public const int Widget_MaterialComponents_ExtendedFloatingActionButton = 2131952672;
+			public const int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon = 2131952672;
 			
 			// aapt resource value: 0x7F130421
-			public const int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon = 2131952673;
+			public const int Widget_MaterialComponents_FloatingActionButton = 2131952673;
 			
 			// aapt resource value: 0x7F130422
-			public const int Widget_MaterialComponents_FloatingActionButton = 2131952674;
+			public const int Widget_MaterialComponents_Light_ActionBar_Solid = 2131952674;
 			
 			// aapt resource value: 0x7F130423
-			public const int Widget_MaterialComponents_Light_ActionBar_Solid = 2131952675;
+			public const int Widget_MaterialComponents_LinearProgressIndicator = 2131952675;
 			
 			// aapt resource value: 0x7F130424
-			public const int Widget_MaterialComponents_LinearProgressIndicator = 2131952676;
+			public const int Widget_MaterialComponents_MaterialButtonToggleGroup = 2131952676;
 			
 			// aapt resource value: 0x7F130425
-			public const int Widget_MaterialComponents_MaterialButtonToggleGroup = 2131952677;
+			public const int Widget_MaterialComponents_MaterialCalendar = 2131952677;
 			
 			// aapt resource value: 0x7F130426
-			public const int Widget_MaterialComponents_MaterialCalendar = 2131952678;
-			
-			// aapt resource value: 0x7F130427
-			public const int Widget_MaterialComponents_MaterialCalendar_Day = 2131952679;
-			
-			// aapt resource value: 0x7F13042B
-			public const int Widget_MaterialComponents_MaterialCalendar_DayOfWeekLabel = 2131952683;
-			
-			// aapt resource value: 0x7F13042C
-			public const int Widget_MaterialComponents_MaterialCalendar_DayTextView = 2131952684;
-			
-			// aapt resource value: 0x7F130428
-			public const int Widget_MaterialComponents_MaterialCalendar_Day_Invalid = 2131952680;
-			
-			// aapt resource value: 0x7F130429
-			public const int Widget_MaterialComponents_MaterialCalendar_Day_Selected = 2131952681;
+			public const int Widget_MaterialComponents_MaterialCalendar_Day = 2131952678;
 			
 			// aapt resource value: 0x7F13042A
-			public const int Widget_MaterialComponents_MaterialCalendar_Day_Today = 2131952682;
+			public const int Widget_MaterialComponents_MaterialCalendar_DayOfWeekLabel = 2131952682;
+			
+			// aapt resource value: 0x7F13042B
+			public const int Widget_MaterialComponents_MaterialCalendar_DayTextView = 2131952683;
+			
+			// aapt resource value: 0x7F130427
+			public const int Widget_MaterialComponents_MaterialCalendar_Day_Invalid = 2131952679;
+			
+			// aapt resource value: 0x7F130428
+			public const int Widget_MaterialComponents_MaterialCalendar_Day_Selected = 2131952680;
+			
+			// aapt resource value: 0x7F130429
+			public const int Widget_MaterialComponents_MaterialCalendar_Day_Today = 2131952681;
+			
+			// aapt resource value: 0x7F13042C
+			public const int Widget_MaterialComponents_MaterialCalendar_Fullscreen = 2131952684;
 			
 			// aapt resource value: 0x7F13042D
-			public const int Widget_MaterialComponents_MaterialCalendar_Fullscreen = 2131952685;
+			public const int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton = 2131952685;
 			
 			// aapt resource value: 0x7F13042E
-			public const int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton = 2131952686;
+			public const int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton = 2131952686;
 			
 			// aapt resource value: 0x7F13042F
-			public const int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton = 2131952687;
+			public const int Widget_MaterialComponents_MaterialCalendar_HeaderDivider = 2131952687;
 			
 			// aapt resource value: 0x7F130430
-			public const int Widget_MaterialComponents_MaterialCalendar_HeaderDivider = 2131952688;
+			public const int Widget_MaterialComponents_MaterialCalendar_HeaderLayout = 2131952688;
 			
 			// aapt resource value: 0x7F130431
-			public const int Widget_MaterialComponents_MaterialCalendar_HeaderLayout = 2131952689;
+			public const int Widget_MaterialComponents_MaterialCalendar_HeaderLayout_Fullscreen = 2131952689;
 			
 			// aapt resource value: 0x7F130432
-			public const int Widget_MaterialComponents_MaterialCalendar_HeaderLayout_Fullscreen = 2131952690;
+			public const int Widget_MaterialComponents_MaterialCalendar_HeaderSelection = 2131952690;
 			
 			// aapt resource value: 0x7F130433
-			public const int Widget_MaterialComponents_MaterialCalendar_HeaderSelection = 2131952691;
+			public const int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen = 2131952691;
 			
 			// aapt resource value: 0x7F130434
-			public const int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen = 2131952692;
+			public const int Widget_MaterialComponents_MaterialCalendar_HeaderTitle = 2131952692;
 			
 			// aapt resource value: 0x7F130435
-			public const int Widget_MaterialComponents_MaterialCalendar_HeaderTitle = 2131952693;
+			public const int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton = 2131952693;
 			
 			// aapt resource value: 0x7F130436
-			public const int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton = 2131952694;
+			public const int Widget_MaterialComponents_MaterialCalendar_Item = 2131952694;
 			
 			// aapt resource value: 0x7F130437
-			public const int Widget_MaterialComponents_MaterialCalendar_Item = 2131952695;
+			public const int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton = 2131952695;
 			
 			// aapt resource value: 0x7F130438
-			public const int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton = 2131952696;
+			public const int Widget_MaterialComponents_MaterialCalendar_MonthTextView = 2131952696;
 			
 			// aapt resource value: 0x7F130439
-			public const int Widget_MaterialComponents_MaterialCalendar_MonthTextView = 2131952697;
-			
-			// aapt resource value: 0x7F13043A
-			public const int Widget_MaterialComponents_MaterialCalendar_Year = 2131952698;
-			
-			// aapt resource value: 0x7F13043D
-			public const int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton = 2131952701;
-			
-			// aapt resource value: 0x7F13043B
-			public const int Widget_MaterialComponents_MaterialCalendar_Year_Selected = 2131952699;
+			public const int Widget_MaterialComponents_MaterialCalendar_Year = 2131952697;
 			
 			// aapt resource value: 0x7F13043C
-			public const int Widget_MaterialComponents_MaterialCalendar_Year_Today = 2131952700;
+			public const int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton = 2131952700;
+			
+			// aapt resource value: 0x7F13043A
+			public const int Widget_MaterialComponents_MaterialCalendar_Year_Selected = 2131952698;
+			
+			// aapt resource value: 0x7F13043B
+			public const int Widget_MaterialComponents_MaterialCalendar_Year_Today = 2131952699;
+			
+			// aapt resource value: 0x7F13043D
+			public const int Widget_MaterialComponents_MaterialDivider = 2131952701;
 			
 			// aapt resource value: 0x7F13043E
-			public const int Widget_MaterialComponents_MaterialDivider = 2131952702;
+			public const int Widget_MaterialComponents_NavigationRailView = 2131952702;
 			
 			// aapt resource value: 0x7F13043F
-			public const int Widget_MaterialComponents_NavigationRailView = 2131952703;
+			public const int Widget_MaterialComponents_NavigationRailView_Colored = 2131952703;
 			
 			// aapt resource value: 0x7F130440
-			public const int Widget_MaterialComponents_NavigationRailView_Colored = 2131952704;
+			public const int Widget_MaterialComponents_NavigationRailView_Colored_Compact = 2131952704;
 			
 			// aapt resource value: 0x7F130441
-			public const int Widget_MaterialComponents_NavigationRailView_Colored_Compact = 2131952705;
+			public const int Widget_MaterialComponents_NavigationRailView_Compact = 2131952705;
 			
 			// aapt resource value: 0x7F130442
-			public const int Widget_MaterialComponents_NavigationRailView_Compact = 2131952706;
+			public const int Widget_MaterialComponents_NavigationRailView_PrimarySurface = 2131952706;
 			
 			// aapt resource value: 0x7F130443
-			public const int Widget_MaterialComponents_NavigationRailView_PrimarySurface = 2131952707;
+			public const int Widget_MaterialComponents_NavigationView = 2131952707;
 			
 			// aapt resource value: 0x7F130444
-			public const int Widget_MaterialComponents_NavigationView = 2131952708;
+			public const int Widget_MaterialComponents_PopupMenu = 2131952708;
 			
 			// aapt resource value: 0x7F130445
-			public const int Widget_MaterialComponents_PopupMenu = 2131952709;
+			public const int Widget_MaterialComponents_PopupMenu_ContextMenu = 2131952709;
 			
 			// aapt resource value: 0x7F130446
-			public const int Widget_MaterialComponents_PopupMenu_ContextMenu = 2131952710;
+			public const int Widget_MaterialComponents_PopupMenu_ListPopupWindow = 2131952710;
 			
 			// aapt resource value: 0x7F130447
-			public const int Widget_MaterialComponents_PopupMenu_ListPopupWindow = 2131952711;
+			public const int Widget_MaterialComponents_PopupMenu_Overflow = 2131952711;
 			
 			// aapt resource value: 0x7F130448
-			public const int Widget_MaterialComponents_PopupMenu_Overflow = 2131952712;
+			public const int Widget_MaterialComponents_ProgressIndicator = 2131952712;
 			
 			// aapt resource value: 0x7F130449
-			public const int Widget_MaterialComponents_ProgressIndicator = 2131952713;
+			public const int Widget_MaterialComponents_ShapeableImageView = 2131952713;
 			
 			// aapt resource value: 0x7F13044A
-			public const int Widget_MaterialComponents_ShapeableImageView = 2131952714;
+			public const int Widget_MaterialComponents_Slider = 2131952714;
 			
 			// aapt resource value: 0x7F13044B
-			public const int Widget_MaterialComponents_Slider = 2131952715;
+			public const int Widget_MaterialComponents_Snackbar = 2131952715;
 			
 			// aapt resource value: 0x7F13044C
-			public const int Widget_MaterialComponents_Snackbar = 2131952716;
+			public const int Widget_MaterialComponents_Snackbar_FullWidth = 2131952716;
 			
 			// aapt resource value: 0x7F13044D
-			public const int Widget_MaterialComponents_Snackbar_FullWidth = 2131952717;
+			public const int Widget_MaterialComponents_Snackbar_TextView = 2131952717;
 			
 			// aapt resource value: 0x7F13044E
-			public const int Widget_MaterialComponents_Snackbar_TextView = 2131952718;
+			public const int Widget_MaterialComponents_TabLayout = 2131952718;
 			
 			// aapt resource value: 0x7F13044F
-			public const int Widget_MaterialComponents_TabLayout = 2131952719;
+			public const int Widget_MaterialComponents_TabLayout_Colored = 2131952719;
 			
 			// aapt resource value: 0x7F130450
-			public const int Widget_MaterialComponents_TabLayout_Colored = 2131952720;
+			public const int Widget_MaterialComponents_TabLayout_PrimarySurface = 2131952720;
 			
 			// aapt resource value: 0x7F130451
-			public const int Widget_MaterialComponents_TabLayout_PrimarySurface = 2131952721;
+			public const int Widget_MaterialComponents_TextInputEditText_FilledBox = 2131952721;
 			
 			// aapt resource value: 0x7F130452
-			public const int Widget_MaterialComponents_TextInputEditText_FilledBox = 2131952722;
+			public const int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131952722;
 			
 			// aapt resource value: 0x7F130453
-			public const int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131952723;
+			public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox = 2131952723;
 			
 			// aapt resource value: 0x7F130454
-			public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox = 2131952724;
+			public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131952724;
 			
 			// aapt resource value: 0x7F130455
-			public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131952725;
+			public const int Widget_MaterialComponents_TextInputLayout_FilledBox = 2131952725;
 			
 			// aapt resource value: 0x7F130456
-			public const int Widget_MaterialComponents_TextInputLayout_FilledBox = 2131952726;
+			public const int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = 2131952726;
 			
 			// aapt resource value: 0x7F130457
-			public const int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = 2131952727;
+			public const int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu = 2131952727;
 			
 			// aapt resource value: 0x7F130458
-			public const int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu = 2131952728;
+			public const int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu = 2131952728;
 			
 			// aapt resource value: 0x7F130459
-			public const int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu = 2131952729;
+			public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox = 2131952729;
 			
 			// aapt resource value: 0x7F13045A
-			public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox = 2131952730;
+			public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = 2131952730;
 			
 			// aapt resource value: 0x7F13045B
-			public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = 2131952731;
+			public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu = 2131952731;
 			
 			// aapt resource value: 0x7F13045C
-			public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu = 2131952732;
+			public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu = 2131952732;
 			
 			// aapt resource value: 0x7F13045D
-			public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu = 2131952733;
+			public const int Widget_MaterialComponents_TextView = 2131952733;
 			
 			// aapt resource value: 0x7F13045E
-			public const int Widget_MaterialComponents_TextView = 2131952734;
+			public const int Widget_MaterialComponents_TimePicker = 2131952734;
 			
 			// aapt resource value: 0x7F13045F
-			public const int Widget_MaterialComponents_TimePicker = 2131952735;
+			public const int Widget_MaterialComponents_TimePicker_Button = 2131952735;
 			
 			// aapt resource value: 0x7F130460
-			public const int Widget_MaterialComponents_TimePicker_Button = 2131952736;
+			public const int Widget_MaterialComponents_TimePicker_Clock = 2131952736;
 			
 			// aapt resource value: 0x7F130461
-			public const int Widget_MaterialComponents_TimePicker_Clock = 2131952737;
+			public const int Widget_MaterialComponents_TimePicker_Display = 2131952737;
 			
 			// aapt resource value: 0x7F130462
-			public const int Widget_MaterialComponents_TimePicker_Display = 2131952738;
+			public const int Widget_MaterialComponents_TimePicker_Display_Divider = 2131952738;
 			
 			// aapt resource value: 0x7F130463
-			public const int Widget_MaterialComponents_TimePicker_Display_Divider = 2131952739;
+			public const int Widget_MaterialComponents_TimePicker_Display_HelperText = 2131952739;
 			
 			// aapt resource value: 0x7F130464
-			public const int Widget_MaterialComponents_TimePicker_Display_HelperText = 2131952740;
+			public const int Widget_MaterialComponents_TimePicker_Display_TextInputEditText = 2131952740;
 			
 			// aapt resource value: 0x7F130465
-			public const int Widget_MaterialComponents_TimePicker_Display_TextInputEditText = 2131952741;
+			public const int Widget_MaterialComponents_TimePicker_Display_TextInputLayout = 2131952741;
 			
 			// aapt resource value: 0x7F130466
-			public const int Widget_MaterialComponents_TimePicker_Display_TextInputLayout = 2131952742;
+			public const int Widget_MaterialComponents_TimePicker_ImageButton = 2131952742;
 			
 			// aapt resource value: 0x7F130467
-			public const int Widget_MaterialComponents_TimePicker_ImageButton = 2131952743;
+			public const int Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance = 2131952743;
 			
 			// aapt resource value: 0x7F130468
-			public const int Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance = 2131952744;
+			public const int Widget_MaterialComponents_Toolbar = 2131952744;
 			
 			// aapt resource value: 0x7F130469
-			public const int Widget_MaterialComponents_Toolbar = 2131952745;
+			public const int Widget_MaterialComponents_Toolbar_Primary = 2131952745;
 			
 			// aapt resource value: 0x7F13046A
-			public const int Widget_MaterialComponents_Toolbar_Primary = 2131952746;
+			public const int Widget_MaterialComponents_Toolbar_PrimarySurface = 2131952746;
 			
 			// aapt resource value: 0x7F13046B
-			public const int Widget_MaterialComponents_Toolbar_PrimarySurface = 2131952747;
+			public const int Widget_MaterialComponents_Toolbar_Surface = 2131952747;
 			
 			// aapt resource value: 0x7F13046C
-			public const int Widget_MaterialComponents_Toolbar_Surface = 2131952748;
+			public const int Widget_MaterialComponents_Tooltip = 2131952748;
 			
 			// aapt resource value: 0x7F13046D
-			public const int Widget_MaterialComponents_Tooltip = 2131952749;
+			public const int Widget_Support_CoordinatorLayout = 2131952749;
 			
-			// aapt resource value: 0x7F13046E
-			public const int Widget_Support_CoordinatorLayout = 2131952750;
-			
-			// aapt resource value: 0x7F130491
-			public const int zxing_CaptureTheme = 2131952785;
+			// aapt resource value: 0x7F13048D
+			public const int zxing_CaptureTheme = 2131952781;
 			
 			static Style()
 			{
diff --git a/HDL-ON_Android/VideoActivity.cs b/HDL-ON_Android/VideoActivity.cs
deleted file mode 100644
index 13a3db5..0000000
--- a/HDL-ON_Android/VideoActivity.cs
+++ /dev/null
@@ -1,471 +0,0 @@
-锘�
-using System;
-using System.Collections.Generic;
-using System.Threading;
-using Android;
-using Android.App;
-using Android.Content;
-using Android.Content.PM;
-using Android.Graphics;
-using Android.OS;
-using Android.Runtime;
-using Android.Support.V4.App;
-using Android.Support.V4.Content;
-using Android.Util;
-using Android.Views;
-using Android.Widget;
-using Com.ETouchSky;
-using Com.Tool;
-using GateWay.Droid.FengLinVideo.widget;
-using HDL_ON.Common;
-using HDL_ON.DAL.Server;
-using HDL_ON_Android.FengLinVideo.Form;
-
-namespace HDL_ON_Android
-{
-    [Activity(Label = "VideoActivity", WindowSoftInputMode = SoftInput.AdjustResize, LaunchMode = LaunchMode.SingleInstance, ConfigurationChanges = (ConfigChanges.Keyboard | ConfigChanges.KeyboardHidden | ConfigChanges.LayoutDirection | ConfigChanges.Locale | ConfigChanges.Orientation | ConfigChanges.ScreenSize), Theme = "@style/MyTheme1", ScreenOrientation = ScreenOrientation.Portrait)]
-    public class VideoActivity : Activity, View.IOnClickListener, ISurfaceHolderCallback, VideoPhoneJni.ICallBack, TipDiaglog.OnConfirmClickListener
-    {
-        private static Activity activity;
-        private VideoPhone mPhone;
-        private ISurfaceHolder mRemoteSurfaceHolder;
-        private FrameLayout mRemoteFrameContainer;
-        private SurfaceView mSurfaceRemote;
-
-        private ImageView ivBack;
-        private TextView tvName;
-        private MonitorFragment monitorFragment = null;
-        private ReverseCallFragment reverseCallFragment = null;
-
-        public static string ESVideoUUID = "JJY000019VPLLF";//瀹ゅ鏈篣UID锛屼緥:JJY000007FSEYX  f5f6fa
-        public static string DeviceName;//瀹ゅ鏈虹殑鍚嶇О锛屼緥锛屽澶栨満
-        public static bool IsCollect;//鏄惁鏀惰棌
-        public static int Tpye = 0;//绫诲瀷锛�0 鐩戞帶锛�1鍙嶅懠
-
-        public static string UUId;
-        public static string CallId;//callId 鍛煎彨璁板綍id
-        public static string CmtID;//cmtID 涓版灄绀惧尯鍙�
-        public static string Roomno;//roomno 涓版灄鎴块棿鍙�
-        public static string Unitno;//unitno 涓版灄妤兼爧鍙� string
-        public static string HomeID;//HomeID 涓版灄浣忓畢id
-
-        protected override void OnCreate(Bundle savedInstanceState)
-        {
-            base.OnCreate(savedInstanceState);
-
-            try
-            {
-                activity = this;
-
-                ESVideoUUID = Intent.GetStringExtra("ESVideoUUID");//瀹ゅ鏈篣UID锛屼緥:JJY000007FSEYX
-                DeviceName = Intent.GetStringExtra("DeviceName");//瀹ゅ鏈虹殑鍚嶇О锛屼緥锛屽澶栨満
-                UUId = Intent.GetStringExtra("uuid");//
-                CallId = Intent.GetStringExtra("callId");
-                CmtID = Intent.GetStringExtra("cmtID");
-                Roomno = Intent.GetStringExtra("roomno");
-                Unitno = Intent.GetStringExtra("unitno");
-                HomeID = Intent.GetStringExtra("HomeID");
-
-                IsCollect = Intent.GetBooleanExtra("IsCollect", false);//鏄惁鏀惰棌
-                Tpye = Intent.GetIntExtra("Type", 0);//绫诲瀷锛�0 鐩戞帶锛�1鍙嶅懠
-
-                SetContentView(Resource.Layout.activity_video_phone);
-
-                IniView();
-                IniData();
-
-                if (Tpye == 0)
-                {
-                    Monitor(ESVideoUUID); //鐩戞帶
-
-                    monitorFragment = new MonitorFragment(mPhone);
-                    FragmentManager.BeginTransaction().Replace(Resource.Id.content, monitorFragment).Commit();
-                }
-                else
-                {
-                    string param = "address=" + ESVideoUUID + ",tag=mobile://123,";
-                    reverseCallFragment = new ReverseCallFragment(mPhone, param);
-                    FragmentManager.BeginTransaction().Replace(Resource.Id.content, reverseCallFragment).Commit();
-                }
-            }
-            catch {}
-        }
-
-        /// <summary>
-        /// 蹇呰鐨勪竴浜涙潈闄�
-        /// </summary>
-        private void Permissions()
-        {
-            string[] mPermissionList = new string[]
-            {
-                Manifest.Permission.WriteExternalStorage,
-                Manifest.Permission.ReadExternalStorage,
-                Manifest.Permission.Camera,
-                Manifest.Permission.RecordAudio
-            };
-
-            foreach (string permissions in mPermissionList)
-            {
-                if (ContextCompat.CheckSelfPermission(this, permissions) != 0)
-                {
-                    ActivityCompat.RequestPermissions(this, new string[] { permissions }, 1);
-                }
-            }
-        }
-
-        /// <summary>
-        /// 闅愯棌搴曢儴瀵艰埅鏍忊�斺�旇櫄鎷熸寜閿�
-        /// </summary>
-        private void HideVirtualButtons()
-        {
-            WindowManagerLayoutParams windowManager = Window.Attributes;
-            var uiOptions = (int)Window.DecorView.SystemUiVisibility;
-            var newUiOptions = (int)uiOptions;
-            newUiOptions = (int)SystemUiFlags.HideNavigation | (int)SystemUiFlags.Immersive | (int)SystemUiFlags.ImmersiveSticky;
-            windowManager.SystemUiVisibility = (StatusBarVisibility)newUiOptions;
-            Window.Attributes = windowManager;
-        }
-
-        /// <summary>
-        /// 鐩戞帶
-        /// </summary>
-        /// <param name="address"></param>
-        private void Monitor(string address)
-        {
-            //鐩戣鍔熻兘 浠庡钩鍙版媺鍙栫洃瑙嗗垪琛紝璋冪敤姝ゆ帴鍙e彲浠ヤ竴鍙颁竴鍙扮洃瑙�
-            if (mPhone != null)
-            {
-                //姝ゅ弬鏁� 鍙互鍚戦棬鍙f満璁惧浼犻�掓暟鎹紝
-                //娉ㄦ剰锛歊equestAudio 璇锋眰瀵规柟闊抽锛孯equestVideo璇锋眰瀵规柟瑙嗛 SendAudio鍙戦�佹湰鍦伴煶棰� SendVideo 鍙戦�佹湰鍦拌棰� 涓�鑸棬鍙d笉鎺ユ敹鍒拌棰戯紝鎵�浠ユ渶濂借缃�0锛屽噺灏戞祦閲忔秷鑰�
-                string UserData = "";
-                string param = "SendAudio=0\r\n" + "SendVideo=0\r\n" + "RequestAudio=0\r\n" + "RequestVideo=0\r\n" + "UserData=" + UserData + "\r\n";
-                mPhone.Monitor(address, param);
-            }
-        }
-
-        private void IniView()
-        {
-            mRemoteFrameContainer = (FrameLayout)FindViewById(Resource.Id.remoteFrame);
-
-            ivBack = (ImageView)FindViewById(Resource.Id.videoBackImg);
-            tvName = (TextView)FindViewById(Resource.Id.nameText);
-
-            tvName.SetText(DeviceName, null);
-
-            ivBack.SetOnClickListener(this);
-        }
-
-        private void IniData()
-        {
-            try
-            {
-                if (mPhone == null)
-                {
-                    string _params = "port=8554\r\n" + "packcode=1021df37c2abe546a4541ca2c4a9c910\r\n"; //鍒濆鍖栧璁茬鍙o紝榛樿灏卞ソ锛岃窡闂ㄥ彛鏈鸿缃鍖归厤,娉ㄦ剰鏂版帴鍙i渶瑕佸鍔爌ackcode鍙傛暟锛岄渶瑕佹妸浣犱滑鐨勫寘鍚嶅彂杩囨潵
-                    mPhone = new VideoPhone(this, this, _params);
-
-                    if (mRemoteSurfaceHolder != null)
-                    {
-                        mPhone.SetRemoteSurfaceHolder(mRemoteSurfaceHolder, "mRemoteSurfaceHolder!=null"); //璁剧疆鏉ョ數绐楀彛
-                    }
-
-                    ViewGroup v = (ViewGroup)FindViewById(Resource.Id.locaVideo);
-                    mPhone.SetLocalVideoContainer(v);//璁剧疆鏈湴瑙嗛绐楀彛锛屼竴瀹氳璋冪敤锛屼笉鐒跺悗浼氬嚭鐜版病澹伴煶
-                }
-                else
-                {
-                    mPhone.StopStream();
-                    mPhone.Release();
-                    mPhone = null;
-                }
-            }
-            catch { }
-        }
-
-        protected override void OnResume()
-        {
-            base.OnResume();
-
-            HideVirtualButtons();
-
-            Permissions();
-
-            if (mPhone != null)
-            {
-                mPhone.OnActivityResume();
-            }
-        }
-
-        protected override void OnPause()
-        {
-            base.OnPause();
-            if (mPhone != null)
-            {
-                //mPhone.OnActivityPause();
-            }
-        }
-
-        protected override void OnDestroy()
-        {
-            base.OnDestroy();
-            if (mPhone != null)
-            {
-                mPhone.HangUp();
-                mPhone.Release();
-                mPhone = null;
-                //mPhone.OnActivityDestroy();
-            }
-
-            if (ReverseCallFragment.unlockThread != null)
-            {
-                try
-                {
-                    //
-                    ReverseCallFragment.unlockThread.Interrupt();
-                }
-                catch { }
-                ReverseCallFragment.unlockThread = null;
-            }
-
-            if (MonitorFragment.thread != null)
-            {
-                try
-                {
-                    //
-                    MonitorFragment.thread.Interrupt();
-                }
-                catch { }
-                MonitorFragment.thread = null;
-            }
-        }
-
-        public override void OnBackPressed()
-        {
-            if (mPhone != null)
-                mPhone.HangUp();
-
-            Finish();
-        }
-
-        public void OnClick(View v)
-        {
-            if (v.Equals(ivBack))
-            {
-                if (mPhone != null)
-                    mPhone.HangUp();
-
-                Finish();
-            }
-        }
-
-        /// <summary>
-        /// show鍑鸿棰戠敾闈�
-        /// 涓嶈兘鐢╒iew.INVISIBLE鏉ュ畬鍏ㄩ殣钘�,鍚﹀垯MediaCodec.configure浼氭姤ava.lang.IllegalArgumentException: The surface has been released
-        /// </summary>
-        private void ShowRemoteVideo()
-        {
-            try
-            {
-                if (mSurfaceRemote != null)
-                {
-                    return;
-                }
-                mSurfaceRemote = new SurfaceView(this, null);
-                ISurfaceHolder holder = mSurfaceRemote.Holder;
-                holder.AddCallback(this);//ISurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS
-                holder.SetType(SurfaceType.PushBuffers);
-
-                //鍙戠幇绗竴娆how鏃朵細闂睆涓�涓嬶紝鍚庨潰hide鍐峴how鏃朵笉浼氶棯灞�
-                FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.MatchParent);
-                //v.setId(View.generateViewId());
-                mSurfaceRemote.LayoutParameters = lp;
-                mRemoteFrameContainer.AddView(mSurfaceRemote);
-            }
-            catch { }
-        }
-
-        /// <summary>
-        /// 鍏抽棴鐢婚潰
-        /// </summary>
-        private void HideRemoteVideo()
-        {
-            try
-            {
-                if (mSurfaceRemote != null)
-                {
-                    mRemoteFrameContainer.RemoveView(mSurfaceRemote);
-                    mSurfaceRemote = null;
-                }
-            }
-            catch { }
-        }
-
-        /// <summary>
-        /// 寮瑰嚭宸叉寕鏂彁绀�
-        /// </summary>
-        private void ShowTipDialog(string title, string text, string btnText, bool isClose)
-        {
-            try
-            {
-                TipDiaglog diaglog = new TipDiaglog(this);
-                diaglog.SetAutoClose(isClose);
-                diaglog.SetTitleText(title);//"鎻愮ず"
-                diaglog.SetContentText(text);//"宸叉寕鏂�"
-                diaglog.SetConfirmText(btnText);//"纭"
-                diaglog.SetCanceledOnTouchOutside(false);
-                diaglog.Show();
-                diaglog.Create();
-                diaglog.SetConfirmClickListener(this);
-            }
-            catch (Exception e)
-            {
-                string ss = e.Message;
-            }
-        }
-
-        public void SurfaceChanged(ISurfaceHolder holder, [GeneratedEnum] Format format, int width, int height)
-        {
-            mRemoteSurfaceHolder = holder;
-            if (mPhone != null)
-            {
-                mPhone.SetRemoteSurfaceHolder(holder, "surfaceChanged");
-            }
-        }
-
-        public void SurfaceCreated(ISurfaceHolder holder)
-        {
-            mRemoteSurfaceHolder = holder;
-            if (mPhone != null)
-            {
-                mPhone.SetRemoteSurfaceHolder(holder, "surfaceCreated");
-            }
-        }
-
-        public void SurfaceDestroyed(ISurfaceHolder holder)
-        {
-            mRemoteSurfaceHolder = null;
-            if (mPhone != null)
-            {
-                mPhone.SetRemoteSurfaceHolder(null, "surfaceDestroyed");
-            }
-        }
-
-        /// <summary>
-        /// 寮�濮嬫媺娴�
-        /// 娉ㄦ剰锛氱敱浜巃ndroid妗嗘灦闄愬埗锛岃婊¤冻濡備笅鏉′欢鎵嶈兘寮�娴�:activity瑕佸湪鍓嶅彴锛屽苟涓攕urfaceview鍙敤
-        /// </summary>
-        /// <param name="reason"></param>
-        private void StartStream(String reason)
-        {
-            if (mPhone != null)
-            {
-                try
-                {
-                    //寮�娴佷箣鍓嶅彲閰嶇疆瑙嗛灏哄锛岀爜鐜囷紝甯х巼 閽堝鐨勬槸鏈湴
-                    //mPhone.SetVideoSize(640, 480);//1920x1080,1280x720,640x480
-                    //mPhone.SetBps(1.5 * 1024 * 1024);
-                    //mPhone.SetFps(30);
-                    mPhone.StartStream();
-                }
-                catch { }
-            }
-        }
-
-        /// <summary>
-        /// 閫氳瘽鐘舵�佸洖璋冩柟娉�
-        /// </summary>
-        /// <param name="msg"></param>
-        public void OnPhoneEvent(string msg)
-        {
-            try
-            {
-                if (monitorFragment != null)
-                {
-                    monitorFragment.OnPhoneEvent(msg);
-                }
-
-                if (reverseCallFragment != null)
-                {
-                    reverseCallFragment.OnPhoneEvent(msg);
-                }
-
-                TextProtocol tp = new TextProtocol();
-                tp.Parse(msg);
-                string event1 = tp.GetString("event");
-                Log.Info("FengLinVideo", "OnPhoneEvent event=" + event1);
-                switch (event1)
-                {
-                    case "EVT_Ringing":
-                        mPhone.RequestCallerSendVideo();
-                        ShowRemoteVideo();
-                        break;
-                    case "EVT_Connected":
-                        if (!mPhone.IsStreamRunning)
-                        {
-                            //鐢变簬android妗嗘灦闄愬埗锛岃婊¤冻濡備笅鏉′欢鎵嶈兘寮�娴�: activity瑕佸湪鍓嶅彴锛屽苟涓攕urfaceview鍙敤
-                            StartStream("EVT_Connected");
-                        }
-                        ShowRemoteVideo();
-                        break;
-                    case "EVT_StartStream":
-                        StartStream("EVT_StreamStream");
-                        break;
-                    case "EVT_StopStream":
-                        mPhone.StopStream();
-                        break;
-                    case "EVT_MonitorConnected":
-                        if (!mPhone.IsStreamRunning)
-                        {
-                            StartStream("EVT_MonitorConnected");
-                        }
-                        ShowRemoteVideo();
-                        break;
-                    case "EVT_HangUp":
-                        HideRemoteVideo();
-                        if (mPhone != null)
-                        {
-                            mPhone.StopStream();
-                        }
-                        //Toast.MakeText(this, GetString(Resource.String.end_call), ToastLength.Short).Show();
-                        this.Finish();
-                        //ShowTipDialog(tip, hang_up, confirm, true);
-                        break;
-                    case "EVT_RECV_CUSTOM_DATA":
-                        string data = tp.GetString("data");
-                        Toast.MakeText(this, GetString(Resource.String.video_success), ToastLength.Short).Show();
-                        break;
-                    case "EVT_SnapAck":
-                        int error = tp.GetInt("error");
-                        string filePath = tp.GetString("filePath");
-                        if (error == 0)
-                        {
-                            Toast.MakeText(this, GetString(Resource.String.video_success), ToastLength.Short).Show();
-                        }
-                        else
-                        {
-                            Toast.MakeText(this, GetString(Resource.String.video_fail), ToastLength.Short).Show();
-                        }
-                        break;
-                }
-            }
-            catch { }
-        }
-
-        public void OnRecvAudioFrame(byte[] p0)
-        {
-            //throw new NotImplementedException();
-        }
-
-        public void OnRecvVideoFrame(byte[] p0)
-        {
-            //throw new NotImplementedException();
-        }
-
-        public void onSureClick(TipDiaglog dialoog, View v, bool bol)
-        {
-            dialoog.Dismiss();
-            if (bol)
-                this.Finish();
-        }
-    }
-}
\ No newline at end of file
diff --git a/HDL-ON_Android/libs/arm64-v8a/libjcore212.so b/HDL-ON_Android/libs/arm64-v8a/libjcore212.so
new file mode 100644
index 0000000..7c7a83e
--- /dev/null
+++ b/HDL-ON_Android/libs/arm64-v8a/libjcore212.so
Binary files differ
diff --git a/HDL-ON_Android/libs/armeabi-v7a/libjcore212.so b/HDL-ON_Android/libs/armeabi-v7a/libjcore212.so
new file mode 100644
index 0000000..d09da8e
--- /dev/null
+++ b/HDL-ON_Android/libs/armeabi-v7a/libjcore212.so
Binary files differ
diff --git a/HDL_APP_Project.sln b/HDL_APP_Project.sln
index 75268d7..c80efb9 100644
--- a/HDL_APP_Project.sln
+++ b/HDL_APP_Project.sln
@@ -29,6 +29,8 @@
 EndProject
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NunitTest-Android", "NunitTest-Android\NunitTest-Android.csproj", "{7E89ABBF-1E2C-4FE7-AA1B-6599EB4856A2}"
 EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OnPro_JPush", "OnPro_JPush\OnPro_JPush.csproj", "{723098FE-214B-4E79-A5D0-DA31B9366611}"
+EndProject
 Global
 	GlobalSection(SharedMSBuildProjectFiles) = preSolution
 		HDL_ON\HDL_ON.projitems*{09712674-2a38-407b-b1e2-560b2c352f9a}*SharedItemsImports = 4
@@ -166,6 +168,18 @@
 		{7E89ABBF-1E2C-4FE7-AA1B-6599EB4856A2}.Release|iPhone.Build.0 = Release|Any CPU
 		{7E89ABBF-1E2C-4FE7-AA1B-6599EB4856A2}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
 		{7E89ABBF-1E2C-4FE7-AA1B-6599EB4856A2}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
+		{723098FE-214B-4E79-A5D0-DA31B9366611}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{723098FE-214B-4E79-A5D0-DA31B9366611}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{723098FE-214B-4E79-A5D0-DA31B9366611}.Debug|iPhone.ActiveCfg = Debug|Any CPU
+		{723098FE-214B-4E79-A5D0-DA31B9366611}.Debug|iPhone.Build.0 = Debug|Any CPU
+		{723098FE-214B-4E79-A5D0-DA31B9366611}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
+		{723098FE-214B-4E79-A5D0-DA31B9366611}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
+		{723098FE-214B-4E79-A5D0-DA31B9366611}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{723098FE-214B-4E79-A5D0-DA31B9366611}.Release|Any CPU.Build.0 = Release|Any CPU
+		{723098FE-214B-4E79-A5D0-DA31B9366611}.Release|iPhone.ActiveCfg = Release|Any CPU
+		{723098FE-214B-4E79-A5D0-DA31B9366611}.Release|iPhone.Build.0 = Release|Any CPU
+		{723098FE-214B-4E79-A5D0-DA31B9366611}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
+		{723098FE-214B-4E79-A5D0-DA31B9366611}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
 		HideSolutionNode = FALSE
diff --git a/HDL_ON/Common/ApiUtlis.cs b/HDL_ON/Common/ApiUtlis.cs
index edc5d3a..8ae0cfb 100644
--- a/HDL_ON/Common/ApiUtlis.cs
+++ b/HDL_ON/Common/ApiUtlis.cs
@@ -373,7 +373,6 @@
                                 //}
 
                                 //======================鑾峰彇鍙瀵硅璁惧鍒楄〃====================
-                                bool isInterphoneType_HDL = false;//鏄惁涓篐DLLinphone鍙瀵硅
                                 bool isInterphoneType_FREEVIEW = false;//鏄惁涓哄叏瑙嗛�氬彲瑙嗗璁�
                                 var videoInfo = VideoSend.GetVideoInfoList();
                                 if (videoInfo.Code == StateCode.SUCCESS)
@@ -389,91 +388,7 @@
                                         {
                                             UI.UI2.PersonalCenter.PirDevice.PirSend.LcSubAccessToken = video.subAccountToken;
                                         }
-                                        else if (video.interphoneType == InterphoneType.HDL.ToString())
-                                        {
-                                            isInterphoneType_HDL = true;
-                                            DB_ResidenceData.Instance.SupportFacePass = true;
-                                            DB_ResidenceData.Instance.SaveResidenceData();
-                                            DB_ResidenceData.Instance.SupportFVDevice = true;
-                                        }
-                                        else if (video.interphoneType == InterphoneType.FREEVIEW.ToString())
-                                        {
-#if __IOS__
-                                            try
-                                            {
-                                                FunctionList.List.videoIntercom.Remove(video);
-                                                --i;
-                                            }catch(Exception ex)
-                                            {
-                                                MainPage.Log($"ios 鍏ㄨ閫氬紓甯� : {ex.Message}");
-                                            }
-
-#else
-                                            //涓哄叏瑙嗛�氬彲瑙嗗璁�
-                                            DB_ResidenceData.Instance.SupportFacePass = true;
-                                            Entity.DB_ResidenceData.Instance.SupportVisitorManage = true;
-                                            Entity.DB_ResidenceData.Instance.SupportFVDevice = true;
-                                            isInterphoneType_FREEVIEW = true;
-#endif
-                                        }
                                     }
-                                }
-
-
-                                //======================鑾峰彇Sip璐﹀彿骞朵笖鍒濆鍖朣DK鍙瀵硅璁惧鍒楄〃====================
-                                //濡傛灉妫�娴嬬嚎绋嬫病鍚姩锛屾墠缁х画涓嬮潰鎿嶄綔 鍥犱负App鏈夊彲鑳藉垰鍚姩椹笂鏀跺埌鎺ㄩ�佷簡锛岀劧鍚庢墠鎵ц鍒拌繖閲�
-                                if (HDLLinphone.Current.CheckIncomingCallThreadIsNull())
-                                {
-                                    
-                                    //褰撳墠浣忓畢鏄疕DL鍙瀵硅绫诲瀷鐨勮澶�
-                                    if (isInterphoneType_HDL)
-                                    {
-                                        //HDLLinphone鍙瀵硅,鑾峰彇Sip璐﹀彿骞跺垵濮嬪寲SDK
-                                        HDLCallVideoInfo callVideoInfo = new HDLCallVideoInfo();
-                                        callVideoInfo.HomeId = DB_ResidenceData.Instance.CurrentRegion.id;
-                                        callVideoInfo.InterphoneType = InterphoneType.HDL.ToString();
-                                        HDLLinphone.Current.GetHDLSipInfoAndInitSDK(callVideoInfo);
-                                    }
-                                    else if (isInterphoneType_FREEVIEW)
-                                    {
-                                        //HDLLinphone鍙瀵硅,鑾峰彇Sip璐﹀彿骞跺垵濮嬪寲SDK
-                                        HDLCallVideoInfo callVideoInfo = new HDLCallVideoInfo();
-                                        callVideoInfo.HomeId = DB_ResidenceData.Instance.CurrentRegion.id;
-                                        callVideoInfo.InterphoneType = InterphoneType.FREEVIEW.ToString();
-                                        HDLLinphone.Current.GetHDLSipInfoAndInitSDK(callVideoInfo);
-                                    }
-                                    else
-                                    {
-                                        Utlis.WriteLine("褰撳墠浣忓畢涓嶆敮鎸丠DL鍙瀵硅,閫�鍑虹櫥褰曟墍鏈夎处鍙�");
-                                        //褰撳墠浣忓畢涓嶆敮鎸丠DL鍙瀵硅
-                                        HDLLinphone.Current.LogoutAllAccount();
-                                    }
-                                }
-
-
-
-                                //======================鐧诲綍鍏ㄨ閫�====================
-                                if (isInterphoneType_FREEVIEW)
-                                {
-
-#if __IOS__
-                                    //string systemVersion = UIKit.UIDevice.CurrentDevice.SystemVersion;
-                                    //string errorVersion = "16.2.0";
-                                    //if (systemVersion.CompareTo(errorVersion) < 0)///鍏ㄨ閫氫笉鍏煎ios16浠ヤ笂鐨勭郴缁燂紝涓嶈鍔犺浇杩欎釜鍏�
-                                    //{
-                                    //    List<VisitorTempPassword> dataList = new List<VisitorTempPassword>();
-                                    //    Dictionary<string, object> dictionary = new Dictionary<string, object>();
-                                    //    dictionary.Add("homeId", Entity.DB_ResidenceData.Instance.CurrentRegion.id);
-                                    //    var requestJson = HttpUtil.GetSignRequestJson(dictionary);
-                                    //    ResponsePackNew pack = HttpUtil.RequestHttpsPost(NewAPI.Api_Post_GetExtMemberInfo, requestJson);
-                                    //    if (pack != null)
-                                    //    {
-                                    //        var data = JsonConvert.DeserializeObject<FreeviewMemberInfo>(pack.Data.ToString());
-                                    //        //鐧诲綍鍏ㄨ閫�
-                                    //        Shared.IOS.HDLFVSDK.Video.Init("", data.extUserId, DB_ResidenceData.Instance.CurrentRegion.id, "78FF1E4D-FC0A-4E71-9B79-0448E4460BD7", "T0001", "120.77.53.170:9700", "120.77.53.170:21664");
-                                    //    }
-                                    //}
-#endif
                                 }
 
                             }
diff --git a/HDL_ON/Common/Constant.cs b/HDL_ON/Common/Constant.cs
index c79c6f1..6c791d3 100644
--- a/HDL_ON/Common/Constant.cs
+++ b/HDL_ON/Common/Constant.cs
@@ -296,7 +296,7 @@
         /// <summary>
         /// 涓版灄鍙瀵硅鍛煎彨
         /// </summary>
-        FLCall,
+        //FLCall,
         /// <summary>
         /// 鎸や笅绾挎帹閫�
         /// </summary>
@@ -312,7 +312,7 @@
         /// <summary>
         /// HDL鍙瀵硅
         /// </summary>
-        HDL_INTERPHONE,
+        //HDL_INTERPHONE,
         /// <summary>
         /// 闂ㄩ搩鎺ㄩ��(钀ょ煶瑙嗛闂ㄩ攣)
         /// </summary>
diff --git a/HDL_ON/Common/HDLCommon.cs b/HDL_ON/Common/HDLCommon.cs
index a981693..f8f204d 100644
--- a/HDL_ON/Common/HDLCommon.cs
+++ b/HDL_ON/Common/HDLCommon.cs
@@ -280,109 +280,6 @@
                         //鎶ヨ鎺ㄩ�佸脊绐楁彁绀�
                         ShowAlarmPushMessage(jpushMessageInfo, true);
                     }
-                    else if (jpushMessageInfo.messageType == (PushMessageType.FLCall.ToString()))
-                    {
-                        if (string.IsNullOrEmpty(jpushMessageInfo.expantContent)) return;
-
-                        ESVideoInfo eSVideoInfo = GetESOnVideoJson(jpushMessageInfo.expantContent);
-
-                        if (eSVideoInfo == null) return;
-
-                        if (string.IsNullOrEmpty(eSVideoInfo.uuid)) return;
-
-                        if (eSVideoInfo.uuid.Contains(","))
-                        {
-                            var uuid = eSVideoInfo.uuid.Split(',');
-                            eSVideoInfo.ESVideoUUID = uuid[0];
-                        }
-                        else
-                        {
-                            eSVideoInfo.ESVideoUUID = eSVideoInfo.uuid;
-                        }
-
-                        ESOnVideo.Current.ShowESvideoVideoIntercom(eSVideoInfo, InterphoneType.FLVI.ToString());
-
-                    }
-                    else if (jpushMessageInfo.messageType == (PushMessageType.HDL_INTERPHONE.ToString()))
-                    {
-
-                        if (string.IsNullOrEmpty(jpushMessageInfo.expantContent)) return;
-
-                        //瀛楁鍏煎闂锛屽彧鑳界洿鎺ュ彇鍊间簡
-                        var json = Newtonsoft.Json.Linq.JObject.Parse(jpushMessageInfo.expantContent);
-                       
-
-                        //1.瑙嗗璁插巶瀹剁被鍨�
-                        string interphoneTypeEnum = json["interphoneTypeEnum"].ToString();
-                        if (string.IsNullOrEmpty(interphoneTypeEnum)) return;
-                        ESVideoInfo eSVideoInfo = new ESVideoInfo();// GetESOnVideoJson(jpushMessageInfo.expantContent);
-                        //2.鏍规嵁鍙瀵硅鍘傚绫诲瀷锛屽鐞嗕笉鍚岀殑鏁版嵁
-                        if (interphoneTypeEnum == InterphoneType.IMOUVISIAL.ToString())
-                        {
-                            //澶у崕涔愭
-                            eSVideoInfo.callId = json["callId"].ToString();
-                            //eSVideoInfo.Lc_AccessToken = UI.UI2.PersonalCenter.PirDevice.PirSend.LcSubAccessToken;//json["subAccountToken"].ToString();//
-                            eSVideoInfo.Lc_AccessToken = json["subAccountToken"].ToString();//2021-05-13 鐩墠浜戠杩樻病鎷垮埌Lc_AccessToken锛岀洰鍓嶆病鍔炴硶姝e父浣跨敤
-                            eSVideoInfo.Lc_DeviceId = json["deviceId"].ToString();
-                            eSVideoInfo.Lc_Location = OnAppConfig.Instance.RequestHttpsHost.Contains("China") ? 0 : 1;
-                            eSVideoInfo.Lc_PlayToken = json["token"].ToString();
-                            //eSVideoInfo.Lc_Psk = json["cname"].ToString();
-                            eSVideoInfo.Lc_Psk = json["psk"].ToString();//2021-10-15 PSK瀛楁涓嶈兘鍙朿name
-                        }
-                        
-                        else if (interphoneTypeEnum == InterphoneType.HDL.ToString())
-                        {
-                            try
-                            {
-                                var pushTime = json["pushTime"];
-                                if (pushTime == null)
-                                {
-                                    return;
-                                }
-                                if (!string.IsNullOrEmpty(pushTime.ToString()))
-                                {
-                                    var pushDateTime = Utlis.UnixToDateTimeMS(Convert.ToInt64(pushTime));
-                                    if (pushDateTime.AddSeconds(30) < DateTime.Now)
-                                    {
-                                        return;
-                                    }
-                                }
-                            }
-                            catch { }
-                            //HDL Linphone 鐙勮�愬厠
-                            eSVideoInfo.HomeId = jpushMessageInfo.HomeId;
-                            eSVideoInfo.callId = json["callId"].ToString();
-                            eSVideoInfo.Lc_DeviceId = json["deviceId"].ToString();
-                            eSVideoInfo.DeviceName = json["deviceName"].ToString();
-                            eSVideoInfo.deviceSipAccount = json["deviceSipAccount"].ToString();
-                            eSVideoInfo.spk = json["spk"].ToString();
-
-                            //ShowAlert("鐙勮�愬厠闂ㄥ彛鏈哄懠鍙�");
-                            //鎵撳紑鍛煎彨椤甸潰
-                            HDLLinphone.Current.ShowESVideoIntercom(eSVideoInfo, InterphoneType.HDL.ToString());
-                            return;
-                        }
-                        else if (interphoneTypeEnum == InterphoneType.FREEVIEW.ToString())
-                        {
-                            //鍏ㄨ閫� Linphone 鐙勮�愬厠
-                            eSVideoInfo.HomeId = jpushMessageInfo.HomeId;
-                            eSVideoInfo.callId = json["callId"].ToString();
-                            eSVideoInfo.Lc_DeviceId = json["deviceId"].ToString();
-                            eSVideoInfo.DeviceName = json["deviceName"].ToString();
-                            eSVideoInfo.deviceSipAccount = json["deviceSipAccount"].ToString();
-                            eSVideoInfo.spk = json["spk"].ToString();
-
-                            //ShowAlert("鐙勮�愬厠闂ㄥ彛鏈哄懠鍙�");
-                            //鎵撳紑鍛煎彨椤甸潰
-                            HDLLinphone.Current.ShowESVideoIntercom(eSVideoInfo, InterphoneType.FREEVIEW.ToString());
-                            return;
-                        }
-
-                        //3.鎵撳紑鍛煎彨椤甸潰
-                        if (eSVideoInfo == null) return;
-                        ESOnVideo.Current.ShowESvideoVideoIntercom(eSVideoInfo, interphoneTypeEnum);
-
-                    }
                     else if (jpushMessageInfo.messageType == (PushMessageType.Prompt.ToString()))
                     {
                         ShowAlarmPushMessage(jpushMessageInfo, false);
@@ -487,8 +384,6 @@
                     UserInfo.Current.SaveUserInfo();
                     DB_ResidenceData.Instance.EixtAccount();
                     MainPage.Log("閫�鍑鸿处鍙锋竻绌烘暟鎹�");
-                    //4.娉ㄩ攢HDLSIP璐﹀彿鐧诲綍 2021-08-20
-                    HDLLinphone.Current.LogoutAllAccount();
                     MainPage.Log("娉ㄩ攢HDLSIP璐﹀彿鐧诲綍");
 
 #if __IOS__
diff --git a/HDL_ON/DAL/ThirdPartySdk/ESOnVideo.cs b/HDL_ON/DAL/ThirdPartySdk/ESOnVideo.cs
index 8441526..707f12f 100644
--- a/HDL_ON/DAL/ThirdPartySdk/ESOnVideo.cs
+++ b/HDL_ON/DAL/ThirdPartySdk/ESOnVideo.cs
@@ -137,36 +137,36 @@
 
                 Shared.Application.Activity.StartActivity(intent);
             }
-            else if (interphoneType == InterphoneType.FLVI.ToString())
-            {
+            //else if (interphoneType == InterphoneType.FLVI.ToString())
+            //{
 
-                intent = new Intent(Shared.Application.Activity, typeof(HDL_ON_Android.VideoActivity));
-                intent.PutExtra("ESVideoUUID", mESVideoInfo.ESVideoUUID);
-                intent.PutExtra("uuid", mESVideoInfo.uuid);
-                intent.PutExtra("DeviceName", mESVideoInfo.DeviceName);
-                intent.PutExtra("cmtID", mESVideoInfo.cmtID);
-                intent.PutExtra("roomno", mESVideoInfo.roomno);
-                intent.PutExtra("unitno", mESVideoInfo.unitno);
-                intent.PutExtra("HomeID", PirSend.HomeId);
-                intent.PutExtra("callId", mESVideoInfo.callId);
-                intent.PutExtra("Type", 0);
+            //    intent = new Intent(Shared.Application.Activity, typeof(HDL_ON_Android.VideoActivity));
+            //    intent.PutExtra("ESVideoUUID", mESVideoInfo.ESVideoUUID);
+            //    intent.PutExtra("uuid", mESVideoInfo.uuid);
+            //    intent.PutExtra("DeviceName", mESVideoInfo.DeviceName);
+            //    intent.PutExtra("cmtID", mESVideoInfo.cmtID);
+            //    intent.PutExtra("roomno", mESVideoInfo.roomno);
+            //    intent.PutExtra("unitno", mESVideoInfo.unitno);
+            //    intent.PutExtra("HomeID", PirSend.HomeId);
+            //    intent.PutExtra("callId", mESVideoInfo.callId);
+            //    intent.PutExtra("Type", 0);
 
 
 
-                Shared.Application.Activity.StartActivity(intent);
-            }
-            else if (interphoneType == InterphoneType.HDL.ToString())
-            {
-                //HDLLinphone 鐙勮�愬厠
-                HDLLinphone.Current.ShowESVideoMonitor(mESVideoInfo, InterphoneType.HDL.ToString());
-            }
-            else if (interphoneType == InterphoneType.FREEVIEW.ToString())
-            {
-                string sip_account = "sip:D" + mESVideoInfo.deviceCode + "@139.159.157.75:46000";
+            //    Shared.Application.Activity.StartActivity(intent);
+            //}
+            //else if (interphoneType == InterphoneType.HDL.ToString())
+            //{
+            //    //HDLLinphone 鐙勮�愬厠
+            //    HDLLinphone.Current.ShowESVideoMonitor(mESVideoInfo, InterphoneType.HDL.ToString());
+            //}
+            //else if (interphoneType == InterphoneType.FREEVIEW.ToString())
+            //{
+            //    string sip_account = "sip:D" + mESVideoInfo.deviceCode + "@139.159.157.75:46000";
 
-                mESVideoInfo.deviceSipAccount = sip_account;
-                HDLLinphone.Current.ShowESVideoMonitor(mESVideoInfo, InterphoneType.FREEVIEW.ToString());
-            }
+            //    mESVideoInfo.deviceSipAccount = sip_account;
+            //    HDLLinphone.Current.ShowESVideoMonitor(mESVideoInfo, InterphoneType.FREEVIEW.ToString());
+            //}
             else
             {
                 HDLUtils.WriteLine("鏈鎺ワ紝涓嶆敮鎸佺洃瑙�");
@@ -268,28 +268,28 @@
                 Shared.Application.Activity.StartActivity(intent);
 
             }
-            else if (interphoneType == InterphoneType.HDL.ToString())
-            {
-                //HDL Linphone 鐙勮�愬厠
+            //else if (interphoneType == InterphoneType.HDL.ToString())
+            //{
+            //    //HDL Linphone 鐙勮�愬厠
            
 
-            }
-            else if (interphoneType == InterphoneType.FLVI.ToString())
-            {
-                //寰呭垹鍑忎笉蹇呰鍙傛暟
-                intent = new Intent(Shared.Application.Activity, typeof(HDL_ON_Android.VideoActivity));
-                intent.PutExtra("ESVideoUUID", mESVideoInfo.ESVideoUUID);
-                intent.PutExtra("uuid", mESVideoInfo.uuid);
-                intent.PutExtra("DeviceName", mESVideoInfo.DeviceName);
-                intent.PutExtra("cmtID", mESVideoInfo.cmtID);
-                intent.PutExtra("roomno", mESVideoInfo.roomno);
-                intent.PutExtra("unitno", mESVideoInfo.unitno);
-                intent.PutExtra("HomeID", PirSend.HomeId);
-                intent.PutExtra("callId", mESVideoInfo.callId);
-                intent.PutExtra("Type", 1);
+            //}
+            //else if (interphoneType == InterphoneType.FLVI.ToString())
+            //{
+            //    //寰呭垹鍑忎笉蹇呰鍙傛暟
+            //    intent = new Intent(Shared.Application.Activity, typeof(HDL_ON_Android.VideoActivity));
+            //    intent.PutExtra("ESVideoUUID", mESVideoInfo.ESVideoUUID);
+            //    intent.PutExtra("uuid", mESVideoInfo.uuid);
+            //    intent.PutExtra("DeviceName", mESVideoInfo.DeviceName);
+            //    intent.PutExtra("cmtID", mESVideoInfo.cmtID);
+            //    intent.PutExtra("roomno", mESVideoInfo.roomno);
+            //    intent.PutExtra("unitno", mESVideoInfo.unitno);
+            //    intent.PutExtra("HomeID", PirSend.HomeId);
+            //    intent.PutExtra("callId", mESVideoInfo.callId);
+            //    intent.PutExtra("Type", 1);
 
-                Shared.Application.Activity.StartActivity(intent);
-            }
+            //    Shared.Application.Activity.StartActivity(intent);
+            //}
             else
             {
                 HDLUtils.WriteLine("鏈敮鎸佺殑鍙瀵硅绫诲瀷");
@@ -853,7 +853,7 @@
         /// <summary>
         /// 涓版灄骞冲彴
         /// </summary>
-        FLVI,
+        //FLVI,
         /// <summary>
         /// 澶у崕鍙瀵硅骞冲彴
         /// </summary>
@@ -865,11 +865,11 @@
         /// <summary>
         /// 鐙勮�愬厠 HDL Linphone
         /// </summary>
-        HDL,
+        //HDL,
         /// <summary>
         /// 鍏ㄨ閫氬璁�
         /// </summary>
-        FREEVIEW,
+        //FREEVIEW,
 
     }
 }
diff --git a/HDL_ON/DAL/ThirdPartySdk/HDLLinphone.cs b/HDL_ON/DAL/ThirdPartySdk/HDLLinphone.cs
deleted file mode 100644
index d26ebf5..0000000
--- a/HDL_ON/DAL/ThirdPartySdk/HDLLinphone.cs
+++ /dev/null
@@ -1,936 +0,0 @@
-锘縰sing System;
-using System.Collections.Generic;
-using System.Threading;
-
-using HDL_ON;
-using HDL_ON.DAL.Server;
-using HDL_ON.Entity;
-
-#if __Android__
-using Android.App;
-using Android.Content;
-using Android.Graphics;
-using Android.Widget;
-using Com.Hdl.Hdllinphonesdk;
-#else
-using Foundation;
-using UIKit;
-using Shared.IOS.HDLLinphoneSDK;
-#endif
-
-namespace Shared
-{
-    /// <summary>
-    /// 鐩墠鏄瘡涓綇瀹呭搴斾竴涓猄IP璐﹀彿锛屽垏鎹綇瀹呴渶瑕侀噸鏂拌幏鍙朣IP璐﹀彿
-    /// </summary>
-    public class HDLLinphone
-    {
-        /// <summary>
-        /// 
-        /// </summary>
-        public HDLLinphone()
-        {
-           
-        }
-        /// <summary>
-        /// 
-        /// </summary>
-        private static HDLLinphone m_Current = null;
-        /// <summary>
-        /// 
-        /// </summary>
-        public static HDLLinphone Current
-        {
-            get
-            {
-                if (m_Current == null)
-                {
-                    m_Current = new HDLLinphone();
-                }
-                return m_Current;
-            }
-        }
-
-     
-        /// <summary>
-        /// 褰撳墠浣忓畢鏄惁鏀寔鍙瀵硅
-        /// </summary>
-        public bool IsEnable = false;
-        /// <summary>
-        /// 褰撳墠瑙嗛閫氳瘽鏄惁涓鸿嚜鐮�
-        /// </summary>
-        public bool IsSelfResearch = false;
-        /// <summary>
-        /// 鏄惁鑷姩璺宠浆鍛煎彨椤甸潰,
-        /// false锛氭敹鍒版帹閫佸苟涓斿凡缁忔敹鍒皊ip鍛煎彨鎵嶈烦杞懠鍙〉闈�
-        /// true锛氬師鐢熸敹鍒板懠鍙┈涓婅烦杞懠鍙〉闈紝涓嶇瓑寰呮帹閫佽繃鏉�
-        /// </summary>
-        bool IsAutoJumpCallView = true;
-        /// <summary>
-        /// 鏄惁鍒濆鍖栦簡SDK
-        /// </summary>
-        bool IsInitSdk;
-        /// <summary>
-        /// 褰撳墠鐧诲綍鐨凷ip璐﹀彿
-        /// </summary>
-        HDLSipInfo currentHDLSipInfo;
-        /// <summary>
-        /// 鍙瀵硅璁惧鍙傛暟
-        /// </summary>
-        HDLCallVideoInfo mHDLCallVideoInfo;
-
-        #region 鈻�  --  鍒濆鍖朣DK_______________________________
-        /// <summary>
-        /// 鍒濆鍖朣DK
-        /// </summary>
-        void InitLinphone()
-        {
-            //闃叉閲嶅鍒濆鍖�
-            if (IsInitSdk) return;
-
-            IsInitSdk = true;
-
-#if __IOS__
-
-            Shared.IOS.HDLLinphoneSDK.HDLLinPhoneSDK.Instance().InitalLinPhone();
-            //璁剧疆鏀跺埌鏉ョ數鍚庛�佹槸鍚﹂渶鑷姩璺宠浆鍛煎彨椤甸潰鏂规
-            Shared.IOS.HDLLinphoneSDK.HDLLinPhoneSDK.Instance().IsAutoJumpCallView = IsAutoJumpCallView;
-            //璁剧疆Listener鐩戝惉(Shared.IOS.HDLLinphoneSDK)
-            mOnHDLLinphoneCallDelegate = new OnHDLLinphoneCallDelegate(this);
-            Console.WriteLine(UserInfo.Current.ID);
-            Shared.IOS.HDLLinphoneSDK.HDLLinPhoneSDK.Instance().HdlLinphoneCallDelegate = mOnHDLLinphoneCallDelegate;
-#else
-            HDLLinphoneKit.Instance.InitLinphone(Application.Activity);
-            //璁剧疆鏀跺埌鏉ョ數鍚庛�佹槸鍚﹂渶鑷姩璺宠浆鍛煎彨椤甸潰鏂规
-            HDLLinphoneKit.Instance.AutoJumpCallView = IsAutoJumpCallView;
-            //璁剧疆Listener鐩戝惉
-            setOnHDLLinphoneCallListener();
-#endif
-        }
-
-        /// <summary>
-        /// 璁剧疆sip鐧诲綍璐﹀彿
-        /// </summary>
-        /// <param name="mHDLSipInfo"></param>
-        public void SetAccountAndLogin(HDLSipInfo mHDLSipInfo, string mInterphoneType)
-        {
-
-            this.currentHDLSipInfo = mHDLSipInfo;
-
-            if (mHDLSipInfo == null) {
-                //new alert
-                return;
-            }
-
-
-
-            //鐧诲綍sip鏈嶅姟鍣�
-#if __IOS__
-            Shared.IOS.HDLLinphoneSDK.HDLLinPhoneSDK.Instance().Login(mHDLSipInfo.sipAccount, mHDLSipInfo.sipPasswd, mHDLSipInfo.realm);
-#else
-            if (mInterphoneType == InterphoneType.FREEVIEW.ToString())
-            {
-                HDLLinphoneKit.Instance.SetAccountAndLogin(
-                    mHDLSipInfo.sipAccount,
-                    mHDLSipInfo.sipPasswd,
-                    mHDLSipInfo.realm,
-                    //"sip:139.159.157.75:47000;transport=udp",
-                    HDLLinphoneKit.InterPhoneTypeFreeview
-                    );
-            }
-            else
-            {
-                HDLLinphoneKit.Instance.SetAccountAndLogin(
-                   mHDLSipInfo.sipAccount,
-                   mHDLSipInfo.sipPasswd,
-                   mHDLSipInfo.realm,
-                   //mHDLSipInfo.proxy+ ";transport=udp",
-                   //"sip:139.159.157.75:47000;transport=udp",
-                   HDLLinphoneKit.InterPhoneTypeHdl
-                   );
-            }
-#endif
-        }
-
-        /// <summary>
-        /// 娉ㄩ攢鎵�鏈夎处鍙�
-        /// </summary>
-        public void LogoutAllAccount() {
-            //娌″垵濮嬪寲杩囧垯杩斿洖
-            if (!IsInitSdk) return;
-
-            this.currentHDLSipInfo = null;
-            this.mHDLCallVideoInfo = null;
-#if __IOS__
-
-            Shared.IOS.HDLLinphoneSDK.HDLLinPhoneSDK.Instance().LogoutAllLinphoneUser();
-#else
-            if (HDLLinphoneKit.Instance != null)
-            {
-                HDLLinphoneKit.Instance.Logout();
-            }
-            else
-            {
-
-            }
-#endif
-        }
-
-        /// <summary>
-        /// 娓呴櫎閰嶇疆琛�
-        /// </summary>
-        public void ClearProxyConfig()
-        {
-#if __IOS__
-
-            Shared.IOS.HDLLinphoneSDK.HDLLinPhoneSDK.Instance().ClearAllConfigs();
-#else
-            HDLLinphoneKit.Instance.ClearProxyConfig();
-#endif
-        }
-
-        #endregion
-
-        #region 鈻�  --  鑾峰彇sip璐﹀彿_______________________________
-        /// <summary>
-        /// 鑾峰彇褰撳墠浣忓畢鐨凷IP璐﹀彿
-        /// </summary>
-        public HDLSipInfo GetHDLSipInfo(string homeId)
-        {
-            Dictionary<string, object> d = new Dictionary<string, object>();
-            d.Add("homeId", homeId);
-
-            var requestJson = HttpUtil.GetSignRequestJson(d);
-            var resultObj = HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_VideoDevice_GetSipAccount, requestJson);
-
-            if (resultObj.Code == StateCode.SUCCESS)
-            {
-                if (string.IsNullOrEmpty(resultObj.Data.ToString()))
-                {
-                    //鎺х殑璇濅唬琛ㄥ綋鍓嶄綇瀹呬笉鏀寔
-                    return null;
-                }
-                else
-                {
-                    var info = Newtonsoft.Json.JsonConvert.DeserializeObject<HDLSipInfo>(resultObj.Data.ToString());
-                    return info;
-                }
-            }
-            else
-            {
-                return null;
-            }
-
-        }
-
-        /// <summary>
-        /// 璇锋眰鏈嶅姟鍣ㄨ幏鍙栧綋鍓嶄綇瀹匰ip璐﹀彿淇℃伅骞跺垵濮嬪寲LinphoneSDK鍜岀櫥褰�
-        /// </summary>
-        /// <param name="homeId"></param>
-        public void GetHDLSipInfoAndInitSDK(HDLCallVideoInfo mHDLCallVideoInfo, bool clearCallInfo = true)
-        {
-            try
-            {
-                //鍏堟竻绌哄懠鍙拰鐩戣璁惧淇℃伅
-                if (clearCallInfo)
-                {
-                    //InitCallInfo(null);//閫犳垚鎺ユ敹鍛煎彨鏃跺紑閿佸紑閿佸紓甯�
-                }
-
-                HDLSipInfo mHDLSipInfo = GetHDLSipInfo(mHDLCallVideoInfo.HomeId);
-                if (mHDLSipInfo != null)
-                {
-                    Application.RunOnMainThread(() =>
-                    {
-                        try
-                        {
-                            InitLinphone();
-                        }
-                        catch (Exception ex)
-                        {
-                            MainPage.Log($"InitLinphone exception : {ex.Message}");
-                        }
-                        mHDLSipInfo.homeId = mHDLCallVideoInfo.HomeId;
-                        try { 
-                            SetAccountAndLogin(mHDLSipInfo, mHDLCallVideoInfo.InterphoneType);
-                        }
-                        catch (Exception ex)
-                        {
-                            MainPage.Log($"SetAccountAndLogin exception : {ex.Message}");
-                        }
-                        Utlis.WriteLine("CALL 鑾峰彇SIP璐﹀彿鎴愬姛锛�" + mHDLSipInfo.sipAccount);
-                    });
-                }
-                else
-                {
-                    //Application.RunOnMainThread(() =>
-                    //{
-                    //    new Alert("", $"鑾峰彇Sip璐﹀彿淇℃伅澶辫触.", "纭畾").Show();
-                    //});
-                }
-            }
-            catch { }
-
-        }
-        #endregion
-
-
-        #region 鈻�  -- 鍔ㄤ綔鍥炶皟鍜屽師鐢熶氦浜掞紝鎻愪氦璁板綍鍒颁簯绔痏______________________________
-       
-        /// <summary>
-        /// 鍒濆鍖栧懠鍙弬鏁�
-        /// </summary>
-        /// <param name="mHDLCallVideoInfo"></param>
-        /// <param name="mInterphoneType"></param>
-        void InitCallInfo(HDLCallVideoInfo mHDLCallVideoInfo)
-        {
-            this.mHDLCallVideoInfo = mHDLCallVideoInfo;
-        }
-
-        /// <summary>
-        /// 鍒ゆ柇callId鏄惁涓虹┖
-        /// </summary>
-        /// <returns></returns>
-        bool CheckmHDLCallVideoInfoIsNullOrEmpty()
-        {
-            return (mHDLCallVideoInfo == null || string.IsNullOrEmpty(mHDLCallVideoInfo.CallId));
-        }
-
-        /// <summary>
-        /// 鎴浘鎴愬姛 鏆傛椂搴熷純
-        /// </summary>
-        public void ScreenshotSuccessfulAction(byte[] dataBytes)
-        {
-            //Utlis.WriteLine("ScreenshotSuccessfulAction");
-
-            if (CheckmHDLCallVideoInfoIsNullOrEmpty()) return;
-
-            new Thread(() =>
-            {
-                //var imageName = Guid.NewGuid().ToString();
-                Dictionary<string, object> dic = new Dictionary<string, object>();
-                dic.Add("callId", mHDLCallVideoInfo.CallId);
-                dic.Add("images", dataBytes);
-#if __IOS__
-                dic.Add("imagesName", "_IOS.jpg");
-#else
-                dic.Add("imagesName", "_Android.jpg");
-#endif
-
-                var requestJson = HttpUtil.GetSignRequestJson(dic);
-                var revertObj = HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_FL_Screenshot, requestJson);
-                if (revertObj.Code == StateCode.SUCCESS)
-                {
-                    //Utlis.WriteLine("POST 鎴浘涓婁紶鎴愬姛");
-                }
-                else
-                {
-                    Utlis.WriteLine("POST 鎴浘涓婁紶澶辫触 code: " + revertObj.Code);
-                }
-
-            })
-            { IsBackground = false }.Start();
-
-        }
-
-        //DateTime UnlockDateTime = DateTime.MinValue;
-        #endregion
-
-        #region 鈻�  --  鏂版帴鍚拰寮�閿佹帴鍙______________________________
-        /// <summary>
-        /// 鍙瀵硅寮�閿�
-        /// </summary>
-        public void HDLUnlockAction()
-        {
-            //Utlis.WriteLine("UnlockAction");
-
-            if (mHDLCallVideoInfo == null) return;
-
-            new Thread(() =>
-            {
-                Dictionary<string, object> dic = new Dictionary<string, object>();
-                dic.Add("deviceId", mHDLCallVideoInfo.DeviceId);//璁惧id
-                dic.Add("callId", mHDLCallVideoInfo.CallId);//褰撳墠鍛煎彨id
-                dic.Add("interphoneType", mHDLCallVideoInfo.InterphoneType);//鍙瀵硅鍘傚绫诲瀷
-                dic.Add("homeId", mHDLCallVideoInfo.HomeId);//浣忓畢ID
-                var requestJson = HttpUtil.GetSignRequestJson(dic);
-                var revertObj = HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_VideoDevice_OpenDoorbell, requestJson);
-
-                Application.RunOnMainThread(() =>
-                {
-                    if(revertObj == null)
-                    {
-                        return;
-                    }
-
-#if __IOS__
-                    if (revertObj.Code == StateCode.SUCCESS)
-                    {
-                        //鍜屽師鐢熺洃鎺х晫闈氦浜掋�佸彂閫佸紑閿佹垚鍔熼�氱煡
-                        NSNotificationCenter.DefaultCenter.PostNotificationName("lcCallDelegateOpenDoorSuccess", null);
-                    }
-                    else
-                    {
-                        Utlis.WriteLine("POST 寮�閿佸け璐� code: " + revertObj.Code);
-                    }
-#else
-                    if (revertObj.Code == StateCode.SUCCESS)
-                    {
-                        HDLLinphoneKit.Instance.OnOpenSuccess();
-                    }
-                    else
-                    {
-                        Utlis.WriteLine("POST 寮�閿佸け璐� code: " + revertObj.Code);
-                        HDLLinphoneKit.Instance.OnOpenError(revertObj.message);
-                    }
-#endif
-
-                });
-
-
-            })
-            { IsBackground = false }.Start();
-        }
-
-        /// <summary>
-        /// 鏇存敼閫氳瘽鐘舵��
-        /// </summary>
-        public void HDLUpdateCallStatus(CallStatusType callStatusType, InterphoneType interphoneType, int callDuration = 0)
-        {
-
-            if (CheckmHDLCallVideoInfoIsNullOrEmpty()) return;
-
-            new Thread(() =>
-            {
-                Dictionary<string, object> dic = new Dictionary<string, object>();
-                dic.Add("callId", mHDLCallVideoInfo.CallId);//鍛煎彨id
-                dic.Add("callStatus", callStatusType.ToString());//鍙敤鍊�:MISSED,RECEIVED,REJECT
-                dic.Add("interphoneTypeEnum", interphoneType.ToString());
-                if (callStatusType == CallStatusType.RECEIVED && callDuration > 0)
-                {
-                    dic.Add("callDuration", callDuration);//閫氳瘽鏃堕暱锛堢锛�
-                }
-
-                var requestJson = HttpUtil.GetSignRequestJson(dic);
-                var revertObj = HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_VideoDevice_UpdateCallStatus, requestJson);
-                if (revertObj.Code == StateCode.SUCCESS)
-                {
-
-                }
-                else
-                {
-                    Utlis.WriteLine("POST 鏇存柊鐘舵�佸け璐� code: " + revertObj.Code);
-                }
-
-            })
-            { IsBackground = false }.Start();
-
-        }
-        #endregion
-
-     
-        #region 鈻�  --  璺宠浆鐩戞帶椤甸潰_______________________________
-        /// <summary>
-        /// 璺宠浆鐩戞帶椤甸潰
-        /// </summary>
-        /// <param name="mESVideoInfo"></param>
-        public void ShowESVideoMonitor(ESVideoInfo mESVideoInfo,string mInterphoneType)
-        {
-            InitLinphone();
-            //sip璐﹀彿涓虹┖
-            if (string.IsNullOrEmpty(mESVideoInfo.deviceSipAccount))
-            {
-
-                HDLCommon.Current.ShowAlert(Language.StringByID(StringId.shebeibucunzai));
-                return;
-            }
-            HDLCallVideoInfo mHDLCallVideoInfo = new HDLCallVideoInfo();
-            mHDLCallVideoInfo.HomeId = mESVideoInfo.HomeId;
-            mHDLCallVideoInfo.DeviceId = mESVideoInfo.Lc_DeviceId;
-            mHDLCallVideoInfo.DeviceName = mESVideoInfo.DeviceName;
-            mHDLCallVideoInfo.InterphoneType = mInterphoneType;
-            mHDLCallVideoInfo.DeviceSipAccount = mESVideoInfo.deviceSipAccount;//鐩戣涓诲姩鍛煎彨闂ㄥ彛鏈烘椂鐢ㄥ埌
-            InitCallInfo(mHDLCallVideoInfo);
-
-#if __IOS__
-
-            if (mHDLCallVideoInfo.spk == "door.gate")
-            {
-                Shared.IOS.HDLLinphoneSDK.HDLLinPhoneSDK.Instance().CallHDLSRWithUserName(mHDLCallVideoInfo.DeviceSipAccount, mHDLCallVideoInfo.DeviceName);   
-            }else{
-                Shared.IOS.HDLLinphoneSDK.HDLLinPhoneSDK.Instance().CallWithUserName(mHDLCallVideoInfo.DeviceSipAccount, mHDLCallVideoInfo.DeviceName);
-            }
-            
-
-#else
-            //1.鍏堝懠鍙澶�
-            Com.Hdl.Hdllinphonesdk.HDLLinphoneKit.Instance.CallTo(mHDLCallVideoInfo.DeviceSipAccount, true);
-            //2.璺宠浆鎵撳紑鐩戞帶椤甸潰
-            var intent = new Intent(Shared.Application.Activity, typeof(Com.Hdl.Hdllinphonesdk.Activity.HDLLinphoneMonitorActivity)); ;
-            intent.PutExtra(HDLLinphoneKit.KeyTitleName, mHDLCallVideoInfo.DeviceName);//浼犲叆璁惧鍚嶇О涓烘樉绀烘爣棰�
-            Shared.Application.Activity.StartActivity(intent);
-#endif
-
-        }
-        #endregion
-
-
-        #region 鈻�  --  璺宠浆鍛煎彨椤甸潰_______________________________
-        /// <summary>
-        /// 鏀跺埌鎺ㄩ�侊紝鍚庡垽鏂懠鍙綇瀹呮槸鍚︿负褰撳墠浣忓畢锛屼笉鏄殑璇濋噸鏂拌幏鍙朣IP璐﹀彿骞剁櫥褰�
-        /// </summary>
-        /// <param name="mESVideoInfo"></param>
-        public void ShowESVideoIntercom(ESVideoInfo mESVideoInfo,string mInterphoneType)
-        {
-            InitLinphone();
-
-            HDLCallVideoInfo mHDLCallVideoInfo = new HDLCallVideoInfo();
-            mHDLCallVideoInfo.CallId = mESVideoInfo.callId;
-            mHDLCallVideoInfo.HomeId = mESVideoInfo.HomeId;
-            mHDLCallVideoInfo.DeviceId = mESVideoInfo.Lc_DeviceId;
-            mHDLCallVideoInfo.DeviceName = mESVideoInfo.DeviceName;
-            mHDLCallVideoInfo.InterphoneType = mInterphoneType;
-            mHDLCallVideoInfo.DeviceSipAccount = mESVideoInfo.deviceSipAccount;
-            mHDLCallVideoInfo.spk = mESVideoInfo.spk;
-            InitCallInfo(mHDLCallVideoInfo);
-
-            //褰撳墠鍛煎彨鏉ョ數鐨勪綇瀹呭拰涔嬪墠娉ㄥ唽鐧诲綍鐨勪綇瀹呬竴鑷寸殑鎯呭喌涓�
-            if (currentHDLSipInfo != null && currentHDLSipInfo.homeId == mESVideoInfo.HomeId)
-            {
-                Utlis.WriteLine("CALL 鏀跺埌鎺ㄩ�� 鎺ㄩ�佷綇瀹呭拰涔嬪墠娉ㄥ唽鐧诲綍鐨勪綇瀹呬竴鑷�");
-                CheckCallStateAndGotoPage();
-            }
-            else
-            {
-                //娉ㄦ剰锛氫箣鍓嶆病鐧诲綍SIP璐﹀彿鎴栬�呬綇瀹呬笉涓�鑷寸殑鎯呭喌涓嬮渶瑕侀噸鏂拌幏鍙朣IP璐﹀彿
-                //鑾峰彇鍛煎彨浣忓畢鐨凷IP璐﹀彿骞剁櫥褰�
-                Utlis.WriteLine("CALL 鏀跺埌鎺ㄩ�� 鍏朵粬浣忓畢锛岄噸鏂拌幏鍙栧懠鍙綇瀹呯殑SIP璐﹀彿骞剁櫥褰�");
-                new Thread(() =>
-                {
-                    GetHDLSipInfoAndInitSDK(mHDLCallVideoInfo, false);
-                })
-                { IsBackground = false }.Start();
-
-                //
-                CheckCallStateAndGotoPage();
-
-            }
-
-        }
-
-        /// <summary>
-        /// 妫�娴嬫潵鐢电姸鎬侊紝鍒ゆ柇鏄惁椹笂鎵撳紑鍛煎彨椤甸潰锛屽鏋滆繕娌℃潵鐢靛垯寮�鍚嚎绋嬫娴嬬瓑寰�
-        /// </summary>
-        /// <param name="mESVideoInfo"></param>
-        public void CheckCallStateAndGotoPage()
-        {
-            if (mHDLCallVideoInfo.spk == "door.gate")
-            {
-#if __IOS__
-                //鑷爺鍙瀵硅
-                Shared.IOS.HDLLinphoneSDK.HDLLinPhoneSDK.Instance().GotoHDLSRLinphoneIntercomVC(mHDLCallVideoInfo.DeviceName, mHDLCallVideoInfo.DeviceSipAccount);
-#else
-                var intent = new Intent(Shared.Application.Activity, typeof(Com.Hdl.Hdllinphonesdk.Activity.HDLLinphoneReverseCallActivity));  
-                if (mHDLCallVideoInfo != null)
-                {
-                    //intent.PutExtra(HDLLinphoneKit.KeyTitleName, mHDLCallVideoInfo.DeviceName);
-                    intent.PutExtra("lpTitleName", mHDLCallVideoInfo.DeviceName);
-                    intent.PutExtra("lpSipAccount", mHDLCallVideoInfo.DeviceSipAccount);
-                }
-                Shared.Application.Activity.StartActivity(intent);
-#endif
-            }
-            else {
-                //鐙勮�愬厠鍙瀵硅
-                //濡傛灉寮�鍚簡鑷姩璺宠浆鏂规锛屽垯鏃犻渶缁х画涓嬮潰澶勭悊銆佹棤闇�鎵嬪姩璺宠浆
-                if (IsAutoJumpCallView) return;
-                //鍏堢粨鏉熸帀涔嬪墠鐨勭嚎绋�
-                EndCheckIncomingCallThread();
-                //妫�娴嬫槸鍚︽潵鐢典簡濡傛灉鏄洿鎺ヨ皟鏁村懠鍙〉闈㈠鏋滀笉鏄垯寮�鍚嚎绋嬬瓑寰呭垽鏂�(Shared.IOS.HDLLinphoneSDK)
-                if (IsIncomingReceivedCallState())
-                {
-                    Utlis.WriteLine("CALL 宸茬粡鏉ョ數浜嗐�傘�傘�傛墦寮�鍛煎彨椤甸潰");
-                    GoToHDLLinphoneIntercomActivity();
-                }
-                else
-                {
-                    //濡傛灉杩樻病鏉ョ數 寮�鍚嚎绋嬫娴�
-                    StartCheckIncomingCallThread();
-                }
-            }
-
-
-        }
-
-        /// <summary>
-        /// 鏄惁鏉ョ數鐘舵��(Shared.IOS.HDLLinphoneSDK)
-        /// </summary>
-        /// <returns></returns>
-        bool IsIncomingReceivedCallState()
-        {
-#if __IOS__
-            return Shared.IOS.HDLLinphoneSDK.HDLLinPhoneSDK.Instance().IsIncomingReceivedCallState;
-#else
-            return HDLLinphoneKit.Instance.IsIncomingReceivedCallState;
-#endif
-        }
-
-        /// <summary>
-        /// 璺宠浆鎵撳紑鍘熺敓鐨勫懠鍙〉闈�
-        /// </summary>
-        void GoToHDLLinphoneIntercomActivity() {
-
-#if __IOS__
-
-            Shared.IOS.HDLLinphoneSDK.HDLLinPhoneSDK.Instance().GotoHDLLinphoneIntercomVC(mHDLCallVideoInfo.DeviceName);
-
-#else
-            var intent = new Intent(Shared.Application.Activity, typeof(Com.Hdl.Hdllinphonesdk.Activity.HDLLinphoneIntercomActivity));
-            if (mHDLCallVideoInfo != null)
-            {
-                //intent.PutExtra(HDLLinphoneKit.KeyTitleName, mHDLCallVideoInfo.DeviceName);
-                intent.PutExtra(HDLLinphoneKit.KeyTitleName, mHDLCallVideoInfo.CallId);
-            }
-            Shared.Application.Activity.StartActivity(intent);
-#endif
-
-        }
-
-
-        /// <summary>
-        /// 妫�娴嬫潵鐢电嚎绋�
-        /// </summary>
-        Thread checkIncomingCallThread = null;
-        /// <summary>
-        /// 妫�娴嬬嚎绋嬫寔缁椂闂�
-        /// </summary>
-        const int MAX_THREAD_TIME = 30;
-        /// <summary>
-        /// 绾跨▼缁撴潫
-        /// </summary>
-        int threadTime = MAX_THREAD_TIME;
-        /// <summary>
-        /// 寮�鍚娴嬫潵鐢电嚎绋�
-        /// </summary>
-        void StartCheckIncomingCallThread()
-        {
-            try
-            {
-                Utlis.WriteLine("CALL 杩樻病鏉ョ數锛屽紑鍚嚎绋�");
-                threadTime = MAX_THREAD_TIME;
-                //缁撴潫涔嬪墠鐨勭嚎绋�
-                EndCheckIncomingCallThread();
-                //鏂板缓绾跨▼
-                checkIncomingCallThread = new Thread(() =>
-                    {
-                        try
-                        {
-                            //15S鍚庤嚜鍔ㄧ粨鏉熺嚎绋�
-                            while (threadTime > 0)
-                            {
-                                threadTime--;
-                                Utlis.WriteLine("CALL 妫�娴嬩腑...." + threadTime);
-                                Thread.Sleep(1000);
-                                //鏉ョ數浜嗭紝璺宠浆鍛煎彨椤甸潰(Shared.IOS.HDLLinphoneSDK)
-                                if (IsIncomingReceivedCallState())
-                                {
-                                    Utlis.WriteLine("CALL 鏉ョ數浜嗐�傘�傘�傛墦寮�鍛煎彨椤甸潰");
-                                    threadTime = 0;//璺冲嚭寰幆锛屽叧闂嚎绋�
-                                    Application.RunOnMainThread(() =>
-                                    {
-                                        GoToHDLLinphoneIntercomActivity();
-                                    });
-
-                                }
-                            }
-                          
-                          
-                        }
-                        catch { }
-                    });
-                //寮�鍚嚎绋�
-                checkIncomingCallThread.Start();
-            }
-            catch { }
-        }
-
-        /// <summary>
-        /// 缁撴潫绾跨▼
-        /// </summary>
-        void EndCheckIncomingCallThread()
-        {
-            if (checkIncomingCallThread != null)
-            {
-                try
-                {
-                    checkIncomingCallThread.Interrupt();
-                }
-                catch {
-
-                }
-
-                checkIncomingCallThread = null;
-                Utlis.WriteLine("CALL 鍏堢粨鏉熺嚎绋�");
-            }
-        }
-
-        /// <summary>
-        /// 鍒ゆ柇绾跨▼鏄惁鍚姩浜�
-        /// </summary>
-        /// <returns></returns>
-        public bool CheckIncomingCallThreadIsNull()
-        {
-            return checkIncomingCallThread == null || checkIncomingCallThread.ThreadState != ThreadState.Running;
-        }
-
-        #endregion
-
-
-        #region 鈻�  --  Android鐩稿叧鎿嶄綔_______________________________
-
-#if __Android__
-
-        /// <summary>
-        /// 鎺ュ惉銆佹寕鏂�佸紑閿佺瓑鍔ㄤ綔鐩戝惉澶勭悊
-        /// </summary>
-        private class HDLLinphoneCallListener : Java.Lang.Object, Com.Hdl.Hdllinphonesdk.Callback.IOnHDLLinphoneCallListener
-        {
-            [Weak] HDLLinphone hdlLinphone;
-
-            public HDLLinphoneCallListener(HDLLinphone mHDLLinphone)
-            {
-                hdlLinphone = mHDLLinphone;
-            }
-
-
-            //showToast
-            void showToast(string text)
-            {
-                Toast.MakeText(Application.Activity, text, ToastLength.Short).Show();
-            }
-            /// <summary>
-            /// 鎺ュ惉浜嬩欢
-            /// </summary>
-            public void OnAnswerAction()
-            {
-                //showToast("鎺ュ惉");
-                hdlLinphone.HDLUpdateCallStatus(CallStatusType.RECEIVED, InterphoneType.HDL);
-            }
-            /// <summary>
-            /// 鎸傛柇浜嬩欢
-            /// </summary>
-            /// <param name="callDuration"></param>
-            public void OnHangUpAction(int callDuration)
-            {
-
-                //showToast("鎸傛柇 閫氳瘽鏃堕暱锛�" + callDuration);
-                hdlLinphone.HDLUpdateCallStatus(CallStatusType.RECEIVED, InterphoneType.HDL, callDuration);
-            }
-
-            /// <summary>
-            /// 鎷掓帴浜嬩欢
-            /// </summary>
-            public void OnRejectCallAction()
-            {
-                //showToast("鎷掓帴");
-                hdlLinphone.HDLUpdateCallStatus(CallStatusType.REJECT, InterphoneType.HDL);
-            }
-
-            /// <summary>
-            /// 鎴浘鎴愬姛浜嬩欢
-            /// </summary>
-            /// <param name="p0"></param>
-            public void OnScreenshotSuccessfulAction(Bitmap imgBitmap)
-            {
-                //showToast("鎴浘鎴愬姛");
-            }
-
-            /// <summary>
-            /// 寮�閿佷簨浠�
-            /// </summary>
-            public void OnUnlockAction()
-            {
-                hdlLinphone.HDLUnlockAction();
-            }
-
-            /// <summary>
-            /// 鏉ョ數浜嬩欢
-            /// </summary>
-            /// <param name="userName"></param>
-            public void OnIncomingCall(string userName)
-            {
-                Utlis.WriteLine("OnIncomingCall :" + userName);
-            }
-        }
-
-        /// <summary>
-        /// 璁剧疆鍘熺敓鐨凩istener鐩戝惉
-        /// </summary>
-        void setOnHDLLinphoneCallListener()
-        {
-            HDLLinphoneKit.Instance.OnHDLLinphoneCallListener = new HDLLinphoneCallListener(this);
-        }
-
-        /// <summary>
-        /// 娓呮閫氱煡鏍忔墍鏈夐�氱煡
-        /// </summary>
-        void CancelAllNotification()
-        {
-            NotificationManager nMgr = (NotificationManager)Application.Activity.GetSystemService(Context.NotificationService);
-            nMgr.CancelAll();
-        }
-
-#endif
-        #endregion
-
-        #region 鈻�  --  iOS鐩稿叧鎿嶄綔_______________________________
-
-#if __IOS__
-
-        #region OnHDLLinphoneCallDelegate
-        /// <summary>
-        /// 
-        /// </summary>
-        OnHDLLinphoneCallDelegate mOnHDLLinphoneCallDelegate;
-
-        /// <summary>
-        /// 
-        /// </summary>
-        public class OnHDLLinphoneCallDelegate : HDLLinphoneCallDelegate
-        {
-            [Weak] HDLLinphone hdlLinphone;
-
-            public OnHDLLinphoneCallDelegate(HDLLinphone mHDLLinphone)
-            {
-                this.hdlLinphone = mHDLLinphone;
-            }
-
-            /// <summary>
-            /// 鎺ュ惉
-            /// </summary>
-            public override void OnAnswerAction()
-            {
-                hdlLinphone.HDLUpdateCallStatus(CallStatusType.RECEIVED, InterphoneType.HDL);
-            }
-
-            /// <summary>
-            /// 鎸傛柇
-            /// </summary>
-            /// <param name="callDuration"></param>
-            public override void OnHangUpAction(int callDuration)
-            {
-                hdlLinphone.HDLUpdateCallStatus(CallStatusType.RECEIVED, InterphoneType.HDL, callDuration);
-            }
-
-            /// <summary>
-            /// 鎷掓帴
-            /// </summary>
-            public override void OnRejectCallAction()
-            {
-                hdlLinphone.HDLUpdateCallStatus(CallStatusType.REJECT, InterphoneType.HDL);
-            }
-
-            /// <summary>
-            /// 鎴浘鎴愬姛
-            /// </summary>
-            /// <param name = "image" ></ param >
-            public  void OnScreenshotSuccessfulAction(UIImage image)
-            {
-                //NSData imageData = UIImagePNGRepresentation(image); UIImage
-                NSData imageData = image.AsPNG();
-                byte[] dataBytes = new byte[imageData.Length];
-                System.Runtime.InteropServices.Marshal.Copy(imageData.Bytes, dataBytes, 0, Convert.ToInt32(imageData.Length));
-                //image.g
-                //hdlLinphone.ScreenshotSuccessfulAction(dataBytes);
-            }
-
-            /// <summary>
-            /// 寮�閿佹垚鍔�
-            /// </summary>
-            public override void OnUnlockAction()
-            {
-                hdlLinphone.HDLUnlockAction();
-            }
-
-            /// <summary>
-            /// 鏉ョ數涓�...
-            /// </summary>
-            public override void OnIncomingCall(string userName)
-            {
-                Utlis.WriteLine("OnIncomingCall :" + userName);
-            }
-
-        }
-
-        #endregion
-#endif
-
-        #endregion
-
-    }
-
-    /// <summary>
-    /// SIP鍙瀵硅鍙傛暟
-    /// </summary>
-    public class HDLCallVideoInfo
-    {
-        /// <summary>
-        /// 璁惧搴忓垪鍙凤紝閫氳蹇呰瀛楁
-        /// </summary>
-        public string DeviceId = string.Empty;
-        /// <summary>
-        /// 璁惧鍚嶇О
-        /// </summary>
-        public string DeviceName = string.Empty;
-        /// <summary>
-        /// 璁惧Sip璐﹀彿
-        /// </summary>
-        public string DeviceSipAccount = string.Empty;
-        /// <summary>
-        /// 鍛煎彨璁板綍Id
-        /// </summary>
-        public string CallId = string.Empty;
-        /// <summary>
-        /// 浣忓畢Id
-        /// </summary>
-        public string HomeId = string.Empty;
-        /// <summary>
-        /// 绫诲瀷
-        /// </summary>
-        public string InterphoneType;
-        /// <summary>
-        /// spk
-        /// </summary>
-        public string spk="";
-
-    }
-
-    /// <summary>
-    /// SIP璐﹀彿鐩稿叧淇℃伅
-    /// </summary>
-    public class HDLSipInfo
-    {
-        /// <summary>
-        /// Sip鏈嶅姟鍣�
-        /// </summary>
-        public string proxy { get; set; }
-        /// <summary>
-        /// 璁惧鍩�
-        /// </summary>
-        public string realm { get; set; }
-        /// <summary>
-        /// sip璐﹀彿
-        /// </summary>
-        public string sipAccount { get; set; }
-        /// <summary>
-        /// sipPasswd	sip瀵嗙爜
-        /// </summary>
-        public string sipPasswd { get; set; }
-        /// <summary>
-        /// 浣忓畢ID
-        /// </summary>
-        public string homeId;
-    }
-
-
-}
diff --git a/HDL_ON/HDL_ON.projitems b/HDL_ON/HDL_ON.projitems
index 313fdbb..feb09b3 100644
--- a/HDL_ON/HDL_ON.projitems
+++ b/HDL_ON/HDL_ON.projitems
@@ -454,7 +454,6 @@
     <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\4-PersonalCenter\FaceManagement\FaceSettingResultPage.cs" />
     <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\4-PersonalCenter\FaceManagement\CustomerObj.cs" />
     <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\3-Intelligence\Automation\Security.cs" />
-    <Compile Include="$(MSBuildThisFileDirectory)DAL\ThirdPartySdk\HDLLinphone.cs" />
     <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\FuntionControlView\EnvironmentalScience\A_EnvironmentalDataCenter.cs" />
     <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\2-Classification\SceneControlZone.cs" />
     <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\3-Intelligence\Automation\CalculatedDistance.cs" />
@@ -496,11 +495,6 @@
     <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\FuntionControlView\ContentView\AcContentView.cs" />
     <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\FuntionControlView\Video\WanderingAlarmPage.cs" />
     <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\FuntionControlView\Curtain\CurtainDreamPage.cs" />
-    <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\4-PersonalCenter\Visitor\VisitorHistoryPage.cs" />
-    <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\4-PersonalCenter\Visitor\VisitorQRCodePage.cs" />
-    <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\4-PersonalCenter\Visitor\TempPasswordInfo.cs" />
-    <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\4-PersonalCenter\Visitor\LpTimeDialogCallBak.cs" />
-    <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\4-PersonalCenter\Visitor\LpTipDialogCallBack.cs" />
     <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\FuntionControlView\ArmSensor\SensorMegahealth_AlarmDataStatisticsPage.cs" />
     <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\4-PersonalCenter\AddFunction\Iot_BrandListPage.cs" />
     <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\4-PersonalCenter\AddFunction\iot_BindTipPage.cs" />
diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/PersonalDataPage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/PersonalDataPage.cs
index 85a2377..070c5c1 100644
--- a/HDL_ON/UI/UI2/4-PersonalCenter/PersonalDataPage.cs
+++ b/HDL_ON/UI/UI2/4-PersonalCenter/PersonalDataPage.cs
@@ -3,7 +3,6 @@
 using HDL_ON.UI;
 using HDL_ON.UI.CSS;
 using Shared;
-using HDL_ON.UI.UI2.PersonalCenter.Visitor;
 #if IOS
 using Foundation;
 #endif
@@ -705,60 +704,6 @@
 
             }
 
-            //璁垮绠$悊
-#region 涓汉閫夐」-璁垮绠$悊
-            if (Entity.DB_ResidenceData.Instance.SupportVisitorManage)//鍒ゆ柇鏄惁鏀寔璁垮绠$悊
-            {
-                optionListView.AddChidren(new Button() { X = Application.GetRealWidth(16), Height = Application.GetRealHeight(1), Width = Application.GetRealWidth(343), BackgroundColor = CSS_Color.DividingLineColor });
-
-                visitorManagementView = new FrameLayout()
-                {
-                    Height = Application.GetRealHeight(50),
-                };
-                optionListView.AddChidren(visitorManagementView);
-
-
-                var btnVisitorManagementRight = new Button()
-                {
-                    X = Application.GetRealWidth(339),
-                    Gravity = Gravity.CenterVertical,
-                    Width = Application.GetMinRealAverage(16),
-                    Height = Application.GetMinRealAverage(16),
-                    UnSelectedImagePath = "Public/Right.png",
-                };
-                visitorManagementView.AddChidren(btnVisitorManagementRight);
-
-                btnisitorVManagementText = new Button()
-                {
-                    X = Application.GetRealWidth(16),
-                    TextAlignment = TextAlignment.CenterLeft,
-                    TextColor = CSS_Color.FirstLevelTitleColor,
-                    TextSize = CSS_FontSize.SubheadingFontSize,
-                    TextID = StringId.VisitorManage,
-                };
-                visitorManagementView.AddChidren(btnisitorVManagementText);
-
-                btnisitorVManagementText.MouseUpEventHandler = (sender, e) =>
-                {
-
-
-#if __IOS__
-                    ////鍒锋柊鎺ュ彛璇锋眰鎵�闇�瑕佺殑鍙傛暟
-                    //Foundation.NSDictionary info = new Foundation.NSDictionary("regionUrl", HttpUtil.GlobalRequestHttpsHost, "token", UserInfo.Current.LoginTokenString, "appkey", "HDL-HOME-APP-TEST", "secret", "WeJ8TY88vbakCcnvH8G1tDUqzLWY8yss", "refreshToken", UserInfo.Current.RefreshToken);
-                    //Shared.IOS.HDLFVSDK.Video.RefreshInfo(info);
-                    //////璺宠浆璁垮绠$悊鐣岄潰
-                    //Shared.IOS.HDLFVSDK.Video.ShowVisitorManager();
-#else
-                    var page = new VisitorQRCodePage();
-                    MainPage.BasePageView.AddChidren(page);
-                    page.LoadPage();
-                    MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
-#endif
-                };
-            }
-
-
-#endregion
 #endregion
             var topPaddingView2 = new FrameLayout()
             {
diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/LpTimeDialogCallBak.cs b/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/LpTimeDialogCallBak.cs
deleted file mode 100644
index 7ce425a..0000000
--- a/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/LpTimeDialogCallBak.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-锘�#if __Android__
-using System;
-using Com.Hdl.Hdllinphonesdk.Dialog;
-using Java.Interop;
-
-namespace HDL_ON.UI.UI2.PersonalCenter.Visitor
-{
-    public class LpTimeDialogCallBak : Java.Lang.Object, LpTimeDialog.IClickListenerInterface
-    {
-        public string Time;
-        private Action<string> action;
-        public LpTimeDialogCallBak(Action<string> _action)
-        {
-            this.action = _action;
-        }
-
-        public void OnCancelClick(LpTimeDialog dialog)
-        {
-            dialog.Dismiss();
-        }
-
-        public void OnConfirmClick(LpTimeDialog dialog, string time)
-        {
-            dialog.Dismiss();
-            action.Invoke(time);
-        }
-    }
-}
-#else
-
-namespace HDL_ON.UI.UI2.PersonalCenter.Visitor
-{
-    public class LpTimeDialogCallBak
-    {
-    }
-}
-#endif
\ No newline at end of file
diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/LpTipDialogCallBack.cs b/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/LpTipDialogCallBack.cs
deleted file mode 100644
index 1f123d4..0000000
--- a/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/LpTipDialogCallBack.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-锘�
-#if __Android__
-using System;
-using Com.Hdl.Hdllinphonesdk.Dialog;
-namespace HDL_ON.UI.UI2.PersonalCenter.Visitor
-{
-    public class LpTipDialogCallBack : Java.Lang.Object, LpTipDialog.IClickListenerInterface
-    {
-        Action action;
-        public LpTipDialogCallBack(Action _action)
-        {
-            this.action = _action;
-        }
-
-        public void CancelClick(LpTipDialog dialog)
-        {
-            dialog.Dismiss();
-        }
-
-        public void SureClick(LpTipDialog dialog)
-        {
-            dialog.Dismiss();
-            action.Invoke();
-        }
-    }
-}
-
-#else
-namespace HDL_ON.UI.UI2.PersonalCenter.Visitor
-{
-    public class LpTipDialogCallBack
-    {
-    }
-}
-#endif
\ No newline at end of file
diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/TempPasswordInfo.cs b/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/TempPasswordInfo.cs
deleted file mode 100644
index d9190d3..0000000
--- a/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/TempPasswordInfo.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-锘縰sing System;
-namespace HDL_ON.UI.UI2.PersonalCenter.Visitor
-{
-    public class TempPasswordInfo
-    {
-        public int homeId;
-        public String phone;
-        public int deviceId;
-        public String tempPwd;
-        public String validBeginTime;
-        public String validEndTime;//":"2022-05-09 13:00:00",
-        public int useCount;//":1,
-
-        public TempPasswordInfo()
-        {
-        }
-    }
-}
diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/VisitorHistoryPage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/VisitorHistoryPage.cs
deleted file mode 100644
index 1efd6aa..0000000
--- a/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/VisitorHistoryPage.cs
+++ /dev/null
@@ -1,143 +0,0 @@
-锘縰sing System;
-using System.Collections.Generic;
-using HDL_ON.DAL.Server;
-using HDL_ON.UI.CSS;
-using Shared;
-namespace HDL_ON.UI.UI2.PersonalCenter.Visitor
-{
-    public class VisitorHistoryPage : FrameLayout
-    {
-        private FrameLayout bodyView;
-        private VerticalScrolViewLayout bodyScrolView;
-        private List<VisitorTempPassword> pwdList;
-
-        Action backAction;// 鍚庨��鎸夐敭锛屽埛鏂癠I
-        Action action;
-
-        public override void RemoveFromParent()
-        {
-            backAction?.Invoke();
-            base.RemoveFromParent();
-        }
-
-        public VisitorHistoryPage(Action action)
-        {
-            backAction = action;
-            bodyView = this;
-        }
-
-        public void LoadPage()
-        {
-            action = () =>
-            {
-                LoadPage();
-            };
-
-            pwdList = getVisitorPasswordData();
-
-            #region 璁垮璁板綍鎸夐挳
-            bodyView.BackgroundColor = CSS_Color.BackgroundColor;
-            new TopViewDiv(bodyView, Language.StringByID(StringId.VisitorRecord)).LoadTopView();
-            #endregion
-
-            bodyScrolView = new VerticalScrolViewLayout()
-            {
-                Y = Application.GetRealHeight(64),
-                VerticalScrollBarEnabled = false,
-                BackgroundColor = CSS_Color.MainBackgroundColor,
-            };
-            bodyView.AddChidren(bodyScrolView);
-
-            foreach (VisitorTempPassword temPwd in pwdList)
-            {
-                FrameLayout itemLayout = new FrameLayout()
-                {
-                    X = Application.GetRealWidth(16),
-                    Height = Application.GetRealWidth(50),
-                    Width = Application.GetRealWidth(343),
-                };
-
-                // 璁垮浜岀淮鐮乀ext
-                itemLayout.AddChidren(new Button()
-                {
-                    Height = Application.GetRealWidth(20),
-                    Y = Application.GetRealWidth(6),
-                    Text = Language.StringByID(StringId.VisitorInvitationRecord),
-                    TextAlignment = TextAlignment.CenterLeft,
-                    TextColor = CSS_Color.text1Color,
-                    TextSize = CSS_FontSize.TextFontSize,
-                });
-
-                // 鏃堕棿Btn
-                string startTime = temPwd.validBeginTime.Replace("-", "/");
-                string endTime = temPwd.validEndTime.Replace("-", "/");
-                itemLayout.AddChidren(new Button()
-                {
-                    Height = Application.GetRealWidth(14),
-                    Y = Application.GetRealWidth(30),
-                    Text = Language.StringByID(StringId.Time) + "锛�" + startTime + " - " + endTime,
-                    TextAlignment = TextAlignment.CenterLeft,
-                    TextColor = CSS_Color.PromptingColor1,
-                    TextSize = CSS_FontSize.PromptFontSize_SecondaryLevel,
-                });
-
-                // 鍚庨��
-                itemLayout.AddChidren(new ImageView()
-                {
-                    Width = Application.GetRealWidth(16),
-                    Height = Application.GetRealWidth(16),
-                    Gravity = Gravity.CenterRight,
-                    ImagePath = "Public/Right.png",
-                });
-
-                itemLayout.AddChidren(new Button()
-                {
-                    Height = Application.GetRealWidth(1),
-                    Y = Application.GetRealWidth(49),
-                    BackgroundColor = CSS_Color.DividingLineColor,
-                });
-
-                Button btn = new Button();
-                itemLayout.AddChidren(btn);//+= (sender, e)
-                btn.MouseUpEventHandler += (sender, e) =>
-                {
-#if __IOS__
-#else
-                    VisitorQRCodePage page = new VisitorQRCodePage(action, temPwd);
-                    MainPage.BasePageView.AddChidren(page);
-                    page.LoadPage();
-                    MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
-#endif
-                };
-                bodyScrolView.AddChidren(itemLayout);
-            }
-        }
-
-        /// <summary>
-        /// 鑾峰彇璁垮涓存椂瀵嗙爜鍒楄〃
-        /// </summary>
-        private List<VisitorTempPassword> getVisitorPasswordData()
-        {
-            List<VisitorTempPassword> dataList = new List<VisitorTempPassword>();
-            Dictionary<string, object> dictionary = new Dictionary<string, object>();
-            dictionary.Add("homeId", Entity.DB_ResidenceData.Instance.CurrentRegion.id);
-            dictionary.Add("pageNo", 1);
-            dictionary.Add("pageSize", 100);
-            dictionary.Add("order", "descending");
-            dictionary.Add("sort", "id");
-
-            var requestJson = HttpUtil.GetSignRequestJson(dictionary);
-            ResponsePackNew pack = HttpUtil.RequestHttpsPost(NewAPI.API_POST_GET_TEMP_PASSWORD_LIST, requestJson);
-            if (pack != null)
-            {
-                if (pack.Code == StateCode.SUCCESS)
-                {
-                    string json = pack.Data.ToString();
-                    var o = Newtonsoft.Json.JsonConvert.DeserializeObject<GetTempPasswordList>(json);
-                    dataList = o.list;
-                }
-            }
-            return dataList;
-        }
-    }
-}
\ No newline at end of file
diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/VisitorQRCodePage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/VisitorQRCodePage.cs
deleted file mode 100644
index 66a4f2a..0000000
--- a/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/VisitorQRCodePage.cs
+++ /dev/null
@@ -1,678 +0,0 @@
-锘�#if __Android__
-
-using System;
-using HDL_ON.UI.CSS;
-using Shared;
-using HDL_ON.DAL.Server;
-using System.Collections.Generic;
-using Com.Hdl.Hdllinphonesdk.Utils;
-using Com.Hdl.Hdllinphonesdk.Dialog;
-
-namespace HDL_ON.UI.UI2.PersonalCenter.Visitor
-{
-    public class VisitorQRCodePage : FrameLayout
-    {
-        FrameLayout bodyView;
-        VerticalScrolViewLayout bodyScrolView;
-        private EditText phoneNumberEditText;// 鐢佃瘽鍙风爜EditText
-        private EditText pwdEditText;// 瀵嗙爜EditText
-        private Button randomBtn;//闅忔満瀵嗙爜Btn
-        private FrameLayout codeLayout;
-        private ImageView codeIV;// 浜岀淮鐮�
-        private Button codeSaveTipBtn;
-        private Button codeTip;//浜岀淮鐮佹湁鏁堟湡鎻愮ず
-        private Button visitorVoucherBtn;
-        private VisitorTempPassword tempPassword;
-
-        Action backAction;// 鍚庨��鎸夐敭锛屽埛鏂癠I
-
-        public VisitorQRCodePage()
-        {
-            bodyView = this;
-        }
-
-        public VisitorQRCodePage(Action action,VisitorTempPassword pwd)
-        {
-            bodyView = this;
-            this.tempPassword = pwd;
-            backAction = action;
-        }
-
-        public override void RemoveFromParent()
-        {
-            this.tempPassword = null;
-            backAction?.Invoke();
-            base.RemoveFromParent();
-        }
-
-        public void LoadPage()
-        {
-#region 椤堕儴瀵艰埅鏍�
-            if (tempPassword == null || tempPassword.id == null)
-            {
-                tempPassword = new VisitorTempPassword();
-
-                Action click = () =>
-                {
-                    Action action = () =>
-                    {
-                        LoadPage();
-                    };
-                    VisitorHistoryPage page = new VisitorHistoryPage(action);
-                    MainPage.BasePageView.AddChidren(page);
-                    page.LoadPage();
-                    MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
-                };
-
-                bodyView.BackgroundColor = CSS_Color.BackgroundColor;
-                new TopViewDiv(bodyView, Language.StringByID(StringId.VisitorInvitation))
-                    .LoadTopView_SettingText(click, Language.StringByID(StringId.VisitorRecord));
-            }
-            else
-            {
-                bodyView.BackgroundColor = CSS_Color.BackgroundColor;
-                new TopViewDiv(bodyView, Language.StringByID(StringId.VisitorInvitation)).LoadTopView();
-            }
-#endregion
-
-            bodyScrolView = new VerticalScrolViewLayout()
-            {
-                Y = Application.GetRealHeight(64),
-                VerticalScrollBarEnabled = false,
-                BackgroundColor = CSS_Color.MainBackgroundColor,
-            };
-            bodyView.AddChidren(bodyScrolView);
-
-            // 鎻愮ず鏂囧瓧
-            bodyScrolView.AddChidren(new Button()
-            {
-                Text = Language.StringByID(StringId.VisitorTip),
-                IsMoreLines = true,
-                TextSize = CSS_FontSize.PromptFontSize_FirstLevel,
-                TextColor = CSS_Color.PromptingColor1,
-                TextAlignment = TextAlignment.Center,
-                Padding = new Padding(0, Application.GetRealWidth(20), 0, Application.GetRealWidth(20)),
-                Height = Application.GetRealHeight(60),
-            });
-
-#region 鎵嬫満鍙�
-            bodyScrolView.AddChidren(new Button()
-            {
-                Text = Language.StringByID(StringId.PhoneNumber),
-                Y = Application.GetRealWidth(10),
-                TextSize = CSS_FontSize.SubheadingFontSize,
-                TextColor = CSS_Color.FirstLevelTitleColor,
-                Height = Application.GetRealHeight(20),
-                Padding = new Padding(0, Application.GetRealWidth(20), 0, Application.GetRealWidth(20)),
-                TextAlignment = TextAlignment.CenterLeft,
-            });
-
-            phoneNumberEditText = new EditText()
-            {
-                Height = Application.GetRealHeight(45),
-                X = Application.GetRealWidth(20),
-                Width = Application.GetRealWidth(335),
-                TextSize = CSS_FontSize.TextFontSize,
-                TextColor = CSS_Color.FirstLevelTitleColor,
-
-                PlaceholderText = Language.StringByID(StringId.InputPhoneNumberOfTheVisitor),
-                Text = tempPassword.phone,
-                IsNumberKeyboardType = true,
-                PlaceholderTextColor = CSS_Color.PromptingColor1,
-            };
-            bodyScrolView.AddChidren(phoneNumberEditText);
-            //phoneNumberEditText.Foucs = true;
-
-            // 鍒嗗壊绾�
-            bodyScrolView.AddChidren(new Button()
-            {
-                X = Application.GetRealWidth(20),
-                Width = Application.GetRealWidth(335),
-                Height = Application.GetRealHeight(1),
-                BackgroundColor = CSS_Color.DividingLineColor,
-            });
-#endregion
-
-#region 鍔ㄦ�佸瘑鐮�
-            bodyScrolView.AddChidren(new Button() { Height = Application.GetRealWidth(10), });
-            bodyScrolView.AddChidren(new Button()
-            {
-                Text = Language.StringByID(StringId.linshimima),
-                TextSize = CSS_FontSize.SubheadingFontSize,
-                TextColor = CSS_Color.FirstLevelTitleColor,
-                Height = Application.GetRealHeight(20),
-                Padding = new Padding(0, Application.GetRealWidth(20), 0, Application.GetRealWidth(20)),
-                TextAlignment = TextAlignment.CenterLeft,
-            });
-
-            FrameLayout pwdLayout = new FrameLayout()
-            {
-                Height = Application.GetRealHeight(40),
-            };
-
-            // 瀵嗙爜杈撳叆妗�
-            pwdEditText = new EditText()
-            {
-                X = Application.GetRealWidth(20),
-                TextSize = CSS_FontSize.TextFontSize,
-                TextColor = CSS_Color.FirstLevelTitleColor,
-                Width = Application.GetRealWidth(335),
-                PlaceholderText = Language.StringByID(StringId.Input6_DigitsTemporaryPassword),
-                IsNumberKeyboardType = true,
-                PlaceholderTextColor = CSS_Color.PromptingColor1,
-            };
-            pwdLayout.AddChidren(pwdEditText);
-
-            //闅忔満瀵嗙爜Btn
-            randomBtn = new Button()
-            {
-                X = Application.GetRealWidth(275),
-                Width = Application.GetRealWidth(80),
-                Text = Language.StringByID(StringId.RandomGeneration),
-                TextAlignment = TextAlignment.CenterRight,
-                TextColor = CSS_Color.MainColor,
-                TextSize = CSS_FontSize.TextFontSize,
-            };
-            pwdLayout.AddChidren(randomBtn);
-            bodyScrolView.AddChidren(pwdLayout);
-
-            // 鍒嗗壊绾�
-            bodyScrolView.AddChidren(new Button()
-            {
-                X = Application.GetRealWidth(20),
-                Width = Application.GetRealWidth(335),
-                Height = Application.GetRealHeight(1),
-                BackgroundColor = CSS_Color.DividingLineColor,
-            });
-#endregion
-
-#region 浜岀淮鐮佺敓鏁堟椂闂�
-            FrameLayout startLayout = new FrameLayout()
-            {
-                Height = Application.GetRealHeight(40),
-                Y = Application.GetRealWidth(10),
-            };
-
-            startLayout.AddChidren(new Button()
-            {
-                Text = Language.StringByID(StringId.EffectiveTime),
-                X = Application.GetRealWidth(20),
-                Width = Application.GetRealWidth(130),
-                TextSize = CSS_FontSize.SubheadingFontSize,
-                TextColor = CSS_Color.FirstLevelTitleColor,
-                TextAlignment = TextAlignment.CenterLeft,
-                Enable = false,
-            });
-            Button startTimeText = new Button()
-            {
-                X = Application.GetRealWidth(159),
-                Width = Application.GetRealWidth(150),
-                TextAlignment = TextAlignment.CenterRight,
-                TextSize = CSS_FontSize.TextFontSize,
-                TextColor = CSS_Color.FirstLevelTitleColor,
-            };
-            if (tempPassword.tempPwd == null || tempPassword.tempPwd == "")
-            {
-                startTimeText.Text = "";// System.DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
-            }
-            else
-            {
-                startTimeText.Text = tempPassword.validBeginTime;
-            }
-
-            startLayout.AddChidren(startTimeText);
-            startLayout.AddChidren(new Button()
-            {
-                X = Application.GetRealWidth(339),
-                Gravity = Gravity.CenterVertical,
-                Width = Application.GetMinRealAverage(16),
-                Height = Application.GetMinRealAverage(16),
-                UnSelectedImagePath = "Public/Right.png",
-                Enable = false,
-            });
-            Button startTimeBtn = new Button();
-            startLayout.AddChidren(startTimeBtn);
-            // dialog鍥炶皟
-            Action<string> startTimeAction = (str) =>
-            {
-                startTimeText.Text = str + ":00";
-            };
-            startTimeBtn.MouseUpEventHandler += (sender, e) =>
-            {
-                try
-                {
-                    new LpTimeDialog(Application.Activity, new LpTimeDialogCallBak(startTimeAction)).Show();
-                }
-                catch (Exception ex)
-                {
-                    string error = ex.Message;
-                }
-            };
-            bodyScrolView.AddChidren(startLayout);
-            // 鍒嗗壊绾�
-            bodyScrolView.AddChidren(new Button()
-            {
-                X = Application.GetRealWidth(20),
-                Width = Application.GetRealWidth(335),
-                Height = Application.GetRealHeight(1),
-                BackgroundColor = CSS_Color.DividingLineColor,
-            });
-
-#endregion
-
-#region 浜岀淮鐮佸け鏁堟椂闂�
-            FrameLayout endLayout = new FrameLayout()
-            {
-                Height = Application.GetRealHeight(40),
-                Y = Application.GetRealWidth(10),
-            };
-
-            endLayout.AddChidren(new Button()
-            {
-                Text = Language.StringByID(StringId.FailureTime),
-                X = Application.GetRealWidth(20),
-                Width = Application.GetRealWidth(130),
-                TextSize = CSS_FontSize.SubheadingFontSize,
-                TextColor = CSS_Color.FirstLevelTitleColor,
-                TextAlignment = TextAlignment.CenterLeft,
-                Enable = false,
-            });
-            Button endTimeText = new Button()
-            {
-                X = Application.GetRealWidth(159),
-                Width = Application.GetRealWidth(150),
-                TextAlignment = TextAlignment.CenterRight,
-                TextSize = CSS_FontSize.TextFontSize,
-                TextColor = CSS_Color.FirstLevelTitleColor,
-                Enable = false,
-            };
-            if (tempPassword.tempPwd == null || tempPassword.tempPwd == "")
-            {
-                endTimeText.Text = "";// System.DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
-            }
-            else
-            {
-                endTimeText.Text = tempPassword.validEndTime;
-            }
-            endLayout.AddChidren(endTimeText);
-            endLayout.AddChidren(new Button()
-            {
-                X = Application.GetRealWidth(339),
-                Gravity = Gravity.CenterVertical,
-                Width = Application.GetMinRealAverage(16),
-                Height = Application.GetMinRealAverage(16),
-                UnSelectedImagePath = "Public/Right.png",
-                Enable = false,
-            });
-            Button endTimeBtn = new Button();
-            endLayout.AddChidren(endTimeBtn);
-            bodyScrolView.AddChidren(endLayout);
-            // 鍒嗗壊绾�
-            bodyScrolView.AddChidren(new Button()
-            {
-                X = Application.GetRealWidth(20),
-                Width = Application.GetRealWidth(335),
-                Height = Application.GetRealHeight(1),
-                BackgroundColor = CSS_Color.DividingLineColor,
-            });
-            // dialog鍥炶皟
-            Action<string> endTimeAction = (str) =>
-            {
-                endTimeText.Text = str + ":00";
-            };
-            endTimeBtn.MouseUpEventHandler += (sender, e) =>
-            {
-                try
-                {
-                    new LpTimeDialog(Application.Activity, new LpTimeDialogCallBak(endTimeAction)).Show();
-                }
-                catch (Exception ex)
-                {
-                    string error = ex.Message;
-                }
-            };
-#endregion
-
-#region 浜岀淮鐮�
-            bodyScrolView.AddChidren(new Button() { Height = Application.GetRealWidth(33), });
-            codeLayout = new FrameLayout()
-            {
-                X = Application.GetRealWidth(117),
-                Width = Application.GetRealWidth(142),
-                Height = Application.GetRealWidth(142),
-            };
-            bodyScrolView.AddChidren(codeLayout);
-
-            // 浜岀淮鐮両magView
-            codeIV = new ImageView()
-            {
-                BackgroundColor = CSS_Color.BackgroundColor,
-            };
-            codeLayout.AddChidren(codeIV);
-
-            bodyScrolView.AddChidren(new Button() { Height = Application.GetRealWidth(20), });
-            codeSaveTipBtn = new Button()
-            {
-                X = Application.GetRealWidth(16),
-                Width = Application.GetRealWidth(343),
-                Height = Application.GetRealWidth(20),
-                Text = Language.StringByID(StringId.LongPressQRCodeSave),
-                TextAlignment = TextAlignment.Center,
-                TextColor = CSS_Color.FirstLevelTitleColor,
-                Visible = false,
-            };
-            bodyScrolView.AddChidren(codeSaveTipBtn);
-#endregion
-
-            bodyScrolView.AddChidren(new Button() { Height = Application.GetRealWidth(28), });
-            visitorVoucherBtn = new Button()
-            {
-                X = Application.GetRealWidth(78),
-                Width = Application.GetRealWidth(220),
-                Height = Application.GetRealWidth(44),
-                BackgroundColor = CSS_Color.MainColor,
-                Radius = (uint)Application.GetRealWidth(44),
-                TextSize = CSS_FontSize.SubheadingFontSize,
-                TextAlignment = TextAlignment.Center,
-                TextColor = CSS_Color.textWhiteColor,
-            };
-            bodyScrolView.AddChidren(visitorVoucherBtn);
-
-            Action voucher_action = () =>
-            {
-                if (codeIV.ImageBytes == null)
-                {
-                    // 璇锋眰鏈嶅姟绔紝鐢熸垚涓存椂瀵嗙爜
-                    tempPassword.homeId = Entity.DB_ResidenceData.Instance.CurrentRegion.id;
-                    tempPassword.phone = phoneNumberEditText.Text;
-                    tempPassword.tempPwd = pwdEditText.Text;
-                    tempPassword.validBeginTime = startTimeText.Text;
-                    tempPassword.validEndTime = endTimeText.Text;
-                    tempPassword.useCount = 1000;
-                    CreateVisitorPassword(tempPassword);
-                }
-                else
-                {
-                    // 鍒犻櫎璁垮涓存椂瀵嗙爜
-                    DelVisitorPassword(tempPassword);
-                }
-            };
-            visitorVoucherBtn.MouseUpEventHandler += (sender, e) =>
-            {
-                if (startTimeText.Text.Trim() == "")
-                {
-                    var tip_dialog = new Tip()
-                    {
-                        Text = Language.StringByID(StringId.VisitorStartTime),
-                        CloseTime = 2,
-                        Direction = AMPopTipDirection.None
-                    };
-                    tip_dialog.Show(MainPage.BaseView);
-                    return;
-                }
-
-                if (endTimeText.Text.Trim() == "")
-                {
-                    var tip_dialog = new Tip()
-                    {
-                        Text = Language.StringByID(StringId.VisitorEndTime),
-                        CloseTime = 2,
-                        Direction = AMPopTipDirection.None
-                    };
-                    tip_dialog.Show(MainPage.BaseView);
-                    return;
-                }
-
-                if (phoneNumberEditText.Text.Trim() == "" || phoneNumberEditText.Text.Trim().Length != 11)
-                {
-                    var tip_dialog = new Tip()
-                    {
-                        Text = Language.StringByID(StringId.PhoneNumberErrorTip),
-                        CloseTime = 2,
-                        Direction = AMPopTipDirection.None
-                    };
-                    tip_dialog.Show(MainPage.BaseView);
-                    phoneNumberEditText.Foucs = true;
-                    return;
-                }
-
-                if (pwdEditText.Text.Trim() == "" || pwdEditText.Text.Trim().Length != 6)
-                {
-                    var tip_dialog = new Tip()
-                    {
-                        Text = Language.StringByID(StringId.Input6_DigitsTemporaryPassword),
-                        CloseTime = 2,
-                        Direction = AMPopTipDirection.None
-                    };
-                    tip_dialog.Show(MainPage.BaseView);
-                    pwdEditText.Foucs = true;
-                    return;
-                }
-
-                string tip = "";
-                string message = "";
-                if (codeIV.ImageBytes == null)
-                {
-                    tip = Language.StringByID(StringId.tip);
-                    message = Language.StringByID(StringId.VisitorTipContent);
-                }
-                else
-                {
-                    tip = Language.StringByID(StringId.tip);
-                    message = Language.StringByID(StringId.VisitorDelTipContent);
-                }
-                new LpTipDialog(Application.Activity, tip, message, new LpTipDialogCallBack(voucher_action)).Show();
-            };
-
-            //灏嗕簩缁寸爜淇濆瓨鍒版湰鍦扮浉鍐�
-            codeIV.MouseLongEventHandler += (sender, e) =>
-            {
-#if __Android__
-                bool bol = HDLImageUtils.SaveImageToGallery(Application.Activity,
-                    Scan.BytesFromText(tempPassword.tempPwd, codeIV.Width, codeIV.Height));
-
-                string msg = "";
-                if (bol)
-                {
-                    msg = Language.StringByID(StringId.SavedSuccessfully);
-                }
-                else
-                {
-                    msg = Language.StringByID(StringId.saveFail);
-                }
-
-                var tip_dialog = new Tip()
-                {
-                    Text = msg,
-                    CloseTime = 2,
-                    Direction = AMPopTipDirection.None
-                };
-                tip_dialog.Show(MainPage.BaseView);
-#endif
-            };
-
-            if (tempPassword != null && tempPassword.id != null && tempPassword.id != "")
-            {
-                pwdEditText.Text = tempPassword.tempPwd;
-                pwdEditText.PlaceholderText = Language.StringByID(StringId.TemporaryPasswordInvalid);
-                pwdEditText.Enable = false;
-                phoneNumberEditText.Enable = false;
-                randomBtn.Visible = false;
-                startTimeBtn.Enable = false;
-                endTimeBtn.Enable = false;
-            }
-            else
-            {
-                pwdEditText.FoucsChanged = (sender, e) =>
-                {
-                    if (!pwdEditText.Foucs)
-                    {
-                        // 6浣嶅瘑鐮侀獙璇�
-                        var tip_dialog = new Tip()
-                        {
-                            Text = Language.StringByID(StringId.Input6_DigitsTemporaryPassword),
-                            CloseTime = 2,
-                            Direction = AMPopTipDirection.None
-                        };
-                        tip_dialog.Show(MainPage.BaseView);
-                    }
-                };
-
-                randomBtn.MouseUpEventHandler += (sender, e) =>
-                {
-                    string tPwd = getRandomPwd();
-                    pwdEditText.Text = tPwd;
-                };
-
-                phoneNumberEditText.FoucsChanged = (sender, e) =>
-                {
-                    if (!phoneNumberEditText.Foucs)
-                    {
-                        //鎵嬫満鍙风爜閿欒鎻愮ず
-                        if (!Utlis.CheckPhoneNumber(phoneNumberEditText.Text.Trim(), "86"))
-                        {
-                            var tip_dialog = new Tip()
-                            {
-                                Text = Language.StringByID(StringId.PhoneNumberErrorTip),
-                                CloseTime = 2,
-                                Direction = AMPopTipDirection.None
-                            };
-                            tip_dialog.Show(MainPage.BaseView);
-                        }
-                    }
-                };
-            }
-
-            RefreshVisitorVoucherBtn();
-        }
-
-        /// <summary>
-        /// 鍒锋柊VisitorVoucherBtn鐘舵��
-        /// </summary>
-        private void RefreshVisitorVoucherBtn()
-        {
-            if (tempPassword == null) return;
-
-            if (tempPassword.tempPwd != null && tempPassword.tempPwd != "")
-            {
-                codeIV.ImageBytes = Scan.BytesFromText(tempPassword.tempPwd, codeIV.Width, codeIV.Height);
-                //鍒ゆ柇浜岀淮鐮佹槸鍚﹀け鏁�
-                DateTime endTime = DateTime.Parse(tempPassword.validEndTime);
-                DateTime currentTime = DateTime.Now;
-                if (currentTime > endTime || !tempPassword.status)
-                {
-                    // 浜岀淮鐮佹湁鏁堟湡鎻愮ず
-                    codeTip = new Button()
-                    {
-                        TextAlignment = TextAlignment.Center,
-                        TextColor = CSS_Color.textWhiteColor,
-                        BackgroundColor = CSS_Color.DialogTransparentColor1,
-                        Text = Language.StringByID(StringId.QRcodeIsInvalid),
-                    };
-                    codeLayout.AddChidren(codeTip);
-                    visitorVoucherBtn.Visible = false;
-                }
-                visitorVoucherBtn.Text = Language.StringByID(StringId.CancleVisitorCredentials);
-            }
-            else
-            {
-                visitorVoucherBtn.Visible = true;
-                visitorVoucherBtn.Text = Language.StringByID(StringId.GenerateVisitorCredentials);
-            }
-        }
-
-        /// <summary>
-        /// 娣诲姞涓存椂瀵嗙爜锛堣瀹㈠嚟璇侊級
-        /// </summary>
-        /// <param name="homeId">浣忓畢id</param>
-        /// <param name="phone">璁垮鎵嬫満鍙�</param>
-        /// <param name="tempPwd">涓存椂瀵嗙爜</param>
-        /// <param name="validBeginTime">寮�濮嬫椂闂�</param>
-        /// <param name="validEndTime">缁撴潫鏃堕棿</param>
-        /// <param name="useCount">浣跨敤娆℃暟锛岄粯璁や竴涓暟鍊煎ぇ涓�浜涚殑</param>
-        /// <returns></returns>
-        private bool CreateVisitorPassword(VisitorTempPassword pwd)
-        {
-            var result = false;
-            Dictionary<string, object> dictionary = new Dictionary<string, object>();
-            dictionary.Add("homeId", pwd.homeId);
-            dictionary.Add("phone", pwd.phone);
-            dictionary.Add("tempPwd", pwd.tempPwd);
-            dictionary.Add("validBeginTime", pwd.validBeginTime);
-            dictionary.Add("validEndTime", pwd.validEndTime);
-            dictionary.Add("useCount", pwd.useCount);
-
-            var requestJson = HttpUtil.GetSignRequestJson(dictionary);
-            var pack = HttpUtil.RequestHttpsPost(NewAPI.API_POST_ADD_TEMP_PASSWORD, requestJson);
-            if (pack != null)
-            {
-                if (pack.Code == StateCode.SUCCESS)
-                {
-                    pwd.id = pack.Data.ToString();
-                    codeIV.ImageBytes = Scan.BytesFromText(pwdEditText.Text, codeIV.Width, codeIV.Height);
-                    codeSaveTipBtn.Visible = true;
-                    RefreshVisitorVoucherBtn();
-                }
-                else {
-                    var tip_dialog = new Tip()
-                    {
-                        Text = pack.message,
-                        CloseTime = 2,
-                        Direction = AMPopTipDirection.None
-                    };
-                    tip_dialog.Show(MainPage.BaseView);
-                }
-            }
-            return result;
-        }
-
-        /// <summary>
-        /// 鍒犻櫎涓存椂瀵嗙爜(璁垮鍑瘉)
-        /// </summary>
-        /// <param name="home_id">浣忓畢id</param>
-        /// <param name="pwd_id">涓存椂瀵嗙爜id</param>
-        private bool DelVisitorPassword(VisitorTempPassword pwd)
-        {
-            Dictionary<string, object> dictionary = new Dictionary<string, object>();
-            dictionary.Add("homeId", pwd.homeId);
-            dictionary.Add("id", pwd.id);
-            var result = false;
-            var requestJson = HttpUtil.GetSignRequestJson(dictionary);
-            var pack = HttpUtil.RequestHttpsPost(NewAPI.API_POST_DEL_TEMP_PASSWORD, requestJson);
-            if (pack != null)
-            {
-                if (pack.Code == StateCode.SUCCESS)
-                {
-                    // 鍏抽棴褰撳墠鐣岄潰
-                    RemoveFromParent();
-                }
-            }
-            RefreshVisitorVoucherBtn();
-            return result;
-        }
-
-        /// <summary>
-        /// 鐢熸垚6浣嶉殢鏈哄瘑鐮�
-        /// </summary>
-        /// <returns></returns>
-        private string getRandomPwd()
-        {
-            string pwd = "";
-            for (int i = 0; i < 6; i++)
-            {
-                int math = new Random().Next(0, 9);
-                pwd += math;
-            }
-            return pwd;
-        }
-    }
-}
-#else
-using Shared;
-
-namespace HDL_ON.UI.UI2.PersonalCenter.Visitor
-{
-    public class VisitorQRCodePage : FrameLayout
-    { }
-}
-#endif
\ No newline at end of file
diff --git a/OnPro_JPush/Additions/AboutAdditions.txt b/OnPro_JPush/Additions/AboutAdditions.txt
new file mode 100644
index 0000000..89cbfbb
--- /dev/null
+++ b/OnPro_JPush/Additions/AboutAdditions.txt
@@ -0,0 +1,48 @@
+锘緼dditions allow you to add arbitrary C# to the generated classes
+before they are compiled.  This can be helpful for providing convenience
+methods or adding pure C# classes.
+
+== Adding Methods to Generated Classes ==
+
+Let's say the library being bound has a Rectangle class with a constructor
+that takes an x and y position, and a width and length size.  It will look like
+this:
+
+public partial class Rectangle
+{
+    public Rectangle (int x, int y, int width, int height)
+    {
+        // JNI bindings
+    }
+}
+
+Imagine we want to add a constructor to this class that takes a Point and
+Size structure instead of 4 ints.  We can add a new file called Rectangle.cs
+with a partial class containing our new method:
+
+public partial class Rectangle
+{
+    public Rectangle (Point location, Size size) :
+        this (location.X, location.Y, size.Width, size.Height)
+    {
+    }
+}
+
+At compile time, the additions class will be added to the generated class
+and the final assembly will a Rectangle class with both constructors.
+
+
+== Adding C# Classes ==
+
+Another thing that can be done is adding fully C# managed classes to the
+generated library.  In the above example, let's assume that there isn't a
+Point class available in Java or our library.  The one we create doesn't need
+to interact with Java, so we'll create it like a normal class in C#.
+
+By adding a Point.cs file with this class, it will end up in the binding library:
+
+public class Point
+{
+    public int X { get; set; }
+    public int Y { get; set; }
+}
diff --git a/OnPro_JPush/Jars/AboutJars.txt b/OnPro_JPush/Jars/AboutJars.txt
new file mode 100644
index 0000000..404cfd9
--- /dev/null
+++ b/OnPro_JPush/Jars/AboutJars.txt
@@ -0,0 +1,24 @@
+锘縏his directory is for Android .jars.
+
+There are 2 types of jars that are supported:
+
+== Input Jar ==
+
+This is the jar that bindings should be generated for.
+
+For example, if you were binding the Google Maps library, this would
+be Google's "maps.jar".
+
+Set the build action for these jars in the properties page to "InputJar".
+
+
+== Reference Jars ==
+
+These are jars that are referenced by the input jar.  C# bindings will
+not be created for these jars.  These jars will be used to resolve
+types used by the input jar.
+
+NOTE: Do not add "android.jar" as a reference jar.  It will be added automatically
+based on the Target Framework selected.
+
+Set the build action for these jars in the properties page to "ReferenceJar".
diff --git a/OnPro_JPush/Jars/jpush-Google-release.aar b/OnPro_JPush/Jars/jpush-Google-release.aar
new file mode 100644
index 0000000..1bcaf62
--- /dev/null
+++ b/OnPro_JPush/Jars/jpush-Google-release.aar
Binary files differ
diff --git a/OnPro_JPush/Jars/zxing.jar b/OnPro_JPush/Jars/zxing.jar
new file mode 100644
index 0000000..b51493d
--- /dev/null
+++ b/OnPro_JPush/Jars/zxing.jar
Binary files differ
diff --git a/OnPro_JPush/OnPro_JPush.csproj b/OnPro_JPush/OnPro_JPush.csproj
new file mode 100644
index 0000000..a619c35
--- /dev/null
+++ b/OnPro_JPush/OnPro_JPush.csproj
@@ -0,0 +1,70 @@
+锘�<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProductVersion>8.0.30703</ProductVersion>
+    <SchemaVersion>2.0</SchemaVersion>
+    <ProjectGuid>{723098FE-214B-4E79-A5D0-DA31B9366611}</ProjectGuid>
+    <ProjectTypeGuids>{10368E6C-D01B-4462-8E8B-01FC667A7035};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+    <TemplateGuid>{77efb91c-a7e9-4b0e-a7c5-31eeec3c6d46}</TemplateGuid>
+    <OutputType>Library</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>OnPro_JPush</RootNamespace>
+    <AssemblyName>OnPro_JPush</AssemblyName>
+    <FileAlignment>512</FileAlignment>
+    <Deterministic>True</Deterministic>
+    <TargetFrameworkVersion>v13.0</TargetFrameworkVersion>
+    <AndroidClassParser>class-parse</AndroidClassParser>
+    <AndroidCodegenTarget>XAJavaInterop1</AndroidCodegenTarget>
+    <RestoreProjectStyle>PackageReference</RestoreProjectStyle>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>portable</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>bin\Debug\</OutputPath>
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <DebugType>portable</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\Release\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <ItemGroup>
+    <Reference Include="Mono.Android" />
+    <Reference Include="System" />
+    <Reference Include="System.Core" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="Properties\AssemblyInfo.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="Jars\AboutJars.txt" />
+    <None Include="Additions\AboutAdditions.txt" />
+  </ItemGroup>
+  <ItemGroup>
+    <TransformFile Include="Transforms\Metadata.xml" />
+    <TransformFile Include="Transforms\EnumFields.xml" />
+    <TransformFile Include="Transforms\EnumMethods.xml" />
+  </ItemGroup>
+  <ItemGroup>
+    <LibraryProjectZip Include="Jars\jpush-Google-release.aar" />
+  </ItemGroup>
+  <ItemGroup>
+    <EmbeddedJar Include="Jars\zxing.jar" />
+  </ItemGroup>
+  <Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.Bindings.targets" />
+  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
+       Other similar extension points exist, see Microsoft.Common.targets.
+  <Target Name="BeforeBuild">
+  </Target>
+  <Target Name="AfterBuild">
+  </Target>
+  -->
+</Project>
\ No newline at end of file
diff --git a/OnPro_JPush/Properties/AssemblyInfo.cs b/OnPro_JPush/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..68e5928
--- /dev/null
+++ b/OnPro_JPush/Properties/AssemblyInfo.cs
@@ -0,0 +1,27 @@
+锘縰sing System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using Android.App;
+
+// General Information about an assembly is controlled through the following 
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("OnPro_JPush")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("OnPro_JPush")]
+[assembly: AssemblyCopyright("Copyright 漏  2018")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+[assembly: ComVisible(false)]
+
+// Version information for an assembly consists of the following four values:
+//
+//      Major Version
+//      Minor Version 
+//      Build Number
+//      Revision
+[assembly: AssemblyVersion("1.24.05.23")]
+[assembly: AssemblyFileVersion("1.24.05.23")]
+
diff --git a/OnPro_JPush/Transforms/EnumFields.xml b/OnPro_JPush/Transforms/EnumFields.xml
new file mode 100644
index 0000000..f31a96e
--- /dev/null
+++ b/OnPro_JPush/Transforms/EnumFields.xml
@@ -0,0 +1,14 @@
+锘�<enum-field-mappings>
+  <!--
+  This example converts the constants Fragment_id, Fragment_name,
+  and Fragment_tag from android.support.v4.app.FragmentActivity.FragmentTag
+  to an enum called Android.Support.V4.App.FragmentTagType with values
+  Id, Name, and Tag.
+  
+  <mapping jni-class="android/support/v4/app/FragmentActivity$FragmentTag" clr-enum-type="Android.Support.V4.App.FragmentTagType">
+    <field jni-name="Fragment_name" clr-name="Name" value="0" />
+    <field jni-name="Fragment_id" clr-name="Id" value="1" />
+    <field jni-name="Fragment_tag" clr-name="Tag" value="2" />
+  </mapping>
+  -->
+</enum-field-mappings>
diff --git a/OnPro_JPush/Transforms/EnumMethods.xml b/OnPro_JPush/Transforms/EnumMethods.xml
new file mode 100644
index 0000000..f2bca37
--- /dev/null
+++ b/OnPro_JPush/Transforms/EnumMethods.xml
@@ -0,0 +1,13 @@
+锘�<enum-method-mappings>
+  <!--
+  This example changes the Java method:
+    android.support.v4.app.Fragment.SavedState.writeToParcel (int flags)
+  to be:
+    android.support.v4.app.Fragment.SavedState.writeToParcel (Android.OS.ParcelableWriteFlags flags)
+  when bound in C#.
+  
+  <mapping jni-class="android/support/v4/app/Fragment.SavedState">
+    <method jni-name="writeToParcel" parameter="flags" clr-enum-type="Android.OS.ParcelableWriteFlags" />
+  </mapping>
+  -->
+</enum-method-mappings>
diff --git a/OnPro_JPush/Transforms/Metadata.xml b/OnPro_JPush/Transforms/Metadata.xml
new file mode 100644
index 0000000..3860638
--- /dev/null
+++ b/OnPro_JPush/Transforms/Metadata.xml
@@ -0,0 +1,12 @@
+锘�<metadata>
+  <!--
+  This sample removes the class: android.support.v4.content.AsyncTaskLoader.LoadTask:
+  <remove-node path="/api/package[@name='android.support.v4.content']/class[@name='AsyncTaskLoader.LoadTask']" />
+  
+  This sample removes the method: android.support.v4.content.CursorLoader.loadInBackground:
+  <remove-node path="/api/package[@name='android.support.v4.content']/class[@name='CursorLoader']/method[@name='loadInBackground']" />
+  -->
+     <remove-node path="/api/package[starts-with(@name,'com.google')]"/>
+
+</metadata>
+

--
Gitblit v1.8.0