diff --git a/Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/Internal/NGUITools.cs b/Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/Internal/NGUITools.cs
index 5153564..166d7ed 100644
--- a/Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/Internal/NGUITools.cs
+++ b/Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/Internal/NGUITools.cs
@@ -1727,19 +1727,22 @@ static public class NGUITools
mGameSize = (Vector2)s_GetSizeOfMainGameView.Invoke (null, null);
}
return mGameSize;
+
}
}
- #else
+
+#else
///
/// Size of the game view cannot be retrieved from Screen.width and Screen.height when the game view is hidden.
///
-
+
static public Vector2 screenSize { get { return new Vector2(Screen.width, Screen.height); } }
+ //static public Vector2 screenSize { get { return new Vector2(Screen.safeArea.width, Screen.safeArea.height); } }
#endif
- #region add by chenbin
+ #region add by chenbin
- public static void updateAll (Transform tr)
+ public static void updateAll (Transform tr)
{
UILabel label = tr.GetComponent ();
if (label != null) {
@@ -1813,22 +1816,49 @@ static public class NGUITools
}
}
- public static Rect wrapRect4IphoneX(Rect rect) {
- return wrapRect4Fringe (rect);
- }
+ public static Vector4 _offsetRect;
+ public static Vector4 offsetRect
+ {
+ get
+ {
+ if (_offsetRect == null)
+ {
+ float left = Screen.safeArea.x;
+ float right = Screen.width - Screen.safeArea.width - left;
+ float top = Screen.safeArea.y;
+ float bottom = Screen.height - Screen.safeArea.height - top;
- public static Rect wrapRect4Fringe(Rect rect) {
- if (isFringe) {
- if (rect.width > rect.height) {
- float offsetWidth = rect.width * (1 - rateFringe);
- return new Rect ((int)(offsetWidth / 2), 0, rect.width - offsetWidth, rect.height);
- } else {
- float offsetHight = rect.height * (1 - rateFringe);
- return new Rect (0, (int)(offsetHight / 2), rect.width, rect.height - offsetHight);
+ _offsetRect = new Vector4(left/Screen.width, top / Screen.height, right / Screen.width, bottom / Screen.height);
}
- } else {
- return rect;
+ return _offsetRect;
}
+ set{
+ _offsetRect = value;
+ }
+ }
+
+ public static Rect wrapRect4Fringe(GameObject go, Rect rect) {
+ //if (isFringe) {
+ // if (rect.width > rect.height) {
+ // float offsetWidth = rect.width * (1 - rateFringe);
+ // return new Rect ((int)(offsetWidth / 2), 0, rect.width - offsetWidth, rect.height);
+ // } else {
+ // float offsetHight = rect.height * (1 - rateFringe);
+ // return new Rect (0, (int)(offsetHight / 2), rect.width, rect.height - offsetHight);
+ // }
+ //} else {
+ // return rect;
+ //}
+ Vector4 offset = offsetRect;
+ float left = rect.width * offset.x;
+ float right = rect.width * offset.z;
+ float top = rect.height * offset.y;
+ float bottom = rect.height * offset.w;
+ rect.x += left;
+ rect.width -= (left + right);
+ rect.y += bottom;
+ rect.height -= (top + bottom);
+ return rect;
}
#endregion
}
diff --git a/Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/Internal/UIWidget.cs b/Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/Internal/UIWidget.cs
index 5f18fe9..b1da928 100644
--- a/Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/Internal/UIWidget.cs
+++ b/Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/Internal/UIWidget.cs
@@ -1120,29 +1120,52 @@ public class UIWidget : UIRect
Vector3 pos = trans.localPosition;
Vector2 pvt = pivotOffset;
+ float sizeAdjust = UIRoot.GetPixelSizeAdjustment(gameObject);
+ #region add by chenbin
+ Vector4 offsetRect = NGUITools.offsetRect;
+ float leftOffset = offsetRect.x;
+ float rightOffset = offsetRect.z;
+ float topOffset = offsetRect.y;
+ UIPanel panel = null;
+ #endregion
+
+
// Attempt to fast-path if all anchors match
if (leftAnchor.target == bottomAnchor.target &&
leftAnchor.target == rightAnchor.target &&
leftAnchor.target == topAnchor.target)
{
- Vector3[] sides = leftAnchor.GetSides(parent);
+ //add by chenbin
+ panel = leftAnchor.target.GetComponent();
+ if (panel != null)
+ {
+ leftOffset *= panel.width;
+ rightOffset *= panel.width;
+ topOffset *= panel.height;
+ } else
+ {
+ leftOffset = 0;
+ rightOffset = 0;
+ topOffset = 0;
+ }
+ Vector3[] sides = leftAnchor.GetSides(parent);
if (sides != null)
{
- lt = NGUIMath.Lerp(sides[0].x, sides[2].x, leftAnchor.relative) + leftAnchor.absolute;
- rt = NGUIMath.Lerp(sides[0].x, sides[2].x, rightAnchor.relative) + rightAnchor.absolute;
- bt = NGUIMath.Lerp(sides[3].y, sides[1].y, bottomAnchor.relative) + bottomAnchor.absolute;
- tt = NGUIMath.Lerp(sides[3].y, sides[1].y, topAnchor.relative) + topAnchor.absolute;
+ lt = NGUIMath.Lerp(sides[0].x, sides[2].x, leftAnchor.relative) + leftAnchor.absolute + leftOffset;
+ rt = NGUIMath.Lerp(sides[0].x, sides[2].x, rightAnchor.relative) + rightAnchor.absolute - rightOffset;
+ bt = NGUIMath.Lerp(sides[3].y, sides[1].y, bottomAnchor.relative) + bottomAnchor.absolute - topOffset;
+ tt = NGUIMath.Lerp(sides[3].y, sides[1].y, topAnchor.relative) + topAnchor.absolute - topOffset;
mIsInFront = true;
}
else
{
// Anchored to a single transform
Vector3 lp = GetLocalPos(leftAnchor, parent);
- lt = lp.x + leftAnchor.absolute;
- bt = lp.y + bottomAnchor.absolute;
- rt = lp.x + rightAnchor.absolute;
- tt = lp.y + topAnchor.absolute;
+ lt = lp.x + leftAnchor.absolute + leftOffset;
+ bt = lp.y + bottomAnchor.absolute - topOffset;
+ rt = lp.x + rightAnchor.absolute - rightOffset;
+ tt = lp.y + topAnchor.absolute - topOffset;
mIsInFront = (!hideIfOffScreen || lp.z >= 0f);
}
}
@@ -1153,15 +1176,29 @@ public class UIWidget : UIRect
// Left anchor point
if (leftAnchor.target)
{
+ //add by chenbin
+ panel = leftAnchor.target.GetComponent();
+ if (panel != null)
+ {
+ leftOffset *= panel.width;
+ rightOffset *= panel.width;
+ topOffset *= panel.height;
+ }
+ else
+ {
+ leftOffset = 0;
+ rightOffset = 0;
+ topOffset = 0;
+ }
Vector3[] sides = leftAnchor.GetSides(parent);
if (sides != null)
{
- lt = NGUIMath.Lerp(sides[0].x, sides[2].x, leftAnchor.relative) + leftAnchor.absolute;
+ lt = NGUIMath.Lerp(sides[0].x, sides[2].x, leftAnchor.relative) + leftAnchor.absolute + leftOffset;
}
else
{
- lt = GetLocalPos(leftAnchor, parent).x + leftAnchor.absolute;
+ lt = GetLocalPos(leftAnchor, parent).x + leftAnchor.absolute + leftOffset;
}
}
else lt = pos.x - pvt.x * mWidth;
@@ -1169,15 +1206,29 @@ public class UIWidget : UIRect
// Right anchor point
if (rightAnchor.target)
{
+ //add by chenbin
+ panel = rightAnchor.target.GetComponent();
+ if (panel != null)
+ {
+ leftOffset *= panel.width;
+ rightOffset *= panel.width;
+ topOffset *= panel.height;
+ }
+ else
+ {
+ leftOffset = 0;
+ rightOffset = 0;
+ topOffset = 0;
+ }
Vector3[] sides = rightAnchor.GetSides(parent);
if (sides != null)
{
- rt = NGUIMath.Lerp(sides[0].x, sides[2].x, rightAnchor.relative) + rightAnchor.absolute;
+ rt = NGUIMath.Lerp(sides[0].x, sides[2].x, rightAnchor.relative) + rightAnchor.absolute - rightOffset;
}
else
{
- rt = GetLocalPos(rightAnchor, parent).x + rightAnchor.absolute;
+ rt = GetLocalPos(rightAnchor, parent).x + rightAnchor.absolute - rightOffset;
}
}
else rt = pos.x - pvt.x * mWidth + mWidth;
@@ -1185,15 +1236,29 @@ public class UIWidget : UIRect
// Bottom anchor point
if (bottomAnchor.target)
{
+ //add by chenbin
+ panel = bottomAnchor.target.GetComponent();
+ if (panel != null)
+ {
+ leftOffset *= panel.width;
+ rightOffset *= panel.width;
+ topOffset *= panel.height;
+ }
+ else
+ {
+ leftOffset = 0;
+ rightOffset = 0;
+ topOffset = 0;
+ }
Vector3[] sides = bottomAnchor.GetSides(parent);
if (sides != null)
{
- bt = NGUIMath.Lerp(sides[3].y, sides[1].y, bottomAnchor.relative) + bottomAnchor.absolute;
+ bt = NGUIMath.Lerp(sides[3].y, sides[1].y, bottomAnchor.relative) + bottomAnchor.absolute - topOffset;
}
else
{
- bt = GetLocalPos(bottomAnchor, parent).y + bottomAnchor.absolute;
+ bt = GetLocalPos(bottomAnchor, parent).y + bottomAnchor.absolute - topOffset;
}
}
else bt = pos.y - pvt.y * mHeight;
@@ -1201,26 +1266,41 @@ public class UIWidget : UIRect
// Top anchor point
if (topAnchor.target)
{
+ //add by chenbin
+ panel = topAnchor.target.GetComponent();
+ if (panel != null)
+ {
+ leftOffset *= panel.width;
+ rightOffset *= panel.width;
+ topOffset *= panel.height;
+ }
+ else
+ {
+ leftOffset = 0;
+ rightOffset = 0;
+ topOffset = 0;
+ }
Vector3[] sides = topAnchor.GetSides(parent);
if (sides != null)
{
- tt = NGUIMath.Lerp(sides[3].y, sides[1].y, topAnchor.relative) + topAnchor.absolute;
+ tt = NGUIMath.Lerp(sides[3].y, sides[1].y, topAnchor.relative) + topAnchor.absolute - topOffset;
}
else
{
- tt = GetLocalPos(topAnchor, parent).y + topAnchor.absolute;
+ tt = GetLocalPos(topAnchor, parent).y + topAnchor.absolute - topOffset;
}
}
else tt = pos.y - pvt.y * mHeight + mHeight;
}
+
// Calculate the new position, width and height
Vector3 newPos = new Vector3(Mathf.Lerp(lt, rt, pvt.x), Mathf.Lerp(bt, tt, pvt.y), pos.z);
newPos.x = Mathf.Round(newPos.x);
newPos.y = Mathf.Round(newPos.y);
- int w = Mathf.FloorToInt(rt - lt + 0.5f);
+ int w = Mathf.FloorToInt(rt - lt + 0.5f);
int h = Mathf.FloorToInt(tt - bt + 0.5f);
// Maintain the aspect ratio if requested and possible
diff --git a/Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/UI/UIAnchor.cs b/Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/UI/UIAnchor.cs
index 018f213..a82c144 100644
--- a/Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/UI/UIAnchor.cs
+++ b/Assets/CoolapeFrame/3rd/NGUI_Enhance/Scripts/UI/UIAnchor.cs
@@ -175,7 +175,7 @@ public class UIAnchor : MonoBehaviour
else return;
#region add by chenbin
- mRect = NGUITools.wrapRect4Fringe(mRect);
+ mRect = NGUITools.wrapRect4Fringe(gameObject, mRect);
#endregion
float cx = (mRect.xMin + mRect.xMax) * 0.5f;
diff --git a/Assets/CoolapeFrame/Scripts/ui/NguiExtend/CLUIScrollViewWithEvent.cs b/Assets/CoolapeFrame/Scripts/ui/NguiExtend/CLUIScrollViewWithEvent.cs
index 4fcfc94..882076b 100644
--- a/Assets/CoolapeFrame/Scripts/ui/NguiExtend/CLUIScrollViewWithEvent.cs
+++ b/Assets/CoolapeFrame/Scripts/ui/NguiExtend/CLUIScrollViewWithEvent.cs
@@ -97,7 +97,13 @@ public class CLUIScrollViewWithEvent : UIScrollView
else
{
Utl.doCallback(hideRefreshFlag);
- ResetPosition();
+ if (movement == Movement.Vertical && totalDelta.y <= 0)
+ {
+ ResetPosition();
+ } else if (movement == Movement.Horizontal && totalDelta.x >= 0)
+ {
+
+ }
}
}
else
diff --git a/Assets/CoolapeFrameData/verControl/.resModifyDate.v b/Assets/CoolapeFrameData/verControl/.resModifyDate.v
index cc720d5..90f639e 100644
--- a/Assets/CoolapeFrameData/verControl/.resModifyDate.v
+++ b/Assets/CoolapeFrameData/verControl/.resModifyDate.v
@@ -274,12 +274,12 @@
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua.meta,132289129810000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/ui.meta,132289129800000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/www.meta,132352746190000000
-/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/atlas/atlasAllReal.prefab,132388653190000000
+/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/atlas/atlasAllReal.prefab,132389094810000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/atlas/atlasAllReal.prefab.meta,132289129810000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/localization/Chinese.txt,132385110800000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/localization/Chinese.txt.meta,132289129810000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/.DS_Store,132289129800000000
-/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/CLLMainLua.lua,132387273060000000
+/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/CLLMainLua.lua,132388695560000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/CLLMainLua.lua.meta,132289129800000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/battle.meta,132289129800000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/bio.meta,132289129800000000
@@ -354,9 +354,9 @@
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/CLLVerManager.lua.meta,132289129810000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/KKLogListener.lua,132300176910000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/KKLogListener.lua.meta,132371159480000000
-/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/LuaUtl.lua,132386936760000000
+/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/LuaUtl.lua,132388693580000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/LuaUtl.lua.meta,132289129810000000
-/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/MyUtl.lua,132388652660000000
+/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/MyUtl.lua,132389091550000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/MyUtl.lua.meta,132289221090000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/curve-families.png,132289129810000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/curve-families.png.meta,132289129810000000
@@ -431,7 +431,7 @@
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPSceneManager.lua.meta,132289129800000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPSplash.lua,132387276090000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPSplash.lua.meta,132289129800000000
-/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPStart.lua,132388322350000000
+/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPStart.lua,132388696910000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPStart.lua.meta,132289129800000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPWWWProgress.lua,132289129800000000
/Users/chenbin/Documents/working/devSpace/u3d/tianrunCRM_iOS/Assets/trCRM/upgradeRes4Dev/priority/lua/ui/panel/CLLPWWWProgress.lua.meta,132289129800000000
diff --git a/Assets/CoolapeFrameData/verControl/IOS/ver4DevelopeMd5.v b/Assets/CoolapeFrameData/verControl/IOS/ver4DevelopeMd5.v
index 1a668ef..f7109e3 100644
Binary files a/Assets/CoolapeFrameData/verControl/IOS/ver4DevelopeMd5.v and b/Assets/CoolapeFrameData/verControl/IOS/ver4DevelopeMd5.v differ
diff --git a/Assets/CoolapeFrameData/verControl/IOS/ver4Publish.v b/Assets/CoolapeFrameData/verControl/IOS/ver4Publish.v
index 52137a1..5501e46 100644
--- a/Assets/CoolapeFrameData/verControl/IOS/ver4Publish.v
+++ b/Assets/CoolapeFrameData/verControl/IOS/ver4Publish.v
@@ -123,7 +123,7 @@ trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea
trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_ranking.unity3d,d6ec636ccfbf0c4525703871069765c5
trCRM/upgradeRes4Publish/priority/atlas/IOS/atlasAllReal.unity3d,5318be1a09feeb3aa3ccb1e7fb86dbd2
trCRM/upgradeRes4Publish/priority/localization/Chinese.txt,08ac586b625d0a126a610344a1846e8f
-trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua,398a77c0c9146b949b3d0a6f60c6c4ed
+trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua,71dd99dc998927bca633feb259d164a8
trCRM/upgradeRes4Publish/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
trCRM/upgradeRes4Publish/priority/lua/bio/BioOutputStream.lua,84fd65eb0d1a166e77447f61254d62b5
trCRM/upgradeRes4Publish/priority/lua/bio/BioType.lua,4667e9def8191cbf2b9dc25e928bc23f
@@ -155,8 +155,8 @@ trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLPrintEx.lua,86d891ec4d8bfa55337
trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLUpdateUpgrader.lua,bfff3548aa7cd983c3de46e5defae423
trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLVerManager.lua,39b154e796d60c2c40ebcc427a5c05e8
trCRM/upgradeRes4Publish/priority/lua/toolkit/KKLogListener.lua,341e17bfccad7217d30814868712ea15
-trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua,83992e86489ace88d35f10262e72d9fb
-trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua,ae583c24f79ea1ae44112100bc494ffa
+trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua,d9a3b772a44fc11d3407de3194f06d51
+trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua,ce4513130e34ef66da98f9c3b1ec8299
trCRM/upgradeRes4Publish/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
trCRM/upgradeRes4Publish/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
@@ -194,7 +194,7 @@ trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLoginCoolape.lua,5873be60edc8
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPPopList.lua,896c4b35a6cd0d4f86ed5c0ba532ea00
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSplash.lua,2f4c84546ec70a42deaf05cc0fd105bb
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua,e7aa381e49a9c5aed143b69db6aad352
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua,f90028f3e667f9e4df2a7f4aefefa701
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWebView.lua,ee83701c37a6f2fc91691546a2e4fbe7
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMain.lua,24f616b9384dc0eefa9955fabb1d05f1
diff --git a/Assets/CoolapeFrameData/verControl/IOS/ver4Upgrade.v b/Assets/CoolapeFrameData/verControl/IOS/ver4Upgrade.v
index dc5d152..8471047 100644
--- a/Assets/CoolapeFrameData/verControl/IOS/ver4Upgrade.v
+++ b/Assets/CoolapeFrameData/verControl/IOS/ver4Upgrade.v
@@ -1,256 +1,274 @@
-trCRM/upgradeRes/other/uiAtlas/coolape/IOS/button.unity3d,c8009be975691b21cac9fdc55f343cc3
-trCRM/upgradeRes/other/uiAtlas/coolape/IOS/input.unity3d,85676a4ff405d2c3bf8bdabd99d40745
-trCRM/upgradeRes/other/uiAtlas/coolape/IOS/logo.unity3d,a23619eae53064c611eeb49ba6ad21f6
-trCRM/upgradeRes/other/uiAtlas/coolape/IOS/name.unity3d,36243d44e09cf15a30c136f4e8f7b06e
-trCRM/upgradeRes/other/uiAtlas/coolape/IOS/password.unity3d,584af77561cb1dfe6aca0640a6a2b9cf
-trCRM/upgradeRes/other/uiAtlas/coolape/IOS/user.unity3d,5e6e50cd8a40d64ae2c58a2d531676fa
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/add.unity3d,678ae44b69930eede7020bb574f7ee11
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/bg.unity3d,bd8a8bbae53c33e67e357862b7e6228a
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/border.unity3d,29a0e90c8c75eaac236a3bf65ee28fd3
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/check.unity3d,8617a2ac9187216cfb81f8b712181055
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_followup.unity3d,53f6896e2d1d3bbb17bf916c681575ec
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_task.unity3d,747e55b8f7096ca0aad8270690100afd
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_tel.unity3d,ec81ebdafd1aa4d439f1a10d71c079af
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/del.unity3d,d2c4a7e271dac1f816115acd9caf6873
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/follow.unity3d,6ec5096b527145f85d42630f1a59f2c2
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/full_star.unity3d,1e26fbb1830f8f2b34f5cc3bd279e4ac
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/funnel.unity3d,9eabb57135190dc338da14a450b63e72
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/get.unity3d,e15371fcae70c8c9ea93baab3f7cf286
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/important.unity3d,5a0439d61813daf35289712322e7f066
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/input.unity3d,cecd60bbaff9e81a94c98a20c5525a14
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/kuang.unity3d,44f2665e82c2f22c97b1fa8065dcca85
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/limt.unity3d,e40d61488fa008460f97c9e44b2956c7
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/more.unity3d,7d7a478fdc0c1cc0506c6fd92d230b3f
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/msg.unity3d,62a51311105a27bfca2fc2ac35c9aab8
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/oean.unity3d,2220377e30d7a40b551ff00531cde4b0
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/order.unity3d,e30128770395be6e2634c10acdedb730
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/pause.unity3d,8eff010febb0a0d6365a65fed01cf38d
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/peo.unity3d,0d912c6c28bf962b0e1f28ac4f76d2ba
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/phone.unity3d,917fe8084ceb86ffe99a91119401b398
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/play.unity3d,87cd04e1f707b587132b189c72823f7d
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/play2.unity3d,41dc3f7483b566a92f22718cc1363f12
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/position.unity3d,9bc2ac8854be9c3f6694f99d0f4bf1c1
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/record.unity3d,ed6faf19e45aa99e37c622ef92e131dc
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/remove.unity3d,773dc01867e41eabf23bf22dc4c35507
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/right.unity3d,3d5aa57f1b9a4c63ceac9f3f8e9a588a
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/screen.unity3d,ed29a75e7c18989d91862b317f781586
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/search.unity3d,e47e0f93cf36d5b583ed74dd599e6036
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/star.unity3d,3bcf43f59ae8c6b2920fbdfd3a5a3252
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/suc.unity3d,750f9f149f273d3f2643b3ff634705e4
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/task.unity3d,aa21e488c5f526e12886cae586f30375
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/time.unity3d,3798702a6f194c1ce9e5e9b15836239f
-trCRM/upgradeRes/other/uiAtlas/cust/IOS/write.unity3d,46db82a1fde728812cfa97c68aca4020
-trCRM/upgradeRes/other/uiAtlas/guid/IOS/1.unity3d,7f93940e3dc101e21d69ad8a25b43e53
-trCRM/upgradeRes/other/uiAtlas/guid/IOS/2.unity3d,2953bdc65ac46367feda300cfecd11bf
-trCRM/upgradeRes/other/uiAtlas/guid/IOS/3.unity3d,c811075966bb6d036edcc94bb84302af
-trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/hotWheel_bg.unity3d,1842a9eb299cbf9d9e37bef4e7ced573
-trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/hotWheel_prog.unity3d,f71546fbb57c422c80f6fe06648c0e96
-trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/loading.unity3d,ae3b70b6c5220e215b73d037edd9a45a
-trCRM/upgradeRes/other/uiAtlas/icon/IOS/company_1.unity3d,3ff3b66fd2476d8245f07daeda300ab2
-trCRM/upgradeRes/other/uiAtlas/icon/IOS/icon_26_no.unity3d,d39394e00d037c17920ed100a1d4be40
-trCRM/upgradeRes/other/uiAtlas/login/IOS/log_bg.unity3d,f3add14e03472a28d56315b260b35c82
-trCRM/upgradeRes/other/uiAtlas/login/IOS/log_invisible.unity3d,3f52b93a1cffe3583e34c9252554483a
-trCRM/upgradeRes/other/uiAtlas/login/IOS/log_no.unity3d,e167bfde724e7a2c40bec51945931877
-trCRM/upgradeRes/other/uiAtlas/login/IOS/log_password.unity3d,1dd1c1396c668d0a4dad1228ca0ec903
-trCRM/upgradeRes/other/uiAtlas/login/IOS/log_people.unity3d,834fdf5f5868cc4c905e95f8e41dbf20
-trCRM/upgradeRes/other/uiAtlas/login/IOS/log_sms.unity3d,64043728c70f02d54320813cd455fd4e
-trCRM/upgradeRes/other/uiAtlas/login/IOS/log_visible.unity3d,af743a8a46a78caa3aab15ecb2d4f73d
-trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo.unity3d,1b95b61e7f4824e57f67ef78bfd4e592
-trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo2.unity3d,41c5912127597703a9c1ab2848c89ff6
-trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_me.unity3d,546388655250fedaa50785dd824d30ac
-trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_me2.unity3d,f7a5b3fdea590751dea5877236e013c8
-trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news.unity3d,ccfb2fcc6908aaa0643bff4ccdb8fd1a
-trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news2.unity3d,534faecceb533b756cb7df4aa8f13d05
-trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_work.unity3d,7fa96651b9f54de569c59611a7d07b6b
-trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_work2.unity3d,8579e52d8aa949abce514ec4682d95e5
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_bg_20.unity3d,0bea7b4023f2d6ab3e3ee160affec665
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_notice.unity3d,6ebfcad9d2385d00b275e41b69bf5633
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_peo.unity3d,9e7f6d7cf29af9e5fb02befb5121ad49
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_remind.unity3d,671a3df29d39a9d6caf53bc9eaa8dde2
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_time.unity3d,79a2d5d9c6d24cc63998911a623d9244
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_unread.unity3d,11f64f47835f9a2dc98f55d5d95d524a
-trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_wait.unity3d,a593ecf733c7c21e1f754328c9601139
-trCRM/upgradeRes/other/uiAtlas/news/IOS/news_1.unity3d,aba0d05e735d2f90eff16694efbd299a
-trCRM/upgradeRes/other/uiAtlas/news/IOS/news_2.unity3d,5b2f3543562cb611fd5b986f93b9d450
-trCRM/upgradeRes/other/uiAtlas/news/IOS/news_3.unity3d,267178166037b19856d0a3a481ee810d
-trCRM/upgradeRes/other/uiAtlas/news/IOS/news_4.unity3d,ae0c7c492a9ff216765d0a98f32604db
-trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg.unity3d,64c5142dc2ace4a338bac2b103207f36
-trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg_num1.unity3d,244cfbdb8f31592e89902640ce1abeb6
-trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg_num2.unity3d,3fdc6a699415a020e28933e632fd5baa
-trCRM/upgradeRes/other/uiAtlas/public/IOS/_empty.unity3d,8e127e3490c9651f0756f621dc2fb1a6
-trCRM/upgradeRes/other/uiAtlas/public/IOS/button.unity3d,4a1c28e520ccb1f66e038bfe4e8057ab
-trCRM/upgradeRes/other/uiAtlas/public/IOS/button2.unity3d,40d97a2e75c6356efc74c2615133c2a7
-trCRM/upgradeRes/other/uiAtlas/public/IOS/check.unity3d,615efa024329ca180668ab885cded3c7
-trCRM/upgradeRes/other/uiAtlas/public/IOS/check_full.unity3d,d2a9f4ed2598e59dc161cce43869979d
-trCRM/upgradeRes/other/uiAtlas/public/IOS/choose.unity3d,ebc64a7c7ed8354e57deb1938557c9d8
-trCRM/upgradeRes/other/uiAtlas/public/IOS/company_bg.unity3d,6d7720ce23e31c17a508386fe837ab12
-trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off.unity3d,1bd2636935bdcbcf3d55a69f873c44ad
-trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off_bg.unity3d,7a6e9b072b57dc847ede7eb1c679ee62
-trCRM/upgradeRes/other/uiAtlas/public/IOS/radio.unity3d,0c43a7ba6ffa8229a8639635ce0ce238
-trCRM/upgradeRes/other/uiAtlas/public/IOS/radio_full.unity3d,cc41b26969b05580412381ffcf7019cd
-trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_1.unity3d,f8e9f5aec240b7818a58b7674fd14939
-trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_2.unity3d,09643bb6fdab7301459fa4206afe89ee
-trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_3.unity3d,d095dbcdbab9d44c6aa63fa92e5f984b
-trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_4.unity3d,ff6d1ab367bc0bfd8603ac8f246cb66c
-trCRM/upgradeRes/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
-trCRM/upgradeRes/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_noshadow.unity3d,c56930cafa0823cbe54854859039cc43
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_color.unity3d,0f386613e266039c15d6dc1dfa8643bc
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_head_bg.unity3d,4621f18a14df4d78d9f8475b6b561467
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_1.unity3d,0ce47cb41a1c039d116f0a1176ffdc82
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_2.unity3d,f8983e295d741411b2dbc2cfa1646ce3
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_3.unity3d,af4d8fecaed77fb37428cbd9c347f919
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_4.unity3d,d98d7815445c18b51e8c2abcc382f764
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea7caf2ab8b5a09f786b69
-trCRM/upgradeRes/other/uiAtlas/work/IOS/work_ranking.unity3d,d6ec636ccfbf0c4525703871069765c5
-trCRM/upgradeRes/priority/atlas/IOS/atlasAllReal.unity3d,3bc71bdc9c1acc1af9950b31d8a92568
-trCRM/upgradeRes/priority/localization/Chinese.txt,08ac586b625d0a126a610344a1846e8f
-trCRM/upgradeRes/priority/lua/CLLMainLua.lua,398a77c0c9146b949b3d0a6f60c6c4ed
-trCRM/upgradeRes/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
-trCRM/upgradeRes/priority/lua/bio/BioOutputStream.lua,84fd65eb0d1a166e77447f61254d62b5
-trCRM/upgradeRes/priority/lua/bio/BioType.lua,4667e9def8191cbf2b9dc25e928bc23f
-trCRM/upgradeRes/priority/lua/bio/BioUtl.lua,f64afdd9ccdf943f5d4ba2fc3c3241ef
-trCRM/upgradeRes/priority/lua/cfg/DBCfg.lua,3d0e60dbcdaa61b8553eee17f4d68b32
-trCRM/upgradeRes/priority/lua/cfg/DBCfgTool.lua,a6760e05dcc5f91202e3659179a464e7
-trCRM/upgradeRes/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
-trCRM/upgradeRes/priority/lua/db/DBCust.lua,8e970152224262213e454e36f3dd19a8
-trCRM/upgradeRes/priority/lua/db/DBMessage.lua,04d61da969ffa87835209f7bc25369b0
-trCRM/upgradeRes/priority/lua/db/DBRoot.lua,49468afd86425e8a8c3195d8bf45b0f3
-trCRM/upgradeRes/priority/lua/db/DBStatistics.lua,e64ad532dabb2cb70c4053e223770969
-trCRM/upgradeRes/priority/lua/db/DBUser.lua,d01c1b88bed8d5d777f76eca559b5b46
-trCRM/upgradeRes/priority/lua/json/json.lua,a2914572290611d3da35f4a7eec92022
-trCRM/upgradeRes/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
-trCRM/upgradeRes/priority/lua/json/rpcserver.lua,48b8f5e53a1141652c38f8a5a8a77928
-trCRM/upgradeRes/priority/lua/net/CLLNet.lua,df3108c65b288722530f80bb73893062
-trCRM/upgradeRes/priority/lua/net/CLLNetSerialize.lua,30c24f11d46d7b887bf32177acb92c81
-trCRM/upgradeRes/priority/lua/net/NetProto.lua,c2a5eef306bbbbd5b186599bad616677
-trCRM/upgradeRes/priority/lua/net/NetProtoUsermgrClient.lua,f65df462666ca9fca7f16c2954984527
-trCRM/upgradeRes/priority/lua/public/CLLInclude.lua,476b749169d54c4b08e8749743983d92
-trCRM/upgradeRes/priority/lua/public/CLLIncludeBase.lua,6011b5732b185053dc107332593e5d2b
-trCRM/upgradeRes/priority/lua/public/CLLPool.lua,3e6a97eb07cfdff7c399eb3e956ba77c
-trCRM/upgradeRes/priority/lua/public/CLLPrefs.lua,1719d57c97fe0d8f2c9d1596cb6e2ac8
-trCRM/upgradeRes/priority/lua/public/CLLQueue.lua,065303c980678b25b11854bfec1690f3
-trCRM/upgradeRes/priority/lua/public/CLLStack.lua,579069654d88a15e43c818a6b8079b15
-trCRM/upgradeRes/priority/lua/public/class.lua,cc0f201cc55c59f8bc8f623853382b9c
-trCRM/upgradeRes/priority/lua/toolkit/BitUtl.lua,82e46240625342d5afe8ea68a609c9cb
-trCRM/upgradeRes/priority/lua/toolkit/CLLPrintEx.lua,86d891ec4d8bfa5533704c142fc97235
-trCRM/upgradeRes/priority/lua/toolkit/CLLUpdateUpgrader.lua,bfff3548aa7cd983c3de46e5defae423
-trCRM/upgradeRes/priority/lua/toolkit/CLLVerManager.lua,39b154e796d60c2c40ebcc427a5c05e8
-trCRM/upgradeRes/priority/lua/toolkit/KKLogListener.lua,341e17bfccad7217d30814868712ea15
-trCRM/upgradeRes/priority/lua/toolkit/LuaUtl.lua,83992e86489ace88d35f10262e72d9fb
-trCRM/upgradeRes/priority/lua/toolkit/MyUtl.lua,3f6a80d9a6a96cf66a201e26fc39aa1f
-trCRM/upgradeRes/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
-trCRM/upgradeRes/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
-trCRM/upgradeRes/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
-trCRM/upgradeRes/priority/lua/ui/cell/CLLCellServer.lua,1e9de9f0b4bbc703296808c1ba179c29
-trCRM/upgradeRes/priority/lua/ui/cell/CLLCellWWWProgress.lua,ec0258e77f76c8b681d0f02e7a5ff342
-trCRM/upgradeRes/priority/lua/ui/cell/CLLFrame1.lua,1fd4e80adb13bd0d3cb0d7449922667b
-trCRM/upgradeRes/priority/lua/ui/cell/CLLFrame2.lua,e25ce84ca55cd643d527d09cedd6228a
-trCRM/upgradeRes/priority/lua/ui/cell/CLLUICalenderDay.lua,6e7400e2dd535ced93960c1e18fa2458
-trCRM/upgradeRes/priority/lua/ui/cell/CLLUICalenderMonth.lua,16af9ed096ad6b902a156f6e0a20021f
-trCRM/upgradeRes/priority/lua/ui/cell/CLLUICellPoplist.lua,18d47301d459fd66ed63b902546e8619
-trCRM/upgradeRes/priority/lua/ui/cell/CLToastRoot.lua,e1fb7ee5d50bd0ffc6561f5a4ec8426f
-trCRM/upgradeRes/priority/lua/ui/cell/CSCellBottomBtn.lua,afbf445995d42e012635f3d355ce6d9e
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellCompany.lua,b145bc086a8b1657a314622614dcb70a
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustFilter.lua,2fb22f9248e4af86ab42482151a5b141
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustFilterGroup.lua,93cdb67f51a62110b38e133b065f8f85
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustList.lua,86d3ed6429ba39f0a99f2307b5c43854
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustProc.lua,3f9f33de3630a03463952058ba795128
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellExtendField.lua,3178958635719c8c324791371ebf968a
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,9b2875e44fc9597805067fbbec8e75eb
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellGuidPage.lua,7b3c3f567c3e0d92065913101b08ddd0
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellMessageGroup.lua,14a960604f49e2b34e0c115561bb45a3
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellPopCheckbox.lua,25adbf58789186d43c15cfe65d2e8501
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellRecord.lua,ca94ed9775ca9f03569e49d4ad1f3e14
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform1.lua,d31b42aa50089defb22bde59b5c0474d
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform2.lua,47ac1164b1ffb27397953ccb032fd2d7
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform3.lua,f83300f176e1c35d62e00e69539998f3
-trCRM/upgradeRes/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPCalender.lua,232cf2b7f74f088e8b44c4c47cda5e95
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPConfirm.lua,e652190d378dc120a0805230692f0fc9
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPHotWheel.lua,1760aa9933da4b421f1c6093d802cb4f
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPLogin.lua,f2ba83d01af3371bee83945f470facd5
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPLoginCoolape.lua,5873be60edc8f1407dc9fb53ec567ebf
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPPopList.lua,896c4b35a6cd0d4f86ed5c0ba532ea00
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPSplash.lua,2f4c84546ec70a42deaf05cc0fd105bb
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPStart.lua,e7aa381e49a9c5aed143b69db6aad352
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
-trCRM/upgradeRes/priority/lua/ui/panel/CLLPWebView.lua,ee83701c37a6f2fc91691546a2e4fbe7
-trCRM/upgradeRes/priority/lua/ui/panel/CSPMain.lua,24f616b9384dc0eefa9955fabb1d05f1
-trCRM/upgradeRes/priority/lua/ui/panel/CSPMine.lua,3038704955b89cc61befb0fee37b14f3
-trCRM/upgradeRes/priority/lua/ui/panel/CSPMsg.lua,f72d285313cb63ff775722473af9a5f9
-trCRM/upgradeRes/priority/lua/ui/panel/CSPTasks.lua,8a39819b2f7cd6f788077f706fb7d964
-trCRM/upgradeRes/priority/lua/ui/panel/TRBasePanel.lua,dc088058987b435c998a9709297a88e6
-trCRM/upgradeRes/priority/lua/ui/panel/TRPConnect.lua,90ebaab62abe0abdb396cfd7eb888780
-trCRM/upgradeRes/priority/lua/ui/panel/TRPCusFilter.lua,f0452e3d6cfa59244dc7b9dd8f5a475d
-trCRM/upgradeRes/priority/lua/ui/panel/TRPCustDetail.lua,62aff784a70e4a1bd0faa472176a0978
-trCRM/upgradeRes/priority/lua/ui/panel/TRPCustFilter.lua,0725109e55276b5158f6ce642d28dfa6
-trCRM/upgradeRes/priority/lua/ui/panel/TRPCustList.lua,51bec42b663bfa0aecd09184717a8e03
-trCRM/upgradeRes/priority/lua/ui/panel/TRPCustListProc.lua,1973dc8d949ed85e01b09aff328d1033
trCRM/upgradeRes/priority/lua/ui/panel/TRPGuid.lua,ee29c8c2537cd4c445afe1397450cdae
-trCRM/upgradeRes/priority/lua/ui/panel/TRPLogin.lua,0992523f277369f5b08a6f756722daeb
-trCRM/upgradeRes/priority/lua/ui/panel/TRPModifyFiled.lua,99b250c386ce8dad9c10c8f4fe9874f1
-trCRM/upgradeRes/priority/lua/ui/panel/TRPMoreProc4Cust.lua,cc11fe3b2530891e91e2c649762d06f8
-trCRM/upgradeRes/priority/lua/ui/panel/TRPNewCust.lua,cb4111b5926ebb6a2a36a249c491a693
-trCRM/upgradeRes/priority/lua/ui/panel/TRPNewOrder.lua,953cc6b4afbe01b33bfb6d6078f7daf4
-trCRM/upgradeRes/priority/lua/ui/panel/TRPPlaySoundRecord.lua,ded1f35f04bd0d84bfa8fd74ddf926aa
-trCRM/upgradeRes/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
-trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep1.lua,cc912be0fe9c81e228a057e2697e29e5
-trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep2.lua,b8810c5e5890ee6f44ae82d6c7f7f526
-trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep3.lua,92f58a80dc40cb269679c222add79d32
-trCRM/upgradeRes/priority/lua/ui/panel/TRPSelectCompany.lua,a4ebb94a988f9c6c534703f89efeb7a8
-trCRM/upgradeRes/priority/lua/ui/panel/TRPSysMsgDetail.lua,6266494c653deda1b5a391cc7f38a06a
-trCRM/upgradeRes/priority/lua/ui/panel/TRPSysMsgList.lua,518461e7bf8f3b3420fa9377a23db86a
-trCRM/upgradeRes/priority/ui/other/IOS/AlertRoot.unity3d,527993b4e82d8f6bab7d0b1e0fdfd8d4
-trCRM/upgradeRes/priority/ui/other/IOS/Frame1.unity3d,e0760bb76b26b81b295e4a1d55cacd65
-trCRM/upgradeRes/priority/ui/other/IOS/Frame2.unity3d,7dcd1d4f4868681c0e942ef76b8e0ae3
-trCRM/upgradeRes/priority/ui/other/IOS/InputCheckboxs.unity3d,1776d06dcfc809f5c738a1cf349a4f3d
-trCRM/upgradeRes/priority/ui/other/IOS/InputDate.unity3d,c022ba4a5bf2ac56dcc6ef39c0977840
-trCRM/upgradeRes/priority/ui/other/IOS/InputMultText.unity3d,b45382abca99dc92ea2808884c91a4ab
-trCRM/upgradeRes/priority/ui/other/IOS/InputPoplist.unity3d,7bc1ca12258d515e851f7eb2b0dd88eb
-trCRM/upgradeRes/priority/ui/other/IOS/InputText.unity3d,9594db6593af82ab5eb5cb4b87984bb5
-trCRM/upgradeRes/priority/ui/other/IOS/reportform1.unity3d,ec74ff1d9c24b16c6c395d9e8875ed4a
-trCRM/upgradeRes/priority/ui/other/IOS/reportform2.unity3d,a937de39eb62c1955c5e582bc2c5c7e0
-trCRM/upgradeRes/priority/ui/other/IOS/reportform3.unity3d,bb0e87df12d6bcfa2339ec754bc17a06
+trCRM/upgradeRes/priority/lua/json/rpcserver.lua,48b8f5e53a1141652c38f8a5a8a77928
+trCRM/upgradeRes/priority/lua/public/CLLQueue.lua,065303c980678b25b11854bfec1690f3
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustList.lua,86d3ed6429ba39f0a99f2307b5c43854
+trCRM/upgradeRes/priority/lua/ui/cell/CLLFrame2.lua,e25ce84ca55cd643d527d09cedd6228a
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellMessageGroup.lua,14a960604f49e2b34e0c115561bb45a3
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_set2.unity3d,bca882d59188e7765fb55f9cf11f477e
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_remind.unity3d,671a3df29d39a9d6caf53bc9eaa8dde2
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelMine.unity3d,df795a0e3ea6e916db2a444c10717689
+trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_3.unity3d,d095dbcdbab9d44c6aa63fa92e5f984b
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
trCRM/upgradeRes/priority/ui/panel/IOS/PanelBackplate.unity3d,1ce1dbfaa8ab9959965e6e0a70a2feed
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelCalender.unity3d,2b45d569d212c3431f2351e10d1cc07e
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelConfirm.unity3d,ba942c1715beb3f81e63de30ac6fc776
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelConnect.unity3d,060bc89717ae9afd7f2097a67d21147a
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustDetail.unity3d,7f72e43812c1b7c185141040f2266ba0
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustFilter.unity3d,f8ed6b398ab53ebe1bd35750a116eb58
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustList.unity3d,ffbc461fe8fd19d6b822d00b1fbafaa7
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustListProc.unity3d,2a3ba4ea9a10c535f8918d67ee1d5a18
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelGuid.unity3d,43ae7eeceb485a4ea356016016238450
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelHotWheel.unity3d,e3508a556e1e6330f6128b4280d5a28f
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelLogin.unity3d,e9a42160345ab8acba8ebaea740474bb
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelMain.unity3d,bdf837ee04a698e2fcf129a95a9d1f2e
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelMask4Panel.unity3d,6df5d4b74cb3e18589239a4f5a0f2988
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelMine.unity3d,f2a9c55d2610cd1134326b0d54fd7b62
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelModifyFiled.unity3d,915c4c913d69e73854874ee4de86d293
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,a99601792bb8cd2016be48e1f2d36010
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelMsg.unity3d,ac919e26f69de1b592dcad450e895161
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewCust.unity3d,da583f7f3ae74b735739055610dc0b98
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewOrder.unity3d,23a3f7b93621758e6fec0edaf118babc
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelPlaySoundRecord.unity3d,55768dcfcc17809be4ba65884167366b
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelPopCheckBoxs.unity3d,d80e0a53aae77861d7bba0a84771fd98
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelPopList.unity3d,9bd875bf8acc96aabae1fd4e4fe7601a
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,c6392579adb6d3c6c2a252d1b69eccbf
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,68ebacc1e0088c955903e2bbf75d8216
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,7f5131c43a7d8a6db9a15b2d928606e3
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelSceneManager.unity3d,7c9a53dc83974a6cab329f0987511428
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelSelectCompany.unity3d,051cc54004950403d20187f4daeb76fe
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelSetting.unity3d,295541b5f67a10ec7f81ec04acc3f4b4
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelSplash.unity3d,f4061c91989b8832489c51d417e0baaf
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelStart.unity3d,f86ac64b15f6d871f734ed7ac5a145a7
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelSysMsgDetail.unity3d,b72c64d0d79d3f270f3df3620ef758ac
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelSysMsgList.unity3d,3d0a1fd9c4b5d05b268bb73d3c810127
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelTasks.unity3d,f4519bf810eaaae4b4addf5092426953
+trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off.unity3d,1bd2636935bdcbcf3d55a69f873c44ad
trCRM/upgradeRes/priority/ui/panel/IOS/PanelWWWProgress.unity3d,86786bd679b1592402f9cd98ba1bc0cf
-trCRM/upgradeRes/priority/ui/panel/IOS/PanelWebView.unity3d,7b212b719fe9f766101c137f9a89640a
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_enterprise.unity3d,a8b0984f1a0b1b8dd9ceb487cc7d1884
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/follow.unity3d,6ec5096b527145f85d42630f1a59f2c2
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/funnel.unity3d,9eabb57135190dc338da14a450b63e72
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelModifyFiled.unity3d,915c4c913d69e73854874ee4de86d293
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_order.unity3d,4761f197ec41cf9d98ad4be47bed3d1a
+trCRM/upgradeRes/other/uiAtlas/public/IOS/radio_full.unity3d,cc41b26969b05580412381ffcf7019cd
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/get.unity3d,e15371fcae70c8c9ea93baab3f7cf286
+trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/hotWheel_prog.unity3d,f71546fbb57c422c80f6fe06648c0e96
+trCRM/upgradeRes/priority/lua/toolkit/CLLVerManager.lua,39b154e796d60c2c40ebcc427a5c05e8
+trCRM/upgradeRes/other/uiAtlas/icon/IOS/icon_26_no.unity3d,d39394e00d037c17920ed100a1d4be40
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_task.unity3d,747e55b8f7096ca0aad8270690100afd
+trCRM/upgradeRes/priority/lua/CLLMainLua.lua,71dd99dc998927bca633feb259d164a8
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_followup.unity3d,53f6896e2d1d3bbb17bf916c681575ec
+trCRM/upgradeRes/priority/lua/ui/panel/TRPSelectCompany.lua,a4ebb94a988f9c6c534703f89efeb7a8
+trCRM/upgradeRes/other/uiAtlas/coolape/IOS/button.unity3d,c8009be975691b21cac9fdc55f343cc3
+trCRM/upgradeRes/other/uiAtlas/public/IOS/check_full.unity3d,d2a9f4ed2598e59dc161cce43869979d
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPWebView.lua,ee83701c37a6f2fc91691546a2e4fbe7
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform3.lua,f83300f176e1c35d62e00e69539998f3
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/position.unity3d,9bc2ac8854be9c3f6694f99d0f4bf1c1
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelLogin.unity3d,46bb818a908357037e63bede9cd2369d
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_bg_20.unity3d,0bea7b4023f2d6ab3e3ee160affec665
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelSetting.unity3d,295541b5f67a10ec7f81ec04acc3f4b4
+trCRM/upgradeRes/priority/lua/ui/panel/TRPCustList.lua,51bec42b663bfa0aecd09184717a8e03
+trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/hotWheel_bg.unity3d,1842a9eb299cbf9d9e37bef4e7ced573
+trCRM/upgradeRes/priority/lua/cfg/DBCfgTool.lua,a6760e05dcc5f91202e3659179a464e7
+trCRM/upgradeRes/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
+trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off_bg.unity3d,7a6e9b072b57dc847ede7eb1c679ee62
+trCRM/upgradeRes/other/uiAtlas/coolape/IOS/logo.unity3d,a23619eae53064c611eeb49ba6ad21f6
+trCRM/upgradeRes/priority/lua/db/DBRoot.lua,49468afd86425e8a8c3195d8bf45b0f3
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/play2.unity3d,41dc3f7483b566a92f22718cc1363f12
+trCRM/upgradeRes/priority/lua/json/json.lua,a2914572290611d3da35f4a7eec92022
+trCRM/upgradeRes/other/uiAtlas/login/IOS/log_visible.unity3d,af743a8a46a78caa3aab15ecb2d4f73d
+trCRM/upgradeRes/priority/lua/public/CLLPrefs.lua,1719d57c97fe0d8f2c9d1596cb6e2ac8
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/right.unity3d,3d5aa57f1b9a4c63ceac9f3f8e9a588a
+trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg_num2.unity3d,3fdc6a699415a020e28933e632fd5baa
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellCompany.lua,b145bc086a8b1657a314622614dcb70a
+trCRM/upgradeRes/priority/lua/toolkit/CLLPrintEx.lua,86d891ec4d8bfa5533704c142fc97235
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPConfirm.lua,e652190d378dc120a0805230692f0fc9
+trCRM/upgradeRes/priority/lua/toolkit/MyUtl.lua,ce4513130e34ef66da98f9c3b1ec8299
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_noshadow.unity3d,c56930cafa0823cbe54854859039cc43
+trCRM/upgradeRes/other/uiAtlas/login/IOS/log_no.unity3d,e167bfde724e7a2c40bec51945931877
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/remove.unity3d,773dc01867e41eabf23bf22dc4c35507
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,68ebacc1e0088c955903e2bbf75d8216
+trCRM/upgradeRes/priority/lua/bio/BioType.lua,4667e9def8191cbf2b9dc25e928bc23f
+trCRM/upgradeRes/other/uiAtlas/public/IOS/button.unity3d,4a1c28e520ccb1f66e038bfe4e8057ab
+trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_me.unity3d,546388655250fedaa50785dd824d30ac
+trCRM/upgradeRes/priority/lua/public/CLLIncludeBase.lua,6011b5732b185053dc107332593e5d2b
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_data.unity3d,d2c0627b468f06867987c41b74c84dce
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
trCRM/upgradeRes/priority/ui/panel/IOS/ToastRoot.unity3d,202053ab489839884b0569f173796cfe
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,63cc509261ff856e2833689b5c5391a0
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,7f5131c43a7d8a6db9a15b2d928606e3
+trCRM/upgradeRes/other/uiAtlas/login/IOS/log_password.unity3d,1dd1c1396c668d0a4dad1228ca0ec903
+trCRM/upgradeRes/priority/lua/ui/panel/CSPMine.lua,3038704955b89cc61befb0fee37b14f3
+trCRM/upgradeRes/priority/lua/ui/panel/CSPTasks.lua,8a39819b2f7cd6f788077f706fb7d964
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform1.lua,d31b42aa50089defb22bde59b5c0474d
+trCRM/upgradeRes/priority/lua/ui/panel/TRPSysMsgDetail.lua,6266494c653deda1b5a391cc7f38a06a
+trCRM/upgradeRes/priority/ui/other/IOS/AlertRoot.unity3d,eebc730459217511668036a3271830cb
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellPopCheckbox.lua,25adbf58789186d43c15cfe65d2e8501
+trCRM/upgradeRes/priority/lua/ui/panel/CSPMsg.lua,f72d285313cb63ff775722473af9a5f9
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustDetail.unity3d,7f72e43812c1b7c185141040f2266ba0
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustListProc.unity3d,2a3ba4ea9a10c535f8918d67ee1d5a18
+trCRM/upgradeRes/priority/lua/toolkit/CLLUpdateUpgrader.lua,bfff3548aa7cd983c3de46e5defae423
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelSplash.unity3d,f4061c91989b8832489c51d417e0baaf
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/border.unity3d,29a0e90c8c75eaac236a3bf65ee28fd3
+trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_work2.unity3d,8579e52d8aa949abce514ec4682d95e5
+trCRM/upgradeRes/priority/lua/ui/panel/TRPNewCust.lua,cb4111b5926ebb6a2a36a249c491a693
+trCRM/upgradeRes/other/uiAtlas/news/IOS/news_3.unity3d,267178166037b19856d0a3a481ee810d
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_ranking.unity3d,d6ec636ccfbf0c4525703871069765c5
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewOrder.unity3d,23a3f7b93621758e6fec0edaf118babc
+trCRM/upgradeRes/priority/lua/ui/panel/TRPConnect.lua,90ebaab62abe0abdb396cfd7eb888780
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/play.unity3d,87cd04e1f707b587132b189c72823f7d
+trCRM/upgradeRes/priority/ui/other/IOS/InputMultText.unity3d,22cbe869950c1b472550b5e3502ae5ca
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_tel.unity3d,ec81ebdafd1aa4d439f1a10d71c079af
+trCRM/upgradeRes/priority/ui/other/IOS/InputPoplist.unity3d,7bc1ca12258d515e851f7eb2b0dd88eb
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustProc.lua,3f9f33de3630a03463952058ba795128
+trCRM/upgradeRes/priority/lua/ui/cell/CSCellBottomBtn.lua,afbf445995d42e012635f3d355ce6d9e
+trCRM/upgradeRes/priority/lua/db/DBStatistics.lua,e64ad532dabb2cb70c4053e223770969
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/input.unity3d,cecd60bbaff9e81a94c98a20c5525a14
+trCRM/upgradeRes/priority/ui/other/IOS/InputCheckboxs.unity3d,1776d06dcfc809f5c738a1cf349a4f3d
+trCRM/upgradeRes/other/uiAtlas/news/IOS/news_2.unity3d,5b2f3543562cb611fd5b986f93b9d450
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPPopList.lua,896c4b35a6cd0d4f86ed5c0ba532ea00
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewFollow.unity3d,eaf41d7480e0f36f8beb37aa4442b6e1
+trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_4.unity3d,ff6d1ab367bc0bfd8603ac8f246cb66c
+trCRM/upgradeRes/priority/lua/ui/panel/TRPCustDetail.lua,62aff784a70e4a1bd0faa472176a0978
+trCRM/upgradeRes/priority/lua/bio/BioOutputStream.lua,84fd65eb0d1a166e77447f61254d62b5
+trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep2.lua,b8810c5e5890ee6f44ae82d6c7f7f526
+trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo.unity3d,1b95b61e7f4824e57f67ef78bfd4e592
+trCRM/upgradeRes/other/uiAtlas/login/IOS/log_bg.unity3d,f3add14e03472a28d56315b260b35c82
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/phone.unity3d,917fe8084ceb86ffe99a91119401b398
+trCRM/upgradeRes/priority/ui/other/IOS/reportform2.unity3d,a937de39eb62c1955c5e582bc2c5c7e0
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_check.unity3d,c374b4c94e874e2602d8c2293981c22e
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_peo.unity3d,9e7f6d7cf29af9e5fb02befb5121ad49
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_1.unity3d,0ce47cb41a1c039d116f0a1176ffdc82
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_fingerprint.unity3d,c8c718e4646589cb5c1e9fa92165ae98
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelHotWheel.unity3d,e3508a556e1e6330f6128b4280d5a28f
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/more.unity3d,7d7a478fdc0c1cc0506c6fd92d230b3f
+trCRM/upgradeRes/priority/lua/db/DBCust.lua,8e970152224262213e454e36f3dd19a8
+trCRM/upgradeRes/priority/lua/ui/panel/CSPMain.lua,24f616b9384dc0eefa9955fabb1d05f1
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_4.unity3d,d98d7815445c18b51e8c2abcc382f764
+trCRM/upgradeRes/priority/ui/other/IOS/reportform1.unity3d,ec74ff1d9c24b16c6c395d9e8875ed4a
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_password2.unity3d,e87a02a038d312d2a30260aa585d80fb
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
+trCRM/upgradeRes/priority/lua/net/NetProtoUsermgrClient.lua,f65df462666ca9fca7f16c2954984527
+trCRM/upgradeRes/priority/lua/db/DBUser.lua,d01c1b88bed8d5d777f76eca559b5b46
+trCRM/upgradeRes/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
+trCRM/upgradeRes/other/uiAtlas/public/IOS/button2.unity3d,40d97a2e75c6356efc74c2615133c2a7
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/order.unity3d,e30128770395be6e2634c10acdedb730
+trCRM/upgradeRes/priority/atlas/IOS/atlasAllReal.unity3d,5318be1a09feeb3aa3ccb1e7fb86dbd2
+trCRM/upgradeRes/other/uiAtlas/coolape/IOS/input.unity3d,85676a4ff405d2c3bf8bdabd99d40745
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellGuidPage.lua,7b3c3f567c3e0d92065913101b08ddd0
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_about.unity3d,e38e9dcd1c3460227594821595e9e7e9
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/time.unity3d,3798702a6f194c1ce9e5e9b15836239f
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellReportform2.lua,47ac1164b1ffb27397953ccb032fd2d7
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/write.unity3d,46db82a1fde728812cfa97c68aca4020
+trCRM/upgradeRes/priority/lua/ui/panel/TRPNewOrder.lua,70495458e067e8b8970097651dd253e1
+trCRM/upgradeRes/priority/ui/other/IOS/Frame1.unity3d,e0760bb76b26b81b295e4a1d55cacd65
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/full_star.unity3d,1e26fbb1830f8f2b34f5cc3bd279e4ac
+trCRM/upgradeRes/priority/lua/net/CLLNet.lua,df3108c65b288722530f80bb73893062
+trCRM/upgradeRes/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelStart.unity3d,f86ac64b15f6d871f734ed7ac5a145a7
+trCRM/upgradeRes/other/uiAtlas/coolape/IOS/name.unity3d,36243d44e09cf15a30c136f4e8f7b06e
+trCRM/upgradeRes/priority/lua/ui/panel/TRPNewFollow.lua,ef981e78f783343271b8c655f358084c
+trCRM/upgradeRes/priority/lua/bio/BioUtl.lua,f64afdd9ccdf943f5d4ba2fc3c3241ef
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/pause.unity3d,8eff010febb0a0d6365a65fed01cf38d
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_color.unity3d,0f386613e266039c15d6dc1dfa8643bc
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_time.unity3d,79a2d5d9c6d24cc63998911a623d9244
+trCRM/upgradeRes/priority/lua/ui/cell/CLLCellServer.lua,1e9de9f0b4bbc703296808c1ba179c29
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelConfirm.unity3d,ba942c1715beb3f81e63de30ac6fc776
+trCRM/upgradeRes/other/uiAtlas/guid/IOS/1.unity3d,7f93940e3dc101e21d69ad8a25b43e53
+trCRM/upgradeRes/priority/lua/ui/cell/CLLUICalenderDay.lua,6e7400e2dd535ced93960c1e18fa2458
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_opinion.unity3d,a6972381cca3a2e78a7e6ffd2b6f2748
+trCRM/upgradeRes/other/uiAtlas/public/IOS/check.unity3d,615efa024329ca180668ab885cded3c7
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_head_bg.unity3d,4621f18a14df4d78d9f8475b6b561467
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellExtendField.lua,3178958635719c8c324791371ebf968a
+trCRM/upgradeRes/other/uiAtlas/login/IOS/log_sms.unity3d,64043728c70f02d54320813cd455fd4e
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/kuang.unity3d,44f2665e82c2f22c97b1fa8065dcca85
+trCRM/upgradeRes/other/uiAtlas/public/IOS/_empty.unity3d,8e127e3490c9651f0756f621dc2fb1a6
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/oean.unity3d,2220377e30d7a40b551ff00531cde4b0
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea7caf2ab8b5a09f786b69
+trCRM/upgradeRes/priority/lua/ui/panel/TRPPlaySoundRecord.lua,ded1f35f04bd0d84bfa8fd74ddf926aa
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/task.unity3d,aa21e488c5f526e12886cae586f30375
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_3.unity3d,af4d8fecaed77fb37428cbd9c347f919
+trCRM/upgradeRes/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_notice.unity3d,6ebfcad9d2385d00b275e41b69bf5633
+trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo2.unity3d,41c5912127597703a9c1ab2848c89ff6
+trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg.unity3d,64c5142dc2ace4a338bac2b103207f36
+trCRM/upgradeRes/other/uiAtlas/login/IOS/log_invisible.unity3d,3f52b93a1cffe3583e34c9252554483a
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelMsg.unity3d,ac919e26f69de1b592dcad450e895161
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_check.unity3d,f1b1be17d8aa2d7065a0724334dc3893
+trCRM/upgradeRes/other/uiAtlas/public/IOS/choose.unity3d,ebc64a7c7ed8354e57deb1938557c9d8
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelMask4Panel.unity3d,6df5d4b74cb3e18589239a4f5a0f2988
+trCRM/upgradeRes/other/uiAtlas/login/IOS/log_people.unity3d,834fdf5f5868cc4c905e95f8e41dbf20
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPSplash.lua,2f4c84546ec70a42deaf05cc0fd105bb
+trCRM/upgradeRes/priority/lua/ui/panel/TRPModifyFiled.lua,99b250c386ce8dad9c10c8f4fe9874f1
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelSceneManager.unity3d,7c9a53dc83974a6cab329f0987511428
+trCRM/upgradeRes/priority/lua/public/class.lua,cc0f201cc55c59f8bc8f623853382b9c
+trCRM/upgradeRes/other/uiAtlas/news/IOS/news_4.unity3d,ae0c7c492a9ff216765d0a98f32604db
+trCRM/upgradeRes/priority/lua/net/CLLNetSerialize.lua,30c24f11d46d7b887bf32177acb92c81
+trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_2.unity3d,09643bb6fdab7301459fa4206afe89ee
+trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_work.unity3d,7fa96651b9f54de569c59611a7d07b6b
+trCRM/upgradeRes/priority/lua/cfg/DBCfg.lua,3d0e60dbcdaa61b8553eee17f4d68b32
+trCRM/upgradeRes/priority/ui/other/IOS/reportform3.unity3d,bb0e87df12d6bcfa2339ec754bc17a06
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelMain.unity3d,bdf837ee04a698e2fcf129a95a9d1f2e
+trCRM/upgradeRes/other/uiAtlas/icon/IOS/company_1.unity3d,3ff3b66fd2476d8245f07daeda300ab2
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/star.unity3d,3bcf43f59ae8c6b2920fbdfd3a5a3252
+trCRM/upgradeRes/priority/lua/ui/panel/TRPCusFilter.lua,f0452e3d6cfa59244dc7b9dd8f5a475d
+trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news.unity3d,ccfb2fcc6908aaa0643bff4ccdb8fd1a
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPLoginCoolape.lua,5873be60edc8f1407dc9fb53ec567ebf
+trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg_num1.unity3d,244cfbdb8f31592e89902640ce1abeb6
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelGuid.unity3d,43ae7eeceb485a4ea356016016238450
+trCRM/upgradeRes/priority/lua/ui/panel/TRPSysMsgList.lua,518461e7bf8f3b3420fa9377a23db86a
+trCRM/upgradeRes/other/uiAtlas/public/IOS/radio.unity3d,0c43a7ba6ffa8229a8639635ce0ce238
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_wait.unity3d,a593ecf733c7c21e1f754328c9601139
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/limt.unity3d,e40d61488fa008460f97c9e44b2956c7
+trCRM/upgradeRes/priority/lua/ui/cell/CLToastRoot.lua,e1fb7ee5d50bd0ffc6561f5a4ec8426f
+trCRM/upgradeRes/priority/lua/public/CLLPool.lua,3e6a97eb07cfdff7c399eb3e956ba77c
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/log_bg.unity3d,6e86477cb2815f29ab537aa085b88b85
+trCRM/upgradeRes/priority/lua/ui/panel/TRPCustFilter.lua,0725109e55276b5158f6ce642d28dfa6
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_password.unity3d,614c3d4d72ec9ac573a471868326945f
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_customer.unity3d,eba6ba58a8149e369e8e02b8cac777c8
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/screen.unity3d,ed29a75e7c18989d91862b317f781586
+trCRM/upgradeRes/priority/lua/ui/panel/TRBasePanel.lua,dc088058987b435c998a9709297a88e6
+trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news2.unity3d,534faecceb533b756cb7df4aa8f13d05
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelSelectCompany.unity3d,051cc54004950403d20187f4daeb76fe
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/search.unity3d,e47e0f93cf36d5b583ed74dd599e6036
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_set.unity3d,855ee24944fb29abc087341b9ce9d117
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustFilter.unity3d,f8ed6b398ab53ebe1bd35750a116eb58
+trCRM/upgradeRes/priority/lua/db/DBMessage.lua,04d61da969ffa87835209f7bc25369b0
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/msg.unity3d,62a51311105a27bfca2fc2ac35c9aab8
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelPlaySoundRecord.unity3d,55768dcfcc17809be4ba65884167366b
+trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_unread.unity3d,11f64f47835f9a2dc98f55d5d95d524a
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_2.unity3d,f8983e295d741411b2dbc2cfa1646ce3
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/important.unity3d,5a0439d61813daf35289712322e7f066
+trCRM/upgradeRes/priority/lua/toolkit/KKLogListener.lua,341e17bfccad7217d30814868712ea15
+trCRM/upgradeRes/priority/ui/other/IOS/InputDate.unity3d,c022ba4a5bf2ac56dcc6ef39c0977840
+trCRM/upgradeRes/priority/lua/ui/cell/CLLUICellPoplist.lua,18d47301d459fd66ed63b902546e8619
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPLogin.lua,f2ba83d01af3371bee83945f470facd5
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/record.unity3d,ed6faf19e45aa99e37c622ef92e131dc
+trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_clean_up.unity3d,7350d7ed4886070c5c0b79f3dcd5fe26
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelCalender.unity3d,2b45d569d212c3431f2351e10d1cc07e
+trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep1.lua,cc912be0fe9c81e228a057e2697e29e5
+trCRM/upgradeRes/priority/ui/other/IOS/Frame2.unity3d,7dcd1d4f4868681c0e942ef76b8e0ae3
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/peo.unity3d,0d912c6c28bf962b0e1f28ac4f76d2ba
+trCRM/upgradeRes/priority/lua/toolkit/LuaUtl.lua,d9a3b772a44fc11d3407de3194f06d51
+trCRM/upgradeRes/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
+trCRM/upgradeRes/other/uiAtlas/public/IOS/company_bg.unity3d,6d7720ce23e31c17a508386fe837ab12
+trCRM/upgradeRes/priority/lua/ui/cell/CLLCellWWWProgress.lua,ec0258e77f76c8b681d0f02e7a5ff342
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPCalender.lua,232cf2b7f74f088e8b44c4c47cda5e95
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustFilterGroup.lua,93cdb67f51a62110b38e133b065f8f85
+trCRM/upgradeRes/priority/lua/ui/panel/TRPCustListProc.lua,1973dc8d949ed85e01b09aff328d1033
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/check.unity3d,8617a2ac9187216cfb81f8b712181055
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPHotWheel.lua,1760aa9933da4b421f1c6093d802cb4f
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelPopCheckBoxs.unity3d,d80e0a53aae77861d7bba0a84771fd98
+trCRM/upgradeRes/priority/lua/public/CLLInclude.lua,476b749169d54c4b08e8749743983d92
+trCRM/upgradeRes/other/uiAtlas/coolape/IOS/password.unity3d,584af77561cb1dfe6aca0640a6a2b9cf
+trCRM/upgradeRes/priority/ui/other/IOS/InputText.unity3d,9594db6593af82ab5eb5cb4b87984bb5
+trCRM/upgradeRes/priority/lua/ui/cell/CLLUICalenderMonth.lua,16af9ed096ad6b902a156f6e0a20021f
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelTasks.unity3d,f4519bf810eaaae4b4addf5092426953
+trCRM/upgradeRes/priority/lua/ui/panel/CLLPStart.lua,f90028f3e667f9e4df2a7f4aefefa701
+trCRM/upgradeRes/other/uiAtlas/guid/IOS/2.unity3d,2953bdc65ac46367feda300cfecd11bf
+trCRM/upgradeRes/priority/lua/ui/panel/TRPLogin.lua,0992523f277369f5b08a6f756722daeb
+trCRM/upgradeRes/priority/lua/public/CLLStack.lua,579069654d88a15e43c818a6b8079b15
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/add.unity3d,678ae44b69930eede7020bb574f7ee11
+trCRM/upgradeRes/priority/lua/ui/panel/TRPResetPasswordStep3.lua,92f58a80dc40cb269679c222add79d32
+trCRM/upgradeRes/priority/lua/net/NetProto.lua,2b1dafe00efd5be052d2cdd3dcabef71
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelPopList.unity3d,9bd875bf8acc96aabae1fd4e4fe7601a
+trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_me2.unity3d,f7a5b3fdea590751dea5877236e013c8
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellRecord.lua,ca94ed9775ca9f03569e49d4ad1f3e14
+trCRM/upgradeRes/other/uiAtlas/news/IOS/news_1.unity3d,aba0d05e735d2f90eff16694efbd299a
+trCRM/upgradeRes/priority/lua/ui/cell/CLLFrame1.lua,1fd4e80adb13bd0d3cb0d7449922667b
+trCRM/upgradeRes/priority/lua/toolkit/BitUtl.lua,82e46240625342d5afe8ea68a609c9cb
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelConnect.unity3d,060bc89717ae9afd7f2097a67d21147a
+trCRM/upgradeRes/priority/localization/Chinese.txt,08ac586b625d0a126a610344a1846e8f
+trCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/loading.unity3d,ae3b70b6c5220e215b73d037edd9a45a
+trCRM/upgradeRes/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
+trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_1.unity3d,f8e9f5aec240b7818a58b7674fd14939
+trCRM/upgradeRes/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
trCRM/upgradeRes/priority/www/baidumap.html,d210e48796dd96343f9c17bc1d230136
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelNewCust.unity3d,da583f7f3ae74b735739055610dc0b98
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelSysMsgDetail.unity3d,b72c64d0d79d3f270f3df3620ef758ac
+trCRM/upgradeRes/priority/lua/ui/panel/TRPMoreProc4Cust.lua,cc11fe3b2530891e91e2c649762d06f8
+trCRM/upgradeRes/other/uiAtlas/guid/IOS/3.unity3d,c811075966bb6d036edcc94bb84302af
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,a99601792bb8cd2016be48e1f2d36010
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelCustList.unity3d,ffbc461fe8fd19d6b822d00b1fbafaa7
+trCRM/upgradeRes/priority/lua/ui/cell/TRCellCustFilter.lua,2fb22f9248e4af86ab42482151a5b141
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/suc.unity3d,750f9f149f273d3f2643b3ff634705e4
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/bg.unity3d,bd8a8bbae53c33e67e357862b7e6228a
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelSysMsgList.unity3d,3d0a1fd9c4b5d05b268bb73d3c810127
+trCRM/upgradeRes/other/uiAtlas/cust/IOS/del.unity3d,d2c4a7e271dac1f816115acd9caf6873
+trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_remind.unity3d,28b12417bc85c9ba865a36339c5df145
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelWebView.unity3d,7b212b719fe9f766101c137f9a89640a
+trCRM/upgradeRes/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
+trCRM/upgradeRes/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,c6392579adb6d3c6c2a252d1b69eccbf
+trCRM/upgradeRes/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
+trCRM/upgradeRes/other/uiAtlas/coolape/IOS/user.unity3d,5e6e50cd8a40d64ae2c58a2d531676fa
diff --git a/Assets/CoolapeFrameData/verControl/IOS/ver4UpgradeList.v b/Assets/CoolapeFrameData/verControl/IOS/ver4UpgradeList.v
new file mode 100644
index 0000000..7bdc5d6
--- /dev/null
+++ b/Assets/CoolapeFrameData/verControl/IOS/ver4UpgradeList.v
@@ -0,0 +1 @@
+[{"md5":"7cea40769130dc5038fe89c11a8a93b4", "name":"2020_07_10_22_48_57", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}, {"md5":"8d20a2ebc95c3de0326c2268cd0a5b3e", "name":"2020_07_10_23_32_42", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}, {"md5":"f4a725f0bda3498aacbbad2c8a62b085", "name":"2020_07_10_23_40_12", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}, {"md5":"b30346bad7f0a7817ec446846d9448f7", "name":"2020_07_10_23_42_46", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}, {"md5":"9b0766ddc30e9eb0c3fb26346ec2c09d", "name":"2020_07_10_23_46_04", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}, {"md5":"95b27778bfd5966abe00749d5c0cc698", "name":"2020_07_10_23_48_21", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}, {"md5":"82545003cc15d2908472019870d6e65c", "name":"2020_07_11_10_51_04", "upload":{"d265697d3e1ff6fe9435580ea91c4482":true}, "exist":true, "remark":""}]
\ No newline at end of file
diff --git a/Assets/CoolapeFrameData/verControl/IOS/ver4UpgradeList.v.meta b/Assets/CoolapeFrameData/verControl/IOS/ver4UpgradeList.v.meta
new file mode 100644
index 0000000..8d8fdec
--- /dev/null
+++ b/Assets/CoolapeFrameData/verControl/IOS/ver4UpgradeList.v.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 7a6d80e453a254239a65773767dba727
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/CoolapeFrameData/verControl/IOS/ver4UpgradeMd5.v b/Assets/CoolapeFrameData/verControl/IOS/ver4UpgradeMd5.v
index c846c0e..abcd34c 100644
--- a/Assets/CoolapeFrameData/verControl/IOS/ver4UpgradeMd5.v
+++ b/Assets/CoolapeFrameData/verControl/IOS/ver4UpgradeMd5.v
@@ -1,256 +1,274 @@
-trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/button.unity3d,c8009be975691b21cac9fdc55f343cc3
-trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/input.unity3d,85676a4ff405d2c3bf8bdabd99d40745
-trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/logo.unity3d,a23619eae53064c611eeb49ba6ad21f6
-trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/name.unity3d,36243d44e09cf15a30c136f4e8f7b06e
-trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/password.unity3d,584af77561cb1dfe6aca0640a6a2b9cf
-trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/user.unity3d,5e6e50cd8a40d64ae2c58a2d531676fa
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/add.unity3d,678ae44b69930eede7020bb574f7ee11
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/bg.unity3d,bd8a8bbae53c33e67e357862b7e6228a
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/border.unity3d,29a0e90c8c75eaac236a3bf65ee28fd3
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/check.unity3d,8617a2ac9187216cfb81f8b712181055
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_followup.unity3d,53f6896e2d1d3bbb17bf916c681575ec
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_task.unity3d,747e55b8f7096ca0aad8270690100afd
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_tel.unity3d,ec81ebdafd1aa4d439f1a10d71c079af
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/del.unity3d,d2c4a7e271dac1f816115acd9caf6873
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/follow.unity3d,6ec5096b527145f85d42630f1a59f2c2
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/full_star.unity3d,1e26fbb1830f8f2b34f5cc3bd279e4ac
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/funnel.unity3d,9eabb57135190dc338da14a450b63e72
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/get.unity3d,e15371fcae70c8c9ea93baab3f7cf286
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/important.unity3d,5a0439d61813daf35289712322e7f066
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/input.unity3d,cecd60bbaff9e81a94c98a20c5525a14
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/kuang.unity3d,44f2665e82c2f22c97b1fa8065dcca85
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/limt.unity3d,e40d61488fa008460f97c9e44b2956c7
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/more.unity3d,7d7a478fdc0c1cc0506c6fd92d230b3f
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/msg.unity3d,62a51311105a27bfca2fc2ac35c9aab8
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/oean.unity3d,2220377e30d7a40b551ff00531cde4b0
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/order.unity3d,e30128770395be6e2634c10acdedb730
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/pause.unity3d,8eff010febb0a0d6365a65fed01cf38d
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/peo.unity3d,0d912c6c28bf962b0e1f28ac4f76d2ba
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/phone.unity3d,917fe8084ceb86ffe99a91119401b398
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/play.unity3d,87cd04e1f707b587132b189c72823f7d
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/play2.unity3d,41dc3f7483b566a92f22718cc1363f12
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/position.unity3d,9bc2ac8854be9c3f6694f99d0f4bf1c1
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/record.unity3d,ed6faf19e45aa99e37c622ef92e131dc
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/remove.unity3d,773dc01867e41eabf23bf22dc4c35507
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/right.unity3d,3d5aa57f1b9a4c63ceac9f3f8e9a588a
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/screen.unity3d,ed29a75e7c18989d91862b317f781586
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/search.unity3d,e47e0f93cf36d5b583ed74dd599e6036
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/star.unity3d,3bcf43f59ae8c6b2920fbdfd3a5a3252
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/suc.unity3d,750f9f149f273d3f2643b3ff634705e4
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/task.unity3d,aa21e488c5f526e12886cae586f30375
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/time.unity3d,3798702a6f194c1ce9e5e9b15836239f
-trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/write.unity3d,46db82a1fde728812cfa97c68aca4020
-trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/1.unity3d,7f93940e3dc101e21d69ad8a25b43e53
-trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/2.unity3d,2953bdc65ac46367feda300cfecd11bf
-trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/3.unity3d,c811075966bb6d036edcc94bb84302af
-trCRM/upgradeRes4Publish/other/uiAtlas/hotwheel/IOS/hotWheel_bg.unity3d,1842a9eb299cbf9d9e37bef4e7ced573
-trCRM/upgradeRes4Publish/other/uiAtlas/hotwheel/IOS/hotWheel_prog.unity3d,f71546fbb57c422c80f6fe06648c0e96
-trCRM/upgradeRes4Publish/other/uiAtlas/hotwheel/IOS/loading.unity3d,ae3b70b6c5220e215b73d037edd9a45a
-trCRM/upgradeRes4Publish/other/uiAtlas/icon/IOS/company_1.unity3d,3ff3b66fd2476d8245f07daeda300ab2
-trCRM/upgradeRes4Publish/other/uiAtlas/icon/IOS/icon_26_no.unity3d,d39394e00d037c17920ed100a1d4be40
-trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_bg.unity3d,f3add14e03472a28d56315b260b35c82
-trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_invisible.unity3d,3f52b93a1cffe3583e34c9252554483a
-trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_no.unity3d,e167bfde724e7a2c40bec51945931877
-trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_password.unity3d,1dd1c1396c668d0a4dad1228ca0ec903
-trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_people.unity3d,834fdf5f5868cc4c905e95f8e41dbf20
-trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_sms.unity3d,64043728c70f02d54320813cd455fd4e
-trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_visible.unity3d,af743a8a46a78caa3aab15ecb2d4f73d
-trCRM/upgradeRes4Publish/other/uiAtlas/logo/IOS/logo.unity3d,1b95b61e7f4824e57f67ef78bfd4e592
-trCRM/upgradeRes4Publish/other/uiAtlas/logo/IOS/logo2.unity3d,41c5912127597703a9c1ab2848c89ff6
-trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_me.unity3d,546388655250fedaa50785dd824d30ac
-trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_me2.unity3d,f7a5b3fdea590751dea5877236e013c8
-trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_news.unity3d,ccfb2fcc6908aaa0643bff4ccdb8fd1a
-trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_news2.unity3d,534faecceb533b756cb7df4aa8f13d05
-trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_work.unity3d,7fa96651b9f54de569c59611a7d07b6b
-trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_work2.unity3d,8579e52d8aa949abce514ec4682d95e5
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_bg_20.unity3d,0bea7b4023f2d6ab3e3ee160affec665
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_notice.unity3d,6ebfcad9d2385d00b275e41b69bf5633
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_peo.unity3d,9e7f6d7cf29af9e5fb02befb5121ad49
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_remind.unity3d,671a3df29d39a9d6caf53bc9eaa8dde2
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_time.unity3d,79a2d5d9c6d24cc63998911a623d9244
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_unread.unity3d,11f64f47835f9a2dc98f55d5d95d524a
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_wait.unity3d,a593ecf733c7c21e1f754328c9601139
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_1.unity3d,aba0d05e735d2f90eff16694efbd299a
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_2.unity3d,5b2f3543562cb611fd5b986f93b9d450
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_3.unity3d,267178166037b19856d0a3a481ee810d
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_4.unity3d,ae0c7c492a9ff216765d0a98f32604db
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg.unity3d,64c5142dc2ace4a338bac2b103207f36
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg_num1.unity3d,244cfbdb8f31592e89902640ce1abeb6
-trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg_num2.unity3d,3fdc6a699415a020e28933e632fd5baa
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/_empty.unity3d,8e127e3490c9651f0756f621dc2fb1a6
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/button.unity3d,4a1c28e520ccb1f66e038bfe4e8057ab
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/button2.unity3d,40d97a2e75c6356efc74c2615133c2a7
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/check.unity3d,615efa024329ca180668ab885cded3c7
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/check_full.unity3d,d2a9f4ed2598e59dc161cce43869979d
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/choose.unity3d,ebc64a7c7ed8354e57deb1938557c9d8
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/company_bg.unity3d,6d7720ce23e31c17a508386fe837ab12
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/on_off.unity3d,1bd2636935bdcbcf3d55a69f873c44ad
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/on_off_bg.unity3d,7a6e9b072b57dc847ede7eb1c679ee62
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/radio.unity3d,0c43a7ba6ffa8229a8639635ce0ce238
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/radio_full.unity3d,cc41b26969b05580412381ffcf7019cd
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_1.unity3d,f8e9f5aec240b7818a58b7674fd14939
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_2.unity3d,09643bb6fdab7301459fa4206afe89ee
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_3.unity3d,d095dbcdbab9d44c6aa63fa92e5f984b
-trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_4.unity3d,ff6d1ab367bc0bfd8603ac8f246cb66c
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_noshadow.unity3d,c56930cafa0823cbe54854859039cc43
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_color.unity3d,0f386613e266039c15d6dc1dfa8643bc
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_head_bg.unity3d,4621f18a14df4d78d9f8475b6b561467
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_1.unity3d,0ce47cb41a1c039d116f0a1176ffdc82
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_2.unity3d,f8983e295d741411b2dbc2cfa1646ce3
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_3.unity3d,af4d8fecaed77fb37428cbd9c347f919
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_4.unity3d,d98d7815445c18b51e8c2abcc382f764
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea7caf2ab8b5a09f786b69
-trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_ranking.unity3d,d6ec636ccfbf0c4525703871069765c5
-trCRM/upgradeRes4Publish/priority/atlas/IOS/atlasAllReal.unity3d,3bc71bdc9c1acc1af9950b31d8a92568
-trCRM/upgradeRes4Publish/priority/localization/Chinese.txt,08ac586b625d0a126a610344a1846e8f
-trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua,398a77c0c9146b949b3d0a6f60c6c4ed
-trCRM/upgradeRes4Publish/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
-trCRM/upgradeRes4Publish/priority/lua/bio/BioOutputStream.lua,84fd65eb0d1a166e77447f61254d62b5
-trCRM/upgradeRes4Publish/priority/lua/bio/BioType.lua,4667e9def8191cbf2b9dc25e928bc23f
-trCRM/upgradeRes4Publish/priority/lua/bio/BioUtl.lua,f64afdd9ccdf943f5d4ba2fc3c3241ef
-trCRM/upgradeRes4Publish/priority/lua/cfg/DBCfg.lua,3d0e60dbcdaa61b8553eee17f4d68b32
-trCRM/upgradeRes4Publish/priority/lua/cfg/DBCfgTool.lua,a6760e05dcc5f91202e3659179a464e7
-trCRM/upgradeRes4Publish/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
-trCRM/upgradeRes4Publish/priority/lua/db/DBCust.lua,8e970152224262213e454e36f3dd19a8
-trCRM/upgradeRes4Publish/priority/lua/db/DBMessage.lua,04d61da969ffa87835209f7bc25369b0
-trCRM/upgradeRes4Publish/priority/lua/db/DBRoot.lua,49468afd86425e8a8c3195d8bf45b0f3
-trCRM/upgradeRes4Publish/priority/lua/db/DBStatistics.lua,e64ad532dabb2cb70c4053e223770969
-trCRM/upgradeRes4Publish/priority/lua/db/DBUser.lua,d01c1b88bed8d5d777f76eca559b5b46
-trCRM/upgradeRes4Publish/priority/lua/json/json.lua,a2914572290611d3da35f4a7eec92022
-trCRM/upgradeRes4Publish/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPGuid.lua,ee29c8c2537cd4c445afe1397450cdae
trCRM/upgradeRes4Publish/priority/lua/json/rpcserver.lua,48b8f5e53a1141652c38f8a5a8a77928
-trCRM/upgradeRes4Publish/priority/lua/net/CLLNet.lua,df3108c65b288722530f80bb73893062
-trCRM/upgradeRes4Publish/priority/lua/net/CLLNetSerialize.lua,30c24f11d46d7b887bf32177acb92c81
-trCRM/upgradeRes4Publish/priority/lua/net/NetProto.lua,c2a5eef306bbbbd5b186599bad616677
+trCRM/upgradeRes4Publish/priority/lua/public/CLLQueue.lua,065303c980678b25b11854bfec1690f3
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform2.unity3d,a937de39eb62c1955c5e582bc2c5c7e0
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLCellWWWProgress.lua,ec0258e77f76c8b681d0f02e7a5ff342
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellMessageGroup.lua,14a960604f49e2b34e0c115561bb45a3
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_set2.unity3d,bca882d59188e7765fb55f9cf11f477e
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_remind.unity3d,671a3df29d39a9d6caf53bc9eaa8dde2
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMine.unity3d,df795a0e3ea6e916db2a444c10717689
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_3.unity3d,d095dbcdbab9d44c6aa63fa92e5f984b
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_remind.unity3d,28b12417bc85c9ba865a36339c5df145
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelBackplate.unity3d,1ce1dbfaa8ab9959965e6e0a70a2feed
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/on_off.unity3d,1bd2636935bdcbcf3d55a69f873c44ad
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopCheckBoxs.unity3d,d80e0a53aae77861d7bba0a84771fd98
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/suc.unity3d,750f9f149f273d3f2643b3ff634705e4
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_enterprise.unity3d,a8b0984f1a0b1b8dd9ceb487cc7d1884
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/follow.unity3d,6ec5096b527145f85d42630f1a59f2c2
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/funnel.unity3d,9eabb57135190dc338da14a450b63e72
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelModifyFiled.unity3d,915c4c913d69e73854874ee4de86d293
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_order.unity3d,4761f197ec41cf9d98ad4be47bed3d1a
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/radio_full.unity3d,cc41b26969b05580412381ffcf7019cd
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/get.unity3d,e15371fcae70c8c9ea93baab3f7cf286
+trCRM/upgradeRes4Publish/other/uiAtlas/hotwheel/IOS/hotWheel_prog.unity3d,f71546fbb57c422c80f6fe06648c0e96
+trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLVerManager.lua,39b154e796d60c2c40ebcc427a5c05e8
+trCRM/upgradeRes4Publish/other/uiAtlas/icon/IOS/icon_26_no.unity3d,d39394e00d037c17920ed100a1d4be40
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_task.unity3d,747e55b8f7096ca0aad8270690100afd
+trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua,71dd99dc998927bca633feb259d164a8
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_followup.unity3d,53f6896e2d1d3bbb17bf916c681575ec
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLFrame2.lua,e25ce84ca55cd643d527d09cedd6228a
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPlaySoundRecord.unity3d,55768dcfcc17809be4ba65884167366b
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelLogin.unity3d,46bb818a908357037e63bede9cd2369d
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/check_full.unity3d,d2a9f4ed2598e59dc161cce43869979d
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWebView.lua,ee83701c37a6f2fc91691546a2e4fbe7
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform3.lua,f83300f176e1c35d62e00e69539998f3
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/position.unity3d,9bc2ac8854be9c3f6694f99d0f4bf1c1
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectCompany.lua,a4ebb94a988f9c6c534703f89efeb7a8
+trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLPrintEx.lua,86d891ec4d8bfa5533704c142fc97235
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_bg_20.unity3d,0bea7b4023f2d6ab3e3ee160affec665
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,7f5131c43a7d8a6db9a15b2d928606e3
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustList.lua,51bec42b663bfa0aecd09184717a8e03
+trCRM/upgradeRes4Publish/other/uiAtlas/hotwheel/IOS/hotWheel_bg.unity3d,1842a9eb299cbf9d9e37bef4e7ced573
+trCRM/upgradeRes4Publish/priority/lua/cfg/DBCfgTool.lua,a6760e05dcc5f91202e3659179a464e7
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/380bg.unity3d,2d66070d4c85a3d0d9b06bb68260f2b7
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/on_off_bg.unity3d,7a6e9b072b57dc847ede7eb1c679ee62
+trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/logo.unity3d,a23619eae53064c611eeb49ba6ad21f6
+trCRM/upgradeRes4Publish/priority/lua/db/DBRoot.lua,49468afd86425e8a8c3195d8bf45b0f3
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSceneManager.unity3d,7c9a53dc83974a6cab329f0987511428
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/play2.unity3d,41dc3f7483b566a92f22718cc1363f12
+trCRM/upgradeRes4Publish/priority/lua/json/json.lua,a2914572290611d3da35f4a7eec92022
+trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_visible.unity3d,af743a8a46a78caa3aab15ecb2d4f73d
+trCRM/upgradeRes4Publish/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
+trCRM/upgradeRes4Publish/priority/lua/public/CLLPrefs.lua,1719d57c97fe0d8f2c9d1596cb6e2ac8
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/right.unity3d,3d5aa57f1b9a4c63ceac9f3f8e9a588a
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg_num2.unity3d,3fdc6a699415a020e28933e632fd5baa
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCompany.lua,b145bc086a8b1657a314622614dcb70a
+trCRM/upgradeRes4Publish/other/uiAtlas/hotwheel/IOS/loading.unity3d,ae3b70b6c5220e215b73d037edd9a45a
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPConfirm.lua,e652190d378dc120a0805230692f0fc9
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelHotWheel.unity3d,e3508a556e1e6330f6128b4280d5a28f
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg.unity3d,64c5142dc2ace4a338bac2b103207f36
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_noshadow.unity3d,c56930cafa0823cbe54854859039cc43
+trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_no.unity3d,e167bfde724e7a2c40bec51945931877
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/remove.unity3d,773dc01867e41eabf23bf22dc4c35507
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,68ebacc1e0088c955903e2bbf75d8216
+trCRM/upgradeRes4Publish/priority/lua/bio/BioType.lua,4667e9def8191cbf2b9dc25e928bc23f
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/button.unity3d,4a1c28e520ccb1f66e038bfe4e8057ab
+trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_me.unity3d,546388655250fedaa50785dd824d30ac
+trCRM/upgradeRes4Publish/priority/lua/public/CLLIncludeBase.lua,6011b5732b185053dc107332593e5d2b
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/ToastRoot.unity3d,202053ab489839884b0569f173796cfe
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,63cc509261ff856e2833689b5c5391a0
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_about.unity3d,e38e9dcd1c3460227594821595e9e7e9
+trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_password.unity3d,1dd1c1396c668d0a4dad1228ca0ec903
+trCRM/upgradeRes4Publish/other/uiAtlas/logo/IOS/logo2.unity3d,41c5912127597703a9c1ab2848c89ff6
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPTasks.lua,8a39819b2f7cd6f788077f706fb7d964
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelWWWProgress.unity3d,86786bd679b1592402f9cd98ba1bc0cf
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform1.lua,d31b42aa50089defb22bde59b5c0474d
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewFollow.lua,ef981e78f783343271b8c655f358084c
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/AlertRoot.unity3d,eebc730459217511668036a3271830cb
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPPopList.lua,896c4b35a6cd0d4f86ed5c0ba532ea00
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellPopCheckbox.lua,25adbf58789186d43c15cfe65d2e8501
+trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua,ce4513130e34ef66da98f9c3b1ec8299
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustDetail.unity3d,7f72e43812c1b7c185141040f2266ba0
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSetting.unity3d,295541b5f67a10ec7f81ec04acc3f4b4
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustListProc.unity3d,2a3ba4ea9a10c535f8918d67ee1d5a18
+trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLUpdateUpgrader.lua,bfff3548aa7cd983c3de46e5defae423
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSplash.unity3d,f4061c91989b8832489c51d417e0baaf
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/border.unity3d,29a0e90c8c75eaac236a3bf65ee28fd3
+trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_work2.unity3d,8579e52d8aa949abce514ec4682d95e5
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewCust.lua,cb4111b5926ebb6a2a36a249c491a693
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_3.unity3d,267178166037b19856d0a3a481ee810d
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_ranking.unity3d,d6ec636ccfbf0c4525703871069765c5
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewOrder.unity3d,23a3f7b93621758e6fec0edaf118babc
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPConnect.lua,90ebaab62abe0abdb396cfd7eb888780
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/play.unity3d,87cd04e1f707b587132b189c72823f7d
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputMultText.unity3d,22cbe869950c1b472550b5e3502ae5ca
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/cus_tel.unity3d,ec81ebdafd1aa4d439f1a10d71c079af
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputPoplist.unity3d,7bc1ca12258d515e851f7eb2b0dd88eb
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustProc.lua,3f9f33de3630a03463952058ba795128
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CSCellBottomBtn.lua,afbf445995d42e012635f3d355ce6d9e
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputCheckboxs.unity3d,1776d06dcfc809f5c738a1cf349a4f3d
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_2.unity3d,5b2f3543562cb611fd5b986f93b9d450
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_time.unity3d,79a2d5d9c6d24cc63998911a623d9244
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSysMsgDetail.lua,6266494c653deda1b5a391cc7f38a06a
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewFollow.unity3d,eaf41d7480e0f36f8beb37aa4442b6e1
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_4.unity3d,ff6d1ab367bc0bfd8603ac8f246cb66c
+trCRM/upgradeRes4Publish/priority/lua/bio/BioOutputStream.lua,84fd65eb0d1a166e77447f61254d62b5
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/more.unity3d,7d7a478fdc0c1cc0506c6fd92d230b3f
+trCRM/upgradeRes4Publish/other/uiAtlas/logo/IOS/logo.unity3d,1b95b61e7f4824e57f67ef78bfd4e592
+trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_bg.unity3d,f3add14e03472a28d56315b260b35c82
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_notice.unity3d,6ebfcad9d2385d00b275e41b69bf5633
+trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_people.unity3d,834fdf5f5868cc4c905e95f8e41dbf20
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_check.unity3d,c374b4c94e874e2602d8c2293981c22e
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_peo.unity3d,9e7f6d7cf29af9e5fb02befb5121ad49
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_1.unity3d,0ce47cb41a1c039d116f0a1176ffdc82
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_fingerprint.unity3d,c8c718e4646589cb5c1e9fa92165ae98
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/phone.unity3d,917fe8084ceb86ffe99a91119401b398
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/input.unity3d,cecd60bbaff9e81a94c98a20c5525a14
+trCRM/upgradeRes4Publish/priority/lua/db/DBCust.lua,8e970152224262213e454e36f3dd19a8
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMain.lua,24f616b9384dc0eefa9955fabb1d05f1
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/pause.unity3d,8eff010febb0a0d6365a65fed01cf38d
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_password2.unity3d,e87a02a038d312d2a30260aa585d80fb
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
trCRM/upgradeRes4Publish/priority/lua/net/NetProtoUsermgrClient.lua,f65df462666ca9fca7f16c2954984527
trCRM/upgradeRes4Publish/priority/lua/public/CLLInclude.lua,476b749169d54c4b08e8749743983d92
-trCRM/upgradeRes4Publish/priority/lua/public/CLLIncludeBase.lua,6011b5732b185053dc107332593e5d2b
-trCRM/upgradeRes4Publish/priority/lua/public/CLLPool.lua,3e6a97eb07cfdff7c399eb3e956ba77c
-trCRM/upgradeRes4Publish/priority/lua/public/CLLPrefs.lua,1719d57c97fe0d8f2c9d1596cb6e2ac8
-trCRM/upgradeRes4Publish/priority/lua/public/CLLQueue.lua,065303c980678b25b11854bfec1690f3
-trCRM/upgradeRes4Publish/priority/lua/public/CLLStack.lua,579069654d88a15e43c818a6b8079b15
-trCRM/upgradeRes4Publish/priority/lua/public/class.lua,cc0f201cc55c59f8bc8f623853382b9c
-trCRM/upgradeRes4Publish/priority/lua/toolkit/BitUtl.lua,82e46240625342d5afe8ea68a609c9cb
-trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLPrintEx.lua,86d891ec4d8bfa5533704c142fc97235
-trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLUpdateUpgrader.lua,bfff3548aa7cd983c3de46e5defae423
-trCRM/upgradeRes4Publish/priority/lua/toolkit/CLLVerManager.lua,39b154e796d60c2c40ebcc427a5c05e8
-trCRM/upgradeRes4Publish/priority/lua/toolkit/KKLogListener.lua,341e17bfccad7217d30814868712ea15
-trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua,83992e86489ace88d35f10262e72d9fb
-trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua,3f6a80d9a6a96cf66a201e26fc39aa1f
-trCRM/upgradeRes4Publish/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
-trCRM/upgradeRes4Publish/priority/lua/toolkit/curve.lua,f97735ed6c39accb55cdae44b62b5b38
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLCellToast.lua,6e350721fca8167bd621df86ad982326
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLCellServer.lua,1e9de9f0b4bbc703296808c1ba179c29
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLCellWWWProgress.lua,ec0258e77f76c8b681d0f02e7a5ff342
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLFrame1.lua,1fd4e80adb13bd0d3cb0d7449922667b
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLFrame2.lua,e25ce84ca55cd643d527d09cedd6228a
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICalenderDay.lua,6e7400e2dd535ced93960c1e18fa2458
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICalenderMonth.lua,16af9ed096ad6b902a156f6e0a20021f
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICellPoplist.lua,18d47301d459fd66ed63b902546e8619
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLToastRoot.lua,e1fb7ee5d50bd0ffc6561f5a4ec8426f
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/CSCellBottomBtn.lua,afbf445995d42e012635f3d355ce6d9e
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCompany.lua,b145bc086a8b1657a314622614dcb70a
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustFilter.lua,2fb22f9248e4af86ab42482151a5b141
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustFilterGroup.lua,93cdb67f51a62110b38e133b065f8f85
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustList.lua,86d3ed6429ba39f0a99f2307b5c43854
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustProc.lua,3f9f33de3630a03463952058ba795128
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustStar.lua,ed39330cf68d1e1e062bc8311d1e8d44
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellExtendField.lua,3178958635719c8c324791371ebf968a
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellExtendFieldRoot.lua,9b2875e44fc9597805067fbbec8e75eb
+trCRM/upgradeRes4Publish/priority/lua/db/DBUser.lua,d01c1b88bed8d5d777f76eca559b5b46
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/icon_bg.unity3d,8f588f9da85d79f734701f7bde8d35da
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/button2.unity3d,40d97a2e75c6356efc74c2615133c2a7
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/order.unity3d,e30128770395be6e2634c10acdedb730
+trCRM/upgradeRes4Publish/priority/atlas/IOS/atlasAllReal.unity3d,5318be1a09feeb3aa3ccb1e7fb86dbd2
+trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/input.unity3d,85676a4ff405d2c3bf8bdabd99d40745
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellGuidPage.lua,7b3c3f567c3e0d92065913101b08ddd0
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellMessageGroup.lua,14a960604f49e2b34e0c115561bb45a3
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellPopCheckbox.lua,25adbf58789186d43c15cfe65d2e8501
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellRecord.lua,ca94ed9775ca9f03569e49d4ad1f3e14
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform1.lua,d31b42aa50089defb22bde59b5c0474d
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/time.unity3d,3798702a6f194c1ce9e5e9b15836239f
trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform2.lua,47ac1164b1ffb27397953ccb032fd2d7
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellReportform3.lua,f83300f176e1c35d62e00e69539998f3
-trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellSysMessageList.lua,1ce46f4b3a1a8b728e447c12e7df1831
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPBackplate.lua,ae946f1cec5baad680f4e8a0f7e71223
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPCalender.lua,232cf2b7f74f088e8b44c4c47cda5e95
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPConfirm.lua,e652190d378dc120a0805230692f0fc9
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPHotWheel.lua,1760aa9933da4b421f1c6093d802cb4f
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLogin.lua,f2ba83d01af3371bee83945f470facd5
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLoginCoolape.lua,5873be60edc8f1407dc9fb53ec567ebf
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPPopList.lua,896c4b35a6cd0d4f86ed5c0ba532ea00
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSceneManager.lua,b1b848791df37e59bdf7d5acf9cb9273
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSplash.lua,2f4c84546ec70a42deaf05cc0fd105bb
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua,e7aa381e49a9c5aed143b69db6aad352
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWebView.lua,ee83701c37a6f2fc91691546a2e4fbe7
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMain.lua,24f616b9384dc0eefa9955fabb1d05f1
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/write.unity3d,46db82a1fde728812cfa97c68aca4020
trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMine.lua,3038704955b89cc61befb0fee37b14f3
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMsg.lua,f72d285313cb63ff775722473af9a5f9
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPTasks.lua,8a39819b2f7cd6f788077f706fb7d964
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRBasePanel.lua,dc088058987b435c998a9709297a88e6
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPConnect.lua,90ebaab62abe0abdb396cfd7eb888780
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCusFilter.lua,f0452e3d6cfa59244dc7b9dd8f5a475d
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustDetail.lua,62aff784a70e4a1bd0faa472176a0978
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustFilter.lua,0725109e55276b5158f6ce642d28dfa6
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustList.lua,51bec42b663bfa0aecd09184717a8e03
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustListProc.lua,1973dc8d949ed85e01b09aff328d1033
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPGuid.lua,ee29c8c2537cd4c445afe1397450cdae
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPLogin.lua,0992523f277369f5b08a6f756722daeb
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPModifyFiled.lua,99b250c386ce8dad9c10c8f4fe9874f1
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPMoreProc4Cust.lua,cc11fe3b2530891e91e2c649762d06f8
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewCust.lua,cb4111b5926ebb6a2a36a249c491a693
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewOrder.lua,953cc6b4afbe01b33bfb6d6078f7daf4
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPlaySoundRecord.lua,ded1f35f04bd0d84bfa8fd74ddf926aa
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep1.lua,cc912be0fe9c81e228a057e2697e29e5
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep2.lua,b8810c5e5890ee6f44ae82d6c7f7f526
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep3.lua,92f58a80dc40cb269679c222add79d32
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSelectCompany.lua,a4ebb94a988f9c6c534703f89efeb7a8
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSysMsgDetail.lua,6266494c653deda1b5a391cc7f38a06a
-trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSysMsgList.lua,518461e7bf8f3b3420fa9377a23db86a
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/AlertRoot.unity3d,527993b4e82d8f6bab7d0b1e0fdfd8d4
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPNewOrder.lua,70495458e067e8b8970097651dd253e1
trCRM/upgradeRes4Publish/priority/ui/other/IOS/Frame1.unity3d,e0760bb76b26b81b295e4a1d55cacd65
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/Frame2.unity3d,7dcd1d4f4868681c0e942ef76b8e0ae3
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputCheckboxs.unity3d,1776d06dcfc809f5c738a1cf349a4f3d
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputDate.unity3d,c022ba4a5bf2ac56dcc6ef39c0977840
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputMultText.unity3d,b45382abca99dc92ea2808884c91a4ab
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputPoplist.unity3d,7bc1ca12258d515e851f7eb2b0dd88eb
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputText.unity3d,9594db6593af82ab5eb5cb4b87984bb5
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform1.unity3d,ec74ff1d9c24b16c6c395d9e8875ed4a
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform2.unity3d,a937de39eb62c1955c5e582bc2c5c7e0
-trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform3.unity3d,bb0e87df12d6bcfa2339ec754bc17a06
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelBackplate.unity3d,1ce1dbfaa8ab9959965e6e0a70a2feed
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCalender.unity3d,2b45d569d212c3431f2351e10d1cc07e
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConfirm.unity3d,ba942c1715beb3f81e63de30ac6fc776
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConnect.unity3d,060bc89717ae9afd7f2097a67d21147a
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustDetail.unity3d,7f72e43812c1b7c185141040f2266ba0
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustFilter.unity3d,f8ed6b398ab53ebe1bd35750a116eb58
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustList.unity3d,ffbc461fe8fd19d6b822d00b1fbafaa7
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustListProc.unity3d,2a3ba4ea9a10c535f8918d67ee1d5a18
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelGuid.unity3d,43ae7eeceb485a4ea356016016238450
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelHotWheel.unity3d,e3508a556e1e6330f6128b4280d5a28f
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelLogin.unity3d,e9a42160345ab8acba8ebaea740474bb
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMain.unity3d,bdf837ee04a698e2fcf129a95a9d1f2e
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMask4Panel.unity3d,6df5d4b74cb3e18589239a4f5a0f2988
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMine.unity3d,f2a9c55d2610cd1134326b0d54fd7b62
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelModifyFiled.unity3d,915c4c913d69e73854874ee4de86d293
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,a99601792bb8cd2016be48e1f2d36010
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMsg.unity3d,ac919e26f69de1b592dcad450e895161
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewCust.unity3d,da583f7f3ae74b735739055610dc0b98
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewOrder.unity3d,23a3f7b93621758e6fec0edaf118babc
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPlaySoundRecord.unity3d,55768dcfcc17809be4ba65884167366b
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopCheckBoxs.unity3d,d80e0a53aae77861d7bba0a84771fd98
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopList.unity3d,9bd875bf8acc96aabae1fd4e4fe7601a
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,c6392579adb6d3c6c2a252d1b69eccbf
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep2.unity3d,68ebacc1e0088c955903e2bbf75d8216
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep3.unity3d,7f5131c43a7d8a6db9a15b2d928606e3
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSceneManager.unity3d,7c9a53dc83974a6cab329f0987511428
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSelectCompany.unity3d,051cc54004950403d20187f4daeb76fe
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSetting.unity3d,295541b5f67a10ec7f81ec04acc3f4b4
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSplash.unity3d,f4061c91989b8832489c51d417e0baaf
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/full_star.unity3d,1e26fbb1830f8f2b34f5cc3bd279e4ac
+trCRM/upgradeRes4Publish/priority/lua/toolkit/curve-families.png,d0b6b9b8a623a188aeae2fb688a8a0e5
+trCRM/upgradeRes4Publish/priority/lua/net/CLLNet.lua,df3108c65b288722530f80bb73893062
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPopCheckBoxs.lua,508171a924c113573b01a396e8217cc2
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelStart.unity3d,f86ac64b15f6d871f734ed7ac5a145a7
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSysMsgDetail.unity3d,b72c64d0d79d3f270f3df3620ef758ac
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSysMsgList.unity3d,3d0a1fd9c4b5d05b268bb73d3c810127
+trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/name.unity3d,36243d44e09cf15a30c136f4e8f7b06e
+trCRM/upgradeRes4Publish/priority/lua/bio/BioUtl.lua,f64afdd9ccdf943f5d4ba2fc3c3241ef
+trCRM/upgradeRes4Publish/priority/lua/db/DBStatistics.lua,e64ad532dabb2cb70c4053e223770969
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CSPMsg.lua,f72d285313cb63ff775722473af9a5f9
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_color.unity3d,0f386613e266039c15d6dc1dfa8643bc
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustList.lua,86d3ed6429ba39f0a99f2307b5c43854
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLCellServer.lua,1e9de9f0b4bbc703296808c1ba179c29
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConfirm.unity3d,ba942c1715beb3f81e63de30ac6fc776
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg_shadow.unity3d,787c967d2f66f1047de67b68f47c35b2
+trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/1.unity3d,7f93940e3dc101e21d69ad8a25b43e53
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICalenderDay.lua,6e7400e2dd535ced93960c1e18fa2458
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/check.unity3d,615efa024329ca180668ab885cded3c7
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_head_bg.unity3d,4621f18a14df4d78d9f8475b6b561467
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellExtendField.lua,3178958635719c8c324791371ebf968a
+trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_sms.unity3d,64043728c70f02d54320813cd455fd4e
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/kuang.unity3d,44f2665e82c2f22c97b1fa8065dcca85
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/_empty.unity3d,8e127e3490c9651f0756f621dc2fb1a6
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/oean.unity3d,2220377e30d7a40b551ff00531cde4b0
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_5.unity3d,d19f3e9445ea7caf2ab8b5a09f786b69
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPPlaySoundRecord.lua,ded1f35f04bd0d84bfa8fd74ddf926aa
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/task.unity3d,aa21e488c5f526e12886cae586f30375
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_3.unity3d,af4d8fecaed77fb37428cbd9c347f919
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_password.unity3d,614c3d4d72ec9ac573a471868326945f
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_wait.unity3d,a593ecf733c7c21e1f754328c9601139
+trCRM/upgradeRes4Publish/other/uiAtlas/login/IOS/log_invisible.unity3d,3f52b93a1cffe3583e34c9252554483a
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMsg.unity3d,ac919e26f69de1b592dcad450e895161
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_check.unity3d,f1b1be17d8aa2d7065a0724334dc3893
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/choose.unity3d,ebc64a7c7ed8354e57deb1938557c9d8
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMask4Panel.unity3d,6df5d4b74cb3e18589239a4f5a0f2988
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLFrame1.lua,1fd4e80adb13bd0d3cb0d7449922667b
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPSplash.lua,2f4c84546ec70a42deaf05cc0fd105bb
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPModifyFiled.lua,99b250c386ce8dad9c10c8f4fe9874f1
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_data.unity3d,d2c0627b468f06867987c41b74c84dce
+trCRM/upgradeRes4Publish/priority/lua/public/class.lua,cc0f201cc55c59f8bc8f623853382b9c
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_4.unity3d,ae0c7c492a9ff216765d0a98f32604db
+trCRM/upgradeRes4Publish/priority/lua/net/CLLNetSerialize.lua,30c24f11d46d7b887bf32177acb92c81
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_2.unity3d,09643bb6fdab7301459fa4206afe89ee
+trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_work.unity3d,7fa96651b9f54de569c59611a7d07b6b
+trCRM/upgradeRes4Publish/priority/lua/cfg/DBCfg.lua,3d0e60dbcdaa61b8553eee17f4d68b32
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform3.unity3d,bb0e87df12d6bcfa2339ec754bc17a06
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMain.unity3d,bdf837ee04a698e2fcf129a95a9d1f2e
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelMoreProc4Cust.unity3d,a99601792bb8cd2016be48e1f2d36010
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/star.unity3d,3bcf43f59ae8c6b2920fbdfd3a5a3252
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCusFilter.lua,f0452e3d6cfa59244dc7b9dd8f5a475d
+trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_news.unity3d,ccfb2fcc6908aaa0643bff4ccdb8fd1a
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLoginCoolape.lua,5873be60edc8f1407dc9fb53ec567ebf
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_bg_num1.unity3d,244cfbdb8f31592e89902640ce1abeb6
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelConnect.unity3d,060bc89717ae9afd7f2097a67d21147a
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelGuid.unity3d,43ae7eeceb485a4ea356016016238450
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPSysMsgList.lua,518461e7bf8f3b3420fa9377a23db86a
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/radio.unity3d,0c43a7ba6ffa8229a8639635ce0ce238
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/limt.unity3d,e40d61488fa008460f97c9e44b2956c7
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLToastRoot.lua,e1fb7ee5d50bd0ffc6561f5a4ec8426f
+trCRM/upgradeRes4Publish/priority/lua/public/CLLPool.lua,3e6a97eb07cfdff7c399eb3e956ba77c
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/log_bg.unity3d,6e86477cb2815f29ab537aa085b88b85
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustFilter.lua,0725109e55276b5158f6ce642d28dfa6
+trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_me2.unity3d,f7a5b3fdea590751dea5877236e013c8
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_customer.unity3d,eba6ba58a8149e369e8e02b8cac777c8
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/screen.unity3d,ed29a75e7c18989d91862b317f781586
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRBasePanel.lua,dc088058987b435c998a9709297a88e6
+trCRM/upgradeRes4Publish/other/uiAtlas/main/IOS/icon_news2.unity3d,534faecceb533b756cb7df4aa8f13d05
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSelectCompany.unity3d,051cc54004950403d20187f4daeb76fe
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/search.unity3d,e47e0f93cf36d5b583ed74dd599e6036
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_set.unity3d,855ee24944fb29abc087341b9ce9d117
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustFilter.unity3d,f8ed6b398ab53ebe1bd35750a116eb58
+trCRM/upgradeRes4Publish/priority/lua/db/DBMessage.lua,04d61da969ffa87835209f7bc25369b0
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/msg.unity3d,62a51311105a27bfca2fc2ac35c9aab8
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_4.unity3d,d98d7815445c18b51e8c2abcc382f764
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/new2_unread.unity3d,11f64f47835f9a2dc98f55d5d95d524a
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_icon_2.unity3d,f8983e295d741411b2dbc2cfa1646ce3
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/important.unity3d,5a0439d61813daf35289712322e7f066
+trCRM/upgradeRes4Publish/priority/lua/toolkit/KKLogListener.lua,341e17bfccad7217d30814868712ea15
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputDate.unity3d,c022ba4a5bf2ac56dcc6ef39c0977840
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICellPoplist.lua,18d47301d459fd66ed63b902546e8619
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/reportform1.unity3d,ec74ff1d9c24b16c6c395d9e8875ed4a
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPLogin.lua,f2ba83d01af3371bee83945f470facd5
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/record.unity3d,ed6faf19e45aa99e37c622ef92e131dc
+trCRM/upgradeRes4Publish/other/uiAtlas/work/IOS/work_bg.unity3d,b014274b898e403aa52277f9a5978776
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCalender.unity3d,2b45d569d212c3431f2351e10d1cc07e
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep1.lua,cc912be0fe9c81e228a057e2697e29e5
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/Frame2.unity3d,7dcd1d4f4868681c0e942ef76b8e0ae3
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/peo.unity3d,0d912c6c28bf962b0e1f28ac4f76d2ba
+trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua,d9a3b772a44fc11d3407de3194f06d51
+trCRM/upgradeRes4Publish/priority/lua/city/CLLCity.lua,b7ee9fffacb28d09ab08728a49dedc8e
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/company_bg.unity3d,6d7720ce23e31c17a508386fe837ab12
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep2.lua,b8810c5e5890ee6f44ae82d6c7f7f526
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPCalender.lua,232cf2b7f74f088e8b44c4c47cda5e95
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustFilterGroup.lua,93cdb67f51a62110b38e133b065f8f85
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustListProc.lua,1973dc8d949ed85e01b09aff328d1033
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/check.unity3d,8617a2ac9187216cfb81f8b712181055
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPHotWheel.lua,1760aa9933da4b421f1c6093d802cb4f
+trCRM/upgradeRes4Publish/other/uiAtlas/icon/IOS/company_1.unity3d,3ff3b66fd2476d8245f07daeda300ab2
+trCRM/upgradeRes4Publish/other/uiAtlas/public/IOS/tips_1.unity3d,f8e9f5aec240b7818a58b7674fd14939
+trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/password.unity3d,584af77561cb1dfe6aca0640a6a2b9cf
+trCRM/upgradeRes4Publish/priority/ui/other/IOS/InputText.unity3d,9594db6593af82ab5eb5cb4b87984bb5
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/CLLUICalenderMonth.lua,16af9ed096ad6b902a156f6e0a20021f
trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelTasks.unity3d,f4519bf810eaaae4b4addf5092426953
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelWWWProgress.unity3d,86786bd679b1592402f9cd98ba1bc0cf
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelWebView.unity3d,7b212b719fe9f766101c137f9a89640a
-trCRM/upgradeRes4Publish/priority/ui/panel/IOS/ToastRoot.unity3d,202053ab489839884b0569f173796cfe
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua,f90028f3e667f9e4df2a7f4aefefa701
+trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/2.unity3d,2953bdc65ac46367feda300cfecd11bf
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPLogin.lua,0992523f277369f5b08a6f756722daeb
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/me_opinion.unity3d,a6972381cca3a2e78a7e6ffd2b6f2748
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/add.unity3d,678ae44b69930eede7020bb574f7ee11
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPResetPasswordStep3.lua,92f58a80dc40cb269679c222add79d32
+trCRM/upgradeRes4Publish/priority/lua/net/NetProto.lua,2b1dafe00efd5be052d2cdd3dcabef71
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelPopList.unity3d,9bd875bf8acc96aabae1fd4e4fe7601a
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellRecord.lua,ca94ed9775ca9f03569e49d4ad1f3e14
+trCRM/upgradeRes4Publish/other/uiAtlas/news/IOS/news_1.unity3d,aba0d05e735d2f90eff16694efbd299a
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPCustDetail.lua,62aff784a70e4a1bd0faa472176a0978
+trCRM/upgradeRes4Publish/priority/lua/toolkit/BitUtl.lua,82e46240625342d5afe8ea68a609c9cb
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/TRPMoreProc4Cust.lua,cc11fe3b2530891e91e2c649762d06f8
+trCRM/upgradeRes4Publish/priority/localization/Chinese.txt,08ac586b625d0a126a610344a1846e8f
+trCRM/upgradeRes4Publish/priority/lua/public/CLLStack.lua,579069654d88a15e43c818a6b8079b15
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelCustList.unity3d,ffbc461fe8fd19d6b822d00b1fbafaa7
+trCRM/upgradeRes4Publish/priority/lua/bio/BioInputStream.lua,b3f94b1017db307427c6e39a8ee4d60e
trCRM/upgradeRes4Publish/priority/www/baidumap.html,d210e48796dd96343f9c17bc1d230136
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelNewCust.unity3d,da583f7f3ae74b735739055610dc0b98
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSysMsgDetail.unity3d,b72c64d0d79d3f270f3df3620ef758ac
+trCRM/upgradeRes4Publish/other/uiAtlas/guid/IOS/3.unity3d,c811075966bb6d036edcc94bb84302af
+trCRM/upgradeRes4Publish/other/uiAtlas/mine/IOS/myset_clean_up.unity3d,7350d7ed4886070c5c0b79f3dcd5fe26
+trCRM/upgradeRes4Publish/priority/lua/ui/cell/TRCellCustFilter.lua,2fb22f9248e4af86ab42482151a5b141
+trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPWWWProgress.lua,b713ddf9f0af8602ec48f71162181d6d
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/bg.unity3d,bd8a8bbae53c33e67e357862b7e6228a
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelSysMsgList.unity3d,3d0a1fd9c4b5d05b268bb73d3c810127
+trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/button.unity3d,c8009be975691b21cac9fdc55f343cc3
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelWebView.unity3d,7b212b719fe9f766101c137f9a89640a
+trCRM/upgradeRes4Publish/priority/lua/json/rpc.lua,28c2f09ceb729d01052d8408eed0b57a
+trCRM/upgradeRes4Publish/priority/ui/panel/IOS/PanelResetPasswordStep1.unity3d,c6392579adb6d3c6c2a252d1b69eccbf
+trCRM/upgradeRes4Publish/other/uiAtlas/cust/IOS/del.unity3d,d2c4a7e271dac1f816115acd9caf6873
+trCRM/upgradeRes4Publish/other/uiAtlas/coolape/IOS/user.unity3d,5e6e50cd8a40d64ae2c58a2d531676fa
diff --git a/Assets/StreamingAssets/channels.json b/Assets/StreamingAssets/channels.json
index dc00efe..db63bf6 100644
--- a/Assets/StreamingAssets/channels.json
+++ b/Assets/StreamingAssets/channels.json
@@ -1 +1 @@
-{"1000":true}
\ No newline at end of file
+{"1000":true,"2000":true}
\ No newline at end of file
diff --git a/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/MyUtl.lua b/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/MyUtl.lua
index 1de9f67..9cca676 100644
--- a/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/MyUtl.lua
+++ b/Assets/trCRM/upgradeRes4Dev/priority/lua/toolkit/MyUtl.lua
@@ -12,12 +12,16 @@ MyUtl.getUIContent = function(panel, top, bottom, forceCal)
-- if _ContentRect and (not forceCal) then
-- return _ContentRect
-- end
+ local sizeAdjust = UIRoot.GetPixelSizeAdjustment(panel.gameObject)
+ local height = Screen.height * sizeAdjust
top = top or _TopHeight_
bottom = bottom or _BottomHeight_
- local sizeAdjust = UIRoot.GetPixelSizeAdjustment(panel.gameObject)
+ local offsetRect = NGUITools.offsetRect
+ top = top + offsetRect.y * height
+ bottom = bottom + offsetRect.w * height
+
_sizeAdjust = sizeAdjust
- _ContentRect =
- Vector4(0, (bottom - top) / 2, Screen.width * sizeAdjust, Screen.height * sizeAdjust - (bottom + top))
+ _ContentRect = Vector4(0, (bottom - top) / 2, Screen.width * sizeAdjust, height - (bottom + top))
return _ContentRect
end
diff --git a/Assets/trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua b/Assets/trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua
index 200e801..f073289 100644
Binary files a/Assets/trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua and b/Assets/trCRM/upgradeRes4Publish/priority/lua/CLLMainLua.lua differ
diff --git a/Assets/trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua b/Assets/trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua
index a7cd0b6..4b40668 100644
Binary files a/Assets/trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua and b/Assets/trCRM/upgradeRes4Publish/priority/lua/toolkit/LuaUtl.lua differ
diff --git a/Assets/trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua b/Assets/trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua
index a0724c3..9688dac 100644
Binary files a/Assets/trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua and b/Assets/trCRM/upgradeRes4Publish/priority/lua/toolkit/MyUtl.lua differ
diff --git a/Assets/trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua b/Assets/trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua
index db79919..407462e 100644
Binary files a/Assets/trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua and b/Assets/trCRM/upgradeRes4Publish/priority/lua/ui/panel/CLLPStart.lua differ
diff --git a/Assets/trCRM/upgradeRes4Ver/trCRM/resVer/IOS/VerCtl.ver b/Assets/trCRM/upgradeRes4Ver/trCRM/resVer/IOS/VerCtl.ver
index 0f1e3f7..aa39dc9 100644
--- a/Assets/trCRM/upgradeRes4Ver/trCRM/resVer/IOS/VerCtl.ver
+++ b/Assets/trCRM/upgradeRes4Ver/trCRM/resVer/IOS/VerCtl.ver
@@ -1 +1 @@
-r8 !trCRM/resVer/IOS/VerCtl/other.ver8,3a5c78cf709d4f90cdf928c353e70b5d8 $trCRM/resVer/IOS/VerCtl/priority.ver8,28e93b115966a7060ac16df962d0105d
\ No newline at end of file
+r8 $trCRM/resVer/IOS/VerCtl/priority.ver8,2e44df0897bb7c1047865bfe9db57cf98 !trCRM/resVer/IOS/VerCtl/other.ver8,7a09ad6b904ba91bb4fe22525a5a7217
\ No newline at end of file
diff --git a/Assets/trCRM/upgradeRes4Ver/trCRM/resVer/IOS/VerCtl/other.ver b/Assets/trCRM/upgradeRes4Ver/trCRM/resVer/IOS/VerCtl/other.ver
index 25d3073..220e268 100644
--- a/Assets/trCRM/upgradeRes4Ver/trCRM/resVer/IOS/VerCtl/other.ver
+++ b/Assets/trCRM/upgradeRes4Ver/trCRM/resVer/IOS/VerCtl/other.ver
@@ -1 +1 @@
-p k8 5trCRM/upgradeRes/other/uiAtlas/cust/IOS/input.unity3d8,cecd60bbaff9e81a94c98a20c5525a148 3trCRM/upgradeRes/other/uiAtlas/cust/IOS/msg.unity3d8,62a51311105a27bfca2fc2ac35c9aab88 8trCRM/upgradeRes/other/uiAtlas/public/IOS/_empty.unity3d8,8e127e3490c9651f0756f621dc2fb1a68 >trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_shadow.unity3d8,787c967d2f66f1047de67b68f47c35b28 :trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news2.unity3d8,534faecceb533b756cb7df4aa8f13d058 8trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off.unity3d8,1bd2636935bdcbcf3d55a69f873c44ad8 3trCRM/upgradeRes/other/uiAtlas/cust/IOS/del.unity3d8,d2c4a7e271dac1f816115acd9caf68738 7trCRM/upgradeRes/other/uiAtlas/work/IOS/icon_bg.unity3d8,8f588f9da85d79f734701f7bde8d35da8 :trCRM/upgradeRes/other/uiAtlas/icon/IOS/icon_26_no.unity3d8,d39394e00d037c17920ed100a1d4be408 6trCRM/upgradeRes/other/uiAtlas/news/IOS/news_4.unity3d8,ae0c7c492a9ff216765d0a98f32604db8 ;trCRM/upgradeRes/other/uiAtlas/login/IOS/log_people.unity3d8,834fdf5f5868cc4c905e95f8e41dbf208 6trCRM/upgradeRes/other/uiAtlas/news/IOS/news_1.unity3d8,aba0d05e735d2f90eff16694efbd299a8 4trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo.unity3d8,1b95b61e7f4824e57f67ef78bfd4e5928 8trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_4.unity3d8,ff6d1ab367bc0bfd8603ac8f246cb66c8 7trCRM/upgradeRes/other/uiAtlas/coolape/IOS/name.unity3d8,36243d44e09cf15a30c136f4e8f7b06e8 ;trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_4.unity3d8,d98d7815445c18b51e8c2abcc382f7648 8trCRM/upgradeRes/other/uiAtlas/login/IOS/log_sms.unity3d8,64043728c70f02d54320813cd455fd4e8 6trCRM/upgradeRes/other/uiAtlas/news/IOS/news_3.unity3d8,267178166037b19856d0a3a481ee810d8 4trCRM/upgradeRes/other/uiAtlas/cust/IOS/play.unity3d8,87cd04e1f707b587132b189c72823f7d8 9trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news.unity3d8,ccfb2fcc6908aaa0643bff4ccdb8fd1a8 4trCRM/upgradeRes/other/uiAtlas/cust/IOS/more.unity3d8,7d7a478fdc0c1cc0506c6fd92d230b3f8 7trCRM/upgradeRes/other/uiAtlas/login/IOS/log_bg.unity3d8,f3add14e03472a28d56315b260b35c828 1trCRM/upgradeRes/other/uiAtlas/guid/IOS/2.unity3d8,2953bdc65ac46367feda300cfecd11bf8 9trCRM/upgradeRes/other/uiAtlas/cust/IOS/important.unity3d8,5a0439d61813daf35289712322e7f0668 9trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_work.unity3d8,7fa96651b9f54de569c59611a7d07b6b8 8trCRM/upgradeRes/other/uiAtlas/cust/IOS/position.unity3d8,9bc2ac8854be9c3f6694f99d0f4bf1c18 5trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo2.unity3d8,41c5912127597703a9c1ab2848c89ff68 8trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_1.unity3d8,f8e9f5aec240b7818a58b7674fd149398 9trCRM/upgradeRes/other/uiAtlas/coolape/IOS/button.unity3d8,c8009be975691b21cac9fdc55f343cc38 trCRM/upgradeRes/other/uiAtlas/login/IOS/log_invisible.unity3d8,3f52b93a1cffe3583e34c9252554483a8 AtrCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/hotWheel_prog.unity3d8,f71546fbb57c422c80f6fe06648c0e968 ;trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_2.unity3d8,f8983e295d741411b2dbc2cfa1646ce38 trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_shadow.unity3d8,787c967d2f66f1047de67b68f47c35b28 :trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news2.unity3d8,534faecceb533b756cb7df4aa8f13d058 3trCRM/upgradeRes/other/uiAtlas/cust/IOS/del.unity3d8,d2c4a7e271dac1f816115acd9caf68738 ;trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_customer.unity3d8,eba6ba58a8149e369e8e02b8cac777c88 4trCRM/upgradeRes/other/uiAtlas/cust/IOS/star.unity3d8,3bcf43f59ae8c6b2920fbdfd3a5a32528 7trCRM/upgradeRes/other/uiAtlas/work/IOS/icon_bg.unity3d8,8f588f9da85d79f734701f7bde8d35da8 6trCRM/upgradeRes/other/uiAtlas/news/IOS/news_1.unity3d8,aba0d05e735d2f90eff16694efbd299a8 ;trCRM/upgradeRes/other/uiAtlas/login/IOS/log_people.unity3d8,834fdf5f5868cc4c905e95f8e41dbf208 8trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_check.unity3d8,f1b1be17d8aa2d7065a0724334dc38938 4trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo.unity3d8,1b95b61e7f4824e57f67ef78bfd4e5928 8trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_4.unity3d8,ff6d1ab367bc0bfd8603ac8f246cb66c8 ;trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_4.unity3d8,d98d7815445c18b51e8c2abcc382f7648 5trCRM/upgradeRes/other/uiAtlas/cust/IOS/play2.unity3d8,41dc3f7483b566a92f22718cc1363f128 8trCRM/upgradeRes/other/uiAtlas/login/IOS/log_sms.unity3d8,64043728c70f02d54320813cd455fd4e8 6trCRM/upgradeRes/other/uiAtlas/news/IOS/news_3.unity3d8,267178166037b19856d0a3a481ee810d8 4trCRM/upgradeRes/other/uiAtlas/cust/IOS/play.unity3d8,87cd04e1f707b587132b189c72823f7d8 9trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_news.unity3d8,ccfb2fcc6908aaa0643bff4ccdb8fd1a8 AtrCRM/upgradeRes/other/uiAtlas/hotwheel/IOS/hotWheel_prog.unity3d8,f71546fbb57c422c80f6fe06648c0e968 4trCRM/upgradeRes/other/uiAtlas/cust/IOS/more.unity3d8,7d7a478fdc0c1cc0506c6fd92d230b3f8 7trCRM/upgradeRes/other/uiAtlas/login/IOS/log_bg.unity3d8,f3add14e03472a28d56315b260b35c828 1trCRM/upgradeRes/other/uiAtlas/guid/IOS/2.unity3d8,2953bdc65ac46367feda300cfecd11bf8 :trCRM/upgradeRes/other/uiAtlas/icon/IOS/icon_26_no.unity3d8,d39394e00d037c17920ed100a1d4be408 9trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_work.unity3d8,7fa96651b9f54de569c59611a7d07b6b8 8trCRM/upgradeRes/other/uiAtlas/cust/IOS/position.unity3d8,9bc2ac8854be9c3f6694f99d0f4bf1c18 5trCRM/upgradeRes/other/uiAtlas/logo/IOS/logo2.unity3d8,41c5912127597703a9c1ab2848c89ff68 6trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_set.unity3d8,855ee24944fb29abc087341b9ce9d1178 9trCRM/upgradeRes/other/uiAtlas/coolape/IOS/button.unity3d8,c8009be975691b21cac9fdc55f343cc38 trCRM/upgradeRes/other/uiAtlas/login/IOS/log_invisible.unity3d8,3f52b93a1cffe3583e34c9252554483a8 6trCRM/upgradeRes/other/uiAtlas/news/IOS/news_4.unity3d8,ae0c7c492a9ff216765d0a98f32604db8 6trCRM/upgradeRes/other/uiAtlas/mine/IOS/log_bg.unity3d8,6e86477cb2815f29ab537aa085b88b858 8trCRM/upgradeRes/other/uiAtlas/mine/IOS/me_order.unity3d8,4761f197ec41cf9d98ad4be47bed3d1a8 :trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_data.unity3d8,d2c0627b468f06867987c41b74c84dce8 6trCRM/upgradeRes/other/uiAtlas/cust/IOS/remove.unity3d8,773dc01867e41eabf23bf22dc4c355078 ;trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_3.unity3d8,af4d8fecaed77fb37428cbd9c347f9198 8trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_3.unity3d8,d095dbcdbab9d44c6aa63fa92e5f984b8 7trCRM/upgradeRes/other/uiAtlas/news/IOS/news_bg.unity3d8,64c5142dc2ace4a338bac2b103207f368 6trCRM/upgradeRes/other/uiAtlas/cust/IOS/record.unity3d8,ed6faf19e45aa99e37c622ef92e131dc8 :trCRM/upgradeRes/other/uiAtlas/main/IOS/icon_work2.unity3d8,8579e52d8aa949abce514ec4682d95e58 7trCRM/upgradeRes/other/uiAtlas/coolape/IOS/logo.unity3d8,a23619eae53064c611eeb49ba6ad21f68 @trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg_noshadow.unity3d8,c56930cafa0823cbe54854859039cc438 7trCRM/upgradeRes/other/uiAtlas/login/IOS/log_no.unity3d8,e167bfde724e7a2c40bec519459318778 9trCRM/upgradeRes/other/uiAtlas/icon/IOS/company_1.unity3d8,3ff3b66fd2476d8245f07daeda300ab28 :trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_bg_20.unity3d8,0bea7b4023f2d6ab3e3ee160affec6658 trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_password.unity3d8,614c3d4d72ec9ac573a471868326945f8 ;trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off_bg.unity3d8,7a6e9b072b57dc847ede7eb1c679ee628 8trCRM/upgradeRes/other/uiAtlas/public/IOS/on_off.unity3d8,1bd2636935bdcbcf3d55a69f873c44ad8 ;trCRM/upgradeRes/other/uiAtlas/work/IOS/work_icon_2.unity3d8,f8983e295d741411b2dbc2cfa1646ce38 8trCRM/upgradeRes/other/uiAtlas/public/IOS/_empty.unity3d8,8e127e3490c9651f0756f621dc2fb1a68 :trCRM/upgradeRes/other/uiAtlas/work/IOS/work_color.unity3d8,0f386613e266039c15d6dc1dfa8643bc8 9trCRM/upgradeRes/other/uiAtlas/cust/IOS/full_star.unity3d8,1e26fbb1830f8f2b34f5cc3bd279e4ac8 7trCRM/upgradeRes/other/uiAtlas/work/IOS/work_bg.unity3d8,b014274b898e403aa52277f9a59787768 8trCRM/upgradeRes/other/uiAtlas/coolape/IOS/input.unity3d8,85676a4ff405d2c3bf8bdabd99d407458 AtrCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_fingerprint.unity3d8,c8c718e4646589cb5c1e9fa92165ae988 8trCRM/upgradeRes/other/uiAtlas/cust/IOS/cus_task.unity3d8,747e55b8f7096ca0aad8270690100afd8 trCRM/upgradeRes/other/uiAtlas/mine/IOS/myset_clean_up.unity3d8,7350d7ed4886070c5c0b79f3dcd5fe268 8trCRM/upgradeRes/other/uiAtlas/public/IOS/tips_2.unity3d8,09643bb6fdab7301459fa4206afe89ee8 3trCRM/upgradeRes/other/uiAtlas/cust/IOS/suc.unity3d8,750f9f149f273d3f2643b3ff634705e48 6trCRM/upgradeRes/other/uiAtlas/cust/IOS/search.unity3d8,e47e0f93cf36d5b583ed74dd599e60368 ;trCRM/upgradeRes/other/uiAtlas/news/IOS/new2_unread.unity3d8,11f64f47835f9a2dc98f55d5d95d524a8 7trCRM/upgradeRes/other/uiAtlas/public/IOS/check.unity3d8,615efa024329ca180668ab885cded3c78