[Feature][T8TSK-28][Modem]Update Modem version to P4 0328
Change-Id: Ibd9840bdca44567973638ee1c3e5df946875b815
diff --git a/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/busyboxmakefile.patch b/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/busyboxmakefile.patch
deleted file mode 100755
index b795cbd..0000000
--- a/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/busyboxmakefile.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- busybox-1.29.3/Makefile 2018-09-10 02:56:44.000000000 +0800
-+++ busybox-1.29.3/Makefilenew 2022-09-29 10:53:50.416226016 +0800
-@@ -493,6 +493,7 @@
- util-linux/ \
- util-linux/volume_id/ \
-
-+libs-y += -ldl
- endif # KBUILD_EXTMOD
-
- ifeq ($(dot-config),1)
diff --git a/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch b/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch
index a85d2e0..76c6618 100755
--- a/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch
+++ b/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch
@@ -1,75 +1,23 @@
---- busybox-1.29.3/sysklogd/syslogd.c 2018-07-02 19:23:06.000000000 +0800
-+++ busybox-1.29.3/sysklogd/syslogdnew.c 2022-09-29 13:47:26.318538618 +0800
-@@ -165,6 +165,8 @@
-
- #include <sys/un.h>
- #include <sys/uio.h>
-+#include <dlfcn.h>
-+
-
- #if ENABLE_FEATURE_REMOTE_LOG
- #include <netinet/in.h>
-@@ -176,6 +178,10 @@
+diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
+index 266657f..7db5c16 100644
+--- a/sysklogd/syslogd.c
++++ b/sysklogd/syslogd.c
+@@ -74,6 +74,8 @@
+ #include <sys/sem.h>
#include <sys/shm.h>
#endif
-
+#define ENABLE_FEATURE_SYSLOGD_CFG 1
+#define ENABLE_FEATURE_ROTATE_LOGFILE 1
-+int (*lynq_get_value)(char *file, char *section, char *key, char *tmp);
-+int (*lynq_set_value)(char *section, char *key, char *value);
+
#define DEBUG 0
-
-@@ -1102,6 +1113,13 @@
- {
- int opts;
- char OPTION_DECL;
-+
-+ void *handle_uci;
-+ static char get_propty_log_data[64] = {0};
-+ int lynq_syslog_filesize = 100*1024*1024;
-+ int lynq_syslog_rotate = 10;
-+ const char *lynq_libpath_uci = "/lib64/liblynq-uci.so";
-+
- #if ENABLE_FEATURE_REMOTE_LOG
- llist_t *remoteAddrList = NULL;
- #endif
-@@ -1157,6 +1175,38 @@
+@@ -1063,6 +1065,9 @@ int syslogd_main(int argc UNUSED_PARAM, char **argv)
//umask(0); - why??
write_pidfile(CONFIG_PID_FILE_PATH "/syslogd.pid");
-+ handle_uci = dlopen(lynq_libpath_uci,RTLD_NOW);
-+ lynq_get_value = (int (*)(void))dlsym(handle_uci,"lynq_get_value");
-+ lynq_set_value = (int (*)(char *section, char *key, char *value))dlsym(handle_uci,"lynq_set_value");
-+ if(NULL != lynq_get_value && (NULL != lynq_set_value))
-+ {
-+ memset(get_propty_log_data,0,64);
-+ if(0 == lynq_get_value("lynq_uci","lynq_log","syslog_flie_size",get_propty_log_data))
-+ {
-+ lynq_syslog_filesize = atoi(get_propty_log_data);
-+ printf("lynq_syslog_filesize:%d\n",lynq_syslog_filesize);
-+ }
-+ else
-+ {
-+ snprintf(get_propty_log_data,sizeof(get_propty_log_data),"%d",lynq_syslog_filesize);
-+ lynq_set_value("lynq_log","syslog_flie_size", get_propty_log_data);
-+ }
-+ memset(get_propty_log_data,0,64);
-+ if(0 == lynq_get_value("lynq_uci","lynq_log","syslog_flie_rotate",get_propty_log_data))
-+ {
-+ lynq_syslog_rotate = atoi(get_propty_log_data);
-+ printf("lynq_syslog_rotate:%d\n",lynq_syslog_rotate);
-+ }
-+ else
-+ {
-+ snprintf(get_propty_log_data,sizeof(get_propty_log_data),"%d",lynq_syslog_rotate);
-+ lynq_set_value("lynq_log","syslog_flie_rotate", get_propty_log_data);
-+ }
-+ }
-+
-+ G.logFileSize = lynq_syslog_filesize;
-+ G.logFileRotate = lynq_syslog_rotate;
-+
++ G.logFileSize = 10*1024*1024;
++ G.logFileRotate = 10;
++
do_syslogd();
/* return EXIT_SUCCESS; */
}
diff --git a/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox_%.bbappend b/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox_%.bbappend
index dfe933d..a4b7b21 100755
--- a/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox_%.bbappend
+++ b/meta-sdk/meta/meta-mediatek-ivt/recipes-core/busybox/busybox_%.bbappend
@@ -17,7 +17,6 @@
file://coredump-start \
file://coredump-handler.sh \
file://0001-Revert-remove-systemd-support.patch \
- file://busyboxmakefile.patch \
"
inherit systemd
diff --git a/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch b/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch
index a85d2e0..43e9fc9 100755
--- a/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch
+++ b/meta/meta-mediatek-ivt/recipes-core/busybox/busybox/ring_buf.patch
@@ -9,18 +9,17 @@
#if ENABLE_FEATURE_REMOTE_LOG
#include <netinet/in.h>
-@@ -176,6 +178,10 @@
+@@ -176,6 +178,9 @@
#include <sys/shm.h>
#endif
+#define ENABLE_FEATURE_SYSLOGD_CFG 1
+#define ENABLE_FEATURE_ROTATE_LOGFILE 1
+int (*lynq_get_value)(char *file, char *section, char *key, char *tmp);
-+int (*lynq_set_value)(char *section, char *key, char *value);
#define DEBUG 0
-@@ -1102,6 +1113,13 @@
+@@ -1102,6 +1107,13 @@
{
int opts;
char OPTION_DECL;
@@ -34,14 +33,13 @@
#if ENABLE_FEATURE_REMOTE_LOG
llist_t *remoteAddrList = NULL;
#endif
-@@ -1157,6 +1175,38 @@
+@@ -1157,6 +1169,27 @@
//umask(0); - why??
write_pidfile(CONFIG_PID_FILE_PATH "/syslogd.pid");
+ handle_uci = dlopen(lynq_libpath_uci,RTLD_NOW);
+ lynq_get_value = (int (*)(void))dlsym(handle_uci,"lynq_get_value");
-+ lynq_set_value = (int (*)(char *section, char *key, char *value))dlsym(handle_uci,"lynq_set_value");
-+ if(NULL != lynq_get_value && (NULL != lynq_set_value))
++ if(NULL != lynq_get_value)
+ {
+ memset(get_propty_log_data,0,64);
+ if(0 == lynq_get_value("lynq_uci","lynq_log","syslog_flie_size",get_propty_log_data))
@@ -49,22 +47,12 @@
+ lynq_syslog_filesize = atoi(get_propty_log_data);
+ printf("lynq_syslog_filesize:%d\n",lynq_syslog_filesize);
+ }
-+ else
-+ {
-+ snprintf(get_propty_log_data,sizeof(get_propty_log_data),"%d",lynq_syslog_filesize);
-+ lynq_set_value("lynq_log","syslog_flie_size", get_propty_log_data);
-+ }
+ memset(get_propty_log_data,0,64);
+ if(0 == lynq_get_value("lynq_uci","lynq_log","syslog_flie_rotate",get_propty_log_data))
+ {
+ lynq_syslog_rotate = atoi(get_propty_log_data);
+ printf("lynq_syslog_rotate:%d\n",lynq_syslog_rotate);
+ }
-+ else
-+ {
-+ snprintf(get_propty_log_data,sizeof(get_propty_log_data),"%d",lynq_syslog_rotate);
-+ lynq_set_value("lynq_log","syslog_flie_rotate", get_propty_log_data);
-+ }
+ }
+
+ G.logFileSize = lynq_syslog_filesize;
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MCF_OTA_FILES.tar.gz b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MCF_OTA_FILES.tar.gz
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MCF_OTA_FILES.tar.gz
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MCF_OTA_FILES.tar.gz
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB.MCF.ODB.tar.gz b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB.MCF.ODB.tar.gz
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB.MCF.ODB.tar.gz
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB.MCF.ODB.tar.gz
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4.XML.GZ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4.XML.GZ
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4.XML.GZ
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4.XML.GZ
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4_T800_20230328.XML.GZ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4_T800_20230328.XML.GZ
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4_T800_20230328.XML.GZ
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4_T800_20230328.XML.GZ
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4.EDB b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4.EDB
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4.EDB
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4.EDB
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4_T800_20230328.EDB b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4_T800_20230328.EDB
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4_T800_20230328.EDB
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4_T800_20230328.EDB
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4.EDB b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4.EDB
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4.EDB
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4.EDB
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4_T800_20230328.EDB b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4_T800_20230328.EDB
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4_T800_20230328.EDB
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_P4_T800_20230328.EDB
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter_1_Moderate.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter_1_Moderate.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter_1_Moderate.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter_1_Moderate.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter_2_Standard.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter_2_Standard.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter_2_Standard.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter_2_Standard.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter_3_Slim.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter_3_Slim.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter_3_Slim.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter_3_Slim.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter_4_UltraSlim.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter_4_UltraSlim.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter_4_UltraSlim.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter_4_UltraSlim.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter_LowPowerMonitor.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter_LowPowerMonitor.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter_LowPowerMonitor.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter_LowPowerMonitor.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter_PLS_PS_ONLY.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter_PLS_PS_ONLY.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/catcher_filter_PLS_PS_ONLY.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/catcher_filter_PLS_PS_ONLY.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/dsp.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/dsp.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/dsp.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/dsp.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/202_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/202_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/202_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/202_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/202_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/202_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/202_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/202_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/202_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/202_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/202_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/202_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/202_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/202_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/202_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/202_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/202_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/202_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/202_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/202_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/204_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/204_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/204_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/204_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/204_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/204_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/204_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/204_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/204_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/204_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/204_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/204_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/204_16.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/204_16.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/204_16.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/204_16.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/204_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/204_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/204_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/204_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/204_69.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/204_69.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/204_69.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/204_69.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/206_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/206_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/206_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/206_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/206_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/206_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/206_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/206_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/206_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/206_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/206_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/206_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/208_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/208_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/208_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/208_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/208_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/208_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/208_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/208_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/208_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/208_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/208_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/208_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/208_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/208_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/208_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/208_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/208_88.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/208_88.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/208_88.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/208_88.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/214_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/214_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/214_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/214_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/214_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/214_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/214_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/214_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/214_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/214_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/214_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/214_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/214_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/214_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/214_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/214_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/214_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/214_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/214_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/214_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/216_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/216_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/216_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/216_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/216_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/216_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/216_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/216_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/216_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/216_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/216_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/216_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/216_70.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/216_70.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/216_70.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/216_70.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/219_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/219_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/219_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/219_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/219_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/219_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/219_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/219_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/220_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/220_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/220_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/220_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/222_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/222_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/222_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/222_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/222_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/222_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/222_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/222_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/222_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/222_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/222_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/222_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/222_88.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/222_88.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/222_88.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/222_88.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/226_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/226_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/226_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/226_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/226_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/226_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/226_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/226_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/226_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/226_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/226_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/226_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/226_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/226_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/226_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/226_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/226_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/226_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/226_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/226_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/228_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/228_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/228_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/228_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/228_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/228_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/228_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/228_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/230_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/230_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/230_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/230_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/230_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/230_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/230_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/230_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/230_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/230_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/230_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/230_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/231_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/231_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/231_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/231_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/231_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/231_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/231_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/231_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/231_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/231_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/231_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/231_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/231_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/231_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/231_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/231_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/232_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/232_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/232_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/232_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/232_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/232_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/232_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/232_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/232_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/232_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/232_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/232_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/232_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/232_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/232_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/232_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/232_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/232_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/232_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/232_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_31.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_31.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_31.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_31.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_32.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_32.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_32.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_32.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_33.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_33.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_33.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_33.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_34.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_34.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_34.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_34.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_86.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_86.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/234_86.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/234_86.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/235_91.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/235_91.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/235_91.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/235_91.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/235_94.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/235_94.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/235_94.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/235_94.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_77.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_77.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/238_77.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/238_77.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/240_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/240_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/240_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/240_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/240_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/240_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/240_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/240_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/240_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/240_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/240_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/240_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/240_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/240_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/240_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/240_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/240_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/240_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/240_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/240_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/240_99.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/240_99.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/240_99.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/240_99.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/242_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/242_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/242_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/242_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/242_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/242_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/242_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/242_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/242_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/242_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/242_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/242_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/242_14.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/242_14.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/242_14.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/242_14.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/244_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/244_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/244_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/244_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/244_12.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/244_12.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/244_12.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/244_12.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/244_13.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/244_13.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/244_13.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/244_13.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/244_21.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/244_21.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/244_21.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/244_21.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/244_91.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/244_91.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/244_91.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/244_91.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/246_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/246_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/246_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/246_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/248_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/248_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/248_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/248_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/250_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/250_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/250_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/250_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/250_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/250_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/250_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/250_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/250_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/250_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/250_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/250_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/250_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/250_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/250_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/250_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/250_99.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/250_99.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/250_99.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/250_99.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/259_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/259_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/259_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/259_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/260_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/260_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/260_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/260_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/260_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/260_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/260_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/260_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/260_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/260_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/260_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/260_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/260_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/260_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/260_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/260_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/260_34.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/260_34.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/260_34.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/260_34.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/260_98.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/260_98.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/260_98.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/260_98.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_77.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_77.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_77.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_77.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_80.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_80.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/262_80.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/262_80.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/268_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/268_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/268_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/268_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/268_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/268_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/268_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/268_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/268_89.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/268_89.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/268_89.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/268_89.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/272_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/272_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/272_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/272_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/276_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/276_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/276_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/276_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/284_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/284_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/284_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/284_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/284_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/284_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/284_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/284_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/286_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/286_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/286_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/286_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/286_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/286_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/286_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/286_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/286_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/286_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/286_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/286_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/293_41.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/293_41.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/293_41.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/293_41.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/294_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/294_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/294_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/294_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/294_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/294_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/294_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/294_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/295_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/295_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/295_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/295_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/297_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/297_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/297_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/297_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_220.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_220.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_220.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_220.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_221.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_221.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_221.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_221.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_370.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_370.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_370.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_370.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_490.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_490.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_490.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_490.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_610.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_610.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_610.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_610.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_630.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_630.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_630.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_630.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_640.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_640.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_640.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_640.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_660.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_660.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_660.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_660.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_690.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_690.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_690.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_690.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_720.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_720.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/302_720.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/302_720.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_030.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_030.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_030.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_030.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_070.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_070.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_070.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_070.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_090.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_090.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_090.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_090.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_120.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_120.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_120.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_120.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_150.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_150.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_150.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_150.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_160.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_160.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_160.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_160.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_170.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_170.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_170.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_170.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_200.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_200.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_200.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_200.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_210.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_210.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_210.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_210.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_220.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_220.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_220.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_220.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_230.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_230.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_230.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_230.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_240.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_240.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_240.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_240.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_250.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_250.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_250.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_250.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_260.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_260.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_260.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_260.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_270.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_270.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_270.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_270.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_280.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_280.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_280.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_280.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_300.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_300.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_300.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_300.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_310.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_310.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_310.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_310.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_380.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_380.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_380.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_380.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_410.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_410.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_410.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_410.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_490.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_490.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_490.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_490.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_530.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_530.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_530.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_530.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_560.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_560.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_560.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_560.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_590.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_590.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_590.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_590.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_640.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_640.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_640.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_640.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_660.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_660.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_660.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_660.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_680.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_680.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_680.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_680.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_800.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_800.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_800.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_800.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_950.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_950.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/310_950.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/310_950.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_180.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_180.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_180.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_180.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_220.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_220.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_220.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_220.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_221.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_221.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_221.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_221.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_222.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_222.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_222.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_222.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_223.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_223.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_223.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_223.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_224.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_224.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_224.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_224.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_225.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_225.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_225.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_225.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_226.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_226.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_226.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_226.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_227.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_227.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_227.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_227.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_228.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_228.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_228.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_228.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_229.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_229.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_229.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_229.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_270.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_270.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_270.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_270.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_390.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_390.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_390.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_390.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_480.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_480.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_480.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_480.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_490.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_490.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_490.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_490.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_580.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_580.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_580.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_580.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_581.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_581.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_581.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_581.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_582.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_582.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_582.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_582.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_583.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_583.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_583.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_583.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_584.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_584.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_584.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_584.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_585.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_585.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_585.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_585.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_586.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_586.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_586.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_586.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_587.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_587.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_587.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_587.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_588.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_588.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_588.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_588.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_589.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_589.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_589.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_589.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_870.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_870.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/311_870.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/311_870.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/312_530.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/312_530.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/312_530.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/312_530.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/312_670.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/312_670.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/312_670.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/312_670.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/312_770.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/312_770.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/312_770.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/312_770.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/313_100.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/313_100.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/313_100.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/313_100.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/313_110.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/313_110.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/313_110.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/313_110.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/313_120.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/313_120.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/313_120.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/313_120.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/313_130.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/313_130.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/313_130.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/313_130.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/313_140.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/313_140.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/313_140.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/313_140.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/330_110.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/330_110.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/330_110.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/330_110.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/334_020.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/334_020.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/334_020.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/334_020.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/334_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/334_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/334_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/334_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/334_030.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/334_030.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/334_030.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/334_030.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/334_050.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/334_050.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/334_050.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/334_050.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/334_090.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/334_090.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/334_090.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/334_090.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/334_140.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/334_140.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/334_140.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/334_140.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/370_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/370_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/370_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/370_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_12.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_12.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_12.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_12.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_13.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_13.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_13.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_13.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_14.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_14.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_14.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_14.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_16.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_16.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_16.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_16.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_19.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_19.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_19.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_19.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_22.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_22.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_22.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_22.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_24.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_24.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_24.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_24.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_27.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_27.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_27.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_27.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_31.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_31.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_31.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_31.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_34.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_34.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_34.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_34.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_38.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_38.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_38.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_38.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_40.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_40.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_40.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_40.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_43.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_43.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_43.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_43.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_44.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_44.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_44.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_44.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_45.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_45.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_45.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_45.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_46.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_46.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_46.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_46.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_49.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_49.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_49.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_49.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_51.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_51.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_51.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_51.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_53.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_53.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_53.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_53.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_54.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_54.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_54.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_54.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_55.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_55.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_55.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_55.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_56.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_56.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_56.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_56.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_57.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_57.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_57.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_57.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_58.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_58.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_58.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_58.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_59.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_59.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_59.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_59.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_60.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_60.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_60.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_60.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_62.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_62.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_62.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_62.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_64.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_64.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_64.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_64.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_66.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_66.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_66.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_66.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_70.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_70.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_70.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_70.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_71.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_71.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_71.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_71.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_72.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_72.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_72.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_72.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_73.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_73.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_73.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_73.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_74.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_74.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_74.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_74.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_75.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_75.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_75.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_75.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_76.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_76.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_76.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_76.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_77.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_77.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_77.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_77.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_78.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_78.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_78.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_78.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_79.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_79.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_79.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_79.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_80.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_80.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_80.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_80.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_81.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_81.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_81.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_81.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_82.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_82.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_82.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_82.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_84.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_84.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_84.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_84.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_86.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_86.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_86.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_86.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_87.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_87.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_87.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_87.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_88.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_88.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_88.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_88.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_89.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_89.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_89.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_89.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_90.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_90.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_90.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_90.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_92.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_92.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_92.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_92.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_93.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_93.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_93.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_93.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_94.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_94.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_94.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_94.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_95.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_95.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_95.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_95.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_96.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_96.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_96.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_96.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_97.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_97.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_97.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_97.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_98.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_98.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/404_98.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/404_98.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_030.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_030.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_030.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_030.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_035.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_035.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_035.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_035.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_036.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_036.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_036.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_036.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_037.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_037.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_037.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_037.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_038.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_038.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_038.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_038.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_039.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_039.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_039.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_039.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_044.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_044.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_044.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_044.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_51.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_51.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_51.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_51.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_52.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_52.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_52.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_52.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_53.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_53.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_53.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_53.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_54.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_54.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_54.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_54.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_55.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_55.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_55.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_55.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_56.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_56.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_56.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_56.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_66.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_66.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_66.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_66.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_67.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_67.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_67.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_67.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_70.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_70.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_70.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_70.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_750.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_750.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_750.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_750.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_751.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_751.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_751.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_751.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_752.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_752.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_752.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_752.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_753.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_753.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_753.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_753.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_754.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_754.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_754.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_754.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_755.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_755.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_755.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_755.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_756.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_756.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_756.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_756.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_799.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_799.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_799.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_799.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_818.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_818.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_818.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_818.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_819.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_819.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_819.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_819.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_840.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_840.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_840.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_840.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_845.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_845.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_845.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_845.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_846.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_846.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_846.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_846.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_847.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_847.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_847.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_847.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_848.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_848.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_848.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_848.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_849.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_849.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_849.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_849.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_850.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_850.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_850.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_850.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_851.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_851.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_851.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_851.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_852.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_852.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_852.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_852.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_853.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_853.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_853.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_853.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_854.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_854.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_854.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_854.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_855.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_855.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_855.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_855.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_856.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_856.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_856.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_856.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_857.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_857.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_857.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_857.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_858.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_858.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_858.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_858.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_859.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_859.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_859.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_859.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_860.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_860.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_860.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_860.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_861.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_861.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_861.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_861.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_862.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_862.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_862.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_862.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_863.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_863.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_863.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_863.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_864.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_864.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_864.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_864.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_865.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_865.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_865.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_865.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_866.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_866.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_866.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_866.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_867.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_867.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_867.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_867.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_868.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_868.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_868.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_868.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_869.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_869.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_869.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_869.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_870.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_870.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_870.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_870.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_871.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_871.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_871.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_871.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_872.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_872.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_872.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_872.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_873.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_873.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_873.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_873.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_874.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_874.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_874.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_874.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_876.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_876.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_876.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_876.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_879.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_879.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_879.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_879.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_908.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_908.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_908.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_908.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_909.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_909.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_909.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_909.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_910.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_910.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_910.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_910.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_911.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_911.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_911.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_911.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_927.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_927.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_927.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_927.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_929.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_929.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/405_929.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/405_929.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/410_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/410_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/410_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/410_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/410_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/410_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/410_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/410_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/413_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/413_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/413_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/413_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/413_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/413_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/413_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/413_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/414_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/414_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/414_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/414_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/414_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/414_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/414_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/414_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/418_66.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/418_66.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/418_66.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/418_66.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/419_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/419_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/419_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/419_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/419_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/419_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/419_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/419_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/419_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/419_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/419_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/419_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/420_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/420_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/420_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/420_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/420_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/420_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/420_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/420_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/424_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/424_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/424_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/424_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/424_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/424_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/424_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/424_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/426_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/426_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/426_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/426_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/426_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/426_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/426_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/426_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/427_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/427_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/427_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/427_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/440_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/440_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/440_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/440_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/440_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/440_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/440_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/440_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/440_51.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/440_51.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/440_51.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/440_51.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/440_54.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/440_54.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/440_54.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/440_54.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/450_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/450_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/450_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/450_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/450_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/450_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/450_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/450_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/450_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/450_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/450_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/450_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/452_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/452_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/452_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/452_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/452_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/452_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/452_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/452_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_00.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_00.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_00.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_00.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_12.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_12.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_12.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_12.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_13.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_13.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_13.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_13.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_14.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_14.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_14.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_14.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_16.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_16.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_16.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_16.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_17.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_17.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_17.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_17.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_18.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_18.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_18.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_18.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_19.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_19.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_19.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_19.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_29.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_29.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_29.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_29.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_31.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_31.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/454_31.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/454_31.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/455_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/455_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/455_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/455_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/455_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/455_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/455_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/455_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/455_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/455_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/455_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/455_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/455_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/455_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/455_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/455_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/455_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/455_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/455_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/455_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/455_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/455_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/455_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/455_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/456_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/456_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/456_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/456_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/456_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/456_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/456_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/456_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/456_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/456_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/456_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/456_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_00.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_00.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_00.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_00.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_12.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_12.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_12.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_12.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_13.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_13.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/460_13.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/460_13.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_89.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_89.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_89.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_89.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_92.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_92.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_92.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_92.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_93.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_93.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_93.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_93.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_97.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_97.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_97.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_97.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_99.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_99.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/466_99.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/466_99.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/470_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/470_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/470_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/470_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/470_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/470_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/470_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/470_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/470_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/470_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/470_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/470_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/502_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/502_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/502_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/502_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/502_152.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/502_152.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/502_152.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/502_152.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/502_153.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/502_153.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/502_153.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/502_153.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/502_16.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/502_16.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/502_16.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/502_16.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/502_18.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/502_18.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/502_18.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/502_18.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_39.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_39.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_39.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_39.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_71.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_71.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_71.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_71.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_72.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_72.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_72.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_72.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_90.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_90.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/505_90.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/505_90.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/510_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/510_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/510_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/510_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/510_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/510_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/510_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/510_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/510_28.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/510_28.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/510_28.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/510_28.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/515_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/515_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/515_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/515_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/515_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/515_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/515_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/515_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/520_00.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/520_00.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/520_00.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/520_00.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/520_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/520_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/520_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/520_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/520_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/520_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/520_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/520_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/520_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/520_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/520_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/520_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/525_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/525_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/525_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/525_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/525_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/525_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/525_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/525_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/525_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/525_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/525_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/525_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/525_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/525_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/525_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/525_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/530_001.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/530_001.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/530_001.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/530_001.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/530_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/530_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/530_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/530_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/530_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/530_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/530_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/530_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/530_099.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/530_099.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/530_099.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/530_099.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/530_24.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/530_24.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/530_24.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/530_24.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/602_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/602_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/602_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/602_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/602_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/602_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/602_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/602_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/602_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/602_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/602_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/602_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/621_27.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/621_27.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/621_27.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/621_27.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/621_40.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/621_40.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/621_40.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/621_40.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/639_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/639_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/639_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/639_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/639_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/639_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/639_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/639_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/640_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/640_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/640_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/640_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/641_33.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/641_33.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/641_33.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/641_33.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/645_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/645_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/645_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/645_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/653_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/653_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/653_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/653_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/655_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/655_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/655_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/655_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/655_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/655_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/655_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/655_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/655_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/655_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/655_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/655_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/655_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/655_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/655_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/655_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/704_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/704_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/704_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/704_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/704_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/704_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/704_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/704_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/704_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/704_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/704_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/704_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/706_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/706_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/706_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/706_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/706_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/706_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/706_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/706_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/708_001.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/708_001.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/708_001.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/708_001.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/710_21.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/710_21.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/710_21.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/710_21.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/710_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/710_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/710_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/710_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/710_300.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/710_300.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/710_300.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/710_300.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/712_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/712_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/712_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/712_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/712_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/712_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/712_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/712_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/714_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/714_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/714_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/714_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/714_020.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/714_020.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/714_020.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/714_020.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/714_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/714_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/714_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/714_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/716_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/716_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/716_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/716_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/716_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/716_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/716_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/716_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/716_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/716_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/716_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/716_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/716_17.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/716_17.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/716_17.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/716_17.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/722_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/722_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/722_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/722_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/722_310.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/722_310.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/722_310.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/722_310.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/722_34.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/722_34.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/722_34.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/722_34.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_23.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_23.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_23.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_23.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_80.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_80.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/724_80.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/724_80.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/730_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/730_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/730_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/730_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/730_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/730_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/730_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/730_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/730_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/730_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/730_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/730_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/730_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/730_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/730_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/730_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/730_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/730_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/730_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/730_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/730_23.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/730_23.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/730_23.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/730_23.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/732_101.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/732_101.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/732_101.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/732_101.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/732_103.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/732_103.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/732_103.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/732_103.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/732_111.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/732_111.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/732_111.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/732_111.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/732_123.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/732_123.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/732_123.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/732_123.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/732_130.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/732_130.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/732_130.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/732_130.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/734_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/734_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/734_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/734_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/740_00.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/740_00.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/740_00.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/740_00.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/744_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/744_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/744_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/744_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/748_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/748_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/748_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/748_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/748_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/748_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/apncfg/748_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/apncfg/748_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/DigiCertGlobalRootCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/DigiCertGlobalRootCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/DigiCertGlobalRootCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/DigiCertGlobalRootCA.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/DigiCertGlobalRootG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/DigiCertGlobalRootG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/DigiCertGlobalRootG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/DigiCertGlobalRootG2.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/DigiCertGlobalRootG3.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/DigiCertGlobalRootG3.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/DigiCertGlobalRootG3.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/DigiCertGlobalRootG3.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/Entrust.net_Certification_Authority_2048.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/Entrust.net_Certification_Authority_2048.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/Entrust.net_Certification_Authority_2048.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/Entrust.net_Certification_Authority_2048.cer
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/GeoTrust_PCA_G3_Root.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/GeoTrust_PCA_G3_Root.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/GeoTrust_PCA_G3_Root.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/GeoTrust_PCA_G3_Root.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/GeoTrust_Primary_CA.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/GeoTrust_Primary_CA.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/GeoTrust_Primary_CA.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/GeoTrust_Primary_CA.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/GeoTrust_Primary_CA_G2_ECC.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/GeoTrust_Primary_CA_G2_ECC.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/GeoTrust_Primary_CA_G2_ECC.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/GeoTrust_Primary_CA_G2_ECC.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/GlobalSign_root_CA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/GlobalSign_root_CA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/GlobalSign_root_CA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/GlobalSign_root_CA.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/Root-R3.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/Root-R3.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/Root-R3.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/Root-R3.cer
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/Root_CA_1003.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/Root_CA_1003.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/Root_CA_1003.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/Root_CA_1003.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/VeriSignClass3G4.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/VeriSignClass3G4.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/VeriSignClass3G4.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/VeriSignClass3G4.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/VeriSignClass3G5.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/VeriSignClass3G5.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/VeriSignClass3G5.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/VeriSignClass3G5.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/VeriSignUniversalRootCertification.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/VeriSignUniversalRootCertification.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/VeriSignUniversalRootCertification.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/VeriSignUniversalRootCertification.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/thawte.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/thawte.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/ikev2/thawte.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/ikev2/thawte.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/AAACertificateServices.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/AAACertificateServices.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/AAACertificateServices.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/AAACertificateServices.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/CertumCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/CertumCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/CertumCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/CertumCA.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/CertumOrganizationValidationCASHA2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/CertumOrganizationValidationCASHA2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/CertumOrganizationValidationCASHA2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/CertumOrganizationValidationCASHA2.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/CertumTrustedNetworkCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/CertumTrustedNetworkCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/CertumTrustedNetworkCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/CertumTrustedNetworkCA.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/CyberTrustJapanPublicCAG3.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/CyberTrustJapanPublicCAG3.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/CyberTrustJapanPublicCAG3.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/CyberTrustJapanPublicCAG3.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/DigiCertGlobalRootCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/DigiCertGlobalRootCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/DigiCertGlobalRootCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/DigiCertGlobalRootCA.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/DigiCertSHA2SecureServerCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/DigiCertSHA2SecureServerCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/DigiCertSHA2SecureServerCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/DigiCertSHA2SecureServerCA.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/DomenySslDvCertificationAuthority.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/DomenySslDvCertificationAuthority.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/DomenySslDvCertificationAuthority.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/DomenySslDvCertificationAuthority.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/EntrustCertificationAuthorityL1K.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/EntrustCertificationAuthorityL1K.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/EntrustCertificationAuthorityL1K.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/EntrustCertificationAuthorityL1K.cer
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/EntrustRootCertificationAuthority.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/EntrustRootCertificationAuthority.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/EntrustRootCertificationAuthority.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/EntrustRootCertificationAuthority.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/EntrustRootCertificationAuthorityG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/EntrustRootCertificationAuthorityG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/EntrustRootCertificationAuthorityG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/EntrustRootCertificationAuthorityG2.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/GoDaddyRootCertificateAuthorityG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/GoDaddyRootCertificateAuthorityG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/GoDaddyRootCertificateAuthorityG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/GoDaddyRootCertificateAuthorityG2.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/GoDaddySecureCertificateAuthorityG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/GoDaddySecureCertificateAuthorityG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/GoDaddySecureCertificateAuthorityG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/GoDaddySecureCertificateAuthorityG2.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/KPN_BV_PKIoverheid_Organisatie_Server_CA-G3_2019.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/KPN_BV_PKIoverheid_Organisatie_Server_CA-G3_2019.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/KPN_BV_PKIoverheid_Organisatie_Server_CA-G3_2019.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/KPN_BV_PKIoverheid_Organisatie_Server_CA-G3_2019.cer
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/StaatDerNederlandenEVRootCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/StaatDerNederlandenEVRootCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/StaatDerNederlandenEVRootCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/StaatDerNederlandenEVRootCA.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/StaatderNederlandenOrganisatieServicesCA-G3.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/StaatderNederlandenOrganisatieServicesCA-G3.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/StaatderNederlandenOrganisatieServicesCA-G3.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/StaatderNederlandenOrganisatieServicesCA-G3.cer
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/StaatderNederlandenRootCA-G3.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/StaatderNederlandenRootCA-G3.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/cacerts/tls/StaatderNederlandenRootCA-G3.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/cacerts/tls/StaatderNederlandenRootCA-G3.cer
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/04.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/04.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/04.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/04.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/06.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/06.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/06.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/06.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/08.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/08.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/08.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/08.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/13.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/13.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/13.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/13.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/16.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/16.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/16.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/16.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/18.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/18.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/18.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/18.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/19.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/19.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/19.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/19.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/20.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/20.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/20.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/20.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/21.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/21.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/21.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/21.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/22.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/22.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/22.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/22.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/26.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/26.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/26.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/26.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/28.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/28.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/28.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/28.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/31.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/31.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/31.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/31.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/32.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/32.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/32.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/32.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/42.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/42.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/42.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/42.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/44.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/44.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/44.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/44.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/47.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/47.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/47.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/47.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/55.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/55.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/55.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/55.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/57.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/57.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/57.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/57.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/59.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/59.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/59.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/59.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/60.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/60.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/60.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/60.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/62.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/62.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/62.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/62.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/66.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/66.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/66.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/66.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/68.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/68.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/68.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/68.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/70.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/70.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/70.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/70.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/72.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/72.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/72.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/72.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/74.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/74.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/74.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/74.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/76.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/76.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/76.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/76.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/78.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/78.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/78.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/78.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/80.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/80.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/80.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/80.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/82.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/82.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/82.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/82.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/83.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/83.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/83.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/83.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/84.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/84.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/84.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/84.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/86.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/86.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/86.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/86.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/88.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/88.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/88.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/88.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/90.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/90.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/90.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/90.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/93.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/93.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/93.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/93.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/94.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/94.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/94.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/94.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/95.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/95.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/95.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/95.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/97.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/97.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/2/97.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/2/97.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/08.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/08.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/08.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/08.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/11.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/11.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/11.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/11.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/13.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/13.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/13.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/13.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/42.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/42.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/42.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/42.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/44.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/44.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/44.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/44.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/52.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/52.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/52.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/52.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/54.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/54.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/54.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/54.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/56.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/56.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/56.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/56.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/58.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/58.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/58.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/58.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/60.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/60.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/60.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/60.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/62.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/62.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/62.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/62.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/63.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/63.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/63.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/63.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/64.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/64.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/64.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/64.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/65.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/65.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/65.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/65.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/66.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/66.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/66.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/66.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/68.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/68.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/68.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/68.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/70.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/70.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/70.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/70.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/72.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/72.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/72.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/72.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/74.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/74.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/74.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/74.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/76.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/76.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/3/76.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/3/76.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/00.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/00.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/00.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/00.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/01.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/01.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/01.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/01.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/04.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/04.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/04.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/04.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/05.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/05.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/05.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/05.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/13.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/13.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/13.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/13.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/15.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/15.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/15.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/15.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/16.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/16.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/16.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/16.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/17.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/17.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/17.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/17.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/18.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/18.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/18.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/18.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/19.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/19.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/19.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/19.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/20.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/20.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/20.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/20.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/21.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/21.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/21.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/21.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/22.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/22.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/22.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/22.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/24.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/24.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/24.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/24.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/25.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/25.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/25.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/25.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/26.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/26.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/26.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/26.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/27.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/27.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/27.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/27.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/28.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/28.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/28.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/28.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/29.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/29.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/29.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/29.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/36.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/36.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/36.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/36.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/37.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/37.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/37.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/37.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/52.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/52.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/52.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/52.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/54.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/54.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/54.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/54.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/55.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/55.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/55.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/55.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/56.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/56.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/56.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/56.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/57.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/57.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/57.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/57.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/60.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/60.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/60.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/60.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/66.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/66.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/66.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/66.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/70.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/70.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/70.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/70.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/72.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/72.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/4/72.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/4/72.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/05.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/05.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/05.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/05.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/15.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/15.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/15.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/15.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/20.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/20.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/20.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/20.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/25.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/25.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/25.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/25.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/28.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/28.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/28.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/28.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/36.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/36.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/36.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/36.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/37.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/37.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/37.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/37.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/39.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/39.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/39.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/39.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/41.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/41.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/41.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/41.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/42.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/42.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/42.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/42.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/43.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/43.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/43.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/43.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/44.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/44.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/44.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/44.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/47.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/47.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/47.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/47.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/49.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/49.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/49.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/49.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/52.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/52.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/52.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/52.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/54.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/54.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/5/54.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/5/54.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/03.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/03.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/03.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/03.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/04.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/04.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/04.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/04.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/05.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/05.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/05.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/05.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/06.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/06.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/06.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/06.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/07.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/07.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/07.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/07.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/08.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/08.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/08.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/08.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/09.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/09.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/09.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/09.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/11.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/11.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/11.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/11.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/13.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/13.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/13.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/13.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/15.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/15.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/15.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/15.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/16.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/16.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/16.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/16.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/17.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/17.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/17.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/17.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/18.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/18.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/18.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/18.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/19.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/19.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/19.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/19.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/20.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/20.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/20.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/20.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/21.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/21.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/21.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/21.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/22.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/22.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/22.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/22.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/23.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/23.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/23.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/23.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/24.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/24.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/24.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/24.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/25.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/25.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/25.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/25.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/26.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/26.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/26.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/26.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/27.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/27.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/27.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/27.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/28.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/28.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/28.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/28.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/29.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/29.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/29.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/29.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/31.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/31.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/31.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/31.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/32.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/32.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/32.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/32.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/33.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/33.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/33.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/33.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/35.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/35.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/35.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/35.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/36.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/36.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/36.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/36.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/37.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/37.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/37.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/37.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/39.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/39.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/39.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/39.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/41.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/41.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/41.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/41.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/42.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/42.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/42.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/42.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/43.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/43.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/43.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/43.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/45.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/45.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/45.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/45.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/47.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/47.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/47.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/47.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/49.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/49.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/49.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/49.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/51.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/51.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/51.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/51.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/52.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/52.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/52.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/52.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/53.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/53.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/53.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/53.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/54.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/54.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/54.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/54.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/55.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/55.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/55.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/55.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/57.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/57.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/57.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/57.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/58.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/58.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/58.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/58.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/59.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/59.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/6/59.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/6/59.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/04.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/04.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/04.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/04.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/06.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/06.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/06.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/06.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/08.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/08.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/08.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/08.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/16.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/16.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/16.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/16.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/22.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/22.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/22.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/22.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/24.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/24.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/24.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/24.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/32.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/32.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/32.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/32.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/36.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/36.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/36.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/36.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/44.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/44.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/44.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/44.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/7/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/7/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/9/01.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/9/01.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/mddata/plmn/TS25/9/01.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/mddata/plmn/TS25/9/01.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/modem.img b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/modem.img
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/project_img/modem.img
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_P4_20230328/modem.img
Binary files differ
diff --git a/src/lynq/framework/lynq-ril-service/src/ril.cpp b/src/lynq/framework/lynq-ril-service/src/ril.cpp
index ffcd658..ccd0e01 100755
--- a/src/lynq/framework/lynq-ril-service/src/ril.cpp
+++ b/src/lynq/framework/lynq-ril-service/src/ril.cpp
@@ -169,7 +169,6 @@
#define LYNQ_BRODCAST_PORT 8086
#define LYNQ_SOCKET_BUFFER (1024*8+sizeof(int)*3+10)
/*lei add*/
-#define DSET_IP_ADDRESS "127.0.0.1"
#define LYNQ_AT_SOCKET_BUFFER 1024
#define MAX_AT_CMD 50
/*lei add*/
@@ -5928,7 +5927,7 @@
struct sockaddr_in lynqClient_addr;
bzero(&server_addr, sizeof(server_addr));
server_addr.sin_family = AF_INET;
- server_addr.sin_addr.s_addr = inet_addr(DSET_IP_ADDRESS);
+ server_addr.sin_addr.s_addr = htonl(INADDR_ANY);
server_addr.sin_port = htons(LYNQ_SERVICE_PORT);
/* create socket */
//int server_socket_fd = socket(AF_INET, SOCK_DGRAM, 0);
diff --git a/src/lynq/framework/lynq-sdk-ready/src/timer/lynq_timer.cpp b/src/lynq/framework/lynq-sdk-ready/src/timer/lynq_timer.cpp
index c6e65e9..bbe70a0 100755
--- a/src/lynq/framework/lynq-sdk-ready/src/timer/lynq_timer.cpp
+++ b/src/lynq/framework/lynq-sdk-ready/src/timer/lynq_timer.cpp
@@ -18,7 +18,7 @@
#define DSET_IP_ADDRESS "127.0.0.1"
#define RIL_REQUEST_DEVICE_IDENTITY 98
#define MAX_LEN 1024
-#define TIMER 60
+#define TIMER 30
using ::android::Parcel;
@@ -90,7 +90,7 @@
}
/**
- * @brief 60s request imei
+ * @brief 30s request imei
*
* @param arg
* @return void*
@@ -119,21 +119,12 @@
/*set uci*/
return NULL;
}
- struct sockaddr_in addr_serv,svr_addr;
- memset(&addr_serv, 0, sizeof(addr_serv));
- int addr_len = sizeof(struct sockaddr_in);
- addr_serv.sin_family = AF_INET;
- addr_serv.sin_addr.s_addr = inet_addr(DSET_IP_ADDRESS);
- addr_serv.sin_port = htons(7777);
- int rt = bind(sock_fd ,(struct sockaddr*)&addr_serv, addr_len);
- if (rt == -1)
- {
- RLOGD("bind failed");
- return NULL;
- }
- svr_addr.sin_family = AF_INET;
- svr_addr.sin_port = htons(8088);
- svr_addr.sin_addr.s_addr = inet_addr(DSET_IP_ADDRESS);
+ struct sockaddr_in addr_serv;
+ memset(&addr_serv, 0, sizeof(addr_serv));
+ addr_serv.sin_family = AF_INET;
+ addr_serv.sin_addr.s_addr = inet_addr(DSET_IP_ADDRESS);
+ addr_serv.sin_port = htons(DEST_PORT);
+ int len_addr_serv = sizeof(addr_serv);
int send_num = -1;
int recv_num = -1;
int resp_type = -1;
@@ -151,7 +142,7 @@
{
bzero(res_data, MAX_LEN);
pthread_mutex_lock(&g_lynq_sim_sendto_mutex);
- send_num = sendto(sock_fd, &client_t, sizeof(client_t), 0, (struct sockaddr *)&svr_addr, addr_len);
+ send_num = sendto(sock_fd, &client_t, sizeof(client_t), 0, (struct sockaddr *)&addr_serv, len_addr_serv);
RLOGD("send_num %d\n", send_num);
if(send_num == 0)
{
@@ -170,7 +161,7 @@
continue;
}
//get data msg
- recv_num = recvfrom(sock_fd,res_data,sizeof(char)*MAX_LEN,0,(struct sockaddr *)&svr_addr,(socklen_t*)&addr_len);
+ recv_num = recvfrom(sock_fd,res_data,sizeof(char)*MAX_LEN,0,(struct sockaddr *)&addr_serv,(socklen_t*)&len_addr_serv);
RLOGD("recv_num %d\n", recv_num);
if(recv_num == 0)
{
diff --git a/src/lynq/lib/liblynq-data/lynq_data.cpp b/src/lynq/lib/liblynq-data/lynq_data.cpp
index ed8a9c7..710a16e 100755
--- a/src/lynq/lib/liblynq-data/lynq_data.cpp
+++ b/src/lynq/lib/liblynq-data/lynq_data.cpp
@@ -26,8 +26,6 @@
#define LYNQ_DATA_UCI_BUF 258
-#define LYNQ_ADDRESS "127.0.0.1"
-
using ::android::Parcel;
typedef struct{
int uToken;
@@ -308,7 +306,7 @@
bzero(&lynq_data_socket_server_addr, sizeof(lynq_data_socket_server_addr));
lynq_data_socket_server_addr.sin_family = AF_INET;
lynq_data_socket_server_addr.sin_port = htons(LYNQ_SERVICE_PORT);
- lynq_data_socket_server_addr.sin_addr.s_addr = inet_addr(LYNQ_ADDRESS);
+ lynq_data_socket_server_addr.sin_addr.s_addr = htons(INADDR_ANY);
/*
if(inet_pton(AF_INET,"127.0.0.1", &lynq_socket_server_addr.sin_addr) <= 0)
{